mirror of
https://invent.kde.org/network/falkon.git
synced 2024-11-11 01:22:10 +01:00
Version 1.2.0
This commit is contained in:
parent
8f6979e06e
commit
7e3ff6f126
|
@ -58,7 +58,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.1.8. You can download precompiled packages
|
||||
The current released version of QupZilla is 1.2.0. 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:
|
||||
|
|
|
@ -3,7 +3,7 @@ OBJECTS_DIR = $$PWD/../build
|
|||
MOC_DIR = $$PWD/../build
|
||||
RCC_DIR = $$PWD/../build
|
||||
UI_DIR = $$PWD/../build
|
||||
unix: VERSION = 1.1.8
|
||||
unix: VERSION = 1.2.0
|
||||
|
||||
# Please read BUILD information #
|
||||
#DEFINES *= NO_SYSTEM_DATAPATH
|
||||
|
|
|
@ -79,7 +79,7 @@
|
|||
#include <QWebHistory>
|
||||
#include <QMessageBox>
|
||||
|
||||
const QString QupZilla::VERSION = "1.1.8";
|
||||
const QString QupZilla::VERSION = "1.2.0";
|
||||
const QString QupZilla::BUILDTIME = __DATE__" "__TIME__;
|
||||
const QString QupZilla::AUTHOR = "David Rosca";
|
||||
const QString QupZilla::COPYRIGHT = "2010-2012";
|
||||
|
|
|
@ -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,1,8,0
|
||||
PRODUCTVERSION 1,1,8,0
|
||||
FILEVERSION 1,2,0,0
|
||||
PRODUCTVERSION 1,2,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.1.8"
|
||||
VALUE "FileVersion", "1.2.0"
|
||||
VALUE "LegalCopyright", "Copyright (C) 2010-2012 David Rosca"
|
||||
VALUE "InternalName", "qupzilla"
|
||||
VALUE "OriginalFilename", "qupzilla.exe"
|
||||
VALUE "ProductName", "QupZilla"
|
||||
VALUE "ProductVersion", "1.1.8"
|
||||
VALUE "ProductVersion", "1.2.0"
|
||||
END
|
||||
END
|
||||
BLOCK "VarFileInfo"
|
||||
|
|
|
@ -60,7 +60,7 @@ bool AKN_Plugin::testPlugin()
|
|||
{
|
||||
// Let's be sure, require latest version of QupZilla
|
||||
|
||||
return (QupZilla::VERSION == "1.1.8");
|
||||
return (QupZilla::VERSION == "1.2.0");
|
||||
}
|
||||
|
||||
QTranslator* AKN_Plugin::getTranslator(const QString &locale)
|
||||
|
|
|
@ -63,7 +63,7 @@ bool MouseGesturesPlugin::testPlugin()
|
|||
{
|
||||
// Let's be sure, require latest version of QupZilla
|
||||
|
||||
return (QupZilla::VERSION == "1.1.8");
|
||||
return (QupZilla::VERSION == "1.2.0");
|
||||
}
|
||||
|
||||
QTranslator* MouseGesturesPlugin::getTranslator(const QString &locale)
|
||||
|
|
|
@ -89,7 +89,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 == "1.1.8");
|
||||
return (QupZilla::VERSION == "1.2.0");
|
||||
}
|
||||
|
||||
QTranslator* TestPlugin::getTranslator(const QString &locale)
|
||||
|
|
Loading…
Reference in New Issue
Block a user