1
mirror of https://invent.kde.org/network/falkon.git synced 2024-09-21 09:42:10 +02:00

Version 1.1.5

This commit is contained in:
nowrep 2012-01-07 12:43:18 +01:00
parent fe28298fae
commit aa7ab1d9e1
5 changed files with 13 additions and 8 deletions

View File

@ -47,7 +47,7 @@ To install QupZilla, you will have to run this command: (it may be neccessary to
Current version
----------------------------------------------------------------------------------------
The current released version of QupZilla is 1.1.0. You can download precompiled packages
The current released version of QupZilla is 1.1.5. You can download precompiled packages
and the sources from the download section.
However, if you want the latest revision, just take the latest code snapshot either by
downloading a tarball or running:

View File

@ -80,8 +80,12 @@ void ProfileUpdater::updateProfile(const QString &current, const QString &profil
return;
}
if (profileVersion == Updater::parseVersionFromString("1.1.0")) {
// Do nothing, nothing changed
return;
}
std::cout << "incompatible profile version detected, updating profile data..." << std::endl;
std::cout << "incompatible profile version detected, overwriting profile data..." << std::endl;
copyDataToProfile();
}

View File

@ -62,7 +62,7 @@
#include "webhistorywrapper.h"
#include "enhancedmenu.h"
const QString QupZilla::VERSION = "1.1.0";
const QString QupZilla::VERSION = "1.1.5";
const QString QupZilla::BUILDTIME = __DATE__" "__TIME__;
const QString QupZilla::AUTHOR = "David Rosca";
const QString QupZilla::COPYRIGHT = "2010-2012";

View File

@ -4,8 +4,8 @@ IDI_ICON1 ICON DISCARDABLE "data\icons\exeicons\qupzilla.ico"
IDI_ICON2 ICON DISCARDABLE "data\icons\exeicons\page.ico"
VS_VERSION_INFO VERSIONINFO
FILEVERSION 1,1,0,0
PRODUCTVERSION 1,1,0,0
FILEVERSION 1,1,5,0
PRODUCTVERSION 1,1,5,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.0"
VALUE "FileVersion", "1.1.5"
VALUE "LegalCopyright", "Copyright (C) 2010-2012 David Rosca"
VALUE "InternalName", "qupzilla"
VALUE "OriginalFilename", "qupzilla.exe"
VALUE "ProductName", "QupZilla"
VALUE "ProductVersion", "1.1.0"
VALUE "ProductVersion", "1.1.5"
END
END
BLOCK "VarFileInfo"

View File

@ -48,7 +48,8 @@ public:
bool operator==(const Engine &other) const {
return (this->name == other.name &&
this->url == other.url);
this->url == other.url &&
this->suggestionsUrl == other.suggestionsUrl);
}
};