diff --git a/README.md b/README.md index 190315aeb..b2384e50a 100644 --- a/README.md +++ b/README.md @@ -30,7 +30,7 @@ First public release was 1.0.0-b4. Compiling ---------------------------------------------------------------------------------------- -Before you start compiling, make sure that you have installed the Qt (>=4.7) development libraries +Before you start compiling, make sure that you have installed the Qt (>=4.7) development libraries and you have read the BUILDING information. Then you can start compiling by running this commands: @@ -48,7 +48,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-rc1. You can download precompiled packages +The current released version of QupZilla is 1.0.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: diff --git a/src/preferences/pluginslist.cpp b/src/preferences/pluginslist.cpp index de6e6fe7b..416fa2478 100644 --- a/src/preferences/pluginslist.cpp +++ b/src/preferences/pluginslist.cpp @@ -47,7 +47,7 @@ PluginsList::PluginsList(QWidget* parent) : settings.beginGroup("ClickToFlash"); QStringList whitelist = mApp->plugins()->c2f_getWhiteList(); - ui->allowClick2Flash->setChecked(settings.value("Enable", true).toBool()); + ui->allowClick2Flash->setChecked(settings.value("Enable", false).toBool()); settings.endGroup(); foreach(QString site, whitelist) { QTreeWidgetItem* item = new QTreeWidgetItem(ui->whitelist);