├── .github └── workflows │ ├── dotnet-build-normal.yml │ └── dotnet-build-publish.yml ├── .gitignore ├── .gitmodules ├── LICENSE ├── Notes.md ├── README.md ├── Screenshots ├── 01-Main.PNG ├── 02-Screens.PNG └── 03-Characters.PNG ├── TODO.md ├── setup ├── MIT-License.txt ├── Metrics-Warning.txt ├── VnManagerSetup.iss ├── netcorecheck.exe ├── netcorecheck_x64.exe └── vnmgrlogo.ico └── src ├── .sonarlint ├── VnManager.slconfig ├── micah686_vnmanager │ └── CSharp │ │ └── SonarLint.xml └── micah686_vnmanagercsharp.ruleset ├── Directory.Build.props ├── Nuget.config ├── VnManager.sln └── VnManager ├── App.xaml ├── App.xaml.cs ├── AssemblyInfo.cs ├── Bootstrapper.cs ├── Converters ├── BooleanAndConverter.cs ├── CsvConverter.cs ├── DataGridRowIdConverter.cs ├── EnumToBooleanConverter.cs ├── IntToStringConverter.cs ├── InverseBoolConverter.cs ├── InverseVisibilityConverter.cs └── SimpleDateConverter.cs ├── Events ├── EventChannels.cs └── UpdateEvent.cs ├── Extensions ├── EnumBindingSourceExtension.cs ├── FocusExtension.cs ├── MouseObserver.cs ├── PasswordHelper.cs ├── ProcessExtensions.cs ├── TextBlockInLineBinding.cs ├── TextBoxExtensions.cs └── ValidationBase.cs ├── FodyWeavers.xml ├── FodyWeavers.xsd ├── Helpers ├── BBCodeHelper.cs ├── CheckWriteAccess.cs ├── FileDialogHelper.cs ├── GaussianBlur.cs ├── ImageHelper.cs ├── ImportExportHelper.cs ├── MeasureStringSize.cs ├── NormalizeWhiteSpace.cs ├── NsfwHelper.cs ├── Secure.cs ├── SentryHelper.cs ├── Stringable.cs ├── TimeDateChanger.cs ├── UserSettingsHelper.cs ├── ValidateFiles.cs ├── ValidationHelpers.cs └── Vndb │ ├── HandleVndbErrors.cs │ ├── VndbAddGameHelper.cs │ ├── VndbConnectionTest.cs │ ├── VndbDataHelper.cs │ └── VndbTagTraitHelper.cs ├── Initializers ├── PreStartupCheck.cs └── Startup.cs ├── MetadataProviders └── Vndb │ ├── DownloadVndbContent.cs │ ├── GetVndbData.cs │ └── SaveVnDataToDb.cs ├── Models ├── Db │ ├── DbTableNames.cs │ ├── User │ │ ├── UserDataCategories.cs │ │ └── UserDataGames.cs │ └── Vndb │ │ ├── Character │ │ ├── VnCharacterInfo.cs │ │ └── VnCharacterTraits.cs │ │ ├── Main │ │ ├── VnInfo.cs │ │ ├── VnInfoLinks.cs │ │ ├── VnInfoRelations.cs │ │ ├── VnInfoScreens.cs │ │ └── VnInfoTags.cs │ │ └── TagTrait │ │ ├── VnTagData.cs │ │ └── VnTraitData.cs ├── Settings │ └── UserSettings.cs └── WikiData.cs ├── NavigationController.cs ├── Resources ├── Placeholders │ └── empty_bitmap.png ├── flags │ ├── AR.png │ ├── BG.png │ ├── CS.png │ ├── DA.png │ ├── DE.png │ ├── EL.png │ ├── EN.png │ ├── ES.png │ ├── FI.png │ ├── FR.png │ ├── GD.png │ ├── HE.png │ ├── HR.png │ ├── HU.png │ ├── ID.png │ ├── IT.png │ ├── JA.png │ ├── KO.png │ ├── LICENSE.txt │ ├── LT.png │ ├── LV.png │ ├── MK.png │ ├── MS.png │ ├── NL.png │ ├── NO.png │ ├── PL.png │ ├── PT-BR.png │ ├── PT-PT.png │ ├── RO.png │ ├── RU.png │ ├── SK.png │ ├── SL.png │ ├── SV.png │ ├── TA.png │ ├── TH.png │ ├── TR.png │ ├── UA.png │ ├── Unknown.png │ ├── VI.png │ └── ZH.png └── icon │ ├── FontLicense.txt │ ├── VnMgrLogo.png │ └── vnmgrlogo.ico ├── Strings ├── Resources.Designer.cs ├── Resources.ja-JP.resx └── Resources.resx ├── Styles └── Listbox │ └── NoHighlight.xaml ├── Utilities ├── FluentModelValidator.cs ├── LogManager.cs └── SerilogFormatter.cs ├── ViewModels ├── Controls │ ├── CustomMsgBoxViewModel.cs │ └── GameCardViewModel.cs ├── Dialogs │ ├── AboutViewModel.cs │ ├── AddGameMultiViewModel.cs │ ├── AddGameSources │ │ ├── AddGameMainViewModel.cs │ │ ├── AddGameNoSourceViewModel.cs │ │ └── AddGameVndbViewModel.cs │ ├── DeleteEverythingViewModel.cs │ ├── ImportViewModel.cs │ └── ModifyGame │ │ ├── ModifyGameCategoriesViewModel.cs │ │ ├── ModifyGameDeleteViewModel.cs │ │ ├── ModifyGameHostViewModel.cs │ │ ├── ModifyGamePathViewModel.cs │ │ └── ModifyGameRepairViewModel.cs ├── RootViewModel.cs ├── UserControls │ ├── CategoryListViewModel.cs │ ├── DebugViewModel.cs │ ├── MainGridViewModel.cs │ ├── MainPage │ │ ├── GameGridViewModel.cs │ │ ├── NoGamesViewModel.cs │ │ ├── NoSource │ │ │ └── NoSourceMainViewModel.cs │ │ └── Vndb │ │ │ ├── VndbCharactersViewModel.cs │ │ │ ├── VndbContentViewModel.cs │ │ │ ├── VndbInfoViewModel.cs │ │ │ └── VndbScreensViewModel.cs │ ├── SettingsViewModel.cs │ └── StatusBarViewModel.cs └── Windows │ └── SetEnterPasswordViewModel.cs ├── Views ├── Controls │ ├── CustomMsgBoxView.xaml │ └── GameCardView.xaml ├── Dialogs │ ├── AboutView.xaml │ ├── AddGameMultiView.xaml │ ├── AddGameSources │ │ ├── AddGameMainView.xaml │ │ ├── AddGameNoSourceView.xaml │ │ └── AddGameVndbView.xaml │ ├── DeleteEverythingView.xaml │ ├── ImportView.xaml │ └── ModifyGame │ │ ├── ModifyGameCategoriesView.xaml │ │ ├── ModifyGameDeleteView.xaml │ │ ├── ModifyGameHostView.xaml │ │ ├── ModifyGamePathView.xaml │ │ └── ModifyGameRepairView.xaml ├── RootView.xaml ├── UserControls │ ├── CategoryListView.xaml │ ├── DebugView.xaml │ ├── MainGridView.xaml │ ├── MainPage │ │ ├── GameGridView.xaml │ │ ├── NoGamesView.xaml │ │ ├── NoSource │ │ │ └── NoSourceMainView.xaml │ │ └── Vndb │ │ │ ├── VndbCharactersView.xaml │ │ │ ├── VndbContentView.xaml │ │ │ ├── VndbInfoView.xaml │ │ │ └── VndbScreensView.xaml │ ├── SettingsView.xaml │ └── StatusBarView.xaml └── Windows │ └── SetEnterPasswordView.xaml ├── VnManager.csproj ├── VnManager.ruleset ├── packages.lock.json └── vnmgrlogo.ico /.github/workflows/dotnet-build-normal.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/.github/workflows/dotnet-build-normal.yml -------------------------------------------------------------------------------- /.github/workflows/dotnet-build-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/.github/workflows/dotnet-build-publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/LICENSE -------------------------------------------------------------------------------- /Notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/Notes.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/README.md -------------------------------------------------------------------------------- /Screenshots/01-Main.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/Screenshots/01-Main.PNG -------------------------------------------------------------------------------- /Screenshots/02-Screens.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/Screenshots/02-Screens.PNG -------------------------------------------------------------------------------- /Screenshots/03-Characters.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/Screenshots/03-Characters.PNG -------------------------------------------------------------------------------- /TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/TODO.md -------------------------------------------------------------------------------- /setup/MIT-License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/setup/MIT-License.txt -------------------------------------------------------------------------------- /setup/Metrics-Warning.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/setup/Metrics-Warning.txt -------------------------------------------------------------------------------- /setup/VnManagerSetup.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/setup/VnManagerSetup.iss -------------------------------------------------------------------------------- /setup/netcorecheck.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/setup/netcorecheck.exe -------------------------------------------------------------------------------- /setup/netcorecheck_x64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/setup/netcorecheck_x64.exe -------------------------------------------------------------------------------- /setup/vnmgrlogo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/setup/vnmgrlogo.ico -------------------------------------------------------------------------------- /src/.sonarlint/VnManager.slconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/src/.sonarlint/VnManager.slconfig -------------------------------------------------------------------------------- /src/.sonarlint/micah686_vnmanager/CSharp/SonarLint.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/src/.sonarlint/micah686_vnmanager/CSharp/SonarLint.xml -------------------------------------------------------------------------------- /src/.sonarlint/micah686_vnmanagercsharp.ruleset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/src/.sonarlint/micah686_vnmanagercsharp.ruleset -------------------------------------------------------------------------------- /src/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/src/Directory.Build.props -------------------------------------------------------------------------------- /src/Nuget.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/src/Nuget.config -------------------------------------------------------------------------------- /src/VnManager.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/src/VnManager.sln -------------------------------------------------------------------------------- /src/VnManager/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/src/VnManager/App.xaml -------------------------------------------------------------------------------- /src/VnManager/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/src/VnManager/App.xaml.cs -------------------------------------------------------------------------------- /src/VnManager/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/src/VnManager/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/VnManager/Bootstrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/src/VnManager/Bootstrapper.cs -------------------------------------------------------------------------------- /src/VnManager/Converters/BooleanAndConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/src/VnManager/Converters/BooleanAndConverter.cs -------------------------------------------------------------------------------- /src/VnManager/Converters/CsvConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/src/VnManager/Converters/CsvConverter.cs -------------------------------------------------------------------------------- /src/VnManager/Converters/DataGridRowIdConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/src/VnManager/Converters/DataGridRowIdConverter.cs -------------------------------------------------------------------------------- /src/VnManager/Converters/EnumToBooleanConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/src/VnManager/Converters/EnumToBooleanConverter.cs -------------------------------------------------------------------------------- /src/VnManager/Converters/IntToStringConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/src/VnManager/Converters/IntToStringConverter.cs -------------------------------------------------------------------------------- /src/VnManager/Converters/InverseBoolConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/src/VnManager/Converters/InverseBoolConverter.cs -------------------------------------------------------------------------------- /src/VnManager/Converters/InverseVisibilityConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/src/VnManager/Converters/InverseVisibilityConverter.cs -------------------------------------------------------------------------------- /src/VnManager/Converters/SimpleDateConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/src/VnManager/Converters/SimpleDateConverter.cs -------------------------------------------------------------------------------- /src/VnManager/Events/EventChannels.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/src/VnManager/Events/EventChannels.cs -------------------------------------------------------------------------------- /src/VnManager/Events/UpdateEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/src/VnManager/Events/UpdateEvent.cs -------------------------------------------------------------------------------- /src/VnManager/Extensions/EnumBindingSourceExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/src/VnManager/Extensions/EnumBindingSourceExtension.cs -------------------------------------------------------------------------------- /src/VnManager/Extensions/FocusExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/src/VnManager/Extensions/FocusExtension.cs -------------------------------------------------------------------------------- /src/VnManager/Extensions/MouseObserver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/src/VnManager/Extensions/MouseObserver.cs -------------------------------------------------------------------------------- /src/VnManager/Extensions/PasswordHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/src/VnManager/Extensions/PasswordHelper.cs -------------------------------------------------------------------------------- /src/VnManager/Extensions/ProcessExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/src/VnManager/Extensions/ProcessExtensions.cs -------------------------------------------------------------------------------- /src/VnManager/Extensions/TextBlockInLineBinding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/src/VnManager/Extensions/TextBlockInLineBinding.cs -------------------------------------------------------------------------------- /src/VnManager/Extensions/TextBoxExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/src/VnManager/Extensions/TextBoxExtensions.cs -------------------------------------------------------------------------------- /src/VnManager/Extensions/ValidationBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/src/VnManager/Extensions/ValidationBase.cs -------------------------------------------------------------------------------- /src/VnManager/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/src/VnManager/FodyWeavers.xml -------------------------------------------------------------------------------- /src/VnManager/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/src/VnManager/FodyWeavers.xsd -------------------------------------------------------------------------------- /src/VnManager/Helpers/BBCodeHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/src/VnManager/Helpers/BBCodeHelper.cs -------------------------------------------------------------------------------- /src/VnManager/Helpers/CheckWriteAccess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/src/VnManager/Helpers/CheckWriteAccess.cs -------------------------------------------------------------------------------- /src/VnManager/Helpers/FileDialogHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/src/VnManager/Helpers/FileDialogHelper.cs -------------------------------------------------------------------------------- /src/VnManager/Helpers/GaussianBlur.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/src/VnManager/Helpers/GaussianBlur.cs -------------------------------------------------------------------------------- /src/VnManager/Helpers/ImageHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/src/VnManager/Helpers/ImageHelper.cs -------------------------------------------------------------------------------- /src/VnManager/Helpers/ImportExportHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/src/VnManager/Helpers/ImportExportHelper.cs -------------------------------------------------------------------------------- /src/VnManager/Helpers/MeasureStringSize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/src/VnManager/Helpers/MeasureStringSize.cs -------------------------------------------------------------------------------- /src/VnManager/Helpers/NormalizeWhiteSpace.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/src/VnManager/Helpers/NormalizeWhiteSpace.cs -------------------------------------------------------------------------------- /src/VnManager/Helpers/NsfwHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/src/VnManager/Helpers/NsfwHelper.cs -------------------------------------------------------------------------------- /src/VnManager/Helpers/Secure.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/src/VnManager/Helpers/Secure.cs -------------------------------------------------------------------------------- /src/VnManager/Helpers/SentryHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/src/VnManager/Helpers/SentryHelper.cs -------------------------------------------------------------------------------- /src/VnManager/Helpers/Stringable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/src/VnManager/Helpers/Stringable.cs -------------------------------------------------------------------------------- /src/VnManager/Helpers/TimeDateChanger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/src/VnManager/Helpers/TimeDateChanger.cs -------------------------------------------------------------------------------- /src/VnManager/Helpers/UserSettingsHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/src/VnManager/Helpers/UserSettingsHelper.cs -------------------------------------------------------------------------------- /src/VnManager/Helpers/ValidateFiles.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/src/VnManager/Helpers/ValidateFiles.cs -------------------------------------------------------------------------------- /src/VnManager/Helpers/ValidationHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/src/VnManager/Helpers/ValidationHelpers.cs -------------------------------------------------------------------------------- /src/VnManager/Helpers/Vndb/HandleVndbErrors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/src/VnManager/Helpers/Vndb/HandleVndbErrors.cs -------------------------------------------------------------------------------- /src/VnManager/Helpers/Vndb/VndbAddGameHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/src/VnManager/Helpers/Vndb/VndbAddGameHelper.cs -------------------------------------------------------------------------------- /src/VnManager/Helpers/Vndb/VndbConnectionTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/src/VnManager/Helpers/Vndb/VndbConnectionTest.cs -------------------------------------------------------------------------------- /src/VnManager/Helpers/Vndb/VndbDataHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/src/VnManager/Helpers/Vndb/VndbDataHelper.cs -------------------------------------------------------------------------------- /src/VnManager/Helpers/Vndb/VndbTagTraitHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/src/VnManager/Helpers/Vndb/VndbTagTraitHelper.cs -------------------------------------------------------------------------------- /src/VnManager/Initializers/PreStartupCheck.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/src/VnManager/Initializers/PreStartupCheck.cs -------------------------------------------------------------------------------- /src/VnManager/Initializers/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/src/VnManager/Initializers/Startup.cs -------------------------------------------------------------------------------- /src/VnManager/MetadataProviders/Vndb/DownloadVndbContent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/src/VnManager/MetadataProviders/Vndb/DownloadVndbContent.cs -------------------------------------------------------------------------------- /src/VnManager/MetadataProviders/Vndb/GetVndbData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/src/VnManager/MetadataProviders/Vndb/GetVndbData.cs -------------------------------------------------------------------------------- /src/VnManager/MetadataProviders/Vndb/SaveVnDataToDb.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/src/VnManager/MetadataProviders/Vndb/SaveVnDataToDb.cs -------------------------------------------------------------------------------- /src/VnManager/Models/Db/DbTableNames.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/src/VnManager/Models/Db/DbTableNames.cs -------------------------------------------------------------------------------- /src/VnManager/Models/Db/User/UserDataCategories.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/src/VnManager/Models/Db/User/UserDataCategories.cs -------------------------------------------------------------------------------- /src/VnManager/Models/Db/User/UserDataGames.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/src/VnManager/Models/Db/User/UserDataGames.cs -------------------------------------------------------------------------------- /src/VnManager/Models/Db/Vndb/Character/VnCharacterInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/src/VnManager/Models/Db/Vndb/Character/VnCharacterInfo.cs -------------------------------------------------------------------------------- /src/VnManager/Models/Db/Vndb/Character/VnCharacterTraits.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/src/VnManager/Models/Db/Vndb/Character/VnCharacterTraits.cs -------------------------------------------------------------------------------- /src/VnManager/Models/Db/Vndb/Main/VnInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/src/VnManager/Models/Db/Vndb/Main/VnInfo.cs -------------------------------------------------------------------------------- /src/VnManager/Models/Db/Vndb/Main/VnInfoLinks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/src/VnManager/Models/Db/Vndb/Main/VnInfoLinks.cs -------------------------------------------------------------------------------- /src/VnManager/Models/Db/Vndb/Main/VnInfoRelations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/src/VnManager/Models/Db/Vndb/Main/VnInfoRelations.cs -------------------------------------------------------------------------------- /src/VnManager/Models/Db/Vndb/Main/VnInfoScreens.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/src/VnManager/Models/Db/Vndb/Main/VnInfoScreens.cs -------------------------------------------------------------------------------- /src/VnManager/Models/Db/Vndb/Main/VnInfoTags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/src/VnManager/Models/Db/Vndb/Main/VnInfoTags.cs -------------------------------------------------------------------------------- /src/VnManager/Models/Db/Vndb/TagTrait/VnTagData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/src/VnManager/Models/Db/Vndb/TagTrait/VnTagData.cs -------------------------------------------------------------------------------- /src/VnManager/Models/Db/Vndb/TagTrait/VnTraitData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/src/VnManager/Models/Db/Vndb/TagTrait/VnTraitData.cs -------------------------------------------------------------------------------- /src/VnManager/Models/Settings/UserSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/src/VnManager/Models/Settings/UserSettings.cs -------------------------------------------------------------------------------- /src/VnManager/Models/WikiData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/src/VnManager/Models/WikiData.cs -------------------------------------------------------------------------------- /src/VnManager/NavigationController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/src/VnManager/NavigationController.cs -------------------------------------------------------------------------------- /src/VnManager/Resources/Placeholders/empty_bitmap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/src/VnManager/Resources/Placeholders/empty_bitmap.png -------------------------------------------------------------------------------- /src/VnManager/Resources/flags/AR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/src/VnManager/Resources/flags/AR.png -------------------------------------------------------------------------------- /src/VnManager/Resources/flags/BG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/src/VnManager/Resources/flags/BG.png -------------------------------------------------------------------------------- /src/VnManager/Resources/flags/CS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/src/VnManager/Resources/flags/CS.png -------------------------------------------------------------------------------- /src/VnManager/Resources/flags/DA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/src/VnManager/Resources/flags/DA.png -------------------------------------------------------------------------------- /src/VnManager/Resources/flags/DE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/src/VnManager/Resources/flags/DE.png -------------------------------------------------------------------------------- /src/VnManager/Resources/flags/EL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/src/VnManager/Resources/flags/EL.png -------------------------------------------------------------------------------- /src/VnManager/Resources/flags/EN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/src/VnManager/Resources/flags/EN.png -------------------------------------------------------------------------------- /src/VnManager/Resources/flags/ES.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/src/VnManager/Resources/flags/ES.png -------------------------------------------------------------------------------- /src/VnManager/Resources/flags/FI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/src/VnManager/Resources/flags/FI.png -------------------------------------------------------------------------------- /src/VnManager/Resources/flags/FR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/src/VnManager/Resources/flags/FR.png -------------------------------------------------------------------------------- /src/VnManager/Resources/flags/GD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/src/VnManager/Resources/flags/GD.png -------------------------------------------------------------------------------- /src/VnManager/Resources/flags/HE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/src/VnManager/Resources/flags/HE.png -------------------------------------------------------------------------------- /src/VnManager/Resources/flags/HR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/src/VnManager/Resources/flags/HR.png -------------------------------------------------------------------------------- /src/VnManager/Resources/flags/HU.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/src/VnManager/Resources/flags/HU.png -------------------------------------------------------------------------------- /src/VnManager/Resources/flags/ID.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/src/VnManager/Resources/flags/ID.png -------------------------------------------------------------------------------- /src/VnManager/Resources/flags/IT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/src/VnManager/Resources/flags/IT.png -------------------------------------------------------------------------------- /src/VnManager/Resources/flags/JA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/src/VnManager/Resources/flags/JA.png -------------------------------------------------------------------------------- /src/VnManager/Resources/flags/KO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/src/VnManager/Resources/flags/KO.png -------------------------------------------------------------------------------- /src/VnManager/Resources/flags/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/src/VnManager/Resources/flags/LICENSE.txt -------------------------------------------------------------------------------- /src/VnManager/Resources/flags/LT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/src/VnManager/Resources/flags/LT.png -------------------------------------------------------------------------------- /src/VnManager/Resources/flags/LV.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/src/VnManager/Resources/flags/LV.png -------------------------------------------------------------------------------- /src/VnManager/Resources/flags/MK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/src/VnManager/Resources/flags/MK.png -------------------------------------------------------------------------------- /src/VnManager/Resources/flags/MS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/src/VnManager/Resources/flags/MS.png -------------------------------------------------------------------------------- /src/VnManager/Resources/flags/NL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/src/VnManager/Resources/flags/NL.png -------------------------------------------------------------------------------- /src/VnManager/Resources/flags/NO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/src/VnManager/Resources/flags/NO.png -------------------------------------------------------------------------------- /src/VnManager/Resources/flags/PL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/src/VnManager/Resources/flags/PL.png -------------------------------------------------------------------------------- /src/VnManager/Resources/flags/PT-BR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/src/VnManager/Resources/flags/PT-BR.png -------------------------------------------------------------------------------- /src/VnManager/Resources/flags/PT-PT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/src/VnManager/Resources/flags/PT-PT.png -------------------------------------------------------------------------------- /src/VnManager/Resources/flags/RO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/src/VnManager/Resources/flags/RO.png -------------------------------------------------------------------------------- /src/VnManager/Resources/flags/RU.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/src/VnManager/Resources/flags/RU.png -------------------------------------------------------------------------------- /src/VnManager/Resources/flags/SK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/src/VnManager/Resources/flags/SK.png -------------------------------------------------------------------------------- /src/VnManager/Resources/flags/SL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/src/VnManager/Resources/flags/SL.png -------------------------------------------------------------------------------- /src/VnManager/Resources/flags/SV.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/src/VnManager/Resources/flags/SV.png -------------------------------------------------------------------------------- /src/VnManager/Resources/flags/TA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/src/VnManager/Resources/flags/TA.png -------------------------------------------------------------------------------- /src/VnManager/Resources/flags/TH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/src/VnManager/Resources/flags/TH.png -------------------------------------------------------------------------------- /src/VnManager/Resources/flags/TR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/src/VnManager/Resources/flags/TR.png -------------------------------------------------------------------------------- /src/VnManager/Resources/flags/UA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/src/VnManager/Resources/flags/UA.png -------------------------------------------------------------------------------- /src/VnManager/Resources/flags/Unknown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/src/VnManager/Resources/flags/Unknown.png -------------------------------------------------------------------------------- /src/VnManager/Resources/flags/VI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/src/VnManager/Resources/flags/VI.png -------------------------------------------------------------------------------- /src/VnManager/Resources/flags/ZH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/src/VnManager/Resources/flags/ZH.png -------------------------------------------------------------------------------- /src/VnManager/Resources/icon/FontLicense.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/src/VnManager/Resources/icon/FontLicense.txt -------------------------------------------------------------------------------- /src/VnManager/Resources/icon/VnMgrLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/src/VnManager/Resources/icon/VnMgrLogo.png -------------------------------------------------------------------------------- /src/VnManager/Resources/icon/vnmgrlogo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/src/VnManager/Resources/icon/vnmgrlogo.ico -------------------------------------------------------------------------------- /src/VnManager/Strings/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/src/VnManager/Strings/Resources.Designer.cs -------------------------------------------------------------------------------- /src/VnManager/Strings/Resources.ja-JP.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/src/VnManager/Strings/Resources.ja-JP.resx -------------------------------------------------------------------------------- /src/VnManager/Strings/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/src/VnManager/Strings/Resources.resx -------------------------------------------------------------------------------- /src/VnManager/Styles/Listbox/NoHighlight.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/src/VnManager/Styles/Listbox/NoHighlight.xaml -------------------------------------------------------------------------------- /src/VnManager/Utilities/FluentModelValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/src/VnManager/Utilities/FluentModelValidator.cs -------------------------------------------------------------------------------- /src/VnManager/Utilities/LogManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/src/VnManager/Utilities/LogManager.cs -------------------------------------------------------------------------------- /src/VnManager/Utilities/SerilogFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/src/VnManager/Utilities/SerilogFormatter.cs -------------------------------------------------------------------------------- /src/VnManager/ViewModels/Controls/CustomMsgBoxViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/src/VnManager/ViewModels/Controls/CustomMsgBoxViewModel.cs -------------------------------------------------------------------------------- /src/VnManager/ViewModels/Controls/GameCardViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/src/VnManager/ViewModels/Controls/GameCardViewModel.cs -------------------------------------------------------------------------------- /src/VnManager/ViewModels/Dialogs/AboutViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/src/VnManager/ViewModels/Dialogs/AboutViewModel.cs -------------------------------------------------------------------------------- /src/VnManager/ViewModels/Dialogs/AddGameMultiViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/src/VnManager/ViewModels/Dialogs/AddGameMultiViewModel.cs -------------------------------------------------------------------------------- /src/VnManager/ViewModels/Dialogs/AddGameSources/AddGameMainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/src/VnManager/ViewModels/Dialogs/AddGameSources/AddGameMainViewModel.cs -------------------------------------------------------------------------------- /src/VnManager/ViewModels/Dialogs/AddGameSources/AddGameNoSourceViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/src/VnManager/ViewModels/Dialogs/AddGameSources/AddGameNoSourceViewModel.cs -------------------------------------------------------------------------------- /src/VnManager/ViewModels/Dialogs/AddGameSources/AddGameVndbViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/src/VnManager/ViewModels/Dialogs/AddGameSources/AddGameVndbViewModel.cs -------------------------------------------------------------------------------- /src/VnManager/ViewModels/Dialogs/DeleteEverythingViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/src/VnManager/ViewModels/Dialogs/DeleteEverythingViewModel.cs -------------------------------------------------------------------------------- /src/VnManager/ViewModels/Dialogs/ImportViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/src/VnManager/ViewModels/Dialogs/ImportViewModel.cs -------------------------------------------------------------------------------- /src/VnManager/ViewModels/Dialogs/ModifyGame/ModifyGameCategoriesViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/src/VnManager/ViewModels/Dialogs/ModifyGame/ModifyGameCategoriesViewModel.cs -------------------------------------------------------------------------------- /src/VnManager/ViewModels/Dialogs/ModifyGame/ModifyGameDeleteViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/src/VnManager/ViewModels/Dialogs/ModifyGame/ModifyGameDeleteViewModel.cs -------------------------------------------------------------------------------- /src/VnManager/ViewModels/Dialogs/ModifyGame/ModifyGameHostViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/src/VnManager/ViewModels/Dialogs/ModifyGame/ModifyGameHostViewModel.cs -------------------------------------------------------------------------------- /src/VnManager/ViewModels/Dialogs/ModifyGame/ModifyGamePathViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/src/VnManager/ViewModels/Dialogs/ModifyGame/ModifyGamePathViewModel.cs -------------------------------------------------------------------------------- /src/VnManager/ViewModels/Dialogs/ModifyGame/ModifyGameRepairViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/src/VnManager/ViewModels/Dialogs/ModifyGame/ModifyGameRepairViewModel.cs -------------------------------------------------------------------------------- /src/VnManager/ViewModels/RootViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/src/VnManager/ViewModels/RootViewModel.cs -------------------------------------------------------------------------------- /src/VnManager/ViewModels/UserControls/CategoryListViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/src/VnManager/ViewModels/UserControls/CategoryListViewModel.cs -------------------------------------------------------------------------------- /src/VnManager/ViewModels/UserControls/DebugViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/src/VnManager/ViewModels/UserControls/DebugViewModel.cs -------------------------------------------------------------------------------- /src/VnManager/ViewModels/UserControls/MainGridViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/src/VnManager/ViewModels/UserControls/MainGridViewModel.cs -------------------------------------------------------------------------------- /src/VnManager/ViewModels/UserControls/MainPage/GameGridViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/src/VnManager/ViewModels/UserControls/MainPage/GameGridViewModel.cs -------------------------------------------------------------------------------- /src/VnManager/ViewModels/UserControls/MainPage/NoGamesViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/src/VnManager/ViewModels/UserControls/MainPage/NoGamesViewModel.cs -------------------------------------------------------------------------------- /src/VnManager/ViewModels/UserControls/MainPage/NoSource/NoSourceMainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/src/VnManager/ViewModels/UserControls/MainPage/NoSource/NoSourceMainViewModel.cs -------------------------------------------------------------------------------- /src/VnManager/ViewModels/UserControls/MainPage/Vndb/VndbCharactersViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/src/VnManager/ViewModels/UserControls/MainPage/Vndb/VndbCharactersViewModel.cs -------------------------------------------------------------------------------- /src/VnManager/ViewModels/UserControls/MainPage/Vndb/VndbContentViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/src/VnManager/ViewModels/UserControls/MainPage/Vndb/VndbContentViewModel.cs -------------------------------------------------------------------------------- /src/VnManager/ViewModels/UserControls/MainPage/Vndb/VndbInfoViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/src/VnManager/ViewModels/UserControls/MainPage/Vndb/VndbInfoViewModel.cs -------------------------------------------------------------------------------- /src/VnManager/ViewModels/UserControls/MainPage/Vndb/VndbScreensViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/src/VnManager/ViewModels/UserControls/MainPage/Vndb/VndbScreensViewModel.cs -------------------------------------------------------------------------------- /src/VnManager/ViewModels/UserControls/SettingsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/src/VnManager/ViewModels/UserControls/SettingsViewModel.cs -------------------------------------------------------------------------------- /src/VnManager/ViewModels/UserControls/StatusBarViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/src/VnManager/ViewModels/UserControls/StatusBarViewModel.cs -------------------------------------------------------------------------------- /src/VnManager/ViewModels/Windows/SetEnterPasswordViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/src/VnManager/ViewModels/Windows/SetEnterPasswordViewModel.cs -------------------------------------------------------------------------------- /src/VnManager/Views/Controls/CustomMsgBoxView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/src/VnManager/Views/Controls/CustomMsgBoxView.xaml -------------------------------------------------------------------------------- /src/VnManager/Views/Controls/GameCardView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/src/VnManager/Views/Controls/GameCardView.xaml -------------------------------------------------------------------------------- /src/VnManager/Views/Dialogs/AboutView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/src/VnManager/Views/Dialogs/AboutView.xaml -------------------------------------------------------------------------------- /src/VnManager/Views/Dialogs/AddGameMultiView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/src/VnManager/Views/Dialogs/AddGameMultiView.xaml -------------------------------------------------------------------------------- /src/VnManager/Views/Dialogs/AddGameSources/AddGameMainView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/src/VnManager/Views/Dialogs/AddGameSources/AddGameMainView.xaml -------------------------------------------------------------------------------- /src/VnManager/Views/Dialogs/AddGameSources/AddGameNoSourceView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/src/VnManager/Views/Dialogs/AddGameSources/AddGameNoSourceView.xaml -------------------------------------------------------------------------------- /src/VnManager/Views/Dialogs/AddGameSources/AddGameVndbView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/src/VnManager/Views/Dialogs/AddGameSources/AddGameVndbView.xaml -------------------------------------------------------------------------------- /src/VnManager/Views/Dialogs/DeleteEverythingView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/src/VnManager/Views/Dialogs/DeleteEverythingView.xaml -------------------------------------------------------------------------------- /src/VnManager/Views/Dialogs/ImportView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/src/VnManager/Views/Dialogs/ImportView.xaml -------------------------------------------------------------------------------- /src/VnManager/Views/Dialogs/ModifyGame/ModifyGameCategoriesView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/src/VnManager/Views/Dialogs/ModifyGame/ModifyGameCategoriesView.xaml -------------------------------------------------------------------------------- /src/VnManager/Views/Dialogs/ModifyGame/ModifyGameDeleteView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/src/VnManager/Views/Dialogs/ModifyGame/ModifyGameDeleteView.xaml -------------------------------------------------------------------------------- /src/VnManager/Views/Dialogs/ModifyGame/ModifyGameHostView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/src/VnManager/Views/Dialogs/ModifyGame/ModifyGameHostView.xaml -------------------------------------------------------------------------------- /src/VnManager/Views/Dialogs/ModifyGame/ModifyGamePathView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/src/VnManager/Views/Dialogs/ModifyGame/ModifyGamePathView.xaml -------------------------------------------------------------------------------- /src/VnManager/Views/Dialogs/ModifyGame/ModifyGameRepairView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/src/VnManager/Views/Dialogs/ModifyGame/ModifyGameRepairView.xaml -------------------------------------------------------------------------------- /src/VnManager/Views/RootView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/src/VnManager/Views/RootView.xaml -------------------------------------------------------------------------------- /src/VnManager/Views/UserControls/CategoryListView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/src/VnManager/Views/UserControls/CategoryListView.xaml -------------------------------------------------------------------------------- /src/VnManager/Views/UserControls/DebugView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/src/VnManager/Views/UserControls/DebugView.xaml -------------------------------------------------------------------------------- /src/VnManager/Views/UserControls/MainGridView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/src/VnManager/Views/UserControls/MainGridView.xaml -------------------------------------------------------------------------------- /src/VnManager/Views/UserControls/MainPage/GameGridView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/src/VnManager/Views/UserControls/MainPage/GameGridView.xaml -------------------------------------------------------------------------------- /src/VnManager/Views/UserControls/MainPage/NoGamesView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/src/VnManager/Views/UserControls/MainPage/NoGamesView.xaml -------------------------------------------------------------------------------- /src/VnManager/Views/UserControls/MainPage/NoSource/NoSourceMainView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/src/VnManager/Views/UserControls/MainPage/NoSource/NoSourceMainView.xaml -------------------------------------------------------------------------------- /src/VnManager/Views/UserControls/MainPage/Vndb/VndbCharactersView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/src/VnManager/Views/UserControls/MainPage/Vndb/VndbCharactersView.xaml -------------------------------------------------------------------------------- /src/VnManager/Views/UserControls/MainPage/Vndb/VndbContentView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/src/VnManager/Views/UserControls/MainPage/Vndb/VndbContentView.xaml -------------------------------------------------------------------------------- /src/VnManager/Views/UserControls/MainPage/Vndb/VndbInfoView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/src/VnManager/Views/UserControls/MainPage/Vndb/VndbInfoView.xaml -------------------------------------------------------------------------------- /src/VnManager/Views/UserControls/MainPage/Vndb/VndbScreensView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/src/VnManager/Views/UserControls/MainPage/Vndb/VndbScreensView.xaml -------------------------------------------------------------------------------- /src/VnManager/Views/UserControls/SettingsView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/src/VnManager/Views/UserControls/SettingsView.xaml -------------------------------------------------------------------------------- /src/VnManager/Views/UserControls/StatusBarView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/src/VnManager/Views/UserControls/StatusBarView.xaml -------------------------------------------------------------------------------- /src/VnManager/Views/Windows/SetEnterPasswordView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/src/VnManager/Views/Windows/SetEnterPasswordView.xaml -------------------------------------------------------------------------------- /src/VnManager/VnManager.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/src/VnManager/VnManager.csproj -------------------------------------------------------------------------------- /src/VnManager/VnManager.ruleset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/src/VnManager/VnManager.ruleset -------------------------------------------------------------------------------- /src/VnManager/packages.lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/src/VnManager/packages.lock.json -------------------------------------------------------------------------------- /src/VnManager/vnmgrlogo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micah686/VnManager/HEAD/src/VnManager/vnmgrlogo.ico --------------------------------------------------------------------------------