├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── hires_fix_tweaks ├── checkpoint_tiles_use_short_override.py ├── hr_modules │ ├── hr_batch_seed.py │ ├── hr_cfg_scale.py │ ├── hr_output_dir.py │ ├── hr_prompt_mode.py │ └── hr_styles.py ├── settings.py ├── ui.py ├── utils.py └── xyz.py ├── javascript └── scripts.js ├── screenshot.png ├── scripts └── sd-webui-hires-fix-tweaks.py └── style.css /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w-e-w/sd-webui-hires-fix-tweaks/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w-e-w/sd-webui-hires-fix-tweaks/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w-e-w/sd-webui-hires-fix-tweaks/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w-e-w/sd-webui-hires-fix-tweaks/HEAD/README.md -------------------------------------------------------------------------------- /hires_fix_tweaks/checkpoint_tiles_use_short_override.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w-e-w/sd-webui-hires-fix-tweaks/HEAD/hires_fix_tweaks/checkpoint_tiles_use_short_override.py -------------------------------------------------------------------------------- /hires_fix_tweaks/hr_modules/hr_batch_seed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w-e-w/sd-webui-hires-fix-tweaks/HEAD/hires_fix_tweaks/hr_modules/hr_batch_seed.py -------------------------------------------------------------------------------- /hires_fix_tweaks/hr_modules/hr_cfg_scale.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w-e-w/sd-webui-hires-fix-tweaks/HEAD/hires_fix_tweaks/hr_modules/hr_cfg_scale.py -------------------------------------------------------------------------------- /hires_fix_tweaks/hr_modules/hr_output_dir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w-e-w/sd-webui-hires-fix-tweaks/HEAD/hires_fix_tweaks/hr_modules/hr_output_dir.py -------------------------------------------------------------------------------- /hires_fix_tweaks/hr_modules/hr_prompt_mode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w-e-w/sd-webui-hires-fix-tweaks/HEAD/hires_fix_tweaks/hr_modules/hr_prompt_mode.py -------------------------------------------------------------------------------- /hires_fix_tweaks/hr_modules/hr_styles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w-e-w/sd-webui-hires-fix-tweaks/HEAD/hires_fix_tweaks/hr_modules/hr_styles.py -------------------------------------------------------------------------------- /hires_fix_tweaks/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w-e-w/sd-webui-hires-fix-tweaks/HEAD/hires_fix_tweaks/settings.py -------------------------------------------------------------------------------- /hires_fix_tweaks/ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w-e-w/sd-webui-hires-fix-tweaks/HEAD/hires_fix_tweaks/ui.py -------------------------------------------------------------------------------- /hires_fix_tweaks/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w-e-w/sd-webui-hires-fix-tweaks/HEAD/hires_fix_tweaks/utils.py -------------------------------------------------------------------------------- /hires_fix_tweaks/xyz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w-e-w/sd-webui-hires-fix-tweaks/HEAD/hires_fix_tweaks/xyz.py -------------------------------------------------------------------------------- /javascript/scripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w-e-w/sd-webui-hires-fix-tweaks/HEAD/javascript/scripts.js -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w-e-w/sd-webui-hires-fix-tweaks/HEAD/screenshot.png -------------------------------------------------------------------------------- /scripts/sd-webui-hires-fix-tweaks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w-e-w/sd-webui-hires-fix-tweaks/HEAD/scripts/sd-webui-hires-fix-tweaks.py -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w-e-w/sd-webui-hires-fix-tweaks/HEAD/style.css --------------------------------------------------------------------------------