From 96938aafd34f406e9d194482688b657bfb6dc0ba Mon Sep 17 00:00:00 2001 From: Bryce Covert Date: Wed, 25 May 2016 10:21:09 -0700 Subject: [PATCH] app store. --- .../scripts/app_build_411610.vdf | 1 + desktop/last-release | 2 +- desktop/release-app-store.sh | 9 +- .../Tick's Tales.xcodeproj/project.pbxproj | 422 +++++++++++ .../contents.xcworkspacedata | 7 + .../UserInterfaceState.xcuserstate | Bin 0 -> 8569 bytes .../xcschemes/Tick's Tales.xcscheme | 112 +++ .../Tick's Tales/Tick's Tales/AppDelegate.h | 15 + .../Tick's Tales/Tick's Tales/AppDelegate.m | 25 + .../Tick's Tales/Base.lproj/Main.storyboard | 681 ++++++++++++++++++ .../AppIcon.appiconset/Contents.json | 58 ++ .../Tick's Tales/Tick's Tales/Info.plist | 34 + .../Tick's Tales/ViewController.h | 15 + .../Tick's Tales/ViewController.m | 25 + .../xcode/Tick's Tales/Tick's Tales/main.m | 13 + .../Tick's Tales/Tick's TalesTests/Info.plist | 24 + .../Tick's TalesTests/Tick_s_TalesTests.m | 40 + 17 files changed, 1481 insertions(+), 2 deletions(-) mode change 100644 => 100755 desktop/release-app-store.sh create mode 100644 desktop/xcode/Tick's Tales/Tick's Tales.xcodeproj/project.pbxproj create mode 100644 desktop/xcode/Tick's Tales/Tick's Tales.xcodeproj/project.xcworkspace/contents.xcworkspacedata create mode 100644 desktop/xcode/Tick's Tales/Tick's Tales.xcodeproj/project.xcworkspace/xcuserdata/brycecovert.xcuserdatad/UserInterfaceState.xcuserstate create mode 100644 desktop/xcode/Tick's Tales/Tick's Tales.xcodeproj/xcuserdata/brycecovert.xcuserdatad/xcschemes/Tick's Tales.xcscheme create mode 100644 desktop/xcode/Tick's Tales/Tick's Tales/AppDelegate.h create mode 100644 desktop/xcode/Tick's Tales/Tick's Tales/AppDelegate.m create mode 100644 desktop/xcode/Tick's Tales/Tick's Tales/Base.lproj/Main.storyboard create mode 100644 desktop/xcode/Tick's Tales/Tick's Tales/Images.xcassets/AppIcon.appiconset/Contents.json create mode 100644 desktop/xcode/Tick's Tales/Tick's Tales/Info.plist create mode 100644 desktop/xcode/Tick's Tales/Tick's Tales/ViewController.h create mode 100644 desktop/xcode/Tick's Tales/Tick's Tales/ViewController.m create mode 100644 desktop/xcode/Tick's Tales/Tick's Tales/main.m create mode 100644 desktop/xcode/Tick's Tales/Tick's TalesTests/Info.plist create mode 100644 desktop/xcode/Tick's Tales/Tick's TalesTests/Tick_s_TalesTests.m diff --git a/desktop/content-builder/scripts/app_build_411610.vdf b/desktop/content-builder/scripts/app_build_411610.vdf index dfb3f0ae..30a10e01 100644 --- a/desktop/content-builder/scripts/app_build_411610.vdf +++ b/desktop/content-builder/scripts/app_build_411610.vdf @@ -12,6 +12,7 @@ { "411611" "depot_build_411611.vdf" "411612" "depot_build_411612.vdf" + "411613" "depot_build_411613.vdf" "411614" "depot_build_411614.vdf" } } diff --git a/desktop/last-release b/desktop/last-release index a8fa06e1..321183f6 100644 --- a/desktop/last-release +++ b/desktop/last-release @@ -1 +1 @@ -62 +634 diff --git a/desktop/release-app-store.sh b/desktop/release-app-store.sh old mode 100644 new mode 100755 index d103c05e..7d7de55a --- a/desktop/release-app-store.sh +++ b/desktop/release-app-store.sh @@ -1 +1,8 @@ -productbuild --sign "3rd Party Mac Developer Installer: Bryce Covert" --component target/osx/Tick\'s\ Tales.app /Applications target/osx/ticks-tales.pkg +#!/bin/bash +rm -rf test-osx/Tick\'s\ Tales.app +cp -R target/osx/Tick\'s\ Tales.app test-osx +cat test-osx/Info.plist | sed "s/633/`cat last-release`/" > test-osx/Tick\'s\ Tales.app/Contents/Info.plist +rm -rf test-osx/Tick\'s\ Tales.app/ +codesign --verbose -v -f --entitlements test-osx/Tick\'s\ Tales.entitlements --sign "3rd Party Mac Developer Application: Phoenix Online Studios LLC (AVDPGBD777)" test-osx/Tick\'s\ Tales.app/Contents/MacOS/advent-standalone.jar +codesign --verbose --deep -v -f --entitlements test-osx/Tick\'s\ Tales.entitlements --sign "3rd Party Mac Developer Application: Phoenix Online Studios LLC (AVDPGBD777)" test-osx/Tick\'s\ Tales.app/Contents/MacOS/jre +# productbuild --sign "3rd Party Mac Developer Installer: Bryce Covert" --component target/osx/Tick\'s\ Tales.app /Applications target/osx/ticks-tales.pkg diff --git a/desktop/xcode/Tick's Tales/Tick's Tales.xcodeproj/project.pbxproj b/desktop/xcode/Tick's Tales/Tick's Tales.xcodeproj/project.pbxproj new file mode 100644 index 00000000..e12e4a82 --- /dev/null +++ b/desktop/xcode/Tick's Tales/Tick's Tales.xcodeproj/project.pbxproj @@ -0,0 +1,422 @@ +// !$*UTF8*$! +{ + archiveVersion = 1; + classes = { + }; + objectVersion = 46; + objects = { + +/* Begin PBXBuildFile section */ + 474B97C31CF5F1AF0088944D /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 474B97C21CF5F1AF0088944D /* AppDelegate.m */; }; + 474B97C51CF5F1AF0088944D /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 474B97C41CF5F1AF0088944D /* main.m */; }; + 474B97C81CF5F1AF0088944D /* ViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 474B97C71CF5F1AF0088944D /* ViewController.m */; }; + 474B97CA1CF5F1AF0088944D /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 474B97C91CF5F1AF0088944D /* Images.xcassets */; }; + 474B97CD1CF5F1AF0088944D /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 474B97CB1CF5F1AF0088944D /* Main.storyboard */; }; + 474B97D91CF5F1AF0088944D /* Tick_s_TalesTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 474B97D81CF5F1AF0088944D /* Tick_s_TalesTests.m */; }; +/* End PBXBuildFile section */ + +/* Begin PBXContainerItemProxy section */ + 474B97D31CF5F1AF0088944D /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 474B97B41CF5F1AF0088944D /* Project object */; + proxyType = 1; + remoteGlobalIDString = 474B97BB1CF5F1AF0088944D; + remoteInfo = "Tick's Tales"; + }; +/* End PBXContainerItemProxy section */ + +/* Begin PBXFileReference section */ + 474B97BC1CF5F1AF0088944D /* Tick's Tales.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "Tick's Tales.app"; sourceTree = BUILT_PRODUCTS_DIR; }; + 474B97C01CF5F1AF0088944D /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; + 474B97C11CF5F1AF0088944D /* AppDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppDelegate.h; sourceTree = ""; }; + 474B97C21CF5F1AF0088944D /* AppDelegate.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AppDelegate.m; sourceTree = ""; }; + 474B97C41CF5F1AF0088944D /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = ""; }; + 474B97C61CF5F1AF0088944D /* ViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ViewController.h; sourceTree = ""; }; + 474B97C71CF5F1AF0088944D /* ViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ViewController.m; sourceTree = ""; }; + 474B97C91CF5F1AF0088944D /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Images.xcassets; sourceTree = ""; }; + 474B97CC1CF5F1AF0088944D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = ""; }; + 474B97D21CF5F1AF0088944D /* Tick's TalesTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = "Tick's TalesTests.xctest"; sourceTree = BUILT_PRODUCTS_DIR; }; + 474B97D71CF5F1AF0088944D /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; + 474B97D81CF5F1AF0088944D /* Tick_s_TalesTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = Tick_s_TalesTests.m; sourceTree = ""; }; +/* End PBXFileReference section */ + +/* Begin PBXFrameworksBuildPhase section */ + 474B97B91CF5F1AF0088944D /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 474B97CF1CF5F1AF0088944D /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXFrameworksBuildPhase section */ + +/* Begin PBXGroup section */ + 474B97B31CF5F1AF0088944D = { + isa = PBXGroup; + children = ( + 474B97BE1CF5F1AF0088944D /* Tick's Tales */, + 474B97D51CF5F1AF0088944D /* Tick's TalesTests */, + 474B97BD1CF5F1AF0088944D /* Products */, + ); + sourceTree = ""; + }; + 474B97BD1CF5F1AF0088944D /* Products */ = { + isa = PBXGroup; + children = ( + 474B97BC1CF5F1AF0088944D /* Tick's Tales.app */, + 474B97D21CF5F1AF0088944D /* Tick's TalesTests.xctest */, + ); + name = Products; + sourceTree = ""; + }; + 474B97BE1CF5F1AF0088944D /* Tick's Tales */ = { + isa = PBXGroup; + children = ( + 474B97C11CF5F1AF0088944D /* AppDelegate.h */, + 474B97C21CF5F1AF0088944D /* AppDelegate.m */, + 474B97C61CF5F1AF0088944D /* ViewController.h */, + 474B97C71CF5F1AF0088944D /* ViewController.m */, + 474B97C91CF5F1AF0088944D /* Images.xcassets */, + 474B97CB1CF5F1AF0088944D /* Main.storyboard */, + 474B97BF1CF5F1AF0088944D /* Supporting Files */, + ); + path = "Tick's Tales"; + sourceTree = ""; + }; + 474B97BF1CF5F1AF0088944D /* Supporting Files */ = { + isa = PBXGroup; + children = ( + 474B97C01CF5F1AF0088944D /* Info.plist */, + 474B97C41CF5F1AF0088944D /* main.m */, + ); + name = "Supporting Files"; + sourceTree = ""; + }; + 474B97D51CF5F1AF0088944D /* Tick's TalesTests */ = { + isa = PBXGroup; + children = ( + 474B97D81CF5F1AF0088944D /* Tick_s_TalesTests.m */, + 474B97D61CF5F1AF0088944D /* Supporting Files */, + ); + path = "Tick's TalesTests"; + sourceTree = ""; + }; + 474B97D61CF5F1AF0088944D /* Supporting Files */ = { + isa = PBXGroup; + children = ( + 474B97D71CF5F1AF0088944D /* Info.plist */, + ); + name = "Supporting Files"; + sourceTree = ""; + }; +/* End PBXGroup section */ + +/* Begin PBXNativeTarget section */ + 474B97BB1CF5F1AF0088944D /* Tick's Tales */ = { + isa = PBXNativeTarget; + buildConfigurationList = 474B97DC1CF5F1AF0088944D /* Build configuration list for PBXNativeTarget "Tick's Tales" */; + buildPhases = ( + 474B97B81CF5F1AF0088944D /* Sources */, + 474B97B91CF5F1AF0088944D /* Frameworks */, + 474B97BA1CF5F1AF0088944D /* Resources */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = "Tick's Tales"; + productName = "Tick's Tales"; + productReference = 474B97BC1CF5F1AF0088944D /* Tick's Tales.app */; + productType = "com.apple.product-type.application"; + }; + 474B97D11CF5F1AF0088944D /* Tick's TalesTests */ = { + isa = PBXNativeTarget; + buildConfigurationList = 474B97DF1CF5F1AF0088944D /* Build configuration list for PBXNativeTarget "Tick's TalesTests" */; + buildPhases = ( + 474B97CE1CF5F1AF0088944D /* Sources */, + 474B97CF1CF5F1AF0088944D /* Frameworks */, + 474B97D01CF5F1AF0088944D /* Resources */, + ); + buildRules = ( + ); + dependencies = ( + 474B97D41CF5F1AF0088944D /* PBXTargetDependency */, + ); + name = "Tick's TalesTests"; + productName = "Tick's TalesTests"; + productReference = 474B97D21CF5F1AF0088944D /* Tick's TalesTests.xctest */; + productType = "com.apple.product-type.bundle.unit-test"; + }; +/* End PBXNativeTarget section */ + +/* Begin PBXProject section */ + 474B97B41CF5F1AF0088944D /* Project object */ = { + isa = PBXProject; + attributes = { + LastUpgradeCheck = 0640; + ORGANIZATIONNAME = Gilligan; + TargetAttributes = { + 474B97BB1CF5F1AF0088944D = { + CreatedOnToolsVersion = 6.4; + }; + 474B97D11CF5F1AF0088944D = { + CreatedOnToolsVersion = 6.4; + TestTargetID = 474B97BB1CF5F1AF0088944D; + }; + }; + }; + buildConfigurationList = 474B97B71CF5F1AF0088944D /* Build configuration list for PBXProject "Tick's Tales" */; + compatibilityVersion = "Xcode 3.2"; + developmentRegion = English; + hasScannedForEncodings = 0; + knownRegions = ( + en, + Base, + ); + mainGroup = 474B97B31CF5F1AF0088944D; + productRefGroup = 474B97BD1CF5F1AF0088944D /* Products */; + projectDirPath = ""; + projectRoot = ""; + targets = ( + 474B97BB1CF5F1AF0088944D /* Tick's Tales */, + 474B97D11CF5F1AF0088944D /* Tick's TalesTests */, + ); + }; +/* End PBXProject section */ + +/* Begin PBXResourcesBuildPhase section */ + 474B97BA1CF5F1AF0088944D /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 474B97CA1CF5F1AF0088944D /* Images.xcassets in Resources */, + 474B97CD1CF5F1AF0088944D /* Main.storyboard in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 474B97D01CF5F1AF0088944D /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXResourcesBuildPhase section */ + +/* Begin PBXSourcesBuildPhase section */ + 474B97B81CF5F1AF0088944D /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 474B97C81CF5F1AF0088944D /* ViewController.m in Sources */, + 474B97C51CF5F1AF0088944D /* main.m in Sources */, + 474B97C31CF5F1AF0088944D /* AppDelegate.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 474B97CE1CF5F1AF0088944D /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 474B97D91CF5F1AF0088944D /* Tick_s_TalesTests.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXSourcesBuildPhase section */ + +/* Begin PBXTargetDependency section */ + 474B97D41CF5F1AF0088944D /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = 474B97BB1CF5F1AF0088944D /* Tick's Tales */; + targetProxy = 474B97D31CF5F1AF0088944D /* PBXContainerItemProxy */; + }; +/* End PBXTargetDependency section */ + +/* Begin PBXVariantGroup section */ + 474B97CB1CF5F1AF0088944D /* Main.storyboard */ = { + isa = PBXVariantGroup; + children = ( + 474B97CC1CF5F1AF0088944D /* Base */, + ); + name = Main.storyboard; + sourceTree = ""; + }; +/* End PBXVariantGroup section */ + +/* Begin XCBuildConfiguration section */ + 474B97DA1CF5F1AF0088944D /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + CODE_SIGN_IDENTITY = "-"; + COPY_PHASE_STRIP = NO; + DEBUG_INFORMATION_FORMAT = dwarf; + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_C_LANGUAGE_STANDARD = gnu99; + GCC_DYNAMIC_NO_PIC = NO; + GCC_NO_COMMON_BLOCKS = YES; + GCC_OPTIMIZATION_LEVEL = 0; + GCC_PREPROCESSOR_DEFINITIONS = ( + "DEBUG=1", + "$(inherited)", + ); + GCC_SYMBOLS_PRIVATE_EXTERN = NO; + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + MACOSX_DEPLOYMENT_TARGET = 10.10; + MTL_ENABLE_DEBUG_INFO = YES; + ONLY_ACTIVE_ARCH = YES; + SDKROOT = macosx; + }; + name = Debug; + }; + 474B97DB1CF5F1AF0088944D /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + CODE_SIGN_IDENTITY = "-"; + COPY_PHASE_STRIP = NO; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + ENABLE_NS_ASSERTIONS = NO; + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_C_LANGUAGE_STANDARD = gnu99; + GCC_NO_COMMON_BLOCKS = YES; + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + MACOSX_DEPLOYMENT_TARGET = 10.10; + MTL_ENABLE_DEBUG_INFO = NO; + SDKROOT = macosx; + }; + name = Release; + }; + 474B97DD1CF5F1AF0088944D /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + COMBINE_HIDPI_IMAGES = YES; + INFOPLIST_FILE = "Tick's Tales/Info.plist"; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks"; + PRODUCT_NAME = "$(TARGET_NAME)"; + }; + name = Debug; + }; + 474B97DE1CF5F1AF0088944D /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + COMBINE_HIDPI_IMAGES = YES; + INFOPLIST_FILE = "Tick's Tales/Info.plist"; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks"; + PRODUCT_NAME = "$(TARGET_NAME)"; + }; + name = Release; + }; + 474B97E01CF5F1AF0088944D /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + BUNDLE_LOADER = "$(TEST_HOST)"; + COMBINE_HIDPI_IMAGES = YES; + FRAMEWORK_SEARCH_PATHS = ( + "$(DEVELOPER_FRAMEWORKS_DIR)", + "$(inherited)", + ); + GCC_PREPROCESSOR_DEFINITIONS = ( + "DEBUG=1", + "$(inherited)", + ); + INFOPLIST_FILE = "Tick's TalesTests/Info.plist"; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/../Frameworks"; + PRODUCT_NAME = "$(TARGET_NAME)"; + TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Tick's Tales.app/Contents/MacOS/Tick's Tales"; + }; + name = Debug; + }; + 474B97E11CF5F1AF0088944D /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + BUNDLE_LOADER = "$(TEST_HOST)"; + COMBINE_HIDPI_IMAGES = YES; + FRAMEWORK_SEARCH_PATHS = ( + "$(DEVELOPER_FRAMEWORKS_DIR)", + "$(inherited)", + ); + INFOPLIST_FILE = "Tick's TalesTests/Info.plist"; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/../Frameworks"; + PRODUCT_NAME = "$(TARGET_NAME)"; + TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Tick's Tales.app/Contents/MacOS/Tick's Tales"; + }; + name = Release; + }; +/* End XCBuildConfiguration section */ + +/* Begin XCConfigurationList section */ + 474B97B71CF5F1AF0088944D /* Build configuration list for PBXProject "Tick's Tales" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 474B97DA1CF5F1AF0088944D /* Debug */, + 474B97DB1CF5F1AF0088944D /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 474B97DC1CF5F1AF0088944D /* Build configuration list for PBXNativeTarget "Tick's Tales" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 474B97DD1CF5F1AF0088944D /* Debug */, + 474B97DE1CF5F1AF0088944D /* Release */, + ); + defaultConfigurationIsVisible = 0; + }; + 474B97DF1CF5F1AF0088944D /* Build configuration list for PBXNativeTarget "Tick's TalesTests" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 474B97E01CF5F1AF0088944D /* Debug */, + 474B97E11CF5F1AF0088944D /* Release */, + ); + defaultConfigurationIsVisible = 0; + }; +/* End XCConfigurationList section */ + }; + rootObject = 474B97B41CF5F1AF0088944D /* Project object */; +} diff --git a/desktop/xcode/Tick's Tales/Tick's Tales.xcodeproj/project.xcworkspace/contents.xcworkspacedata b/desktop/xcode/Tick's Tales/Tick's Tales.xcodeproj/project.xcworkspace/contents.xcworkspacedata new file mode 100644 index 00000000..3fa77a12 --- /dev/null +++ b/desktop/xcode/Tick's Tales/Tick's Tales.xcodeproj/project.xcworkspace/contents.xcworkspacedata @@ -0,0 +1,7 @@ + + + + + diff --git a/desktop/xcode/Tick's Tales/Tick's Tales.xcodeproj/project.xcworkspace/xcuserdata/brycecovert.xcuserdatad/UserInterfaceState.xcuserstate b/desktop/xcode/Tick's Tales/Tick's Tales.xcodeproj/project.xcworkspace/xcuserdata/brycecovert.xcuserdatad/UserInterfaceState.xcuserstate new file mode 100644 index 0000000000000000000000000000000000000000..40935f101de0aa32d7ae1c2dd24fa0f41e9884db GIT binary patch literal 8569 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%0AxN8#o1tm&_*3QGR6IxqVUmsiSs z{bAVynD4*j2HVSAVz`Y7o5ANsq8Php$b zioY?-{j{w}#9;S&AB!zcX>3C${yx&Ix~$XZmCtp&bgrxOguxZ;xG(oCsJ z*&QkPkxHx5jg6EENZ2bd7kequlfCX50E1Yyp`&)%fxXU2r&%oh<*?T|gV+n5A?zj2 z?Q{WcqRZ$C_L62bdrk8KUCUn8yh`6^uW5EL*WAsVaxdM_eCIIpn{z6&s++2>YJ_UC zYNl$j>N(Z(s&%TjRBx*`sWz*&s4l6EYO|VGTh(^8Q=P2trOr_gP+zMasD4VlLj98Z zP4zqKE$UtBBkC{IU#U;1PpVI;e^URf{#E@S^#%2%xbAV|< z?KZK(EX(QS+Ca{^(H;1x9F{UyWXjH z=@axF^eOt@`r-Om5L5DW>1j)p`-XG2dznjyo`+c3zG zYZziEFpM#H4V4DTP;KxTrWYAte8U3662qrPYRoj27z4(6 z#^uJBja!WG8$U4aFn(y*Ke_ABz7z{-Oy?)D&mZn)D{Y>u)pVz6j%luGzG;DJp=pt6rD?nApy>as6}njSacSHCEjAT@D{;hv!qxCTZ%1`rOtAcmAZ!;7 z3rB=cginRfgntWP3SSH7g}uCjHp^|tl1^|xJP8*Iz7 z<=YBv<+eK8owh}`6}ES6@7cE6w%NAZcG@o5HFmw-XgAs2_Ad6G_EdYiJ<~qWKGZ(d zKHWagzSzFh-fUlPUuj=!-)i4s|IB{UVRN_~`Hs37a` zE_6QVTzM1f>l@c8*BRGY*9F%lH@K;rbBpdS z?i6=-cTab|yU=~T`v&(2_gMFM_eA$3x8#1n{g8X3dz<@=`-cQEp;JO~Lf3?D2?G)a VB@{%84WLx{Rq2)A=y$@<{{j^PrE&lO literal 0 HcmV?d00001 diff --git a/desktop/xcode/Tick's Tales/Tick's Tales.xcodeproj/xcuserdata/brycecovert.xcuserdatad/xcschemes/Tick's Tales.xcscheme b/desktop/xcode/Tick's Tales/Tick's Tales.xcodeproj/xcuserdata/brycecovert.xcuserdatad/xcschemes/Tick's Tales.xcscheme new file mode 100644 index 00000000..3c9a4c3b --- /dev/null +++ b/desktop/xcode/Tick's Tales/Tick's Tales.xcodeproj/xcuserdata/brycecovert.xcuserdatad/xcschemes/Tick's Tales.xcscheme @@ -0,0 +1,112 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/desktop/xcode/Tick's Tales/Tick's Tales/AppDelegate.h b/desktop/xcode/Tick's Tales/Tick's Tales/AppDelegate.h new file mode 100644 index 00000000..1a417063 --- /dev/null +++ b/desktop/xcode/Tick's Tales/Tick's Tales/AppDelegate.h @@ -0,0 +1,15 @@ +// +// AppDelegate.h +// Tick's Tales +// +// Created by Gilligan on 5/25/16. +// Copyright (c) 2016 Gilligan. All rights reserved. +// + +#import + +@interface AppDelegate : NSObject + + +@end + diff --git a/desktop/xcode/Tick's Tales/Tick's Tales/AppDelegate.m b/desktop/xcode/Tick's Tales/Tick's Tales/AppDelegate.m new file mode 100644 index 00000000..5e48b8f7 --- /dev/null +++ b/desktop/xcode/Tick's Tales/Tick's Tales/AppDelegate.m @@ -0,0 +1,25 @@ +// +// AppDelegate.m +// Tick's Tales +// +// Created by Gilligan on 5/25/16. +// Copyright (c) 2016 Gilligan. All rights reserved. +// + +#import "AppDelegate.h" + +@interface AppDelegate () + +@end + +@implementation AppDelegate + +- (void)applicationDidFinishLaunching:(NSNotification *)aNotification { + // Insert code here to initialize your application +} + +- (void)applicationWillTerminate:(NSNotification *)aNotification { + // Insert code here to tear down your application +} + +@end diff --git a/desktop/xcode/Tick's Tales/Tick's Tales/Base.lproj/Main.storyboard b/desktop/xcode/Tick's Tales/Tick's Tales/Base.lproj/Main.storyboard new file mode 100644 index 00000000..5527d902 --- /dev/null +++ b/desktop/xcode/Tick's Tales/Tick's Tales/Base.lproj/Main.storyboard @@ -0,0 +1,681 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Default + + + + + + + Left to Right + + + + + + + Right to Left + + + + + + + + + + + Default + + + + + + + Left to Right + + + + + + + Right to Left + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/desktop/xcode/Tick's Tales/Tick's Tales/Images.xcassets/AppIcon.appiconset/Contents.json b/desktop/xcode/Tick's Tales/Tick's Tales/Images.xcassets/AppIcon.appiconset/Contents.json new file mode 100644 index 00000000..2db2b1c7 --- /dev/null +++ b/desktop/xcode/Tick's Tales/Tick's Tales/Images.xcassets/AppIcon.appiconset/Contents.json @@ -0,0 +1,58 @@ +{ + "images" : [ + { + "idiom" : "mac", + "size" : "16x16", + "scale" : "1x" + }, + { + "idiom" : "mac", + "size" : "16x16", + "scale" : "2x" + }, + { + "idiom" : "mac", + "size" : "32x32", + "scale" : "1x" + }, + { + "idiom" : "mac", + "size" : "32x32", + "scale" : "2x" + }, + { + "idiom" : "mac", + "size" : "128x128", + "scale" : "1x" + }, + { + "idiom" : "mac", + "size" : "128x128", + "scale" : "2x" + }, + { + "idiom" : "mac", + "size" : "256x256", + "scale" : "1x" + }, + { + "idiom" : "mac", + "size" : "256x256", + "scale" : "2x" + }, + { + "idiom" : "mac", + "size" : "512x512", + "scale" : "1x" + }, + { + "idiom" : "mac", + "size" : "512x512", + "scale" : "2x" + } + ], + "info" : { + "version" : 1, + "author" : "xcode" + } +} \ No newline at end of file diff --git a/desktop/xcode/Tick's Tales/Tick's Tales/Info.plist b/desktop/xcode/Tick's Tales/Tick's Tales/Info.plist new file mode 100644 index 00000000..80e0f2c4 --- /dev/null +++ b/desktop/xcode/Tick's Tales/Tick's Tales/Info.plist @@ -0,0 +1,34 @@ + + + + + CFBundleDevelopmentRegion + en + CFBundleExecutable + $(EXECUTABLE_NAME) + CFBundleIconFile + + CFBundleIdentifier + com.tickstales.upallknight.$(PRODUCT_NAME:rfc1034identifier) + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + $(PRODUCT_NAME) + CFBundlePackageType + APPL + CFBundleShortVersionString + 1.0 + CFBundleSignature + ???? + CFBundleVersion + 1 + LSMinimumSystemVersion + $(MACOSX_DEPLOYMENT_TARGET) + NSHumanReadableCopyright + Copyright © 2016 Gilligan. All rights reserved. + NSMainStoryboardFile + Main + NSPrincipalClass + NSApplication + + diff --git a/desktop/xcode/Tick's Tales/Tick's Tales/ViewController.h b/desktop/xcode/Tick's Tales/Tick's Tales/ViewController.h new file mode 100644 index 00000000..c215c7e4 --- /dev/null +++ b/desktop/xcode/Tick's Tales/Tick's Tales/ViewController.h @@ -0,0 +1,15 @@ +// +// ViewController.h +// Tick's Tales +// +// Created by Gilligan on 5/25/16. +// Copyright (c) 2016 Gilligan. All rights reserved. +// + +#import + +@interface ViewController : NSViewController + + +@end + diff --git a/desktop/xcode/Tick's Tales/Tick's Tales/ViewController.m b/desktop/xcode/Tick's Tales/Tick's Tales/ViewController.m new file mode 100644 index 00000000..1e0a87fd --- /dev/null +++ b/desktop/xcode/Tick's Tales/Tick's Tales/ViewController.m @@ -0,0 +1,25 @@ +// +// ViewController.m +// Tick's Tales +// +// Created by Gilligan on 5/25/16. +// Copyright (c) 2016 Gilligan. All rights reserved. +// + +#import "ViewController.h" + +@implementation ViewController + +- (void)viewDidLoad { + [super viewDidLoad]; + + // Do any additional setup after loading the view. +} + +- (void)setRepresentedObject:(id)representedObject { + [super setRepresentedObject:representedObject]; + + // Update the view, if already loaded. +} + +@end diff --git a/desktop/xcode/Tick's Tales/Tick's Tales/main.m b/desktop/xcode/Tick's Tales/Tick's Tales/main.m new file mode 100644 index 00000000..a6caee3e --- /dev/null +++ b/desktop/xcode/Tick's Tales/Tick's Tales/main.m @@ -0,0 +1,13 @@ +// +// main.m +// Tick's Tales +// +// Created by Gilligan on 5/25/16. +// Copyright (c) 2016 Gilligan. All rights reserved. +// + +#import + +int main(int argc, const char * argv[]) { + return NSApplicationMain(argc, argv); +} diff --git a/desktop/xcode/Tick's Tales/Tick's TalesTests/Info.plist b/desktop/xcode/Tick's Tales/Tick's TalesTests/Info.plist new file mode 100644 index 00000000..0872808e --- /dev/null +++ b/desktop/xcode/Tick's Tales/Tick's TalesTests/Info.plist @@ -0,0 +1,24 @@ + + + + + CFBundleDevelopmentRegion + en + CFBundleExecutable + $(EXECUTABLE_NAME) + CFBundleIdentifier + com.tickstales.upallknight.$(PRODUCT_NAME:rfc1034identifier) + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + $(PRODUCT_NAME) + CFBundlePackageType + BNDL + CFBundleShortVersionString + 1.0 + CFBundleSignature + ???? + CFBundleVersion + 1 + + diff --git a/desktop/xcode/Tick's Tales/Tick's TalesTests/Tick_s_TalesTests.m b/desktop/xcode/Tick's Tales/Tick's TalesTests/Tick_s_TalesTests.m new file mode 100644 index 00000000..51968ac8 --- /dev/null +++ b/desktop/xcode/Tick's Tales/Tick's TalesTests/Tick_s_TalesTests.m @@ -0,0 +1,40 @@ +// +// Tick_s_TalesTests.m +// Tick's TalesTests +// +// Created by Gilligan on 5/25/16. +// Copyright (c) 2016 Gilligan. All rights reserved. +// + +#import +#import + +@interface Tick_s_TalesTests : XCTestCase + +@end + +@implementation Tick_s_TalesTests + +- (void)setUp { + [super setUp]; + // Put setup code here. This method is called before the invocation of each test method in the class. +} + +- (void)tearDown { + // Put teardown code here. This method is called after the invocation of each test method in the class. + [super tearDown]; +} + +- (void)testExample { + // This is an example of a functional test case. + XCTAssert(YES, @"Pass"); +} + +- (void)testPerformanceExample { + // This is an example of a performance test case. + [self measureBlock:^{ + // Put the code you want to measure the time of here. + }]; +} + +@end