├── .appends └── .github │ └── labels.yml ├── .gitattributes ├── .github ├── labels.yml ├── stale.yml └── workflows │ ├── pause-community-contributions.yml │ └── sync-labels.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── CSharp ├── App.config ├── Exercism Windows Installer.csproj ├── Exercism Windows Installer.sln ├── ExercismWinSetup.csproj ├── FodyWeavers.xml ├── InstallLocation.Designer.cs ├── InstallLocation.cs ├── InstallLocation.resx ├── MainForm.Designer.cs ├── MainForm.cs ├── MainForm.resx ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ ├── Settings.settings │ └── Settings1.Designer.cs ├── Resources │ ├── Client Download.png │ ├── Configure API.png │ ├── Install Location.png │ ├── License Agreement.png │ ├── exercism.ico │ └── exercism.png ├── app.manifest ├── clientDownload.Designer.cs ├── clientDownload.cs ├── clientDownload.resx ├── configureAPI.Designer.cs ├── configureAPI.cs ├── configureAPI.resx ├── exercism.ico ├── exercism.png └── packages.config ├── Delphi ├── Project │ ├── ExercismCLIInstaller.dpr │ ├── ExercismCLIInstaller.dproj │ ├── ExercismCLIInstaller_Icon1.ico │ ├── Source │ │ ├── uBuiltWithFrm.dfm │ │ ├── uBuiltWithFrm.pas │ │ ├── uClientDownloadFrm.dfm │ │ ├── uClientDownloadFrm.pas │ │ ├── uConfigApiFrm.dfm │ │ ├── uConfigApiFrm.pas │ │ ├── uInstallLocationFrm.dfm │ │ ├── uInstallLocationFrm.pas │ │ ├── uMainFrm.dfm │ │ ├── uMainFrm.pas │ │ ├── uTypes.pas │ │ └── uUpdatePath.pas │ ├── icon.ico │ └── img │ │ ├── Built_with_Delphi.png │ │ ├── ExercismCLIInstaller_Icon.ico │ │ ├── Teal.png │ │ ├── icon.bmp │ │ ├── icon.ico │ │ ├── icon.png │ │ └── seafoamgreen.png └── ScreenGrabs │ ├── Image1.jpg │ ├── Image2.jpg │ ├── Image3.jpg │ ├── Image4.jpg │ ├── Image5.jpg │ ├── Image6.jpg │ ├── Image7.jpg │ └── readme.md ├── LICENSE ├── README.md ├── Resources ├── exercism.ico └── exercism.png └── img ├── browse.png ├── installFinish.png └── installLocation.png /.appends/.github/labels.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/windows-installer/HEAD/.appends/.github/labels.yml -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/windows-installer/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/labels.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/windows-installer/HEAD/.github/labels.yml -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.github/workflows/pause-community-contributions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/windows-installer/HEAD/.github/workflows/pause-community-contributions.yml -------------------------------------------------------------------------------- /.github/workflows/sync-labels.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/windows-installer/HEAD/.github/workflows/sync-labels.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/windows-installer/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/windows-installer/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/windows-installer/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /CSharp/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/windows-installer/HEAD/CSharp/App.config -------------------------------------------------------------------------------- /CSharp/Exercism Windows Installer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/windows-installer/HEAD/CSharp/Exercism Windows Installer.csproj -------------------------------------------------------------------------------- /CSharp/Exercism Windows Installer.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/windows-installer/HEAD/CSharp/Exercism Windows Installer.sln -------------------------------------------------------------------------------- /CSharp/ExercismWinSetup.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/windows-installer/HEAD/CSharp/ExercismWinSetup.csproj -------------------------------------------------------------------------------- /CSharp/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/windows-installer/HEAD/CSharp/FodyWeavers.xml -------------------------------------------------------------------------------- /CSharp/InstallLocation.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/windows-installer/HEAD/CSharp/InstallLocation.Designer.cs -------------------------------------------------------------------------------- /CSharp/InstallLocation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/windows-installer/HEAD/CSharp/InstallLocation.cs -------------------------------------------------------------------------------- /CSharp/InstallLocation.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/windows-installer/HEAD/CSharp/InstallLocation.resx -------------------------------------------------------------------------------- /CSharp/MainForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/windows-installer/HEAD/CSharp/MainForm.Designer.cs -------------------------------------------------------------------------------- /CSharp/MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/windows-installer/HEAD/CSharp/MainForm.cs -------------------------------------------------------------------------------- /CSharp/MainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/windows-installer/HEAD/CSharp/MainForm.resx -------------------------------------------------------------------------------- /CSharp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/windows-installer/HEAD/CSharp/Program.cs -------------------------------------------------------------------------------- /CSharp/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/windows-installer/HEAD/CSharp/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CSharp/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/windows-installer/HEAD/CSharp/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /CSharp/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/windows-installer/HEAD/CSharp/Properties/Resources.resx -------------------------------------------------------------------------------- /CSharp/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/windows-installer/HEAD/CSharp/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /CSharp/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/windows-installer/HEAD/CSharp/Properties/Settings.settings -------------------------------------------------------------------------------- /CSharp/Properties/Settings1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/windows-installer/HEAD/CSharp/Properties/Settings1.Designer.cs -------------------------------------------------------------------------------- /CSharp/Resources/Client Download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/windows-installer/HEAD/CSharp/Resources/Client Download.png -------------------------------------------------------------------------------- /CSharp/Resources/Configure API.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/windows-installer/HEAD/CSharp/Resources/Configure API.png -------------------------------------------------------------------------------- /CSharp/Resources/Install Location.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/windows-installer/HEAD/CSharp/Resources/Install Location.png -------------------------------------------------------------------------------- /CSharp/Resources/License Agreement.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/windows-installer/HEAD/CSharp/Resources/License Agreement.png -------------------------------------------------------------------------------- /CSharp/Resources/exercism.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/windows-installer/HEAD/CSharp/Resources/exercism.ico -------------------------------------------------------------------------------- /CSharp/Resources/exercism.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/windows-installer/HEAD/CSharp/Resources/exercism.png -------------------------------------------------------------------------------- /CSharp/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/windows-installer/HEAD/CSharp/app.manifest -------------------------------------------------------------------------------- /CSharp/clientDownload.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/windows-installer/HEAD/CSharp/clientDownload.Designer.cs -------------------------------------------------------------------------------- /CSharp/clientDownload.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/windows-installer/HEAD/CSharp/clientDownload.cs -------------------------------------------------------------------------------- /CSharp/clientDownload.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/windows-installer/HEAD/CSharp/clientDownload.resx -------------------------------------------------------------------------------- /CSharp/configureAPI.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/windows-installer/HEAD/CSharp/configureAPI.Designer.cs -------------------------------------------------------------------------------- /CSharp/configureAPI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/windows-installer/HEAD/CSharp/configureAPI.cs -------------------------------------------------------------------------------- /CSharp/configureAPI.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/windows-installer/HEAD/CSharp/configureAPI.resx -------------------------------------------------------------------------------- /CSharp/exercism.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/windows-installer/HEAD/CSharp/exercism.ico -------------------------------------------------------------------------------- /CSharp/exercism.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/windows-installer/HEAD/CSharp/exercism.png -------------------------------------------------------------------------------- /CSharp/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/windows-installer/HEAD/CSharp/packages.config -------------------------------------------------------------------------------- /Delphi/Project/ExercismCLIInstaller.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/windows-installer/HEAD/Delphi/Project/ExercismCLIInstaller.dpr -------------------------------------------------------------------------------- /Delphi/Project/ExercismCLIInstaller.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/windows-installer/HEAD/Delphi/Project/ExercismCLIInstaller.dproj -------------------------------------------------------------------------------- /Delphi/Project/ExercismCLIInstaller_Icon1.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/windows-installer/HEAD/Delphi/Project/ExercismCLIInstaller_Icon1.ico -------------------------------------------------------------------------------- /Delphi/Project/Source/uBuiltWithFrm.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/windows-installer/HEAD/Delphi/Project/Source/uBuiltWithFrm.dfm -------------------------------------------------------------------------------- /Delphi/Project/Source/uBuiltWithFrm.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/windows-installer/HEAD/Delphi/Project/Source/uBuiltWithFrm.pas -------------------------------------------------------------------------------- /Delphi/Project/Source/uClientDownloadFrm.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/windows-installer/HEAD/Delphi/Project/Source/uClientDownloadFrm.dfm -------------------------------------------------------------------------------- /Delphi/Project/Source/uClientDownloadFrm.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/windows-installer/HEAD/Delphi/Project/Source/uClientDownloadFrm.pas -------------------------------------------------------------------------------- /Delphi/Project/Source/uConfigApiFrm.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/windows-installer/HEAD/Delphi/Project/Source/uConfigApiFrm.dfm -------------------------------------------------------------------------------- /Delphi/Project/Source/uConfigApiFrm.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/windows-installer/HEAD/Delphi/Project/Source/uConfigApiFrm.pas -------------------------------------------------------------------------------- /Delphi/Project/Source/uInstallLocationFrm.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/windows-installer/HEAD/Delphi/Project/Source/uInstallLocationFrm.dfm -------------------------------------------------------------------------------- /Delphi/Project/Source/uInstallLocationFrm.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/windows-installer/HEAD/Delphi/Project/Source/uInstallLocationFrm.pas -------------------------------------------------------------------------------- /Delphi/Project/Source/uMainFrm.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/windows-installer/HEAD/Delphi/Project/Source/uMainFrm.dfm -------------------------------------------------------------------------------- /Delphi/Project/Source/uMainFrm.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/windows-installer/HEAD/Delphi/Project/Source/uMainFrm.pas -------------------------------------------------------------------------------- /Delphi/Project/Source/uTypes.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/windows-installer/HEAD/Delphi/Project/Source/uTypes.pas -------------------------------------------------------------------------------- /Delphi/Project/Source/uUpdatePath.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/windows-installer/HEAD/Delphi/Project/Source/uUpdatePath.pas -------------------------------------------------------------------------------- /Delphi/Project/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/windows-installer/HEAD/Delphi/Project/icon.ico -------------------------------------------------------------------------------- /Delphi/Project/img/Built_with_Delphi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/windows-installer/HEAD/Delphi/Project/img/Built_with_Delphi.png -------------------------------------------------------------------------------- /Delphi/Project/img/ExercismCLIInstaller_Icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/windows-installer/HEAD/Delphi/Project/img/ExercismCLIInstaller_Icon.ico -------------------------------------------------------------------------------- /Delphi/Project/img/Teal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/windows-installer/HEAD/Delphi/Project/img/Teal.png -------------------------------------------------------------------------------- /Delphi/Project/img/icon.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/windows-installer/HEAD/Delphi/Project/img/icon.bmp -------------------------------------------------------------------------------- /Delphi/Project/img/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/windows-installer/HEAD/Delphi/Project/img/icon.ico -------------------------------------------------------------------------------- /Delphi/Project/img/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/windows-installer/HEAD/Delphi/Project/img/icon.png -------------------------------------------------------------------------------- /Delphi/Project/img/seafoamgreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/windows-installer/HEAD/Delphi/Project/img/seafoamgreen.png -------------------------------------------------------------------------------- /Delphi/ScreenGrabs/Image1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/windows-installer/HEAD/Delphi/ScreenGrabs/Image1.jpg -------------------------------------------------------------------------------- /Delphi/ScreenGrabs/Image2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/windows-installer/HEAD/Delphi/ScreenGrabs/Image2.jpg -------------------------------------------------------------------------------- /Delphi/ScreenGrabs/Image3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/windows-installer/HEAD/Delphi/ScreenGrabs/Image3.jpg -------------------------------------------------------------------------------- /Delphi/ScreenGrabs/Image4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/windows-installer/HEAD/Delphi/ScreenGrabs/Image4.jpg -------------------------------------------------------------------------------- /Delphi/ScreenGrabs/Image5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/windows-installer/HEAD/Delphi/ScreenGrabs/Image5.jpg -------------------------------------------------------------------------------- /Delphi/ScreenGrabs/Image6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/windows-installer/HEAD/Delphi/ScreenGrabs/Image6.jpg -------------------------------------------------------------------------------- /Delphi/ScreenGrabs/Image7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/windows-installer/HEAD/Delphi/ScreenGrabs/Image7.jpg -------------------------------------------------------------------------------- /Delphi/ScreenGrabs/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/windows-installer/HEAD/Delphi/ScreenGrabs/readme.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/windows-installer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/windows-installer/HEAD/README.md -------------------------------------------------------------------------------- /Resources/exercism.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/windows-installer/HEAD/Resources/exercism.ico -------------------------------------------------------------------------------- /Resources/exercism.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/windows-installer/HEAD/Resources/exercism.png -------------------------------------------------------------------------------- /img/browse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/windows-installer/HEAD/img/browse.png -------------------------------------------------------------------------------- /img/installFinish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/windows-installer/HEAD/img/installFinish.png -------------------------------------------------------------------------------- /img/installLocation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/windows-installer/HEAD/img/installLocation.png --------------------------------------------------------------------------------