├── .gitattributes ├── .gitignore ├── Build for Linux.bat ├── DinoLauncher.sln ├── DinoLauncher ├── DinoLauncher.csproj ├── Info.plist ├── MacIcon.icns ├── MainForm.xeto ├── MainForm.xeto.cs ├── Program.cs ├── ResourceExtension.cs ├── ResourceReference.txt ├── _Resources │ ├── AppIcon │ │ ├── favicon.ico │ │ └── krystalicon.png │ ├── Audio │ │ └── Music.mp3 │ ├── Images │ │ ├── background.png │ │ ├── dinoplanet_logo.png │ │ ├── krystalicon.png │ │ └── unknown.png │ ├── Splash │ │ └── dinoplanet_logo_splash.png │ └── xdelta3.exe └── config.json ├── DinoLauncherLib ├── DinoLauncherLib.csproj ├── Extras.cs ├── FileIO.cs ├── Git.cs ├── Output.cs ├── UserPrefs.cs └── Xdelta3.cs ├── LICENSE └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabre230/DinoLauncher/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabre230/DinoLauncher/HEAD/.gitignore -------------------------------------------------------------------------------- /Build for Linux.bat: -------------------------------------------------------------------------------- 1 | dotnet publish -r linux-x64 --configuration release 2 | pause -------------------------------------------------------------------------------- /DinoLauncher.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabre230/DinoLauncher/HEAD/DinoLauncher.sln -------------------------------------------------------------------------------- /DinoLauncher/DinoLauncher.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabre230/DinoLauncher/HEAD/DinoLauncher/DinoLauncher.csproj -------------------------------------------------------------------------------- /DinoLauncher/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabre230/DinoLauncher/HEAD/DinoLauncher/Info.plist -------------------------------------------------------------------------------- /DinoLauncher/MacIcon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabre230/DinoLauncher/HEAD/DinoLauncher/MacIcon.icns -------------------------------------------------------------------------------- /DinoLauncher/MainForm.xeto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabre230/DinoLauncher/HEAD/DinoLauncher/MainForm.xeto -------------------------------------------------------------------------------- /DinoLauncher/MainForm.xeto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabre230/DinoLauncher/HEAD/DinoLauncher/MainForm.xeto.cs -------------------------------------------------------------------------------- /DinoLauncher/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabre230/DinoLauncher/HEAD/DinoLauncher/Program.cs -------------------------------------------------------------------------------- /DinoLauncher/ResourceExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabre230/DinoLauncher/HEAD/DinoLauncher/ResourceExtension.cs -------------------------------------------------------------------------------- /DinoLauncher/ResourceReference.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabre230/DinoLauncher/HEAD/DinoLauncher/ResourceReference.txt -------------------------------------------------------------------------------- /DinoLauncher/_Resources/AppIcon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabre230/DinoLauncher/HEAD/DinoLauncher/_Resources/AppIcon/favicon.ico -------------------------------------------------------------------------------- /DinoLauncher/_Resources/AppIcon/krystalicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabre230/DinoLauncher/HEAD/DinoLauncher/_Resources/AppIcon/krystalicon.png -------------------------------------------------------------------------------- /DinoLauncher/_Resources/Audio/Music.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabre230/DinoLauncher/HEAD/DinoLauncher/_Resources/Audio/Music.mp3 -------------------------------------------------------------------------------- /DinoLauncher/_Resources/Images/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabre230/DinoLauncher/HEAD/DinoLauncher/_Resources/Images/background.png -------------------------------------------------------------------------------- /DinoLauncher/_Resources/Images/dinoplanet_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabre230/DinoLauncher/HEAD/DinoLauncher/_Resources/Images/dinoplanet_logo.png -------------------------------------------------------------------------------- /DinoLauncher/_Resources/Images/krystalicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabre230/DinoLauncher/HEAD/DinoLauncher/_Resources/Images/krystalicon.png -------------------------------------------------------------------------------- /DinoLauncher/_Resources/Images/unknown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabre230/DinoLauncher/HEAD/DinoLauncher/_Resources/Images/unknown.png -------------------------------------------------------------------------------- /DinoLauncher/_Resources/Splash/dinoplanet_logo_splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabre230/DinoLauncher/HEAD/DinoLauncher/_Resources/Splash/dinoplanet_logo_splash.png -------------------------------------------------------------------------------- /DinoLauncher/_Resources/xdelta3.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabre230/DinoLauncher/HEAD/DinoLauncher/_Resources/xdelta3.exe -------------------------------------------------------------------------------- /DinoLauncher/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabre230/DinoLauncher/HEAD/DinoLauncher/config.json -------------------------------------------------------------------------------- /DinoLauncherLib/DinoLauncherLib.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabre230/DinoLauncher/HEAD/DinoLauncherLib/DinoLauncherLib.csproj -------------------------------------------------------------------------------- /DinoLauncherLib/Extras.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabre230/DinoLauncher/HEAD/DinoLauncherLib/Extras.cs -------------------------------------------------------------------------------- /DinoLauncherLib/FileIO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabre230/DinoLauncher/HEAD/DinoLauncherLib/FileIO.cs -------------------------------------------------------------------------------- /DinoLauncherLib/Git.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabre230/DinoLauncher/HEAD/DinoLauncherLib/Git.cs -------------------------------------------------------------------------------- /DinoLauncherLib/Output.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabre230/DinoLauncher/HEAD/DinoLauncherLib/Output.cs -------------------------------------------------------------------------------- /DinoLauncherLib/UserPrefs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabre230/DinoLauncher/HEAD/DinoLauncherLib/UserPrefs.cs -------------------------------------------------------------------------------- /DinoLauncherLib/Xdelta3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabre230/DinoLauncher/HEAD/DinoLauncherLib/Xdelta3.cs -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabre230/DinoLauncher/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabre230/DinoLauncher/HEAD/README.md --------------------------------------------------------------------------------