1
mirror of https://invent.kde.org/network/falkon.git synced 2024-11-11 01:22:10 +01:00

Version 1.3.1

- just bugfix release
This commit is contained in:
nowrep 2012-07-16 13:59:24 +02:00
parent 1320daee52
commit 0a7741cc42
13 changed files with 37 additions and 14 deletions

View File

@ -1,7 +1,8 @@
Version 1.3.1 Version 1.3.1
* not yet released * 16 July 2012
* Ctrl+= shortcut for + zoom in webview * Ctrl+= shortcut for + zoom in webview
* Ctrl+Enter shortcut in PIM plugin now also works with enter on numpad * Ctrl+Enter shortcut in PIM plugin now also works with enter on numpad
* don't append QupZilla string to changed user agent
* fixed ' and " chars in speed dial's input fields * fixed ' and " chars in speed dial's input fields
* fixed zooming with Ctrl+Wheel for some users * fixed zooming with Ctrl+Wheel for some users
* fixed issues with cookies filtering * fixed issues with cookies filtering

View File

@ -58,7 +58,7 @@ You need to specify path to `macdeployqt` only if it is not in PATH.
Current version Current version
---------------------------------------------------------------------------------------- ----------------------------------------------------------------------------------------
The current released version of QupZilla is 1.3.0. You can download precompiled packages The current released version of QupZilla is 1.3.1. You can download precompiled packages
and the sources from the download section at [homepage](http://www.qupzilla.com/download). 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 However, if you want the latest revision, just take the latest code snapshot either by
downloading a tarball or running: downloading a tarball or running:

View File

@ -3,7 +3,7 @@ OBJECTS_DIR = $$PWD/../build
MOC_DIR = $$PWD/../build MOC_DIR = $$PWD/../build
RCC_DIR = $$PWD/../build RCC_DIR = $$PWD/../build
UI_DIR = $$PWD/../build UI_DIR = $$PWD/../build
unix: VERSION = 1.3.0 unix: VERSION = 1.3.1
# Please read BUILD information # # Please read BUILD information #
#DEFINES *= NO_SYSTEM_DATAPATH #DEFINES *= NO_SYSTEM_DATAPATH

View File

@ -73,6 +73,7 @@ void ProfileUpdater::updateProfile(const QString &current, const QString &profil
update100(); update100();
update118(); update118();
update120(); update120();
update130();
return; return;
} }
@ -81,6 +82,7 @@ void ProfileUpdater::updateProfile(const QString &current, const QString &profil
update100(); update100();
update118(); update118();
update120(); update120();
update130();
return; return;
} }
@ -88,29 +90,39 @@ void ProfileUpdater::updateProfile(const QString &current, const QString &profil
update100(); update100();
update118(); update118();
update120(); update120();
update130();
return; return;
} }
if (profileVersion == Updater::parseVersionFromString("1.1.0")) { if (profileVersion == Updater::parseVersionFromString("1.1.0")) {
update118(); update118();
update120(); update120();
update130();
return; return;
} }
if (profileVersion == Updater::parseVersionFromString("1.1.5")) { if (profileVersion == Updater::parseVersionFromString("1.1.5")) {
update118(); update118();
update120(); update120();
update130();
return; return;
} }
if (profileVersion == Updater::parseVersionFromString("1.1.8")) { if (profileVersion == Updater::parseVersionFromString("1.1.8")) {
update118(); update118();
update120(); update120();
update130();
return; return;
} }
if (profileVersion == Updater::parseVersionFromString("1.2.0")) { if (profileVersion == Updater::parseVersionFromString("1.2.0")) {
update120(); update120();
update130();
return;
}
if (profileVersion == Updater::parseVersionFromString("1.3.0")) {
update130();
return; return;
} }
@ -202,3 +214,12 @@ void ProfileUpdater::update120()
db.commit(); db.commit();
} }
void ProfileUpdater::update130()
{
std::cout << "QupZilla: Upgrading profile version from 1.3.0..." << std::endl;
mApp->connectDatabase();
QSqlQuery query;
query.exec("ALTER TABLE bookmarks ADD COLUMN keyword TEXT");
}

View File

@ -37,6 +37,7 @@ private:
void update100(); void update100();
void update118(); void update118();
void update120(); void update120();
void update130();
QString m_profilePath; QString m_profilePath;
}; };

View File

@ -79,7 +79,7 @@
#include <QWebHistory> #include <QWebHistory>
#include <QMessageBox> #include <QMessageBox>
const QString QupZilla::VERSION = "1.3.0"; const QString QupZilla::VERSION = "1.3.1";
const QString QupZilla::BUILDTIME = __DATE__" "__TIME__; const QString QupZilla::BUILDTIME = __DATE__" "__TIME__;
const QString QupZilla::AUTHOR = "David Rosca"; const QString QupZilla::AUTHOR = "David Rosca";
const QString QupZilla::COPYRIGHT = "2010-2012"; const QString QupZilla::COPYRIGHT = "2010-2012";

