From 7bf856f91db41f2c784bfcd3cc1038e38dc9dfd1 Mon Sep 17 00:00:00 2001 From: David Rosca Date: Thu, 8 Oct 2015 13:08:40 +0200 Subject: [PATCH] Version 1.8.7 --- CHANGELOG | 24 ++++++++++++++++++++++++ README.md | 2 +- haiku/QupZilla.rdef | 2 +- src/defines.pri | 2 +- src/main/Info.plist | 4 ++-- src/main/appicon.rc | 8 ++++---- windows/installer.nsi | 2 +- 7 files changed, 34 insertions(+), 10 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 8b942f83e..65e29a56c 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,27 @@ +Version 1.8.7 + * released 8 October 2015 + * save pinned tabs per-window when set to restore session + * Shift+Left click on links now opens link in new window + * show web inspector action now toggles inspector + * add button to create new userscript in GreaseMonkey + * add "Anti-Adblock Killer" AdBlock subscription + * add Ctrl+G and Ctrl+Shift+G shortcuts in search toolbar + * fix enabling select all and find actions in menu + * fix searching for strings with special whitespaces from locationbar + * fix build with KF5 KWallet + * fix crash when blocking popup window with AdBlock + * fix icon animation when blocking popup window with AdBlock + * fix build with Qt 5.5 and gcc 4.9 + * fix incorrectly accepting some cookies + * fix creating new config directory + * fix saving settings without changing pages in SpeedDial + * fix center dials option in SpeedDial + * fix not escaping characters for (file, ftp) dir listings + * fix not showing restore page when opening new url from cli + * fix adding search engine from form on page with Qt 5 + * fix saving homepage/new tab urls from preferences + * Linux: use run-time detection of X11 platform + Version 1.8.6 * released 26 January 2015 * added TabManager and FlashCookieManager plugins diff --git a/README.md b/README.md index 85ca01e7c..7f4036ef9 100644 --- a/README.md +++ b/README.md @@ -74,7 +74,7 @@ You need to specify path to `macdeployqt` only if it is not in PATH. Current version ---------------------------------------------------------------------------------------- -The current stable version of QupZilla is 1.8.6. You can download precompiled packages +The current stable version of QupZilla is 1.8.7. You can download precompiled packages and the sources from the download section at [homepage](http://www.qupzilla.com/download). However, if you want the latest revision, just take the latest code snapshot either by downloading a tarball or running: diff --git a/haiku/QupZilla.rdef b/haiku/QupZilla.rdef index 0f24089a3..3a3ac05c0 100644 --- a/haiku/QupZilla.rdef +++ b/haiku/QupZilla.rdef @@ -3,7 +3,7 @@ resource app_flags B_SINGLE_LAUNCH; resource app_version { major = 1, middle = 8, - minor = 6, + minor = 7, /* Application "variety" can be set to one of the following: * B_APPV_DEVELOPMENT, diff --git a/src/defines.pri b/src/defines.pri index 553faff62..2de51e60f 100644 --- a/src/defines.pri +++ b/src/defines.pri @@ -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 = 1.8.6 +QZ_VERSION = 1.8.7 unix: VERSION = $$QZ_VERSION DEFINES *= QUPZILLA_VERSION=\\\"""$$QZ_VERSION"\\\"" diff --git a/src/main/Info.plist b/src/main/Info.plist index b6c4680e2..bd9c7f850 100644 --- a/src/main/Info.plist +++ b/src/main/Info.plist @@ -7,9 +7,9 @@ CFBundlePackageType APPL CFBundleGetInfoString - 1.8.6 + 1.8.7 CFBundleVersion - 1.8.6 + 1.8.7 CFBundleSignature @TYPEINFO@ CFBundleExecutable diff --git a/src/main/appicon.rc b/src/main/appicon.rc index 6a187381d..d7250c9bc 100644 --- a/src/main/appicon.rc +++ b/src/main/appicon.rc @@ -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 1,8,6,0 - PRODUCTVERSION 1,8,6,0 + FILEVERSION 1,8,7,0 + PRODUCTVERSION 1,8,7,0 FILEFLAGS 0x0L FILEFLAGSMASK 0x3fL FILEOS 0x00040004L @@ -18,12 +18,12 @@ BEGIN BEGIN VALUE "CompanyName", "QupZilla Team" VALUE "FileDescription", "QupZilla Web Browser" - VALUE "FileVersion", "1.8.6" + VALUE "FileVersion", "1.8.7" VALUE "LegalCopyright", "Copyright (C) 2010-2014 David Rosca" VALUE "InternalName", "qupzilla" VALUE "OriginalFilename", "qupzilla.exe" VALUE "ProductName", "QupZilla" - VALUE "ProductVersion", "1.8.6" + VALUE "ProductVersion", "1.8.7" END END BLOCK "VarFileInfo" diff --git a/windows/installer.nsi b/windows/installer.nsi index 6ed80880d..c56e5e772 100644 --- a/windows/installer.nsi +++ b/windows/installer.nsi @@ -24,7 +24,7 @@ RequestExecutionLevel admin SetCompressor /SOLID /FINAL lzma !define PRODUCT_NAME "QupZilla" -!define /date PRODUCT_VERSION "1.8.6" +!define /date PRODUCT_VERSION "1.8.7" !define PRODUCT_DIR_REGKEY "Software\Microsoft\Windows\CurrentVersion\App Paths\qupzilla.exe" !define PRODUCT_UNINST_KEY "Software\Microsoft\Windows\CurrentVersion\Uninstall\${PRODUCT_NAME}" !define PRODUCT_UNINST_ROOT_KEY "HKLM"