├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── .tx └── config ├── BUILDING.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── alembicrepo ├── README ├── env.py ├── script.py.mako └── versions │ ├── 0e35fff276f3_stable_versions.py │ └── 402ce1583e3f_initial_config_model.py ├── cddagl ├── VERSION ├── __init__.py ├── __main__.py ├── constants.py ├── functions.py ├── i18n.py ├── launcher.py ├── locale │ ├── es │ │ └── LC_MESSAGES │ │ │ └── cddagl.po │ ├── fr │ │ └── LC_MESSAGES │ │ │ └── cddagl.po │ ├── it │ │ └── LC_MESSAGES │ │ │ └── cddagl.po │ ├── ja │ │ └── LC_MESSAGES │ │ │ └── cddagl.po │ ├── mapping.cfg │ └── ru │ │ └── LC_MESSAGES │ │ └── cddagl.po ├── resources │ ├── License.md │ ├── credits.md │ ├── kitten_dark_theme.qss │ └── launcher.ico ├── sql │ ├── __init__.py │ ├── functions.py │ └── model.py ├── ui │ ├── __init__.py │ └── views │ │ ├── __init__.py │ │ ├── backups.py │ │ ├── dialogs.py │ │ ├── main.py │ │ ├── settings.py │ │ ├── soundpacks.py │ │ └── tabbed.py └── win32.py ├── data └── soundpacks.json ├── launcher.iss ├── requirements-dev.txt ├── requirements.txt └── setup.py /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fris0uman/CDDA-Game-Launcher/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fris0uman/CDDA-Game-Launcher/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fris0uman/CDDA-Game-Launcher/HEAD/.gitignore -------------------------------------------------------------------------------- /.tx/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fris0uman/CDDA-Game-Launcher/HEAD/.tx/config -------------------------------------------------------------------------------- /BUILDING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fris0uman/CDDA-Game-Launcher/HEAD/BUILDING.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fris0uman/CDDA-Game-Launcher/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fris0uman/CDDA-Game-Launcher/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fris0uman/CDDA-Game-Launcher/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fris0uman/CDDA-Game-Launcher/HEAD/README.md -------------------------------------------------------------------------------- /alembicrepo/README: -------------------------------------------------------------------------------- 1 | Generic single-database configuration. -------------------------------------------------------------------------------- /alembicrepo/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fris0uman/CDDA-Game-Launcher/HEAD/alembicrepo/env.py -------------------------------------------------------------------------------- /alembicrepo/script.py.mako: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fris0uman/CDDA-Game-Launcher/HEAD/alembicrepo/script.py.mako -------------------------------------------------------------------------------- /alembicrepo/versions/0e35fff276f3_stable_versions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fris0uman/CDDA-Game-Launcher/HEAD/alembicrepo/versions/0e35fff276f3_stable_versions.py -------------------------------------------------------------------------------- /alembicrepo/versions/402ce1583e3f_initial_config_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fris0uman/CDDA-Game-Launcher/HEAD/alembicrepo/versions/402ce1583e3f_initial_config_model.py -------------------------------------------------------------------------------- /cddagl/VERSION: -------------------------------------------------------------------------------- 1 | 1.7.12 2 | -------------------------------------------------------------------------------- /cddagl/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fris0uman/CDDA-Game-Launcher/HEAD/cddagl/__init__.py -------------------------------------------------------------------------------- /cddagl/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fris0uman/CDDA-Game-Launcher/HEAD/cddagl/__main__.py -------------------------------------------------------------------------------- /cddagl/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fris0uman/CDDA-Game-Launcher/HEAD/cddagl/constants.py -------------------------------------------------------------------------------- /cddagl/functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fris0uman/CDDA-Game-Launcher/HEAD/cddagl/functions.py -------------------------------------------------------------------------------- /cddagl/i18n.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fris0uman/CDDA-Game-Launcher/HEAD/cddagl/i18n.py -------------------------------------------------------------------------------- /cddagl/launcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fris0uman/CDDA-Game-Launcher/HEAD/cddagl/launcher.py -------------------------------------------------------------------------------- /cddagl/locale/es/LC_MESSAGES/cddagl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fris0uman/CDDA-Game-Launcher/HEAD/cddagl/locale/es/LC_MESSAGES/cddagl.po -------------------------------------------------------------------------------- /cddagl/locale/fr/LC_MESSAGES/cddagl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fris0uman/CDDA-Game-Launcher/HEAD/cddagl/locale/fr/LC_MESSAGES/cddagl.po -------------------------------------------------------------------------------- /cddagl/locale/it/LC_MESSAGES/cddagl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fris0uman/CDDA-Game-Launcher/HEAD/cddagl/locale/it/LC_MESSAGES/cddagl.po -------------------------------------------------------------------------------- /cddagl/locale/ja/LC_MESSAGES/cddagl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fris0uman/CDDA-Game-Launcher/HEAD/cddagl/locale/ja/LC_MESSAGES/cddagl.po -------------------------------------------------------------------------------- /cddagl/locale/mapping.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fris0uman/CDDA-Game-Launcher/HEAD/cddagl/locale/mapping.cfg -------------------------------------------------------------------------------- /cddagl/locale/ru/LC_MESSAGES/cddagl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fris0uman/CDDA-Game-Launcher/HEAD/cddagl/locale/ru/LC_MESSAGES/cddagl.po -------------------------------------------------------------------------------- /cddagl/resources/License.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fris0uman/CDDA-Game-Launcher/HEAD/cddagl/resources/License.md -------------------------------------------------------------------------------- /cddagl/resources/credits.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fris0uman/CDDA-Game-Launcher/HEAD/cddagl/resources/credits.md -------------------------------------------------------------------------------- /cddagl/resources/kitten_dark_theme.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fris0uman/CDDA-Game-Launcher/HEAD/cddagl/resources/kitten_dark_theme.qss -------------------------------------------------------------------------------- /cddagl/resources/launcher.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fris0uman/CDDA-Game-Launcher/HEAD/cddagl/resources/launcher.ico -------------------------------------------------------------------------------- /cddagl/sql/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cddagl/sql/functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fris0uman/CDDA-Game-Launcher/HEAD/cddagl/sql/functions.py -------------------------------------------------------------------------------- /cddagl/sql/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fris0uman/CDDA-Game-Launcher/HEAD/cddagl/sql/model.py -------------------------------------------------------------------------------- /cddagl/ui/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cddagl/ui/views/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cddagl/ui/views/backups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fris0uman/CDDA-Game-Launcher/HEAD/cddagl/ui/views/backups.py -------------------------------------------------------------------------------- /cddagl/ui/views/dialogs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fris0uman/CDDA-Game-Launcher/HEAD/cddagl/ui/views/dialogs.py -------------------------------------------------------------------------------- /cddagl/ui/views/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fris0uman/CDDA-Game-Launcher/HEAD/cddagl/ui/views/main.py -------------------------------------------------------------------------------- /cddagl/ui/views/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fris0uman/CDDA-Game-Launcher/HEAD/cddagl/ui/views/settings.py -------------------------------------------------------------------------------- /cddagl/ui/views/soundpacks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fris0uman/CDDA-Game-Launcher/HEAD/cddagl/ui/views/soundpacks.py -------------------------------------------------------------------------------- /cddagl/ui/views/tabbed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fris0uman/CDDA-Game-Launcher/HEAD/cddagl/ui/views/tabbed.py -------------------------------------------------------------------------------- /cddagl/win32.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fris0uman/CDDA-Game-Launcher/HEAD/cddagl/win32.py -------------------------------------------------------------------------------- /data/soundpacks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fris0uman/CDDA-Game-Launcher/HEAD/data/soundpacks.json -------------------------------------------------------------------------------- /launcher.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fris0uman/CDDA-Game-Launcher/HEAD/launcher.iss -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- 1 | httpx -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fris0uman/CDDA-Game-Launcher/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fris0uman/CDDA-Game-Launcher/HEAD/setup.py --------------------------------------------------------------------------------