diff --git a/example-ComplexPolygon/openFrameworks-Info.plist b/example-ComplexPolygon/openFrameworks-Info.plist index c4237f2..b829190 100644 --- a/example-ComplexPolygon/openFrameworks-Info.plist +++ b/example-ComplexPolygon/openFrameworks-Info.plist @@ -3,24 +3,32 @@ CFBundleDevelopmentRegion - English + $(DEVELOPMENT_LANGUAGE) CFBundleExecutable - ${EXECUTABLE_NAME} + $(EXECUTABLE_NAME) + CFBundleIconFile + $(ICON_NAME) CFBundleIdentifier - cc.openFrameworks.ofapp + $(PRODUCT_BUNDLE_IDENTIFIER) CFBundleInfoDictionaryVersion 6.0 + CFBundleName + $(TARGET_NAME) CFBundlePackageType APPL CFBundleSignature ???? + CFBundleShortVersionString + $(VERSION) CFBundleVersion - 1.0 - CFBundleIconFile - ${ICON} - NSCameraUsageDescription + $(VERSION) + LSApplicationCategoryType + public.app-category.graphics-design + NSCameraUsageDescription This app needs to access the camera NSMicrophoneUsageDescription This app needs to access the microphone + NSHighResolutionCapable + diff --git a/example-ContactListener/openFrameworks-Info.plist b/example-ContactListener/openFrameworks-Info.plist index c4237f2..b829190 100644 --- a/example-ContactListener/openFrameworks-Info.plist +++ b/example-ContactListener/openFrameworks-Info.plist @@ -3,24 +3,32 @@ CFBundleDevelopmentRegion - English + $(DEVELOPMENT_LANGUAGE) CFBundleExecutable - ${EXECUTABLE_NAME} + $(EXECUTABLE_NAME) + CFBundleIconFile + $(ICON_NAME) CFBundleIdentifier - cc.openFrameworks.ofapp + $(PRODUCT_BUNDLE_IDENTIFIER) CFBundleInfoDictionaryVersion 6.0 + CFBundleName + $(TARGET_NAME) CFBundlePackageType APPL CFBundleSignature ???? + CFBundleShortVersionString + $(VERSION) CFBundleVersion - 1.0 - CFBundleIconFile - ${ICON} - NSCameraUsageDescription + $(VERSION) + LSApplicationCategoryType + public.app-category.graphics-design + NSCameraUsageDescription This app needs to access the camera NSMicrophoneUsageDescription This app needs to access the microphone + NSHighResolutionCapable + diff --git a/example-CustomData/openFrameworks-Info.plist b/example-CustomData/openFrameworks-Info.plist index c4237f2..b829190 100644 --- a/example-CustomData/openFrameworks-Info.plist +++ b/example-CustomData/openFrameworks-Info.plist @@ -3,24 +3,32 @@ CFBundleDevelopmentRegion - English + $(DEVELOPMENT_LANGUAGE) CFBundleExecutable - ${EXECUTABLE_NAME} + $(EXECUTABLE_NAME) + CFBundleIconFile + $(ICON_NAME) CFBundleIdentifier - cc.openFrameworks.ofapp + $(PRODUCT_BUNDLE_IDENTIFIER) CFBundleInfoDictionaryVersion 6.0 + CFBundleName + $(TARGET_NAME) CFBundlePackageType APPL CFBundleSignature ???? + CFBundleShortVersionString + $(VERSION) CFBundleVersion - 1.0 - CFBundleIconFile - ${ICON} - NSCameraUsageDescription + $(VERSION) + LSApplicationCategoryType + public.app-category.graphics-design + NSCameraUsageDescription This app needs to access the camera NSMicrophoneUsageDescription This app needs to access the microphone + NSHighResolutionCapable + diff --git a/example-EdgeShape/openFrameworks-Info.plist b/example-EdgeShape/openFrameworks-Info.plist index c4237f2..b829190 100644 --- a/example-EdgeShape/openFrameworks-Info.plist +++ b/example-EdgeShape/openFrameworks-Info.plist @@ -3,24 +3,32 @@ CFBundleDevelopmentRegion - English + $(DEVELOPMENT_LANGUAGE) CFBundleExecutable - ${EXECUTABLE_NAME} + $(EXECUTABLE_NAME) + CFBundleIconFile + $(ICON_NAME) CFBundleIdentifier - cc.openFrameworks.ofapp + $(PRODUCT_BUNDLE_IDENTIFIER) CFBundleInfoDictionaryVersion 6.0 + CFBundleName + $(TARGET_NAME) CFBundlePackageType APPL CFBundleSignature ???? + CFBundleShortVersionString + $(VERSION) CFBundleVersion - 1.0 - CFBundleIconFile - ${ICON} - NSCameraUsageDescription + $(VERSION) + LSApplicationCategoryType + public.app-category.graphics-design + NSCameraUsageDescription This app needs to access the camera NSMicrophoneUsageDescription This app needs to access the microphone + NSHighResolutionCapable + diff --git a/example-Edges/openFrameworks-Info.plist b/example-Edges/openFrameworks-Info.plist index c4237f2..b829190 100644 --- a/example-Edges/openFrameworks-Info.plist +++ b/example-Edges/openFrameworks-Info.plist @@ -3,24 +3,32 @@ CFBundleDevelopmentRegion - English + $(DEVELOPMENT_LANGUAGE) CFBundleExecutable - ${EXECUTABLE_NAME} + $(EXECUTABLE_NAME) + CFBundleIconFile + $(ICON_NAME) CFBundleIdentifier - cc.openFrameworks.ofapp + $(PRODUCT_BUNDLE_IDENTIFIER) CFBundleInfoDictionaryVersion 6.0 + CFBundleName + $(TARGET_NAME) CFBundlePackageType APPL CFBundleSignature ???? + CFBundleShortVersionString + $(VERSION) CFBundleVersion - 1.0 - CFBundleIconFile - ${ICON} - NSCameraUsageDescription + $(VERSION) + LSApplicationCategoryType + public.app-category.graphics-design + NSCameraUsageDescription This app needs to access the camera NSMicrophoneUsageDescription This app needs to access the microphone + NSHighResolutionCapable + diff --git a/example-Edges/src/ofApp.cpp b/example-Edges/src/ofApp.cpp index 4683a54..262cca4 100755 --- a/example-Edges/src/ofApp.cpp +++ b/example-Edges/src/ofApp.cpp @@ -16,7 +16,7 @@ void ofApp::setup() { // load the lines we saved... - ifstream f; + std::ifstream f; f.open(ofToDataPath("lines.txt").c_str()); vector strLines; while (!f.eof()) { @@ -106,7 +106,7 @@ void ofApp::keyPressed(int key) { /* // want to save out some line... if(key == ' ') { - ofstream f; + std::ofstream f; f.clear(); f.open(ofToDataPath("lines.txt").c_str()); for (int i=0; i CFBundleDevelopmentRegion - English + $(DEVELOPMENT_LANGUAGE) CFBundleExecutable - ${EXECUTABLE_NAME} + $(EXECUTABLE_NAME) + CFBundleIconFile + $(ICON_NAME) CFBundleIdentifier - cc.openFrameworks.ofapp + $(PRODUCT_BUNDLE_IDENTIFIER) CFBundleInfoDictionaryVersion 6.0 + CFBundleName + $(TARGET_NAME) CFBundlePackageType APPL CFBundleSignature ???? + CFBundleShortVersionString + $(VERSION) CFBundleVersion - 1.0 - CFBundleIconFile - ${ICON} - NSCameraUsageDescription + $(VERSION) + LSApplicationCategoryType + public.app-category.graphics-design + NSCameraUsageDescription This app needs to access the camera NSMicrophoneUsageDescription This app needs to access the microphone + NSHighResolutionCapable + diff --git a/example-Joint/openFrameworks-Info.plist b/example-Joint/openFrameworks-Info.plist index c4237f2..b829190 100644 --- a/example-Joint/openFrameworks-Info.plist +++ b/example-Joint/openFrameworks-Info.plist @@ -3,24 +3,32 @@ CFBundleDevelopmentRegion - English + $(DEVELOPMENT_LANGUAGE) CFBundleExecutable - ${EXECUTABLE_NAME} + $(EXECUTABLE_NAME) + CFBundleIconFile + $(ICON_NAME) CFBundleIdentifier - cc.openFrameworks.ofapp + $(PRODUCT_BUNDLE_IDENTIFIER) CFBundleInfoDictionaryVersion 6.0 + CFBundleName + $(TARGET_NAME) CFBundlePackageType APPL CFBundleSignature ???? + CFBundleShortVersionString + $(VERSION) CFBundleVersion - 1.0 - CFBundleIconFile - ${ICON} - NSCameraUsageDescription + $(VERSION) + LSApplicationCategoryType + public.app-category.graphics-design + NSCameraUsageDescription This app needs to access the camera NSMicrophoneUsageDescription This app needs to access the microphone + NSHighResolutionCapable + diff --git a/example-ParticleSystem/openFrameworks-Info.plist b/example-ParticleSystem/openFrameworks-Info.plist index c4237f2..b829190 100644 --- a/example-ParticleSystem/openFrameworks-Info.plist +++ b/example-ParticleSystem/openFrameworks-Info.plist @@ -3,24 +3,32 @@ CFBundleDevelopmentRegion - English + $(DEVELOPMENT_LANGUAGE) CFBundleExecutable - ${EXECUTABLE_NAME} + $(EXECUTABLE_NAME) + CFBundleIconFile + $(ICON_NAME) CFBundleIdentifier - cc.openFrameworks.ofapp + $(PRODUCT_BUNDLE_IDENTIFIER) CFBundleInfoDictionaryVersion 6.0 + CFBundleName + $(TARGET_NAME) CFBundlePackageType APPL CFBundleSignature ???? + CFBundleShortVersionString + $(VERSION) CFBundleVersion - 1.0 - CFBundleIconFile - ${ICON} - NSCameraUsageDescription + $(VERSION) + LSApplicationCategoryType + public.app-category.graphics-design + NSCameraUsageDescription This app needs to access the camera NSMicrophoneUsageDescription This app needs to access the microphone + NSHighResolutionCapable + diff --git a/example-ShapeTexturing/openFrameworks-Info.plist b/example-ShapeTexturing/openFrameworks-Info.plist index c4237f2..b829190 100644 --- a/example-ShapeTexturing/openFrameworks-Info.plist +++ b/example-ShapeTexturing/openFrameworks-Info.plist @@ -3,24 +3,32 @@ CFBundleDevelopmentRegion - English + $(DEVELOPMENT_LANGUAGE) CFBundleExecutable - ${EXECUTABLE_NAME} + $(EXECUTABLE_NAME) + CFBundleIconFile + $(ICON_NAME) CFBundleIdentifier - cc.openFrameworks.ofapp + $(PRODUCT_BUNDLE_IDENTIFIER) CFBundleInfoDictionaryVersion 6.0 + CFBundleName + $(TARGET_NAME) CFBundlePackageType APPL CFBundleSignature ???? + CFBundleShortVersionString + $(VERSION) CFBundleVersion - 1.0 - CFBundleIconFile - ${ICON} - NSCameraUsageDescription + $(VERSION) + LSApplicationCategoryType + public.app-category.graphics-design + NSCameraUsageDescription This app needs to access the camera NSMicrophoneUsageDescription This app needs to access the microphone + NSHighResolutionCapable + diff --git a/example-Simple/openFrameworks-Info.plist b/example-Simple/openFrameworks-Info.plist index c4237f2..b829190 100644 --- a/example-Simple/openFrameworks-Info.plist +++ b/example-Simple/openFrameworks-Info.plist @@ -3,24 +3,32 @@ CFBundleDevelopmentRegion - English + $(DEVELOPMENT_LANGUAGE) CFBundleExecutable - ${EXECUTABLE_NAME} + $(EXECUTABLE_NAME) + CFBundleIconFile + $(ICON_NAME) CFBundleIdentifier - cc.openFrameworks.ofapp + $(PRODUCT_BUNDLE_IDENTIFIER) CFBundleInfoDictionaryVersion 6.0 + CFBundleName + $(TARGET_NAME) CFBundlePackageType APPL CFBundleSignature ???? + CFBundleShortVersionString + $(VERSION) CFBundleVersion - 1.0 - CFBundleIconFile - ${ICON} - NSCameraUsageDescription + $(VERSION) + LSApplicationCategoryType + public.app-category.graphics-design + NSCameraUsageDescription This app needs to access the camera NSMicrophoneUsageDescription This app needs to access the microphone + NSHighResolutionCapable + diff --git a/example-TwoWorlds/openFrameworks-Info.plist b/example-TwoWorlds/openFrameworks-Info.plist index c4237f2..b829190 100644 --- a/example-TwoWorlds/openFrameworks-Info.plist +++ b/example-TwoWorlds/openFrameworks-Info.plist @@ -3,24 +3,32 @@ CFBundleDevelopmentRegion - English + $(DEVELOPMENT_LANGUAGE) CFBundleExecutable - ${EXECUTABLE_NAME} + $(EXECUTABLE_NAME) + CFBundleIconFile + $(ICON_NAME) CFBundleIdentifier - cc.openFrameworks.ofapp + $(PRODUCT_BUNDLE_IDENTIFIER) CFBundleInfoDictionaryVersion 6.0 + CFBundleName + $(TARGET_NAME) CFBundlePackageType APPL CFBundleSignature ???? + CFBundleShortVersionString + $(VERSION) CFBundleVersion - 1.0 - CFBundleIconFile - ${ICON} - NSCameraUsageDescription + $(VERSION) + LSApplicationCategoryType + public.app-category.graphics-design + NSCameraUsageDescription This app needs to access the camera NSMicrophoneUsageDescription This app needs to access the microphone + NSHighResolutionCapable +