Skip to content

Releases: a-und-b/ComfyUI_AB_Wildcard

v1.1.1

13 Jun 14:18

Choose a tag to compare

Fixed

  • Card titles now resolve on every run. `Card Title` previously
    resolved to the card's prompt only on the first run of a session; on later
    runs a `GLOBAL_CACHE` hit short-circuited `load_tags()` before the card
    index was built, so the title fell back to literal text (e.g.
    `Iron Knight` -> `Iron Knight`) and lost its Prefix/Suffix. The index
    is now built before the cache lookup.

Full Changelog: v1.1.0...v1.1.1

v1.1.0

13 Jun 13:55

Choose a tag to compare

New

  • Dropdown pickers — "Wildcards" and "Tags" combos on the node insert tokens with a click (alternative to typing the autocomplete syntax).
  • `Card Title` — reference a YAML card directly by title (resolves to one of its prompts, applying its Prefix/Suffix), in addition to `<[tag]>` aggregation.
  • Tag autocomplete — typing `<[` now suggests card Tags.

Fixed

  • Autocomplete now works in Nodes 2.0 (Vue renderer), not just the legacy canvas renderer.
  • Suggestions are selectable by mouse click, and the textarea keeps focus afterwards.
  • Accepting a suggestion no longer inserts a truncated string (widget value sync).
  • Removed a duplicate `/ab_wildcard/wildcards` API route.

Chore

  • `pytest` moved out of runtime `requirements.txt` into `requirements-dev.txt`.
  • Added a text-processing test suite.