Skip to content

Commit c0bd4a1

Browse files
committed
Fixed PublisherId
1 parent 3728fbe commit c0bd4a1

3 files changed

Lines changed: 24 additions & 6 deletions

File tree

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1515

1616
### Removed
1717

18+
## [2.0.1] - 2026-01-22
19+
20+
### Changed
21+
- Added minimum requirements to the project description
22+
23+
### Fixed
24+
- Updated Publisher ID for the node registry
25+
- Fixed typo in README.md
26+
1827
## [2.0.0] - 2025-11-21
1928

2029
### Added

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
ComfyUI custom nodes for creating AI texture processing workflows that integrate seamlessly with the NVIDIA RTX Remix Toolkit.
44

55
> [!NOTE]
6-
> The RTX Remix Toolkit is currently a work in progress and is not yet ready for production use.
6+
> The RTX Remix Toolkit Integration is currently a work in progress and is not yet ready for production use.
77
> Beta releases may be available for testing and feedback on the [RTX Remix Toolkit GitHub repository](https://github.com/NVIDIAGameWorks/toolkit-remix).
88
> If not, please check back later or contact the NVIDIA RTX Remix team on the [RTX Remix Showcase Discord server](https://discord.gg/c7J6gUhXMk).
99

pyproject.toml

Lines changed: 14 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,34 @@
11
[project]
22
name = "comfyui-rtx-remix"
3-
description = "Use ComfyUI with RTX Remix to remaster classic games [a/https://github.com/NVIDIAGameWorks/rtx-remix](https://github.com/NVIDIAGameWorks/rtx-remix)"
4-
version = "2.0.0"
3+
description = "Use ComfyUI with the RTX Remix Toolkit to remaster classic games."
4+
version = "2.0.1"
55
license = { file = "LICENSE" }
6+
requires-python = ">=3.9"
67
dependencies = [
8+
"comfyui-frontend-package>=1.24.4",
79
"huggingface-hub",
810
"numpy",
911
"pillow>=10.0.1",
1012
"pydantic==2.11.5",
1113
"requests",
1214
"torch",
1315
]
16+
classifiers = [
17+
"Operating System :: OS Independent",
18+
"Environment :: GPU :: NVIDIA CUDA",
19+
]
1420

1521
[project.urls]
1622
Repository = "https://github.com/NVIDIAGameWorks/ComfyUI-RTX-Remix"
17-
# Used by Comfy Registry https://comfyregistry.org
23+
Documentation = "https://docs.omniverse.nvidia.com/kit/docs/rtx_remix/latest/index.html"
24+
"Bug Tracker" = "https://github.com/NVIDIAGameWorks/rtx-remix/issues"
1825

26+
# Used by Comfy Registry https://comfyregistry.org
1927
[tool.comfy]
20-
PublisherId = "nvidia-gameworks"
21-
DisplayName = "ComfyUI-RTX-Remix"
28+
PublisherId = "svc-remix-github"
29+
DisplayName = "RTX Remix Nodes"
2230
Icon = "web/resources/images/remix_icon.png"
31+
requires-comfyui = ">=0.3.48"
2332

2433
[tool.ruff]
2534
line-length = 120

0 commit comments

Comments
 (0)