diff --git a/CHANGELOG.md b/CHANGELOG.md index 8d25234..7dc1ef0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## 2023-07-20 + +- v23.7.8 +- `paste_field_names` 추가했던 것을 되돌림 + ## 2023-07-19 - v23.7.7 diff --git a/Taskfile.yml b/Taskfile.yml new file mode 100644 index 0000000..9c9f45e --- /dev/null +++ b/Taskfile.yml @@ -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 diff --git a/adetailer/__version__.py b/adetailer/__version__.py index 577a2cb..3adbf4a 100644 --- a/adetailer/__version__.py +++ b/adetailer/__version__.py @@ -1 +1 @@ -__version__ = "23.7.7" +__version__ = "23.7.8" diff --git a/scripts/!adetailer.py b/scripts/!adetailer.py index 90736b4..493129a 100644 --- a/scripts/!adetailer.py +++ b/scripts/!adetailer.py @@ -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: