Skip to content

Commit

Permalink
Bump version to 1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
AlienCowEatCake committed Dec 30, 2020
1 parent 97f8915 commit 8ca8488
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version: '1.1.0-{branch}-{build}'
version: '1.2.0-{branch}-{build}'
clone_depth: 5
shallow_clone: true
max_jobs: 1
Expand Down
2 changes: 1 addition & 1 deletion src/ImageViewer/resources/platform/debian/changelog
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
imageviewer (1.1.0-1) unstable; urgency=low
imageviewer (1.2.0-1) unstable; urgency=low

* New upstream release

Expand Down
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 @@ -5,7 +5,7 @@ resource app_flags B_MULTIPLE_LAUNCH;

resource app_version {
major = 1,
middle = 1,
middle = 2,
minor = 0,

variety = B_APPV_FINAL,
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>1.1.0</string>
<string>1.2.0</string>
<key>CFBundleShortVersionString</key>
<string>1.1.0</string>
<string>1.2.0</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 1,1,0,0
#define VER_FILEVERSION_STR "1.1.0.0\0"
#define VER_PRODUCTVERSION 1,1,0,0
#define VER_PRODUCTVERSION_STR "1.1.0\0"
#define VER_FILEVERSION 1,2,0,0
#define VER_FILEVERSION_STR "1.2.0.0\0"
#define VER_PRODUCTVERSION 1,2,0,0
#define VER_PRODUCTVERSION_STR "1.2.0\0"
#define VER_FILEDESCRIPTION_STR "Image Viewer"
#define VER_INTERNALNAME_STR "ImageViewer"
#define VER_LEGALCOPYRIGHT_STR "(c) Peter S. Zhigalov, 2017-2020"
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("1.1.0"));
app.setApplicationVersion(QString::fromLatin1("1.2.0"));
#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 8ca8488

Please sign in to comment.