├── .gitattributes ├── .gitignore ├── Accents └── Styles.axaml ├── App.axaml ├── App.axaml.cs ├── Assets ├── fileopen-black-x256.png ├── fileopen-black.svg ├── fileopen-white-x256.png ├── fileopen-white.svg ├── icon.ico ├── refresh-black-x256.png ├── refresh-black.svg ├── refresh-white-x256.png ├── refresh-white.svg ├── reset-black-x256.png └── reset-white-x256.png ├── Cursor_Installer_Creator.csproj ├── Cursor_Installer_Creator.sln ├── Data ├── CCursor.cs ├── CursorAssignment.cs └── Version.cs ├── Extensions └── GridExtensions.cs ├── LICENSE.txt ├── Program.cs ├── README.md ├── Resources ├── cursor-assignment.csv ├── preview-dark.png ├── preview-light-small.png ├── preview-light.png └── preview-social-media.png ├── Tools ├── Cursor-Installer.exe └── SetupIcon.ico ├── Utils ├── CursorHelper.cs └── GitHubUpdater.cs ├── Views ├── CursorInstallerMainView.axaml ├── CursorInstallerMainView.axaml.cs ├── CursorItemView.axaml ├── CursorItemView.axaml.cs ├── CursorListView.axaml ├── CursorListView.axaml.cs ├── MainView.axaml ├── MainView.axaml.cs ├── MainWindow.axaml ├── MainWindow.axaml.cs ├── UpdateNotifyView.axaml └── UpdateNotifyView.axaml.cs └── app.manifest /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Der-Floh/Cursor-Installer-Creator/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Der-Floh/Cursor-Installer-Creator/HEAD/.gitignore -------------------------------------------------------------------------------- /Accents/Styles.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Der-Floh/Cursor-Installer-Creator/HEAD/Accents/Styles.axaml -------------------------------------------------------------------------------- /App.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Der-Floh/Cursor-Installer-Creator/HEAD/App.axaml -------------------------------------------------------------------------------- /App.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Der-Floh/Cursor-Installer-Creator/HEAD/App.axaml.cs -------------------------------------------------------------------------------- /Assets/fileopen-black-x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Der-Floh/Cursor-Installer-Creator/HEAD/Assets/fileopen-black-x256.png -------------------------------------------------------------------------------- /Assets/fileopen-black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Der-Floh/Cursor-Installer-Creator/HEAD/Assets/fileopen-black.svg -------------------------------------------------------------------------------- /Assets/fileopen-white-x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Der-Floh/Cursor-Installer-Creator/HEAD/Assets/fileopen-white-x256.png -------------------------------------------------------------------------------- /Assets/fileopen-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Der-Floh/Cursor-Installer-Creator/HEAD/Assets/fileopen-white.svg -------------------------------------------------------------------------------- /Assets/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Der-Floh/Cursor-Installer-Creator/HEAD/Assets/icon.ico -------------------------------------------------------------------------------- /Assets/refresh-black-x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Der-Floh/Cursor-Installer-Creator/HEAD/Assets/refresh-black-x256.png -------------------------------------------------------------------------------- /Assets/refresh-black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Der-Floh/Cursor-Installer-Creator/HEAD/Assets/refresh-black.svg -------------------------------------------------------------------------------- /Assets/refresh-white-x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Der-Floh/Cursor-Installer-Creator/HEAD/Assets/refresh-white-x256.png -------------------------------------------------------------------------------- /Assets/refresh-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Der-Floh/Cursor-Installer-Creator/HEAD/Assets/refresh-white.svg -------------------------------------------------------------------------------- /Assets/reset-black-x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Der-Floh/Cursor-Installer-Creator/HEAD/Assets/reset-black-x256.png -------------------------------------------------------------------------------- /Assets/reset-white-x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Der-Floh/Cursor-Installer-Creator/HEAD/Assets/reset-white-x256.png -------------------------------------------------------------------------------- /Cursor_Installer_Creator.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Der-Floh/Cursor-Installer-Creator/HEAD/Cursor_Installer_Creator.csproj -------------------------------------------------------------------------------- /Cursor_Installer_Creator.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Der-Floh/Cursor-Installer-Creator/HEAD/Cursor_Installer_Creator.sln -------------------------------------------------------------------------------- /Data/CCursor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Der-Floh/Cursor-Installer-Creator/HEAD/Data/CCursor.cs -------------------------------------------------------------------------------- /Data/CursorAssignment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Der-Floh/Cursor-Installer-Creator/HEAD/Data/CursorAssignment.cs -------------------------------------------------------------------------------- /Data/Version.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Der-Floh/Cursor-Installer-Creator/HEAD/Data/Version.cs -------------------------------------------------------------------------------- /Extensions/GridExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Der-Floh/Cursor-Installer-Creator/HEAD/Extensions/GridExtensions.cs -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Der-Floh/Cursor-Installer-Creator/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Der-Floh/Cursor-Installer-Creator/HEAD/Program.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Der-Floh/Cursor-Installer-Creator/HEAD/README.md -------------------------------------------------------------------------------- /Resources/cursor-assignment.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Der-Floh/Cursor-Installer-Creator/HEAD/Resources/cursor-assignment.csv -------------------------------------------------------------------------------- /Resources/preview-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Der-Floh/Cursor-Installer-Creator/HEAD/Resources/preview-dark.png -------------------------------------------------------------------------------- /Resources/preview-light-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Der-Floh/Cursor-Installer-Creator/HEAD/Resources/preview-light-small.png -------------------------------------------------------------------------------- /Resources/preview-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Der-Floh/Cursor-Installer-Creator/HEAD/Resources/preview-light.png -------------------------------------------------------------------------------- /Resources/preview-social-media.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Der-Floh/Cursor-Installer-Creator/HEAD/Resources/preview-social-media.png -------------------------------------------------------------------------------- /Tools/Cursor-Installer.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Der-Floh/Cursor-Installer-Creator/HEAD/Tools/Cursor-Installer.exe -------------------------------------------------------------------------------- /Tools/SetupIcon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Der-Floh/Cursor-Installer-Creator/HEAD/Tools/SetupIcon.ico -------------------------------------------------------------------------------- /Utils/CursorHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Der-Floh/Cursor-Installer-Creator/HEAD/Utils/CursorHelper.cs -------------------------------------------------------------------------------- /Utils/GitHubUpdater.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Der-Floh/Cursor-Installer-Creator/HEAD/Utils/GitHubUpdater.cs -------------------------------------------------------------------------------- /Views/CursorInstallerMainView.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Der-Floh/Cursor-Installer-Creator/HEAD/Views/CursorInstallerMainView.axaml -------------------------------------------------------------------------------- /Views/CursorInstallerMainView.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Der-Floh/Cursor-Installer-Creator/HEAD/Views/CursorInstallerMainView.axaml.cs -------------------------------------------------------------------------------- /Views/CursorItemView.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Der-Floh/Cursor-Installer-Creator/HEAD/Views/CursorItemView.axaml -------------------------------------------------------------------------------- /Views/CursorItemView.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Der-Floh/Cursor-Installer-Creator/HEAD/Views/CursorItemView.axaml.cs -------------------------------------------------------------------------------- /Views/CursorListView.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Der-Floh/Cursor-Installer-Creator/HEAD/Views/CursorListView.axaml -------------------------------------------------------------------------------- /Views/CursorListView.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Der-Floh/Cursor-Installer-Creator/HEAD/Views/CursorListView.axaml.cs -------------------------------------------------------------------------------- /Views/MainView.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Der-Floh/Cursor-Installer-Creator/HEAD/Views/MainView.axaml -------------------------------------------------------------------------------- /Views/MainView.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Der-Floh/Cursor-Installer-Creator/HEAD/Views/MainView.axaml.cs -------------------------------------------------------------------------------- /Views/MainWindow.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Der-Floh/Cursor-Installer-Creator/HEAD/Views/MainWindow.axaml -------------------------------------------------------------------------------- /Views/MainWindow.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Der-Floh/Cursor-Installer-Creator/HEAD/Views/MainWindow.axaml.cs -------------------------------------------------------------------------------- /Views/UpdateNotifyView.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Der-Floh/Cursor-Installer-Creator/HEAD/Views/UpdateNotifyView.axaml -------------------------------------------------------------------------------- /Views/UpdateNotifyView.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Der-Floh/Cursor-Installer-Creator/HEAD/Views/UpdateNotifyView.axaml.cs -------------------------------------------------------------------------------- /app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Der-Floh/Cursor-Installer-Creator/HEAD/app.manifest --------------------------------------------------------------------------------