diff options
| author | quarrel07 <quarrel-07atolls@icloud.com> | 2026-06-25 08:40:50 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-06-25 17:40:50 +0200 |
| commit | 57a550d33ab20aa85d82bd7cbdb21ec1a9670dd0 (patch) | |
| tree | b97788488ee8b27b93632c7638de45367869f1f7 | |
| parent | 458613f2d94a969c9920dfc12ed57acfca7e5916 (diff) | |
Fix stale macOS Info.plist version (0.1.0 -> 1.0.0) (#706)
The bundle version strings were left at 0.1.0 while the project is at 1.0.0
(project(Spaghettify VERSION 1.0.0)), so the macOS .app and cpack bundle report
the wrong version in Finder/Get Info. Match them to the project version.
Co-authored-by: quarrel07 <paeans-toggle-2e@icloud.com>
| -rw-r--r-- | Info.plist | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Info.plist b/Info.plist index b4a34d654..d844ba858 100644 --- a/Info.plist +++ b/Info.plist @@ -9,7 +9,7 @@ <key>CFBundleExecutable</key> <string>SpaghettiKart</string> <key>CFBundleGetInfoString</key> - <string>0.1.0</string> + <string>1.0.0</string> <key>CFBundleIconFile</key> <string>SpaghettiKart.icns</string> <key>CFBundleIdentifier</key> @@ -22,11 +22,11 @@ <key>CFBundlePackageType</key> <string>APPL</string> <key>CFBundleShortVersionString</key> - <string>0.1.0</string> + <string>1.0.0</string> <key>CFBundleSignature</key> <string>ZMM</string> <key>CFBundleVersion</key> - <string>0.1.0</string> + <string>1.0.0</string> <key>NSHumanReadableCopyright</key> <string>Copyright 2024 HarbourMasters.</string> <key>LSApplicationCategoryType</key> |
