Skip to content

Commit

Permalink
Bump version to 0.99.17
Browse files Browse the repository at this point in the history
  • Loading branch information
AlienCowEatCake committed Oct 26, 2019
1 parent f624de5 commit c0abd91
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion src/ImageViewer/resources/platform/haiku/ImageViewer.rdef
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ resource app_flags B_MULTIPLE_LAUNCH;
resource app_version {
major = 0,
middle = 99,
minor = 16,
minor = 17,

variety = B_APPV_BETA,
internal = 0,
Expand Down
4 changes: 2 additions & 2 deletions src/ImageViewer/resources/platform/macosx/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleVersion</key>
<string>0.99.16</string>
<string>0.99.17</string>
<key>CFBundleShortVersionString</key>
<string>0.99.16</string>
<string>0.99.17</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>NSPrincipalClass</key>
Expand Down
8 changes: 4 additions & 4 deletions src/ImageViewer/resources/platform/windows/resources.rc
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ IDI_ICON1 ICON DISCARDABLE "../../icon/icon.ico"

#include <windows.h>

#define VER_FILEVERSION 0,99,16,0
#define VER_FILEVERSION_STR "0.99.16.0\0"
#define VER_PRODUCTVERSION 0,99,16,0
#define VER_PRODUCTVERSION_STR "0.99.16\0"
#define VER_FILEVERSION 0,99,17,0
#define VER_FILEVERSION_STR "0.99.17.0\0"
#define VER_PRODUCTVERSION 0,99,17,0
#define VER_PRODUCTVERSION_STR "0.99.17\0"
#define VER_FILEDESCRIPTION_STR "Image Viewer"
#define VER_INTERNALNAME_STR "ImageViewer"
#define VER_LEGALCOPYRIGHT_STR "(c) Peter S. Zhigalov, 2017-2019"
Expand Down
2 changes: 1 addition & 1 deletion src/ImageViewer/src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ int main(int argc, char *argv[])
app.setOrganizationDomain(QString::fromLatin1("fami.codefreak.ru"));
app.setOrganizationName(QString::fromLatin1("FAMI Net Team"));
app.setApplicationName(QString::fromLatin1("Image Viewer"));
app.setApplicationVersion(QString::fromLatin1("0.99.16"));
app.setApplicationVersion(QString::fromLatin1("0.99.17"));
#if !defined (Q_OS_MAC)
app.setWindowIcon(QIcon(QString::fromLatin1(":/icon/icon.ico")));
app.setAttribute(Qt::AA_DontShowIconsInMenus, false);
Expand Down

0 comments on commit c0abd91

Please sign in to comment.