Skip to content

Commit 8570365

Browse files
committed
"The Finale"
1 parent 57e09cf commit 8570365

32 files changed

+1996
-7
lines changed

Archive.sh

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
#!/bin/zsh
2+
PROJECT_PATH="/Users/tajc/Library/Mobile Documents/com~apple~CloudDocs/Projects/Programming/Applications/Focustomize/Focustomize.xcodeproj"
3+
ARCHIVE_PATH="/tmp/Focustomize.xcarchive"
4+
APP_PATH="~/Downloads/Focustomize.app"
5+
ZIP_PATH="~/Downloads/Focustomize.zip"
6+
7+
echo "Building Focustomize for Archival, please wait..."
8+
9+
# Build the project, skip code signing, and archive it
10+
xcodebuild -project "$PROJECT_PATH" -scheme Focustomize -configuration Release -archivePath "$ARCHIVE_PATH" CODE_SIGN_STYLE=Manual archive
11+
12+
echo "Finishing up..."
13+
# Copy the .app to Downloads and zip it
14+
cp -R "$ARCHIVE_PATH/Products/Applications/Focustomize.app" "$APP_PATH"
15+
rm -f "$ZIP_PATH" # Remove any existing Focustomize.zip
16+
zip -r "$ZIP_PATH" "$APP_PATH"
17+
18+
echo "Done! Focustomize.app is ready for distribution!"

Focustomize.xcodeproj/project.pbxproj

Lines changed: 411 additions & 0 deletions
Large diffs are not rendered by default.

Focustomize.xcodeproj/project.xcworkspace/contents.xcworkspacedata

Lines changed: 7 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Focustomize.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved

Lines changed: 24 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 78 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,78 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<Scheme
3+
LastUpgradeVersion = "1610"
4+
version = "1.7">
5+
<BuildAction
6+
parallelizeBuildables = "YES"
7+
buildImplicitDependencies = "YES"
8+
buildArchitectures = "Automatic">
9+
<BuildActionEntries>
10+
<BuildActionEntry
11+
buildForTesting = "YES"
12+
buildForRunning = "YES"
13+
buildForProfiling = "YES"
14+
buildForArchiving = "YES"
15+
buildForAnalyzing = "YES">
16+
<BuildableReference
17+
BuildableIdentifier = "primary"
18+
BlueprintIdentifier = "365F2C672CF3E49C00E1E629"
19+
BuildableName = "Focustomize.app"
20+
BlueprintName = "Focustomize"
21+
ReferencedContainer = "container:Focustomize.xcodeproj">
22+
</BuildableReference>
23+
</BuildActionEntry>
24+
</BuildActionEntries>
25+
</BuildAction>
26+
<TestAction
27+
buildConfiguration = "Debug"
28+
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
29+
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
30+
shouldUseLaunchSchemeArgsEnv = "YES"
31+
shouldAutocreateTestPlan = "YES">
32+
</TestAction>
33+
<LaunchAction
34+
buildConfiguration = "Debug"
35+
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
36+
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
37+
launchStyle = "0"
38+
useCustomWorkingDirectory = "NO"
39+
ignoresPersistentStateOnLaunch = "NO"
40+
debugDocumentVersioning = "YES"
41+
debugServiceExtension = "internal"
42+
allowLocationSimulation = "YES">
43+
<BuildableProductRunnable
44+
runnableDebuggingMode = "0">
45+
<BuildableReference
46+
BuildableIdentifier = "primary"
47+
BlueprintIdentifier = "365F2C672CF3E49C00E1E629"
48+
BuildableName = "Focustomize.app"
49+
BlueprintName = "Focustomize"
50+
ReferencedContainer = "container:Focustomize.xcodeproj">
51+
</BuildableReference>
52+
</BuildableProductRunnable>
53+
</LaunchAction>
54+
<ProfileAction
55+
buildConfiguration = "Release"
56+
shouldUseLaunchSchemeArgsEnv = "YES"
57+
savedToolIdentifier = ""
58+
useCustomWorkingDirectory = "NO"
59+
debugDocumentVersioning = "YES">
60+
<BuildableProductRunnable
61+
runnableDebuggingMode = "0">
62+
<BuildableReference
63+
BuildableIdentifier = "primary"
64+
BlueprintIdentifier = "365F2C672CF3E49C00E1E629"
65+
BuildableName = "Focustomize.app"
66+
BlueprintName = "Focustomize"
67+
ReferencedContainer = "container:Focustomize.xcodeproj">
68+
</BuildableReference>
69+
</BuildableProductRunnable>
70+
</ProfileAction>
71+
<AnalyzeAction
72+
buildConfiguration = "Debug">
73+
</AnalyzeAction>
74+
<ArchiveAction
75+
buildConfiguration = "Release"
76+
revealArchiveInOrganizer = "YES">
77+
</ArchiveAction>
78+
</Scheme>
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<Bucket
3+
uuid = "019912F3-500C-4FD9-B066-A6FCA14DD544"
4+
type = "1"
5+
version = "2.0">
6+
</Bucket>
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3+
<plist version="1.0">
4+
<dict>
5+
<key>SchemeUserState</key>
6+
<dict>
7+
<key>Focustomize.xcscheme_^#shared#^_</key>
8+
<dict>
9+
<key>orderHint</key>
10+
<integer>0</integer>
11+
</dict>
12+
</dict>
13+
<key>SuppressBuildableAutocreation</key>
14+
<dict>
15+
<key>365F2C672CF3E49C00E1E629</key>
16+
<dict>
17+
<key>primary</key>
18+
<true/>
19+
</dict>
20+
</dict>
21+
</dict>
22+
</plist>
Lines changed: 40 additions & 0 deletions
Loading
Lines changed: 5 additions & 0 deletions
Loading

0 commit comments

Comments
 (0)