From 358f57c20ca3158f997869200f4d8cba84e07016 Mon Sep 17 00:00:00 2001 From: Bingsu Date: Wed, 19 Jul 2023 14:26:40 +0900 Subject: [PATCH 1/3] chore: add Taskfile --- Taskfile.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 Taskfile.yml 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 From 6ee87f01758a38e94ef1c1710f538e620d726b11 Mon Sep 17 00:00:00 2001 From: Bingsu Date: Tue, 18 Jul 2023 20:21:59 +0900 Subject: [PATCH 2/3] Revert "feat: paste_field_names" This reverts commit e726a73441a7d713ab3b978b36a74786c5b49c54. --- scripts/!adetailer.py | 1 - 1 file changed, 1 deletion(-) 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: From 7809c2475bebb687322c87476d194f111e7d661f Mon Sep 17 00:00:00 2001 From: Bingsu Date: Thu, 20 Jul 2023 11:01:23 +0900 Subject: [PATCH 3/3] chore: v23.7.8 --- CHANGELOG.md | 5 +++++ adetailer/__version__.py | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) 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/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"