Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions __init__.py
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
"""
Node Runner - Import & export shader nodes as shareable strings.
Node Runner - Import & export shader, geometry, and compositor nodes as shareable strings.

Serializes Blender shader node trees to compressed, base64-encoded
Serializes Blender shader, geometry, and compositor node trees to compressed, base64-encoded
strings that can be shared via text, comments, or documentation.
"""

bl_info = {
"name": "Node Runner",
"description": "Import and export nodes as strings",
"author": "Noah Thiering <noah.thiering@gmail.com>",
"version": (1, 4, 1),
"blender": (4, 5, 0),
"version": (1, 4, 7),
"blender": (4, 2, 0),
"category": "Node",
}

Expand Down
6 changes: 3 additions & 3 deletions blender_manifest.toml
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
schema_version = "1.0.0"

id = "node_runner"
version = "1.4.1"
version = "1.4.2"
name = "Node Runner"
tagline = "Import and export nodes as strings"
tagline = "Import and export shader, geometry, and compositor nodes as strings"
maintainer = "Noah Thiering <noah.thiering@gmail.com>"

type = "add-on"

tags = ["Node", "Material", "Geometry Nodes"]

blender_version_min = "4.5.0"
blender_version_min = "4.2.0"

# https://docs.blender.org/manual/en/dev/advanced/extensions/licenses.html
license = ["SPDX:GPL-3.0-or-later"]
Expand Down
Loading