mirror of
https://github.com/d47081/qBittorrent.git
synced 2025-02-02 01:44:26 +00:00
- Added RSS icon on its tab
This commit is contained in:
parent
6c8f0bff13
commit
b3e6f341ff
@ -5,6 +5,7 @@
|
|||||||
- FEATURE: Allow user to change qBT's style (Plastique, Cleanlooks, Motif, CDE, MacOSX, WinXP)
|
- FEATURE: Allow user to change qBT's style (Plastique, Cleanlooks, Motif, CDE, MacOSX, WinXP)
|
||||||
- COSMETIC: Redesigned torrent properties a little
|
- COSMETIC: Redesigned torrent properties a little
|
||||||
- COSMETIC: Redesigned options a little
|
- COSMETIC: Redesigned options a little
|
||||||
|
- COSMETIC: Display more logs messages concerning features
|
||||||
|
|
||||||
* Unknown - Christophe Dumez <chris@qbittorrent.org> - v0.9.0
|
* Unknown - Christophe Dumez <chris@qbittorrent.org> - v0.9.0
|
||||||
- FEATURE: Based on libtorrent v0.12
|
- FEATURE: Based on libtorrent v0.12
|
||||||
|
@ -167,7 +167,7 @@ GUI::GUI(QWidget *parent, QStringList torrentCmdLine) : QMainWindow(parent){
|
|||||||
// RSS tab
|
// RSS tab
|
||||||
rssWidget = new RSSImp();
|
rssWidget = new RSSImp();
|
||||||
tabs->addTab(rssWidget, tr("RSS"));
|
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
|
// Start download list refresher
|
||||||
refresher = new QTimer(this);
|
refresher = new QTimer(this);
|
||||||
connect(refresher, SIGNAL(timeout()), this, SLOT(updateDlList()));
|
connect(refresher, SIGNAL(timeout()), this, SLOT(updateDlList()));
|
||||||
|
BIN
src/Icons/rss.png
Normal file
BIN
src/Icons/rss.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 2.2 KiB |
@ -20,6 +20,7 @@
|
|||||||
<file>Icons/splash.jpg</file>
|
<file>Icons/splash.jpg</file>
|
||||||
<file>Icons/home.png</file>
|
<file>Icons/home.png</file>
|
||||||
<file>Icons/uparrow.png</file>
|
<file>Icons/uparrow.png</file>
|
||||||
|
<file>Icons/rss.png</file>
|
||||||
<file>Icons/downarrow.png</file>
|
<file>Icons/downarrow.png</file>
|
||||||
<file>Icons/connection.png</file>
|
<file>Icons/connection.png</file>
|
||||||
<file>Icons/flags/portugal.png</file>
|
<file>Icons/flags/portugal.png</file>
|
||||||
|
@ -11,7 +11,7 @@ TARGET = qbittorrent
|
|||||||
CONFIG += qt thread x11 network
|
CONFIG += qt thread x11 network
|
||||||
|
|
||||||
# Update this VERSION for each release
|
# Update this VERSION for each release
|
||||||
DEFINES += VERSION=\\\"v0.10.0alpha4\\\"
|
DEFINES += VERSION=\\\"v0.10.0alpha5\\\"
|
||||||
DEFINES += VERSION_MAJOR=0
|
DEFINES += VERSION_MAJOR=0
|
||||||
DEFINES += VERSION_MINOR=10
|
DEFINES += VERSION_MINOR=10
|
||||||
DEFINES += VERSION_BUGFIX=0
|
DEFINES += VERSION_BUGFIX=0
|
||||||
|
Loading…
x
Reference in New Issue
Block a user