From 8af495599c7affd8824275ee4f1bb5197c82755d Mon Sep 17 00:00:00 2001 From: nowrep Date: Sun, 17 Mar 2013 10:32:55 +0100 Subject: [PATCH] Development version has now 1.5.0 version number. --- CHANGELOG | 2 +- README.md | 2 +- src/defines.pri | 2 +- src/main/appicon.rc | 8 ++++---- src/plugins/AccessKeysNavigation/akn_plugin.cpp | 2 +- src/plugins/GreaseMonkey/gm_plugin.cpp | 2 +- src/plugins/MouseGestures/mousegesturesplugin.cpp | 2 +- src/plugins/PIM/PIM_plugin.cpp | 2 +- src/plugins/TestPlugin/testplugin.cpp | 2 +- 9 files changed, 12 insertions(+), 12 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index d32e10c3d..c95f6950c 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,5 +1,5 @@ Version 1.4.1 - * not yet released + * released 15 March 2013 * fixed websearchbar not respecting select all on click settings * fixed certificates from custom path disappearing on saving preferences * fixed showing empty back/forward history menu upon restoring session diff --git a/README.md b/README.md index ad2581413..cdbde4e7a 100644 --- a/README.md +++ b/README.md @@ -70,7 +70,7 @@ You need to specify path to `macdeployqt` only if it is not in PATH. Current version ---------------------------------------------------------------------------------------- -The current released version of QupZilla is 1.4.0. You can download precompiled packages +The current stable version of QupZilla is 1.4.1. 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/src/defines.pri b/src/defines.pri index dc7947233..48e0ace80 100644 --- a/src/defines.pri +++ b/src/defines.pri @@ -3,7 +3,7 @@ OBJECTS_DIR = $$PWD/../build MOC_DIR = $$PWD/../build RCC_DIR = $$PWD/../build UI_DIR = $$PWD/../build -unix: VERSION = 1.4.0 +unix: VERSION = 1.5.0 # Please read BUILD information # #DEFINES *= NO_SYSTEM_DATAPATH diff --git a/src/main/appicon.rc b/src/main/appicon.rc index 9f6912e07..a9d84ae40 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,4,0,0 - PRODUCTVERSION 1,4,0,0 + FILEVERSION 1,5,0,0 + PRODUCTVERSION 1,5,0,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.4.0" + VALUE "FileVersion", "1.5.0" VALUE "LegalCopyright", "Copyright (C) 2010-2013 David Rosca" VALUE "InternalName", "qupzilla" VALUE "OriginalFilename", "qupzilla.exe" VALUE "ProductName", "QupZilla" - VALUE "ProductVersion", "1.4.0" + VALUE "ProductVersion", "1.5.0" END END BLOCK "VarFileInfo" diff --git a/src/plugins/AccessKeysNavigation/akn_plugin.cpp b/src/plugins/AccessKeysNavigation/akn_plugin.cpp index ff4ea42b4..eb3cec43f 100644 --- a/src/plugins/AccessKeysNavigation/akn_plugin.cpp +++ b/src/plugins/AccessKeysNavigation/akn_plugin.cpp @@ -62,7 +62,7 @@ bool AKN_Plugin::testPlugin() { // Let's be sure, require latest version of QupZilla - return (QupZilla::VERSION == QLatin1String("1.4.0")); + return (QupZilla::VERSION == QLatin1String("1.5.0")); } QTranslator* AKN_Plugin::getTranslator(const QString &locale) diff --git a/src/plugins/GreaseMonkey/gm_plugin.cpp b/src/plugins/GreaseMonkey/gm_plugin.cpp index 16c7acd8d..25e60bb62 100644 --- a/src/plugins/GreaseMonkey/gm_plugin.cpp +++ b/src/plugins/GreaseMonkey/gm_plugin.cpp @@ -62,7 +62,7 @@ void GM_Plugin::unload() bool GM_Plugin::testPlugin() { - return (QupZilla::VERSION == QLatin1String("1.4.0")); + return (QupZilla::VERSION == QLatin1String("1.5.0")); } QTranslator* GM_Plugin::getTranslator(const QString &locale) diff --git a/src/plugins/MouseGestures/mousegesturesplugin.cpp b/src/plugins/MouseGestures/mousegesturesplugin.cpp index b6f87fd41..8428e7b17 100644 --- a/src/plugins/MouseGestures/mousegesturesplugin.cpp +++ b/src/plugins/MouseGestures/mousegesturesplugin.cpp @@ -64,7 +64,7 @@ bool MouseGesturesPlugin::testPlugin() { // Let's be sure, require latest version of QupZilla - return (QupZilla::VERSION == QLatin1String("1.4.0")); + return (QupZilla::VERSION == QLatin1String("1.5.0")); } QTranslator* MouseGesturesPlugin::getTranslator(const QString &locale) diff --git a/src/plugins/PIM/PIM_plugin.cpp b/src/plugins/PIM/PIM_plugin.cpp index cec2b4341..47b5417a0 100644 --- a/src/plugins/PIM/PIM_plugin.cpp +++ b/src/plugins/PIM/PIM_plugin.cpp @@ -65,7 +65,7 @@ bool PIM_Plugin::testPlugin() { // Let's be sure, require latest version of QupZilla - return (QupZilla::VERSION == QLatin1String("1.4.0")); + return (QupZilla::VERSION == QLatin1String("1.5.0")); } QTranslator* PIM_Plugin::getTranslator(const QString &locale) diff --git a/src/plugins/TestPlugin/testplugin.cpp b/src/plugins/TestPlugin/testplugin.cpp index 889519100..89cae0b35 100644 --- a/src/plugins/TestPlugin/testplugin.cpp +++ b/src/plugins/TestPlugin/testplugin.cpp @@ -92,7 +92,7 @@ bool TestPlugin::testPlugin() //There should be some testing if plugin is loaded correctly //If this function returns false, plugin is automatically unloaded - return (QupZilla::VERSION == QLatin1String("1.4.0")); + return (QupZilla::VERSION == QLatin1String("1.5.0")); } QTranslator* TestPlugin::getTranslator(const QString &locale)