├── .gitignore ├── App.config ├── DownloadManager.cs ├── FileDownloadInfo.cs ├── FodyWeavers.xml ├── FodyWeavers.xsd ├── LICENSE ├── Logger.cs ├── MainWindow.Designer.cs ├── MainWindow.cs ├── MainWindow.resx ├── Program.cs ├── Properties ├── AssemblyInfo.cs ├── Resources.Designer.cs ├── Resources.resx ├── Settings.Designer.cs ├── Settings.settings └── app.manifest ├── README.md ├── Settings.cs ├── SettingsView.Designer.cs ├── SettingsView.cs ├── SettingsView.resx ├── Yuzu Updater.csproj ├── Yuzu Updater.sln ├── packages.config └── yuzu.ico /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinscove/Yuzu-Updater/HEAD/.gitignore -------------------------------------------------------------------------------- /App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinscove/Yuzu-Updater/HEAD/App.config -------------------------------------------------------------------------------- /DownloadManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinscove/Yuzu-Updater/HEAD/DownloadManager.cs -------------------------------------------------------------------------------- /FileDownloadInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinscove/Yuzu-Updater/HEAD/FileDownloadInfo.cs -------------------------------------------------------------------------------- /FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinscove/Yuzu-Updater/HEAD/FodyWeavers.xml -------------------------------------------------------------------------------- /FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinscove/Yuzu-Updater/HEAD/FodyWeavers.xsd -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinscove/Yuzu-Updater/HEAD/LICENSE -------------------------------------------------------------------------------- /Logger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinscove/Yuzu-Updater/HEAD/Logger.cs -------------------------------------------------------------------------------- /MainWindow.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinscove/Yuzu-Updater/HEAD/MainWindow.Designer.cs -------------------------------------------------------------------------------- /MainWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinscove/Yuzu-Updater/HEAD/MainWindow.cs -------------------------------------------------------------------------------- /MainWindow.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinscove/Yuzu-Updater/HEAD/MainWindow.resx -------------------------------------------------------------------------------- /Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinscove/Yuzu-Updater/HEAD/Program.cs -------------------------------------------------------------------------------- /Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinscove/Yuzu-Updater/HEAD/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinscove/Yuzu-Updater/HEAD/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinscove/Yuzu-Updater/HEAD/Properties/Resources.resx -------------------------------------------------------------------------------- /Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinscove/Yuzu-Updater/HEAD/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinscove/Yuzu-Updater/HEAD/Properties/Settings.settings -------------------------------------------------------------------------------- /Properties/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinscove/Yuzu-Updater/HEAD/Properties/app.manifest -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinscove/Yuzu-Updater/HEAD/README.md -------------------------------------------------------------------------------- /Settings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinscove/Yuzu-Updater/HEAD/Settings.cs -------------------------------------------------------------------------------- /SettingsView.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinscove/Yuzu-Updater/HEAD/SettingsView.Designer.cs -------------------------------------------------------------------------------- /SettingsView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinscove/Yuzu-Updater/HEAD/SettingsView.cs -------------------------------------------------------------------------------- /SettingsView.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinscove/Yuzu-Updater/HEAD/SettingsView.resx -------------------------------------------------------------------------------- /Yuzu Updater.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinscove/Yuzu-Updater/HEAD/Yuzu Updater.csproj -------------------------------------------------------------------------------- /Yuzu Updater.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinscove/Yuzu-Updater/HEAD/Yuzu Updater.sln -------------------------------------------------------------------------------- /packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinscove/Yuzu-Updater/HEAD/packages.config -------------------------------------------------------------------------------- /yuzu.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinscove/Yuzu-Updater/HEAD/yuzu.ico --------------------------------------------------------------------------------