Skip to content

Commit 611869e

Browse files
committed
Release 2.2.2
1 parent 684a9e9 commit 611869e

6 files changed

Lines changed: 9 additions & 9 deletions

File tree

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# qimgv root
22
cmake_minimum_required(VERSION 3.13)
33
project(qimgv-plus
4-
VERSION 2.2.1.0
4+
VERSION 2.2.2.0
55
HOMEPAGE_URL "https://github.com/hadoooooouken/qimgv-plus"
66
LANGUAGES C CXX RC)
77

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
qimgv-plus | Current version: 2.2.1
1+
qimgv-plus | Current version: 2.2.2
22
==========
33
A Windows-optimized fork of the [qimgv](https://github.com/easymodo/qimgv) image viewer, featuring high-quality CPU-accelerated scaling and native support for modern image formats.
44

qimgv/3rdparty/kimageformats/miniz.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* miniz.c 2.2.1 - public domain deflate/inflate, zlib-subset, ZIP reading/writing/appending, PNG writing
1+
/* miniz.c 2.2.2 - public domain deflate/inflate, zlib-subset, ZIP reading/writing/appending, PNG writing
22
See "unlicense" statement at the end of this file.
33
Rich Geldreich <richgel99@gmail.com>, last updated Oct. 13, 2013
44
Implements RFC 1950: http://www.ietf.org/rfc/rfc1950.txt and RFC 1951: http://www.ietf.org/rfc/rfc1951.txt

qimgv/appversion.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#include "appversion.h"
22

33
// clang-format off
4-
QVersionNumber appVersion(2,2,1);
4+
QVersionNumber appVersion(2,2,2);
55
// clang-format on

qimgv/qimgv-plus.iss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#define MyAppName "qimgv-plus"
2-
#define MyAppVersion "2.2.1.0"
2+
#define MyAppVersion "2.2.2.0"
33
#define MyAppPublisher "hadoooooouken"
44
#define MyAppURL "https://github.com/hadoooooouken/qimgv-plus"
55
#define MyAppExeName "qimgv-plus.exe"

qimgv/qimgv.rc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
IDI_ICON1 ICON DISCARDABLE "res/icons/common/logo/app/qimgv.ico"
44

55
VS_VERSION_INFO VERSIONINFO
6-
FILEVERSION 2,2,1,0
7-
PRODUCTVERSION 2,2,1,0
6+
FILEVERSION 2,2,2,0
7+
PRODUCTVERSION 2,2,2,0
88
FILEFLAGSMASK 0x3fL
99
#ifdef _DEBUG
1010
FILEFLAGS 0x1L
@@ -21,12 +21,12 @@ BEGIN
2121
BEGIN
2222
VALUE "CompanyName", "hadoooooouken"
2323
VALUE "FileDescription", "qimgv-plus - Fast, easy to use, and beautiful image viewer"
24-
VALUE "FileVersion", "2.2.1.0"
24+
VALUE "FileVersion", "2.2.2.0"
2525
VALUE "InternalName", "qimgv-plus.exe"
2626
VALUE "LegalCopyright", "Copyright (C) 2026 hadooooouken"
2727
VALUE "OriginalFilename", "qimgv-plus.exe"
2828
VALUE "ProductName", "qimgv-plus"
29-
VALUE "ProductVersion", "2.2.1.0"
29+
VALUE "ProductVersion", "2.2.2.0"
3030
END
3131
END
3232
BLOCK "VarFileInfo"

0 commit comments

Comments
 (0)