├── .gitattributes ├── .gitignore ├── 1.ico ├── App.config ├── Form1.Designer.cs ├── Form1.cs ├── Form1.resx ├── Form2.Designer.cs ├── Form2.cs ├── Form2.resx ├── Helper.cs ├── LICENSE ├── Program.cs ├── Properties ├── AssemblyInfo.cs ├── Resources.Designer.cs ├── Resources.resx ├── Settings.Designer.cs └── Settings.settings ├── README.md ├── XeniaUpdater-main-pre-rewrite.zip ├── XeniaUpdater.csproj ├── XeniaUpdater.csproj.user ├── XeniaUpdater.sln ├── bin ├── Debug │ ├── XeniaUpdater.exe │ ├── XeniaUpdater.exe.config │ └── XeniaUpdater.pdb └── Release │ ├── XeniaUpdater.exe │ ├── XeniaUpdater.exe.config │ ├── XeniaUpdater.pdb │ └── XeniaUpdaterLog.txt ├── version-Debug.txt └── version-Release.txt /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chopper1337/XeniaUpdater/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chopper1337/XeniaUpdater/HEAD/.gitignore -------------------------------------------------------------------------------- /1.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chopper1337/XeniaUpdater/HEAD/1.ico -------------------------------------------------------------------------------- /App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chopper1337/XeniaUpdater/HEAD/App.config -------------------------------------------------------------------------------- /Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chopper1337/XeniaUpdater/HEAD/Form1.Designer.cs -------------------------------------------------------------------------------- /Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chopper1337/XeniaUpdater/HEAD/Form1.cs -------------------------------------------------------------------------------- /Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chopper1337/XeniaUpdater/HEAD/Form1.resx -------------------------------------------------------------------------------- /Form2.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chopper1337/XeniaUpdater/HEAD/Form2.Designer.cs -------------------------------------------------------------------------------- /Form2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chopper1337/XeniaUpdater/HEAD/Form2.cs -------------------------------------------------------------------------------- /Form2.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chopper1337/XeniaUpdater/HEAD/Form2.resx -------------------------------------------------------------------------------- /Helper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chopper1337/XeniaUpdater/HEAD/Helper.cs -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chopper1337/XeniaUpdater/HEAD/LICENSE -------------------------------------------------------------------------------- /Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chopper1337/XeniaUpdater/HEAD/Program.cs -------------------------------------------------------------------------------- /Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chopper1337/XeniaUpdater/HEAD/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chopper1337/XeniaUpdater/HEAD/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chopper1337/XeniaUpdater/HEAD/Properties/Resources.resx -------------------------------------------------------------------------------- /Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chopper1337/XeniaUpdater/HEAD/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chopper1337/XeniaUpdater/HEAD/Properties/Settings.settings -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chopper1337/XeniaUpdater/HEAD/README.md -------------------------------------------------------------------------------- /XeniaUpdater-main-pre-rewrite.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chopper1337/XeniaUpdater/HEAD/XeniaUpdater-main-pre-rewrite.zip -------------------------------------------------------------------------------- /XeniaUpdater.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chopper1337/XeniaUpdater/HEAD/XeniaUpdater.csproj -------------------------------------------------------------------------------- /XeniaUpdater.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chopper1337/XeniaUpdater/HEAD/XeniaUpdater.csproj.user -------------------------------------------------------------------------------- /XeniaUpdater.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chopper1337/XeniaUpdater/HEAD/XeniaUpdater.sln -------------------------------------------------------------------------------- /bin/Debug/XeniaUpdater.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chopper1337/XeniaUpdater/HEAD/bin/Debug/XeniaUpdater.exe -------------------------------------------------------------------------------- /bin/Debug/XeniaUpdater.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chopper1337/XeniaUpdater/HEAD/bin/Debug/XeniaUpdater.exe.config -------------------------------------------------------------------------------- /bin/Debug/XeniaUpdater.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chopper1337/XeniaUpdater/HEAD/bin/Debug/XeniaUpdater.pdb -------------------------------------------------------------------------------- /bin/Release/XeniaUpdater.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chopper1337/XeniaUpdater/HEAD/bin/Release/XeniaUpdater.exe -------------------------------------------------------------------------------- /bin/Release/XeniaUpdater.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chopper1337/XeniaUpdater/HEAD/bin/Release/XeniaUpdater.exe.config -------------------------------------------------------------------------------- /bin/Release/XeniaUpdater.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chopper1337/XeniaUpdater/HEAD/bin/Release/XeniaUpdater.pdb -------------------------------------------------------------------------------- /bin/Release/XeniaUpdaterLog.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /version-Debug.txt: -------------------------------------------------------------------------------- 1 | Build date: 10/03/2023 1820 GMT 2 | -------------------------------------------------------------------------------- /version-Release.txt: -------------------------------------------------------------------------------- 1 | Build date: 10/03/2023 1820 GMT 2 | --------------------------------------------------------------------------------