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

Commit

Permalink
Version 2.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
nowrep committed Oct 8, 2017
1 parent d70ef1a commit 522c241
Show file tree
Hide file tree
Showing 7 changed files with 25 additions and 9 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
Version 2.2.0
* released 08 October 2017
* added back print element background option
* added back print preview dialog
* added session manager
* tab icon is now hidden when page has no icon
* improved locationbar completer with search suggestions
* improved handling of downloading dependencies in GreaseMonkey scripts
* various improvements in TabManager extension
* Linux: PulseAudio streams now have QupZilla app name and icon

Version 2.1.2
* released 15 March 2017
* updated translations
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ On Mac OS X: To deploy QupZilla in dmg image, run this command:
Current version
----------------------------------------------------------------------------------------

The current stable version of QupZilla is 2.1.2. You can download precompiled packages
The current stable version of QupZilla is 2.2.0. You can download precompiled packages
and the sources from the download section at [homepage](https://www.qupzilla.com/download).
However, if you want the latest revision, just take the latest code snapshot either by
downloading a tarball or running:
Expand Down
2 changes: 1 addition & 1 deletion src/defines.pri
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ UI_DIR = $$PWD/../build
# workaround for #849: see https://bugreports.qt-project.org/browse/QTBUG-23196
mocinclude.CONFIG *= fix_target

QZ_VERSION = 2.1.99
QZ_VERSION = 2.2.0
unix: VERSION = $$QZ_VERSION
DEFINES *= QUPZILLA_VERSION=\\\"""$$QZ_VERSION"\\\""

Expand Down
5 changes: 5 additions & 0 deletions src/lib/app/profilemanager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -202,6 +202,11 @@ void ProfileManager::updateProfile(const QString &current, const QString &profil
return;
}

// No change in 2.2
if (prof < Updater::Version("2.2.99")) {
return;
}

// Nothing for now
}

Expand Down
4 changes: 2 additions & 2 deletions src/main/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleGetInfoString</key>
<string>2.1.2</string>
<string>2.2.0</string>
<key>CFBundleVersion</key>
<string>2.1.2</string>
<string>2.2.0</string>
<key>CFBundleSignature</key>
<string>@TYPEINFO@</string>
<key>CFBundleExecutable</key>
Expand Down
8 changes: 4 additions & 4 deletions src/main/appicon.rc
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ IDI_ICON1 ICON DISCARDABLE "..\lib\data\icons\exeicons\qupzilla.ico"
IDI_ICON2 ICON DISCARDABLE "..\lib\data\icons\exeicons\page.ico"

VS_VERSION_INFO VERSIONINFO
FILEVERSION 2,1,2,0
PRODUCTVERSION 2,1,2,0
FILEVERSION 2,2,0,0
PRODUCTVERSION 2,2,0,0
FILEFLAGS 0x0L
FILEFLAGSMASK 0x3fL
FILEOS 0x00040004L
Expand All @@ -18,12 +18,12 @@ BEGIN
BEGIN
VALUE "CompanyName", "QupZilla Team"
VALUE "FileDescription", "QupZilla Web Browser"
VALUE "FileVersion", "2.1.2"
VALUE "FileVersion", "2.2.0"
VALUE "LegalCopyright", "Copyright (C) 2010-2017 David Rosca"
VALUE "InternalName", "qupzilla"
VALUE "OriginalFilename", "qupzilla.exe"
VALUE "ProductName", "QupZilla"
VALUE "ProductVersion", "2.1.2"
VALUE "ProductVersion", "2.2.0"
END
END
BLOCK "VarFileInfo"
Expand Down
2 changes: 1 addition & 1 deletion windows/installer.nsi
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
; http://nsis.sourceforge.net/Registry_plug-in

!ifndef CUSTOM
!define VERSION 2.1.2
!define VERSION 2.2.0
!define ARCH x86
!define MSVC_VER 140
!define OPENSSL_BIN_DIR .
Expand Down

1 comment on commit 522c241

@Martii
Copy link
Contributor

@Martii Martii commented on 522c241 Oct 8, 2017

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@nowrep
https://github.com/Martii/qupzilla/releases/tag/2.2.0%2B522c241 should you need it. (Seems to be working again on this site)

Please sign in to comment.