diff options
author | John Fultz <jfultz@wolfram.com> | 2019-07-28 16:55:28 -0500 |
---|---|---|
committer | John Fultz <jfultz@wolfram.com> | 2019-07-28 16:55:28 -0500 |
commit | 7d652051546a69f684cfea15c96c85a07391b0ee (patch) | |
tree | 9f50034405793d8d9f37b0a094fd7d51e59d6986 /quacker | |
parent | 98008e148fbd4cbb2a5ea4dfbc88fa19de233749 (diff) |
Update version to 1.0.4.1.
Rereleasing with just a couple of bug fixes, and may need to be able
to tell the difference between releases in the wild.
Diffstat (limited to 'quacker')
-rw-r--r-- | quacker/CMakeLists.txt | 2 | ||||
-rw-r--r-- | quacker/Info.plist | 39 | ||||
-rw-r--r-- | quacker/Quackle.plist | 19 | ||||
-rw-r--r-- | quacker/quacker.cpp | 2 |
4 files changed, 18 insertions, 44 deletions
diff --git a/quacker/CMakeLists.txt b/quacker/CMakeLists.txt index 542e69b..57d4833 100644 --- a/quacker/CMakeLists.txt +++ b/quacker/CMakeLists.txt @@ -109,5 +109,3 @@ if(APPLE) ) endif() endif() - -set_target_properties(Quackle PROPERTIES MACOSX_BUNDLE_INFO_PLIST "${CMAKE_CURRENT_SOURCE_DIR}/Quackle.plist") diff --git a/quacker/Info.plist b/quacker/Info.plist deleted file mode 100644 index d9a9aa5..0000000 --- a/quacker/Info.plist +++ /dev/null @@ -1,39 +0,0 @@ -<?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> - <key>CFBundleDocumentTypes</key> - <array> - <dict> - <key>CFBundleTypeExtensions</key> - <array> - <string>gcg</string> - </array> - <key>CFBundleTypeName</key> - <string>Quackle Game File</string> - <key>CFBundleTypeRole</key> - <string>Editor</string> - </dict> - </array> - <key>CFBundleExecutable</key> - <string>Quackle</string> - <key>CFBundleGetInfoString</key> - <string>Created by Qt/QMake</string> - <key>CFBundleIconFile</key> - <string>quacker.icns</string> - <key>CFBundleIdentifier</key> - <string>com.Quackle.Quackle</string> - <key>CFBundlePackageType</key> - <string>APPL</string> - <key>CFBundleShortVersionString</key> - <string>1.0.4</string> - <key>CFBundleSignature</key> - <string>????</string> - <key>CFBundleVersion</key> - <string>1</string> - <key>LSApplicationCategoryType</key> - <string>public.app-category.board-games</string> - <key>NSPrincipalClass</key> - <string>NSApplication</string> -</dict> -</plist> diff --git a/quacker/Quackle.plist b/quacker/Quackle.plist index f0cd334..643d371 100644 --- a/quacker/Quackle.plist +++ b/quacker/Quackle.plist @@ -2,6 +2,19 @@ <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> <plist version="1.0"> <dict> + <key>CFBundleDocumentTypes</key> + <array> + <dict> + <key>CFBundleTypeExtensions</key> + <array> + <string>gcg</string> + </array> + <key>CFBundleTypeName</key> + <string>Quackle Game File</string> + <key>CFBundleTypeRole</key> + <string>Editor</string> + </dict> + </array> <key>CFBundleExecutable</key> <string>Quackle</string> <key>CFBundleIconFile</key> @@ -13,7 +26,9 @@ <key>CFBundleName</key> <string>Quackle</string> <key>CFBundleShortVersionString</key> - <string>1.0.4</string> + <string>1.0.4.1</string> + <key>CFBundleVersion</key> + <string>1.0.4.1</string> <key>CFBundlePackageType</key> <string>APPL</string> <key>LSApplicationCategoryType</key> @@ -21,6 +36,6 @@ <key>NSPrincipalClass</key> <string>NSApplication</string> <key>NSHumanReadableCopyright</key> - <string>Copyright © 2005-2019 by Jason Katz-Brown, John O'Laughlin & John Fultz</string> + <string>Copyright © 2005-2019 by Jason Katz-Brown, John O'Laughlin & John Fultz</string> </dict> </plist> diff --git a/quacker/quacker.cpp b/quacker/quacker.cpp index 3e3df93..663b0ce 100644 --- a/quacker/quacker.cpp +++ b/quacker/quacker.cpp @@ -2143,7 +2143,7 @@ void TopLevel::firstTimeRun() void TopLevel::about() { QString aboutText = tr( -"<p><b>Quackle</b> 1.0.4 is a crossword game playing, analysis, and study tool. Visit the Quackle homepage at <tt><a href=\"http://quackle.org\">http://quackle.org</a></tt> for more information.</p>" +"<p><b>Quackle</b> 1.0.4.1 is a crossword game playing, analysis, and study tool. Visit the Quackle homepage at <tt><a href=\"http://quackle.org\">http://quackle.org</a></tt> for more information.</p>" "<p>Quackle was written by Jason Katz-Brown, John O'Laughlin, John Fultz, Matt Liberty, and Anand Buddhdev. We thank the anonymous donor who made this software free.</p>" "<p>Copyright 2005-2019 by</p>" "<ul>" |