Skip to content

Commit

Permalink
Bump version to 1.6.2
Browse files Browse the repository at this point in the history
  • Loading branch information
AlienCowEatCake committed Jun 26, 2024
1 parent 59dc69f commit bd7144f
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 11 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.6.1-{branch}-{build}'
version: '1.6.2-{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.6.1-1) unstable; urgency=low
imageviewer (1.6.2-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 = 6,
minor = 1,
minor = 2,

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.6.1</string>
<string>1.6.2</string>
<key>CFBundleShortVersionString</key>
<string>1.6.1</string>
<string>1.6.2</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,6,1,0
#define VER_FILEVERSION_STR "1.6.1.0\0"
#define VER_PRODUCTVERSION 1,6,1,0
#define VER_PRODUCTVERSION_STR "1.6.1\0"
#define VER_FILEVERSION 1,6,2,0
#define VER_FILEVERSION_STR "1.6.2.0\0"
#define VER_PRODUCTVERSION 1,6,2,0
#define VER_PRODUCTVERSION_STR "1.6.2\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="6" ?>
<?define BuildVersion="1" ?>
<?define BuildVersion="2" ?>
<?define Revision="0" ?>
<?define VersionNumber="$(var.MajorVersion).$(var.MinorVersion).$(var.BuildVersion).$(var.Revision)" ?>
<?define UpgradeCode="C2D228E5-76F1-4811-B4BE-57A42A2C1E4D" ?>
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 @@ -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.6.1"));
app.setApplicationVersion(QString::fromLatin1("1.6.2"));
#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 bd7144f

Please sign in to comment.