diff --git a/Screenshots-instructions.md b/Screenshots-instructions.md new file mode 100644 index 0000000..9801fde --- /dev/null +++ b/Screenshots-instructions.md @@ -0,0 +1,11 @@ +# Taking Screenshots +This is how I took screenshots for the app store + +* Change screen resolution on my 15" MBP to the "larger text" option (so UI elements are as big as possible) +* Make code changes to make the screenshot consistent + * Change high score to 75,000 + * Make "pause" button always says "pause" (so they can't tell I'm pausing when I take the screenshots) +* Go full screen in the app, take a screenshot of the screen (make sure top bar is not visible) +* Edit screenshots size in Preview to be 1440x900 +* Don't forget to move the mouse when screen recording! + diff --git a/Wonky Blocks.xcodeproj/project.pbxproj b/Wonky Blocks.xcodeproj/project.pbxproj index 8eb3f20..c3ff109 100644 --- a/Wonky Blocks.xcodeproj/project.pbxproj +++ b/Wonky Blocks.xcodeproj/project.pbxproj @@ -76,6 +76,7 @@ 45A248C224965B890030EC50 /* extensions.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = extensions.swift; sourceTree = ""; }; 45A248C424965BB40030EC50 /* physicsCategories.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = physicsCategories.swift; sourceTree = ""; }; 45BEC135244E5D6400B38F83 /* SwiftClipperPath+asCgPath.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "SwiftClipperPath+asCgPath.swift"; sourceTree = ""; }; + 45CFA6FC2590FA42000509BB /* Screenshots-instructions.md */ = {isa = PBXFileReference; lastKnownFileType = net.daringfireball.markdown; path = "Screenshots-instructions.md"; sourceTree = ""; }; /* End PBXFileReference section */ /* Begin PBXFrameworksBuildPhase section */ @@ -117,6 +118,7 @@ 45525A5C244C7FD4004974AB = { isa = PBXGroup; children = ( + 45CFA6FC2590FA42000509BB /* Screenshots-instructions.md */, 459133A42496CAE6006BAC3D /* README.md */, 45332F4924ECA14500F7A72C /* Documentation */, 45525A67244C7FD4004974AB /* Wonky Blocks */, @@ -444,7 +446,7 @@ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; CODE_SIGN_ENTITLEMENTS = "Wonky Blocks/Wonky Blocks.entitlements"; CODE_SIGN_STYLE = Automatic; - CURRENT_PROJECT_VERSION = 4; + CURRENT_PROJECT_VERSION = 6; DEVELOPMENT_ASSET_PATHS = "\"Wonky Blocks/Preview Content\""; DEVELOPMENT_TEAM = Z6E4CU9G46; ENABLE_PREVIEWS = YES; @@ -467,7 +469,7 @@ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; CODE_SIGN_ENTITLEMENTS = "Wonky Blocks/Wonky Blocks.entitlements"; CODE_SIGN_STYLE = Automatic; - CURRENT_PROJECT_VERSION = 4; + CURRENT_PROJECT_VERSION = 6; DEVELOPMENT_ASSET_PATHS = "\"Wonky Blocks/Preview Content\""; DEVELOPMENT_TEAM = Z6E4CU9G46; ENABLE_PREVIEWS = YES; diff --git a/Wonky Blocks/Assets.xcassets/AppIcon.appiconset/icon-ios-16@1x copy.png b/Wonky Blocks/Assets.xcassets/AppIcon.appiconset/icon-ios-16@1x copy.png new file mode 100644 index 0000000..9c1ecc8 Binary files /dev/null and b/Wonky Blocks/Assets.xcassets/AppIcon.appiconset/icon-ios-16@1x copy.png differ diff --git a/Wonky Blocks/Info.plist b/Wonky Blocks/Info.plist index c5dc214..bf838e4 100644 --- a/Wonky Blocks/Info.plist +++ b/Wonky Blocks/Info.plist @@ -2,8 +2,6 @@ - LSApplicationCategoryType - public.app-category.puzzle-games CFBundleDevelopmentRegion $(DEVELOPMENT_LANGUAGE) CFBundleExecutable @@ -20,6 +18,8 @@ 1.0 CFBundleVersion $(CURRENT_PROJECT_VERSION) + LSApplicationCategoryType + public.app-category.puzzle-games LSRequiresIPhoneOS UIApplicationSceneManifest diff --git a/Wonky Blocks/UI/GameViewController.swift b/Wonky Blocks/UI/GameViewController.swift index 7fd358d..a76463f 100644 --- a/Wonky Blocks/UI/GameViewController.swift +++ b/Wonky Blocks/UI/GameViewController.swift @@ -12,7 +12,7 @@ import SwiftClipper import UIKit class WonkyGameViewController: UIViewController { - static let rowFilledThreshold: CGFloat = 17000 + static let rowFilledThreshold: CGFloat = 16000 var spriteKitView: SKView { return self.view as! SKView