Skip to content

Commit

Permalink
Update version numbers
Browse files Browse the repository at this point in the history
  • Loading branch information
jurplel committed Aug 16, 2023
1 parent aaff929 commit 3c5228c
Show file tree
Hide file tree
Showing 8 changed files with 12 additions and 73 deletions.
2 changes: 2 additions & 0 deletions dist/linux/com.interversehq.qView.appdata.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,8 @@
</provides>
<content_rating type="oars-1.0" />
<releases>
<release version="6.1" date="2023-08-15" />
<release version="6.0" date="2023-08-10" />
<release version="5.0" date="2022-01-12" />
<release version="4.0" date="2020-10-30" />
</releases>
Expand Down
4 changes: 2 additions & 2 deletions dist/linux/debian/changelog
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
qview (6.0-1) bionic; urgency=low
qview (6.1-1) bionic; urgency=low

* Initial release

-- jurplel <[email protected]> Mon, 7 Aug 2023 14:54:07 -0400
-- jurplel <[email protected]> Tue, 15 Aug 2023 20:26:07 -0400
2 changes: 1 addition & 1 deletion dist/linux/rpm/qview.spec
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Name: qview
Version: 6.0
Version: 6.1
Release: 1
Summary: Practical and minimal image viewer

Expand Down
62 changes: 0 additions & 62 deletions dist/mac/Info_legacy.plist

This file was deleted.

2 changes: 1 addition & 1 deletion dist/win/qView32.iss
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#define MyAppExeName "qView.exe"

; Update these when building
#define MyAppVersion "6.0"
#define MyAppVersion "6.1"
#define MyAppYear "2023"

[Setup]
Expand Down
2 changes: 1 addition & 1 deletion dist/win/qView64.iss
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#define MyAppExeName "qView.exe"

; Update these when building
#define MyAppVersion "6.0"
#define MyAppVersion "6.1"
#define MyAppYear "2023"

[Setup]
Expand Down
9 changes: 4 additions & 5 deletions qView.pro
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
TARGET = qView
VERSION = 6.0
VERSION = 6.1

QT += core gui network widgets

Expand Down Expand Up @@ -62,12 +62,11 @@ macx {
}
QMAKE_TARGET_BUNDLE_PREFIX = "com.interversehq"

# Special info.plist for qt 5.9 on mac
equals(QT_MAJOR_VERSION, 5):lessThan(QT_MINOR_VERSION, 10) {
QMAKE_INFO_PLIST = "dist/mac/Info_legacy.plist"
QMAKE_INFO_PLIST = "dist/mac/Info_legacy.plist"

This comment has been minimized.

Copy link
@jdpurcell

jdpurcell Aug 16, 2023

Contributor

@jurplel And this shouldn't point to the legacy one since that file was deleted in this commit? Just noticed when I came back to read your reply.

This comment has been minimized.

Copy link
@jurplel

jurplel Aug 16, 2023

Author Owner

Thank you for pointing out that one as well.

# Older icon for qt 5 on mac
lessThan(QT_MAJOR_VERSION, 6) {
ICON = "dist/mac/qView_legacy.icns"
} else {
QMAKE_INFO_PLIST = "dist/mac/Info.plist"
ICON = "dist/mac/qView.icns"
}
}
Expand Down
2 changes: 1 addition & 1 deletion src/qvapplication.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -360,7 +360,7 @@ void QVApplication::defineFilterLists()
}
filterString.chop(1);
filterString += ")";

qDebug() << filterList << filterString << fileExtensionList;

This comment has been minimized.

Copy link
@jdpurcell

jdpurcell Aug 16, 2023

Contributor

@jurplel Did you mean to leave this here?

This comment has been minimized.

Copy link
@jurplel

jurplel Aug 16, 2023

Author Owner

🤦


// Build mime type list
const auto &byteArrayMimeTypes = QImageReader::supportedMimeTypes();
Expand Down

0 comments on commit 3c5228c

Please sign in to comment.