├── .editorconfig ├── .github └── workflows │ ├── autoupdate.yml │ ├── codeql-analysis.yml │ └── release.yml ├── .gitignore ├── LICENSE ├── ManifestUpdater ├── ManifestUpdater.csproj ├── Program.cs ├── Properties │ ├── Resources.Designer.cs │ └── Resources.resx └── Resources │ ├── generated_manifest.json │ ├── internal_manifest.json │ └── master_manifest.json ├── ModFinder.sln ├── ModFinderClient ├── App.xaml ├── App.xaml.cs ├── Font │ └── RogueTraderLogo.ttf ├── Main.cs ├── MainPage.html ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── Mod │ ├── ModCache.cs │ ├── ModDetails.cs │ ├── ModInfo.cs │ ├── ModInstaller.cs │ ├── ModManifest.cs │ ├── ModVersion.cs │ ├── OwlcatModificationSettingsManager.cs │ ├── PortraitEarmark.cs │ └── Tag.cs ├── ModFinder.csproj ├── Properties │ ├── Settings.Designer.cs │ └── Settings.settings ├── RT_Icon.ico ├── RT_Icon.png ├── UI │ ├── BBCodeRenderer.cs │ ├── ChangelogRenderer.cs │ ├── FilterModel.cs │ ├── MDRenderer.cs │ ├── ModDatabase.cs │ ├── ModSort.cs │ ├── ModViewModel.cs │ ├── NonTopPopup.cs │ ├── SlideToggle.xaml │ └── SlideToggle.xaml.cs ├── Util │ ├── HttpHelper.cs │ ├── IOTool.cs │ ├── Logger.cs │ └── Settings.cs ├── icons │ ├── Aquila1.png │ ├── Aquila2.png │ ├── Background_PopUp_v2.png │ ├── Background_v2.png │ ├── MFRT_Logo.png │ ├── MFRT_Logo2.png │ ├── RT_Logo.png │ ├── RT_Logo2.png │ ├── UI_BoxButton_Click.png │ ├── UI_BoxButton_Default.png │ ├── UI_BoxButton_Disable.png │ ├── UI_BoxButton_Hover.png │ ├── UI_Button_Click.png │ ├── UI_Button_Default.png │ ├── UI_Button_Disable.png │ ├── UI_Button_Hover.png │ ├── UI_GlobalMap_BackNameShield_Hover.png │ ├── UI_HudIcon_Book_Active.png │ ├── UI_HudIcon_Book_Default.png │ ├── UI_HudIcon_Book_Disable.png │ ├── UI_HudIcon_Book_Hover.png │ ├── UI_HudIcon_Cancel_Active.png │ ├── UI_HudIcon_Cancel_Default.png │ ├── UI_HudIcon_Cancel_Hover.png │ ├── UI_HudIcon_EscAll_Active.png │ ├── UI_HudIcon_EscAll_Default.png │ ├── UI_HudIcon_EscAll_Disable.png │ ├── UI_HudIcon_EscAll_Hover.png │ ├── UI_HudIcon_Inspect_Active.png │ ├── UI_HudIcon_Inspect_Default.png │ ├── UI_HudIcon_Inspect_Disable.png │ ├── UI_HudIcon_Inspect_Hover.png │ ├── UI_HudIcon_Settings_Active.png │ ├── UI_HudIcon_Settings_Default.png │ ├── UI_HudIcon_Settings_Hover.png │ ├── UI_HudIcon_Story_Active.png │ ├── UI_HudIcon_Story_Default.png │ ├── UI_HudIcon_Story_Disable.png │ ├── UI_HudIcon_Story_Hover.png │ ├── UI_HudIcon_Time_Active.png │ ├── UI_HudIcon_Time_Default.png │ ├── UI_HudIcon_Time_Disable.png │ ├── UI_HudIcon_Time_Hover.png │ ├── UI_Inventory_CloseButton_Click.png │ ├── UI_Inventory_CloseButton_Default.png │ ├── UI_Inventory_CloseButton_Hover.png │ ├── UI_Journal_BigMenu_Border.png │ ├── UI_Journal_Line.png │ ├── UI_RoundButton_Default.png │ ├── UI_ScrollVertical_Arrow_Click.png │ ├── UI_ScrollVertical_Arrow_Default.png │ ├── UI_ScrollVertical_Arrow_Hover.png │ ├── UI_ScrollVertical_BackLine.png │ ├── UI_ScrollVertical_Handl_Click.png │ ├── UI_ScrollVertical_Handl_Default.png │ ├── UI_ScrollVertical_Handl_Hover.png │ ├── UI_Toggler_BG.png │ ├── drop-bg.png │ ├── error.png │ ├── okay.png │ └── warning.png ├── test_external.json ├── test_generated.json └── test_master.json ├── README.md ├── ToDo.txt ├── manifest.json └── screenshots ├── Changelog_Window.png ├── Description_Window.png └── main.png /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CasDragon/ModFinder/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/autoupdate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CasDragon/ModFinder/HEAD/.github/workflows/autoupdate.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CasDragon/ModFinder/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CasDragon/ModFinder/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CasDragon/ModFinder/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CasDragon/ModFinder/HEAD/LICENSE -------------------------------------------------------------------------------- /ManifestUpdater/ManifestUpdater.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CasDragon/ModFinder/HEAD/ManifestUpdater/ManifestUpdater.csproj -------------------------------------------------------------------------------- /ManifestUpdater/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CasDragon/ModFinder/HEAD/ManifestUpdater/Program.cs -------------------------------------------------------------------------------- /ManifestUpdater/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CasDragon/ModFinder/HEAD/ManifestUpdater/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /ManifestUpdater/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CasDragon/ModFinder/HEAD/ManifestUpdater/Properties/Resources.resx -------------------------------------------------------------------------------- /ManifestUpdater/Resources/generated_manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CasDragon/ModFinder/HEAD/ManifestUpdater/Resources/generated_manifest.json -------------------------------------------------------------------------------- /ManifestUpdater/Resources/internal_manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CasDragon/ModFinder/HEAD/ManifestUpdater/Resources/internal_manifest.json -------------------------------------------------------------------------------- /ManifestUpdater/Resources/master_manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CasDragon/ModFinder/HEAD/ManifestUpdater/Resources/master_manifest.json -------------------------------------------------------------------------------- /ModFinder.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CasDragon/ModFinder/HEAD/ModFinder.sln -------------------------------------------------------------------------------- /ModFinderClient/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CasDragon/ModFinder/HEAD/ModFinderClient/App.xaml -------------------------------------------------------------------------------- /ModFinderClient/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CasDragon/ModFinder/HEAD/ModFinderClient/App.xaml.cs -------------------------------------------------------------------------------- /ModFinderClient/Font/RogueTraderLogo.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CasDragon/ModFinder/HEAD/ModFinderClient/Font/RogueTraderLogo.ttf -------------------------------------------------------------------------------- /ModFinderClient/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CasDragon/ModFinder/HEAD/ModFinderClient/Main.cs -------------------------------------------------------------------------------- /ModFinderClient/MainPage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CasDragon/ModFinder/HEAD/ModFinderClient/MainPage.html -------------------------------------------------------------------------------- /ModFinderClient/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CasDragon/ModFinder/HEAD/ModFinderClient/MainWindow.xaml -------------------------------------------------------------------------------- /ModFinderClient/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CasDragon/ModFinder/HEAD/ModFinderClient/MainWindow.xaml.cs -------------------------------------------------------------------------------- /ModFinderClient/Mod/ModCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CasDragon/ModFinder/HEAD/ModFinderClient/Mod/ModCache.cs -------------------------------------------------------------------------------- /ModFinderClient/Mod/ModDetails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CasDragon/ModFinder/HEAD/ModFinderClient/Mod/ModDetails.cs -------------------------------------------------------------------------------- /ModFinderClient/Mod/ModInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CasDragon/ModFinder/HEAD/ModFinderClient/Mod/ModInfo.cs -------------------------------------------------------------------------------- /ModFinderClient/Mod/ModInstaller.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CasDragon/ModFinder/HEAD/ModFinderClient/Mod/ModInstaller.cs -------------------------------------------------------------------------------- /ModFinderClient/Mod/ModManifest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CasDragon/ModFinder/HEAD/ModFinderClient/Mod/ModManifest.cs -------------------------------------------------------------------------------- /ModFinderClient/Mod/ModVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CasDragon/ModFinder/HEAD/ModFinderClient/Mod/ModVersion.cs -------------------------------------------------------------------------------- /ModFinderClient/Mod/OwlcatModificationSettingsManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CasDragon/ModFinder/HEAD/ModFinderClient/Mod/OwlcatModificationSettingsManager.cs -------------------------------------------------------------------------------- /ModFinderClient/Mod/PortraitEarmark.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CasDragon/ModFinder/HEAD/ModFinderClient/Mod/PortraitEarmark.cs -------------------------------------------------------------------------------- /ModFinderClient/Mod/Tag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CasDragon/ModFinder/HEAD/ModFinderClient/Mod/Tag.cs -------------------------------------------------------------------------------- /ModFinderClient/ModFinder.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CasDragon/ModFinder/HEAD/ModFinderClient/ModFinder.csproj -------------------------------------------------------------------------------- /ModFinderClient/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CasDragon/ModFinder/HEAD/ModFinderClient/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /ModFinderClient/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CasDragon/ModFinder/HEAD/ModFinderClient/Properties/Settings.settings -------------------------------------------------------------------------------- /ModFinderClient/RT_Icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CasDragon/ModFinder/HEAD/ModFinderClient/RT_Icon.ico -------------------------------------------------------------------------------- /ModFinderClient/RT_Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CasDragon/ModFinder/HEAD/ModFinderClient/RT_Icon.png -------------------------------------------------------------------------------- /ModFinderClient/UI/BBCodeRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CasDragon/ModFinder/HEAD/ModFinderClient/UI/BBCodeRenderer.cs -------------------------------------------------------------------------------- /ModFinderClient/UI/ChangelogRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CasDragon/ModFinder/HEAD/ModFinderClient/UI/ChangelogRenderer.cs -------------------------------------------------------------------------------- /ModFinderClient/UI/FilterModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CasDragon/ModFinder/HEAD/ModFinderClient/UI/FilterModel.cs -------------------------------------------------------------------------------- /ModFinderClient/UI/MDRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CasDragon/ModFinder/HEAD/ModFinderClient/UI/MDRenderer.cs -------------------------------------------------------------------------------- /ModFinderClient/UI/ModDatabase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CasDragon/ModFinder/HEAD/ModFinderClient/UI/ModDatabase.cs -------------------------------------------------------------------------------- /ModFinderClient/UI/ModSort.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CasDragon/ModFinder/HEAD/ModFinderClient/UI/ModSort.cs -------------------------------------------------------------------------------- /ModFinderClient/UI/ModViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CasDragon/ModFinder/HEAD/ModFinderClient/UI/ModViewModel.cs -------------------------------------------------------------------------------- /ModFinderClient/UI/NonTopPopup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CasDragon/ModFinder/HEAD/ModFinderClient/UI/NonTopPopup.cs -------------------------------------------------------------------------------- /ModFinderClient/UI/SlideToggle.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CasDragon/ModFinder/HEAD/ModFinderClient/UI/SlideToggle.xaml -------------------------------------------------------------------------------- /ModFinderClient/UI/SlideToggle.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CasDragon/ModFinder/HEAD/ModFinderClient/UI/SlideToggle.xaml.cs -------------------------------------------------------------------------------- /ModFinderClient/Util/HttpHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CasDragon/ModFinder/HEAD/ModFinderClient/Util/HttpHelper.cs -------------------------------------------------------------------------------- /ModFinderClient/Util/IOTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CasDragon/ModFinder/HEAD/ModFinderClient/Util/IOTool.cs -------------------------------------------------------------------------------- /ModFinderClient/Util/Logger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CasDragon/ModFinder/HEAD/ModFinderClient/Util/Logger.cs -------------------------------------------------------------------------------- /ModFinderClient/Util/Settings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CasDragon/ModFinder/HEAD/ModFinderClient/Util/Settings.cs -------------------------------------------------------------------------------- /ModFinderClient/icons/Aquila1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CasDragon/ModFinder/HEAD/ModFinderClient/icons/Aquila1.png -------------------------------------------------------------------------------- /ModFinderClient/icons/Aquila2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CasDragon/ModFinder/HEAD/ModFinderClient/icons/Aquila2.png -------------------------------------------------------------------------------- /ModFinderClient/icons/Background_PopUp_v2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CasDragon/ModFinder/HEAD/ModFinderClient/icons/Background_PopUp_v2.png -------------------------------------------------------------------------------- /ModFinderClient/icons/Background_v2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CasDragon/ModFinder/HEAD/ModFinderClient/icons/Background_v2.png -------------------------------------------------------------------------------- /ModFinderClient/icons/MFRT_Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CasDragon/ModFinder/HEAD/ModFinderClient/icons/MFRT_Logo.png -------------------------------------------------------------------------------- /ModFinderClient/icons/MFRT_Logo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CasDragon/ModFinder/HEAD/ModFinderClient/icons/MFRT_Logo2.png -------------------------------------------------------------------------------- /ModFinderClient/icons/RT_Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CasDragon/ModFinder/HEAD/ModFinderClient/icons/RT_Logo.png -------------------------------------------------------------------------------- /ModFinderClient/icons/RT_Logo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CasDragon/ModFinder/HEAD/ModFinderClient/icons/RT_Logo2.png -------------------------------------------------------------------------------- /ModFinderClient/icons/UI_BoxButton_Click.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CasDragon/ModFinder/HEAD/ModFinderClient/icons/UI_BoxButton_Click.png -------------------------------------------------------------------------------- /ModFinderClient/icons/UI_BoxButton_Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CasDragon/ModFinder/HEAD/ModFinderClient/icons/UI_BoxButton_Default.png -------------------------------------------------------------------------------- /ModFinderClient/icons/UI_BoxButton_Disable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CasDragon/ModFinder/HEAD/ModFinderClient/icons/UI_BoxButton_Disable.png -------------------------------------------------------------------------------- /ModFinderClient/icons/UI_BoxButton_Hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CasDragon/ModFinder/HEAD/ModFinderClient/icons/UI_BoxButton_Hover.png -------------------------------------------------------------------------------- /ModFinderClient/icons/UI_Button_Click.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CasDragon/ModFinder/HEAD/ModFinderClient/icons/UI_Button_Click.png -------------------------------------------------------------------------------- /ModFinderClient/icons/UI_Button_Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CasDragon/ModFinder/HEAD/ModFinderClient/icons/UI_Button_Default.png -------------------------------------------------------------------------------- /ModFinderClient/icons/UI_Button_Disable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CasDragon/ModFinder/HEAD/ModFinderClient/icons/UI_Button_Disable.png -------------------------------------------------------------------------------- /ModFinderClient/icons/UI_Button_Hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CasDragon/ModFinder/HEAD/ModFinderClient/icons/UI_Button_Hover.png -------------------------------------------------------------------------------- /ModFinderClient/icons/UI_GlobalMap_BackNameShield_Hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CasDragon/ModFinder/HEAD/ModFinderClient/icons/UI_GlobalMap_BackNameShield_Hover.png -------------------------------------------------------------------------------- /ModFinderClient/icons/UI_HudIcon_Book_Active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CasDragon/ModFinder/HEAD/ModFinderClient/icons/UI_HudIcon_Book_Active.png -------------------------------------------------------------------------------- /ModFinderClient/icons/UI_HudIcon_Book_Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CasDragon/ModFinder/HEAD/ModFinderClient/icons/UI_HudIcon_Book_Default.png -------------------------------------------------------------------------------- /ModFinderClient/icons/UI_HudIcon_Book_Disable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CasDragon/ModFinder/HEAD/ModFinderClient/icons/UI_HudIcon_Book_Disable.png -------------------------------------------------------------------------------- /ModFinderClient/icons/UI_HudIcon_Book_Hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CasDragon/ModFinder/HEAD/ModFinderClient/icons/UI_HudIcon_Book_Hover.png -------------------------------------------------------------------------------- /ModFinderClient/icons/UI_HudIcon_Cancel_Active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CasDragon/ModFinder/HEAD/ModFinderClient/icons/UI_HudIcon_Cancel_Active.png -------------------------------------------------------------------------------- /ModFinderClient/icons/UI_HudIcon_Cancel_Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CasDragon/ModFinder/HEAD/ModFinderClient/icons/UI_HudIcon_Cancel_Default.png -------------------------------------------------------------------------------- /ModFinderClient/icons/UI_HudIcon_Cancel_Hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CasDragon/ModFinder/HEAD/ModFinderClient/icons/UI_HudIcon_Cancel_Hover.png -------------------------------------------------------------------------------- /ModFinderClient/icons/UI_HudIcon_EscAll_Active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CasDragon/ModFinder/HEAD/ModFinderClient/icons/UI_HudIcon_EscAll_Active.png -------------------------------------------------------------------------------- /ModFinderClient/icons/UI_HudIcon_EscAll_Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CasDragon/ModFinder/HEAD/ModFinderClient/icons/UI_HudIcon_EscAll_Default.png -------------------------------------------------------------------------------- /ModFinderClient/icons/UI_HudIcon_EscAll_Disable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CasDragon/ModFinder/HEAD/ModFinderClient/icons/UI_HudIcon_EscAll_Disable.png -------------------------------------------------------------------------------- /ModFinderClient/icons/UI_HudIcon_EscAll_Hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CasDragon/ModFinder/HEAD/ModFinderClient/icons/UI_HudIcon_EscAll_Hover.png -------------------------------------------------------------------------------- /ModFinderClient/icons/UI_HudIcon_Inspect_Active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CasDragon/ModFinder/HEAD/ModFinderClient/icons/UI_HudIcon_Inspect_Active.png -------------------------------------------------------------------------------- /ModFinderClient/icons/UI_HudIcon_Inspect_Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CasDragon/ModFinder/HEAD/ModFinderClient/icons/UI_HudIcon_Inspect_Default.png -------------------------------------------------------------------------------- /ModFinderClient/icons/UI_HudIcon_Inspect_Disable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CasDragon/ModFinder/HEAD/ModFinderClient/icons/UI_HudIcon_Inspect_Disable.png -------------------------------------------------------------------------------- /ModFinderClient/icons/UI_HudIcon_Inspect_Hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CasDragon/ModFinder/HEAD/ModFinderClient/icons/UI_HudIcon_Inspect_Hover.png -------------------------------------------------------------------------------- /ModFinderClient/icons/UI_HudIcon_Settings_Active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CasDragon/ModFinder/HEAD/ModFinderClient/icons/UI_HudIcon_Settings_Active.png -------------------------------------------------------------------------------- /ModFinderClient/icons/UI_HudIcon_Settings_Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CasDragon/ModFinder/HEAD/ModFinderClient/icons/UI_HudIcon_Settings_Default.png -------------------------------------------------------------------------------- /ModFinderClient/icons/UI_HudIcon_Settings_Hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CasDragon/ModFinder/HEAD/ModFinderClient/icons/UI_HudIcon_Settings_Hover.png -------------------------------------------------------------------------------- /ModFinderClient/icons/UI_HudIcon_Story_Active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CasDragon/ModFinder/HEAD/ModFinderClient/icons/UI_HudIcon_Story_Active.png -------------------------------------------------------------------------------- /ModFinderClient/icons/UI_HudIcon_Story_Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CasDragon/ModFinder/HEAD/ModFinderClient/icons/UI_HudIcon_Story_Default.png -------------------------------------------------------------------------------- /ModFinderClient/icons/UI_HudIcon_Story_Disable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CasDragon/ModFinder/HEAD/ModFinderClient/icons/UI_HudIcon_Story_Disable.png -------------------------------------------------------------------------------- /ModFinderClient/icons/UI_HudIcon_Story_Hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CasDragon/ModFinder/HEAD/ModFinderClient/icons/UI_HudIcon_Story_Hover.png -------------------------------------------------------------------------------- /ModFinderClient/icons/UI_HudIcon_Time_Active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CasDragon/ModFinder/HEAD/ModFinderClient/icons/UI_HudIcon_Time_Active.png -------------------------------------------------------------------------------- /ModFinderClient/icons/UI_HudIcon_Time_Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CasDragon/ModFinder/HEAD/ModFinderClient/icons/UI_HudIcon_Time_Default.png -------------------------------------------------------------------------------- /ModFinderClient/icons/UI_HudIcon_Time_Disable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CasDragon/ModFinder/HEAD/ModFinderClient/icons/UI_HudIcon_Time_Disable.png -------------------------------------------------------------------------------- /ModFinderClient/icons/UI_HudIcon_Time_Hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CasDragon/ModFinder/HEAD/ModFinderClient/icons/UI_HudIcon_Time_Hover.png -------------------------------------------------------------------------------- /ModFinderClient/icons/UI_Inventory_CloseButton_Click.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CasDragon/ModFinder/HEAD/ModFinderClient/icons/UI_Inventory_CloseButton_Click.png -------------------------------------------------------------------------------- /ModFinderClient/icons/UI_Inventory_CloseButton_Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CasDragon/ModFinder/HEAD/ModFinderClient/icons/UI_Inventory_CloseButton_Default.png -------------------------------------------------------------------------------- /ModFinderClient/icons/UI_Inventory_CloseButton_Hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CasDragon/ModFinder/HEAD/ModFinderClient/icons/UI_Inventory_CloseButton_Hover.png -------------------------------------------------------------------------------- /ModFinderClient/icons/UI_Journal_BigMenu_Border.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CasDragon/ModFinder/HEAD/ModFinderClient/icons/UI_Journal_BigMenu_Border.png -------------------------------------------------------------------------------- /ModFinderClient/icons/UI_Journal_Line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CasDragon/ModFinder/HEAD/ModFinderClient/icons/UI_Journal_Line.png -------------------------------------------------------------------------------- /ModFinderClient/icons/UI_RoundButton_Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CasDragon/ModFinder/HEAD/ModFinderClient/icons/UI_RoundButton_Default.png -------------------------------------------------------------------------------- /ModFinderClient/icons/UI_ScrollVertical_Arrow_Click.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CasDragon/ModFinder/HEAD/ModFinderClient/icons/UI_ScrollVertical_Arrow_Click.png -------------------------------------------------------------------------------- /ModFinderClient/icons/UI_ScrollVertical_Arrow_Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CasDragon/ModFinder/HEAD/ModFinderClient/icons/UI_ScrollVertical_Arrow_Default.png -------------------------------------------------------------------------------- /ModFinderClient/icons/UI_ScrollVertical_Arrow_Hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CasDragon/ModFinder/HEAD/ModFinderClient/icons/UI_ScrollVertical_Arrow_Hover.png -------------------------------------------------------------------------------- /ModFinderClient/icons/UI_ScrollVertical_BackLine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CasDragon/ModFinder/HEAD/ModFinderClient/icons/UI_ScrollVertical_BackLine.png -------------------------------------------------------------------------------- /ModFinderClient/icons/UI_ScrollVertical_Handl_Click.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CasDragon/ModFinder/HEAD/ModFinderClient/icons/UI_ScrollVertical_Handl_Click.png -------------------------------------------------------------------------------- /ModFinderClient/icons/UI_ScrollVertical_Handl_Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CasDragon/ModFinder/HEAD/ModFinderClient/icons/UI_ScrollVertical_Handl_Default.png -------------------------------------------------------------------------------- /ModFinderClient/icons/UI_ScrollVertical_Handl_Hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CasDragon/ModFinder/HEAD/ModFinderClient/icons/UI_ScrollVertical_Handl_Hover.png -------------------------------------------------------------------------------- /ModFinderClient/icons/UI_Toggler_BG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CasDragon/ModFinder/HEAD/ModFinderClient/icons/UI_Toggler_BG.png -------------------------------------------------------------------------------- /ModFinderClient/icons/drop-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CasDragon/ModFinder/HEAD/ModFinderClient/icons/drop-bg.png -------------------------------------------------------------------------------- /ModFinderClient/icons/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CasDragon/ModFinder/HEAD/ModFinderClient/icons/error.png -------------------------------------------------------------------------------- /ModFinderClient/icons/okay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CasDragon/ModFinder/HEAD/ModFinderClient/icons/okay.png -------------------------------------------------------------------------------- /ModFinderClient/icons/warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CasDragon/ModFinder/HEAD/ModFinderClient/icons/warning.png -------------------------------------------------------------------------------- /ModFinderClient/test_external.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CasDragon/ModFinder/HEAD/ModFinderClient/test_external.json -------------------------------------------------------------------------------- /ModFinderClient/test_generated.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CasDragon/ModFinder/HEAD/ModFinderClient/test_generated.json -------------------------------------------------------------------------------- /ModFinderClient/test_master.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CasDragon/ModFinder/HEAD/ModFinderClient/test_master.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CasDragon/ModFinder/HEAD/README.md -------------------------------------------------------------------------------- /ToDo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CasDragon/ModFinder/HEAD/ToDo.txt -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CasDragon/ModFinder/HEAD/manifest.json -------------------------------------------------------------------------------- /screenshots/Changelog_Window.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CasDragon/ModFinder/HEAD/screenshots/Changelog_Window.png -------------------------------------------------------------------------------- /screenshots/Description_Window.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CasDragon/ModFinder/HEAD/screenshots/Description_Window.png -------------------------------------------------------------------------------- /screenshots/main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CasDragon/ModFinder/HEAD/screenshots/main.png --------------------------------------------------------------------------------