├── .github └── workflows │ └── main.yml ├── .gitignore ├── Binaries ├── 7z.dll ├── 7z.so ├── aria2c ├── aria2c.exe ├── butler ├── butler.exe ├── c7zip.dll ├── ca-certificates.crt └── libc7zip.so ├── CompileLinux.sh ├── CompileWindows.bat ├── GenerateMO.sh ├── GeneratePOT.sh ├── LICENSE ├── README.md ├── downloads.py ├── gui.py ├── locale ├── el │ └── LC_MESSAGES │ │ └── tf2c-downloader.po ├── es │ └── LC_MESSAGES │ │ └── tf2c-downloader.po ├── fr │ └── LC_MESSAGES │ │ └── tf2c-downloader.po ├── hu │ └── LC_MESSAGES │ │ └── tf2c-downloader.po ├── it │ └── LC_MESSAGES │ │ └── tf2c-downloader.po ├── nb_NO │ └── LC_MESSAGES │ │ └── tf2c-downloader.po ├── pl │ └── LC_MESSAGES │ │ └── tf2c-downloader.po ├── pt │ └── LC_MESSAGES │ │ └── tf2c-downloader.po ├── pt_BR │ └── LC_MESSAGES │ │ └── tf2c-downloader.po ├── ro │ └── LC_MESSAGES │ │ └── tf2c-downloader.po └── tf2c-downloader.pot ├── selfupdate.py ├── setup.py ├── tf2c.ico ├── tf2c_downloader.py ├── tf2c_downloader.spec ├── troubleshoot.py ├── vars.py └── versions.py /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tf2classic/TF2CDownloader/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | dist 3 | __pycache__ 4 | .temp 5 | *.mo 6 | *.po~ 7 | -------------------------------------------------------------------------------- /Binaries/7z.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tf2classic/TF2CDownloader/HEAD/Binaries/7z.dll -------------------------------------------------------------------------------- /Binaries/7z.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tf2classic/TF2CDownloader/HEAD/Binaries/7z.so -------------------------------------------------------------------------------- /Binaries/aria2c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tf2classic/TF2CDownloader/HEAD/Binaries/aria2c -------------------------------------------------------------------------------- /Binaries/aria2c.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tf2classic/TF2CDownloader/HEAD/Binaries/aria2c.exe -------------------------------------------------------------------------------- /Binaries/butler: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tf2classic/TF2CDownloader/HEAD/Binaries/butler -------------------------------------------------------------------------------- /Binaries/butler.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tf2classic/TF2CDownloader/HEAD/Binaries/butler.exe -------------------------------------------------------------------------------- /Binaries/c7zip.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tf2classic/TF2CDownloader/HEAD/Binaries/c7zip.dll -------------------------------------------------------------------------------- /Binaries/ca-certificates.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tf2classic/TF2CDownloader/HEAD/Binaries/ca-certificates.crt -------------------------------------------------------------------------------- /Binaries/libc7zip.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tf2classic/TF2CDownloader/HEAD/Binaries/libc7zip.so -------------------------------------------------------------------------------- /CompileLinux.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | pyinstaller tf2c_downloader.spec 3 | -------------------------------------------------------------------------------- /CompileWindows.bat: -------------------------------------------------------------------------------- 1 | pyinstaller tf2c_downloader.spec 2 | -------------------------------------------------------------------------------- /GenerateMO.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tf2classic/TF2CDownloader/HEAD/GenerateMO.sh -------------------------------------------------------------------------------- /GeneratePOT.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tf2classic/TF2CDownloader/HEAD/GeneratePOT.sh -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tf2classic/TF2CDownloader/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tf2classic/TF2CDownloader/HEAD/README.md -------------------------------------------------------------------------------- /downloads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tf2classic/TF2CDownloader/HEAD/downloads.py -------------------------------------------------------------------------------- /gui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tf2classic/TF2CDownloader/HEAD/gui.py -------------------------------------------------------------------------------- /locale/el/LC_MESSAGES/tf2c-downloader.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tf2classic/TF2CDownloader/HEAD/locale/el/LC_MESSAGES/tf2c-downloader.po -------------------------------------------------------------------------------- /locale/es/LC_MESSAGES/tf2c-downloader.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tf2classic/TF2CDownloader/HEAD/locale/es/LC_MESSAGES/tf2c-downloader.po -------------------------------------------------------------------------------- /locale/fr/LC_MESSAGES/tf2c-downloader.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tf2classic/TF2CDownloader/HEAD/locale/fr/LC_MESSAGES/tf2c-downloader.po -------------------------------------------------------------------------------- /locale/hu/LC_MESSAGES/tf2c-downloader.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tf2classic/TF2CDownloader/HEAD/locale/hu/LC_MESSAGES/tf2c-downloader.po -------------------------------------------------------------------------------- /locale/it/LC_MESSAGES/tf2c-downloader.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tf2classic/TF2CDownloader/HEAD/locale/it/LC_MESSAGES/tf2c-downloader.po -------------------------------------------------------------------------------- /locale/nb_NO/LC_MESSAGES/tf2c-downloader.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tf2classic/TF2CDownloader/HEAD/locale/nb_NO/LC_MESSAGES/tf2c-downloader.po -------------------------------------------------------------------------------- /locale/pl/LC_MESSAGES/tf2c-downloader.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tf2classic/TF2CDownloader/HEAD/locale/pl/LC_MESSAGES/tf2c-downloader.po -------------------------------------------------------------------------------- /locale/pt/LC_MESSAGES/tf2c-downloader.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tf2classic/TF2CDownloader/HEAD/locale/pt/LC_MESSAGES/tf2c-downloader.po -------------------------------------------------------------------------------- /locale/pt_BR/LC_MESSAGES/tf2c-downloader.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tf2classic/TF2CDownloader/HEAD/locale/pt_BR/LC_MESSAGES/tf2c-downloader.po -------------------------------------------------------------------------------- /locale/ro/LC_MESSAGES/tf2c-downloader.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tf2classic/TF2CDownloader/HEAD/locale/ro/LC_MESSAGES/tf2c-downloader.po -------------------------------------------------------------------------------- /locale/tf2c-downloader.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tf2classic/TF2CDownloader/HEAD/locale/tf2c-downloader.pot -------------------------------------------------------------------------------- /selfupdate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tf2classic/TF2CDownloader/HEAD/selfupdate.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tf2classic/TF2CDownloader/HEAD/setup.py -------------------------------------------------------------------------------- /tf2c.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tf2classic/TF2CDownloader/HEAD/tf2c.ico -------------------------------------------------------------------------------- /tf2c_downloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tf2classic/TF2CDownloader/HEAD/tf2c_downloader.py -------------------------------------------------------------------------------- /tf2c_downloader.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tf2classic/TF2CDownloader/HEAD/tf2c_downloader.spec -------------------------------------------------------------------------------- /troubleshoot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tf2classic/TF2CDownloader/HEAD/troubleshoot.py -------------------------------------------------------------------------------- /vars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tf2classic/TF2CDownloader/HEAD/vars.py -------------------------------------------------------------------------------- /versions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tf2classic/TF2CDownloader/HEAD/versions.py --------------------------------------------------------------------------------