File tree Expand file tree Collapse file tree 4 files changed +13
-4
lines changed
Expand file tree Collapse file tree 4 files changed +13
-4
lines changed Original file line number Diff line number Diff line change 1+ # 0.9.0
2+
3+ ### Breaking Changes
4+ - Change callable output port type with Trigger type
5+ - Renamed type: ` types.FunctionType ` to ` Blackprint.Types.Trigger `
6+
7+ ### Features
8+ - Allow function node to be paused on creation
9+ - Add feature to linking variable between instances
10+
111# 0.8.15
212
313### Bug Fix
Original file line number Diff line number Diff line change @@ -35,14 +35,13 @@ import BPNode # Import your own nodes located on ./BPNode directory
3535
3636``` python
3737# file: ./BPNode/Example/Hello.py
38- import types
3938
4039@Blackprint.registerNode (' Example/Hello' )
4140class Hello (Blackprint .Node ):
4241 # Please remember to capitalize the port name
4342 # Set the output port structure for your node (Optional)
4443 output = {
45- ' Changed' : types.FunctionType ,
44+ ' Changed' : Blackprint.Types.Trigger ,
4645 # this.output['Changed']() -- To call every connected port
4746
4847 ' Output' : int ,
Original file line number Diff line number Diff line change 11[project ]
22name = " blackprint-engine"
3- version = " 0.8.15 "
3+ version = " 0.9.0 "
44description = " Blackprint engine for registering node/interface and run exported Blackprint on Python environment"
55readme = " README.md"
66requires-python = " >=3.10"
Original file line number Diff line number Diff line change 22
33setup (
44 name = 'Blackprint' ,
5- version = '0.8.15 ' ,
5+ version = '0.9.0 ' ,
66 packages = ['Blackprint' ],
77 # scripts=['bin/script1','bin/script2'],
88 url = 'https://github.com/Blackprint/engine-python' ,
You can’t perform that action at this time.
0 commit comments