View File

@ -4,8 +4,8 @@ IDI_ICON1 ICON DISCARDABLE "..\lib\data\icons\exeicons\qupzilla.ico"
IDI_ICON2 ICON DISCARDABLE "..\lib\data\icons\exeicons\page.ico" IDI_ICON2 ICON DISCARDABLE "..\lib\data\icons\exeicons\page.ico"
VS_VERSION_INFO VERSIONINFO VS_VERSION_INFO VERSIONINFO
FILEVERSION 1,3,0,0 FILEVERSION 1,3,1,0
PRODUCTVERSION 1,3,0,0 PRODUCTVERSION 1,3,1,0
FILEFLAGS 0x0L FILEFLAGS 0x0L
FILEFLAGSMASK 0x3fL FILEFLAGSMASK 0x3fL
FILEOS 0x00040004L FILEOS 0x00040004L
@ -18,12 +18,12 @@ BEGIN
BEGIN BEGIN
VALUE "CompanyName", "QupZilla Team" VALUE "CompanyName", "QupZilla Team"
VALUE "FileDescription", "QupZilla Web Browser" VALUE "FileDescription", "QupZilla Web Browser"
VALUE "FileVersion", "1.3.0" VALUE "FileVersion", "1.3.1"
VALUE "LegalCopyright", "Copyright (C) 2010-2012 David Rosca" VALUE "LegalCopyright", "Copyright (C) 2010-2012 David Rosca"
VALUE "InternalName", "qupzilla" VALUE "InternalName", "qupzilla"
VALUE "OriginalFilename", "qupzilla.exe" VALUE "OriginalFilename", "qupzilla.exe"
VALUE "ProductName", "QupZilla" VALUE "ProductName", "QupZilla"
VALUE "ProductVersion", "1.3.0" VALUE "ProductVersion", "1.3.1"
END END
END END
BLOCK "VarFileInfo" BLOCK "VarFileInfo"

View File

@ -60,7 +60,7 @@ bool AKN_Plugin::testPlugin()
{ {
// Let's be sure, require latest version of QupZilla // Let's be sure, require latest version of QupZilla
return (QupZilla::VERSION == "1.3.0"); return (QupZilla::VERSION == "1.3.1");
} }
QTranslator* AKN_Plugin::getTranslator(const QString &locale) QTranslator* AKN_Plugin::getTranslator(const QString &locale)

View File

@ -62,7 +62,7 @@ void GM_Plugin::unload()
bool GM_Plugin::testPlugin() bool GM_Plugin::testPlugin()
{ {
return (QupZilla::VERSION == "1.3.0"); return (QupZilla::VERSION == "1.3.1");
} }
QTranslator* GM_Plugin::getTranslator(const QString &locale) QTranslator* GM_Plugin::getTranslator(const QString &locale)

View File

@ -63,7 +63,7 @@ bool MouseGesturesPlugin::testPlugin()
{ {
// Let's be sure, require latest version of QupZilla // Let's be sure, require latest version of QupZilla
return (QupZilla::VERSION == "1.3.0"); return (QupZilla::VERSION == "1.3.1");
} }
QTranslator* MouseGesturesPlugin::getTranslator(const QString &locale) QTranslator* MouseGesturesPlugin::getTranslator(const QString &locale)

View File

@ -64,7 +64,7 @@ bool PIM_Plugin::testPlugin()
{ {
// Let's be sure, require latest version of QupZilla // Let's be sure, require latest version of QupZilla
return (QupZilla::VERSION == "1.3.0"); return (QupZilla::VERSION == "1.3.1");
} }
QTranslator* PIM_Plugin::getTranslator(const QString &locale) QTranslator* PIM_Plugin::getTranslator(const QString &locale)

View File

@ -89,7 +89,7 @@ bool TestPlugin::testPlugin()
//There should be some testing if plugin is loaded correctly //There should be some testing if plugin is loaded correctly
//If this function returns false, plugin is automatically unloaded //If this function returns false, plugin is automatically unloaded
return (QupZilla::VERSION == "1.3.0"); return (QupZilla::VERSION == "1.3.1");
} }
QTranslator* TestPlugin::getTranslator(const QString &locale) QTranslator* TestPlugin::getTranslator(const QString &locale)

View File

@ -3,7 +3,7 @@
SetCompressor /SOLID /FINAL lzma SetCompressor /SOLID /FINAL lzma
!define PRODUCT_NAME "QupZilla" !define PRODUCT_NAME "QupZilla"
!define /date PRODUCT_VERSION "1.3.0" !define /date PRODUCT_VERSION "1.3.1"
!define PRODUCT_DIR_REGKEY "Software\Microsoft\Windows\CurrentVersion\App Paths\qupzilla.exe" !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_KEY "Software\Microsoft\Windows\CurrentVersion\Uninstall\${PRODUCT_NAME}"
!define PRODUCT_UNINST_ROOT_KEY "HKLM" !define PRODUCT_UNINST_ROOT_KEY "HKLM"