Skip to content

Commit

Permalink
Bump version to 1.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
AlienCowEatCake committed Sep 7, 2024
1 parent 20da394 commit d57eeaa
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 13 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.2-{branch}-{build}'
version: '1.7.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.6.2-1) unstable; urgency=low
imageviewer (1.7.0-1) unstable; urgency=low

* New upstream release

Expand Down
4 changes: 2 additions & 2 deletions src/ImageViewer/resources/platform/haiku/ImageViewer.rdef
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ resource app_flags B_MULTIPLE_LAUNCH;

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

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.2</string>
<string>1.7.0</string>
<key>CFBundleShortVersionString</key>
<string>1.6.2</string>
<string>1.7.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,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_FILEVERSION 1,7,0,0
#define VER_FILEVERSION_STR "1.7.0.0\0"
#define VER_PRODUCTVERSION 1,7,0,0
#define VER_PRODUCTVERSION_STR "1.7.0\0"
#define VER_FILEDESCRIPTION_STR "Image Viewer"
#define VER_INTERNALNAME_STR "ImageViewer"
#define VER_LEGALCOPYRIGHT_STR "(c) Peter S. Zhigalov, 2017-2024"
Expand Down
4 changes: 2 additions & 2 deletions src/ImageViewer/resources/platform/windows/variables.wxi
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
<?define ProductName="Image Viewer" ?>
<?define ManufacturerName="Peter S. Zhigalov" ?>
<?define MajorVersion="1" ?>
<?define MinorVersion="6" ?>
<?define BuildVersion="2" ?>
<?define MinorVersion="7" ?>
<?define BuildVersion="0" ?>
<?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 @@ -60,7 +60,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.2"));
app.setApplicationVersion(QString::fromLatin1("1.7.0"));
#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 d57eeaa

Please sign in to comment.