mirror of
https://invent.kde.org/network/falkon.git
synced 2024-12-20 10:46:35 +01:00
Version 1.1.0
- checking for updates is by default disabled on Linux - added Polish translation, thanks to Michał Szymanowski
This commit is contained in:
parent
826126fd2d
commit
59de491557
2
AUTHORS
2
AUTHORS
@ -16,8 +16,8 @@ Ján Ďanovský <dagsoftware@yahoo.com> (Slovak)
|
||||
Unink-Lio <unink4451@163.com> (Chinese)
|
||||
Federico Fabiani <federico.fabiani85@gmail.com> (Italy)
|
||||
Francesco Marinucci <framarinucci@gmail.com> (Italy)
|
||||
Krzysztof Malinowski <boromil@gmail.com> (Polish)
|
||||
Jorge Sevilla <jsevi@ozu.es> (Spanish)
|
||||
Michał Szymanowski <tylkobuba@gmail.com> (Polish)
|
||||
|
||||
Special thanks:
|
||||
|
||||
|
@ -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.0.0. You can download precompiled packages
|
||||
The current released version of QupZilla is 1.1.0. 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:
|
||||
|
Binary file not shown.
Binary file not shown.
@ -2,7 +2,7 @@
|
||||
Encoding=UTF-8
|
||||
Name=QupZilla
|
||||
Type=Application
|
||||
Icon=qupzilla.png
|
||||
Icon=qupzilla
|
||||
Categories=Network;WebBrowser;
|
||||
Comment=A fast and secure web browser
|
||||
Comment[es]=Un navegador web rápido y seguro
|
||||
|
@ -170,7 +170,13 @@ MainApplication::MainApplication(const QList<CommandLineOptions::ActionPair> &cm
|
||||
AutoSaver* saver = new AutoSaver();
|
||||
connect(saver, SIGNAL(saveApp()), this, SLOT(saveStateSlot()));
|
||||
|
||||
if (settings2.value("Web-Browser-Settings/CheckUpdates", true).toBool()) {
|
||||
if (settings2.value("Web-Browser-Settings/CheckUpdates",
|
||||
#ifdef Q_WS_WIN
|
||||
true
|
||||
#else
|
||||
false
|
||||
#endif
|
||||
).toBool()) {
|
||||
m_updater = new Updater(qupzilla);
|
||||
}
|
||||
|
||||
|
@ -66,11 +66,18 @@ void ProfileUpdater::updateProfile(const QString ¤t, const QString &profil
|
||||
if (profileVersion == Updater::parseVersionFromString("1.0.0-b4")) {
|
||||
update100b4();
|
||||
update100rc1();
|
||||
update100();
|
||||
return;
|
||||
}
|
||||
|
||||
if (profileVersion == Updater::parseVersionFromString("1.0.0-rc1")) {
|
||||
update100rc1();
|
||||
update100();
|
||||
return;
|
||||
}
|
||||
|
||||
if (profileVersion == Updater::parseVersionFromString("1.0.0")) {
|
||||
update100();
|
||||
return;
|
||||
}
|
||||
|
||||
@ -112,3 +119,13 @@ void ProfileUpdater::update100rc1()
|
||||
query.exec("UPDATE bookmarks SET toolbar_position=0");
|
||||
|
||||
}
|
||||
|
||||
void ProfileUpdater::update100()
|
||||
{
|
||||
std::cout << "upgrading profile version from 1.0.0..." << std::endl;
|
||||
mApp->connectDatabase();
|
||||
|
||||
QSqlQuery query;
|
||||
query.exec("ALTER TABLE autofill ADD COLUMN last_used NUMERIC");
|
||||
query.exec("UPDATE autofill SET last_used=0");
|
||||
}
|
||||
|
@ -39,6 +39,7 @@ private:
|
||||
|
||||
void update100b4();
|
||||
void update100rc1();
|
||||
void update100();
|
||||
|
||||
QString m_profilePath;
|
||||
QString m_dataPath;
|
||||
|
@ -62,7 +62,7 @@
|
||||
#include "webhistorywrapper.h"
|
||||
#include "menu.h"
|
||||
|
||||
const QString QupZilla::VERSION = "1.0.0";
|
||||
const QString QupZilla::VERSION = "1.1.0";
|
||||
const QString QupZilla::BUILDTIME = __DATE__" "__TIME__;
|
||||
const QString QupZilla::AUTHOR = "David Rosca";
|
||||
const QString QupZilla::COPYRIGHT = "2010-2011";
|
||||
|
@ -195,8 +195,8 @@ QString QupZillaSchemeReply::aboutPage()
|
||||
authorString("Unink-Lio", "unink4451@163.com") + " (Chinese)<br/>" +
|
||||
authorString("Federico Fabiani", "federico.fabiani85@gmail.com") + " (Italy)<br/>" +
|
||||
authorString("Francesco Marinucci", "framarinucci@gmail.com") + " (Italy)<br/>" +
|
||||
authorString("Krzysztof Malinowski", "boromil@gmail.com") + " (Polish)<br/>" +
|
||||
authorString("Jorge Sevilla", "jsevi@ozu.es") + " (Spanish)"
|
||||
authorString("Jorge Sevilla", "jsevi@ozu.es") + " (Spanish)<br/>" +
|
||||
authorString("Michał Szymanowski", "tylkobuba@gmail.com") + " (Polish)"
|
||||
);
|
||||
|
||||
return page;
|
||||
|
@ -80,8 +80,8 @@ void AboutDialog::showAuthors()
|
||||
"Unink-Lio (Chinese)<br/>"
|
||||
"Federico Fabiani (Italy)<br/>"
|
||||
"Francesco Marinucci (Italy)<br/>"
|
||||
"Krzysztof Malinowski (Polish)<br/>"
|
||||
"Jorge Sevilla (Spanish)"
|
||||
"Jorge Sevilla (Spanish)<br/>"
|
||||
"Michał Szymanowski (Polish)"
|
||||
));
|
||||
m_authorsHtml.append("</div>");
|
||||
}
|
||||
|
@ -116,7 +116,13 @@ Preferences::Preferences(QupZilla* mainClass, QWidget* parent)
|
||||
int afterLaunch = settings.value("afterLaunch", 1).toInt();
|
||||
settings.endGroup();
|
||||
ui->afterLaunch->setCurrentIndex(afterLaunch);
|
||||
ui->checkUpdates->setChecked(settings.value("Web-Browser-Settings/CheckUpdates", true).toBool());
|
||||
ui->checkUpdates->setChecked(settings.value("Web-Browser-Settings/CheckUpdates",
|
||||
#ifdef Q_WS_WIN
|
||||
true
|
||||
#else
|
||||
false
|
||||
#endif
|
||||
).toBool());
|
||||
|
||||
ui->newTabFrame->setVisible(false);
|
||||
if (m_newTabUrl.isEmpty()) {
|
||||
|
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue
Block a user