Sandpies Claude Opus 5 commited on
Commit
0ef0a8a
·
1 Parent(s): a049ec4

0.4.3: square icon, banner, and the author field the registry never reads

Browse files

The 0.4.2 icon was 800x400, taken from the publishing page's "maximum 800x400".
The specifications page is stricter and more specific: Icon must be SQUARE and
at most 400x400, and the wide slot is a separate `Banner` field at 21:9. Icon is
now 400x400 centred on the subject, and a 1260x540 banner fills the slot it was
wrongly occupying.

The registry reads no author field from `[project]` or `[tool.comfy]`, so the
`authors` line added in 0.4.2 does not populate the listing and never will. Kept
as correct package metadata, with a comment saying so, rather than left looking
like a fix that works.

`license = "MIT"` did land -- the listing went from `{"file": "LICENSE"}` to
`{"text": "MIT"}`.

Added Documentation and Bug Tracker to [project.urls]; the registry surfaces
them and only Repository was set.

Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_015MGjcAV8bDy93qJfmLi9kw

Files changed (3) hide show
  1. docs/img/banner.png +3 -0
  2. docs/img/icon.png +2 -2
  3. pyproject.toml +9 -1
docs/img/banner.png ADDED

Git LFS Details

  • SHA256: fdce8abcd6208832c91bef51b65ae78f18fa85a297e81d34f5fdcf501cf541e3
  • Pointer size: 131 Bytes
  • Size of remote file: 497 kB
docs/img/icon.png CHANGED

Git LFS Details

  • SHA256: 2b9472245704804ba2fbf73ab2b938448cf10802b7c89ea6611cc6916a7b09f9
  • Pointer size: 131 Bytes
  • Size of remote file: 308 kB

Git LFS Details

  • SHA256: 305028c4bc3aeb3a383b08b09ebb46abe7edbef77a730e63b81ea68a408c1820
  • Pointer size: 131 Bytes
  • Size of remote file: 173 kB
pyproject.toml CHANGED
@@ -1,6 +1,6 @@
1
  [project]
2
  name = "comfyui-hand-tie-clips"
3
- version = "0.4.2"
4
  description = "Native MiniMax H3 Ref2VA chain: persistent references, previous-segment clip+audio pin, one queue."
5
  readme = "README.md"
6
  # SPDX string, not `{ file = "LICENSE" }`. The registry does not resolve the file
@@ -8,12 +8,16 @@ readme = "README.md"
8
  # `{"file": "LICENSE"}` where the licence should be. The LICENSE file stays; this
9
  # is what GitHub and the registry both read.
10
  license = "MIT"
 
 
11
  authors = [{ name = "sandpies" }]
12
  requires-python = ">=3.10"
13
  dependencies = []
14
 
15
  [project.urls]
16
  Repository = "https://github.com/dntpi/ComfyUI-Hand-Tie-Clips"
 
 
17
 
18
  # `comfy node publish` needs PublisherId as well as the Repository above.
19
  # Set 2026-08-30 from registry.comfy.org/publishers/sandpies. Globally unique
@@ -22,4 +26,8 @@ Repository = "https://github.com/dntpi/ComfyUI-Hand-Tie-Clips"
22
  [tool.comfy]
23
  PublisherId = "sandpies"
24
  DisplayName = "Hand Tie Clips"
 
 
 
25
  Icon = "https://media.githubusercontent.com/media/dntpi/ComfyUI-Hand-Tie-Clips/main/docs/img/icon.png"
 
 
1
  [project]
2
  name = "comfyui-hand-tie-clips"
3
+ version = "0.4.3"
4
  description = "Native MiniMax H3 Ref2VA chain: persistent references, previous-segment clip+audio pin, one queue."
5
  readme = "README.md"
6
  # SPDX string, not `{ file = "LICENSE" }`. The registry does not resolve the file
 
8
  # `{"file": "LICENSE"}` where the licence should be. The LICENSE file stays; this
9
  # is what GitHub and the registry both read.
10
  license = "MIT"
11
+ # The registry reads no author field from either section -- this is here as
12
+ # correct package metadata, not to populate the listing, which stays blank.
13
  authors = [{ name = "sandpies" }]
14
  requires-python = ">=3.10"
15
  dependencies = []
16
 
17
  [project.urls]
18
  Repository = "https://github.com/dntpi/ComfyUI-Hand-Tie-Clips"
19
+ Documentation = "https://github.com/dntpi/ComfyUI-Hand-Tie-Clips/blob/main/PROMPTING.md"
20
+ "Bug Tracker" = "https://github.com/dntpi/ComfyUI-Hand-Tie-Clips/issues"
21
 
22
  # `comfy node publish` needs PublisherId as well as the Repository above.
23
  # Set 2026-08-30 from registry.comfy.org/publishers/sandpies. Globally unique
 
26
  [tool.comfy]
27
  PublisherId = "sandpies"
28
  DisplayName = "Hand Tie Clips"
29
+ # Square, 400x400. The specifications page requires square and <=400x400; the
30
+ # publishing page says "max 800x400", which is looser. 400x400 satisfies both.
31
+ # The wide crop belongs in Banner, which is what the 21:9 slot is for.
32
  Icon = "https://media.githubusercontent.com/media/dntpi/ComfyUI-Hand-Tie-Clips/main/docs/img/icon.png"
33
+ Banner = "https://media.githubusercontent.com/media/dntpi/ComfyUI-Hand-Tie-Clips/main/docs/img/banner.png"