Skip to content

Commit

Permalink
Merge pull request #12233 from keymanapp/fix/mac/12197-invalid-versio…
Browse files Browse the repository at this point in the history
…n-string

fix(mac): limit short bundle version string to x.y.z format in info.plist
  • Loading branch information
sgschantz authored Aug 26, 2024
2 parents 633abe3 + 2b752bf commit 5a00aab
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion mac/Keyman4MacIM/Keyman4MacIM/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>Keyman $(PRODUCT_VERSION) for macOS</string>
<string>$(PRODUCT_VERSION)</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleURLTypes</key>
Expand Down
2 changes: 1 addition & 1 deletion mac/KeymanEngine4Mac/KeymanEngine4Mac/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>Keyman Engine $(PRODUCT_VERSION) for macOS</string>
<string>$(PRODUCT_VERSION)</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
Expand Down

0 comments on commit 5a00aab

Please sign in to comment.