Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions Config.xcconfig.example
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,9 @@

GOOGLE_CLIENT_ID = your-client-id.apps.googleusercontent.com
GOOGLE_CLIENT_SECRET = your-client-secret

// Optional local signing overrides.
// Keep these out of source control so different machines and CI can provide their own values.
DEVELOPMENT_TEAM = YOUR_TEAM_ID
CODE_SIGN_STYLE = Automatic
CODE_SIGN_IDENTITY =
156 changes: 30 additions & 126 deletions TaskMenu.xcodeproj/project.pbxproj

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions TaskMenu/Resources/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>0.1.0</string>
<string>$(MARKETING_VERSION)</string>
<key>CFBundleVersion</key>
<string>1</string>
<string>$(CURRENT_PROJECT_VERSION)</string>
<key>LSMinimumSystemVersion</key>
<string>$(MACOSX_DEPLOYMENT_TARGET)</string>
<key>LSUIElement</key>
Expand Down
9 changes: 8 additions & 1 deletion TaskMenu/Resources/TaskMenu.entitlements
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict/>
<dict>
<key>com.apple.security.app-sandbox</key>
<true/>
<key>com.apple.security.network.client</key>
<true/>
<key>com.apple.security.network.server</key>
<true/>
</dict>
</plist>
261 changes: 0 additions & 261 deletions TaskMenuUITests/TaskMenuUITests.swift

This file was deleted.

17 changes: 10 additions & 7 deletions project.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ options:
bundleIdPrefix: com.taskmenu
deploymentTarget:
macOS: "14.0"
xcodeVersion: "16.0"
xcodeVersion: "26.4"
generateEmptyDirectories: true

configFiles:
Expand All @@ -12,9 +12,17 @@ configFiles:

settings:
base:
CURRENT_PROJECT_VERSION: "1"
DEAD_CODE_STRIPPING: YES
GCC_TREAT_WARNINGS_AS_ERRORS: YES
SWIFT_VERSION: "6.0"
MARKETING_VERSION: "0.1.0"
MACOSX_DEPLOYMENT_TARGET: "14.0"
SWIFT_STRICT_CONCURRENCY: complete
SWIFT_TREAT_WARNINGS_AS_ERRORS: YES
configs:
Release:
SWIFT_OPTIMIZATION_LEVEL: "-Osize"

targets:
TaskMenu:
Expand All @@ -27,12 +35,10 @@ targets:
PRODUCT_BUNDLE_IDENTIFIER: com.taskmenu.TaskMenu
INFOPLIST_FILE: TaskMenu/Resources/Info.plist
CODE_SIGN_ENTITLEMENTS: TaskMenu/Resources/TaskMenu.entitlements
ENABLE_APP_SANDBOX: YES
ENABLE_HARDENED_RUNTIME: YES
ASSETCATALOG_COMPILER_APPICON_NAME: AppIcon
COMBINE_HIDPI_IMAGES: YES
CODE_SIGN_IDENTITY: "47081BEFF0F575643E99369B44CBAC87BBCC85E6" # Apple Development: Jia Tan
CODE_SIGN_STYLE: Manual
DEVELOPMENT_TEAM: ZW5U6862Q8
PRODUCT_NAME: TaskMenu
entitlements:
path: TaskMenu/Resources/TaskMenu.entitlements
Expand All @@ -49,6 +55,3 @@ targets:
GENERATE_INFOPLIST_FILE: YES
BUNDLE_LOADER: "$(TEST_HOST)"
TEST_HOST: "$(BUILT_PRODUCTS_DIR)/TaskMenu.app/Contents/MacOS/TaskMenu"
CODE_SIGN_IDENTITY: "47081BEFF0F575643E99369B44CBAC87BBCC85E6" # Apple Development: Jia Tan
CODE_SIGN_STYLE: Manual
DEVELOPMENT_TEAM: ZW5U6862Q8
Loading