File tree 4 files changed +13
-4
lines changed
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
+
1
11
# 0.8.15
2
12
3
13
### 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
35
35
36
36
``` python
37
37
# file: ./BPNode/Example/Hello.py
38
- import types
39
38
40
39
@Blackprint.registerNode (' Example/Hello' )
41
40
class Hello (Blackprint .Node ):
42
41
# Please remember to capitalize the port name
43
42
# Set the output port structure for your node (Optional)
44
43
output = {
45
- ' Changed' : types.FunctionType ,
44
+ ' Changed' : Blackprint.Types.Trigger ,
46
45
# this.output['Changed']() -- To call every connected port
47
46
48
47
' Output' : int ,
Original file line number Diff line number Diff line change 1
1
[project ]
2
2
name = " blackprint-engine"
3
- version = " 0.8.15 "
3
+ version = " 0.9.0 "
4
4
description = " Blackprint engine for registering node/interface and run exported Blackprint on Python environment"
5
5
readme = " README.md"
6
6
requires-python = " >=3.10"
Original file line number Diff line number Diff line change 2
2
3
3
setup (
4
4
name = 'Blackprint' ,
5
- version = '0.8.15 ' ,
5
+ version = '0.9.0 ' ,
6
6
packages = ['Blackprint' ],
7
7
# scripts=['bin/script1','bin/script2'],
8
8
url = 'https://github.com/Blackprint/engine-python' ,
You can’t perform that action at this time.
0 commit comments