├── .gitignore ├── .version ├── LICENSE ├── README.md ├── docs ├── Guide.md ├── Stellar-Program-Design.pdf └── documentation.txt ├── images └── stellar.png └── source ├── Stellar.sln └── Stellar ├── App.config ├── App.xaml ├── App.xaml.cs ├── Archiver.cs ├── Checklist.xaml ├── Checklist.xaml.cs ├── Configure.xaml ├── Configure.xaml.cs ├── Debugger.xaml ├── Debugger.xaml.cs ├── Download.cs ├── FailedImportWindow.xaml ├── FailedImportWindow.xaml.cs ├── Log.cs ├── MainViewModel.cs ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── Parse.cs ├── Paths.cs ├── Properties ├── AssemblyInfo.cs ├── Resources.Designer.cs ├── Resources.resx ├── Settings.Designer.cs ├── Settings.settings └── app.manifest ├── Queue.cs ├── Resources └── Images │ ├── Backgrounds │ ├── Chaos.jpg │ ├── Checklist.jpg │ ├── DarkGalaxy.jpg │ ├── DarkNebula.jpg │ ├── FlamingStar.jpg │ ├── Lagoon.jpg │ ├── MilkyWay.jpg │ ├── SolarFlare.jpg │ ├── SpiralGalaxy.jpg │ ├── SpiralNebula.jpg │ └── StarDust.jpg │ ├── Buttons │ ├── configuregear.png │ ├── folder.png │ ├── forums.png │ ├── info.png │ ├── libretro.png │ ├── revertarrow.png │ ├── web.png │ └── webdir.png │ └── Icons │ ├── checklist.ico │ ├── configure.ico │ └── logo.ico ├── Stellar.csproj ├── ThemeChaos.xaml ├── ThemeDarkGalaxy.xaml ├── ThemeDarkNebula.xaml ├── ThemeFlamingStar.xaml ├── ThemeLagoon.xaml ├── ThemeMilkyWay.xaml ├── ThemeSolarFlare.xaml ├── ThemeSpiralGalaxy.xaml ├── ThemeSpiralNebula.xaml ├── ThemeStarDust.xaml ├── ViewModelBase.cs ├── app.manifest └── logo.ico /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarUpdater/Stellar/HEAD/.gitignore -------------------------------------------------------------------------------- /.version: -------------------------------------------------------------------------------- 1 | 1.0.0.0-beta -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarUpdater/Stellar/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarUpdater/Stellar/HEAD/README.md -------------------------------------------------------------------------------- /docs/Guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarUpdater/Stellar/HEAD/docs/Guide.md -------------------------------------------------------------------------------- /docs/Stellar-Program-Design.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarUpdater/Stellar/HEAD/docs/Stellar-Program-Design.pdf -------------------------------------------------------------------------------- /docs/documentation.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarUpdater/Stellar/HEAD/docs/documentation.txt -------------------------------------------------------------------------------- /images/stellar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarUpdater/Stellar/HEAD/images/stellar.png -------------------------------------------------------------------------------- /source/Stellar.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarUpdater/Stellar/HEAD/source/Stellar.sln -------------------------------------------------------------------------------- /source/Stellar/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarUpdater/Stellar/HEAD/source/Stellar/App.config -------------------------------------------------------------------------------- /source/Stellar/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarUpdater/Stellar/HEAD/source/Stellar/App.xaml -------------------------------------------------------------------------------- /source/Stellar/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarUpdater/Stellar/HEAD/source/Stellar/App.xaml.cs -------------------------------------------------------------------------------- /source/Stellar/Archiver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarUpdater/Stellar/HEAD/source/Stellar/Archiver.cs -------------------------------------------------------------------------------- /source/Stellar/Checklist.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarUpdater/Stellar/HEAD/source/Stellar/Checklist.xaml -------------------------------------------------------------------------------- /source/Stellar/Checklist.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarUpdater/Stellar/HEAD/source/Stellar/Checklist.xaml.cs -------------------------------------------------------------------------------- /source/Stellar/Configure.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarUpdater/Stellar/HEAD/source/Stellar/Configure.xaml -------------------------------------------------------------------------------- /source/Stellar/Configure.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarUpdater/Stellar/HEAD/source/Stellar/Configure.xaml.cs -------------------------------------------------------------------------------- /source/Stellar/Debugger.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarUpdater/Stellar/HEAD/source/Stellar/Debugger.xaml -------------------------------------------------------------------------------- /source/Stellar/Debugger.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarUpdater/Stellar/HEAD/source/Stellar/Debugger.xaml.cs -------------------------------------------------------------------------------- /source/Stellar/Download.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarUpdater/Stellar/HEAD/source/Stellar/Download.cs -------------------------------------------------------------------------------- /source/Stellar/FailedImportWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarUpdater/Stellar/HEAD/source/Stellar/FailedImportWindow.xaml -------------------------------------------------------------------------------- /source/Stellar/FailedImportWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarUpdater/Stellar/HEAD/source/Stellar/FailedImportWindow.xaml.cs -------------------------------------------------------------------------------- /source/Stellar/Log.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarUpdater/Stellar/HEAD/source/Stellar/Log.cs -------------------------------------------------------------------------------- /source/Stellar/MainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarUpdater/Stellar/HEAD/source/Stellar/MainViewModel.cs -------------------------------------------------------------------------------- /source/Stellar/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarUpdater/Stellar/HEAD/source/Stellar/MainWindow.xaml -------------------------------------------------------------------------------- /source/Stellar/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarUpdater/Stellar/HEAD/source/Stellar/MainWindow.xaml.cs -------------------------------------------------------------------------------- /source/Stellar/Parse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarUpdater/Stellar/HEAD/source/Stellar/Parse.cs -------------------------------------------------------------------------------- /source/Stellar/Paths.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarUpdater/Stellar/HEAD/source/Stellar/Paths.cs -------------------------------------------------------------------------------- /source/Stellar/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarUpdater/Stellar/HEAD/source/Stellar/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /source/Stellar/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarUpdater/Stellar/HEAD/source/Stellar/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /source/Stellar/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarUpdater/Stellar/HEAD/source/Stellar/Properties/Resources.resx -------------------------------------------------------------------------------- /source/Stellar/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarUpdater/Stellar/HEAD/source/Stellar/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /source/Stellar/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarUpdater/Stellar/HEAD/source/Stellar/Properties/Settings.settings -------------------------------------------------------------------------------- /source/Stellar/Properties/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarUpdater/Stellar/HEAD/source/Stellar/Properties/app.manifest -------------------------------------------------------------------------------- /source/Stellar/Queue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarUpdater/Stellar/HEAD/source/Stellar/Queue.cs -------------------------------------------------------------------------------- /source/Stellar/Resources/Images/Backgrounds/Chaos.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarUpdater/Stellar/HEAD/source/Stellar/Resources/Images/Backgrounds/Chaos.jpg -------------------------------------------------------------------------------- /source/Stellar/Resources/Images/Backgrounds/Checklist.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarUpdater/Stellar/HEAD/source/Stellar/Resources/Images/Backgrounds/Checklist.jpg -------------------------------------------------------------------------------- /source/Stellar/Resources/Images/Backgrounds/DarkGalaxy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarUpdater/Stellar/HEAD/source/Stellar/Resources/Images/Backgrounds/DarkGalaxy.jpg -------------------------------------------------------------------------------- /source/Stellar/Resources/Images/Backgrounds/DarkNebula.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarUpdater/Stellar/HEAD/source/Stellar/Resources/Images/Backgrounds/DarkNebula.jpg -------------------------------------------------------------------------------- /source/Stellar/Resources/Images/Backgrounds/FlamingStar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarUpdater/Stellar/HEAD/source/Stellar/Resources/Images/Backgrounds/FlamingStar.jpg -------------------------------------------------------------------------------- /source/Stellar/Resources/Images/Backgrounds/Lagoon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarUpdater/Stellar/HEAD/source/Stellar/Resources/Images/Backgrounds/Lagoon.jpg -------------------------------------------------------------------------------- /source/Stellar/Resources/Images/Backgrounds/MilkyWay.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarUpdater/Stellar/HEAD/source/Stellar/Resources/Images/Backgrounds/MilkyWay.jpg -------------------------------------------------------------------------------- /source/Stellar/Resources/Images/Backgrounds/SolarFlare.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarUpdater/Stellar/HEAD/source/Stellar/Resources/Images/Backgrounds/SolarFlare.jpg -------------------------------------------------------------------------------- /source/Stellar/Resources/Images/Backgrounds/SpiralGalaxy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarUpdater/Stellar/HEAD/source/Stellar/Resources/Images/Backgrounds/SpiralGalaxy.jpg -------------------------------------------------------------------------------- /source/Stellar/Resources/Images/Backgrounds/SpiralNebula.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarUpdater/Stellar/HEAD/source/Stellar/Resources/Images/Backgrounds/SpiralNebula.jpg -------------------------------------------------------------------------------- /source/Stellar/Resources/Images/Backgrounds/StarDust.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarUpdater/Stellar/HEAD/source/Stellar/Resources/Images/Backgrounds/StarDust.jpg -------------------------------------------------------------------------------- /source/Stellar/Resources/Images/Buttons/configuregear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarUpdater/Stellar/HEAD/source/Stellar/Resources/Images/Buttons/configuregear.png -------------------------------------------------------------------------------- /source/Stellar/Resources/Images/Buttons/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarUpdater/Stellar/HEAD/source/Stellar/Resources/Images/Buttons/folder.png -------------------------------------------------------------------------------- /source/Stellar/Resources/Images/Buttons/forums.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarUpdater/Stellar/HEAD/source/Stellar/Resources/Images/Buttons/forums.png -------------------------------------------------------------------------------- /source/Stellar/Resources/Images/Buttons/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarUpdater/Stellar/HEAD/source/Stellar/Resources/Images/Buttons/info.png -------------------------------------------------------------------------------- /source/Stellar/Resources/Images/Buttons/libretro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarUpdater/Stellar/HEAD/source/Stellar/Resources/Images/Buttons/libretro.png -------------------------------------------------------------------------------- /source/Stellar/Resources/Images/Buttons/revertarrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarUpdater/Stellar/HEAD/source/Stellar/Resources/Images/Buttons/revertarrow.png -------------------------------------------------------------------------------- /source/Stellar/Resources/Images/Buttons/web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarUpdater/Stellar/HEAD/source/Stellar/Resources/Images/Buttons/web.png -------------------------------------------------------------------------------- /source/Stellar/Resources/Images/Buttons/webdir.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarUpdater/Stellar/HEAD/source/Stellar/Resources/Images/Buttons/webdir.png -------------------------------------------------------------------------------- /source/Stellar/Resources/Images/Icons/checklist.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarUpdater/Stellar/HEAD/source/Stellar/Resources/Images/Icons/checklist.ico -------------------------------------------------------------------------------- /source/Stellar/Resources/Images/Icons/configure.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarUpdater/Stellar/HEAD/source/Stellar/Resources/Images/Icons/configure.ico -------------------------------------------------------------------------------- /source/Stellar/Resources/Images/Icons/logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarUpdater/Stellar/HEAD/source/Stellar/Resources/Images/Icons/logo.ico -------------------------------------------------------------------------------- /source/Stellar/Stellar.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarUpdater/Stellar/HEAD/source/Stellar/Stellar.csproj -------------------------------------------------------------------------------- /source/Stellar/ThemeChaos.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarUpdater/Stellar/HEAD/source/Stellar/ThemeChaos.xaml -------------------------------------------------------------------------------- /source/Stellar/ThemeDarkGalaxy.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarUpdater/Stellar/HEAD/source/Stellar/ThemeDarkGalaxy.xaml -------------------------------------------------------------------------------- /source/Stellar/ThemeDarkNebula.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarUpdater/Stellar/HEAD/source/Stellar/ThemeDarkNebula.xaml -------------------------------------------------------------------------------- /source/Stellar/ThemeFlamingStar.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarUpdater/Stellar/HEAD/source/Stellar/ThemeFlamingStar.xaml -------------------------------------------------------------------------------- /source/Stellar/ThemeLagoon.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarUpdater/Stellar/HEAD/source/Stellar/ThemeLagoon.xaml -------------------------------------------------------------------------------- /source/Stellar/ThemeMilkyWay.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarUpdater/Stellar/HEAD/source/Stellar/ThemeMilkyWay.xaml -------------------------------------------------------------------------------- /source/Stellar/ThemeSolarFlare.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarUpdater/Stellar/HEAD/source/Stellar/ThemeSolarFlare.xaml -------------------------------------------------------------------------------- /source/Stellar/ThemeSpiralGalaxy.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarUpdater/Stellar/HEAD/source/Stellar/ThemeSpiralGalaxy.xaml -------------------------------------------------------------------------------- /source/Stellar/ThemeSpiralNebula.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarUpdater/Stellar/HEAD/source/Stellar/ThemeSpiralNebula.xaml -------------------------------------------------------------------------------- /source/Stellar/ThemeStarDust.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarUpdater/Stellar/HEAD/source/Stellar/ThemeStarDust.xaml -------------------------------------------------------------------------------- /source/Stellar/ViewModelBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarUpdater/Stellar/HEAD/source/Stellar/ViewModelBase.cs -------------------------------------------------------------------------------- /source/Stellar/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarUpdater/Stellar/HEAD/source/Stellar/app.manifest -------------------------------------------------------------------------------- /source/Stellar/logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarUpdater/Stellar/HEAD/source/Stellar/logo.ico --------------------------------------------------------------------------------