├── .gitattributes ├── .github ├── FUNDING.yml └── workflows │ └── main.yml ├── .gitignore ├── BestiaryUI.cs ├── CraftUI.cs ├── HelpUI.cs ├── Images ├── CanCraftBackground.png ├── CanCraftExtendedBackground.png ├── FavoritedOverlay.png ├── Help │ ├── CraftIcon.png │ ├── Inventory_Back8.png │ ├── Item_2430.png │ ├── Item_531.png │ ├── Item_54.png │ ├── mpFavorited.png │ ├── sortsExplanation.psd │ ├── sortsExplanation_en-US.png │ ├── sortsExplanation_fr-FR.png │ ├── sortsExplanation_pt-BR.png │ ├── sortsExplanation_zh-Hans.png │ └── uniqueTile.png ├── SelectedOverlay.png ├── bugNet.png ├── categoryArmorSets.png ├── duplicateOff.png ├── duplicateOn.png ├── filterMod.png ├── filterModColorable.png ├── filterModColorable_ru-RU.png ├── filterMod_ru-RU.png ├── sortAZ.png ├── sortAmmo.png ├── sortAxe.png ├── sortBait.png ├── sortDamage.png ├── sortDefense.png ├── sortFish.png ├── sortFood.png ├── sortHammer.png ├── sortItemID.png ├── sortPick.png ├── sortValue.png ├── sortWingsAccelerationMultiplier.png ├── sortWingsFlightTime.png ├── sortWingsHorizontalSpeed.png ├── spacer.png └── uniqueTile.png ├── ItemCatalogueUI.cs ├── Localization ├── TranslationsNeeded.txt ├── UpdateLocalizationFiles.py ├── de-DE.hjson ├── en-US.hjson ├── es-ES.hjson ├── fr-FR.hjson ├── it-IT.hjson ├── pl-PL.hjson ├── pt-BR.hjson ├── ru-RU.hjson └── zh-Hans.hjson ├── LootCache.cs ├── LootUnifiedRandom.cs ├── Patches.cs ├── Properties └── launchSettings.json ├── RecipeBrowser.cs ├── RecipeBrowser.csproj ├── RecipeBrowser.sln ├── RecipeBrowserClientConfig.cs ├── RecipeBrowserGlobalItem.cs ├── RecipeBrowserPlayer.cs ├── RecipeBrowserTool.cs ├── RecipeBrowserUI.cs ├── RecipeCatalogueUI.cs ├── RecipePath.cs ├── SharedUI.cs ├── TagHandlers ├── ImageHandler.cs ├── ItemHoverFixHandler.cs ├── LinkHandler.cs └── NPCHandler.cs ├── Tool.cs ├── UIElements ├── BlockInputElement.cs ├── FixedUIScrollBar.cs ├── ModFilterDropdown.cs ├── MoreDown.png ├── MoreLeft.png ├── MoreRight.png ├── MoreUp.png ├── NewUITextBox.cs ├── OpenKeybindingsMenuButton.cs ├── PrettyUITextBox.cs ├── ScrollbarHorizontal.png ├── ScrollbarInnerHorizontal.png ├── ShowOtherPlayersRecipesToggle.png ├── TickOnOff.png ├── UIArmorSetCatalogueItemSlot.cs ├── UIBestiaryQueryItemSlot.cs ├── UIBottomlessPanel.cs ├── UICheckbox.cs ├── UICraftButton.cs ├── UICraftQueryItemSlot.cs ├── UICycleImage.cs ├── UIDragableElement.cs ├── UIDragablePanel.cs ├── UIElementHelpers.cs ├── UIGrid.cs ├── UIHorizontalGrid.cs ├── UIHorizontalScrollbar.cs ├── UIHoverImageButton.cs ├── UIHoverImageButtonMod.cs ├── UIIngredientSlot.cs ├── UIItemSlot.cs ├── UIJourneyDuplicateButton.cs ├── UIMockRecipeSlot.cs ├── UIModState.cs ├── UINPCSlot.cs ├── UIQueryItemSlot.cs ├── UIRadioButton.cs ├── UIRadioButtonGroup.cs ├── UIRecipeCatalogueQueryItemSlot.cs ├── UIRecipeInfo.cs ├── UIRecipeInfoRightAligned.cs ├── UIRecipePath.cs ├── UIRecipeProgress.cs ├── UIRecipeSlot.cs ├── UISilentImageButton.cs ├── UITabControl.cs ├── UITextSnippet.cs ├── UITileSlot.cs ├── UITrackIngredientSlot.cs ├── checkBox.png ├── checkMark.png ├── closeButton.png ├── historyBack.png └── historyForward.png ├── UISystem.cs ├── Utilities.cs ├── description.txt ├── description_workshop.txt ├── icon.png ├── icon_workshop.png └── unused ├── ButtonMinus.png ├── ButtonPlus.png ├── Inventory_Back2.png ├── Reforge_0.png ├── Reforge_1.png ├── UISlideWindow.cs ├── URLHandler.cs ├── checkX.png ├── eyedropper.png ├── history.psd ├── littleGreenCheckMark.png └── tileIcon.png /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/RecipeBrowser/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/RecipeBrowser/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/RecipeBrowser/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | bin 2 | obj 3 | *.user 4 | App.config 5 | .vs/ -------------------------------------------------------------------------------- /BestiaryUI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/RecipeBrowser/HEAD/BestiaryUI.cs -------------------------------------------------------------------------------- /CraftUI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/RecipeBrowser/HEAD/CraftUI.cs -------------------------------------------------------------------------------- /HelpUI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/RecipeBrowser/HEAD/HelpUI.cs -------------------------------------------------------------------------------- /Images/CanCraftBackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/RecipeBrowser/HEAD/Images/CanCraftBackground.png -------------------------------------------------------------------------------- /Images/CanCraftExtendedBackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/RecipeBrowser/HEAD/Images/CanCraftExtendedBackground.png -------------------------------------------------------------------------------- /Images/FavoritedOverlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/RecipeBrowser/HEAD/Images/FavoritedOverlay.png -------------------------------------------------------------------------------- /Images/Help/CraftIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/RecipeBrowser/HEAD/Images/Help/CraftIcon.png -------------------------------------------------------------------------------- /Images/Help/Inventory_Back8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/RecipeBrowser/HEAD/Images/Help/Inventory_Back8.png -------------------------------------------------------------------------------- /Images/Help/Item_2430.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/RecipeBrowser/HEAD/Images/Help/Item_2430.png -------------------------------------------------------------------------------- /Images/Help/Item_531.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/RecipeBrowser/HEAD/Images/Help/Item_531.png -------------------------------------------------------------------------------- /Images/Help/Item_54.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/RecipeBrowser/HEAD/Images/Help/Item_54.png -------------------------------------------------------------------------------- /Images/Help/mpFavorited.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/RecipeBrowser/HEAD/Images/Help/mpFavorited.png -------------------------------------------------------------------------------- /Images/Help/sortsExplanation.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/RecipeBrowser/HEAD/Images/Help/sortsExplanation.psd -------------------------------------------------------------------------------- /Images/Help/sortsExplanation_en-US.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/RecipeBrowser/HEAD/Images/Help/sortsExplanation_en-US.png -------------------------------------------------------------------------------- /Images/Help/sortsExplanation_fr-FR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/RecipeBrowser/HEAD/Images/Help/sortsExplanation_fr-FR.png -------------------------------------------------------------------------------- /Images/Help/sortsExplanation_pt-BR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/RecipeBrowser/HEAD/Images/Help/sortsExplanation_pt-BR.png -------------------------------------------------------------------------------- /Images/Help/sortsExplanation_zh-Hans.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/RecipeBrowser/HEAD/Images/Help/sortsExplanation_zh-Hans.png -------------------------------------------------------------------------------- /Images/Help/uniqueTile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/RecipeBrowser/HEAD/Images/Help/uniqueTile.png -------------------------------------------------------------------------------- /Images/SelectedOverlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/RecipeBrowser/HEAD/Images/SelectedOverlay.png -------------------------------------------------------------------------------- /Images/bugNet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/RecipeBrowser/HEAD/Images/bugNet.png -------------------------------------------------------------------------------- /Images/categoryArmorSets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/RecipeBrowser/HEAD/Images/categoryArmorSets.png -------------------------------------------------------------------------------- /Images/duplicateOff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/RecipeBrowser/HEAD/Images/duplicateOff.png -------------------------------------------------------------------------------- /Images/duplicateOn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/RecipeBrowser/HEAD/Images/duplicateOn.png -------------------------------------------------------------------------------- /Images/filterMod.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/RecipeBrowser/HEAD/Images/filterMod.png -------------------------------------------------------------------------------- /Images/filterModColorable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/RecipeBrowser/HEAD/Images/filterModColorable.png -------------------------------------------------------------------------------- /Images/filterModColorable_ru-RU.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/RecipeBrowser/HEAD/Images/filterModColorable_ru-RU.png -------------------------------------------------------------------------------- /Images/filterMod_ru-RU.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/RecipeBrowser/HEAD/Images/filterMod_ru-RU.png -------------------------------------------------------------------------------- /Images/sortAZ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/RecipeBrowser/HEAD/Images/sortAZ.png -------------------------------------------------------------------------------- /Images/sortAmmo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/RecipeBrowser/HEAD/Images/sortAmmo.png -------------------------------------------------------------------------------- /Images/sortAxe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/RecipeBrowser/HEAD/Images/sortAxe.png -------------------------------------------------------------------------------- /Images/sortBait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/RecipeBrowser/HEAD/Images/sortBait.png -------------------------------------------------------------------------------- /Images/sortDamage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/RecipeBrowser/HEAD/Images/sortDamage.png -------------------------------------------------------------------------------- /Images/sortDefense.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/RecipeBrowser/HEAD/Images/sortDefense.png -------------------------------------------------------------------------------- /Images/sortFish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/RecipeBrowser/HEAD/Images/sortFish.png -------------------------------------------------------------------------------- /Images/sortFood.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/RecipeBrowser/HEAD/Images/sortFood.png -------------------------------------------------------------------------------- /Images/sortHammer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/RecipeBrowser/HEAD/Images/sortHammer.png -------------------------------------------------------------------------------- /Images/sortItemID.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/RecipeBrowser/HEAD/Images/sortItemID.png -------------------------------------------------------------------------------- /Images/sortPick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/RecipeBrowser/HEAD/Images/sortPick.png -------------------------------------------------------------------------------- /Images/sortValue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/RecipeBrowser/HEAD/Images/sortValue.png -------------------------------------------------------------------------------- /Images/sortWingsAccelerationMultiplier.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/RecipeBrowser/HEAD/Images/sortWingsAccelerationMultiplier.png -------------------------------------------------------------------------------- /Images/sortWingsFlightTime.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/RecipeBrowser/HEAD/Images/sortWingsFlightTime.png -------------------------------------------------------------------------------- /Images/sortWingsHorizontalSpeed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/RecipeBrowser/HEAD/Images/sortWingsHorizontalSpeed.png -------------------------------------------------------------------------------- /Images/spacer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/RecipeBrowser/HEAD/Images/spacer.png -------------------------------------------------------------------------------- /Images/uniqueTile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/RecipeBrowser/HEAD/Images/uniqueTile.png -------------------------------------------------------------------------------- /ItemCatalogueUI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/RecipeBrowser/HEAD/ItemCatalogueUI.cs -------------------------------------------------------------------------------- /Localization/TranslationsNeeded.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/RecipeBrowser/HEAD/Localization/TranslationsNeeded.txt -------------------------------------------------------------------------------- /Localization/UpdateLocalizationFiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/RecipeBrowser/HEAD/Localization/UpdateLocalizationFiles.py -------------------------------------------------------------------------------- /Localization/de-DE.hjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/RecipeBrowser/HEAD/Localization/de-DE.hjson -------------------------------------------------------------------------------- /Localization/en-US.hjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/RecipeBrowser/HEAD/Localization/en-US.hjson -------------------------------------------------------------------------------- /Localization/es-ES.hjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/RecipeBrowser/HEAD/Localization/es-ES.hjson -------------------------------------------------------------------------------- /Localization/fr-FR.hjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/RecipeBrowser/HEAD/Localization/fr-FR.hjson -------------------------------------------------------------------------------- /Localization/it-IT.hjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/RecipeBrowser/HEAD/Localization/it-IT.hjson -------------------------------------------------------------------------------- /Localization/pl-PL.hjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/RecipeBrowser/HEAD/Localization/pl-PL.hjson -------------------------------------------------------------------------------- /Localization/pt-BR.hjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/RecipeBrowser/HEAD/Localization/pt-BR.hjson -------------------------------------------------------------------------------- /Localization/ru-RU.hjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/RecipeBrowser/HEAD/Localization/ru-RU.hjson -------------------------------------------------------------------------------- /Localization/zh-Hans.hjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/RecipeBrowser/HEAD/Localization/zh-Hans.hjson -------------------------------------------------------------------------------- /LootCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/RecipeBrowser/HEAD/LootCache.cs -------------------------------------------------------------------------------- /LootUnifiedRandom.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/RecipeBrowser/HEAD/LootUnifiedRandom.cs -------------------------------------------------------------------------------- /Patches.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/RecipeBrowser/HEAD/Patches.cs -------------------------------------------------------------------------------- /Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/RecipeBrowser/HEAD/Properties/launchSettings.json -------------------------------------------------------------------------------- /RecipeBrowser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/RecipeBrowser/HEAD/RecipeBrowser.cs -------------------------------------------------------------------------------- /RecipeBrowser.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/RecipeBrowser/HEAD/RecipeBrowser.csproj -------------------------------------------------------------------------------- /RecipeBrowser.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/RecipeBrowser/HEAD/RecipeBrowser.sln -------------------------------------------------------------------------------- /RecipeBrowserClientConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/RecipeBrowser/HEAD/RecipeBrowserClientConfig.cs -------------------------------------------------------------------------------- /RecipeBrowserGlobalItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/RecipeBrowser/HEAD/RecipeBrowserGlobalItem.cs -------------------------------------------------------------------------------- /RecipeBrowserPlayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/RecipeBrowser/HEAD/RecipeBrowserPlayer.cs -------------------------------------------------------------------------------- /RecipeBrowserTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/RecipeBrowser/HEAD/RecipeBrowserTool.cs -------------------------------------------------------------------------------- /RecipeBrowserUI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/RecipeBrowser/HEAD/RecipeBrowserUI.cs -------------------------------------------------------------------------------- /RecipeCatalogueUI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/RecipeBrowser/HEAD/RecipeCatalogueUI.cs -------------------------------------------------------------------------------- /RecipePath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/RecipeBrowser/HEAD/RecipePath.cs -------------------------------------------------------------------------------- /SharedUI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/RecipeBrowser/HEAD/SharedUI.cs -------------------------------------------------------------------------------- /TagHandlers/ImageHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/RecipeBrowser/HEAD/TagHandlers/ImageHandler.cs -------------------------------------------------------------------------------- /TagHandlers/ItemHoverFixHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/RecipeBrowser/HEAD/TagHandlers/ItemHoverFixHandler.cs -------------------------------------------------------------------------------- /TagHandlers/LinkHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/RecipeBrowser/HEAD/TagHandlers/LinkHandler.cs -------------------------------------------------------------------------------- /TagHandlers/NPCHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/RecipeBrowser/HEAD/TagHandlers/NPCHandler.cs -------------------------------------------------------------------------------- /Tool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/RecipeBrowser/HEAD/Tool.cs -------------------------------------------------------------------------------- /UIElements/BlockInputElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/RecipeBrowser/HEAD/UIElements/BlockInputElement.cs -------------------------------------------------------------------------------- /UIElements/FixedUIScrollBar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/RecipeBrowser/HEAD/UIElements/FixedUIScrollBar.cs -------------------------------------------------------------------------------- /UIElements/ModFilterDropdown.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/RecipeBrowser/HEAD/UIElements/ModFilterDropdown.cs -------------------------------------------------------------------------------- /UIElements/MoreDown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/RecipeBrowser/HEAD/UIElements/MoreDown.png -------------------------------------------------------------------------------- /UIElements/MoreLeft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/RecipeBrowser/HEAD/UIElements/MoreLeft.png -------------------------------------------------------------------------------- /UIElements/MoreRight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/RecipeBrowser/HEAD/UIElements/MoreRight.png -------------------------------------------------------------------------------- /UIElements/MoreUp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/RecipeBrowser/HEAD/UIElements/MoreUp.png -------------------------------------------------------------------------------- /UIElements/NewUITextBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/RecipeBrowser/HEAD/UIElements/NewUITextBox.cs -------------------------------------------------------------------------------- /UIElements/OpenKeybindingsMenuButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/RecipeBrowser/HEAD/UIElements/OpenKeybindingsMenuButton.cs -------------------------------------------------------------------------------- /UIElements/PrettyUITextBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/RecipeBrowser/HEAD/UIElements/PrettyUITextBox.cs -------------------------------------------------------------------------------- /UIElements/ScrollbarHorizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/RecipeBrowser/HEAD/UIElements/ScrollbarHorizontal.png -------------------------------------------------------------------------------- /UIElements/ScrollbarInnerHorizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/RecipeBrowser/HEAD/UIElements/ScrollbarInnerHorizontal.png -------------------------------------------------------------------------------- /UIElements/ShowOtherPlayersRecipesToggle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/RecipeBrowser/HEAD/UIElements/ShowOtherPlayersRecipesToggle.png -------------------------------------------------------------------------------- /UIElements/TickOnOff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/RecipeBrowser/HEAD/UIElements/TickOnOff.png -------------------------------------------------------------------------------- /UIElements/UIArmorSetCatalogueItemSlot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/RecipeBrowser/HEAD/UIElements/UIArmorSetCatalogueItemSlot.cs -------------------------------------------------------------------------------- /UIElements/UIBestiaryQueryItemSlot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/RecipeBrowser/HEAD/UIElements/UIBestiaryQueryItemSlot.cs -------------------------------------------------------------------------------- /UIElements/UIBottomlessPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/RecipeBrowser/HEAD/UIElements/UIBottomlessPanel.cs -------------------------------------------------------------------------------- /UIElements/UICheckbox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/RecipeBrowser/HEAD/UIElements/UICheckbox.cs -------------------------------------------------------------------------------- /UIElements/UICraftButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/RecipeBrowser/HEAD/UIElements/UICraftButton.cs -------------------------------------------------------------------------------- /UIElements/UICraftQueryItemSlot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/RecipeBrowser/HEAD/UIElements/UICraftQueryItemSlot.cs -------------------------------------------------------------------------------- /UIElements/UICycleImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/RecipeBrowser/HEAD/UIElements/UICycleImage.cs -------------------------------------------------------------------------------- /UIElements/UIDragableElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/RecipeBrowser/HEAD/UIElements/UIDragableElement.cs -------------------------------------------------------------------------------- /UIElements/UIDragablePanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/RecipeBrowser/HEAD/UIElements/UIDragablePanel.cs -------------------------------------------------------------------------------- /UIElements/UIElementHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/RecipeBrowser/HEAD/UIElements/UIElementHelpers.cs -------------------------------------------------------------------------------- /UIElements/UIGrid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/RecipeBrowser/HEAD/UIElements/UIGrid.cs -------------------------------------------------------------------------------- /UIElements/UIHorizontalGrid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/RecipeBrowser/HEAD/UIElements/UIHorizontalGrid.cs -------------------------------------------------------------------------------- /UIElements/UIHorizontalScrollbar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/RecipeBrowser/HEAD/UIElements/UIHorizontalScrollbar.cs -------------------------------------------------------------------------------- /UIElements/UIHoverImageButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/RecipeBrowser/HEAD/UIElements/UIHoverImageButton.cs -------------------------------------------------------------------------------- /UIElements/UIHoverImageButtonMod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/RecipeBrowser/HEAD/UIElements/UIHoverImageButtonMod.cs -------------------------------------------------------------------------------- /UIElements/UIIngredientSlot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/RecipeBrowser/HEAD/UIElements/UIIngredientSlot.cs -------------------------------------------------------------------------------- /UIElements/UIItemSlot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/RecipeBrowser/HEAD/UIElements/UIItemSlot.cs -------------------------------------------------------------------------------- /UIElements/UIJourneyDuplicateButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/RecipeBrowser/HEAD/UIElements/UIJourneyDuplicateButton.cs -------------------------------------------------------------------------------- /UIElements/UIMockRecipeSlot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/RecipeBrowser/HEAD/UIElements/UIMockRecipeSlot.cs -------------------------------------------------------------------------------- /UIElements/UIModState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/RecipeBrowser/HEAD/UIElements/UIModState.cs -------------------------------------------------------------------------------- /UIElements/UINPCSlot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/RecipeBrowser/HEAD/UIElements/UINPCSlot.cs -------------------------------------------------------------------------------- /UIElements/UIQueryItemSlot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/RecipeBrowser/HEAD/UIElements/UIQueryItemSlot.cs -------------------------------------------------------------------------------- /UIElements/UIRadioButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/RecipeBrowser/HEAD/UIElements/UIRadioButton.cs -------------------------------------------------------------------------------- /UIElements/UIRadioButtonGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/RecipeBrowser/HEAD/UIElements/UIRadioButtonGroup.cs -------------------------------------------------------------------------------- /UIElements/UIRecipeCatalogueQueryItemSlot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/RecipeBrowser/HEAD/UIElements/UIRecipeCatalogueQueryItemSlot.cs -------------------------------------------------------------------------------- /UIElements/UIRecipeInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/RecipeBrowser/HEAD/UIElements/UIRecipeInfo.cs -------------------------------------------------------------------------------- /UIElements/UIRecipeInfoRightAligned.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/RecipeBrowser/HEAD/UIElements/UIRecipeInfoRightAligned.cs -------------------------------------------------------------------------------- /UIElements/UIRecipePath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/RecipeBrowser/HEAD/UIElements/UIRecipePath.cs -------------------------------------------------------------------------------- /UIElements/UIRecipeProgress.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/RecipeBrowser/HEAD/UIElements/UIRecipeProgress.cs -------------------------------------------------------------------------------- /UIElements/UIRecipeSlot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/RecipeBrowser/HEAD/UIElements/UIRecipeSlot.cs -------------------------------------------------------------------------------- /UIElements/UISilentImageButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/RecipeBrowser/HEAD/UIElements/UISilentImageButton.cs -------------------------------------------------------------------------------- /UIElements/UITabControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/RecipeBrowser/HEAD/UIElements/UITabControl.cs -------------------------------------------------------------------------------- /UIElements/UITextSnippet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/RecipeBrowser/HEAD/UIElements/UITextSnippet.cs -------------------------------------------------------------------------------- /UIElements/UITileSlot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/RecipeBrowser/HEAD/UIElements/UITileSlot.cs -------------------------------------------------------------------------------- /UIElements/UITrackIngredientSlot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/RecipeBrowser/HEAD/UIElements/UITrackIngredientSlot.cs -------------------------------------------------------------------------------- /UIElements/checkBox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/RecipeBrowser/HEAD/UIElements/checkBox.png -------------------------------------------------------------------------------- /UIElements/checkMark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/RecipeBrowser/HEAD/UIElements/checkMark.png -------------------------------------------------------------------------------- /UIElements/closeButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/RecipeBrowser/HEAD/UIElements/closeButton.png -------------------------------------------------------------------------------- /UIElements/historyBack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/RecipeBrowser/HEAD/UIElements/historyBack.png -------------------------------------------------------------------------------- /UIElements/historyForward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/RecipeBrowser/HEAD/UIElements/historyForward.png -------------------------------------------------------------------------------- /UISystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/RecipeBrowser/HEAD/UISystem.cs -------------------------------------------------------------------------------- /Utilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/RecipeBrowser/HEAD/Utilities.cs -------------------------------------------------------------------------------- /description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/RecipeBrowser/HEAD/description.txt -------------------------------------------------------------------------------- /description_workshop.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/RecipeBrowser/HEAD/description_workshop.txt -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/RecipeBrowser/HEAD/icon.png -------------------------------------------------------------------------------- /icon_workshop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/RecipeBrowser/HEAD/icon_workshop.png -------------------------------------------------------------------------------- /unused/ButtonMinus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/RecipeBrowser/HEAD/unused/ButtonMinus.png -------------------------------------------------------------------------------- /unused/ButtonPlus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/RecipeBrowser/HEAD/unused/ButtonPlus.png -------------------------------------------------------------------------------- /unused/Inventory_Back2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/RecipeBrowser/HEAD/unused/Inventory_Back2.png -------------------------------------------------------------------------------- /unused/Reforge_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/RecipeBrowser/HEAD/unused/Reforge_0.png -------------------------------------------------------------------------------- /unused/Reforge_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/RecipeBrowser/HEAD/unused/Reforge_1.png -------------------------------------------------------------------------------- /unused/UISlideWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/RecipeBrowser/HEAD/unused/UISlideWindow.cs -------------------------------------------------------------------------------- /unused/URLHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/RecipeBrowser/HEAD/unused/URLHandler.cs -------------------------------------------------------------------------------- /unused/checkX.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/RecipeBrowser/HEAD/unused/checkX.png -------------------------------------------------------------------------------- /unused/eyedropper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/RecipeBrowser/HEAD/unused/eyedropper.png -------------------------------------------------------------------------------- /unused/history.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/RecipeBrowser/HEAD/unused/history.psd -------------------------------------------------------------------------------- /unused/littleGreenCheckMark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/RecipeBrowser/HEAD/unused/littleGreenCheckMark.png -------------------------------------------------------------------------------- /unused/tileIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/RecipeBrowser/HEAD/unused/tileIcon.png --------------------------------------------------------------------------------