diff options
author | AUTOMATIC1111 <16777216c@gmail.com> | 2023-04-29 17:22:42 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-29 17:22:42 +0300 |
commit | 5524301ab81c3d93032228a2215cd62bcaf0688c (patch) | |
tree | ef6f32229611cab72bc1cfe088e2c60a70dbf41a /modules/shared.py | |
parent | c018eefe9173ae8f3669340479569dda78643a8a (diff) | |
parent | 78d0ee3bbaa2b48b7918e8088ad91c34f1ff2f1e (diff) |
Merge pull request #9169 from space-nuko/extension-settings-backup
Extension settings backup/restore feature
Diffstat (limited to 'modules/shared.py')
-rw-r--r-- | modules/shared.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/modules/shared.py b/modules/shared.py index 6a14dcd0..6a2b3c2b 100644 --- a/modules/shared.py +++ b/modules/shared.py @@ -449,6 +449,7 @@ options_templates.update(options_section(('postprocessing', "Postprocessing"), { options_templates.update(options_section((None, "Hidden options"), {
"disabled_extensions": OptionInfo([], "Disable these extensions"),
"disable_all_extensions": OptionInfo("none", "Disable all extensions (preserves the list of disabled extensions)", gr.Radio, {"choices": ["none", "extra", "all"]}),
+ "restore_config_state_file": OptionInfo("", "Config state file to restore from, under 'config-states/' folder"),
"sd_checkpoint_hash": OptionInfo("", "SHA256 hash of the current checkpoint"),
}))
|