diff --git a/TODO b/TODO index 01dedda2a..fd07be1e7 100644 --- a/TODO +++ b/TODO @@ -17,8 +17,12 @@ // Unsure - Azureus spoofing to prevent ban from trackers? - Option to shutdown computer when downloads are finished +- Display hard drive space left? - Make use of dbus on Linux for the single instance instead of socket communication? (http://techbase.kde.org/Development/Tutorials/D-Bus/Accessing_Interfaces) +- When favicon can't be downloaded, try to parse the webpage for: + + * Be carefull, the link can be relative // in v1.2.0 - Allow user to organize the downloads into categories/folders? @@ -38,9 +42,7 @@ - Allow to limit the number of downloading torrents simultaneously (other are paused until a download finishes) - Add "Mark all as read" feature for RSS - Allow to customize lists refreshing interval (in options) -- When favicon can't be downloaded, try to parse the webpage for: - - * Be carefull, the link can be relative +- Improve search plugin install (download drom url, choose in a list taken from plugins.qbittorrent.org) // in v1.0.0 (partial) - WIP - Check storage st creation + hasher in torrent creation diff --git a/src/GUI.cpp b/src/GUI.cpp index 423e5cb86..4b171916f 100644 --- a/src/GUI.cpp +++ b/src/GUI.cpp @@ -141,7 +141,7 @@ GUI::GUI(QWidget *parent, QStringList torrentCmdLine) : QMainWindow(parent), for // RSS tab rssWidget = new RSSImp(); tabs->addTab(rssWidget, tr("RSS")); - tabs->setTabIcon(3, QIcon(QString::fromUtf8(":/Icons/rss.png"))); + tabs->setTabIcon(3, QIcon(QString::fromUtf8(":/Icons/rss32.png"))); readSettings(); // Add torrent given on command line processParams(torrentCmdLine); diff --git a/src/Icons/rss.png b/src/Icons/rss.png deleted file mode 100644 index f09e2a152..000000000 Binary files a/src/Icons/rss.png and /dev/null differ diff --git a/src/Icons/rss16.png b/src/Icons/rss16.png new file mode 100644 index 000000000..30cf1a03d Binary files /dev/null and b/src/Icons/rss16.png differ diff --git a/src/Icons/rss32.png b/src/Icons/rss32.png new file mode 100644 index 000000000..d6f23522a Binary files /dev/null and b/src/Icons/rss32.png differ diff --git a/src/icons.qrc b/src/icons.qrc index 6f4626a85..43d0bf00e 100644 --- a/src/icons.qrc +++ b/src/icons.qrc @@ -24,7 +24,6 @@ Icons/style.png Icons/wizard.png Icons/password.png - Icons/rss.png Icons/sphere2.png Icons/smile.png Icons/loading.png @@ -36,6 +35,8 @@ Icons/add_file.png Icons/home.png Icons/splash.png + Icons/rss32.png + Icons/rss16.png Icons/flags/portugal.png Icons/flags/france.png Icons/flags/ukraine.png diff --git a/src/rss.h b/src/rss.h index e9aab3a0d..5009f1ab4 100644 --- a/src/rss.h +++ b/src/rss.h @@ -153,7 +153,7 @@ class RssStream : public QObject{ } public: - RssStream(QString _url): url(_url), alias(""), iconPath(":/Icons/rss.png"), refreshed(false), downloadFailure(false), currently_loading(false) { + RssStream(QString _url): url(_url), alias(""), iconPath(":/Icons/rss16.png"), refreshed(false), downloadFailure(false), currently_loading(false) { qDebug("RSSStream constructed"); }