diff options
author | Neil Hodgson <nyamatongwe@gmail.com> | 2015-09-21 10:45:15 +1000 |
---|---|---|
committer | Neil Hodgson <nyamatongwe@gmail.com> | 2015-09-21 10:45:15 +1000 |
commit | f40428e124d088e5b66458c879d0881023a1f5c8 (patch) | |
tree | 48846f8e27bb0e6b8305e6bcc455bdd232e0059d | |
parent | 9cae10978303cf71a1b41e609e7f3992f5b710f5 (diff) | |
download | scintilla-mirror-f40428e124d088e5b66458c879d0881023a1f5c8.tar.gz |
Add short version string to Scintilla framework to specify the release version.
The current version value (CFBundleVersion) is a build version.
-rw-r--r-- | cocoa/ScintillaFramework/Info.plist | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/cocoa/ScintillaFramework/Info.plist b/cocoa/ScintillaFramework/Info.plist index 13ee4cc2b..6e018d7fc 100644 --- a/cocoa/ScintillaFramework/Info.plist +++ b/cocoa/ScintillaFramework/Info.plist @@ -16,10 +16,12 @@ <string>${PRODUCT_NAME}</string> <key>CFBundlePackageType</key> <string>FMWK</string> + <key>CFBundleShortVersionString</key> + <string>3.6.1</string> <key>CFBundleSignature</key> <string>????</string> <key>CFBundleVersion</key> - <string>1.0</string> + <string>3.6.1</string> <key>NSPrincipalClass</key> <string></string> </dict> |