├── .gitattributes ├── .github └── workflows │ └── main.yml ├── .gitignore ├── AutoSellInvSlot.png ├── AutoTrash.cs ├── AutoTrash.csproj ├── AutoTrash.csproj.user ├── AutoTrashClientConfig.cs ├── AutoTrashGlobalItem.cs ├── AutoTrashListUI.cs ├── AutoTrashPlayer.cs ├── AutoTrashServerConfig.cs ├── AutoTrashSystem.cs ├── ItemSlot.cs ├── Localization ├── TranslationsNeeded.txt ├── de-DE_Mods.AutoTrash.hjson ├── en-US_Mods.AutoTrash.hjson ├── es-ES_Mods.AutoTrash.hjson ├── fr-FR_Mods.AutoTrash.hjson ├── it-IT_Mods.AutoTrash.hjson ├── pl-PL_Mods.AutoTrash.hjson ├── pt-BR_Mods.AutoTrash.hjson ├── ru-RU_Mods.AutoTrash.hjson └── zh-Hans_Mods.AutoTrash.hjson ├── NewUITextBox.cs ├── Properties └── launchSettings.json ├── RecipeBrowserFilterNotAutotrashedIcon.png ├── UICheckbox.cs ├── UIGrid.cs ├── UIHoverImageButton.cs ├── checkBox.png ├── checkMark.png ├── closeButton.png ├── description.txt ├── description_workshop.txt ├── icon.png └── icon_workshop.png /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/AutoTrash/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/AutoTrash/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/AutoTrash/HEAD/.gitignore -------------------------------------------------------------------------------- /AutoSellInvSlot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/AutoTrash/HEAD/AutoSellInvSlot.png -------------------------------------------------------------------------------- /AutoTrash.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/AutoTrash/HEAD/AutoTrash.cs -------------------------------------------------------------------------------- /AutoTrash.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/AutoTrash/HEAD/AutoTrash.csproj -------------------------------------------------------------------------------- /AutoTrash.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/AutoTrash/HEAD/AutoTrash.csproj.user -------------------------------------------------------------------------------- /AutoTrashClientConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/AutoTrash/HEAD/AutoTrashClientConfig.cs -------------------------------------------------------------------------------- /AutoTrashGlobalItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/AutoTrash/HEAD/AutoTrashGlobalItem.cs -------------------------------------------------------------------------------- /AutoTrashListUI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/AutoTrash/HEAD/AutoTrashListUI.cs -------------------------------------------------------------------------------- /AutoTrashPlayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/AutoTrash/HEAD/AutoTrashPlayer.cs -------------------------------------------------------------------------------- /AutoTrashServerConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/AutoTrash/HEAD/AutoTrashServerConfig.cs -------------------------------------------------------------------------------- /AutoTrashSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/AutoTrash/HEAD/AutoTrashSystem.cs -------------------------------------------------------------------------------- /ItemSlot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/AutoTrash/HEAD/ItemSlot.cs -------------------------------------------------------------------------------- /Localization/TranslationsNeeded.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/AutoTrash/HEAD/Localization/TranslationsNeeded.txt -------------------------------------------------------------------------------- /Localization/de-DE_Mods.AutoTrash.hjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/AutoTrash/HEAD/Localization/de-DE_Mods.AutoTrash.hjson -------------------------------------------------------------------------------- /Localization/en-US_Mods.AutoTrash.hjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/AutoTrash/HEAD/Localization/en-US_Mods.AutoTrash.hjson -------------------------------------------------------------------------------- /Localization/es-ES_Mods.AutoTrash.hjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/AutoTrash/HEAD/Localization/es-ES_Mods.AutoTrash.hjson -------------------------------------------------------------------------------- /Localization/fr-FR_Mods.AutoTrash.hjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/AutoTrash/HEAD/Localization/fr-FR_Mods.AutoTrash.hjson -------------------------------------------------------------------------------- /Localization/it-IT_Mods.AutoTrash.hjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/AutoTrash/HEAD/Localization/it-IT_Mods.AutoTrash.hjson -------------------------------------------------------------------------------- /Localization/pl-PL_Mods.AutoTrash.hjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/AutoTrash/HEAD/Localization/pl-PL_Mods.AutoTrash.hjson -------------------------------------------------------------------------------- /Localization/pt-BR_Mods.AutoTrash.hjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/AutoTrash/HEAD/Localization/pt-BR_Mods.AutoTrash.hjson -------------------------------------------------------------------------------- /Localization/ru-RU_Mods.AutoTrash.hjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/AutoTrash/HEAD/Localization/ru-RU_Mods.AutoTrash.hjson -------------------------------------------------------------------------------- /Localization/zh-Hans_Mods.AutoTrash.hjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/AutoTrash/HEAD/Localization/zh-Hans_Mods.AutoTrash.hjson -------------------------------------------------------------------------------- /NewUITextBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/AutoTrash/HEAD/NewUITextBox.cs -------------------------------------------------------------------------------- /Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/AutoTrash/HEAD/Properties/launchSettings.json -------------------------------------------------------------------------------- /RecipeBrowserFilterNotAutotrashedIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/AutoTrash/HEAD/RecipeBrowserFilterNotAutotrashedIcon.png -------------------------------------------------------------------------------- /UICheckbox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/AutoTrash/HEAD/UICheckbox.cs -------------------------------------------------------------------------------- /UIGrid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/AutoTrash/HEAD/UIGrid.cs -------------------------------------------------------------------------------- /UIHoverImageButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/AutoTrash/HEAD/UIHoverImageButton.cs -------------------------------------------------------------------------------- /checkBox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/AutoTrash/HEAD/checkBox.png -------------------------------------------------------------------------------- /checkMark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/AutoTrash/HEAD/checkMark.png -------------------------------------------------------------------------------- /closeButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/AutoTrash/HEAD/closeButton.png -------------------------------------------------------------------------------- /description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/AutoTrash/HEAD/description.txt -------------------------------------------------------------------------------- /description_workshop.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/AutoTrash/HEAD/description_workshop.txt -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/AutoTrash/HEAD/icon.png -------------------------------------------------------------------------------- /icon_workshop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavidPack/AutoTrash/HEAD/icon_workshop.png --------------------------------------------------------------------------------