update changelog

This commit is contained in:
Vladimir Mandic
2023-10-17 08:47:25 -04:00
parent 898d9ea806
commit 53c7713e4d
3 changed files with 8 additions and 5 deletions
+6 -5
View File
@@ -1,15 +1,15 @@
# Change Log for SD.Next
## Update for 2023-10-16
## Update for 2023-10-17
This is a major release, with many changes and new functionality...
Note that for this release its recommended to perform a clean install (e.g. fresh `git clone`)
Upgrades are still possible and supported, but clean install is recommended for best experience
Changelog is massive, but do read through or you'll be missing on some very cool new functionality
or even free speedups and quality improvements (regardless of which workflows you're using)!
Note that for this release its recommended to perform a clean install (e.g. fresh `git clone`)
Upgrades are still possible and supported, but clean install is recommended for best experience
- **UI**
- added **change log** to UI
see *System -> Changelog*
@@ -167,7 +167,8 @@ or even free speedups and quality improvements (regardless of which workflows yo
- new section in **settings**
- [HyperTile](https://github.com/tfernd/HyperTile): new!
available for *diffusers* and *original* backends
massive (up to 2x) speed-up your generations for free :)
massive (up to 2x) speed-up your generations for free :)
*note: hypertile is not compatible with any extension that modifies processing parameters such as resolution*
thanks @tfernd
- [Free-U](https://github.com/ChenyangSi/FreeU): new!
available for *diffusers* and *original* backends
+1
View File
@@ -98,6 +98,7 @@ def compatibility_args(opts, args):
group.add_argument("--lyco-debug", help=argparse.SUPPRESS, action='store_true', default=False)
group.add_argument("--enable-console-prompts", help=argparse.SUPPRESS, action='store_true', default=False)
group.add_argument("--safe", help=argparse.SUPPRESS, action='store_true', default=False)
group.add_argument("--use-xformers", help=argparse.SUPPRESS, action='store_true', default=False)
# removed opts are added here with fixed values for compatibility reasons
opts.use_old_emphasis_implementation = False
+1
View File
@@ -171,6 +171,7 @@ class StableDiffusionProcessing:
self.s_max = shared.opts.s_max
self.s_tmin = shared.opts.s_tmin
self.s_tmax = float('inf') # not representable as a standard ui option
self.refiner_switch_at = 0 # a1111 compatibility item
self.comments = {}
self.is_api = False
self.resize_mode: int = 0