├── .appveyor.yml ├── .editorconfig ├── .gitattributes ├── .github └── ISSUE_TEMPLATE.md ├── .gitignore ├── .travis.yml ├── .tx └── config ├── 5B7CC9A2.asc ├── AUTHORS ├── CMakeLists.txt ├── CODING_GUIDELINES.md ├── CONTRIBUTING.md ├── COPYING ├── Changelog ├── INSTALL ├── NEWS ├── README.md ├── TODO ├── bootstrap.sh ├── cmake └── Modules │ ├── DeployQt5.cmake │ ├── FindLibtorrentRasterbar.cmake │ ├── FindQtSingleApplication.cmake │ ├── FindSystemd.cmake │ ├── FunctionReadVersion.cmake │ ├── MacroConfigureMSVCRuntime.cmake │ ├── MacroGlibcDetect.cmake │ ├── MacroLinkQtComponents.cmake │ ├── MacroQbtCompilerSettings.cmake │ ├── QbtTargetSources.cmake │ ├── bundle.cmake │ ├── winconf-mingw.cmake │ ├── winconf-msvc.cmake │ └── winconf.cmake ├── codingStyleQtCreator.xml ├── conf.pri.in ├── conf.pri.windows ├── configure ├── configure.ac ├── dist ├── CMakeLists.txt ├── mac │ ├── CMakeLists.txt │ ├── Info.plist │ ├── qBitTorrentDocument.icns │ ├── qbittorrent_mac.icns │ └── qt.conf ├── qt-translations │ ├── qt_ar.qm │ ├── qt_bg.qm │ ├── qt_ca.qm │ ├── qt_cs.qm │ ├── qt_da.qm │ ├── qt_de.qm │ ├── qt_es.qm │ ├── qt_eu.qm │ ├── qt_fa.qm │ ├── qt_fi.qm │ ├── qt_fr.qm │ ├── qt_gl.qm │ ├── qt_he.qm │ ├── qt_hu.qm │ ├── qt_it.qm │ ├── qt_ja.qm │ ├── qt_ko.qm │ ├── qt_lt.qm │ ├── qt_nl.qm │ ├── qt_pl.qm │ ├── qt_pt.qm │ ├── qt_pt_BR.qm │ ├── qt_ru.qm │ ├── qt_sk.qm │ ├── qt_sl.qm │ ├── qt_sv.qm │ ├── qt_tr.qm │ ├── qt_uk.qm │ ├── qt_zh_CN.qm │ ├── qt_zh_TW.qm │ ├── qtbase_ca.qm │ ├── qtbase_cs.qm │ ├── qtbase_de.qm │ ├── qtbase_fi.qm │ ├── qtbase_fr.qm │ ├── qtbase_he.qm │ ├── qtbase_hu.qm │ ├── qtbase_it.qm │ ├── qtbase_ja.qm │ ├── qtbase_ko.qm │ ├── qtbase_lv.qm │ ├── qtbase_pl.qm │ ├── qtbase_ru.qm │ ├── qtbase_sk.qm │ └── qtbase_uk.qm ├── unix │ ├── CMakeLists.txt │ ├── menuicons │ │ ├── 128x128 │ │ │ ├── apps │ │ │ │ └── qbittorrent.png │ │ │ └── status │ │ │ │ └── qbittorrent-tray.png │ │ ├── 16x16 │ │ │ ├── apps │ │ │ │ └── qbittorrent.png │ │ │ └── status │ │ │ │ └── qbittorrent-tray.png │ │ ├── 192x192 │ │ │ ├── apps │ │ │ │ └── qbittorrent.png │ │ │ └── status │ │ │ │ └── qbittorrent-tray.png │ │ ├── 22x22 │ │ │ ├── apps │ │ │ │ └── qbittorrent.png │ │ │ └── status │ │ │ │ └── qbittorrent-tray.png │ │ ├── 24x24 │ │ │ ├── apps │ │ │ │ └── qbittorrent.png │ │ │ └── status │ │ │ │ └── qbittorrent-tray.png │ │ ├── 32x32 │ │ │ ├── apps │ │ │ │ └── qbittorrent.png │ │ │ └── status │ │ │ │ └── qbittorrent-tray.png │ │ ├── 36x36 │ │ │ ├── apps │ │ │ │ └── qbittorrent.png │ │ │ └── status │ │ │ │ └── qbittorrent-tray.png │ │ ├── 48x48 │ │ │ ├── apps │ │ │ │ └── qbittorrent.png │ │ │ └── status │ │ │ │ └── qbittorrent-tray.png │ │ ├── 64x64 │ │ │ ├── apps │ │ │ │ └── qbittorrent.png │ │ │ └── status │ │ │ │ └── qbittorrent-tray.png │ │ ├── 72x72 │ │ │ ├── apps │ │ │ │ └── qbittorrent.png │ │ │ └── status │ │ │ │ └── qbittorrent-tray.png │ │ └── 96x96 │ │ │ ├── apps │ │ │ └── qbittorrent.png │ │ │ └── status │ │ │ └── qbittorrent-tray.png │ ├── qbittorrent.appdata.xml │ └── systemd │ │ └── qbittorrent-nox@.service.in └── windows │ ├── CMakeLists.txt │ ├── README.txt │ ├── UAC.nsh │ ├── installer-translations │ ├── afrikaans.nsi │ ├── albanian.nsi │ ├── arabic.nsi │ ├── basque.nsi │ ├── belarusian.nsi │ ├── bosnian.nsi │ ├── breton.nsi │ ├── bulgarian.nsi │ ├── catalan.nsi │ ├── croatian.nsi │ ├── czech.nsi │ ├── danish.nsi │ ├── dutch.nsi │ ├── english.nsi │ ├── esperanto.nsi │ ├── estonian.nsi │ ├── farsi.nsi │ ├── finnish.nsi │ ├── french.nsi │ ├── galician.nsi │ ├── german.nsi │ ├── greek.nsi │ ├── hebrew.nsi │ ├── hungarian.nsi │ ├── icelandic.nsi │ ├── indonesian.nsi │ ├── irish.nsi │ ├── italian.nsi │ ├── japanese.nsi │ ├── korean.nsi │ ├── kurdish.nsi │ ├── latvian.nsi │ ├── lithuanian.nsi │ ├── luxembourgish.nsi │ ├── macedonian.nsi │ ├── malay.nsi │ ├── mongolian.nsi │ ├── norwegian.nsi │ ├── norwegiannynorsk.nsi │ ├── polish.nsi │ ├── portuguese.nsi │ ├── portugueseBR.nsi │ ├── romanian.nsi │ ├── russian.nsi │ ├── serbian.nsi │ ├── serbianlatin.nsi │ ├── simpchinese.nsi │ ├── slovak.nsi │ ├── slovenian.nsi │ ├── spanish.nsi │ ├── spanishinternational.nsi │ ├── swedish.nsi │ ├── thai.nsi │ ├── tradchinese.nsi │ ├── turkish.nsi │ ├── ukrainian.nsi │ ├── uzbek.nsi │ └── welsh.nsi │ ├── installer.nsi │ ├── nsis plugins │ ├── FindProcDLL_mod_by_hnedka.7z │ ├── UAC.zip │ └── nsisFirewall.zip │ ├── options.nsi │ ├── qbittorrent.nsi │ ├── qt.conf │ ├── translations.nsi │ └── uninstaller.nsi ├── doc ├── qbittorrent-nox.1 └── qbittorrent.1 ├── m4 ├── ax_boost_base.m4 ├── ax_boost_system.m4 ├── ax_define_dir.m4 ├── pkg.m4 └── qbittorrent.m4 ├── macxconf.pri ├── qbittorrent.pro ├── qm_gen.pri ├── src ├── CMakeLists.txt ├── app │ ├── CMakeLists.txt │ ├── app.pri │ ├── application.cpp │ ├── application.h │ ├── cmdoptions.cpp │ ├── cmdoptions.h │ ├── filelogger.cpp │ ├── filelogger.h │ ├── main.cpp │ ├── qtsingleapplication │ │ ├── CMakeLists.txt │ │ ├── QtLockedFile │ │ ├── QtSingleApplication │ │ ├── qtlocalpeer.cpp │ │ ├── qtlocalpeer.h │ │ ├── qtlockedfile.cpp │ │ ├── qtlockedfile.h │ │ ├── qtlockedfile_unix.cpp │ │ ├── qtlockedfile_win.cpp │ │ ├── qtsingleapplication.cpp │ │ ├── qtsingleapplication.h │ │ ├── qtsingleapplication.pri │ │ ├── qtsinglecoreapplication.cpp │ │ ├── qtsinglecoreapplication.h │ │ └── qtsinglecoreapplication.pri │ ├── stacktrace.h │ ├── stacktrace_win.h │ ├── stacktrace_win_dlg.h │ ├── stacktrace_win_dlg.ui │ └── upgrade.h ├── base │ ├── CMakeLists.txt │ ├── asyncfilestorage.cpp │ ├── asyncfilestorage.h │ ├── base.pri │ ├── bittorrent │ │ ├── addtorrentparams.h │ │ ├── cachestatus.h │ │ ├── infohash.cpp │ │ ├── infohash.h │ │ ├── magneturi.cpp │ │ ├── magneturi.h │ │ ├── peerinfo.cpp │ │ ├── peerinfo.h │ │ ├── private │ │ │ ├── bandwidthscheduler.cpp │ │ │ ├── bandwidthscheduler.h │ │ │ ├── filterparserthread.cpp │ │ │ ├── filterparserthread.h │ │ │ ├── resumedatasavingmanager.cpp │ │ │ ├── resumedatasavingmanager.h │ │ │ ├── speedmonitor.cpp │ │ │ ├── speedmonitor.h │ │ │ ├── statistics.cpp │ │ │ └── statistics.h │ │ ├── session.cpp │ │ ├── session.h │ │ ├── sessionstatus.h │ │ ├── torrentcreatorthread.cpp │ │ ├── torrentcreatorthread.h │ │ ├── torrenthandle.cpp │ │ ├── torrenthandle.h │ │ ├── torrentinfo.cpp │ │ ├── torrentinfo.h │ │ ├── tracker.cpp │ │ ├── tracker.h │ │ ├── trackerentry.cpp │ │ └── trackerentry.h │ ├── filesystemwatcher.cpp │ ├── filesystemwatcher.h │ ├── global.h │ ├── http │ │ ├── connection.cpp │ │ ├── connection.h │ │ ├── irequesthandler.h │ │ ├── requestparser.cpp │ │ ├── requestparser.h │ │ ├── responsebuilder.cpp │ │ ├── responsebuilder.h │ │ ├── responsegenerator.cpp │ │ ├── responsegenerator.h │ │ ├── server.cpp │ │ ├── server.h │ │ └── types.h │ ├── iconprovider.cpp │ ├── iconprovider.h │ ├── indexrange.h │ ├── logger.cpp │ ├── logger.h │ ├── net │ │ ├── dnsupdater.cpp │ │ ├── dnsupdater.h │ │ ├── downloadhandler.cpp │ │ ├── downloadhandler.h │ │ ├── downloadmanager.cpp │ │ ├── downloadmanager.h │ │ ├── geoipmanager.cpp │ │ ├── geoipmanager.h │ │ ├── portforwarder.cpp │ │ ├── portforwarder.h │ │ ├── private │ │ │ ├── geoipdatabase.cpp │ │ │ └── geoipdatabase.h │ │ ├── proxyconfigurationmanager.cpp │ │ ├── proxyconfigurationmanager.h │ │ ├── reverseresolution.cpp │ │ ├── reverseresolution.h │ │ ├── smtp.cpp │ │ └── smtp.h │ ├── preferences.cpp │ ├── preferences.h │ ├── private │ │ ├── profile_p.cpp │ │ └── profile_p.h │ ├── profile.cpp │ ├── profile.h │ ├── rss │ │ ├── private │ │ │ ├── rss_parser.cpp │ │ │ └── rss_parser.h │ │ ├── rss_article.cpp │ │ ├── rss_article.h │ │ ├── rss_autodownloader.cpp │ │ ├── rss_autodownloader.h │ │ ├── rss_autodownloadrule.cpp │ │ ├── rss_autodownloadrule.h │ │ ├── rss_feed.cpp │ │ ├── rss_feed.h │ │ ├── rss_folder.cpp │ │ ├── rss_folder.h │ │ ├── rss_item.cpp │ │ ├── rss_item.h │ │ ├── rss_session.cpp │ │ └── rss_session.h │ ├── scanfoldersmodel.cpp │ ├── scanfoldersmodel.h │ ├── searchengine.cpp │ ├── searchengine.h │ ├── settingsstorage.cpp │ ├── settingsstorage.h │ ├── settingvalue.h │ ├── torrentfileguard.cpp │ ├── torrentfileguard.h │ ├── torrentfilter.cpp │ ├── torrentfilter.h │ ├── tristatebool.cpp │ ├── tristatebool.h │ ├── types.h │ ├── unicodestrings.h │ └── utils │ │ ├── fs.cpp │ │ ├── fs.h │ │ ├── gzip.cpp │ │ ├── gzip.h │ │ ├── misc.cpp │ │ ├── misc.h │ │ ├── net.cpp │ │ ├── net.h │ │ ├── random.cpp │ │ ├── random.h │ │ ├── string.cpp │ │ ├── string.h │ │ └── version.h ├── config.h.cmakein ├── gui │ ├── CMakeLists.txt │ ├── about.qrc │ ├── about.ui │ ├── about_imp.h │ ├── addnewtorrentdialog.cpp │ ├── addnewtorrentdialog.h │ ├── addnewtorrentdialog.ui │ ├── advancedsettings.cpp │ ├── advancedsettings.h │ ├── autoexpandabledialog.cpp │ ├── autoexpandabledialog.h │ ├── autoexpandabledialog.ui │ ├── bandwidth_limit.ui │ ├── banlistoptions.cpp │ ├── banlistoptions.h │ ├── banlistoptions.ui │ ├── categoryfiltermodel.cpp │ ├── categoryfiltermodel.h │ ├── categoryfilterproxymodel.cpp │ ├── categoryfilterproxymodel.h │ ├── categoryfilterwidget.cpp │ ├── categoryfilterwidget.h │ ├── confirmdeletiondlg.ui │ ├── cookiesdialog.cpp │ ├── cookiesdialog.h │ ├── cookiesdialog.ui │ ├── cookiesmodel.cpp │ ├── cookiesmodel.h │ ├── deletionconfirmationdlg.h │ ├── downloadfromurldlg.h │ ├── downloadfromurldlg.ui │ ├── executionlog.cpp │ ├── executionlog.h │ ├── executionlog.ui │ ├── fspathedit.cpp │ ├── fspathedit.h │ ├── fspathedit_p.cpp │ ├── fspathedit_p.h │ ├── gpl.html │ ├── gui.pri │ ├── guiiconprovider.cpp │ ├── guiiconprovider.h │ ├── hidabletabwidget.h │ ├── ipsubnetwhitelistoptionsdialog.cpp │ ├── ipsubnetwhitelistoptionsdialog.h │ ├── ipsubnetwhitelistoptionsdialog.ui │ ├── lineedit │ │ ├── CMakeLists.txt │ │ ├── lineedit.pri │ │ ├── resources │ │ │ ├── lineeditimages.qrc │ │ │ └── lineeditimages │ │ │ │ └── search.png │ │ └── src │ │ │ ├── lineedit.cpp │ │ │ └── lineedit.h │ ├── login.ui │ ├── loglistwidget.cpp │ ├── loglistwidget.h │ ├── macutilities.h │ ├── macutilities.mm │ ├── mainwindow.cpp │ ├── mainwindow.h │ ├── mainwindow.ui │ ├── messageboxraised.cpp │ ├── messageboxraised.h │ ├── optionsdlg.cpp │ ├── optionsdlg.h │ ├── optionsdlg.ui │ ├── powermanagement │ │ ├── CMakeLists.txt │ │ ├── powermanagement.cpp │ │ ├── powermanagement.h │ │ ├── powermanagement.pri │ │ ├── powermanagement_x11.cpp │ │ └── powermanagement_x11.h │ ├── previewlistdelegate.h │ ├── previewselectdialog.cpp │ ├── previewselectdialog.h │ ├── previewselectdialog.ui │ ├── programupdater.cpp │ ├── programupdater.h │ ├── properties │ │ ├── CMakeLists.txt │ │ ├── downloadedpiecesbar.cpp │ │ ├── downloadedpiecesbar.h │ │ ├── peerlistdelegate.h │ │ ├── peerlistsortmodel.h │ │ ├── peerlistwidget.cpp │ │ ├── peerlistwidget.h │ │ ├── peersadditiondlg.cpp │ │ ├── peersadditiondlg.h │ │ ├── peersadditiondlg.ui │ │ ├── pieceavailabilitybar.cpp │ │ ├── pieceavailabilitybar.h │ │ ├── piecesbar.cpp │ │ ├── piecesbar.h │ │ ├── properties.pri │ │ ├── propertieswidget.cpp │ │ ├── propertieswidget.h │ │ ├── propertieswidget.ui │ │ ├── proplistdelegate.cpp │ │ ├── proplistdelegate.h │ │ ├── proptabbar.cpp │ │ ├── proptabbar.h │ │ ├── speedplotview.cpp │ │ ├── speedplotview.h │ │ ├── speedwidget.cpp │ │ ├── speedwidget.h │ │ ├── trackerlist.cpp │ │ ├── trackerlist.h │ │ ├── trackersadditiondlg.cpp │ │ ├── trackersadditiondlg.h │ │ └── trackersadditiondlg.ui │ ├── qtnotify │ │ ├── CMakeLists.txt │ │ ├── notifications.cpp │ │ ├── notifications.h │ │ ├── notifications.xml │ │ └── qtnotify.pri │ ├── rss │ │ ├── CMakeLists.txt │ │ ├── articlelistwidget.cpp │ │ ├── articlelistwidget.h │ │ ├── automatedrssdownloader.cpp │ │ ├── automatedrssdownloader.h │ │ ├── automatedrssdownloader.ui │ │ ├── feedlistwidget.cpp │ │ ├── feedlistwidget.h │ │ ├── htmlbrowser.cpp │ │ ├── htmlbrowser.h │ │ ├── rsswidget.cpp │ │ ├── rsswidget.h │ │ └── rsswidget.ui │ ├── scanfoldersdelegate.cpp │ ├── scanfoldersdelegate.h │ ├── search │ │ ├── CMakeLists.txt │ │ ├── pluginselectdlg.cpp │ │ ├── pluginselectdlg.h │ │ ├── pluginselectdlg.ui │ │ ├── pluginsourcedlg.cpp │ │ ├── pluginsourcedlg.h │ │ ├── pluginsourcedlg.ui │ │ ├── searchlistdelegate.cpp │ │ ├── searchlistdelegate.h │ │ ├── searchsortmodel.cpp │ │ ├── searchsortmodel.h │ │ ├── searchtab.cpp │ │ ├── searchtab.h │ │ ├── searchtab.ui │ │ ├── searchwidget.cpp │ │ ├── searchwidget.h │ │ └── searchwidget.ui │ ├── shutdownconfirmdlg.cpp │ ├── shutdownconfirmdlg.h │ ├── shutdownconfirmdlg.ui │ ├── speedlimitdlg.cpp │ ├── speedlimitdlg.h │ ├── statsdialog.cpp │ ├── statsdialog.h │ ├── statsdialog.ui │ ├── statusbar.cpp │ ├── statusbar.h │ ├── tagfiltermodel.cpp │ ├── tagfiltermodel.h │ ├── tagfilterproxymodel.cpp │ ├── tagfilterproxymodel.h │ ├── tagfilterwidget.cpp │ ├── tagfilterwidget.h │ ├── thanks.html │ ├── torrentcategorydialog.cpp │ ├── torrentcategorydialog.h │ ├── torrentcategorydialog.ui │ ├── torrentcontentfiltermodel.cpp │ ├── torrentcontentfiltermodel.h │ ├── torrentcontentmodel.cpp │ ├── torrentcontentmodel.h │ ├── torrentcontentmodelfile.cpp │ ├── torrentcontentmodelfile.h │ ├── torrentcontentmodelfolder.cpp │ ├── torrentcontentmodelfolder.h │ ├── torrentcontentmodelitem.cpp │ ├── torrentcontentmodelitem.h │ ├── torrentcontenttreeview.cpp │ ├── torrentcontenttreeview.h │ ├── torrentcreatordlg.cpp │ ├── torrentcreatordlg.h │ ├── torrentcreatordlg.ui │ ├── torrentmodel.cpp │ ├── torrentmodel.h │ ├── trackerlogin.cpp │ ├── trackerlogin.h │ ├── transferlistdelegate.cpp │ ├── transferlistdelegate.h │ ├── transferlistfilterswidget.cpp │ ├── transferlistfilterswidget.h │ ├── transferlistsortmodel.cpp │ ├── transferlistsortmodel.h │ ├── transferlistwidget.cpp │ ├── transferlistwidget.h │ ├── translators.html │ ├── updownratiodlg.cpp │ ├── updownratiodlg.h │ └── updownratiodlg.ui ├── icons.qrc ├── icons │ ├── 3-state-checkbox.gif │ ├── L.gif │ ├── fileicon.svg │ ├── flags │ │ ├── ad.svg │ │ ├── ae.svg │ │ ├── af.svg │ │ ├── ag.svg │ │ ├── ai.svg │ │ ├── al.svg │ │ ├── am.svg │ │ ├── ao.svg │ │ ├── aq.svg │ │ ├── ar.svg │ │ ├── as.svg │ │ ├── at.svg │ │ ├── au.svg │ │ ├── aw.svg │ │ ├── ax.svg │ │ ├── az.svg │ │ ├── ba.svg │ │ ├── bb.svg │ │ ├── bd.svg │ │ ├── be.svg │ │ ├── bf.svg │ │ ├── bg.svg │ │ ├── bh.svg │ │ ├── bi.svg │ │ ├── bj.svg │ │ ├── bl.svg │ │ ├── bm.svg │ │ ├── bn.svg │ │ ├── bo.svg │ │ ├── bq.svg │ │ ├── br.svg │ │ ├── bs.svg │ │ ├── bt.svg │ │ ├── bv.svg │ │ ├── bw.svg │ │ ├── by.svg │ │ ├── bz.svg │ │ ├── ca.svg │ │ ├── cc.svg │ │ ├── cd.svg │ │ ├── cf.svg │ │ ├── cg.svg │ │ ├── ch.svg │ │ ├── ci.svg │ │ ├── ck.svg │ │ ├── cl.svg │ │ ├── cm.svg │ │ ├── cn.svg │ │ ├── co.svg │ │ ├── cr.svg │ │ ├── cu.svg │ │ ├── cv.svg │ │ ├── cw.svg │ │ ├── cx.svg │ │ ├── cy.svg │ │ ├── cz.svg │ │ ├── de.svg │ │ ├── dj.svg │ │ ├── dk.svg │ │ ├── dm.svg │ │ ├── do.svg │ │ ├── dz.svg │ │ ├── ec.svg │ │ ├── ee.svg │ │ ├── eg.svg │ │ ├── eh.svg │ │ ├── er.svg │ │ ├── es.svg │ │ ├── et.svg │ │ ├── fi.svg │ │ ├── fj.svg │ │ ├── fk.svg │ │ ├── fm.svg │ │ ├── fo.svg │ │ ├── fr.svg │ │ ├── ga.svg │ │ ├── gb.svg │ │ ├── gd.svg │ │ ├── ge.svg │ │ ├── gf.svg │ │ ├── gg.svg │ │ ├── gh.svg │ │ ├── gi.svg │ │ ├── gl.svg │ │ ├── gm.svg │ │ ├── gn.svg │ │ ├── gp.svg │ │ ├── gq.svg │ │ ├── gr.svg │ │ ├── gs.svg │ │ ├── gt.svg │ │ ├── gu.svg │ │ ├── gw.svg │ │ ├── gy.svg │ │ ├── hk.svg │ │ ├── hm.svg │ │ ├── hn.svg │ │ ├── hr.svg │ │ ├── ht.svg │ │ ├── hu.svg │ │ ├── icons-set-readme.txt │ │ ├── id.svg │ │ ├── ie.svg │ │ ├── il.svg │ │ ├── im.svg │ │ ├── in.svg │ │ ├── io.svg │ │ ├── iq.svg │ │ ├── ir.svg │ │ ├── is.svg │ │ ├── it.svg │ │ ├── je.svg │ │ ├── jm.svg │ │ ├── jo.svg │ │ ├── jp.svg │ │ ├── ke.svg │ │ ├── kg.svg │ │ ├── kh.svg │ │ ├── ki.svg │ │ ├── km.svg │ │ ├── kn.svg │ │ ├── kp.svg │ │ ├── kr.svg │ │ ├── kw.svg │ │ ├── ky.svg │ │ ├── kz.svg │ │ ├── la.svg │ │ ├── lb.svg │ │ ├── lc.svg │ │ ├── li.svg │ │ ├── lk.svg │ │ ├── lr.svg │ │ ├── ls.svg │ │ ├── lt.svg │ │ ├── lu.svg │ │ ├── lv.svg │ │ ├── ly.svg │ │ ├── ma.svg │ │ ├── mc.svg │ │ ├── md.svg │ │ ├── me.svg │ │ ├── mf.svg │ │ ├── mg.svg │ │ ├── mh.svg │ │ ├── mk.svg │ │ ├── ml.svg │ │ ├── mm.svg │ │ ├── mn.svg │ │ ├── mo.svg │ │ ├── mp.svg │ │ ├── mq.svg │ │ ├── mr.svg │ │ ├── ms.svg │ │ ├── mt.svg │ │ ├── mu.svg │ │ ├── mv.svg │ │ ├── mw.svg │ │ ├── mx.svg │ │ ├── my.svg │ │ ├── mz.svg │ │ ├── na.svg │ │ ├── nc.svg │ │ ├── ne.svg │ │ ├── nf.svg │ │ ├── ng.svg │ │ ├── ni.svg │ │ ├── nl.svg │ │ ├── no.svg │ │ ├── np.svg │ │ ├── nr.svg │ │ ├── nu.svg │ │ ├── nz.svg │ │ ├── om.svg │ │ ├── pa.svg │ │ ├── pe.svg │ │ ├── pf.svg │ │ ├── pg.svg │ │ ├── ph.svg │ │ ├── pk.svg │ │ ├── pl.svg │ │ ├── pm.svg │ │ ├── pn.svg │ │ ├── pr.svg │ │ ├── ps.svg │ │ ├── pt.svg │ │ ├── pw.svg │ │ ├── py.svg │ │ ├── qa.svg │ │ ├── re.svg │ │ ├── ro.svg │ │ ├── rs.svg │ │ ├── ru.svg │ │ ├── rw.svg │ │ ├── sa.svg │ │ ├── sb.svg │ │ ├── sc.svg │ │ ├── sd.svg │ │ ├── se.svg │ │ ├── sg.svg │ │ ├── sh.svg │ │ ├── si.svg │ │ ├── sj.svg │ │ ├── sk.svg │ │ ├── sl.svg │ │ ├── sm.svg │ │ ├── sn.svg │ │ ├── so.svg │ │ ├── sr.svg │ │ ├── ss.svg │ │ ├── st.svg │ │ ├── sv.svg │ │ ├── sx.svg │ │ ├── sy.svg │ │ ├── sz.svg │ │ ├── tc.svg │ │ ├── td.svg │ │ ├── tf.svg │ │ ├── tg.svg │ │ ├── th.svg │ │ ├── tj.svg │ │ ├── tk.svg │ │ ├── tl.svg │ │ ├── tm.svg │ │ ├── tn.svg │ │ ├── to.svg │ │ ├── tr.svg │ │ ├── tt.svg │ │ ├── tv.svg │ │ ├── tw.svg │ │ ├── tz.svg │ │ ├── ua.svg │ │ ├── ug.svg │ │ ├── um.svg │ │ ├── us.svg │ │ ├── uy.svg │ │ ├── uz.svg │ │ ├── va.svg │ │ ├── vc.svg │ │ ├── ve.svg │ │ ├── vg.svg │ │ ├── vi.svg │ │ ├── vn.svg │ │ ├── vu.svg │ │ ├── wf.svg │ │ ├── ws.svg │ │ ├── ye.svg │ │ ├── yt.svg │ │ ├── za.svg │ │ ├── zm.svg │ │ └── zw.svg │ ├── loading.png │ ├── qbittorrent.desktop │ ├── qbt-theme │ │ ├── README.md │ │ ├── application-exit.png │ │ ├── application-rss+xml.png │ │ ├── application-x-mswinurl.png │ │ ├── build-icons │ │ │ ├── Gruntfile.js │ │ │ ├── icons │ │ │ │ ├── application-exit.svg │ │ │ │ ├── application-rss+xml.svg │ │ │ │ ├── application-x-mswinurl.svg │ │ │ │ ├── checked.svg │ │ │ │ ├── configure.svg │ │ │ │ ├── dialog-cancel.svg │ │ │ │ ├── dialog-information.svg │ │ │ │ ├── dialog-warning.svg │ │ │ │ ├── document-edit-verify.svg │ │ │ │ ├── document-edit.svg │ │ │ │ ├── document-encrypt.svg │ │ │ │ ├── document-import.svg │ │ │ │ ├── document-new.svg │ │ │ │ ├── document-properties.svg │ │ │ │ ├── document-save.svg │ │ │ │ ├── download.svg │ │ │ │ ├── edit-clear-history.svg │ │ │ │ ├── edit-clear.svg │ │ │ │ ├── edit-copy.svg │ │ │ │ ├── edit-cut.svg │ │ │ │ ├── edit-delete.svg │ │ │ │ ├── edit-find-user.svg │ │ │ │ ├── edit-find.svg │ │ │ │ ├── edit-paste.svg │ │ │ │ ├── edit-rename.svg │ │ │ │ ├── folder-documents.svg │ │ │ │ ├── folder-download.svg │ │ │ │ ├── folder-new.svg │ │ │ │ ├── folder-remote.svg │ │ │ │ ├── gear.svg │ │ │ │ ├── gear32.svg │ │ │ │ ├── go-bottom.svg │ │ │ │ ├── go-down.svg │ │ │ │ ├── go-top.svg │ │ │ │ ├── go-up.svg │ │ │ │ ├── help-about.svg │ │ │ │ ├── help-contents.svg │ │ │ │ ├── inode-directory.svg │ │ │ │ ├── insert-link.svg │ │ │ │ ├── list-add.svg │ │ │ │ ├── list-remove.svg │ │ │ │ ├── mail-folder-inbox.svg │ │ │ │ ├── mail-mark-read.svg │ │ │ │ ├── media-playback-pause.svg │ │ │ │ ├── media-playback-start.svg │ │ │ │ ├── media-seek-forward.svg │ │ │ │ ├── network-server.svg │ │ │ │ ├── network-wired.svg │ │ │ │ ├── object-locked.svg │ │ │ │ ├── office-chart-line.svg │ │ │ │ ├── preferences-desktop.svg │ │ │ │ ├── preferences-other.svg │ │ │ │ ├── preferences-system-network.svg │ │ │ │ ├── preferences-web-browser-cookies.svg │ │ │ │ ├── security-high.svg │ │ │ │ ├── security-low.svg │ │ │ │ ├── services.svg │ │ │ │ ├── speedometer.svg │ │ │ │ ├── system-log-out.svg │ │ │ │ ├── tab-close.svg │ │ │ │ ├── task-attention.svg │ │ │ │ ├── text-plain.svg │ │ │ │ ├── tools-report-bug.svg │ │ │ │ ├── unavailable.svg │ │ │ │ ├── user-group-delete.svg │ │ │ │ ├── user-group-new.svg │ │ │ │ ├── view-calendar-journal.svg │ │ │ │ ├── view-categories.svg │ │ │ │ ├── view-filter.svg │ │ │ │ ├── view-preview.svg │ │ │ │ ├── view-refresh.svg │ │ │ │ ├── view-statistics.svg │ │ │ │ ├── wallet-open.svg │ │ │ │ └── webui.svg │ │ │ ├── package.json │ │ │ └── readme.md │ │ ├── checked.png │ │ ├── configure.png │ │ ├── dialog-cancel.png │ │ ├── dialog-information.png │ │ ├── dialog-warning.png │ │ ├── document-edit-verify.png │ │ ├── document-edit.png │ │ ├── document-encrypt.png │ │ ├── document-import.png │ │ ├── document-new.png │ │ ├── document-properties.png │ │ ├── document-save.png │ │ ├── download.png │ │ ├── edit-clear-history.png │ │ ├── edit-clear.png │ │ ├── edit-copy.png │ │ ├── edit-cut.png │ │ ├── edit-delete.png │ │ ├── edit-find-user.png │ │ ├── edit-find.png │ │ ├── edit-paste.png │ │ ├── edit-rename.png │ │ ├── folder-documents.png │ │ ├── folder-download.png │ │ ├── folder-new.png │ │ ├── folder-remote.png │ │ ├── gear.png │ │ ├── gear32.png │ │ ├── go-bottom.png │ │ ├── go-down.png │ │ ├── go-top.png │ │ ├── go-up.png │ │ ├── help-about.png │ │ ├── help-contents.png │ │ ├── inode-directory.png │ │ ├── insert-link.png │ │ ├── kt-magnet.png │ │ ├── kt-set-max-download-speed.png │ │ ├── kt-set-max-upload-speed.png │ │ ├── list-add.png │ │ ├── list-remove.png │ │ ├── mail-folder-inbox.png │ │ ├── mail-mark-read.png │ │ ├── media-playback-pause.png │ │ ├── media-playback-start.png │ │ ├── media-seek-forward.png │ │ ├── network-server.png │ │ ├── network-wired.png │ │ ├── object-locked.png │ │ ├── office-chart-line.png │ │ ├── preferences-desktop.png │ │ ├── preferences-other.png │ │ ├── preferences-system-network.png │ │ ├── preferences-web-browser-cookies.png │ │ ├── rss-config.png │ │ ├── security-high.png │ │ ├── security-low.png │ │ ├── services.png │ │ ├── speedometer.png │ │ ├── system-log-out.png │ │ ├── tab-close.png │ │ ├── task-attention.png │ │ ├── task-complete.png │ │ ├── task-ongoing.png │ │ ├── task-reject.png │ │ ├── text-plain.png │ │ ├── tools-report-bug.png │ │ ├── unavailable.png │ │ ├── user-group-delete.png │ │ ├── user-group-new.png │ │ ├── view-calendar-journal.png │ │ ├── view-categories.png │ │ ├── view-filter.png │ │ ├── view-preview.png │ │ ├── view-refresh.png │ │ ├── view-statistics.png │ │ ├── wallet-open.png │ │ └── webui.png │ ├── skin │ │ ├── arrow-right.gif │ │ ├── bg-dropdown.gif │ │ ├── bg-handle-horizontal.gif │ │ ├── bg-header.gif │ │ ├── bg-panel-header.gif │ │ ├── build-icons │ │ │ ├── Gruntfile.js │ │ │ ├── icons │ │ │ │ ├── checking.svg │ │ │ │ ├── completed.svg │ │ │ │ ├── connected.svg │ │ │ │ ├── disconnected.svg │ │ │ │ ├── download.svg │ │ │ │ ├── downloading.svg │ │ │ │ ├── error.svg │ │ │ │ ├── filteractive.svg │ │ │ │ ├── filterall.svg │ │ │ │ ├── filterinactive.svg │ │ │ │ ├── firewalled.svg │ │ │ │ ├── paused.svg │ │ │ │ ├── queued.svg │ │ │ │ ├── ratio.svg │ │ │ │ ├── resumed.svg │ │ │ │ ├── seeding.svg │ │ │ │ ├── stalledDL.svg │ │ │ │ ├── stalledUP.svg │ │ │ │ └── uploading.svg │ │ │ ├── package.json │ │ │ └── readme.md │ │ ├── checking.png │ │ ├── collapse-expand.gif │ │ ├── completed.png │ │ ├── connected.png │ │ ├── disconnected.png │ │ ├── dock-tabs.gif │ │ ├── download.png │ │ ├── downloading.png │ │ ├── error.png │ │ ├── filteractive.png │ │ ├── filterall.png │ │ ├── filterinactive.png │ │ ├── firewalled.png │ │ ├── handle-icon-horizontal.gif │ │ ├── handle-icon.gif │ │ ├── knob.gif │ │ ├── logo-blank.gif │ │ ├── logo.gif │ │ ├── logo2.gif │ │ ├── mascot.png │ │ ├── paused.png │ │ ├── qbittorrent-tray-dark.svg │ │ ├── qbittorrent-tray-light.svg │ │ ├── qbittorrent-tray-with-font.svg │ │ ├── qbittorrent-tray.svg │ │ ├── qbittorrent16.png │ │ ├── qbittorrent32.png │ │ ├── queued.png │ │ ├── ratio.png │ │ ├── resumed.png │ │ ├── seeding.png │ │ ├── slider-area.gif │ │ ├── spacer.gif │ │ ├── spinner-placeholder.gif │ │ ├── spinner.gif │ │ ├── splash.png │ │ ├── stalledDL.png │ │ ├── stalledUP.png │ │ ├── tabs.gif │ │ ├── toolbox-divider.gif │ │ ├── toolbox-divider2.gif │ │ └── uploading.png │ ├── slow.png │ ├── slow_off.png │ ├── sphere.png │ ├── sphere2.png │ └── url.png ├── lang.qrc ├── lang │ ├── TRANSLATION_INSTRUCTIONS │ ├── qbittorrent_ar.ts │ ├── qbittorrent_be.ts │ ├── qbittorrent_bg.ts │ ├── qbittorrent_ca.ts │ ├── qbittorrent_cs.ts │ ├── qbittorrent_da.ts │ ├── qbittorrent_de.ts │ ├── qbittorrent_el.ts │ ├── qbittorrent_en.ts │ ├── qbittorrent_en_AU.ts │ ├── qbittorrent_en_GB.ts │ ├── qbittorrent_eo.ts │ ├── qbittorrent_es.ts │ ├── qbittorrent_eu.ts │ ├── qbittorrent_fi.ts │ ├── qbittorrent_fr.ts │ ├── qbittorrent_gl.ts │ ├── qbittorrent_he.ts │ ├── qbittorrent_hi_IN.ts │ ├── qbittorrent_hr.ts │ ├── qbittorrent_hu.ts │ ├── qbittorrent_hy.ts │ ├── qbittorrent_id.ts │ ├── qbittorrent_is.ts │ ├── qbittorrent_it.ts │ ├── qbittorrent_ja.ts │ ├── qbittorrent_ka.ts │ ├── qbittorrent_ko.ts │ ├── qbittorrent_lt.ts │ ├── qbittorrent_lv_LV.ts │ ├── qbittorrent_ms_MY.ts │ ├── qbittorrent_nb.ts │ ├── qbittorrent_nl.ts │ ├── qbittorrent_oc.ts │ ├── qbittorrent_pl.ts │ ├── qbittorrent_pt_BR.ts │ ├── qbittorrent_pt_PT.ts │ ├── qbittorrent_ro.ts │ ├── qbittorrent_ru.ts │ ├── qbittorrent_sk.ts │ ├── qbittorrent_sl.ts │ ├── qbittorrent_sr.ts │ ├── qbittorrent_sv.ts │ ├── qbittorrent_tr.ts │ ├── qbittorrent_uk.ts │ ├── qbittorrent_uz@Latn.ts │ ├── qbittorrent_vi.ts │ ├── qbittorrent_zh.ts │ ├── qbittorrent_zh_HK.ts │ └── qbittorrent_zh_TW.ts ├── qbittorrent.exe.manifest ├── qbittorrent.ico ├── qbittorrent.rc ├── qbittorrent_file.ico ├── qbittorrent_mingw.rc ├── searchengine.qrc ├── searchengine │ ├── nova │ │ ├── __init__.py │ │ ├── fix_encoding.py │ │ ├── helpers.py │ │ ├── nova2.py │ │ ├── nova2dl.py │ │ ├── novaprinter.py │ │ └── socks.py │ └── nova3 │ │ ├── __init__.py │ │ ├── helpers.py │ │ ├── nova2.py │ │ ├── nova2dl.py │ │ ├── novaprinter.py │ │ ├── sgmllib3.py │ │ └── socks.py ├── src.pro ├── update_qrc_files.py └── webui │ ├── CMakeLists.txt │ ├── abstractwebapplication.cpp │ ├── abstractwebapplication.h │ ├── btjson.cpp │ ├── btjson.h │ ├── extra_translations.h │ ├── jsonutils.h │ ├── prefjson.cpp │ ├── prefjson.h │ ├── webapplication.cpp │ ├── webapplication.h │ ├── websessiondata.h │ ├── webui.cpp │ ├── webui.h │ ├── webui.pri │ ├── webui.qrc │ └── www │ ├── private │ ├── index.html │ └── login.html │ └── public │ ├── about.html │ ├── addtrackers.html │ ├── confirmdeletion.html │ ├── css │ ├── Core.css │ ├── Layout.css │ ├── Tabs.css │ ├── Window.css │ ├── dynamicTable.css │ └── style.css │ ├── download.html │ ├── downloadlimit.html │ ├── filters.html │ ├── newcategory.html │ ├── preferences.html │ ├── preferences_content.html │ ├── properties.html │ ├── properties_content.html │ ├── rename.html │ ├── scripts │ ├── client.js │ ├── clipboard.min.js │ ├── contextmenu.js │ ├── download.js │ ├── dynamicTable.js │ ├── excanvas-compressed.js │ ├── misc.js │ ├── mocha-init.js │ ├── mocha-yc.js │ ├── mocha.js │ ├── mootools-1.2-core-yc.js │ ├── mootools-1.2-more.js │ ├── parametrics.js │ ├── progressbar.js │ ├── prop-files.js │ ├── prop-general.js │ ├── prop-trackers.js │ └── prop-webseeds.js │ ├── setlocation.html │ ├── statistics.html │ ├── transferlist.html │ ├── upload.html │ └── uploadlimit.html ├── uncrustify.cfg ├── unixconf.pri ├── version.pri └── winconf.pri /.appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/.appveyor.yml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/.travis.yml -------------------------------------------------------------------------------- /.tx/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/.tx/config -------------------------------------------------------------------------------- /5B7CC9A2.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/5B7CC9A2.asc -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/AUTHORS -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CODING_GUIDELINES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/CODING_GUIDELINES.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/COPYING -------------------------------------------------------------------------------- /Changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/Changelog -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/INSTALL -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/NEWS -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/README.md -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- 1 | See https://blueprints.launchpad.net/qbittorrent/ 2 | 3 | -------------------------------------------------------------------------------- /bootstrap.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | aclocal -I m4 4 | autoconf 5 | -------------------------------------------------------------------------------- /cmake/Modules/DeployQt5.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/cmake/Modules/DeployQt5.cmake -------------------------------------------------------------------------------- /cmake/Modules/FindSystemd.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/cmake/Modules/FindSystemd.cmake -------------------------------------------------------------------------------- /cmake/Modules/FunctionReadVersion.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/cmake/Modules/FunctionReadVersion.cmake -------------------------------------------------------------------------------- /cmake/Modules/MacroGlibcDetect.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/cmake/Modules/MacroGlibcDetect.cmake -------------------------------------------------------------------------------- /cmake/Modules/QbtTargetSources.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/cmake/Modules/QbtTargetSources.cmake -------------------------------------------------------------------------------- /cmake/Modules/bundle.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/cmake/Modules/bundle.cmake -------------------------------------------------------------------------------- /cmake/Modules/winconf-mingw.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/cmake/Modules/winconf-mingw.cmake -------------------------------------------------------------------------------- /cmake/Modules/winconf-msvc.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/cmake/Modules/winconf-msvc.cmake -------------------------------------------------------------------------------- /cmake/Modules/winconf.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/cmake/Modules/winconf.cmake -------------------------------------------------------------------------------- /codingStyleQtCreator.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/codingStyleQtCreator.xml -------------------------------------------------------------------------------- /conf.pri.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/conf.pri.in -------------------------------------------------------------------------------- /conf.pri.windows: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/conf.pri.windows -------------------------------------------------------------------------------- /configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/configure -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/configure.ac -------------------------------------------------------------------------------- /dist/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/dist/CMakeLists.txt -------------------------------------------------------------------------------- /dist/mac/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/mac/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/dist/mac/Info.plist -------------------------------------------------------------------------------- /dist/mac/qBitTorrentDocument.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/dist/mac/qBitTorrentDocument.icns -------------------------------------------------------------------------------- /dist/mac/qbittorrent_mac.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/dist/mac/qbittorrent_mac.icns -------------------------------------------------------------------------------- /dist/mac/qt.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/dist/mac/qt.conf -------------------------------------------------------------------------------- /dist/qt-translations/qt_ar.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/dist/qt-translations/qt_ar.qm -------------------------------------------------------------------------------- /dist/qt-translations/qt_bg.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/dist/qt-translations/qt_bg.qm -------------------------------------------------------------------------------- /dist/qt-translations/qt_ca.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/dist/qt-translations/qt_ca.qm -------------------------------------------------------------------------------- /dist/qt-translations/qt_cs.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/dist/qt-translations/qt_cs.qm -------------------------------------------------------------------------------- /dist/qt-translations/qt_da.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/dist/qt-translations/qt_da.qm -------------------------------------------------------------------------------- /dist/qt-translations/qt_de.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/dist/qt-translations/qt_de.qm -------------------------------------------------------------------------------- /dist/qt-translations/qt_es.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/dist/qt-translations/qt_es.qm -------------------------------------------------------------------------------- /dist/qt-translations/qt_eu.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/dist/qt-translations/qt_eu.qm -------------------------------------------------------------------------------- /dist/qt-translations/qt_fa.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/dist/qt-translations/qt_fa.qm -------------------------------------------------------------------------------- /dist/qt-translations/qt_fi.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/dist/qt-translations/qt_fi.qm -------------------------------------------------------------------------------- /dist/qt-translations/qt_fr.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/dist/qt-translations/qt_fr.qm -------------------------------------------------------------------------------- /dist/qt-translations/qt_gl.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/dist/qt-translations/qt_gl.qm -------------------------------------------------------------------------------- /dist/qt-translations/qt_he.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/dist/qt-translations/qt_he.qm -------------------------------------------------------------------------------- /dist/qt-translations/qt_hu.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/dist/qt-translations/qt_hu.qm -------------------------------------------------------------------------------- /dist/qt-translations/qt_it.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/dist/qt-translations/qt_it.qm -------------------------------------------------------------------------------- /dist/qt-translations/qt_ja.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/dist/qt-translations/qt_ja.qm -------------------------------------------------------------------------------- /dist/qt-translations/qt_ko.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/dist/qt-translations/qt_ko.qm -------------------------------------------------------------------------------- /dist/qt-translations/qt_lt.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/dist/qt-translations/qt_lt.qm -------------------------------------------------------------------------------- /dist/qt-translations/qt_nl.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/dist/qt-translations/qt_nl.qm -------------------------------------------------------------------------------- /dist/qt-translations/qt_pl.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/dist/qt-translations/qt_pl.qm -------------------------------------------------------------------------------- /dist/qt-translations/qt_pt.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/dist/qt-translations/qt_pt.qm -------------------------------------------------------------------------------- /dist/qt-translations/qt_pt_BR.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/dist/qt-translations/qt_pt_BR.qm -------------------------------------------------------------------------------- /dist/qt-translations/qt_ru.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/dist/qt-translations/qt_ru.qm -------------------------------------------------------------------------------- /dist/qt-translations/qt_sk.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/dist/qt-translations/qt_sk.qm -------------------------------------------------------------------------------- /dist/qt-translations/qt_sl.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/dist/qt-translations/qt_sl.qm -------------------------------------------------------------------------------- /dist/qt-translations/qt_sv.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/dist/qt-translations/qt_sv.qm -------------------------------------------------------------------------------- /dist/qt-translations/qt_tr.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/dist/qt-translations/qt_tr.qm -------------------------------------------------------------------------------- /dist/qt-translations/qt_uk.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/dist/qt-translations/qt_uk.qm -------------------------------------------------------------------------------- /dist/qt-translations/qt_zh_CN.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/dist/qt-translations/qt_zh_CN.qm -------------------------------------------------------------------------------- /dist/qt-translations/qt_zh_TW.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/dist/qt-translations/qt_zh_TW.qm -------------------------------------------------------------------------------- /dist/qt-translations/qtbase_ca.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/dist/qt-translations/qtbase_ca.qm -------------------------------------------------------------------------------- /dist/qt-translations/qtbase_cs.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/dist/qt-translations/qtbase_cs.qm -------------------------------------------------------------------------------- /dist/qt-translations/qtbase_de.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/dist/qt-translations/qtbase_de.qm -------------------------------------------------------------------------------- /dist/qt-translations/qtbase_fi.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/dist/qt-translations/qtbase_fi.qm -------------------------------------------------------------------------------- /dist/qt-translations/qtbase_fr.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/dist/qt-translations/qtbase_fr.qm -------------------------------------------------------------------------------- /dist/qt-translations/qtbase_he.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/dist/qt-translations/qtbase_he.qm -------------------------------------------------------------------------------- /dist/qt-translations/qtbase_hu.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/dist/qt-translations/qtbase_hu.qm -------------------------------------------------------------------------------- /dist/qt-translations/qtbase_it.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/dist/qt-translations/qtbase_it.qm -------------------------------------------------------------------------------- /dist/qt-translations/qtbase_ja.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/dist/qt-translations/qtbase_ja.qm -------------------------------------------------------------------------------- /dist/qt-translations/qtbase_ko.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/dist/qt-translations/qtbase_ko.qm -------------------------------------------------------------------------------- /dist/qt-translations/qtbase_lv.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/dist/qt-translations/qtbase_lv.qm -------------------------------------------------------------------------------- /dist/qt-translations/qtbase_pl.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/dist/qt-translations/qtbase_pl.qm -------------------------------------------------------------------------------- /dist/qt-translations/qtbase_ru.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/dist/qt-translations/qtbase_ru.qm -------------------------------------------------------------------------------- /dist/qt-translations/qtbase_sk.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/dist/qt-translations/qtbase_sk.qm -------------------------------------------------------------------------------- /dist/qt-translations/qtbase_uk.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/dist/qt-translations/qtbase_uk.qm -------------------------------------------------------------------------------- /dist/unix/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/dist/unix/CMakeLists.txt -------------------------------------------------------------------------------- /dist/unix/qbittorrent.appdata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/dist/unix/qbittorrent.appdata.xml -------------------------------------------------------------------------------- /dist/windows/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | install(FILES qt.conf DESTINATION ${CMAKE_INSTALL_BINDIR}) 2 | -------------------------------------------------------------------------------- /dist/windows/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/dist/windows/README.txt -------------------------------------------------------------------------------- /dist/windows/UAC.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/dist/windows/UAC.nsh -------------------------------------------------------------------------------- /dist/windows/installer.nsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/dist/windows/installer.nsi -------------------------------------------------------------------------------- /dist/windows/nsis plugins/UAC.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/dist/windows/nsis plugins/UAC.zip -------------------------------------------------------------------------------- /dist/windows/options.nsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/dist/windows/options.nsi -------------------------------------------------------------------------------- /dist/windows/qbittorrent.nsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/dist/windows/qbittorrent.nsi -------------------------------------------------------------------------------- /dist/windows/qt.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/dist/windows/qt.conf -------------------------------------------------------------------------------- /dist/windows/translations.nsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/dist/windows/translations.nsi -------------------------------------------------------------------------------- /dist/windows/uninstaller.nsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/dist/windows/uninstaller.nsi -------------------------------------------------------------------------------- /doc/qbittorrent-nox.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/doc/qbittorrent-nox.1 -------------------------------------------------------------------------------- /doc/qbittorrent.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/doc/qbittorrent.1 -------------------------------------------------------------------------------- /m4/ax_boost_base.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/m4/ax_boost_base.m4 -------------------------------------------------------------------------------- /m4/ax_boost_system.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/m4/ax_boost_system.m4 -------------------------------------------------------------------------------- /m4/ax_define_dir.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/m4/ax_define_dir.m4 -------------------------------------------------------------------------------- /m4/pkg.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/m4/pkg.m4 -------------------------------------------------------------------------------- /m4/qbittorrent.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/m4/qbittorrent.m4 -------------------------------------------------------------------------------- /macxconf.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/macxconf.pri -------------------------------------------------------------------------------- /qbittorrent.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/qbittorrent.pro -------------------------------------------------------------------------------- /qm_gen.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/qm_gen.pri -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/app/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/app/CMakeLists.txt -------------------------------------------------------------------------------- /src/app/app.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/app/app.pri -------------------------------------------------------------------------------- /src/app/application.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/app/application.cpp -------------------------------------------------------------------------------- /src/app/application.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/app/application.h -------------------------------------------------------------------------------- /src/app/cmdoptions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/app/cmdoptions.cpp -------------------------------------------------------------------------------- /src/app/cmdoptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/app/cmdoptions.h -------------------------------------------------------------------------------- /src/app/filelogger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/app/filelogger.cpp -------------------------------------------------------------------------------- /src/app/filelogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/app/filelogger.h -------------------------------------------------------------------------------- /src/app/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/app/main.cpp -------------------------------------------------------------------------------- /src/app/qtsingleapplication/QtLockedFile: -------------------------------------------------------------------------------- 1 | #include "qtlockedfile.h" 2 | -------------------------------------------------------------------------------- /src/app/qtsingleapplication/QtSingleApplication: -------------------------------------------------------------------------------- 1 | #include "qtsingleapplication.h" 2 | -------------------------------------------------------------------------------- /src/app/stacktrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/app/stacktrace.h -------------------------------------------------------------------------------- /src/app/stacktrace_win.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/app/stacktrace_win.h -------------------------------------------------------------------------------- /src/app/stacktrace_win_dlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/app/stacktrace_win_dlg.h -------------------------------------------------------------------------------- /src/app/stacktrace_win_dlg.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/app/stacktrace_win_dlg.ui -------------------------------------------------------------------------------- /src/app/upgrade.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/app/upgrade.h -------------------------------------------------------------------------------- /src/base/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/base/CMakeLists.txt -------------------------------------------------------------------------------- /src/base/asyncfilestorage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/base/asyncfilestorage.cpp -------------------------------------------------------------------------------- /src/base/asyncfilestorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/base/asyncfilestorage.h -------------------------------------------------------------------------------- /src/base/base.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/base/base.pri -------------------------------------------------------------------------------- /src/base/bittorrent/addtorrentparams.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/base/bittorrent/addtorrentparams.h -------------------------------------------------------------------------------- /src/base/bittorrent/cachestatus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/base/bittorrent/cachestatus.h -------------------------------------------------------------------------------- /src/base/bittorrent/infohash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/base/bittorrent/infohash.cpp -------------------------------------------------------------------------------- /src/base/bittorrent/infohash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/base/bittorrent/infohash.h -------------------------------------------------------------------------------- /src/base/bittorrent/magneturi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/base/bittorrent/magneturi.cpp -------------------------------------------------------------------------------- /src/base/bittorrent/magneturi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/base/bittorrent/magneturi.h -------------------------------------------------------------------------------- /src/base/bittorrent/peerinfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/base/bittorrent/peerinfo.cpp -------------------------------------------------------------------------------- /src/base/bittorrent/peerinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/base/bittorrent/peerinfo.h -------------------------------------------------------------------------------- /src/base/bittorrent/session.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/base/bittorrent/session.cpp -------------------------------------------------------------------------------- /src/base/bittorrent/session.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/base/bittorrent/session.h -------------------------------------------------------------------------------- /src/base/bittorrent/sessionstatus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/base/bittorrent/sessionstatus.h -------------------------------------------------------------------------------- /src/base/bittorrent/torrenthandle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/base/bittorrent/torrenthandle.cpp -------------------------------------------------------------------------------- /src/base/bittorrent/torrenthandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/base/bittorrent/torrenthandle.h -------------------------------------------------------------------------------- /src/base/bittorrent/torrentinfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/base/bittorrent/torrentinfo.cpp -------------------------------------------------------------------------------- /src/base/bittorrent/torrentinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/base/bittorrent/torrentinfo.h -------------------------------------------------------------------------------- /src/base/bittorrent/tracker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/base/bittorrent/tracker.cpp -------------------------------------------------------------------------------- /src/base/bittorrent/tracker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/base/bittorrent/tracker.h -------------------------------------------------------------------------------- /src/base/bittorrent/trackerentry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/base/bittorrent/trackerentry.cpp -------------------------------------------------------------------------------- /src/base/bittorrent/trackerentry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/base/bittorrent/trackerentry.h -------------------------------------------------------------------------------- /src/base/filesystemwatcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/base/filesystemwatcher.cpp -------------------------------------------------------------------------------- /src/base/filesystemwatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/base/filesystemwatcher.h -------------------------------------------------------------------------------- /src/base/global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/base/global.h -------------------------------------------------------------------------------- /src/base/http/connection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/base/http/connection.cpp -------------------------------------------------------------------------------- /src/base/http/connection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/base/http/connection.h -------------------------------------------------------------------------------- /src/base/http/irequesthandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/base/http/irequesthandler.h -------------------------------------------------------------------------------- /src/base/http/requestparser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/base/http/requestparser.cpp -------------------------------------------------------------------------------- /src/base/http/requestparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/base/http/requestparser.h -------------------------------------------------------------------------------- /src/base/http/responsebuilder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/base/http/responsebuilder.cpp -------------------------------------------------------------------------------- /src/base/http/responsebuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/base/http/responsebuilder.h -------------------------------------------------------------------------------- /src/base/http/responsegenerator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/base/http/responsegenerator.cpp -------------------------------------------------------------------------------- /src/base/http/responsegenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/base/http/responsegenerator.h -------------------------------------------------------------------------------- /src/base/http/server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/base/http/server.cpp -------------------------------------------------------------------------------- /src/base/http/server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/base/http/server.h -------------------------------------------------------------------------------- /src/base/http/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/base/http/types.h -------------------------------------------------------------------------------- /src/base/iconprovider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/base/iconprovider.cpp -------------------------------------------------------------------------------- /src/base/iconprovider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/base/iconprovider.h -------------------------------------------------------------------------------- /src/base/indexrange.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/base/indexrange.h -------------------------------------------------------------------------------- /src/base/logger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/base/logger.cpp -------------------------------------------------------------------------------- /src/base/logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/base/logger.h -------------------------------------------------------------------------------- /src/base/net/dnsupdater.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/base/net/dnsupdater.cpp -------------------------------------------------------------------------------- /src/base/net/dnsupdater.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/base/net/dnsupdater.h -------------------------------------------------------------------------------- /src/base/net/downloadhandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/base/net/downloadhandler.cpp -------------------------------------------------------------------------------- /src/base/net/downloadhandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/base/net/downloadhandler.h -------------------------------------------------------------------------------- /src/base/net/downloadmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/base/net/downloadmanager.cpp -------------------------------------------------------------------------------- /src/base/net/downloadmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/base/net/downloadmanager.h -------------------------------------------------------------------------------- /src/base/net/geoipmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/base/net/geoipmanager.cpp -------------------------------------------------------------------------------- /src/base/net/geoipmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/base/net/geoipmanager.h -------------------------------------------------------------------------------- /src/base/net/portforwarder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/base/net/portforwarder.cpp -------------------------------------------------------------------------------- /src/base/net/portforwarder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/base/net/portforwarder.h -------------------------------------------------------------------------------- /src/base/net/private/geoipdatabase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/base/net/private/geoipdatabase.cpp -------------------------------------------------------------------------------- /src/base/net/private/geoipdatabase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/base/net/private/geoipdatabase.h -------------------------------------------------------------------------------- /src/base/net/reverseresolution.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/base/net/reverseresolution.cpp -------------------------------------------------------------------------------- /src/base/net/reverseresolution.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/base/net/reverseresolution.h -------------------------------------------------------------------------------- /src/base/net/smtp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/base/net/smtp.cpp -------------------------------------------------------------------------------- /src/base/net/smtp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/base/net/smtp.h -------------------------------------------------------------------------------- /src/base/preferences.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/base/preferences.cpp -------------------------------------------------------------------------------- /src/base/preferences.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/base/preferences.h -------------------------------------------------------------------------------- /src/base/private/profile_p.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/base/private/profile_p.cpp -------------------------------------------------------------------------------- /src/base/private/profile_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/base/private/profile_p.h -------------------------------------------------------------------------------- /src/base/profile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/base/profile.cpp -------------------------------------------------------------------------------- /src/base/profile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/base/profile.h -------------------------------------------------------------------------------- /src/base/rss/private/rss_parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/base/rss/private/rss_parser.cpp -------------------------------------------------------------------------------- /src/base/rss/private/rss_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/base/rss/private/rss_parser.h -------------------------------------------------------------------------------- /src/base/rss/rss_article.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/base/rss/rss_article.cpp -------------------------------------------------------------------------------- /src/base/rss/rss_article.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/base/rss/rss_article.h -------------------------------------------------------------------------------- /src/base/rss/rss_autodownloader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/base/rss/rss_autodownloader.cpp -------------------------------------------------------------------------------- /src/base/rss/rss_autodownloader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/base/rss/rss_autodownloader.h -------------------------------------------------------------------------------- /src/base/rss/rss_autodownloadrule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/base/rss/rss_autodownloadrule.cpp -------------------------------------------------------------------------------- /src/base/rss/rss_autodownloadrule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/base/rss/rss_autodownloadrule.h -------------------------------------------------------------------------------- /src/base/rss/rss_feed.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/base/rss/rss_feed.cpp -------------------------------------------------------------------------------- /src/base/rss/rss_feed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/base/rss/rss_feed.h -------------------------------------------------------------------------------- /src/base/rss/rss_folder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/base/rss/rss_folder.cpp -------------------------------------------------------------------------------- /src/base/rss/rss_folder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/base/rss/rss_folder.h -------------------------------------------------------------------------------- /src/base/rss/rss_item.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/base/rss/rss_item.cpp -------------------------------------------------------------------------------- /src/base/rss/rss_item.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/base/rss/rss_item.h -------------------------------------------------------------------------------- /src/base/rss/rss_session.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/base/rss/rss_session.cpp -------------------------------------------------------------------------------- /src/base/rss/rss_session.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/base/rss/rss_session.h -------------------------------------------------------------------------------- /src/base/scanfoldersmodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/base/scanfoldersmodel.cpp -------------------------------------------------------------------------------- /src/base/scanfoldersmodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/base/scanfoldersmodel.h -------------------------------------------------------------------------------- /src/base/searchengine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/base/searchengine.cpp -------------------------------------------------------------------------------- /src/base/searchengine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/base/searchengine.h -------------------------------------------------------------------------------- /src/base/settingsstorage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/base/settingsstorage.cpp -------------------------------------------------------------------------------- /src/base/settingsstorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/base/settingsstorage.h -------------------------------------------------------------------------------- /src/base/settingvalue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/base/settingvalue.h -------------------------------------------------------------------------------- /src/base/torrentfileguard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/base/torrentfileguard.cpp -------------------------------------------------------------------------------- /src/base/torrentfileguard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/base/torrentfileguard.h -------------------------------------------------------------------------------- /src/base/torrentfilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/base/torrentfilter.cpp -------------------------------------------------------------------------------- /src/base/torrentfilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/base/torrentfilter.h -------------------------------------------------------------------------------- /src/base/tristatebool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/base/tristatebool.cpp -------------------------------------------------------------------------------- /src/base/tristatebool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/base/tristatebool.h -------------------------------------------------------------------------------- /src/base/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/base/types.h -------------------------------------------------------------------------------- /src/base/unicodestrings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/base/unicodestrings.h -------------------------------------------------------------------------------- /src/base/utils/fs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/base/utils/fs.cpp -------------------------------------------------------------------------------- /src/base/utils/fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/base/utils/fs.h -------------------------------------------------------------------------------- /src/base/utils/gzip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/base/utils/gzip.cpp -------------------------------------------------------------------------------- /src/base/utils/gzip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/base/utils/gzip.h -------------------------------------------------------------------------------- /src/base/utils/misc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/base/utils/misc.cpp -------------------------------------------------------------------------------- /src/base/utils/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/base/utils/misc.h -------------------------------------------------------------------------------- /src/base/utils/net.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/base/utils/net.cpp -------------------------------------------------------------------------------- /src/base/utils/net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/base/utils/net.h -------------------------------------------------------------------------------- /src/base/utils/random.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/base/utils/random.cpp -------------------------------------------------------------------------------- /src/base/utils/random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/base/utils/random.h -------------------------------------------------------------------------------- /src/base/utils/string.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/base/utils/string.cpp -------------------------------------------------------------------------------- /src/base/utils/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/base/utils/string.h -------------------------------------------------------------------------------- /src/base/utils/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/base/utils/version.h -------------------------------------------------------------------------------- /src/config.h.cmakein: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/config.h.cmakein -------------------------------------------------------------------------------- /src/gui/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/gui/CMakeLists.txt -------------------------------------------------------------------------------- /src/gui/about.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/gui/about.qrc -------------------------------------------------------------------------------- /src/gui/about.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/gui/about.ui -------------------------------------------------------------------------------- /src/gui/about_imp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/gui/about_imp.h -------------------------------------------------------------------------------- /src/gui/addnewtorrentdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/gui/addnewtorrentdialog.cpp -------------------------------------------------------------------------------- /src/gui/addnewtorrentdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/gui/addnewtorrentdialog.h -------------------------------------------------------------------------------- /src/gui/addnewtorrentdialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/gui/addnewtorrentdialog.ui -------------------------------------------------------------------------------- /src/gui/advancedsettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/gui/advancedsettings.cpp -------------------------------------------------------------------------------- /src/gui/advancedsettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/gui/advancedsettings.h -------------------------------------------------------------------------------- /src/gui/autoexpandabledialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/gui/autoexpandabledialog.cpp -------------------------------------------------------------------------------- /src/gui/autoexpandabledialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/gui/autoexpandabledialog.h -------------------------------------------------------------------------------- /src/gui/autoexpandabledialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/gui/autoexpandabledialog.ui -------------------------------------------------------------------------------- /src/gui/bandwidth_limit.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/gui/bandwidth_limit.ui -------------------------------------------------------------------------------- /src/gui/banlistoptions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/gui/banlistoptions.cpp -------------------------------------------------------------------------------- /src/gui/banlistoptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/gui/banlistoptions.h -------------------------------------------------------------------------------- /src/gui/banlistoptions.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/gui/banlistoptions.ui -------------------------------------------------------------------------------- /src/gui/categoryfiltermodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/gui/categoryfiltermodel.cpp -------------------------------------------------------------------------------- /src/gui/categoryfiltermodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/gui/categoryfiltermodel.h -------------------------------------------------------------------------------- /src/gui/categoryfilterproxymodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/gui/categoryfilterproxymodel.cpp -------------------------------------------------------------------------------- /src/gui/categoryfilterproxymodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/gui/categoryfilterproxymodel.h -------------------------------------------------------------------------------- /src/gui/categoryfilterwidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/gui/categoryfilterwidget.cpp -------------------------------------------------------------------------------- /src/gui/categoryfilterwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/gui/categoryfilterwidget.h -------------------------------------------------------------------------------- /src/gui/confirmdeletiondlg.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/gui/confirmdeletiondlg.ui -------------------------------------------------------------------------------- /src/gui/cookiesdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/gui/cookiesdialog.cpp -------------------------------------------------------------------------------- /src/gui/cookiesdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/gui/cookiesdialog.h -------------------------------------------------------------------------------- /src/gui/cookiesdialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/gui/cookiesdialog.ui -------------------------------------------------------------------------------- /src/gui/cookiesmodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/gui/cookiesmodel.cpp -------------------------------------------------------------------------------- /src/gui/cookiesmodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/gui/cookiesmodel.h -------------------------------------------------------------------------------- /src/gui/deletionconfirmationdlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/gui/deletionconfirmationdlg.h -------------------------------------------------------------------------------- /src/gui/downloadfromurldlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/gui/downloadfromurldlg.h -------------------------------------------------------------------------------- /src/gui/downloadfromurldlg.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/gui/downloadfromurldlg.ui -------------------------------------------------------------------------------- /src/gui/executionlog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/gui/executionlog.cpp -------------------------------------------------------------------------------- /src/gui/executionlog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/gui/executionlog.h -------------------------------------------------------------------------------- /src/gui/executionlog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/gui/executionlog.ui -------------------------------------------------------------------------------- /src/gui/fspathedit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/gui/fspathedit.cpp -------------------------------------------------------------------------------- /src/gui/fspathedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/gui/fspathedit.h -------------------------------------------------------------------------------- /src/gui/fspathedit_p.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/gui/fspathedit_p.cpp -------------------------------------------------------------------------------- /src/gui/fspathedit_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/gui/fspathedit_p.h -------------------------------------------------------------------------------- /src/gui/gpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/gui/gpl.html -------------------------------------------------------------------------------- /src/gui/gui.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/gui/gui.pri -------------------------------------------------------------------------------- /src/gui/guiiconprovider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/gui/guiiconprovider.cpp -------------------------------------------------------------------------------- /src/gui/guiiconprovider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/gui/guiiconprovider.h -------------------------------------------------------------------------------- /src/gui/hidabletabwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/gui/hidabletabwidget.h -------------------------------------------------------------------------------- /src/gui/lineedit/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/gui/lineedit/CMakeLists.txt -------------------------------------------------------------------------------- /src/gui/lineedit/lineedit.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/gui/lineedit/lineedit.pri -------------------------------------------------------------------------------- /src/gui/lineedit/src/lineedit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/gui/lineedit/src/lineedit.cpp -------------------------------------------------------------------------------- /src/gui/lineedit/src/lineedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/gui/lineedit/src/lineedit.h -------------------------------------------------------------------------------- /src/gui/login.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/gui/login.ui -------------------------------------------------------------------------------- /src/gui/loglistwidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/gui/loglistwidget.cpp -------------------------------------------------------------------------------- /src/gui/loglistwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/gui/loglistwidget.h -------------------------------------------------------------------------------- /src/gui/macutilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/gui/macutilities.h -------------------------------------------------------------------------------- /src/gui/macutilities.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/gui/macutilities.mm -------------------------------------------------------------------------------- /src/gui/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/gui/mainwindow.cpp -------------------------------------------------------------------------------- /src/gui/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/gui/mainwindow.h -------------------------------------------------------------------------------- /src/gui/mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/gui/mainwindow.ui -------------------------------------------------------------------------------- /src/gui/messageboxraised.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/gui/messageboxraised.cpp -------------------------------------------------------------------------------- /src/gui/messageboxraised.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/gui/messageboxraised.h -------------------------------------------------------------------------------- /src/gui/optionsdlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/gui/optionsdlg.cpp -------------------------------------------------------------------------------- /src/gui/optionsdlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/gui/optionsdlg.h -------------------------------------------------------------------------------- /src/gui/optionsdlg.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/gui/optionsdlg.ui -------------------------------------------------------------------------------- /src/gui/powermanagement/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/gui/powermanagement/CMakeLists.txt -------------------------------------------------------------------------------- /src/gui/previewlistdelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/gui/previewlistdelegate.h -------------------------------------------------------------------------------- /src/gui/previewselectdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/gui/previewselectdialog.cpp -------------------------------------------------------------------------------- /src/gui/previewselectdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/gui/previewselectdialog.h -------------------------------------------------------------------------------- /src/gui/previewselectdialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/gui/previewselectdialog.ui -------------------------------------------------------------------------------- /src/gui/programupdater.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/gui/programupdater.cpp -------------------------------------------------------------------------------- /src/gui/programupdater.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/gui/programupdater.h -------------------------------------------------------------------------------- /src/gui/properties/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/gui/properties/CMakeLists.txt -------------------------------------------------------------------------------- /src/gui/properties/peerlistdelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/gui/properties/peerlistdelegate.h -------------------------------------------------------------------------------- /src/gui/properties/peerlistsortmodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/gui/properties/peerlistsortmodel.h -------------------------------------------------------------------------------- /src/gui/properties/peerlistwidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/gui/properties/peerlistwidget.cpp -------------------------------------------------------------------------------- /src/gui/properties/peerlistwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/gui/properties/peerlistwidget.h -------------------------------------------------------------------------------- /src/gui/properties/peersadditiondlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/gui/properties/peersadditiondlg.cpp -------------------------------------------------------------------------------- /src/gui/properties/peersadditiondlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/gui/properties/peersadditiondlg.h -------------------------------------------------------------------------------- /src/gui/properties/peersadditiondlg.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/gui/properties/peersadditiondlg.ui -------------------------------------------------------------------------------- /src/gui/properties/piecesbar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/gui/properties/piecesbar.cpp -------------------------------------------------------------------------------- /src/gui/properties/piecesbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/gui/properties/piecesbar.h -------------------------------------------------------------------------------- /src/gui/properties/properties.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/gui/properties/properties.pri -------------------------------------------------------------------------------- /src/gui/properties/propertieswidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/gui/properties/propertieswidget.cpp -------------------------------------------------------------------------------- /src/gui/properties/propertieswidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/gui/properties/propertieswidget.h -------------------------------------------------------------------------------- /src/gui/properties/propertieswidget.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/gui/properties/propertieswidget.ui -------------------------------------------------------------------------------- /src/gui/properties/proplistdelegate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/gui/properties/proplistdelegate.cpp -------------------------------------------------------------------------------- /src/gui/properties/proplistdelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/gui/properties/proplistdelegate.h -------------------------------------------------------------------------------- /src/gui/properties/proptabbar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/gui/properties/proptabbar.cpp -------------------------------------------------------------------------------- /src/gui/properties/proptabbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/gui/properties/proptabbar.h -------------------------------------------------------------------------------- /src/gui/properties/speedplotview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/gui/properties/speedplotview.cpp -------------------------------------------------------------------------------- /src/gui/properties/speedplotview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/gui/properties/speedplotview.h -------------------------------------------------------------------------------- /src/gui/properties/speedwidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/gui/properties/speedwidget.cpp -------------------------------------------------------------------------------- /src/gui/properties/speedwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/gui/properties/speedwidget.h -------------------------------------------------------------------------------- /src/gui/properties/trackerlist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/gui/properties/trackerlist.cpp -------------------------------------------------------------------------------- /src/gui/properties/trackerlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/gui/properties/trackerlist.h -------------------------------------------------------------------------------- /src/gui/qtnotify/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/gui/qtnotify/CMakeLists.txt -------------------------------------------------------------------------------- /src/gui/qtnotify/notifications.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/gui/qtnotify/notifications.cpp -------------------------------------------------------------------------------- /src/gui/qtnotify/notifications.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/gui/qtnotify/notifications.h -------------------------------------------------------------------------------- /src/gui/qtnotify/notifications.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/gui/qtnotify/notifications.xml -------------------------------------------------------------------------------- /src/gui/qtnotify/qtnotify.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/gui/qtnotify/qtnotify.pri -------------------------------------------------------------------------------- /src/gui/rss/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/gui/rss/CMakeLists.txt -------------------------------------------------------------------------------- /src/gui/rss/articlelistwidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/gui/rss/articlelistwidget.cpp -------------------------------------------------------------------------------- /src/gui/rss/articlelistwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/gui/rss/articlelistwidget.h -------------------------------------------------------------------------------- /src/gui/rss/automatedrssdownloader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/gui/rss/automatedrssdownloader.cpp -------------------------------------------------------------------------------- /src/gui/rss/automatedrssdownloader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/gui/rss/automatedrssdownloader.h -------------------------------------------------------------------------------- /src/gui/rss/automatedrssdownloader.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/gui/rss/automatedrssdownloader.ui -------------------------------------------------------------------------------- /src/gui/rss/feedlistwidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/gui/rss/feedlistwidget.cpp -------------------------------------------------------------------------------- /src/gui/rss/feedlistwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/gui/rss/feedlistwidget.h -------------------------------------------------------------------------------- /src/gui/rss/htmlbrowser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/gui/rss/htmlbrowser.cpp -------------------------------------------------------------------------------- /src/gui/rss/htmlbrowser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/gui/rss/htmlbrowser.h -------------------------------------------------------------------------------- /src/gui/rss/rsswidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/gui/rss/rsswidget.cpp -------------------------------------------------------------------------------- /src/gui/rss/rsswidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/gui/rss/rsswidget.h -------------------------------------------------------------------------------- /src/gui/rss/rsswidget.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/gui/rss/rsswidget.ui -------------------------------------------------------------------------------- /src/gui/scanfoldersdelegate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/gui/scanfoldersdelegate.cpp -------------------------------------------------------------------------------- /src/gui/scanfoldersdelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/gui/scanfoldersdelegate.h -------------------------------------------------------------------------------- /src/gui/search/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/gui/search/CMakeLists.txt -------------------------------------------------------------------------------- /src/gui/search/pluginselectdlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/gui/search/pluginselectdlg.cpp -------------------------------------------------------------------------------- /src/gui/search/pluginselectdlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/gui/search/pluginselectdlg.h -------------------------------------------------------------------------------- /src/gui/search/pluginselectdlg.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/gui/search/pluginselectdlg.ui -------------------------------------------------------------------------------- /src/gui/search/pluginsourcedlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/gui/search/pluginsourcedlg.cpp -------------------------------------------------------------------------------- /src/gui/search/pluginsourcedlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/gui/search/pluginsourcedlg.h -------------------------------------------------------------------------------- /src/gui/search/pluginsourcedlg.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/gui/search/pluginsourcedlg.ui -------------------------------------------------------------------------------- /src/gui/search/searchlistdelegate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/gui/search/searchlistdelegate.cpp -------------------------------------------------------------------------------- /src/gui/search/searchlistdelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/gui/search/searchlistdelegate.h -------------------------------------------------------------------------------- /src/gui/search/searchsortmodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/gui/search/searchsortmodel.cpp -------------------------------------------------------------------------------- /src/gui/search/searchsortmodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/gui/search/searchsortmodel.h -------------------------------------------------------------------------------- /src/gui/search/searchtab.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/gui/search/searchtab.cpp -------------------------------------------------------------------------------- /src/gui/search/searchtab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/gui/search/searchtab.h -------------------------------------------------------------------------------- /src/gui/search/searchtab.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/gui/search/searchtab.ui -------------------------------------------------------------------------------- /src/gui/search/searchwidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/gui/search/searchwidget.cpp -------------------------------------------------------------------------------- /src/gui/search/searchwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/gui/search/searchwidget.h -------------------------------------------------------------------------------- /src/gui/search/searchwidget.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/gui/search/searchwidget.ui -------------------------------------------------------------------------------- /src/gui/shutdownconfirmdlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/gui/shutdownconfirmdlg.cpp -------------------------------------------------------------------------------- /src/gui/shutdownconfirmdlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/gui/shutdownconfirmdlg.h -------------------------------------------------------------------------------- /src/gui/shutdownconfirmdlg.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/gui/shutdownconfirmdlg.ui -------------------------------------------------------------------------------- /src/gui/speedlimitdlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/gui/speedlimitdlg.cpp -------------------------------------------------------------------------------- /src/gui/speedlimitdlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/gui/speedlimitdlg.h -------------------------------------------------------------------------------- /src/gui/statsdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/gui/statsdialog.cpp -------------------------------------------------------------------------------- /src/gui/statsdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/gui/statsdialog.h -------------------------------------------------------------------------------- /src/gui/statsdialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/gui/statsdialog.ui -------------------------------------------------------------------------------- /src/gui/statusbar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/gui/statusbar.cpp -------------------------------------------------------------------------------- /src/gui/statusbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/gui/statusbar.h -------------------------------------------------------------------------------- /src/gui/tagfiltermodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/gui/tagfiltermodel.cpp -------------------------------------------------------------------------------- /src/gui/tagfiltermodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/gui/tagfiltermodel.h -------------------------------------------------------------------------------- /src/gui/tagfilterproxymodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/gui/tagfilterproxymodel.cpp -------------------------------------------------------------------------------- /src/gui/tagfilterproxymodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/gui/tagfilterproxymodel.h -------------------------------------------------------------------------------- /src/gui/tagfilterwidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/gui/tagfilterwidget.cpp -------------------------------------------------------------------------------- /src/gui/tagfilterwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/gui/tagfilterwidget.h -------------------------------------------------------------------------------- /src/gui/thanks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/gui/thanks.html -------------------------------------------------------------------------------- /src/gui/torrentcategorydialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/gui/torrentcategorydialog.cpp -------------------------------------------------------------------------------- /src/gui/torrentcategorydialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/gui/torrentcategorydialog.h -------------------------------------------------------------------------------- /src/gui/torrentcategorydialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/gui/torrentcategorydialog.ui -------------------------------------------------------------------------------- /src/gui/torrentcontentfiltermodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/gui/torrentcontentfiltermodel.cpp -------------------------------------------------------------------------------- /src/gui/torrentcontentfiltermodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/gui/torrentcontentfiltermodel.h -------------------------------------------------------------------------------- /src/gui/torrentcontentmodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/gui/torrentcontentmodel.cpp -------------------------------------------------------------------------------- /src/gui/torrentcontentmodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/gui/torrentcontentmodel.h -------------------------------------------------------------------------------- /src/gui/torrentcontentmodelfile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/gui/torrentcontentmodelfile.cpp -------------------------------------------------------------------------------- /src/gui/torrentcontentmodelfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/gui/torrentcontentmodelfile.h -------------------------------------------------------------------------------- /src/gui/torrentcontentmodelfolder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/gui/torrentcontentmodelfolder.cpp -------------------------------------------------------------------------------- /src/gui/torrentcontentmodelfolder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/gui/torrentcontentmodelfolder.h -------------------------------------------------------------------------------- /src/gui/torrentcontentmodelitem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/gui/torrentcontentmodelitem.cpp -------------------------------------------------------------------------------- /src/gui/torrentcontentmodelitem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/gui/torrentcontentmodelitem.h -------------------------------------------------------------------------------- /src/gui/torrentcontenttreeview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/gui/torrentcontenttreeview.cpp -------------------------------------------------------------------------------- /src/gui/torrentcontenttreeview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/gui/torrentcontenttreeview.h -------------------------------------------------------------------------------- /src/gui/torrentcreatordlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/gui/torrentcreatordlg.cpp -------------------------------------------------------------------------------- /src/gui/torrentcreatordlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/gui/torrentcreatordlg.h -------------------------------------------------------------------------------- /src/gui/torrentcreatordlg.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/gui/torrentcreatordlg.ui -------------------------------------------------------------------------------- /src/gui/torrentmodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/gui/torrentmodel.cpp -------------------------------------------------------------------------------- /src/gui/torrentmodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/gui/torrentmodel.h -------------------------------------------------------------------------------- /src/gui/trackerlogin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/gui/trackerlogin.cpp -------------------------------------------------------------------------------- /src/gui/trackerlogin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/gui/trackerlogin.h -------------------------------------------------------------------------------- /src/gui/transferlistdelegate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/gui/transferlistdelegate.cpp -------------------------------------------------------------------------------- /src/gui/transferlistdelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/gui/transferlistdelegate.h -------------------------------------------------------------------------------- /src/gui/transferlistfilterswidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/gui/transferlistfilterswidget.cpp -------------------------------------------------------------------------------- /src/gui/transferlistfilterswidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/gui/transferlistfilterswidget.h -------------------------------------------------------------------------------- /src/gui/transferlistsortmodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/gui/transferlistsortmodel.cpp -------------------------------------------------------------------------------- /src/gui/transferlistsortmodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/gui/transferlistsortmodel.h -------------------------------------------------------------------------------- /src/gui/transferlistwidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/gui/transferlistwidget.cpp -------------------------------------------------------------------------------- /src/gui/transferlistwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/gui/transferlistwidget.h -------------------------------------------------------------------------------- /src/gui/translators.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/gui/translators.html -------------------------------------------------------------------------------- /src/gui/updownratiodlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/gui/updownratiodlg.cpp -------------------------------------------------------------------------------- /src/gui/updownratiodlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/gui/updownratiodlg.h -------------------------------------------------------------------------------- /src/gui/updownratiodlg.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/gui/updownratiodlg.ui -------------------------------------------------------------------------------- /src/icons.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons.qrc -------------------------------------------------------------------------------- /src/icons/3-state-checkbox.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/3-state-checkbox.gif -------------------------------------------------------------------------------- /src/icons/L.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/L.gif -------------------------------------------------------------------------------- /src/icons/fileicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/fileicon.svg -------------------------------------------------------------------------------- /src/icons/flags/ad.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/ad.svg -------------------------------------------------------------------------------- /src/icons/flags/ae.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/ae.svg -------------------------------------------------------------------------------- /src/icons/flags/af.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/af.svg -------------------------------------------------------------------------------- /src/icons/flags/ag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/ag.svg -------------------------------------------------------------------------------- /src/icons/flags/ai.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/ai.svg -------------------------------------------------------------------------------- /src/icons/flags/al.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/al.svg -------------------------------------------------------------------------------- /src/icons/flags/am.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/am.svg -------------------------------------------------------------------------------- /src/icons/flags/ao.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/ao.svg -------------------------------------------------------------------------------- /src/icons/flags/aq.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/aq.svg -------------------------------------------------------------------------------- /src/icons/flags/ar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/ar.svg -------------------------------------------------------------------------------- /src/icons/flags/as.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/as.svg -------------------------------------------------------------------------------- /src/icons/flags/at.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/at.svg -------------------------------------------------------------------------------- /src/icons/flags/au.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/au.svg -------------------------------------------------------------------------------- /src/icons/flags/aw.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/aw.svg -------------------------------------------------------------------------------- /src/icons/flags/ax.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/ax.svg -------------------------------------------------------------------------------- /src/icons/flags/az.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/az.svg -------------------------------------------------------------------------------- /src/icons/flags/ba.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/ba.svg -------------------------------------------------------------------------------- /src/icons/flags/bb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/bb.svg -------------------------------------------------------------------------------- /src/icons/flags/bd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/bd.svg -------------------------------------------------------------------------------- /src/icons/flags/be.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/be.svg -------------------------------------------------------------------------------- /src/icons/flags/bf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/bf.svg -------------------------------------------------------------------------------- /src/icons/flags/bg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/bg.svg -------------------------------------------------------------------------------- /src/icons/flags/bh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/bh.svg -------------------------------------------------------------------------------- /src/icons/flags/bi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/bi.svg -------------------------------------------------------------------------------- /src/icons/flags/bj.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/bj.svg -------------------------------------------------------------------------------- /src/icons/flags/bl.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/bl.svg -------------------------------------------------------------------------------- /src/icons/flags/bm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/bm.svg -------------------------------------------------------------------------------- /src/icons/flags/bn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/bn.svg -------------------------------------------------------------------------------- /src/icons/flags/bo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/bo.svg -------------------------------------------------------------------------------- /src/icons/flags/bq.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/bq.svg -------------------------------------------------------------------------------- /src/icons/flags/br.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/br.svg -------------------------------------------------------------------------------- /src/icons/flags/bs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/bs.svg -------------------------------------------------------------------------------- /src/icons/flags/bt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/bt.svg -------------------------------------------------------------------------------- /src/icons/flags/bv.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/bv.svg -------------------------------------------------------------------------------- /src/icons/flags/bw.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/bw.svg -------------------------------------------------------------------------------- /src/icons/flags/by.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/by.svg -------------------------------------------------------------------------------- /src/icons/flags/bz.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/bz.svg -------------------------------------------------------------------------------- /src/icons/flags/ca.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/ca.svg -------------------------------------------------------------------------------- /src/icons/flags/cc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/cc.svg -------------------------------------------------------------------------------- /src/icons/flags/cd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/cd.svg -------------------------------------------------------------------------------- /src/icons/flags/cf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/cf.svg -------------------------------------------------------------------------------- /src/icons/flags/cg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/cg.svg -------------------------------------------------------------------------------- /src/icons/flags/ch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/ch.svg -------------------------------------------------------------------------------- /src/icons/flags/ci.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/ci.svg -------------------------------------------------------------------------------- /src/icons/flags/ck.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/ck.svg -------------------------------------------------------------------------------- /src/icons/flags/cl.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/cl.svg -------------------------------------------------------------------------------- /src/icons/flags/cm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/cm.svg -------------------------------------------------------------------------------- /src/icons/flags/cn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/cn.svg -------------------------------------------------------------------------------- /src/icons/flags/co.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/co.svg -------------------------------------------------------------------------------- /src/icons/flags/cr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/cr.svg -------------------------------------------------------------------------------- /src/icons/flags/cu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/cu.svg -------------------------------------------------------------------------------- /src/icons/flags/cv.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/cv.svg -------------------------------------------------------------------------------- /src/icons/flags/cw.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/cw.svg -------------------------------------------------------------------------------- /src/icons/flags/cx.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/cx.svg -------------------------------------------------------------------------------- /src/icons/flags/cy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/cy.svg -------------------------------------------------------------------------------- /src/icons/flags/cz.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/cz.svg -------------------------------------------------------------------------------- /src/icons/flags/de.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/de.svg -------------------------------------------------------------------------------- /src/icons/flags/dj.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/dj.svg -------------------------------------------------------------------------------- /src/icons/flags/dk.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/dk.svg -------------------------------------------------------------------------------- /src/icons/flags/dm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/dm.svg -------------------------------------------------------------------------------- /src/icons/flags/do.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/do.svg -------------------------------------------------------------------------------- /src/icons/flags/dz.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/dz.svg -------------------------------------------------------------------------------- /src/icons/flags/ec.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/ec.svg -------------------------------------------------------------------------------- /src/icons/flags/ee.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/ee.svg -------------------------------------------------------------------------------- /src/icons/flags/eg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/eg.svg -------------------------------------------------------------------------------- /src/icons/flags/eh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/eh.svg -------------------------------------------------------------------------------- /src/icons/flags/er.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/er.svg -------------------------------------------------------------------------------- /src/icons/flags/es.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/es.svg -------------------------------------------------------------------------------- /src/icons/flags/et.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/et.svg -------------------------------------------------------------------------------- /src/icons/flags/fi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/fi.svg -------------------------------------------------------------------------------- /src/icons/flags/fj.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/fj.svg -------------------------------------------------------------------------------- /src/icons/flags/fk.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/fk.svg -------------------------------------------------------------------------------- /src/icons/flags/fm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/fm.svg -------------------------------------------------------------------------------- /src/icons/flags/fo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/fo.svg -------------------------------------------------------------------------------- /src/icons/flags/fr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/fr.svg -------------------------------------------------------------------------------- /src/icons/flags/ga.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/ga.svg -------------------------------------------------------------------------------- /src/icons/flags/gb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/gb.svg -------------------------------------------------------------------------------- /src/icons/flags/gd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/gd.svg -------------------------------------------------------------------------------- /src/icons/flags/ge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/ge.svg -------------------------------------------------------------------------------- /src/icons/flags/gf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/gf.svg -------------------------------------------------------------------------------- /src/icons/flags/gg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/gg.svg -------------------------------------------------------------------------------- /src/icons/flags/gh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/gh.svg -------------------------------------------------------------------------------- /src/icons/flags/gi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/gi.svg -------------------------------------------------------------------------------- /src/icons/flags/gl.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/gl.svg -------------------------------------------------------------------------------- /src/icons/flags/gm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/gm.svg -------------------------------------------------------------------------------- /src/icons/flags/gn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/gn.svg -------------------------------------------------------------------------------- /src/icons/flags/gp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/gp.svg -------------------------------------------------------------------------------- /src/icons/flags/gq.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/gq.svg -------------------------------------------------------------------------------- /src/icons/flags/gr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/gr.svg -------------------------------------------------------------------------------- /src/icons/flags/gs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/gs.svg -------------------------------------------------------------------------------- /src/icons/flags/gt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/gt.svg -------------------------------------------------------------------------------- /src/icons/flags/gu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/gu.svg -------------------------------------------------------------------------------- /src/icons/flags/gw.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/gw.svg -------------------------------------------------------------------------------- /src/icons/flags/gy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/gy.svg -------------------------------------------------------------------------------- /src/icons/flags/hk.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/hk.svg -------------------------------------------------------------------------------- /src/icons/flags/hm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/hm.svg -------------------------------------------------------------------------------- /src/icons/flags/hn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/hn.svg -------------------------------------------------------------------------------- /src/icons/flags/hr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/hr.svg -------------------------------------------------------------------------------- /src/icons/flags/ht.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/ht.svg -------------------------------------------------------------------------------- /src/icons/flags/hu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/hu.svg -------------------------------------------------------------------------------- /src/icons/flags/icons-set-readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/icons-set-readme.txt -------------------------------------------------------------------------------- /src/icons/flags/id.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/id.svg -------------------------------------------------------------------------------- /src/icons/flags/ie.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/ie.svg -------------------------------------------------------------------------------- /src/icons/flags/il.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/il.svg -------------------------------------------------------------------------------- /src/icons/flags/im.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/im.svg -------------------------------------------------------------------------------- /src/icons/flags/in.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/in.svg -------------------------------------------------------------------------------- /src/icons/flags/io.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/io.svg -------------------------------------------------------------------------------- /src/icons/flags/iq.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/iq.svg -------------------------------------------------------------------------------- /src/icons/flags/ir.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/ir.svg -------------------------------------------------------------------------------- /src/icons/flags/is.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/is.svg -------------------------------------------------------------------------------- /src/icons/flags/it.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/it.svg -------------------------------------------------------------------------------- /src/icons/flags/je.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/je.svg -------------------------------------------------------------------------------- /src/icons/flags/jm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/jm.svg -------------------------------------------------------------------------------- /src/icons/flags/jo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/jo.svg -------------------------------------------------------------------------------- /src/icons/flags/jp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/jp.svg -------------------------------------------------------------------------------- /src/icons/flags/ke.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/ke.svg -------------------------------------------------------------------------------- /src/icons/flags/kg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/kg.svg -------------------------------------------------------------------------------- /src/icons/flags/kh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/kh.svg -------------------------------------------------------------------------------- /src/icons/flags/ki.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/ki.svg -------------------------------------------------------------------------------- /src/icons/flags/km.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/km.svg -------------------------------------------------------------------------------- /src/icons/flags/kn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/kn.svg -------------------------------------------------------------------------------- /src/icons/flags/kp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/kp.svg -------------------------------------------------------------------------------- /src/icons/flags/kr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/kr.svg -------------------------------------------------------------------------------- /src/icons/flags/kw.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/kw.svg -------------------------------------------------------------------------------- /src/icons/flags/ky.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/ky.svg -------------------------------------------------------------------------------- /src/icons/flags/kz.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/kz.svg -------------------------------------------------------------------------------- /src/icons/flags/la.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/la.svg -------------------------------------------------------------------------------- /src/icons/flags/lb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/lb.svg -------------------------------------------------------------------------------- /src/icons/flags/lc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/lc.svg -------------------------------------------------------------------------------- /src/icons/flags/li.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/li.svg -------------------------------------------------------------------------------- /src/icons/flags/lk.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/lk.svg -------------------------------------------------------------------------------- /src/icons/flags/lr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/lr.svg -------------------------------------------------------------------------------- /src/icons/flags/ls.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/ls.svg -------------------------------------------------------------------------------- /src/icons/flags/lt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/lt.svg -------------------------------------------------------------------------------- /src/icons/flags/lu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/lu.svg -------------------------------------------------------------------------------- /src/icons/flags/lv.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/lv.svg -------------------------------------------------------------------------------- /src/icons/flags/ly.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/ly.svg -------------------------------------------------------------------------------- /src/icons/flags/ma.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/ma.svg -------------------------------------------------------------------------------- /src/icons/flags/mc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/mc.svg -------------------------------------------------------------------------------- /src/icons/flags/md.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/md.svg -------------------------------------------------------------------------------- /src/icons/flags/me.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/me.svg -------------------------------------------------------------------------------- /src/icons/flags/mf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/mf.svg -------------------------------------------------------------------------------- /src/icons/flags/mg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/mg.svg -------------------------------------------------------------------------------- /src/icons/flags/mh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/mh.svg -------------------------------------------------------------------------------- /src/icons/flags/mk.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/mk.svg -------------------------------------------------------------------------------- /src/icons/flags/ml.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/ml.svg -------------------------------------------------------------------------------- /src/icons/flags/mm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/mm.svg -------------------------------------------------------------------------------- /src/icons/flags/mn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/mn.svg -------------------------------------------------------------------------------- /src/icons/flags/mo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/mo.svg -------------------------------------------------------------------------------- /src/icons/flags/mp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/mp.svg -------------------------------------------------------------------------------- /src/icons/flags/mq.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/mq.svg -------------------------------------------------------------------------------- /src/icons/flags/mr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/mr.svg -------------------------------------------------------------------------------- /src/icons/flags/ms.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/ms.svg -------------------------------------------------------------------------------- /src/icons/flags/mt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/mt.svg -------------------------------------------------------------------------------- /src/icons/flags/mu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/mu.svg -------------------------------------------------------------------------------- /src/icons/flags/mv.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/mv.svg -------------------------------------------------------------------------------- /src/icons/flags/mw.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/mw.svg -------------------------------------------------------------------------------- /src/icons/flags/mx.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/mx.svg -------------------------------------------------------------------------------- /src/icons/flags/my.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/my.svg -------------------------------------------------------------------------------- /src/icons/flags/mz.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/mz.svg -------------------------------------------------------------------------------- /src/icons/flags/na.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/na.svg -------------------------------------------------------------------------------- /src/icons/flags/nc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/nc.svg -------------------------------------------------------------------------------- /src/icons/flags/ne.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/ne.svg -------------------------------------------------------------------------------- /src/icons/flags/nf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/nf.svg -------------------------------------------------------------------------------- /src/icons/flags/ng.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/ng.svg -------------------------------------------------------------------------------- /src/icons/flags/ni.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/ni.svg -------------------------------------------------------------------------------- /src/icons/flags/nl.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/nl.svg -------------------------------------------------------------------------------- /src/icons/flags/no.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/no.svg -------------------------------------------------------------------------------- /src/icons/flags/np.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/np.svg -------------------------------------------------------------------------------- /src/icons/flags/nr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/nr.svg -------------------------------------------------------------------------------- /src/icons/flags/nu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/nu.svg -------------------------------------------------------------------------------- /src/icons/flags/nz.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/nz.svg -------------------------------------------------------------------------------- /src/icons/flags/om.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/om.svg -------------------------------------------------------------------------------- /src/icons/flags/pa.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/pa.svg -------------------------------------------------------------------------------- /src/icons/flags/pe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/pe.svg -------------------------------------------------------------------------------- /src/icons/flags/pf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/pf.svg -------------------------------------------------------------------------------- /src/icons/flags/pg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/pg.svg -------------------------------------------------------------------------------- /src/icons/flags/ph.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/ph.svg -------------------------------------------------------------------------------- /src/icons/flags/pk.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/pk.svg -------------------------------------------------------------------------------- /src/icons/flags/pl.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/pl.svg -------------------------------------------------------------------------------- /src/icons/flags/pm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/pm.svg -------------------------------------------------------------------------------- /src/icons/flags/pn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/pn.svg -------------------------------------------------------------------------------- /src/icons/flags/pr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/pr.svg -------------------------------------------------------------------------------- /src/icons/flags/ps.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/ps.svg -------------------------------------------------------------------------------- /src/icons/flags/pt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/pt.svg -------------------------------------------------------------------------------- /src/icons/flags/pw.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/pw.svg -------------------------------------------------------------------------------- /src/icons/flags/py.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/py.svg -------------------------------------------------------------------------------- /src/icons/flags/qa.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/qa.svg -------------------------------------------------------------------------------- /src/icons/flags/re.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/re.svg -------------------------------------------------------------------------------- /src/icons/flags/ro.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/ro.svg -------------------------------------------------------------------------------- /src/icons/flags/rs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/rs.svg -------------------------------------------------------------------------------- /src/icons/flags/ru.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/ru.svg -------------------------------------------------------------------------------- /src/icons/flags/rw.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/rw.svg -------------------------------------------------------------------------------- /src/icons/flags/sa.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/sa.svg -------------------------------------------------------------------------------- /src/icons/flags/sb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/sb.svg -------------------------------------------------------------------------------- /src/icons/flags/sc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/sc.svg -------------------------------------------------------------------------------- /src/icons/flags/sd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/sd.svg -------------------------------------------------------------------------------- /src/icons/flags/se.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/se.svg -------------------------------------------------------------------------------- /src/icons/flags/sg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/sg.svg -------------------------------------------------------------------------------- /src/icons/flags/sh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/sh.svg -------------------------------------------------------------------------------- /src/icons/flags/si.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/si.svg -------------------------------------------------------------------------------- /src/icons/flags/sj.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/sj.svg -------------------------------------------------------------------------------- /src/icons/flags/sk.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/sk.svg -------------------------------------------------------------------------------- /src/icons/flags/sl.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/sl.svg -------------------------------------------------------------------------------- /src/icons/flags/sm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/sm.svg -------------------------------------------------------------------------------- /src/icons/flags/sn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/sn.svg -------------------------------------------------------------------------------- /src/icons/flags/so.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/so.svg -------------------------------------------------------------------------------- /src/icons/flags/sr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/sr.svg -------------------------------------------------------------------------------- /src/icons/flags/ss.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/ss.svg -------------------------------------------------------------------------------- /src/icons/flags/st.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/st.svg -------------------------------------------------------------------------------- /src/icons/flags/sv.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/sv.svg -------------------------------------------------------------------------------- /src/icons/flags/sx.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/sx.svg -------------------------------------------------------------------------------- /src/icons/flags/sy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/sy.svg -------------------------------------------------------------------------------- /src/icons/flags/sz.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/sz.svg -------------------------------------------------------------------------------- /src/icons/flags/tc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/tc.svg -------------------------------------------------------------------------------- /src/icons/flags/td.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/td.svg -------------------------------------------------------------------------------- /src/icons/flags/tf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/tf.svg -------------------------------------------------------------------------------- /src/icons/flags/tg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/tg.svg -------------------------------------------------------------------------------- /src/icons/flags/th.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/th.svg -------------------------------------------------------------------------------- /src/icons/flags/tj.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/tj.svg -------------------------------------------------------------------------------- /src/icons/flags/tk.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/tk.svg -------------------------------------------------------------------------------- /src/icons/flags/tl.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/tl.svg -------------------------------------------------------------------------------- /src/icons/flags/tm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/tm.svg -------------------------------------------------------------------------------- /src/icons/flags/tn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/tn.svg -------------------------------------------------------------------------------- /src/icons/flags/to.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/to.svg -------------------------------------------------------------------------------- /src/icons/flags/tr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/tr.svg -------------------------------------------------------------------------------- /src/icons/flags/tt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/tt.svg -------------------------------------------------------------------------------- /src/icons/flags/tv.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/tv.svg -------------------------------------------------------------------------------- /src/icons/flags/tw.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/tw.svg -------------------------------------------------------------------------------- /src/icons/flags/tz.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/tz.svg -------------------------------------------------------------------------------- /src/icons/flags/ua.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/ua.svg -------------------------------------------------------------------------------- /src/icons/flags/ug.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/ug.svg -------------------------------------------------------------------------------- /src/icons/flags/um.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/um.svg -------------------------------------------------------------------------------- /src/icons/flags/us.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/us.svg -------------------------------------------------------------------------------- /src/icons/flags/uy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/uy.svg -------------------------------------------------------------------------------- /src/icons/flags/uz.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/uz.svg -------------------------------------------------------------------------------- /src/icons/flags/va.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/va.svg -------------------------------------------------------------------------------- /src/icons/flags/vc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/vc.svg -------------------------------------------------------------------------------- /src/icons/flags/ve.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/ve.svg -------------------------------------------------------------------------------- /src/icons/flags/vg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/vg.svg -------------------------------------------------------------------------------- /src/icons/flags/vi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/vi.svg -------------------------------------------------------------------------------- /src/icons/flags/vn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/vn.svg -------------------------------------------------------------------------------- /src/icons/flags/vu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/vu.svg -------------------------------------------------------------------------------- /src/icons/flags/wf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/wf.svg -------------------------------------------------------------------------------- /src/icons/flags/ws.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/ws.svg -------------------------------------------------------------------------------- /src/icons/flags/ye.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/ye.svg -------------------------------------------------------------------------------- /src/icons/flags/yt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/yt.svg -------------------------------------------------------------------------------- /src/icons/flags/za.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/za.svg -------------------------------------------------------------------------------- /src/icons/flags/zm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/zm.svg -------------------------------------------------------------------------------- /src/icons/flags/zw.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/flags/zw.svg -------------------------------------------------------------------------------- /src/icons/loading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/loading.png -------------------------------------------------------------------------------- /src/icons/qbittorrent.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/qbittorrent.desktop -------------------------------------------------------------------------------- /src/icons/qbt-theme/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/qbt-theme/README.md -------------------------------------------------------------------------------- /src/icons/qbt-theme/checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/qbt-theme/checked.png -------------------------------------------------------------------------------- /src/icons/qbt-theme/configure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/qbt-theme/configure.png -------------------------------------------------------------------------------- /src/icons/qbt-theme/dialog-cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/qbt-theme/dialog-cancel.png -------------------------------------------------------------------------------- /src/icons/qbt-theme/dialog-warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/qbt-theme/dialog-warning.png -------------------------------------------------------------------------------- /src/icons/qbt-theme/document-edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/qbt-theme/document-edit.png -------------------------------------------------------------------------------- /src/icons/qbt-theme/document-import.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/qbt-theme/document-import.png -------------------------------------------------------------------------------- /src/icons/qbt-theme/document-new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/qbt-theme/document-new.png -------------------------------------------------------------------------------- /src/icons/qbt-theme/document-save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/qbt-theme/document-save.png -------------------------------------------------------------------------------- /src/icons/qbt-theme/download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/qbt-theme/download.png -------------------------------------------------------------------------------- /src/icons/qbt-theme/edit-clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/qbt-theme/edit-clear.png -------------------------------------------------------------------------------- /src/icons/qbt-theme/edit-copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/qbt-theme/edit-copy.png -------------------------------------------------------------------------------- /src/icons/qbt-theme/edit-cut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/qbt-theme/edit-cut.png -------------------------------------------------------------------------------- /src/icons/qbt-theme/edit-delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/qbt-theme/edit-delete.png -------------------------------------------------------------------------------- /src/icons/qbt-theme/edit-find-user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/qbt-theme/edit-find-user.png -------------------------------------------------------------------------------- /src/icons/qbt-theme/edit-find.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/qbt-theme/edit-find.png -------------------------------------------------------------------------------- /src/icons/qbt-theme/edit-paste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/qbt-theme/edit-paste.png -------------------------------------------------------------------------------- /src/icons/qbt-theme/edit-rename.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/qbt-theme/edit-rename.png -------------------------------------------------------------------------------- /src/icons/qbt-theme/folder-download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/qbt-theme/folder-download.png -------------------------------------------------------------------------------- /src/icons/qbt-theme/folder-new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/qbt-theme/folder-new.png -------------------------------------------------------------------------------- /src/icons/qbt-theme/folder-remote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/qbt-theme/folder-remote.png -------------------------------------------------------------------------------- /src/icons/qbt-theme/gear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/qbt-theme/gear.png -------------------------------------------------------------------------------- /src/icons/qbt-theme/gear32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/qbt-theme/gear32.png -------------------------------------------------------------------------------- /src/icons/qbt-theme/go-bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/qbt-theme/go-bottom.png -------------------------------------------------------------------------------- /src/icons/qbt-theme/go-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/qbt-theme/go-down.png -------------------------------------------------------------------------------- /src/icons/qbt-theme/go-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/qbt-theme/go-top.png -------------------------------------------------------------------------------- /src/icons/qbt-theme/go-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/qbt-theme/go-up.png -------------------------------------------------------------------------------- /src/icons/qbt-theme/help-about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/qbt-theme/help-about.png -------------------------------------------------------------------------------- /src/icons/qbt-theme/help-contents.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/qbt-theme/help-contents.png -------------------------------------------------------------------------------- /src/icons/qbt-theme/inode-directory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/qbt-theme/inode-directory.png -------------------------------------------------------------------------------- /src/icons/qbt-theme/insert-link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/qbt-theme/insert-link.png -------------------------------------------------------------------------------- /src/icons/qbt-theme/kt-magnet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/qbt-theme/kt-magnet.png -------------------------------------------------------------------------------- /src/icons/qbt-theme/list-add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/qbt-theme/list-add.png -------------------------------------------------------------------------------- /src/icons/qbt-theme/list-remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/qbt-theme/list-remove.png -------------------------------------------------------------------------------- /src/icons/qbt-theme/mail-mark-read.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/qbt-theme/mail-mark-read.png -------------------------------------------------------------------------------- /src/icons/qbt-theme/network-server.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/qbt-theme/network-server.png -------------------------------------------------------------------------------- /src/icons/qbt-theme/network-wired.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/qbt-theme/network-wired.png -------------------------------------------------------------------------------- /src/icons/qbt-theme/object-locked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/qbt-theme/object-locked.png -------------------------------------------------------------------------------- /src/icons/qbt-theme/rss-config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/qbt-theme/rss-config.png -------------------------------------------------------------------------------- /src/icons/qbt-theme/security-high.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/qbt-theme/security-high.png -------------------------------------------------------------------------------- /src/icons/qbt-theme/security-low.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/qbt-theme/security-low.png -------------------------------------------------------------------------------- /src/icons/qbt-theme/services.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/qbt-theme/services.png -------------------------------------------------------------------------------- /src/icons/qbt-theme/speedometer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/qbt-theme/speedometer.png -------------------------------------------------------------------------------- /src/icons/qbt-theme/system-log-out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/qbt-theme/system-log-out.png -------------------------------------------------------------------------------- /src/icons/qbt-theme/tab-close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/qbt-theme/tab-close.png -------------------------------------------------------------------------------- /src/icons/qbt-theme/task-attention.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/qbt-theme/task-attention.png -------------------------------------------------------------------------------- /src/icons/qbt-theme/task-complete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/qbt-theme/task-complete.png -------------------------------------------------------------------------------- /src/icons/qbt-theme/task-ongoing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/qbt-theme/task-ongoing.png -------------------------------------------------------------------------------- /src/icons/qbt-theme/task-reject.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/qbt-theme/task-reject.png -------------------------------------------------------------------------------- /src/icons/qbt-theme/text-plain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/qbt-theme/text-plain.png -------------------------------------------------------------------------------- /src/icons/qbt-theme/unavailable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/qbt-theme/unavailable.png -------------------------------------------------------------------------------- /src/icons/qbt-theme/user-group-new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/qbt-theme/user-group-new.png -------------------------------------------------------------------------------- /src/icons/qbt-theme/view-categories.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/qbt-theme/view-categories.png -------------------------------------------------------------------------------- /src/icons/qbt-theme/view-filter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/qbt-theme/view-filter.png -------------------------------------------------------------------------------- /src/icons/qbt-theme/view-preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/qbt-theme/view-preview.png -------------------------------------------------------------------------------- /src/icons/qbt-theme/view-refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/qbt-theme/view-refresh.png -------------------------------------------------------------------------------- /src/icons/qbt-theme/view-statistics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/qbt-theme/view-statistics.png -------------------------------------------------------------------------------- /src/icons/qbt-theme/wallet-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/qbt-theme/wallet-open.png -------------------------------------------------------------------------------- /src/icons/qbt-theme/webui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/qbt-theme/webui.png -------------------------------------------------------------------------------- /src/icons/skin/arrow-right.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/skin/arrow-right.gif -------------------------------------------------------------------------------- /src/icons/skin/bg-dropdown.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/skin/bg-dropdown.gif -------------------------------------------------------------------------------- /src/icons/skin/bg-handle-horizontal.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/skin/bg-handle-horizontal.gif -------------------------------------------------------------------------------- /src/icons/skin/bg-header.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/skin/bg-header.gif -------------------------------------------------------------------------------- /src/icons/skin/bg-panel-header.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/skin/bg-panel-header.gif -------------------------------------------------------------------------------- /src/icons/skin/build-icons/Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/skin/build-icons/Gruntfile.js -------------------------------------------------------------------------------- /src/icons/skin/build-icons/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/skin/build-icons/package.json -------------------------------------------------------------------------------- /src/icons/skin/build-icons/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/skin/build-icons/readme.md -------------------------------------------------------------------------------- /src/icons/skin/checking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/skin/checking.png -------------------------------------------------------------------------------- /src/icons/skin/collapse-expand.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/skin/collapse-expand.gif -------------------------------------------------------------------------------- /src/icons/skin/completed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/skin/completed.png -------------------------------------------------------------------------------- /src/icons/skin/connected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/skin/connected.png -------------------------------------------------------------------------------- /src/icons/skin/disconnected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/skin/disconnected.png -------------------------------------------------------------------------------- /src/icons/skin/dock-tabs.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/skin/dock-tabs.gif -------------------------------------------------------------------------------- /src/icons/skin/download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/skin/download.png -------------------------------------------------------------------------------- /src/icons/skin/downloading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/skin/downloading.png -------------------------------------------------------------------------------- /src/icons/skin/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/skin/error.png -------------------------------------------------------------------------------- /src/icons/skin/filteractive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/skin/filteractive.png -------------------------------------------------------------------------------- /src/icons/skin/filterall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/skin/filterall.png -------------------------------------------------------------------------------- /src/icons/skin/filterinactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/skin/filterinactive.png -------------------------------------------------------------------------------- /src/icons/skin/firewalled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/skin/firewalled.png -------------------------------------------------------------------------------- /src/icons/skin/handle-icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/skin/handle-icon.gif -------------------------------------------------------------------------------- /src/icons/skin/knob.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/skin/knob.gif -------------------------------------------------------------------------------- /src/icons/skin/logo-blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/skin/logo-blank.gif -------------------------------------------------------------------------------- /src/icons/skin/logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/skin/logo.gif -------------------------------------------------------------------------------- /src/icons/skin/logo2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/skin/logo2.gif -------------------------------------------------------------------------------- /src/icons/skin/mascot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/skin/mascot.png -------------------------------------------------------------------------------- /src/icons/skin/paused.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/skin/paused.png -------------------------------------------------------------------------------- /src/icons/skin/qbittorrent-tray.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/skin/qbittorrent-tray.svg -------------------------------------------------------------------------------- /src/icons/skin/qbittorrent16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/skin/qbittorrent16.png -------------------------------------------------------------------------------- /src/icons/skin/qbittorrent32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/skin/qbittorrent32.png -------------------------------------------------------------------------------- /src/icons/skin/queued.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/skin/queued.png -------------------------------------------------------------------------------- /src/icons/skin/ratio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/skin/ratio.png -------------------------------------------------------------------------------- /src/icons/skin/resumed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/skin/resumed.png -------------------------------------------------------------------------------- /src/icons/skin/seeding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/skin/seeding.png -------------------------------------------------------------------------------- /src/icons/skin/slider-area.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/skin/slider-area.gif -------------------------------------------------------------------------------- /src/icons/skin/spacer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/skin/spacer.gif -------------------------------------------------------------------------------- /src/icons/skin/spinner-placeholder.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/skin/spinner-placeholder.gif -------------------------------------------------------------------------------- /src/icons/skin/spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/skin/spinner.gif -------------------------------------------------------------------------------- /src/icons/skin/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/skin/splash.png -------------------------------------------------------------------------------- /src/icons/skin/stalledDL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/skin/stalledDL.png -------------------------------------------------------------------------------- /src/icons/skin/stalledUP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/skin/stalledUP.png -------------------------------------------------------------------------------- /src/icons/skin/tabs.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/skin/tabs.gif -------------------------------------------------------------------------------- /src/icons/skin/toolbox-divider.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/skin/toolbox-divider.gif -------------------------------------------------------------------------------- /src/icons/skin/toolbox-divider2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/skin/toolbox-divider2.gif -------------------------------------------------------------------------------- /src/icons/skin/uploading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/skin/uploading.png -------------------------------------------------------------------------------- /src/icons/slow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/slow.png -------------------------------------------------------------------------------- /src/icons/slow_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/slow_off.png -------------------------------------------------------------------------------- /src/icons/sphere.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/sphere.png -------------------------------------------------------------------------------- /src/icons/sphere2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/sphere2.png -------------------------------------------------------------------------------- /src/icons/url.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/icons/url.png -------------------------------------------------------------------------------- /src/lang.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/lang.qrc -------------------------------------------------------------------------------- /src/lang/TRANSLATION_INSTRUCTIONS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/lang/TRANSLATION_INSTRUCTIONS -------------------------------------------------------------------------------- /src/lang/qbittorrent_ar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/lang/qbittorrent_ar.ts -------------------------------------------------------------------------------- /src/lang/qbittorrent_be.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/lang/qbittorrent_be.ts -------------------------------------------------------------------------------- /src/lang/qbittorrent_bg.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/lang/qbittorrent_bg.ts -------------------------------------------------------------------------------- /src/lang/qbittorrent_ca.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/lang/qbittorrent_ca.ts -------------------------------------------------------------------------------- /src/lang/qbittorrent_cs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/lang/qbittorrent_cs.ts -------------------------------------------------------------------------------- /src/lang/qbittorrent_da.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/lang/qbittorrent_da.ts -------------------------------------------------------------------------------- /src/lang/qbittorrent_de.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/lang/qbittorrent_de.ts -------------------------------------------------------------------------------- /src/lang/qbittorrent_el.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/lang/qbittorrent_el.ts -------------------------------------------------------------------------------- /src/lang/qbittorrent_en.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/lang/qbittorrent_en.ts -------------------------------------------------------------------------------- /src/lang/qbittorrent_en_AU.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/lang/qbittorrent_en_AU.ts -------------------------------------------------------------------------------- /src/lang/qbittorrent_en_GB.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/lang/qbittorrent_en_GB.ts -------------------------------------------------------------------------------- /src/lang/qbittorrent_eo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/lang/qbittorrent_eo.ts -------------------------------------------------------------------------------- /src/lang/qbittorrent_es.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/lang/qbittorrent_es.ts -------------------------------------------------------------------------------- /src/lang/qbittorrent_eu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/lang/qbittorrent_eu.ts -------------------------------------------------------------------------------- /src/lang/qbittorrent_fi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/lang/qbittorrent_fi.ts -------------------------------------------------------------------------------- /src/lang/qbittorrent_fr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/lang/qbittorrent_fr.ts -------------------------------------------------------------------------------- /src/lang/qbittorrent_gl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/lang/qbittorrent_gl.ts -------------------------------------------------------------------------------- /src/lang/qbittorrent_he.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/lang/qbittorrent_he.ts -------------------------------------------------------------------------------- /src/lang/qbittorrent_hi_IN.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/lang/qbittorrent_hi_IN.ts -------------------------------------------------------------------------------- /src/lang/qbittorrent_hr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/lang/qbittorrent_hr.ts -------------------------------------------------------------------------------- /src/lang/qbittorrent_hu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/lang/qbittorrent_hu.ts -------------------------------------------------------------------------------- /src/lang/qbittorrent_hy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/lang/qbittorrent_hy.ts -------------------------------------------------------------------------------- /src/lang/qbittorrent_id.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/lang/qbittorrent_id.ts -------------------------------------------------------------------------------- /src/lang/qbittorrent_is.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/lang/qbittorrent_is.ts -------------------------------------------------------------------------------- /src/lang/qbittorrent_it.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/lang/qbittorrent_it.ts -------------------------------------------------------------------------------- /src/lang/qbittorrent_ja.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/lang/qbittorrent_ja.ts -------------------------------------------------------------------------------- /src/lang/qbittorrent_ka.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/lang/qbittorrent_ka.ts -------------------------------------------------------------------------------- /src/lang/qbittorrent_ko.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/lang/qbittorrent_ko.ts -------------------------------------------------------------------------------- /src/lang/qbittorrent_lt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/lang/qbittorrent_lt.ts -------------------------------------------------------------------------------- /src/lang/qbittorrent_lv_LV.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/lang/qbittorrent_lv_LV.ts -------------------------------------------------------------------------------- /src/lang/qbittorrent_ms_MY.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/lang/qbittorrent_ms_MY.ts -------------------------------------------------------------------------------- /src/lang/qbittorrent_nb.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/lang/qbittorrent_nb.ts -------------------------------------------------------------------------------- /src/lang/qbittorrent_nl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/lang/qbittorrent_nl.ts -------------------------------------------------------------------------------- /src/lang/qbittorrent_oc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/lang/qbittorrent_oc.ts -------------------------------------------------------------------------------- /src/lang/qbittorrent_pl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/lang/qbittorrent_pl.ts -------------------------------------------------------------------------------- /src/lang/qbittorrent_pt_BR.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/lang/qbittorrent_pt_BR.ts -------------------------------------------------------------------------------- /src/lang/qbittorrent_pt_PT.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/lang/qbittorrent_pt_PT.ts -------------------------------------------------------------------------------- /src/lang/qbittorrent_ro.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/lang/qbittorrent_ro.ts -------------------------------------------------------------------------------- /src/lang/qbittorrent_ru.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/lang/qbittorrent_ru.ts -------------------------------------------------------------------------------- /src/lang/qbittorrent_sk.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/lang/qbittorrent_sk.ts -------------------------------------------------------------------------------- /src/lang/qbittorrent_sl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/lang/qbittorrent_sl.ts -------------------------------------------------------------------------------- /src/lang/qbittorrent_sr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/lang/qbittorrent_sr.ts -------------------------------------------------------------------------------- /src/lang/qbittorrent_sv.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/lang/qbittorrent_sv.ts -------------------------------------------------------------------------------- /src/lang/qbittorrent_tr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/lang/qbittorrent_tr.ts -------------------------------------------------------------------------------- /src/lang/qbittorrent_uk.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/lang/qbittorrent_uk.ts -------------------------------------------------------------------------------- /src/lang/qbittorrent_uz@Latn.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/lang/qbittorrent_uz@Latn.ts -------------------------------------------------------------------------------- /src/lang/qbittorrent_vi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/lang/qbittorrent_vi.ts -------------------------------------------------------------------------------- /src/lang/qbittorrent_zh.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/lang/qbittorrent_zh.ts -------------------------------------------------------------------------------- /src/lang/qbittorrent_zh_HK.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/lang/qbittorrent_zh_HK.ts -------------------------------------------------------------------------------- /src/lang/qbittorrent_zh_TW.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/lang/qbittorrent_zh_TW.ts -------------------------------------------------------------------------------- /src/qbittorrent.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/qbittorrent.exe.manifest -------------------------------------------------------------------------------- /src/qbittorrent.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/qbittorrent.ico -------------------------------------------------------------------------------- /src/qbittorrent.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/qbittorrent.rc -------------------------------------------------------------------------------- /src/qbittorrent_file.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/qbittorrent_file.ico -------------------------------------------------------------------------------- /src/qbittorrent_mingw.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/qbittorrent_mingw.rc -------------------------------------------------------------------------------- /src/searchengine.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/searchengine.qrc -------------------------------------------------------------------------------- /src/searchengine/nova/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/searchengine/nova/fix_encoding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/searchengine/nova/fix_encoding.py -------------------------------------------------------------------------------- /src/searchengine/nova/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/searchengine/nova/helpers.py -------------------------------------------------------------------------------- /src/searchengine/nova/nova2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/searchengine/nova/nova2.py -------------------------------------------------------------------------------- /src/searchengine/nova/nova2dl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/searchengine/nova/nova2dl.py -------------------------------------------------------------------------------- /src/searchengine/nova/novaprinter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/searchengine/nova/novaprinter.py -------------------------------------------------------------------------------- /src/searchengine/nova/socks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/searchengine/nova/socks.py -------------------------------------------------------------------------------- /src/searchengine/nova3/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/searchengine/nova3/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/searchengine/nova3/helpers.py -------------------------------------------------------------------------------- /src/searchengine/nova3/nova2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/searchengine/nova3/nova2.py -------------------------------------------------------------------------------- /src/searchengine/nova3/nova2dl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/searchengine/nova3/nova2dl.py -------------------------------------------------------------------------------- /src/searchengine/nova3/novaprinter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/searchengine/nova3/novaprinter.py -------------------------------------------------------------------------------- /src/searchengine/nova3/sgmllib3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/searchengine/nova3/sgmllib3.py -------------------------------------------------------------------------------- /src/searchengine/nova3/socks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/searchengine/nova3/socks.py -------------------------------------------------------------------------------- /src/src.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/src.pro -------------------------------------------------------------------------------- /src/update_qrc_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/update_qrc_files.py -------------------------------------------------------------------------------- /src/webui/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/webui/CMakeLists.txt -------------------------------------------------------------------------------- /src/webui/abstractwebapplication.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/webui/abstractwebapplication.cpp -------------------------------------------------------------------------------- /src/webui/abstractwebapplication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/webui/abstractwebapplication.h -------------------------------------------------------------------------------- /src/webui/btjson.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/webui/btjson.cpp -------------------------------------------------------------------------------- /src/webui/btjson.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/webui/btjson.h -------------------------------------------------------------------------------- /src/webui/extra_translations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/webui/extra_translations.h -------------------------------------------------------------------------------- /src/webui/jsonutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/webui/jsonutils.h -------------------------------------------------------------------------------- /src/webui/prefjson.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/webui/prefjson.cpp -------------------------------------------------------------------------------- /src/webui/prefjson.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/webui/prefjson.h -------------------------------------------------------------------------------- /src/webui/webapplication.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/webui/webapplication.cpp -------------------------------------------------------------------------------- /src/webui/webapplication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/webui/webapplication.h -------------------------------------------------------------------------------- /src/webui/websessiondata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/webui/websessiondata.h -------------------------------------------------------------------------------- /src/webui/webui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/webui/webui.cpp -------------------------------------------------------------------------------- /src/webui/webui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/webui/webui.h -------------------------------------------------------------------------------- /src/webui/webui.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/webui/webui.pri -------------------------------------------------------------------------------- /src/webui/webui.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/webui/webui.qrc -------------------------------------------------------------------------------- /src/webui/www/private/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/webui/www/private/index.html -------------------------------------------------------------------------------- /src/webui/www/private/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/webui/www/private/login.html -------------------------------------------------------------------------------- /src/webui/www/public/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/webui/www/public/about.html -------------------------------------------------------------------------------- /src/webui/www/public/addtrackers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/webui/www/public/addtrackers.html -------------------------------------------------------------------------------- /src/webui/www/public/css/Core.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/webui/www/public/css/Core.css -------------------------------------------------------------------------------- /src/webui/www/public/css/Layout.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/webui/www/public/css/Layout.css -------------------------------------------------------------------------------- /src/webui/www/public/css/Tabs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/webui/www/public/css/Tabs.css -------------------------------------------------------------------------------- /src/webui/www/public/css/Window.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/webui/www/public/css/Window.css -------------------------------------------------------------------------------- /src/webui/www/public/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/webui/www/public/css/style.css -------------------------------------------------------------------------------- /src/webui/www/public/download.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/webui/www/public/download.html -------------------------------------------------------------------------------- /src/webui/www/public/downloadlimit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/webui/www/public/downloadlimit.html -------------------------------------------------------------------------------- /src/webui/www/public/filters.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/webui/www/public/filters.html -------------------------------------------------------------------------------- /src/webui/www/public/newcategory.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/webui/www/public/newcategory.html -------------------------------------------------------------------------------- /src/webui/www/public/preferences.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/webui/www/public/preferences.html -------------------------------------------------------------------------------- /src/webui/www/public/properties.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/webui/www/public/properties.html -------------------------------------------------------------------------------- /src/webui/www/public/rename.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/webui/www/public/rename.html -------------------------------------------------------------------------------- /src/webui/www/public/scripts/misc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/webui/www/public/scripts/misc.js -------------------------------------------------------------------------------- /src/webui/www/public/scripts/mocha.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/webui/www/public/scripts/mocha.js -------------------------------------------------------------------------------- /src/webui/www/public/setlocation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/webui/www/public/setlocation.html -------------------------------------------------------------------------------- /src/webui/www/public/statistics.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/webui/www/public/statistics.html -------------------------------------------------------------------------------- /src/webui/www/public/upload.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/webui/www/public/upload.html -------------------------------------------------------------------------------- /src/webui/www/public/uploadlimit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/src/webui/www/public/uploadlimit.html -------------------------------------------------------------------------------- /uncrustify.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/uncrustify.cfg -------------------------------------------------------------------------------- /unixconf.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/unixconf.pri -------------------------------------------------------------------------------- /version.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/version.pri -------------------------------------------------------------------------------- /winconf.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gelmir/qBittorrent/HEAD/winconf.pri --------------------------------------------------------------------------------