├── .editorconfig ├── .gitattributes ├── .github ├── FUNDING.yml └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── App.config ├── GarlicPress.csproj ├── GarlicPress.sln ├── LICENSE ├── Properties ├── Resources.Designer.cs ├── Resources.resx ├── Settings.Designer.cs ├── Settings.settings └── launchSettings.json ├── README.md ├── assets ├── SampleText.psd ├── SampleTextCenter.png ├── SampleTextLeft.png ├── SampleTextRight.png ├── garlicConnect.ico ├── garlicDisconnect.ico └── garlicPreview.ico ├── classes ├── ADBConnection.cs ├── DebugLog.cs ├── GameMediaGeneration.cs ├── GarlicSkin.cs ├── Program.cs ├── ScreenScraper.cs ├── Updater.cs └── bitmapClasses │ ├── BitmapFilterConverter.cs │ ├── BitmapUtilites.cs │ └── Filters.cs ├── components ├── MarkdownViewer.razor ├── MediaContent.razor ├── MediaGenerationEditor.razor ├── MediaLayerControl.razor ├── MediaLayers.razor ├── _Imports.razor ├── filters │ ├── BlurFilterComponent.razor │ ├── BrightnessFilterComponent.razor │ ├── ContrastFilterComponent.razor │ ├── GaussianBlurFilterComponent.razor │ ├── GradientFilterComponent.razor │ ├── SaturationFilterComponent.razor │ └── TransparencyFilterComponent.razor ├── mediaLayerCollection │ ├── AddMediaLayoutCollectionModal.razor │ ├── DeleteConfirmationModal.razor │ └── EditMediaLayoutCollectionModal.razor └── shared │ ├── AnchorNavigation.razor │ ├── Button.razor │ ├── ColorInput.razor │ ├── FabricCanvas.razor │ ├── FabricCanvas.razor.js │ ├── GarlicLoading.razor │ ├── Input.razor │ ├── ModalComponent.razor │ ├── ModalComponent.razor.js │ ├── NumberSlider.razor │ └── Select.razor ├── constants └── PathConstants.cs ├── enableADB ├── forms ├── AboutForm.Designer.cs ├── AboutForm.cs ├── AboutForm.resx ├── ConsoleForm.Designer.cs ├── ConsoleForm.cs ├── ConsoleForm.resx ├── DebugLogForm.Designer.cs ├── DebugLogForm.cs ├── DebugLogForm.resx ├── DocumentationForm.Designer.cs ├── DocumentationForm.cs ├── DocumentationForm.resx ├── EditMediaLayersForm.Designer.cs ├── EditMediaLayersForm.cs ├── EditMediaLayersForm.resx ├── GameArtUpdateForm.Designer.cs ├── GameArtUpdateForm.cs ├── GameArtUpdateForm.resx ├── MainForm.Designer.cs ├── MainForm.cs ├── MainForm.resx ├── PreviewForm.Designer.cs ├── PreviewForm.cs ├── PreviewForm.resx ├── SettingsForm.Designer.cs ├── SettingsForm.cs ├── SettingsForm.resx ├── SkinSettingsForm.Designer.cs ├── SkinSettingsForm.cs ├── SkinSettingsForm.resx ├── SkinSettingsFormDialog.Designer.cs ├── SkinSettingsFormDialog.cs ├── SkinSettingsFormDialog.resx ├── UpdateForm.Designer.cs ├── UpdateForm.cs └── UpdateForm.resx ├── help.md ├── libman.json ├── models └── Models.cs ├── package.json ├── tailwind.config.js ├── tailwind.extension.json └── wwwroot ├── MediaEditor.html ├── css ├── app.css ├── tw.css └── tw.output.css ├── docs ├── GarlicPressAddMediaLayerCollection.gif ├── GarlicPressAddingMedia.gif ├── GarlicPressConnecting.gif ├── GarlicPressDeleteMediaLayerCollection.gif ├── GarlicPressEditMediaLayerFromControls.gif ├── GarlicPressGameUpdateSearch.png ├── GarlicPressMain.png ├── GarlicPressMediaLayerCollection.gif ├── GarlicPressMediaLayerCollections.png ├── GarlicPressMediaLayerEditor.gif ├── GarlicPressMediaLayerPosition.gif ├── GarlicPressMediaLayerRotation.gif ├── GarlicPressMediaLayerSize.gif ├── GarlicPressOpenSkinSettings.png ├── GarlicPressRoms.gif ├── GarlicPressScreenScraperLogin.png ├── GarlicPressSkinSettings.png ├── GarlicPressSkinSettingsActiveColor.png ├── GarlicPressSkinSettingsCenterAligned.png ├── GarlicPressSkinSettingsColorPicker.png ├── GarlicPressSkinSettingsFonts.png ├── GarlicPressSkinSettingsGuideColor.png ├── GarlicPressSkinSettingsInactiveColor.png ├── GarlicPressSkinSettingsLeftAligned.png ├── GarlicPressSkinSettingsRightAligned.png ├── GarlicPressUpdateArt.png ├── GarlicPressUpdateGameArt.gif └── GarlicPressUpdateMediaLayerCollection.gif └── index.html /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosthetichead/GarlicPress/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosthetichead/GarlicPress/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosthetichead/GarlicPress/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosthetichead/GarlicPress/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosthetichead/GarlicPress/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosthetichead/GarlicPress/HEAD/.gitignore -------------------------------------------------------------------------------- /App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosthetichead/GarlicPress/HEAD/App.config -------------------------------------------------------------------------------- /GarlicPress.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosthetichead/GarlicPress/HEAD/GarlicPress.csproj -------------------------------------------------------------------------------- /GarlicPress.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosthetichead/GarlicPress/HEAD/GarlicPress.sln -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosthetichead/GarlicPress/HEAD/LICENSE -------------------------------------------------------------------------------- /Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosthetichead/GarlicPress/HEAD/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosthetichead/GarlicPress/HEAD/Properties/Resources.resx -------------------------------------------------------------------------------- /Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosthetichead/GarlicPress/HEAD/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosthetichead/GarlicPress/HEAD/Properties/Settings.settings -------------------------------------------------------------------------------- /Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosthetichead/GarlicPress/HEAD/Properties/launchSettings.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosthetichead/GarlicPress/HEAD/README.md -------------------------------------------------------------------------------- /assets/SampleText.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosthetichead/GarlicPress/HEAD/assets/SampleText.psd -------------------------------------------------------------------------------- /assets/SampleTextCenter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosthetichead/GarlicPress/HEAD/assets/SampleTextCenter.png -------------------------------------------------------------------------------- /assets/SampleTextLeft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosthetichead/GarlicPress/HEAD/assets/SampleTextLeft.png -------------------------------------------------------------------------------- /assets/SampleTextRight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosthetichead/GarlicPress/HEAD/assets/SampleTextRight.png -------------------------------------------------------------------------------- /assets/garlicConnect.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosthetichead/GarlicPress/HEAD/assets/garlicConnect.ico -------------------------------------------------------------------------------- /assets/garlicDisconnect.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosthetichead/GarlicPress/HEAD/assets/garlicDisconnect.ico -------------------------------------------------------------------------------- /assets/garlicPreview.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosthetichead/GarlicPress/HEAD/assets/garlicPreview.ico -------------------------------------------------------------------------------- /classes/ADBConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosthetichead/GarlicPress/HEAD/classes/ADBConnection.cs -------------------------------------------------------------------------------- /classes/DebugLog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosthetichead/GarlicPress/HEAD/classes/DebugLog.cs -------------------------------------------------------------------------------- /classes/GameMediaGeneration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosthetichead/GarlicPress/HEAD/classes/GameMediaGeneration.cs -------------------------------------------------------------------------------- /classes/GarlicSkin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosthetichead/GarlicPress/HEAD/classes/GarlicSkin.cs -------------------------------------------------------------------------------- /classes/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosthetichead/GarlicPress/HEAD/classes/Program.cs -------------------------------------------------------------------------------- /classes/ScreenScraper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosthetichead/GarlicPress/HEAD/classes/ScreenScraper.cs -------------------------------------------------------------------------------- /classes/Updater.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosthetichead/GarlicPress/HEAD/classes/Updater.cs -------------------------------------------------------------------------------- /classes/bitmapClasses/BitmapFilterConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosthetichead/GarlicPress/HEAD/classes/bitmapClasses/BitmapFilterConverter.cs -------------------------------------------------------------------------------- /classes/bitmapClasses/BitmapUtilites.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosthetichead/GarlicPress/HEAD/classes/bitmapClasses/BitmapUtilites.cs -------------------------------------------------------------------------------- /classes/bitmapClasses/Filters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosthetichead/GarlicPress/HEAD/classes/bitmapClasses/Filters.cs -------------------------------------------------------------------------------- /components/MarkdownViewer.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosthetichead/GarlicPress/HEAD/components/MarkdownViewer.razor -------------------------------------------------------------------------------- /components/MediaContent.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosthetichead/GarlicPress/HEAD/components/MediaContent.razor -------------------------------------------------------------------------------- /components/MediaGenerationEditor.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosthetichead/GarlicPress/HEAD/components/MediaGenerationEditor.razor -------------------------------------------------------------------------------- /components/MediaLayerControl.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosthetichead/GarlicPress/HEAD/components/MediaLayerControl.razor -------------------------------------------------------------------------------- /components/MediaLayers.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosthetichead/GarlicPress/HEAD/components/MediaLayers.razor -------------------------------------------------------------------------------- /components/_Imports.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosthetichead/GarlicPress/HEAD/components/_Imports.razor -------------------------------------------------------------------------------- /components/filters/BlurFilterComponent.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosthetichead/GarlicPress/HEAD/components/filters/BlurFilterComponent.razor -------------------------------------------------------------------------------- /components/filters/BrightnessFilterComponent.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosthetichead/GarlicPress/HEAD/components/filters/BrightnessFilterComponent.razor -------------------------------------------------------------------------------- /components/filters/ContrastFilterComponent.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosthetichead/GarlicPress/HEAD/components/filters/ContrastFilterComponent.razor -------------------------------------------------------------------------------- /components/filters/GaussianBlurFilterComponent.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosthetichead/GarlicPress/HEAD/components/filters/GaussianBlurFilterComponent.razor -------------------------------------------------------------------------------- /components/filters/GradientFilterComponent.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosthetichead/GarlicPress/HEAD/components/filters/GradientFilterComponent.razor -------------------------------------------------------------------------------- /components/filters/SaturationFilterComponent.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosthetichead/GarlicPress/HEAD/components/filters/SaturationFilterComponent.razor -------------------------------------------------------------------------------- /components/filters/TransparencyFilterComponent.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosthetichead/GarlicPress/HEAD/components/filters/TransparencyFilterComponent.razor -------------------------------------------------------------------------------- /components/mediaLayerCollection/AddMediaLayoutCollectionModal.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosthetichead/GarlicPress/HEAD/components/mediaLayerCollection/AddMediaLayoutCollectionModal.razor -------------------------------------------------------------------------------- /components/mediaLayerCollection/DeleteConfirmationModal.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosthetichead/GarlicPress/HEAD/components/mediaLayerCollection/DeleteConfirmationModal.razor -------------------------------------------------------------------------------- /components/mediaLayerCollection/EditMediaLayoutCollectionModal.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosthetichead/GarlicPress/HEAD/components/mediaLayerCollection/EditMediaLayoutCollectionModal.razor -------------------------------------------------------------------------------- /components/shared/AnchorNavigation.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosthetichead/GarlicPress/HEAD/components/shared/AnchorNavigation.razor -------------------------------------------------------------------------------- /components/shared/Button.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosthetichead/GarlicPress/HEAD/components/shared/Button.razor -------------------------------------------------------------------------------- /components/shared/ColorInput.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosthetichead/GarlicPress/HEAD/components/shared/ColorInput.razor -------------------------------------------------------------------------------- /components/shared/FabricCanvas.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosthetichead/GarlicPress/HEAD/components/shared/FabricCanvas.razor -------------------------------------------------------------------------------- /components/shared/FabricCanvas.razor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosthetichead/GarlicPress/HEAD/components/shared/FabricCanvas.razor.js -------------------------------------------------------------------------------- /components/shared/GarlicLoading.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosthetichead/GarlicPress/HEAD/components/shared/GarlicLoading.razor -------------------------------------------------------------------------------- /components/shared/Input.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosthetichead/GarlicPress/HEAD/components/shared/Input.razor -------------------------------------------------------------------------------- /components/shared/ModalComponent.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosthetichead/GarlicPress/HEAD/components/shared/ModalComponent.razor -------------------------------------------------------------------------------- /components/shared/ModalComponent.razor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosthetichead/GarlicPress/HEAD/components/shared/ModalComponent.razor.js -------------------------------------------------------------------------------- /components/shared/NumberSlider.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosthetichead/GarlicPress/HEAD/components/shared/NumberSlider.razor -------------------------------------------------------------------------------- /components/shared/Select.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosthetichead/GarlicPress/HEAD/components/shared/Select.razor -------------------------------------------------------------------------------- /constants/PathConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosthetichead/GarlicPress/HEAD/constants/PathConstants.cs -------------------------------------------------------------------------------- /enableADB: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /forms/AboutForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosthetichead/GarlicPress/HEAD/forms/AboutForm.Designer.cs -------------------------------------------------------------------------------- /forms/AboutForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosthetichead/GarlicPress/HEAD/forms/AboutForm.cs -------------------------------------------------------------------------------- /forms/AboutForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosthetichead/GarlicPress/HEAD/forms/AboutForm.resx -------------------------------------------------------------------------------- /forms/ConsoleForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosthetichead/GarlicPress/HEAD/forms/ConsoleForm.Designer.cs -------------------------------------------------------------------------------- /forms/ConsoleForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosthetichead/GarlicPress/HEAD/forms/ConsoleForm.cs -------------------------------------------------------------------------------- /forms/ConsoleForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosthetichead/GarlicPress/HEAD/forms/ConsoleForm.resx -------------------------------------------------------------------------------- /forms/DebugLogForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosthetichead/GarlicPress/HEAD/forms/DebugLogForm.Designer.cs -------------------------------------------------------------------------------- /forms/DebugLogForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosthetichead/GarlicPress/HEAD/forms/DebugLogForm.cs -------------------------------------------------------------------------------- /forms/DebugLogForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosthetichead/GarlicPress/HEAD/forms/DebugLogForm.resx -------------------------------------------------------------------------------- /forms/DocumentationForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosthetichead/GarlicPress/HEAD/forms/DocumentationForm.Designer.cs -------------------------------------------------------------------------------- /forms/DocumentationForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosthetichead/GarlicPress/HEAD/forms/DocumentationForm.cs -------------------------------------------------------------------------------- /forms/DocumentationForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosthetichead/GarlicPress/HEAD/forms/DocumentationForm.resx -------------------------------------------------------------------------------- /forms/EditMediaLayersForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosthetichead/GarlicPress/HEAD/forms/EditMediaLayersForm.Designer.cs -------------------------------------------------------------------------------- /forms/EditMediaLayersForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosthetichead/GarlicPress/HEAD/forms/EditMediaLayersForm.cs -------------------------------------------------------------------------------- /forms/EditMediaLayersForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosthetichead/GarlicPress/HEAD/forms/EditMediaLayersForm.resx -------------------------------------------------------------------------------- /forms/GameArtUpdateForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosthetichead/GarlicPress/HEAD/forms/GameArtUpdateForm.Designer.cs -------------------------------------------------------------------------------- /forms/GameArtUpdateForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosthetichead/GarlicPress/HEAD/forms/GameArtUpdateForm.cs -------------------------------------------------------------------------------- /forms/GameArtUpdateForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosthetichead/GarlicPress/HEAD/forms/GameArtUpdateForm.resx -------------------------------------------------------------------------------- /forms/MainForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosthetichead/GarlicPress/HEAD/forms/MainForm.Designer.cs -------------------------------------------------------------------------------- /forms/MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosthetichead/GarlicPress/HEAD/forms/MainForm.cs -------------------------------------------------------------------------------- /forms/MainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosthetichead/GarlicPress/HEAD/forms/MainForm.resx -------------------------------------------------------------------------------- /forms/PreviewForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosthetichead/GarlicPress/HEAD/forms/PreviewForm.Designer.cs -------------------------------------------------------------------------------- /forms/PreviewForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosthetichead/GarlicPress/HEAD/forms/PreviewForm.cs -------------------------------------------------------------------------------- /forms/PreviewForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosthetichead/GarlicPress/HEAD/forms/PreviewForm.resx -------------------------------------------------------------------------------- /forms/SettingsForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosthetichead/GarlicPress/HEAD/forms/SettingsForm.Designer.cs -------------------------------------------------------------------------------- /forms/SettingsForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosthetichead/GarlicPress/HEAD/forms/SettingsForm.cs -------------------------------------------------------------------------------- /forms/SettingsForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosthetichead/GarlicPress/HEAD/forms/SettingsForm.resx -------------------------------------------------------------------------------- /forms/SkinSettingsForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosthetichead/GarlicPress/HEAD/forms/SkinSettingsForm.Designer.cs -------------------------------------------------------------------------------- /forms/SkinSettingsForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosthetichead/GarlicPress/HEAD/forms/SkinSettingsForm.cs -------------------------------------------------------------------------------- /forms/SkinSettingsForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosthetichead/GarlicPress/HEAD/forms/SkinSettingsForm.resx -------------------------------------------------------------------------------- /forms/SkinSettingsFormDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosthetichead/GarlicPress/HEAD/forms/SkinSettingsFormDialog.Designer.cs -------------------------------------------------------------------------------- /forms/SkinSettingsFormDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosthetichead/GarlicPress/HEAD/forms/SkinSettingsFormDialog.cs -------------------------------------------------------------------------------- /forms/SkinSettingsFormDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosthetichead/GarlicPress/HEAD/forms/SkinSettingsFormDialog.resx -------------------------------------------------------------------------------- /forms/UpdateForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosthetichead/GarlicPress/HEAD/forms/UpdateForm.Designer.cs -------------------------------------------------------------------------------- /forms/UpdateForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosthetichead/GarlicPress/HEAD/forms/UpdateForm.cs -------------------------------------------------------------------------------- /forms/UpdateForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosthetichead/GarlicPress/HEAD/forms/UpdateForm.resx -------------------------------------------------------------------------------- /help.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosthetichead/GarlicPress/HEAD/help.md -------------------------------------------------------------------------------- /libman.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosthetichead/GarlicPress/HEAD/libman.json -------------------------------------------------------------------------------- /models/Models.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosthetichead/GarlicPress/HEAD/models/Models.cs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosthetichead/GarlicPress/HEAD/package.json -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosthetichead/GarlicPress/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tailwind.extension.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosthetichead/GarlicPress/HEAD/tailwind.extension.json -------------------------------------------------------------------------------- /wwwroot/MediaEditor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosthetichead/GarlicPress/HEAD/wwwroot/MediaEditor.html -------------------------------------------------------------------------------- /wwwroot/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosthetichead/GarlicPress/HEAD/wwwroot/css/app.css -------------------------------------------------------------------------------- /wwwroot/css/tw.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosthetichead/GarlicPress/HEAD/wwwroot/css/tw.css -------------------------------------------------------------------------------- /wwwroot/css/tw.output.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosthetichead/GarlicPress/HEAD/wwwroot/css/tw.output.css -------------------------------------------------------------------------------- /wwwroot/docs/GarlicPressAddMediaLayerCollection.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosthetichead/GarlicPress/HEAD/wwwroot/docs/GarlicPressAddMediaLayerCollection.gif -------------------------------------------------------------------------------- /wwwroot/docs/GarlicPressAddingMedia.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosthetichead/GarlicPress/HEAD/wwwroot/docs/GarlicPressAddingMedia.gif -------------------------------------------------------------------------------- /wwwroot/docs/GarlicPressConnecting.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosthetichead/GarlicPress/HEAD/wwwroot/docs/GarlicPressConnecting.gif -------------------------------------------------------------------------------- /wwwroot/docs/GarlicPressDeleteMediaLayerCollection.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosthetichead/GarlicPress/HEAD/wwwroot/docs/GarlicPressDeleteMediaLayerCollection.gif -------------------------------------------------------------------------------- /wwwroot/docs/GarlicPressEditMediaLayerFromControls.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosthetichead/GarlicPress/HEAD/wwwroot/docs/GarlicPressEditMediaLayerFromControls.gif -------------------------------------------------------------------------------- /wwwroot/docs/GarlicPressGameUpdateSearch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosthetichead/GarlicPress/HEAD/wwwroot/docs/GarlicPressGameUpdateSearch.png -------------------------------------------------------------------------------- /wwwroot/docs/GarlicPressMain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosthetichead/GarlicPress/HEAD/wwwroot/docs/GarlicPressMain.png -------------------------------------------------------------------------------- /wwwroot/docs/GarlicPressMediaLayerCollection.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosthetichead/GarlicPress/HEAD/wwwroot/docs/GarlicPressMediaLayerCollection.gif -------------------------------------------------------------------------------- /wwwroot/docs/GarlicPressMediaLayerCollections.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosthetichead/GarlicPress/HEAD/wwwroot/docs/GarlicPressMediaLayerCollections.png -------------------------------------------------------------------------------- /wwwroot/docs/GarlicPressMediaLayerEditor.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosthetichead/GarlicPress/HEAD/wwwroot/docs/GarlicPressMediaLayerEditor.gif -------------------------------------------------------------------------------- /wwwroot/docs/GarlicPressMediaLayerPosition.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosthetichead/GarlicPress/HEAD/wwwroot/docs/GarlicPressMediaLayerPosition.gif -------------------------------------------------------------------------------- /wwwroot/docs/GarlicPressMediaLayerRotation.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosthetichead/GarlicPress/HEAD/wwwroot/docs/GarlicPressMediaLayerRotation.gif -------------------------------------------------------------------------------- /wwwroot/docs/GarlicPressMediaLayerSize.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosthetichead/GarlicPress/HEAD/wwwroot/docs/GarlicPressMediaLayerSize.gif -------------------------------------------------------------------------------- /wwwroot/docs/GarlicPressOpenSkinSettings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosthetichead/GarlicPress/HEAD/wwwroot/docs/GarlicPressOpenSkinSettings.png -------------------------------------------------------------------------------- /wwwroot/docs/GarlicPressRoms.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosthetichead/GarlicPress/HEAD/wwwroot/docs/GarlicPressRoms.gif -------------------------------------------------------------------------------- /wwwroot/docs/GarlicPressScreenScraperLogin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosthetichead/GarlicPress/HEAD/wwwroot/docs/GarlicPressScreenScraperLogin.png -------------------------------------------------------------------------------- /wwwroot/docs/GarlicPressSkinSettings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosthetichead/GarlicPress/HEAD/wwwroot/docs/GarlicPressSkinSettings.png -------------------------------------------------------------------------------- /wwwroot/docs/GarlicPressSkinSettingsActiveColor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosthetichead/GarlicPress/HEAD/wwwroot/docs/GarlicPressSkinSettingsActiveColor.png -------------------------------------------------------------------------------- /wwwroot/docs/GarlicPressSkinSettingsCenterAligned.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosthetichead/GarlicPress/HEAD/wwwroot/docs/GarlicPressSkinSettingsCenterAligned.png -------------------------------------------------------------------------------- /wwwroot/docs/GarlicPressSkinSettingsColorPicker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosthetichead/GarlicPress/HEAD/wwwroot/docs/GarlicPressSkinSettingsColorPicker.png -------------------------------------------------------------------------------- /wwwroot/docs/GarlicPressSkinSettingsFonts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosthetichead/GarlicPress/HEAD/wwwroot/docs/GarlicPressSkinSettingsFonts.png -------------------------------------------------------------------------------- /wwwroot/docs/GarlicPressSkinSettingsGuideColor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosthetichead/GarlicPress/HEAD/wwwroot/docs/GarlicPressSkinSettingsGuideColor.png -------------------------------------------------------------------------------- /wwwroot/docs/GarlicPressSkinSettingsInactiveColor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosthetichead/GarlicPress/HEAD/wwwroot/docs/GarlicPressSkinSettingsInactiveColor.png -------------------------------------------------------------------------------- /wwwroot/docs/GarlicPressSkinSettingsLeftAligned.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosthetichead/GarlicPress/HEAD/wwwroot/docs/GarlicPressSkinSettingsLeftAligned.png -------------------------------------------------------------------------------- /wwwroot/docs/GarlicPressSkinSettingsRightAligned.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosthetichead/GarlicPress/HEAD/wwwroot/docs/GarlicPressSkinSettingsRightAligned.png -------------------------------------------------------------------------------- /wwwroot/docs/GarlicPressUpdateArt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosthetichead/GarlicPress/HEAD/wwwroot/docs/GarlicPressUpdateArt.png -------------------------------------------------------------------------------- /wwwroot/docs/GarlicPressUpdateGameArt.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosthetichead/GarlicPress/HEAD/wwwroot/docs/GarlicPressUpdateGameArt.gif -------------------------------------------------------------------------------- /wwwroot/docs/GarlicPressUpdateMediaLayerCollection.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosthetichead/GarlicPress/HEAD/wwwroot/docs/GarlicPressUpdateMediaLayerCollection.gif -------------------------------------------------------------------------------- /wwwroot/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prosthetichead/GarlicPress/HEAD/wwwroot/index.html --------------------------------------------------------------------------------