From 86c06814537e4e06dc513d13f204c9e10a082f58 Mon Sep 17 00:00:00 2001 From: vladmandic Date: Tue, 20 Jan 2026 10:09:00 +0100 Subject: [PATCH] lint and changelog Signed-off-by: vladmandic --- CHANGELOG.md | 1 + installer.py | 2 +- package.json | 4 ++-- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7127704c6..6faac28f2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -59,6 +59,7 @@ For full list of changes, see full changelog. - indicate collapsed/hidden sections - persistent panel minimize/maximize state - gallery improve sorting behavior + - gallery implement prev/next navigation in full screen viewer, thanks @ryanmeador - **Internal** - **lora** native support by default will now skip text-encoder can be enabled in *settings -> networks* diff --git a/installer.py b/installer.py index 36bb17215..8a5f15b82 100644 --- a/installer.py +++ b/installer.py @@ -648,7 +648,7 @@ def check_diffusers(): t_start = time.time() if args.skip_all: return - sha = '61f175660a8ac54f1470a74a810e6c38fb4795d5' # diffusers commit hash + sha = 'd7a1c31f4f85bae5a9e01cdce49bd7346bd8ccd6' # diffusers commit hash # if args.use_rocm or args.use_zluda or args.use_directml: # sha = '043ab2520f6a19fce78e6e060a68dbc947edb9f9' # lock diffusers versions for now pkg = pkg_resources.working_set.by_key.get('diffusers', None) diff --git a/package.json b/package.json index 46c3b368c..4a7d2d0d8 100644 --- a/package.json +++ b/package.json @@ -28,8 +28,8 @@ "eslint-ui-win": "cd extensions-builtin/sdnext-modernui && eslint . javascript/ --rule \"@stylistic/linebreak-style: off\"", "ruff": ". venv/bin/activate && ruff check", "ruff-win": "venv\\scripts\\activate && ruff check", - "pylint": ". venv/bin/activate && pylint *.py modules/ pipelines/ scripts/ extensions-builtin/ | grep -v '^*'", - "pylint-win": "venv\\scripts\\activate && pylint *.py modules/ pipelines/ scripts/ extensions-builtin/", + "pylint": ". venv/bin/activate && pylint --disable=W0511 *.py modules/ pipelines/ scripts/ extensions-builtin/ | grep -v '^*'", + "pylint-win": "venv\\scripts\\activate && pylint --disable=W0511 *.py modules/ pipelines/ scripts/ extensions-builtin/", "lint": "npm run format && npm run eslint && npm run eslint-ui && npm run ruff && npm run pylint | grep -v TODO", "lint-win": "npm run format-win && npm run eslint-win && npm run eslint-ui-win && npm run ruff-win && npm run pylint-win", "test": ". venv/bin/activate; python launch.py --debug --test",