Skip to content

Commit 5b51001

Browse files
committed
Update Restart Control to 0.1.1
1 parent 03e5093 commit 5b51001

7 files changed

Lines changed: 13 additions & 5 deletions

File tree

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
22

33
All notable changes to this project will be documented here.
44

5+
## [0.1.1] - 2026-07-22
6+
7+
### Changed
8+
9+
- Matched the plugin matrix width to the Boot Trace display.
10+
- Updated the plugin matrix screenshot and animated Registry banner.
11+
512
## [0.1.0] - 2026-07-22
613

714
### Added

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Choose the custom nodes that will load on the next restart.
1717
Restart Control locks the workspace and reports the backend handoff until the new instance is available.
1818

1919
<p align="center">
20-
<img src="assets/boot-trace.png" alt="Restart Control Boot Trace" width="480" />
20+
<img src="assets/banner_011.gif" alt="Animated Restart Control Boot Trace" width="480" />
2121
</p>
2222

2323
## Installation

assets/banner_011.gif

771 KB
Loading

assets/plugin-matrix.png

4.47 KB
Loading

js/safe_restart.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -282,7 +282,7 @@ body.disable-animations .andreszs-safe-restart-telemetry > span {
282282
.andreszs-safe-restart-selector-card {
283283
box-sizing: border-box;
284284
position: relative;
285-
width: min(36rem, 94vw);
285+
width: min(30rem, 92vw);
286286
max-height: min(48rem, 92vh);
287287
padding: 1.4rem;
288288
border: 1px solid rgb(0 229 255 / 55%);

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
44

55
[project]
66
name = "restart-control"
7-
version = "0.1.0"
7+
version = "0.1.1"
88
description = "A guarded, queue-aware restart controller for ComfyUI."
99
readme = "README.md"
1010
requires-python = ">=3.10"
@@ -25,7 +25,7 @@ Documentation = "https://github.com/andreszs/ComfyUI-Restart-Control#readme"
2525
PublisherId = "andreszs"
2626
DisplayName = "ComfyUI Restart Control"
2727
Icon = "https://raw.githubusercontent.com/andreszs/ComfyUI-Restart-Control/main/assets/icon.svg"
28-
Banner = "https://raw.githubusercontent.com/andreszs/ComfyUI-Restart-Control/main/assets/banner_010.gif"
28+
Banner = "https://raw.githubusercontent.com/andreszs/ComfyUI-Restart-Control/main/assets/banner_011.gif"
2929

3030
[tool.ruff]
3131
line-length = 100

tests/frontend/safe_restart_core.test.mjs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,8 @@ test("plugin matrix shares the restart frame and offers a subtle close action",
199199
/\.andreszs-safe-restart-card::before,[\s\S]*\.andreszs-safe-restart-selector-card::before,[\s\S]*\.andreszs-safe-restart-selector-card::after\s*\{/,
200200
);
201201
assert.match(stylesheet, /\.andreszs-safe-restart-selector button\.andreszs-safe-restart-selector-close\s*\{/);
202-
assert.match(stylesheet, /\.andreszs-safe-restart-selector-card\s*\{[^}]*width:\s*min\(36rem, 94vw\)/s);
202+
assert.match(stylesheet, /\.andreszs-safe-restart-card\s*\{[^}]*width:\s*min\(30rem, 92vw\)/s);
203+
assert.match(stylesheet, /\.andreszs-safe-restart-selector-card\s*\{[^}]*width:\s*min\(30rem, 92vw\)/s);
203204
assert.match(
204205
stylesheet,
205206
/\.andreszs-safe-restart-selector-kicker\s*\{[^}]*font-size:\s*1rem;[^}]*font-weight:\s*500;[^}]*letter-spacing:\s*0\.075em/s,

0 commit comments

Comments
 (0)