├── .gitattributes ├── .gitconfig ├── .github ├── FUNDING.yml └── workflows │ └── main.yml ├── .gitignore ├── AUTHORS ├── CODE_OF_CONDUCT.md ├── COPYING ├── ISSUE_TEMPLATE.md ├── README.md ├── com.github.davidmhewitt.torrential.yml ├── data ├── 16 │ └── com.github.davidmhewitt.torrential.svg ├── 24 │ └── com.github.davidmhewitt.torrential.svg ├── 32 │ └── com.github.davidmhewitt.torrential.svg ├── 48 │ └── com.github.davidmhewitt.torrential.svg ├── 64 │ └── com.github.davidmhewitt.torrential.svg ├── 128 │ └── com.github.davidmhewitt.torrential.svg ├── com.github.davidmhewitt.torrential.desktop.in ├── com.github.davidmhewitt.torrential.gresource.xml ├── com.github.davidmhewitt.torrential.gschema.xml ├── com.github.davidmhewitt.torrential.screenshot.png ├── icons │ ├── filter.svg │ └── open-magnet.svg ├── meson.build ├── symbolic │ └── com.github.davidmhewitt.torrential-symbolic.svg ├── torrential.metainfo.xml.in └── ui │ └── FileSelectFactory.ui ├── meson.build ├── po ├── LINGUAS ├── POTFILES ├── com.github.davidmhewitt.torrential.pot ├── de.po ├── es.po ├── extra │ ├── LINGUAS │ ├── POTFILES │ ├── de.po │ ├── es.po │ ├── extra.pot │ ├── fr.po │ ├── fr_CA.po │ ├── id.po │ ├── it.po │ ├── lt.po │ ├── meson.build │ ├── nl.po │ ├── pt_BR.po │ └── ru.po ├── fr.po ├── fr_CA.po ├── id.po ├── it.po ├── lt.po ├── meson.build ├── nl.po ├── pt_BR.po └── ru.po ├── src ├── Application.vala ├── Config.vala.in ├── FileSelector │ ├── FileSelectDialog.vala │ └── Model.vala ├── MainWindow.vala ├── PreferencesWindow.vala ├── Torrent.vala ├── TorrentManager.vala ├── Utils.vala ├── Widgets │ ├── MultiInfoBar.vala │ ├── TorrentListBox.vala │ └── TorrentListRow.vala └── meson.build ├── tools ├── transmission-legacy-ssl.patch ├── uncrustify-vala.cfg └── vapi └── transmission-2.0.vapi /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidmhewitt/torrential/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidmhewitt/torrential/HEAD/.gitconfig -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidmhewitt/torrential/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidmhewitt/torrential/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidmhewitt/torrential/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidmhewitt/torrential/HEAD/AUTHORS -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidmhewitt/torrential/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidmhewitt/torrential/HEAD/COPYING -------------------------------------------------------------------------------- /ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidmhewitt/torrential/HEAD/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidmhewitt/torrential/HEAD/README.md -------------------------------------------------------------------------------- /com.github.davidmhewitt.torrential.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidmhewitt/torrential/HEAD/com.github.davidmhewitt.torrential.yml -------------------------------------------------------------------------------- /data/128/com.github.davidmhewitt.torrential.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidmhewitt/torrential/HEAD/data/128/com.github.davidmhewitt.torrential.svg -------------------------------------------------------------------------------- /data/16/com.github.davidmhewitt.torrential.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidmhewitt/torrential/HEAD/data/16/com.github.davidmhewitt.torrential.svg -------------------------------------------------------------------------------- /data/24/com.github.davidmhewitt.torrential.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidmhewitt/torrential/HEAD/data/24/com.github.davidmhewitt.torrential.svg -------------------------------------------------------------------------------- /data/32/com.github.davidmhewitt.torrential.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidmhewitt/torrential/HEAD/data/32/com.github.davidmhewitt.torrential.svg -------------------------------------------------------------------------------- /data/48/com.github.davidmhewitt.torrential.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidmhewitt/torrential/HEAD/data/48/com.github.davidmhewitt.torrential.svg -------------------------------------------------------------------------------- /data/64/com.github.davidmhewitt.torrential.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidmhewitt/torrential/HEAD/data/64/com.github.davidmhewitt.torrential.svg -------------------------------------------------------------------------------- /data/com.github.davidmhewitt.torrential.desktop.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidmhewitt/torrential/HEAD/data/com.github.davidmhewitt.torrential.desktop.in -------------------------------------------------------------------------------- /data/com.github.davidmhewitt.torrential.gresource.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidmhewitt/torrential/HEAD/data/com.github.davidmhewitt.torrential.gresource.xml -------------------------------------------------------------------------------- /data/com.github.davidmhewitt.torrential.gschema.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidmhewitt/torrential/HEAD/data/com.github.davidmhewitt.torrential.gschema.xml -------------------------------------------------------------------------------- /data/com.github.davidmhewitt.torrential.screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidmhewitt/torrential/HEAD/data/com.github.davidmhewitt.torrential.screenshot.png -------------------------------------------------------------------------------- /data/icons/filter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidmhewitt/torrential/HEAD/data/icons/filter.svg -------------------------------------------------------------------------------- /data/icons/open-magnet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidmhewitt/torrential/HEAD/data/icons/open-magnet.svg -------------------------------------------------------------------------------- /data/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidmhewitt/torrential/HEAD/data/meson.build -------------------------------------------------------------------------------- /data/symbolic/com.github.davidmhewitt.torrential-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidmhewitt/torrential/HEAD/data/symbolic/com.github.davidmhewitt.torrential-symbolic.svg -------------------------------------------------------------------------------- /data/torrential.metainfo.xml.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidmhewitt/torrential/HEAD/data/torrential.metainfo.xml.in -------------------------------------------------------------------------------- /data/ui/FileSelectFactory.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidmhewitt/torrential/HEAD/data/ui/FileSelectFactory.ui -------------------------------------------------------------------------------- /meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidmhewitt/torrential/HEAD/meson.build -------------------------------------------------------------------------------- /po/LINGUAS: -------------------------------------------------------------------------------- 1 | de 2 | es 3 | fr 4 | fr_CA 5 | id 6 | it 7 | lt 8 | nl 9 | pt_BR 10 | ru 11 | -------------------------------------------------------------------------------- /po/POTFILES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidmhewitt/torrential/HEAD/po/POTFILES -------------------------------------------------------------------------------- /po/com.github.davidmhewitt.torrential.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidmhewitt/torrential/HEAD/po/com.github.davidmhewitt.torrential.pot -------------------------------------------------------------------------------- /po/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidmhewitt/torrential/HEAD/po/de.po -------------------------------------------------------------------------------- /po/es.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidmhewitt/torrential/HEAD/po/es.po -------------------------------------------------------------------------------- /po/extra/LINGUAS: -------------------------------------------------------------------------------- 1 | de 2 | es 3 | fr 4 | fr_CA 5 | id 6 | it 7 | lt 8 | nl 9 | pt_BR 10 | ru 11 | -------------------------------------------------------------------------------- /po/extra/POTFILES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidmhewitt/torrential/HEAD/po/extra/POTFILES -------------------------------------------------------------------------------- /po/extra/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidmhewitt/torrential/HEAD/po/extra/de.po -------------------------------------------------------------------------------- /po/extra/es.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidmhewitt/torrential/HEAD/po/extra/es.po -------------------------------------------------------------------------------- /po/extra/extra.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidmhewitt/torrential/HEAD/po/extra/extra.pot -------------------------------------------------------------------------------- /po/extra/fr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidmhewitt/torrential/HEAD/po/extra/fr.po -------------------------------------------------------------------------------- /po/extra/fr_CA.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidmhewitt/torrential/HEAD/po/extra/fr_CA.po -------------------------------------------------------------------------------- /po/extra/id.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidmhewitt/torrential/HEAD/po/extra/id.po -------------------------------------------------------------------------------- /po/extra/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidmhewitt/torrential/HEAD/po/extra/it.po -------------------------------------------------------------------------------- /po/extra/lt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidmhewitt/torrential/HEAD/po/extra/lt.po -------------------------------------------------------------------------------- /po/extra/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidmhewitt/torrential/HEAD/po/extra/meson.build -------------------------------------------------------------------------------- /po/extra/nl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidmhewitt/torrential/HEAD/po/extra/nl.po -------------------------------------------------------------------------------- /po/extra/pt_BR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidmhewitt/torrential/HEAD/po/extra/pt_BR.po -------------------------------------------------------------------------------- /po/extra/ru.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidmhewitt/torrential/HEAD/po/extra/ru.po -------------------------------------------------------------------------------- /po/fr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidmhewitt/torrential/HEAD/po/fr.po -------------------------------------------------------------------------------- /po/fr_CA.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidmhewitt/torrential/HEAD/po/fr_CA.po -------------------------------------------------------------------------------- /po/id.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidmhewitt/torrential/HEAD/po/id.po -------------------------------------------------------------------------------- /po/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidmhewitt/torrential/HEAD/po/it.po -------------------------------------------------------------------------------- /po/lt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidmhewitt/torrential/HEAD/po/lt.po -------------------------------------------------------------------------------- /po/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidmhewitt/torrential/HEAD/po/meson.build -------------------------------------------------------------------------------- /po/nl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidmhewitt/torrential/HEAD/po/nl.po -------------------------------------------------------------------------------- /po/pt_BR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidmhewitt/torrential/HEAD/po/pt_BR.po -------------------------------------------------------------------------------- /po/ru.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidmhewitt/torrential/HEAD/po/ru.po -------------------------------------------------------------------------------- /src/Application.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidmhewitt/torrential/HEAD/src/Application.vala -------------------------------------------------------------------------------- /src/Config.vala.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidmhewitt/torrential/HEAD/src/Config.vala.in -------------------------------------------------------------------------------- /src/FileSelector/FileSelectDialog.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidmhewitt/torrential/HEAD/src/FileSelector/FileSelectDialog.vala -------------------------------------------------------------------------------- /src/FileSelector/Model.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidmhewitt/torrential/HEAD/src/FileSelector/Model.vala -------------------------------------------------------------------------------- /src/MainWindow.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidmhewitt/torrential/HEAD/src/MainWindow.vala -------------------------------------------------------------------------------- /src/PreferencesWindow.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidmhewitt/torrential/HEAD/src/PreferencesWindow.vala -------------------------------------------------------------------------------- /src/Torrent.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidmhewitt/torrential/HEAD/src/Torrent.vala -------------------------------------------------------------------------------- /src/TorrentManager.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidmhewitt/torrential/HEAD/src/TorrentManager.vala -------------------------------------------------------------------------------- /src/Utils.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidmhewitt/torrential/HEAD/src/Utils.vala -------------------------------------------------------------------------------- /src/Widgets/MultiInfoBar.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidmhewitt/torrential/HEAD/src/Widgets/MultiInfoBar.vala -------------------------------------------------------------------------------- /src/Widgets/TorrentListBox.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidmhewitt/torrential/HEAD/src/Widgets/TorrentListBox.vala -------------------------------------------------------------------------------- /src/Widgets/TorrentListRow.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidmhewitt/torrential/HEAD/src/Widgets/TorrentListRow.vala -------------------------------------------------------------------------------- /src/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidmhewitt/torrential/HEAD/src/meson.build -------------------------------------------------------------------------------- /tools: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidmhewitt/torrential/HEAD/tools -------------------------------------------------------------------------------- /transmission-legacy-ssl.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidmhewitt/torrential/HEAD/transmission-legacy-ssl.patch -------------------------------------------------------------------------------- /uncrustify-vala.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidmhewitt/torrential/HEAD/uncrustify-vala.cfg -------------------------------------------------------------------------------- /vapi/transmission-2.0.vapi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidmhewitt/torrential/HEAD/vapi/transmission-2.0.vapi --------------------------------------------------------------------------------