Skip to content

Commit

Permalink
Bump version to 1.5.6
Browse files Browse the repository at this point in the history
  • Loading branch information
AlienCowEatCake committed Jan 4, 2024
1 parent 5a8ed8b commit 11600e8
Show file tree
Hide file tree
Showing 7 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.5.5-{branch}-{build}'
version: '1.5.6-{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.5.5-1) unstable; urgency=low
imageviewer (1.5.6-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 = 5,
minor = 5,
minor = 6,

variety = B_APPV_FINAL,
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>1.5.5</string>
<string>1.5.6</string>
<key>CFBundleShortVersionString</key>
<string>1.5.5</string>
<string>1.5.6</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,5,5,0
#define VER_FILEVERSION_STR "1.5.5.0\0"
#define VER_PRODUCTVERSION 1,5,5,0
#define VER_PRODUCTVERSION_STR "1.5.5\0"
#define VER_FILEVERSION 1,5,6,0
#define VER_FILEVERSION_STR "1.5.6.0\0"
#define VER_PRODUCTVERSION 1,5,6,0
#define VER_PRODUCTVERSION_STR "1.5.6\0"
#define VER_FILEDESCRIPTION_STR "Image Viewer"
#define VER_INTERNALNAME_STR "ImageViewer"
#define VER_LEGALCOPYRIGHT_STR "(c) Peter S. Zhigalov, 2017-2024"
Expand Down
2 changes: 1 addition & 1 deletion src/ImageViewer/resources/platform/windows/variables.wxi
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<?define ManufacturerName="Peter S. Zhigalov" ?>
<?define MajorVersion="1" ?>
<?define MinorVersion="5" ?>
<?define BuildVersion="5" ?>
<?define BuildVersion="6" ?>
<?define Revision="0" ?>
<?define VersionNumber="$(var.MajorVersion).$(var.MinorVersion).$(var.BuildVersion).$(var.Revision)" ?>
<?define UpgradeCode="C2D228E5-76F1-4811-B4BE-57A42A2C1E4D" ?>
Expand Down
4 changes: 2 additions & 2 deletions src/ImageViewer/src/main.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
Copyright (C) 2017-2023 Peter S. Zhigalov <[email protected]>
Copyright (C) 2017-2024 Peter S. Zhigalov <[email protected]>
This file is part of the `ImageViewer' program.
Expand Down Expand Up @@ -58,7 +58,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.5.5"));
app.setApplicationVersion(QString::fromLatin1("1.5.6"));
#if !defined (Q_OS_MAC)
#if !defined (Q_OS_WIN) && (QT_VERSION >= QT_VERSION_CHECK(5, 7, 0))
app.setDesktopFileName(QString::fromLatin1("com.github.aliencoweatcake.imageviewer"));
Expand Down

0 comments on commit 11600e8

Please sign in to comment.