mirror of
https://github.com/d47081/qBittorrent.git
synced 2025-02-11 14:24:23 +00:00
![Christophe Dumez](/assets/img/avatar_default.png)
RSS items are now displayed as soon as they have been parsed instead of displaying all of them in one batch once the whole feed is parsed. First step to address issue #34.
36 lines
1.1 KiB
Plaintext
36 lines
1.1 KiB
Plaintext
INCLUDEPATH += $$PWD
|
|
|
|
HEADERS += $$PWD/rss_imp.h \
|
|
$$PWD/rsssettingsdlg.h \
|
|
$$PWD/feedlistwidget.h \
|
|
$$PWD/rssmanager.h \
|
|
$$PWD/rssfeed.h \
|
|
$$PWD/rssfolder.h \
|
|
$$PWD/rssfile.h \
|
|
$$PWD/rssarticle.h \
|
|
$$PWD/automatedrssdownloader.h \
|
|
$$PWD/rsssettings.h \
|
|
$$PWD/rssdownloadrule.h \
|
|
$$PWD/rssdownloadrulelist.h \
|
|
$$PWD/cookiesdlg.h \
|
|
$$PWD/rssparser.h
|
|
|
|
SOURCES += $$PWD/rss_imp.cpp \
|
|
$$PWD/rsssettingsdlg.cpp \
|
|
$$PWD/feedlistwidget.cpp \
|
|
$$PWD/rssmanager.cpp \
|
|
$$PWD/rssfeed.cpp \
|
|
$$PWD/rssfolder.cpp \
|
|
$$PWD/rssarticle.cpp \
|
|
$$PWD/automatedrssdownloader.cpp \
|
|
$$PWD/rssdownloadrule.cpp \
|
|
$$PWD/rssdownloadrulelist.cpp \
|
|
$$PWD/cookiesdlg.cpp \
|
|
$$PWD/rssfile.cpp \
|
|
$$PWD/rssparser.cpp
|
|
|
|
FORMS += $$PWD/rss.ui \
|
|
$$PWD/rsssettingsdlg.ui \
|
|
$$PWD/automatedrssdownloader.ui \
|
|
$$PWD/cookiesdlg.ui
|