├── .gitignore ├── CHANGELOG.rst ├── LICENSE ├── README.rst ├── dottorrentGUI ├── .vscode │ └── settings.json ├── __init__.py ├── about.ui ├── gui.py ├── mainwindow.ui ├── ui_about.py ├── ui_mainwindow.py └── version.py ├── img └── screenshot1.png └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kz26/dottorrent-gui/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kz26/dottorrent-gui/HEAD/CHANGELOG.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kz26/dottorrent-gui/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kz26/dottorrent-gui/HEAD/README.rst -------------------------------------------------------------------------------- /dottorrentGUI/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kz26/dottorrent-gui/HEAD/dottorrentGUI/.vscode/settings.json -------------------------------------------------------------------------------- /dottorrentGUI/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kz26/dottorrent-gui/HEAD/dottorrentGUI/__init__.py -------------------------------------------------------------------------------- /dottorrentGUI/about.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kz26/dottorrent-gui/HEAD/dottorrentGUI/about.ui -------------------------------------------------------------------------------- /dottorrentGUI/gui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kz26/dottorrent-gui/HEAD/dottorrentGUI/gui.py -------------------------------------------------------------------------------- /dottorrentGUI/mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kz26/dottorrent-gui/HEAD/dottorrentGUI/mainwindow.ui -------------------------------------------------------------------------------- /dottorrentGUI/ui_about.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kz26/dottorrent-gui/HEAD/dottorrentGUI/ui_about.py -------------------------------------------------------------------------------- /dottorrentGUI/ui_mainwindow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kz26/dottorrent-gui/HEAD/dottorrentGUI/ui_mainwindow.py -------------------------------------------------------------------------------- /dottorrentGUI/version.py: -------------------------------------------------------------------------------- 1 | __version__ = '1.3.11' 2 | -------------------------------------------------------------------------------- /img/screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kz26/dottorrent-gui/HEAD/img/screenshot1.png -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kz26/dottorrent-gui/HEAD/setup.py --------------------------------------------------------------------------------