mirror of
https://invent.kde.org/network/falkon.git
synced 2024-12-19 18:26:34 +01:00
Version 1.8.0
This commit is contained in:
parent
35b2fb22b4
commit
cf044356fa
@ -1,8 +1,9 @@
|
|||||||
Version 1.7.0
|
Version 1.8.0
|
||||||
* development version
|
* released 25 September 2014
|
||||||
* added support for window.beforeunload event
|
* added support for window.beforeunload event
|
||||||
* added support for external.AddSearchProvider js function
|
* added support for external.AddSearchProvider js function
|
||||||
* added undo/redo actions to context menu in forms
|
* added undo/redo actions to context menu in forms
|
||||||
|
* added new theme Breathe
|
||||||
* added new commandline option to toggle fullscreen
|
* added new commandline option to toggle fullscreen
|
||||||
* added new commandline option to enable portable mode
|
* added new commandline option to enable portable mode
|
||||||
* added new context menu action to open links in private window
|
* added new context menu action to open links in private window
|
||||||
|
@ -74,7 +74,7 @@ You need to specify path to `macdeployqt` only if it is not in PATH.
|
|||||||
Current version
|
Current version
|
||||||
----------------------------------------------------------------------------------------
|
----------------------------------------------------------------------------------------
|
||||||
|
|
||||||
The current stable version of QupZilla is 1.6.6. You can download precompiled packages
|
The current stable version of QupZilla is 1.8.0. 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:
|
||||||
|
@ -2,7 +2,7 @@ resource app_signature "application/x-vnd.QupZilla";
|
|||||||
resource app_flags B_SINGLE_LAUNCH;
|
resource app_flags B_SINGLE_LAUNCH;
|
||||||
resource app_version {
|
resource app_version {
|
||||||
major = 1,
|
major = 1,
|
||||||
middle = 7,
|
middle = 8,
|
||||||
minor = 0,
|
minor = 0,
|
||||||
|
|
||||||
/* Application "variety" can be set to one of the following:
|
/* Application "variety" can be set to one of the following:
|
||||||
|
@ -8,7 +8,7 @@ UI_DIR = $$PWD/../build
|
|||||||
# workaround for #849: see https://bugreports.qt-project.org/browse/QTBUG-23196
|
# workaround for #849: see https://bugreports.qt-project.org/browse/QTBUG-23196
|
||||||
mocinclude.CONFIG *= fix_target
|
mocinclude.CONFIG *= fix_target
|
||||||
|
|
||||||
QZ_VERSION = 1.7.0
|
QZ_VERSION = 1.8.0
|
||||||
unix: VERSION = $$QZ_VERSION
|
unix: VERSION = $$QZ_VERSION
|
||||||
DEFINES *= QUPZILLA_VERSION=\\\"""$$QZ_VERSION"\\\""
|
DEFINES *= QUPZILLA_VERSION=\\\"""$$QZ_VERSION"\\\""
|
||||||
|
|
||||||
|
@ -209,8 +209,8 @@ void ProfileManager::updateProfile(const QString ¤t, const QString &profil
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
// 1.7.0 development version
|
|
||||||
if (prof >= Updater::Version("1.6.0") && prof < Updater::Version("1.8.0")) {
|
if (prof >= Updater::Version("1.6.0") && prof < Updater::Version("1.8.0")) {
|
||||||
|
update160();
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -344,3 +344,8 @@ void ProfileManager::update140()
|
|||||||
QSqlQuery query;
|
QSqlQuery query;
|
||||||
query.exec("ALTER TABLE search_engines ADD COLUMN postData TEXT");
|
query.exec("ALTER TABLE search_engines ADD COLUMN postData TEXT");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void ProfileManager::update160()
|
||||||
|
{
|
||||||
|
// Nothing to upgrade
|
||||||
|
}
|
||||||
|
@ -59,6 +59,7 @@ private:
|
|||||||
void update120();
|
void update120();
|
||||||
void update130();
|
void update130();
|
||||||
void update140();
|
void update140();
|
||||||
|
void update160();
|
||||||
|
|
||||||
bool m_databaseConnected;
|
bool m_databaseConnected;
|
||||||
};
|
};
|
||||||
|
@ -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,7,0,0
|
FILEVERSION 1,8,0,0
|
||||||
PRODUCTVERSION 1,7,0,0
|
PRODUCTVERSION 1,8,0,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.7.0"
|
VALUE "FileVersion", "1.8.0"
|
||||||
VALUE "LegalCopyright", "Copyright (C) 2010-2014 David Rosca"
|
VALUE "LegalCopyright", "Copyright (C) 2010-2014 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.7.0"
|
VALUE "ProductVersion", "1.8.0"
|
||||||
END
|
END
|
||||||
END
|
END
|
||||||
BLOCK "VarFileInfo"
|
BLOCK "VarFileInfo"
|
||||||
|
@ -24,7 +24,7 @@ RequestExecutionLevel admin
|
|||||||
SetCompressor /SOLID /FINAL lzma
|
SetCompressor /SOLID /FINAL lzma
|
||||||
|
|
||||||
!define PRODUCT_NAME "QupZilla"
|
!define PRODUCT_NAME "QupZilla"
|
||||||
!define /date PRODUCT_VERSION "1.6.1"
|
!define /date PRODUCT_VERSION "1.8.0"
|
||||||
!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"
|
||||||
|
Loading…
Reference in New Issue
Block a user