Merge branch 'dev' into main

This commit is contained in:
Bingsu
2023-07-20 11:01:32 +09:00
4 changed files with 31 additions and 2 deletions

View File

@@ -1,5 +1,10 @@
# Changelog
## 2023-07-20
- v23.7.8
- `paste_field_names` 추가했던 것을 되돌림
## 2023-07-19
- v23.7.7

25
Taskfile.yml Normal file
View File

@@ -0,0 +1,25 @@
# https://taskfile.dev
version: "3"
dotenv:
- .env
vars:
SHELL: '{{if eq .OS "Windows_NT"}}powershell{{end}}'
tasks:
default:
cmds:
- echo "$PYTHON"
- echo "$WEBUI"
silent: true
launch:
dir: "{{.WEBUI}}"
cmds:
- "{{.PYTHON}} launch.py --xformers --api --autolaunch"
lint:
cmds:
- pre-commit run -a

View File

@@ -1 +1 @@
__version__ = "23.7.7"
__version__ = "23.7.8"

View File

@@ -128,7 +128,6 @@ class AfterDetailerScript(scripts.Script):
)
self.infotext_fields = infotext_fields
self.paste_field_names = [name for _, name in infotext_fields]
return components
def init_controlnet_ext(self) -> None: