Jedrzej Kosinski
|
3a8286b034
|
Refactored io.py, ui.py, and resources.py to expose themselves on v3/__init__.py on _IO, _UI, and _RESOURCES classes such that the v3 schema can be iterated upon on versioned Core API soon
|
2025-07-24 16:00:27 -07:00 |
|
Jedrzej Kosinski
|
ddb84a3991
|
Renamed IO_V3 to _IO_V3
|
2025-07-23 15:37:43 -07:00 |
|
Jedrzej Kosinski
|
d984cee318
|
Renamed ComfyNodeV3 to ComfyNode, renamed ComfyNodeInternal to _ComfyNodeInternal
|
2025-07-23 15:05:58 -07:00 |
|
Jedrzej Kosinski
|
b0f73174b2
|
Renamed SchemaV3 to Schema
|
2025-07-23 14:55:53 -07:00 |
|
Jedrzej Kosinski
|
8c03ff085d
|
Fixed super() calls not working from within v3's execute function due to shallow_clone_class not accounting for bases properly
|
2025-07-22 16:33:58 -07:00 |
|
Jedrzej Kosinski
|
a7c59dc3d6
|
Removed state from ComfyNodeV3
|
2025-07-19 20:45:54 -07:00 |
|
Jedrzej Kosinski
|
96d317b3e2
|
Add is_experimental to v3 test sleep node
|
2025-07-19 20:06:09 -07:00 |
|
Jedrzej Kosinski
|
b6a4a4c664
|
Support async for v3's execute function, still need to test validate_inputs, fingerprint_inputs, and check_lazy_status, fix Any type for v3 by introducing __ne__ trick from comfy_api's typing.py
|
2025-07-18 15:50:42 -07:00 |
|
bigcat88
|
c3334ae813
|
V3: renamed DEFINE_SCHEMA to define_schema
|
2025-07-16 11:24:46 +03:00 |
|
bigcat88
|
a580176735
|
V3 Nodes: refactor ComfyNodeV3 class; use of ui.SavedResult; ported SaveAnimatedPNG and SaveAnimatedWEBP nodes
|
2025-07-14 16:35:25 +03:00 |
|
kosinkadink1@gmail.com
|
c9e03684d6
|
Changed how a node class is cloned and locked for execution, added EXECUTE_NORMALIZED to wrap around execute function so that a NodeOutput is always returned
|
2025-07-14 02:55:07 -05:00 |
|
kosinkadink1@gmail.com
|
5ee63e284b
|
Renamed 'node' to 'cls' in PreviewImage/Mask
|
2025-07-10 01:53:27 -05:00 |
|
kosinkadink1@gmail.com
|
5423a4f262
|
Made id on static Outputs optional, still required on DynamicOutput
|
2025-07-10 01:49:01 -05:00 |
|
kosinkadink1@gmail.com
|
56ccfeaa8a
|
Add fingerprint_inputs support (V3's IS_CHANGED)
|
2025-07-09 03:25:23 -05:00 |
|
kosinkadink1@gmail.com
|
82e6eeab75
|
Support validate_inputs for v3 replacing VALIDATE_INPUTS, support check_lazy_mix for v3, prep for renaming IS_CHANGED to fingerprint_inputs, reorder some class methods
|
2025-07-09 02:26:35 -05:00 |
|
kosinkadink1@gmail.com
|
a86fddcdd4
|
Fixed MultiCombo, confirmed VALIDATE_INPUTS, IS_CHANGED works
|
2025-07-09 00:26:15 -05:00 |
|
Jedrzej Kosinski
|
18a7207ca4
|
Mock AutogrowDynamic type
|
2025-07-04 16:27:03 -05:00 |
|
Jedrzej Kosinski
|
3758c65107
|
Extracted resources to separate file
|
2025-06-28 16:46:45 -07:00 |
|
Jedrzej Kosinski
|
0e7ff98e1d
|
Introduced Resources to ComfyNodeV3
|
2025-06-28 15:47:02 -07:00 |
|
Jedrzej Kosinski
|
2999212480
|
Moved ui preview-related classes out of io.py and into ui.py, refactored UIImages and related into PreviewImage and related
|
2025-06-28 13:53:25 -07:00 |
|
Jedrzej Kosinski
|
cef73c75fb
|
Fix recognizing ComfyNodeV3 class by using issubclass, removed override decorator as it was only introduced in py3.12
|
2025-06-27 14:00:20 -07:00 |
|
Jedrzej Kosinski
|
aefd845a21
|
Multitype refactor progress
|
2025-06-26 15:41:49 -07:00 |
|
Jedrzej Kosinski
|
6d64658c79
|
Added get_value and set_value to NodeState, small cleanup
|
2025-06-26 12:44:08 -07:00 |
|
Jedrzej Kosinski
|
6cf5db512a
|
Small refactor of V3TestNode
|
2025-06-19 04:55:05 -05:00 |
|
Jedrzej Kosinski
|
fe9a47ae50
|
Added V3 LoRA Loader node for test purposes, made NodeStateLocal more versatile with dict-like behavior and not throwing errors when nonexisting parameter is requested, returning None instead
|
2025-06-19 02:17:36 -05:00 |
|
Jedrzej Kosinski
|
ef3f45807f
|
Added multitype support for Widget Inputs via the types argument, MultiType.Input io_types renamed to types
|
2025-06-19 01:22:03 -05:00 |
|
Jedrzej Kosinski
|
11d87760ca
|
Renamed Hidden->HiddenHolder, HiddenEnum->Hidden for ease of usage, cls.hidden will only have values given for corresponding entries in the schema's hidden entry, fixed v3 node check in execution.get_input_data, some cleanup of whitespace and commented out code
|
2025-06-19 00:10:28 -05:00 |
|
Jedrzej Kosinski
|
f9aec12ef1
|
Refactored v3 code so that v3_01 becomes v3, v3_01 is deleted since no longer necessary
|
2025-06-18 23:29:32 -05:00 |
|
Jedrzej Kosinski
|
38721fdb64
|
Added hidden and state to passed-in clone of node class
|
2025-06-17 20:35:32 -05:00 |
|
kosinkadink1@gmail.com
|
2873aaf4db
|
Replaced 'behavior' with 'optional'; unlikely there will be anything other than 'required'/'optional' in the long run
|
2025-06-10 01:11:09 -07:00 |
|
kosinkadink1@gmail.com
|
70d2bbfec0
|
Try out adding Type class var to IO_V3 to help with type hints
|
2025-06-10 00:19:17 -07:00 |
|
Jedrzej Kosinski
|
2197b6cbf3
|
Renamed 'EXECUTE' class method to 'execute'
|
2025-06-05 16:42:51 -07:00 |
|
Jedrzej Kosinski
|
d79a3cf990
|
Changed execute instance method to EXECUTE class method, added countermeasures to avoid state leaks, ready ability to add extra params to clean class type clone
|
2025-06-05 04:12:44 -07:00 |
|
Jedrzej Kosinski
|
a7f515e913
|
Fixed missing self
|
2025-06-04 22:09:17 -07:00 |
|
kosinkadink1@gmail.com
|
1fb1bad150
|
Some node changes to compare v1 and v3
|
2025-06-04 18:56:01 -07:00 |
|
Jedrzej Kosinski
|
f46dc03658
|
Add some missing options to ComboInput
|
2025-06-02 21:57:27 -07:00 |
|
Jedrzej Kosinski
|
0d185b721f
|
Created and handled NodeOutput class to be the return value of v3 nodes' execute function
|
2025-06-01 01:08:07 -07:00 |
|
Jedrzej Kosinski
|
8642757971
|
Made V3 NODES_LIST work properly
|
2025-05-31 15:32:11 -07:00 |
|
kosinkadink1@gmail.com
|
de86d8e32b
|
Attempting to simplify node list definition in a python file via NODES_LIST
|
2025-05-31 15:24:37 -07:00 |
|
Jedrzej Kosinski
|
937d2d5325
|
Fixed 'display' serialization for Float/IntergerInput, some commented out code made during exploration
|
2025-05-31 04:00:03 -07:00 |
|
Jedrzej Kosinski
|
5f0e04e2d7
|
Temporarily adding nodes_v3_test.py file to comfy_extras for testing/sharing purposes
|
2025-05-28 21:35:14 -07:00 |
|