Browse Source

- Added RSS icon on its tab

adaptive-webui-19844
Christophe Dumez 18 years ago
parent
commit
b3e6f341ff
  1. 1
      Changelog
  2. 2
      src/GUI.cpp
  3. BIN
      src/Icons/rss.png
  4. 1
      src/icons.qrc
  5. 2
      src/src.pro

1
Changelog

@ -5,6 +5,7 @@ @@ -5,6 +5,7 @@
- FEATURE: Allow user to change qBT's style (Plastique, Cleanlooks, Motif, CDE, MacOSX, WinXP)
- COSMETIC: Redesigned torrent properties a little
- COSMETIC: Redesigned options a little
- COSMETIC: Display more logs messages concerning features
* Unknown - Christophe Dumez <chris@qbittorrent.org> - v0.9.0
- FEATURE: Based on libtorrent v0.12

2
src/GUI.cpp

@ -167,7 +167,7 @@ GUI::GUI(QWidget *parent, QStringList torrentCmdLine) : QMainWindow(parent){ @@ -167,7 +167,7 @@ GUI::GUI(QWidget *parent, QStringList torrentCmdLine) : QMainWindow(parent){
// RSS tab
rssWidget = new RSSImp();
tabs->addTab(rssWidget, tr("RSS"));
tabs->setTabIcon(2, QIcon(QString::fromUtf8(":/Icons/skin/search.png")));
tabs->setTabIcon(2, QIcon(QString::fromUtf8(":/Icons/rss.png")));
// Start download list refresher
refresher = new QTimer(this);
connect(refresher, SIGNAL(timeout()), this, SLOT(updateDlList()));

BIN
src/Icons/rss.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 KiB

1
src/icons.qrc

@ -20,6 +20,7 @@ @@ -20,6 +20,7 @@
<file>Icons/splash.jpg</file>
<file>Icons/home.png</file>
<file>Icons/uparrow.png</file>
<file>Icons/rss.png</file>
<file>Icons/downarrow.png</file>
<file>Icons/connection.png</file>
<file>Icons/flags/portugal.png</file>

2
src/src.pro

@ -11,7 +11,7 @@ TARGET = qbittorrent @@ -11,7 +11,7 @@ TARGET = qbittorrent
CONFIG += qt thread x11 network
# Update this VERSION for each release
DEFINES += VERSION=\\\"v0.10.0alpha4\\\"
DEFINES += VERSION=\\\"v0.10.0alpha5\\\"
DEFINES += VERSION_MAJOR=0
DEFINES += VERSION_MINOR=10
DEFINES += VERSION_BUGFIX=0

Loading…
Cancel
Save