mirror of
https://github.com/d47081/qBittorrent.git
synced 2025-01-10 23:07:59 +00:00
Merge pull request #2844 from ngosang/search_version
[Search engine] Show the version of search engines
This commit is contained in:
commit
8897001567
@ -6,8 +6,8 @@
|
|||||||
<rect>
|
<rect>
|
||||||
<x>0</x>
|
<x>0</x>
|
||||||
<y>0</y>
|
<y>0</y>
|
||||||
<width>541</width>
|
<width>600</width>
|
||||||
<height>254</height>
|
<height>300</height>
|
||||||
</rect>
|
</rect>
|
||||||
</property>
|
</property>
|
||||||
<property name="acceptDrops">
|
<property name="acceptDrops">
|
||||||
@ -50,6 +50,11 @@
|
|||||||
<string>Name</string>
|
<string>Name</string>
|
||||||
</property>
|
</property>
|
||||||
</column>
|
</column>
|
||||||
|
<column>
|
||||||
|
<property name="text">
|
||||||
|
<string>Version</string>
|
||||||
|
</property>
|
||||||
|
</column>
|
||||||
<column>
|
<column>
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>Url</string>
|
<string>Url</string>
|
||||||
|
@ -47,14 +47,16 @@
|
|||||||
#include <QTemporaryFile>
|
#include <QTemporaryFile>
|
||||||
#include <QMimeData>
|
#include <QMimeData>
|
||||||
|
|
||||||
enum EngineColumns {ENGINE_NAME, ENGINE_URL, ENGINE_STATE, ENGINE_ID};
|
enum EngineColumns {ENGINE_NAME, ENGINE_VERSION, ENGINE_URL, ENGINE_STATE, ENGINE_ID};
|
||||||
const QString UPDATE_URL = QString("https://raw.github.com/qbittorrent/qBittorrent/master/src/searchengine/") + (Utils::Misc::pythonVersion() >= 3 ? "nova3" : "nova") + "/engines/";
|
const QString UPDATE_URL = QString("https://raw.github.com/qbittorrent/qBittorrent/master/src/searchengine/") + (Utils::Misc::pythonVersion() >= 3 ? "nova3" : "nova") + "/engines/";
|
||||||
|
|
||||||
engineSelectDlg::engineSelectDlg(QWidget *parent, SupportedEngines *supported_engines) : QDialog(parent), supported_engines(supported_engines) {
|
engineSelectDlg::engineSelectDlg(QWidget *parent, SupportedEngines *supported_engines) : QDialog(parent), supported_engines(supported_engines) {
|
||||||
setupUi(this);
|
setupUi(this);
|
||||||
setAttribute(Qt::WA_DeleteOnClose);
|
setAttribute(Qt::WA_DeleteOnClose);
|
||||||
pluginsTree->header()->resizeSection(0, 170);
|
pluginsTree->setRootIsDecorated(false);
|
||||||
pluginsTree->header()->resizeSection(1, 220);
|
pluginsTree->header()->resizeSection(0, 160);
|
||||||
|
pluginsTree->header()->resizeSection(1, 80);
|
||||||
|
pluginsTree->header()->resizeSection(2, 200);
|
||||||
pluginsTree->hideColumn(ENGINE_ID);
|
pluginsTree->hideColumn(ENGINE_ID);
|
||||||
actionUninstall->setIcon(GuiIconProvider::instance()->getIcon("list-remove"));
|
actionUninstall->setIcon(GuiIconProvider::instance()->getIcon("list-remove"));
|
||||||
connect(actionEnable, SIGNAL(toggled(bool)), this, SLOT(enableSelection(bool)));
|
connect(actionEnable, SIGNAL(toggled(bool)), this, SLOT(enableSelection(bool)));
|
||||||
@ -266,11 +268,12 @@ void engineSelectDlg::installPlugin(QString path, QString plugin_name) {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
// Install was successful, remove backup
|
// Install was successful, remove backup and update plugin version
|
||||||
if (update) {
|
if (update) {
|
||||||
Utils::Fs::forceRemove(dest_path+".bak");
|
Utils::Fs::forceRemove(dest_path+".bak");
|
||||||
}
|
qreal version = SearchEngine::getPluginVersion(Utils::Fs::searchEngineLocation() + "/engines/" + plugin_name + ".py");
|
||||||
if (update) {
|
QTreeWidgetItem *item = findItemWithID(plugin_name);
|
||||||
|
item->setText(ENGINE_VERSION, QString::number(version, 'f', 2));
|
||||||
QMessageBox::information(this, tr("Search plugin install")+" -- "+tr("qBittorrent"), tr("%1 search engine plugin was successfully updated.", "%1 is the name of the search engine").arg(plugin_name));
|
QMessageBox::information(this, tr("Search plugin install")+" -- "+tr("qBittorrent"), tr("%1 search engine plugin was successfully updated.", "%1 is the name of the search engine").arg(plugin_name));
|
||||||
return;
|
return;
|
||||||
} else {
|
} else {
|
||||||
@ -314,6 +317,9 @@ void engineSelectDlg::addNewEngine(QString engine_name) {
|
|||||||
downloadFromUrl(engine->getUrl() + "/favicon.ico");
|
downloadFromUrl(engine->getUrl() + "/favicon.ico");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
// Load version
|
||||||
|
qreal version = SearchEngine::getPluginVersion(Utils::Fs::searchEngineLocation() + "/engines/" + engine->getName() + ".py");
|
||||||
|
item->setText(ENGINE_VERSION, QString::number(version, 'f', 2));
|
||||||
}
|
}
|
||||||
|
|
||||||
void engineSelectDlg::on_installButton_clicked() {
|
void engineSelectDlg::on_installButton_clicked() {
|
||||||
|
Loading…
Reference in New Issue
Block a user