Skip to content

Commit

Permalink
Bump version to 1.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
AlienCowEatCake committed Dec 4, 2021
1 parent b83065a commit 6e58ab3
Show file tree
Hide file tree
Showing 8 changed files with 12 additions and 12 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.2.0-{branch}-{build}'
version: '1.3.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.2.0-1) unstable; urgency=low
imageviewer (1.3.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 @@ -4,7 +4,7 @@ resource app_flags B_MULTIPLE_LAUNCH;

resource app_version {
major = 1,
middle = 2,
middle = 3,
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.2.0</string>
<string>1.3.0</string>
<key>CFBundleShortVersionString</key>
<string>1.2.0</string>
<string>1.3.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,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_FILEVERSION 1,3,0,0
#define VER_FILEVERSION_STR "1.3.0.0\0"
#define VER_PRODUCTVERSION 1,3,0,0
#define VER_PRODUCTVERSION_STR "1.3.0\0"
#define VER_FILEDESCRIPTION_STR "Image Viewer"
#define VER_INTERNALNAME_STR "ImageViewer"
#define VER_LEGALCOPYRIGHT_STR "(c) Peter S. Zhigalov, 2017-2021"
Expand Down
2 changes: 1 addition & 1 deletion src/ImageViewer/resources/platform/windows/wixpy_x64.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"Name": "Image Viewer",
"UpgradeCode": "C2D228E5-76F1-4811-B4BE-57A42A2C1E4D",
"Version": "1.2.0",
"Version": "1.3.0",
"Manufacturer": "AlienCowEatCake",
"Description": "Image Viewer Installer",
"Comments": "Simple, cross-platform image viewer",
Expand Down
2 changes: 1 addition & 1 deletion src/ImageViewer/resources/platform/windows/wixpy_x86.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"Name": "Image Viewer",
"UpgradeCode": "C2D228E5-76F1-4811-B4BE-57A42A2C1E4D",
"Version": "1.2.0",
"Version": "1.3.0",
"Manufacturer": "AlienCowEatCake",
"Description": "Image Viewer Installer",
"Comments": "Simple, cross-platform image viewer",
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("aliencoweatcake.github.com"));
app.setOrganizationName(QString::fromLatin1("AlienCowEatCake"));
app.setApplicationName(QString::fromLatin1("Image Viewer"));
app.setApplicationVersion(QString::fromLatin1("1.2.0"));
app.setApplicationVersion(QString::fromLatin1("1.3.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 6e58ab3

Please sign in to comment.