├── .gitignore ├── LICENSE ├── README.md ├── custom_ui.js ├── misc └── ai_generate_webui.py ├── screenshot_1.jpg ├── ui_custom ├── i18n.json ├── preset.json └── tags_i18n.csv └── user.css /.gitignore: -------------------------------------------------------------------------------- 1 | .history/ 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/journey-ad/sd-webui-custom/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/journey-ad/sd-webui-custom/HEAD/README.md -------------------------------------------------------------------------------- /custom_ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/journey-ad/sd-webui-custom/HEAD/custom_ui.js -------------------------------------------------------------------------------- /misc/ai_generate_webui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/journey-ad/sd-webui-custom/HEAD/misc/ai_generate_webui.py -------------------------------------------------------------------------------- /screenshot_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/journey-ad/sd-webui-custom/HEAD/screenshot_1.jpg -------------------------------------------------------------------------------- /ui_custom/i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/journey-ad/sd-webui-custom/HEAD/ui_custom/i18n.json -------------------------------------------------------------------------------- /ui_custom/preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/journey-ad/sd-webui-custom/HEAD/ui_custom/preset.json -------------------------------------------------------------------------------- /ui_custom/tags_i18n.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/journey-ad/sd-webui-custom/HEAD/ui_custom/tags_i18n.csv -------------------------------------------------------------------------------- /user.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/journey-ad/sd-webui-custom/HEAD/user.css --------------------------------------------------------------------------------