├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ └── feature_request.yml └── workflows │ ├── build.yml │ └── reuse.yml ├── .gitignore ├── .reuse └── dep5 ├── .tx ├── config └── config.license ├── BUILDING.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── LICENSES ├── CC-BY-SA-4.0.txt ├── CC0-1.0.txt ├── LGPL-2.1-only.txt ├── LicenseRef-inno-setup.txt ├── LicenseRef-unrar.txt ├── LicenseRef-visual-cpp-build-tools.txt └── MIT.txt ├── README.md ├── alembicrepo ├── README ├── env.py ├── script.py.mako └── versions │ ├── 0e35fff276f3_stable_versions.py │ └── 402ce1583e3f_initial_config_model.py ├── cddagl ├── VERSION ├── VERSION.license ├── __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 │ ├── mapping.cfg.license │ └── ru │ │ └── LC_MESSAGES │ │ └── cddagl.po ├── resources │ ├── btc-qr.png │ ├── btc-qr.png.license │ ├── eth-qr.png │ ├── eth-qr.png.license │ ├── launcher.ico │ └── launcher.ico.license ├── sql │ ├── __init__.py │ ├── functions.py │ └── model.py ├── ui │ ├── __init__.py │ └── views │ │ ├── __init__.py │ │ ├── backups.py │ │ ├── dialogs.py │ │ ├── fonts.py │ │ ├── main.py │ │ ├── mods.py │ │ ├── settings.py │ │ ├── soundpacks.py │ │ ├── statistics.py │ │ ├── tabbed.py │ │ └── tilesets.py └── win32.py ├── data ├── mods.json ├── mods.json.license ├── soundpacks.json └── soundpacks.json.license ├── launcher.iss ├── launcher.iss.license ├── requirements-dev.txt ├── requirements.txt ├── setup.py └── third-party ├── inno-setup └── 6.2.0 │ ├── Compil32.exe │ ├── Default.isl │ ├── Examples │ ├── 64Bit.iss │ ├── 64BitThreeArch.iss │ ├── 64BitTwoArch.iss │ ├── AllPagesExample.iss │ ├── CodeAutomation.iss │ ├── CodeAutomation2.iss │ ├── CodeClasses.iss │ ├── CodeDlg.iss │ ├── CodeDll.iss │ ├── CodeDownloadFiles.iss │ ├── CodeExample1.iss │ ├── CodePrepareToInstall.iss │ ├── Components.iss │ ├── Example1.iss │ ├── Example2.iss │ ├── Example3.iss │ ├── ISPPExample1.iss │ ├── ISPPExample1License.txt │ ├── Languages.iss │ ├── License.txt │ ├── MyDll.dll │ ├── MyDll │ │ ├── C# │ │ │ ├── MyDll.cs │ │ │ ├── MyDll.csproj │ │ │ ├── MyDll.sln │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ └── packages.config │ │ ├── C │ │ │ ├── MyDll.c │ │ │ ├── MyDll.def │ │ │ └── MyDll.dsp │ │ └── Delphi │ │ │ └── MyDll.dpr │ ├── MyProg-ARM64.exe │ ├── MyProg-x64.exe │ ├── MyProg.chm │ ├── MyProg.exe │ ├── Readme-Dutch.txt │ ├── Readme-German.txt │ ├── Readme.txt │ ├── UnicodeExample1.iss │ └── UninstallCodeExample1.iss │ ├── ISCC.exe │ ├── ISCmplr.dll │ ├── ISPP.chm │ ├── ISPP.dll │ ├── ISPPBuiltins.iss │ ├── ISetup.chm │ ├── Languages │ ├── Armenian.isl │ ├── BrazilianPortuguese.isl │ ├── Bulgarian.isl │ ├── Catalan.isl │ ├── Corsican.isl │ ├── Czech.isl │ ├── Danish.isl │ ├── Dutch.isl │ ├── Finnish.isl │ ├── French.isl │ ├── German.isl │ ├── Hebrew.isl │ ├── Icelandic.isl │ ├── Italian.isl │ ├── Japanese.isl │ ├── Norwegian.isl │ ├── Polish.isl │ ├── Portuguese.isl │ ├── Russian.isl │ ├── Slovak.isl │ ├── Slovenian.isl │ ├── Spanish.isl │ ├── Turkish.isl │ └── Ukrainian.isl │ ├── Setup.e32 │ ├── SetupClassicIcon.ico │ ├── SetupLdr.e32 │ ├── WizClassicImage-IS.bmp │ ├── WizClassicImage.bmp │ ├── WizClassicSmallImage-IS.bmp │ ├── WizClassicSmallImage.bmp │ ├── isbunzip.dll │ ├── isbzip.dll │ ├── isfaq.url │ ├── islzma.dll │ ├── islzma32.exe │ ├── islzma64.exe │ ├── isscint.dll │ ├── isunzlib.dll │ ├── iszlib.dll │ ├── license.txt │ ├── unins000.dat │ ├── unins000.exe │ ├── unins000.msg │ └── whatsnew.htm ├── pylzma ├── pylzma-0.5.0-cp39-cp39-win_amd64.whl └── pylzma-0.5.0-cp39-cp39-win_amd64.whl.license ├── unrar-command-line-tool ├── UnRAR.exe ├── UnRAR.exe.license ├── license.txt └── license.txt.license └── vs-build-tools ├── .vsconfig ├── .vsconfig.license ├── vs_BuildTools.exe └── vs_BuildTools.exe.license /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DazedNConfused-/CDDA-Game-Launcher/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DazedNConfused-/CDDA-Game-Launcher/HEAD/.github/ISSUE_TEMPLATE/feature_request.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DazedNConfused-/CDDA-Game-Launcher/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/reuse.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DazedNConfused-/CDDA-Game-Launcher/HEAD/.github/workflows/reuse.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DazedNConfused-/CDDA-Game-Launcher/HEAD/.gitignore -------------------------------------------------------------------------------- /.reuse/dep5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DazedNConfused-/CDDA-Game-Launcher/HEAD/.reuse/dep5 -------------------------------------------------------------------------------- /.tx/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DazedNConfused-/CDDA-Game-Launcher/HEAD/.tx/config -------------------------------------------------------------------------------- /.tx/config.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2015-2021 Rémy Roy 2 | 3 | SPDX-License-Identifier: MIT -------------------------------------------------------------------------------- /BUILDING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DazedNConfused-/CDDA-Game-Launcher/HEAD/BUILDING.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DazedNConfused-/CDDA-Game-Launcher/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DazedNConfused-/CDDA-Game-Launcher/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DazedNConfused-/CDDA-Game-Launcher/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSES/CC-BY-SA-4.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DazedNConfused-/CDDA-Game-Launcher/HEAD/LICENSES/CC-BY-SA-4.0.txt -------------------------------------------------------------------------------- /LICENSES/CC0-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DazedNConfused-/CDDA-Game-Launcher/HEAD/LICENSES/CC0-1.0.txt -------------------------------------------------------------------------------- /LICENSES/LGPL-2.1-only.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DazedNConfused-/CDDA-Game-Launcher/HEAD/LICENSES/LGPL-2.1-only.txt -------------------------------------------------------------------------------- /LICENSES/LicenseRef-inno-setup.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DazedNConfused-/CDDA-Game-Launcher/HEAD/LICENSES/LicenseRef-inno-setup.txt -------------------------------------------------------------------------------- /LICENSES/LicenseRef-unrar.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DazedNConfused-/CDDA-Game-Launcher/HEAD/LICENSES/LicenseRef-unrar.txt -------------------------------------------------------------------------------- /LICENSES/LicenseRef-visual-cpp-build-tools.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DazedNConfused-/CDDA-Game-Launcher/HEAD/LICENSES/LicenseRef-visual-cpp-build-tools.txt -------------------------------------------------------------------------------- /LICENSES/MIT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DazedNConfused-/CDDA-Game-Launcher/HEAD/LICENSES/MIT.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DazedNConfused-/CDDA-Game-Launcher/HEAD/README.md -------------------------------------------------------------------------------- /alembicrepo/README: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2015-2021 Rémy Roy 2 | 3 | SPDX-License-Identifier: MIT 4 | 5 | Generic single-database configuration. 6 | -------------------------------------------------------------------------------- /alembicrepo/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DazedNConfused-/CDDA-Game-Launcher/HEAD/alembicrepo/env.py -------------------------------------------------------------------------------- /alembicrepo/script.py.mako: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DazedNConfused-/CDDA-Game-Launcher/HEAD/alembicrepo/script.py.mako -------------------------------------------------------------------------------- /alembicrepo/versions/0e35fff276f3_stable_versions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DazedNConfused-/CDDA-Game-Launcher/HEAD/alembicrepo/versions/0e35fff276f3_stable_versions.py -------------------------------------------------------------------------------- /alembicrepo/versions/402ce1583e3f_initial_config_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DazedNConfused-/CDDA-Game-Launcher/HEAD/alembicrepo/versions/402ce1583e3f_initial_config_model.py -------------------------------------------------------------------------------- /cddagl/VERSION: -------------------------------------------------------------------------------- 1 | 1.6.10 -------------------------------------------------------------------------------- /cddagl/VERSION.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2015-2021 Rémy Roy 2 | 3 | SPDX-License-Identifier: CC0-1.0 4 | -------------------------------------------------------------------------------- /cddagl/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DazedNConfused-/CDDA-Game-Launcher/HEAD/cddagl/__init__.py -------------------------------------------------------------------------------- /cddagl/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DazedNConfused-/CDDA-Game-Launcher/HEAD/cddagl/__main__.py -------------------------------------------------------------------------------- /cddagl/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DazedNConfused-/CDDA-Game-Launcher/HEAD/cddagl/constants.py -------------------------------------------------------------------------------- /cddagl/functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DazedNConfused-/CDDA-Game-Launcher/HEAD/cddagl/functions.py -------------------------------------------------------------------------------- /cddagl/i18n.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DazedNConfused-/CDDA-Game-Launcher/HEAD/cddagl/i18n.py -------------------------------------------------------------------------------- /cddagl/launcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DazedNConfused-/CDDA-Game-Launcher/HEAD/cddagl/launcher.py -------------------------------------------------------------------------------- /cddagl/locale/es/LC_MESSAGES/cddagl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DazedNConfused-/CDDA-Game-Launcher/HEAD/cddagl/locale/es/LC_MESSAGES/cddagl.po -------------------------------------------------------------------------------- /cddagl/locale/fr/LC_MESSAGES/cddagl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DazedNConfused-/CDDA-Game-Launcher/HEAD/cddagl/locale/fr/LC_MESSAGES/cddagl.po -------------------------------------------------------------------------------- /cddagl/locale/it/LC_MESSAGES/cddagl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DazedNConfused-/CDDA-Game-Launcher/HEAD/cddagl/locale/it/LC_MESSAGES/cddagl.po -------------------------------------------------------------------------------- /cddagl/locale/ja/LC_MESSAGES/cddagl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DazedNConfused-/CDDA-Game-Launcher/HEAD/cddagl/locale/ja/LC_MESSAGES/cddagl.po -------------------------------------------------------------------------------- /cddagl/locale/mapping.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DazedNConfused-/CDDA-Game-Launcher/HEAD/cddagl/locale/mapping.cfg -------------------------------------------------------------------------------- /cddagl/locale/mapping.cfg.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2015-2021 Rémy Roy 2 | 3 | SPDX-License-Identifier: MIT -------------------------------------------------------------------------------- /cddagl/locale/ru/LC_MESSAGES/cddagl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DazedNConfused-/CDDA-Game-Launcher/HEAD/cddagl/locale/ru/LC_MESSAGES/cddagl.po -------------------------------------------------------------------------------- /cddagl/resources/btc-qr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DazedNConfused-/CDDA-Game-Launcher/HEAD/cddagl/resources/btc-qr.png -------------------------------------------------------------------------------- /cddagl/resources/btc-qr.png.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2015-2021 Rémy Roy 2 | 3 | SPDX-License-Identifier: CC0-1.0 -------------------------------------------------------------------------------- /cddagl/resources/eth-qr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DazedNConfused-/CDDA-Game-Launcher/HEAD/cddagl/resources/eth-qr.png -------------------------------------------------------------------------------- /cddagl/resources/eth-qr.png.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2015-2021 Rémy Roy 2 | 3 | SPDX-License-Identifier: CC0-1.0 -------------------------------------------------------------------------------- /cddagl/resources/launcher.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DazedNConfused-/CDDA-Game-Launcher/HEAD/cddagl/resources/launcher.ico -------------------------------------------------------------------------------- /cddagl/resources/launcher.ico.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DazedNConfused-/CDDA-Game-Launcher/HEAD/cddagl/resources/launcher.ico.license -------------------------------------------------------------------------------- /cddagl/sql/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DazedNConfused-/CDDA-Game-Launcher/HEAD/cddagl/sql/__init__.py -------------------------------------------------------------------------------- /cddagl/sql/functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DazedNConfused-/CDDA-Game-Launcher/HEAD/cddagl/sql/functions.py -------------------------------------------------------------------------------- /cddagl/sql/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DazedNConfused-/CDDA-Game-Launcher/HEAD/cddagl/sql/model.py -------------------------------------------------------------------------------- /cddagl/ui/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DazedNConfused-/CDDA-Game-Launcher/HEAD/cddagl/ui/__init__.py -------------------------------------------------------------------------------- /cddagl/ui/views/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DazedNConfused-/CDDA-Game-Launcher/HEAD/cddagl/ui/views/__init__.py -------------------------------------------------------------------------------- /cddagl/ui/views/backups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DazedNConfused-/CDDA-Game-Launcher/HEAD/cddagl/ui/views/backups.py -------------------------------------------------------------------------------- /cddagl/ui/views/dialogs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DazedNConfused-/CDDA-Game-Launcher/HEAD/cddagl/ui/views/dialogs.py -------------------------------------------------------------------------------- /cddagl/ui/views/fonts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DazedNConfused-/CDDA-Game-Launcher/HEAD/cddagl/ui/views/fonts.py -------------------------------------------------------------------------------- /cddagl/ui/views/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DazedNConfused-/CDDA-Game-Launcher/HEAD/cddagl/ui/views/main.py -------------------------------------------------------------------------------- /cddagl/ui/views/mods.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DazedNConfused-/CDDA-Game-Launcher/HEAD/cddagl/ui/views/mods.py -------------------------------------------------------------------------------- /cddagl/ui/views/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DazedNConfused-/CDDA-Game-Launcher/HEAD/cddagl/ui/views/settings.py -------------------------------------------------------------------------------- /cddagl/ui/views/soundpacks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DazedNConfused-/CDDA-Game-Launcher/HEAD/cddagl/ui/views/soundpacks.py -------------------------------------------------------------------------------- /cddagl/ui/views/statistics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DazedNConfused-/CDDA-Game-Launcher/HEAD/cddagl/ui/views/statistics.py -------------------------------------------------------------------------------- /cddagl/ui/views/tabbed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DazedNConfused-/CDDA-Game-Launcher/HEAD/cddagl/ui/views/tabbed.py -------------------------------------------------------------------------------- /cddagl/ui/views/tilesets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DazedNConfused-/CDDA-Game-Launcher/HEAD/cddagl/ui/views/tilesets.py -------------------------------------------------------------------------------- /cddagl/win32.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DazedNConfused-/CDDA-Game-Launcher/HEAD/cddagl/win32.py -------------------------------------------------------------------------------- /data/mods.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DazedNConfused-/CDDA-Game-Launcher/HEAD/data/mods.json -------------------------------------------------------------------------------- /data/mods.json.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2015-2021 Rémy Roy 2 | 3 | SPDX-License-Identifier: MIT -------------------------------------------------------------------------------- /data/soundpacks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DazedNConfused-/CDDA-Game-Launcher/HEAD/data/soundpacks.json -------------------------------------------------------------------------------- /data/soundpacks.json.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2015-2021 Rémy Roy 2 | 3 | SPDX-License-Identifier: MIT -------------------------------------------------------------------------------- /launcher.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DazedNConfused-/CDDA-Game-Launcher/HEAD/launcher.iss -------------------------------------------------------------------------------- /launcher.iss.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2015-2021 Rémy Roy 2 | 3 | SPDX-License-Identifier: MIT -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DazedNConfused-/CDDA-Game-Launcher/HEAD/requirements-dev.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DazedNConfused-/CDDA-Game-Launcher/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DazedNConfused-/CDDA-Game-Launcher/HEAD/setup.py -------------------------------------------------------------------------------- /third-party/inno-setup/6.2.0/Compil32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DazedNConfused-/CDDA-Game-Launcher/HEAD/third-party/inno-setup/6.2.0/Compil32.exe -------------------------------------------------------------------------------- /third-party/inno-setup/6.2.0/Default.isl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DazedNConfused-/CDDA-Game-Launcher/HEAD/third-party/inno-setup/6.2.0/Default.isl -------------------------------------------------------------------------------- /third-party/inno-setup/6.2.0/Examples/64Bit.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DazedNConfused-/CDDA-Game-Launcher/HEAD/third-party/inno-setup/6.2.0/Examples/64Bit.iss -------------------------------------------------------------------------------- /third-party/inno-setup/6.2.0/Examples/64BitThreeArch.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DazedNConfused-/CDDA-Game-Launcher/HEAD/third-party/inno-setup/6.2.0/Examples/64BitThreeArch.iss -------------------------------------------------------------------------------- /third-party/inno-setup/6.2.0/Examples/64BitTwoArch.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DazedNConfused-/CDDA-Game-Launcher/HEAD/third-party/inno-setup/6.2.0/Examples/64BitTwoArch.iss -------------------------------------------------------------------------------- /third-party/inno-setup/6.2.0/Examples/AllPagesExample.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DazedNConfused-/CDDA-Game-Launcher/HEAD/third-party/inno-setup/6.2.0/Examples/AllPagesExample.iss -------------------------------------------------------------------------------- /third-party/inno-setup/6.2.0/Examples/CodeAutomation.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DazedNConfused-/CDDA-Game-Launcher/HEAD/third-party/inno-setup/6.2.0/Examples/CodeAutomation.iss -------------------------------------------------------------------------------- /third-party/inno-setup/6.2.0/Examples/CodeAutomation2.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DazedNConfused-/CDDA-Game-Launcher/HEAD/third-party/inno-setup/6.2.0/Examples/CodeAutomation2.iss -------------------------------------------------------------------------------- /third-party/inno-setup/6.2.0/Examples/CodeClasses.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DazedNConfused-/CDDA-Game-Launcher/HEAD/third-party/inno-setup/6.2.0/Examples/CodeClasses.iss -------------------------------------------------------------------------------- /third-party/inno-setup/6.2.0/Examples/CodeDlg.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DazedNConfused-/CDDA-Game-Launcher/HEAD/third-party/inno-setup/6.2.0/Examples/CodeDlg.iss -------------------------------------------------------------------------------- /third-party/inno-setup/6.2.0/Examples/CodeDll.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DazedNConfused-/CDDA-Game-Launcher/HEAD/third-party/inno-setup/6.2.0/Examples/CodeDll.iss -------------------------------------------------------------------------------- /third-party/inno-setup/6.2.0/Examples/CodeDownloadFiles.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DazedNConfused-/CDDA-Game-Launcher/HEAD/third-party/inno-setup/6.2.0/Examples/CodeDownloadFiles.iss -------------------------------------------------------------------------------- /third-party/inno-setup/6.2.0/Examples/CodeExample1.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DazedNConfused-/CDDA-Game-Launcher/HEAD/third-party/inno-setup/6.2.0/Examples/CodeExample1.iss -------------------------------------------------------------------------------- /third-party/inno-setup/6.2.0/Examples/CodePrepareToInstall.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DazedNConfused-/CDDA-Game-Launcher/HEAD/third-party/inno-setup/6.2.0/Examples/CodePrepareToInstall.iss -------------------------------------------------------------------------------- /third-party/inno-setup/6.2.0/Examples/Components.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DazedNConfused-/CDDA-Game-Launcher/HEAD/third-party/inno-setup/6.2.0/Examples/Components.iss -------------------------------------------------------------------------------- /third-party/inno-setup/6.2.0/Examples/Example1.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DazedNConfused-/CDDA-Game-Launcher/HEAD/third-party/inno-setup/6.2.0/Examples/Example1.iss -------------------------------------------------------------------------------- /third-party/inno-setup/6.2.0/Examples/Example2.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DazedNConfused-/CDDA-Game-Launcher/HEAD/third-party/inno-setup/6.2.0/Examples/Example2.iss -------------------------------------------------------------------------------- /third-party/inno-setup/6.2.0/Examples/Example3.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DazedNConfused-/CDDA-Game-Launcher/HEAD/third-party/inno-setup/6.2.0/Examples/Example3.iss -------------------------------------------------------------------------------- /third-party/inno-setup/6.2.0/Examples/ISPPExample1.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DazedNConfused-/CDDA-Game-Launcher/HEAD/third-party/inno-setup/6.2.0/Examples/ISPPExample1.iss -------------------------------------------------------------------------------- /third-party/inno-setup/6.2.0/Examples/ISPPExample1License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DazedNConfused-/CDDA-Game-Launcher/HEAD/third-party/inno-setup/6.2.0/Examples/ISPPExample1License.txt -------------------------------------------------------------------------------- /third-party/inno-setup/6.2.0/Examples/Languages.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DazedNConfused-/CDDA-Game-Launcher/HEAD/third-party/inno-setup/6.2.0/Examples/Languages.iss -------------------------------------------------------------------------------- /third-party/inno-setup/6.2.0/Examples/License.txt: -------------------------------------------------------------------------------- 1 | This is the LICENSE file for My Program. 2 | -------------------------------------------------------------------------------- /third-party/inno-setup/6.2.0/Examples/MyDll.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DazedNConfused-/CDDA-Game-Launcher/HEAD/third-party/inno-setup/6.2.0/Examples/MyDll.dll -------------------------------------------------------------------------------- /third-party/inno-setup/6.2.0/Examples/MyDll/C#/MyDll.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DazedNConfused-/CDDA-Game-Launcher/HEAD/third-party/inno-setup/6.2.0/Examples/MyDll/C#/MyDll.cs -------------------------------------------------------------------------------- /third-party/inno-setup/6.2.0/Examples/MyDll/C#/MyDll.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DazedNConfused-/CDDA-Game-Launcher/HEAD/third-party/inno-setup/6.2.0/Examples/MyDll/C#/MyDll.csproj -------------------------------------------------------------------------------- /third-party/inno-setup/6.2.0/Examples/MyDll/C#/MyDll.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DazedNConfused-/CDDA-Game-Launcher/HEAD/third-party/inno-setup/6.2.0/Examples/MyDll/C#/MyDll.sln -------------------------------------------------------------------------------- /third-party/inno-setup/6.2.0/Examples/MyDll/C#/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DazedNConfused-/CDDA-Game-Launcher/HEAD/third-party/inno-setup/6.2.0/Examples/MyDll/C#/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /third-party/inno-setup/6.2.0/Examples/MyDll/C#/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DazedNConfused-/CDDA-Game-Launcher/HEAD/third-party/inno-setup/6.2.0/Examples/MyDll/C#/packages.config -------------------------------------------------------------------------------- /third-party/inno-setup/6.2.0/Examples/MyDll/C/MyDll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DazedNConfused-/CDDA-Game-Launcher/HEAD/third-party/inno-setup/6.2.0/Examples/MyDll/C/MyDll.c -------------------------------------------------------------------------------- /third-party/inno-setup/6.2.0/Examples/MyDll/C/MyDll.def: -------------------------------------------------------------------------------- 1 | EXPORTS 2 | MyDllFunc -------------------------------------------------------------------------------- /third-party/inno-setup/6.2.0/Examples/MyDll/C/MyDll.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DazedNConfused-/CDDA-Game-Launcher/HEAD/third-party/inno-setup/6.2.0/Examples/MyDll/C/MyDll.dsp -------------------------------------------------------------------------------- /third-party/inno-setup/6.2.0/Examples/MyDll/Delphi/MyDll.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DazedNConfused-/CDDA-Game-Launcher/HEAD/third-party/inno-setup/6.2.0/Examples/MyDll/Delphi/MyDll.dpr -------------------------------------------------------------------------------- /third-party/inno-setup/6.2.0/Examples/MyProg-ARM64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DazedNConfused-/CDDA-Game-Launcher/HEAD/third-party/inno-setup/6.2.0/Examples/MyProg-ARM64.exe -------------------------------------------------------------------------------- /third-party/inno-setup/6.2.0/Examples/MyProg-x64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DazedNConfused-/CDDA-Game-Launcher/HEAD/third-party/inno-setup/6.2.0/Examples/MyProg-x64.exe -------------------------------------------------------------------------------- /third-party/inno-setup/6.2.0/Examples/MyProg.chm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DazedNConfused-/CDDA-Game-Launcher/HEAD/third-party/inno-setup/6.2.0/Examples/MyProg.chm -------------------------------------------------------------------------------- /third-party/inno-setup/6.2.0/Examples/MyProg.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DazedNConfused-/CDDA-Game-Launcher/HEAD/third-party/inno-setup/6.2.0/Examples/MyProg.exe -------------------------------------------------------------------------------- /third-party/inno-setup/6.2.0/Examples/Readme-Dutch.txt: -------------------------------------------------------------------------------- 1 | Dit is het Leesmij bestand voor My Program. -------------------------------------------------------------------------------- /third-party/inno-setup/6.2.0/Examples/Readme-German.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DazedNConfused-/CDDA-Game-Launcher/HEAD/third-party/inno-setup/6.2.0/Examples/Readme-German.txt -------------------------------------------------------------------------------- /third-party/inno-setup/6.2.0/Examples/Readme.txt: -------------------------------------------------------------------------------- 1 | This is the README file for My Program. 2 | -------------------------------------------------------------------------------- /third-party/inno-setup/6.2.0/Examples/UnicodeExample1.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DazedNConfused-/CDDA-Game-Launcher/HEAD/third-party/inno-setup/6.2.0/Examples/UnicodeExample1.iss -------------------------------------------------------------------------------- /third-party/inno-setup/6.2.0/Examples/UninstallCodeExample1.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DazedNConfused-/CDDA-Game-Launcher/HEAD/third-party/inno-setup/6.2.0/Examples/UninstallCodeExample1.iss -------------------------------------------------------------------------------- /third-party/inno-setup/6.2.0/ISCC.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DazedNConfused-/CDDA-Game-Launcher/HEAD/third-party/inno-setup/6.2.0/ISCC.exe -------------------------------------------------------------------------------- /third-party/inno-setup/6.2.0/ISCmplr.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DazedNConfused-/CDDA-Game-Launcher/HEAD/third-party/inno-setup/6.2.0/ISCmplr.dll -------------------------------------------------------------------------------- /third-party/inno-setup/6.2.0/ISPP.chm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DazedNConfused-/CDDA-Game-Launcher/HEAD/third-party/inno-setup/6.2.0/ISPP.chm -------------------------------------------------------------------------------- /third-party/inno-setup/6.2.0/ISPP.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DazedNConfused-/CDDA-Game-Launcher/HEAD/third-party/inno-setup/6.2.0/ISPP.dll -------------------------------------------------------------------------------- /third-party/inno-setup/6.2.0/ISPPBuiltins.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DazedNConfused-/CDDA-Game-Launcher/HEAD/third-party/inno-setup/6.2.0/ISPPBuiltins.iss -------------------------------------------------------------------------------- /third-party/inno-setup/6.2.0/ISetup.chm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DazedNConfused-/CDDA-Game-Launcher/HEAD/third-party/inno-setup/6.2.0/ISetup.chm -------------------------------------------------------------------------------- /third-party/inno-setup/6.2.0/Languages/Armenian.isl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DazedNConfused-/CDDA-Game-Launcher/HEAD/third-party/inno-setup/6.2.0/Languages/Armenian.isl -------------------------------------------------------------------------------- /third-party/inno-setup/6.2.0/Languages/BrazilianPortuguese.isl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DazedNConfused-/CDDA-Game-Launcher/HEAD/third-party/inno-setup/6.2.0/Languages/BrazilianPortuguese.isl -------------------------------------------------------------------------------- /third-party/inno-setup/6.2.0/Languages/Bulgarian.isl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DazedNConfused-/CDDA-Game-Launcher/HEAD/third-party/inno-setup/6.2.0/Languages/Bulgarian.isl -------------------------------------------------------------------------------- /third-party/inno-setup/6.2.0/Languages/Catalan.isl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DazedNConfused-/CDDA-Game-Launcher/HEAD/third-party/inno-setup/6.2.0/Languages/Catalan.isl -------------------------------------------------------------------------------- /third-party/inno-setup/6.2.0/Languages/Corsican.isl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DazedNConfused-/CDDA-Game-Launcher/HEAD/third-party/inno-setup/6.2.0/Languages/Corsican.isl -------------------------------------------------------------------------------- /third-party/inno-setup/6.2.0/Languages/Czech.isl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DazedNConfused-/CDDA-Game-Launcher/HEAD/third-party/inno-setup/6.2.0/Languages/Czech.isl -------------------------------------------------------------------------------- /third-party/inno-setup/6.2.0/Languages/Danish.isl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DazedNConfused-/CDDA-Game-Launcher/HEAD/third-party/inno-setup/6.2.0/Languages/Danish.isl -------------------------------------------------------------------------------- /third-party/inno-setup/6.2.0/Languages/Dutch.isl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DazedNConfused-/CDDA-Game-Launcher/HEAD/third-party/inno-setup/6.2.0/Languages/Dutch.isl -------------------------------------------------------------------------------- /third-party/inno-setup/6.2.0/Languages/Finnish.isl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DazedNConfused-/CDDA-Game-Launcher/HEAD/third-party/inno-setup/6.2.0/Languages/Finnish.isl -------------------------------------------------------------------------------- /third-party/inno-setup/6.2.0/Languages/French.isl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DazedNConfused-/CDDA-Game-Launcher/HEAD/third-party/inno-setup/6.2.0/Languages/French.isl -------------------------------------------------------------------------------- /third-party/inno-setup/6.2.0/Languages/German.isl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DazedNConfused-/CDDA-Game-Launcher/HEAD/third-party/inno-setup/6.2.0/Languages/German.isl -------------------------------------------------------------------------------- /third-party/inno-setup/6.2.0/Languages/Hebrew.isl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DazedNConfused-/CDDA-Game-Launcher/HEAD/third-party/inno-setup/6.2.0/Languages/Hebrew.isl -------------------------------------------------------------------------------- /third-party/inno-setup/6.2.0/Languages/Icelandic.isl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DazedNConfused-/CDDA-Game-Launcher/HEAD/third-party/inno-setup/6.2.0/Languages/Icelandic.isl -------------------------------------------------------------------------------- /third-party/inno-setup/6.2.0/Languages/Italian.isl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DazedNConfused-/CDDA-Game-Launcher/HEAD/third-party/inno-setup/6.2.0/Languages/Italian.isl -------------------------------------------------------------------------------- /third-party/inno-setup/6.2.0/Languages/Japanese.isl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DazedNConfused-/CDDA-Game-Launcher/HEAD/third-party/inno-setup/6.2.0/Languages/Japanese.isl -------------------------------------------------------------------------------- /third-party/inno-setup/6.2.0/Languages/Norwegian.isl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DazedNConfused-/CDDA-Game-Launcher/HEAD/third-party/inno-setup/6.2.0/Languages/Norwegian.isl -------------------------------------------------------------------------------- /third-party/inno-setup/6.2.0/Languages/Polish.isl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DazedNConfused-/CDDA-Game-Launcher/HEAD/third-party/inno-setup/6.2.0/Languages/Polish.isl -------------------------------------------------------------------------------- /third-party/inno-setup/6.2.0/Languages/Portuguese.isl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DazedNConfused-/CDDA-Game-Launcher/HEAD/third-party/inno-setup/6.2.0/Languages/Portuguese.isl -------------------------------------------------------------------------------- /third-party/inno-setup/6.2.0/Languages/Russian.isl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DazedNConfused-/CDDA-Game-Launcher/HEAD/third-party/inno-setup/6.2.0/Languages/Russian.isl -------------------------------------------------------------------------------- /third-party/inno-setup/6.2.0/Languages/Slovak.isl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DazedNConfused-/CDDA-Game-Launcher/HEAD/third-party/inno-setup/6.2.0/Languages/Slovak.isl -------------------------------------------------------------------------------- /third-party/inno-setup/6.2.0/Languages/Slovenian.isl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DazedNConfused-/CDDA-Game-Launcher/HEAD/third-party/inno-setup/6.2.0/Languages/Slovenian.isl -------------------------------------------------------------------------------- /third-party/inno-setup/6.2.0/Languages/Spanish.isl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DazedNConfused-/CDDA-Game-Launcher/HEAD/third-party/inno-setup/6.2.0/Languages/Spanish.isl -------------------------------------------------------------------------------- /third-party/inno-setup/6.2.0/Languages/Turkish.isl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DazedNConfused-/CDDA-Game-Launcher/HEAD/third-party/inno-setup/6.2.0/Languages/Turkish.isl -------------------------------------------------------------------------------- /third-party/inno-setup/6.2.0/Languages/Ukrainian.isl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DazedNConfused-/CDDA-Game-Launcher/HEAD/third-party/inno-setup/6.2.0/Languages/Ukrainian.isl -------------------------------------------------------------------------------- /third-party/inno-setup/6.2.0/Setup.e32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DazedNConfused-/CDDA-Game-Launcher/HEAD/third-party/inno-setup/6.2.0/Setup.e32 -------------------------------------------------------------------------------- /third-party/inno-setup/6.2.0/SetupClassicIcon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DazedNConfused-/CDDA-Game-Launcher/HEAD/third-party/inno-setup/6.2.0/SetupClassicIcon.ico -------------------------------------------------------------------------------- /third-party/inno-setup/6.2.0/SetupLdr.e32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DazedNConfused-/CDDA-Game-Launcher/HEAD/third-party/inno-setup/6.2.0/SetupLdr.e32 -------------------------------------------------------------------------------- /third-party/inno-setup/6.2.0/WizClassicImage-IS.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DazedNConfused-/CDDA-Game-Launcher/HEAD/third-party/inno-setup/6.2.0/WizClassicImage-IS.bmp -------------------------------------------------------------------------------- /third-party/inno-setup/6.2.0/WizClassicImage.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DazedNConfused-/CDDA-Game-Launcher/HEAD/third-party/inno-setup/6.2.0/WizClassicImage.bmp -------------------------------------------------------------------------------- /third-party/inno-setup/6.2.0/WizClassicSmallImage-IS.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DazedNConfused-/CDDA-Game-Launcher/HEAD/third-party/inno-setup/6.2.0/WizClassicSmallImage-IS.bmp -------------------------------------------------------------------------------- /third-party/inno-setup/6.2.0/WizClassicSmallImage.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DazedNConfused-/CDDA-Game-Launcher/HEAD/third-party/inno-setup/6.2.0/WizClassicSmallImage.bmp -------------------------------------------------------------------------------- /third-party/inno-setup/6.2.0/isbunzip.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DazedNConfused-/CDDA-Game-Launcher/HEAD/third-party/inno-setup/6.2.0/isbunzip.dll -------------------------------------------------------------------------------- /third-party/inno-setup/6.2.0/isbzip.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DazedNConfused-/CDDA-Game-Launcher/HEAD/third-party/inno-setup/6.2.0/isbzip.dll -------------------------------------------------------------------------------- /third-party/inno-setup/6.2.0/isfaq.url: -------------------------------------------------------------------------------- 1 | [InternetShortcut] 2 | URL=https://jrsoftware.org/isfaq.php 3 | -------------------------------------------------------------------------------- /third-party/inno-setup/6.2.0/islzma.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DazedNConfused-/CDDA-Game-Launcher/HEAD/third-party/inno-setup/6.2.0/islzma.dll -------------------------------------------------------------------------------- /third-party/inno-setup/6.2.0/islzma32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DazedNConfused-/CDDA-Game-Launcher/HEAD/third-party/inno-setup/6.2.0/islzma32.exe -------------------------------------------------------------------------------- /third-party/inno-setup/6.2.0/islzma64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DazedNConfused-/CDDA-Game-Launcher/HEAD/third-party/inno-setup/6.2.0/islzma64.exe -------------------------------------------------------------------------------- /third-party/inno-setup/6.2.0/isscint.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DazedNConfused-/CDDA-Game-Launcher/HEAD/third-party/inno-setup/6.2.0/isscint.dll -------------------------------------------------------------------------------- /third-party/inno-setup/6.2.0/isunzlib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DazedNConfused-/CDDA-Game-Launcher/HEAD/third-party/inno-setup/6.2.0/isunzlib.dll -------------------------------------------------------------------------------- /third-party/inno-setup/6.2.0/iszlib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DazedNConfused-/CDDA-Game-Launcher/HEAD/third-party/inno-setup/6.2.0/iszlib.dll -------------------------------------------------------------------------------- /third-party/inno-setup/6.2.0/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DazedNConfused-/CDDA-Game-Launcher/HEAD/third-party/inno-setup/6.2.0/license.txt -------------------------------------------------------------------------------- /third-party/inno-setup/6.2.0/unins000.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DazedNConfused-/CDDA-Game-Launcher/HEAD/third-party/inno-setup/6.2.0/unins000.dat -------------------------------------------------------------------------------- /third-party/inno-setup/6.2.0/unins000.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DazedNConfused-/CDDA-Game-Launcher/HEAD/third-party/inno-setup/6.2.0/unins000.exe -------------------------------------------------------------------------------- /third-party/inno-setup/6.2.0/unins000.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DazedNConfused-/CDDA-Game-Launcher/HEAD/third-party/inno-setup/6.2.0/unins000.msg -------------------------------------------------------------------------------- /third-party/inno-setup/6.2.0/whatsnew.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DazedNConfused-/CDDA-Game-Launcher/HEAD/third-party/inno-setup/6.2.0/whatsnew.htm -------------------------------------------------------------------------------- /third-party/pylzma/pylzma-0.5.0-cp39-cp39-win_amd64.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DazedNConfused-/CDDA-Game-Launcher/HEAD/third-party/pylzma/pylzma-0.5.0-cp39-cp39-win_amd64.whl -------------------------------------------------------------------------------- /third-party/pylzma/pylzma-0.5.0-cp39-cp39-win_amd64.whl.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DazedNConfused-/CDDA-Game-Launcher/HEAD/third-party/pylzma/pylzma-0.5.0-cp39-cp39-win_amd64.whl.license -------------------------------------------------------------------------------- /third-party/unrar-command-line-tool/UnRAR.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DazedNConfused-/CDDA-Game-Launcher/HEAD/third-party/unrar-command-line-tool/UnRAR.exe -------------------------------------------------------------------------------- /third-party/unrar-command-line-tool/UnRAR.exe.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DazedNConfused-/CDDA-Game-Launcher/HEAD/third-party/unrar-command-line-tool/UnRAR.exe.license -------------------------------------------------------------------------------- /third-party/unrar-command-line-tool/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DazedNConfused-/CDDA-Game-Launcher/HEAD/third-party/unrar-command-line-tool/license.txt -------------------------------------------------------------------------------- /third-party/unrar-command-line-tool/license.txt.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DazedNConfused-/CDDA-Game-Launcher/HEAD/third-party/unrar-command-line-tool/license.txt.license -------------------------------------------------------------------------------- /third-party/vs-build-tools/.vsconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DazedNConfused-/CDDA-Game-Launcher/HEAD/third-party/vs-build-tools/.vsconfig -------------------------------------------------------------------------------- /third-party/vs-build-tools/.vsconfig.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DazedNConfused-/CDDA-Game-Launcher/HEAD/third-party/vs-build-tools/.vsconfig.license -------------------------------------------------------------------------------- /third-party/vs-build-tools/vs_BuildTools.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DazedNConfused-/CDDA-Game-Launcher/HEAD/third-party/vs-build-tools/vs_BuildTools.exe -------------------------------------------------------------------------------- /third-party/vs-build-tools/vs_BuildTools.exe.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DazedNConfused-/CDDA-Game-Launcher/HEAD/third-party/vs-build-tools/vs_BuildTools.exe.license --------------------------------------------------------------------------------