Skip to content

Commit

Permalink
Merge branch 'dev'
Browse files Browse the repository at this point in the history
  • Loading branch information
Bing-su committed Apr 9, 2024
2 parents 06adf33 + ba11972 commit 7360ea6
Show file tree
Hide file tree
Showing 11 changed files with 231 additions and 199 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,10 @@ jobs:
needs: [test]

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v4

- name: Build wheel
run: pipx run build
- name: Build wheel
run: pipx run build

- name: Publish to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
- name: Publish to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
2 changes: 1 addition & 1 deletion .github/workflows/stale.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: Close stale issues and PRs
on:
schedule:
- cron: '30 1 * * *'
- cron: "30 1 * * *"

jobs:
stale:
Expand Down
9 changes: 7 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ ci:

repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.5.0
rev: v4.6.0
hooks:
- id: check-added-large-files
args: [--maxkb=100]
Expand All @@ -16,11 +16,16 @@ repos:
- id: mixed-line-ending

- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.3.4
rev: v0.3.5
hooks:
- id: ruff
args: [--fix, --exit-non-zero-on-fix]

- repo: https://github.com/pre-commit/mirrors-prettier
rev: "v4.0.0-alpha.8"
hooks:
- id: prettier

- repo: https://github.com/psf/black-pre-commit-mirror
rev: 24.3.0
hooks:
Expand Down
14 changes: 7 additions & 7 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"recommendations": [
"ms-python.vscode-pylance",
"ms-python.black-formatter",
"kevinrose.vsc-python-indent",
"charliermarsh.ruff",
"shardulm94.trailing-spaces"
]
"recommendations": [
"ms-python.vscode-pylance",
"ms-python.black-formatter",
"kevinrose.vsc-python-indent",
"charliermarsh.ruff",
"shardulm94.trailing-spaces"
]
}
12 changes: 6 additions & 6 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"explorer.fileNesting.enabled": true,
"explorer.fileNesting.patterns": {
"pyproject.toml": ".env, .gitignore, .pre-commit-config.yaml, Taskfile.yml",
"README.md": "LICENSE.md, CHANGELOG.md",
"install.py": "preload.py"
}
"explorer.fileNesting.enabled": true,
"explorer.fileNesting.patterns": {
"pyproject.toml": ".env, .gitignore, .pre-commit-config.yaml, Taskfile.yml",
"README.md": "LICENSE.md, CHANGELOG.md",
"install.py": "preload.py"
}
}
12 changes: 8 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## 2024-04-10

- v24.4.0
- txt2img에서 hires를 설정했을 때, 이미지의 exif에서 Denoising Strength가 adetailer의 denoisiog stregnth로 덮어 쓰이는 문제 수정
- ad prompt, ad negative prompt에 프롬프트를 변경하는 기능을 적용했을 때(와일드카드 등), 적용된 프롬프트가 이미지의 exif에 제대로 표시됨

## 2024-03-29

- v24.3.5
Expand Down Expand Up @@ -35,6 +41,7 @@
- YOLO World 모델 추가: 가장 큰 yolov8x-world.pt 모델만 기본적으로 선택할 수 있게 함.
- lllyasviel/stable-diffusion-webui-forge에서 컨트롤넷을 사용가능하게 함 (PR #517)
- 기본 스크립트 목록에 soft_inpainting 추가 (https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/14208)

- 기존에 설치한 사람에게 소급적용되지는 않음

- 감지모델에 대한 간단한 pytest 추가함
Expand Down Expand Up @@ -126,7 +133,6 @@
- 1.6.0 업데이트에 따라 img2img에서 사용불가능한 샘플러를 선택했을 때 더이상 Euler로 변경하지 않음
- 유효하지 않은 인자가 전달되었을 때, 에러를 일으키지 않고 대신 adetailer를 비활성화함


## 2023-08-25

- v23.8.1
Expand All @@ -141,7 +147,6 @@
- Only top k largest 옵션 추가 (PR #264)
- ultralytics 버전 업데이트


## 2023-07-31

- v23.7.11
Expand All @@ -156,7 +161,6 @@
- huggingface_hub, pydantic을 install.py에서 없앰
- 안쓰는 컨트롤넷 관련 코드 삭제


## 2023-07-23

- v23.7.9
Expand Down Expand Up @@ -264,6 +268,7 @@
- `ad_inpaint_full_res``ad_inpaint_only_masked`
- `ad_inpaint_full_res_padding``ad_inpaint_only_masked_padding`
- mediapipe face mesh 모델 추가

- mediapipe 최소 버전 `0.10.0`

- rich traceback 제거함
Expand Down Expand Up @@ -294,7 +299,6 @@
- 모든 컴포넌트에 elem_id 설정
- ui에 버전을 표시함


### 2023-05-19

- v23.5.16
Expand Down
Loading

0 comments on commit 7360ea6

Please sign in to comment.