commit
ea06b03cd3
|
|
@ -1,6 +1,12 @@
|
||||||
# Change Log
|
# Change Log
|
||||||
Formatting: [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), [Semantic Versioning](https://semver.org/spec/v2.0.0.html)
|
Formatting: [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), [Semantic Versioning](https://semver.org/spec/v2.0.0.html)
|
||||||
|
|
||||||
|
## [2.2.1] - 2024-5-16
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
- Grid generation regression
|
||||||
|
- Model propagation error handling
|
||||||
|
|
||||||
## [2.2.0] - 2024-5-11
|
## [2.2.0] - 2024-5-11
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
|
|
||||||
|
|
@ -17,7 +17,7 @@ import urllib3
|
||||||
from PIL import Image
|
from PIL import Image
|
||||||
from modules import processing
|
from modules import processing
|
||||||
from modules import scripts
|
from modules import scripts
|
||||||
from modules.images import save_image
|
from modules.images import save_image, image_grid
|
||||||
from modules.processing import fix_seed
|
from modules.processing import fix_seed
|
||||||
from modules.shared import opts, cmd_opts
|
from modules.shared import opts, cmd_opts
|
||||||
from modules.shared import state as webui_state
|
from modules.shared import state as webui_state
|
||||||
|
|
@ -198,7 +198,7 @@ class DistributedScript(scripts.Script):
|
||||||
|
|
||||||
# generate and inject grid
|
# generate and inject grid
|
||||||
if opts.return_grid:
|
if opts.return_grid:
|
||||||
grid = images.image_grid(processed.images, len(processed.images))
|
grid = image_grid(processed.images, len(processed.images))
|
||||||
processed_inject_image(
|
processed_inject_image(
|
||||||
image=grid,
|
image=grid,
|
||||||
info_index=0,
|
info_index=0,
|
||||||
|
|
|
||||||
|
|
@ -688,7 +688,7 @@ class Worker:
|
||||||
if vae is not None:
|
if vae is not None:
|
||||||
self.loaded_vae = vae
|
self.loaded_vae = vae
|
||||||
|
|
||||||
self.response = response
|
self.response = response
|
||||||
|
|
||||||
return self
|
return self
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue