add keywords for all nodes

This commit is contained in:
2026-04-04 14:58:56 -07:00
parent 69f1d1bebd
commit a0d3b22f18
195 changed files with 437 additions and 198 deletions

View File

@@ -32,8 +32,8 @@ def _parse_ibw_note(note_bytes: bytes) -> list[dict]:
return rows
@register_node(display_name="Note")
class Note:
@register_node(display_name="Igor Note")
class IgorNote:
@classmethod
def INPUT_TYPES(cls):
return {
@@ -55,6 +55,8 @@ class Note:
"as a table of key/value pairs."
)
KEYWORDS = ("ibw", "metadata", "header", "parameters", "igor")
def load(self, filename: str = "", path: str | None = None) -> tuple:
selected = str(path).strip() if path is not None else str(filename).strip()
if not selected: