Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
mape committed Jan 28, 2024
0 parents commit da1e1b1
Show file tree
Hide file tree
Showing 4 changed files with 93 additions and 0 deletions.
14 changes: 14 additions & 0 deletions NOTICE
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
This project includes code from the SolidJs project (MIT)
https://github.com/solidjs/solid

This project includes code from the Solid Ninja Keys project (MIT)
https://github.com/wobsoriano/solid-ninja-keys

This project includes code from the Hotkeys.js project (MIT)
https://github.com/jaywcjlove/hotkeys-js

This project includes code from the SD Prompt Parser project (MIT)
https://github.com/vczh/sd-prompt-parser

This project includes code from the UE Nodes project (Apache 2.0)
https://github.com/chrisgoringe/cg-use-everywhere
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# mape's ComfyUI Helpers

Multi monitor image preview, Variable Assigment/Wireless Nodes, Prompt Tweaking, Command Palette, Pinned favourite nodes, Node navigation, Fuzzy search, Node time tracking, Organizing and Error management.

For more info visit: https://comfyui.ma.pe/

![mape's ComfyUI helpers](https://comfyui.ma.pe/github.jpg)
33 changes: 33 additions & 0 deletions __init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
"""
@author: mape
@title: mape's helpers
@nickname: 🟡 mape's helpers
@version: 0.1
@description: Various QoL improvements like prompt tweaking, variable assignment, image preview, fuzzy search, error reporting, organizing and node navigation.
"""

class MapeVariable():
OUTPUT_NODE = True
FUNCTION = "func"
CATEGORY = "mape"
RETURN_TYPES = ()

@classmethod
def INPUT_TYPES(s):
return {
"required": {
"name": ("STRING", {"name": ""}),
},
"optional": {
"*": ("*", {}),
},
"hidden": {"id": "UNIQUE_ID"},
}

RETURN_TYPES = ("*",)

NODE_CLASS_MAPPINGS = { "mape Variable": MapeVariable }

WEB_DIRECTORY = "./js"

__all__ = ["NODE_CLASS_MAPPINGS", "WEB_DIRECTORY"]
39 changes: 39 additions & 0 deletions js/tweak/mape-helpers.js

Large diffs are not rendered by default.

0 comments on commit da1e1b1

Please sign in to comment.