Skip to content
This repository was archived by the owner on May 10, 2018. It is now read-only.

Commit 522c241

Browse files
committed
Version 2.2.0
1 parent d70ef1a commit 522c241

File tree

7 files changed

+25
-9
lines changed

7 files changed

+25
-9
lines changed

CHANGELOG

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
Version 2.2.0
2+
* released 08 October 2017
3+
* added back print element background option
4+
* added back print preview dialog
5+
* added session manager
6+
* tab icon is now hidden when page has no icon
7+
* improved locationbar completer with search suggestions
8+
* improved handling of downloading dependencies in GreaseMonkey scripts
9+
* various improvements in TabManager extension
10+
* Linux: PulseAudio streams now have QupZilla app name and icon
11+
112
Version 2.1.2
213
* released 15 March 2017
314
* updated translations

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ On Mac OS X: To deploy QupZilla in dmg image, run this command:
6767
Current version
6868
----------------------------------------------------------------------------------------
6969

70-
The current stable version of QupZilla is 2.1.2. You can download precompiled packages
70+
The current stable version of QupZilla is 2.2.0. You can download precompiled packages
7171
and the sources from the download section at [homepage](https://www.qupzilla.com/download).
7272
However, if you want the latest revision, just take the latest code snapshot either by
7373
downloading a tarball or running:

src/defines.pri

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ UI_DIR = $$PWD/../build
88
# workaround for #849: see https://bugreports.qt-project.org/browse/QTBUG-23196
99
mocinclude.CONFIG *= fix_target
1010

11-
QZ_VERSION = 2.1.99
11+
QZ_VERSION = 2.2.0
1212
unix: VERSION = $$QZ_VERSION
1313
DEFINES *= QUPZILLA_VERSION=\\\"""$$QZ_VERSION"\\\""
1414

src/lib/app/profilemanager.cpp

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -202,6 +202,11 @@ void ProfileManager::updateProfile(const QString &current, const QString &profil
202202
return;
203203
}
204204

205+
// No change in 2.2
206+
if (prof < Updater::Version("2.2.99")) {
207+
return;
208+
}
209+
205210
// Nothing for now
206211
}
207212

src/main/Info.plist

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@
77
<key>CFBundlePackageType</key>
88
<string>APPL</string>
99
<key>CFBundleGetInfoString</key>
10-
<string>2.1.2</string>
10+
<string>2.2.0</string>
1111
<key>CFBundleVersion</key>
12-
<string>2.1.2</string>
12+
<string>2.2.0</string>
1313
<key>CFBundleSignature</key>
1414
<string>@TYPEINFO@</string>
1515
<key>CFBundleExecutable</key>

src/main/appicon.rc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ IDI_ICON1 ICON DISCARDABLE "..\lib\data\icons\exeicons\qupzilla.ico"
44
IDI_ICON2 ICON DISCARDABLE "..\lib\data\icons\exeicons\page.ico"
55

66
VS_VERSION_INFO VERSIONINFO
7-
FILEVERSION 2,1,2,0
8-
PRODUCTVERSION 2,1,2,0
7+
FILEVERSION 2,2,0,0
8+
PRODUCTVERSION 2,2,0,0
99
FILEFLAGS 0x0L
1010
FILEFLAGSMASK 0x3fL
1111
FILEOS 0x00040004L
@@ -18,12 +18,12 @@ BEGIN
1818
BEGIN
1919
VALUE "CompanyName", "QupZilla Team"
2020
VALUE "FileDescription", "QupZilla Web Browser"
21-
VALUE "FileVersion", "2.1.2"
21+
VALUE "FileVersion", "2.2.0"
2222
VALUE "LegalCopyright", "Copyright (C) 2010-2017 David Rosca"
2323
VALUE "InternalName", "qupzilla"
2424
VALUE "OriginalFilename", "qupzilla.exe"
2525
VALUE "ProductName", "QupZilla"
26-
VALUE "ProductVersion", "2.1.2"
26+
VALUE "ProductVersion", "2.2.0"
2727
END
2828
END
2929
BLOCK "VarFileInfo"

windows/installer.nsi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
; http://nsis.sourceforge.net/Registry_plug-in
1212

1313
!ifndef CUSTOM
14-
!define VERSION 2.1.2
14+
!define VERSION 2.2.0
1515
!define ARCH x86
1616
!define MSVC_VER 140
1717
!define OPENSSL_BIN_DIR .

0 commit comments

Comments
 (0)