Skip to content

Commit 3d68e8e

Browse files
committed
* GRAPH NODE updated to use new mechanism in cozy_comfyui 0.0.37 for list of list parse on dynamics
1 parent 1c8edeb commit 3d68e8e

3 files changed

Lines changed: 7 additions & 3 deletions

File tree

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -138,6 +138,9 @@ Nodes that have been migrated:
138138

139139
[Migrated to Jovi_GLSL](https://github.com/Amorano/Jovi_GLSL)
140140

141+
**2025/06/28** @2.1.15:
142+
* `GRAPH NODE` updated to use new mechanism in cozy_comfyui 0.0.37 for list of list parse on dynamics
143+
141144
**2025/06/18** @2.1.14:
142145
* fixed resize_matte mode to use full mask/alpha
143146

core/utility/info.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -169,6 +169,8 @@ def INPUT_TYPES(cls) -> InputType:
169169
})
170170
return Lexicon._parse(d)
171171

172+
173+
172174
@classmethod
173175
def IS_CHANGED(cls, **kw) -> float:
174176
return float('nan')
@@ -184,8 +186,7 @@ def run(self, ident, **kw) -> tuple[TensorType]:
184186
if parse_reset(ident) > 0 or parse_param(kw, Lexicon.RESET, EnumConvertType.BOOLEAN, False)[0]:
185187
self.__history = []
186188
longest_edge = 0
187-
dynamic = parse_dynamic(kw, Lexicon.DYNAMIC, EnumConvertType.FLOAT, 0)
188-
dynamic = [i[0] for i in dynamic]
189+
dynamic = parse_dynamic(kw, Lexicon.DYNAMIC, EnumConvertType.FLOAT, 0, extend=False)
189190
self.__ax.clear()
190191
for idx, val in enumerate(dynamic):
191192
if isinstance(val, (set, tuple,)):

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[project]
22
name = "jovimetrix"
33
description = "Animation via tick. Parameter manipulation with wave generator. Unary and Binary math support. Value convert int/float/bool, VectorN and Image, Mask types. Shape mask generator. Stack images, do channel ops, split, merge and randomize arrays and batches. Load images & video from anywhere. Dynamic bus routing. Save output anywhere! Flatten, crop, transform; check colorblindness or linear interpolate values."
4-
version = "2.1.14"
4+
version = "2.1.15"
55
license = { file = "LICENSE" }
66
readme = "README.md"
77
authors = [{ name = "Alexander G. Morano", email = "amorano@gmail.com" }]

0 commit comments

Comments
 (0)