You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+22Lines changed: 22 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,6 +4,28 @@ All notable changes to this package will be documented in this file.
4
4
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
5
5
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
6
6
7
+
## [0.8.0]
8
+
9
+
### Added
10
+
- Depth first compute order (enabled by default) instead of breadth first
11
+
- Cycle detection in the graph, cyclic nodes are now marked with a compute order of -2
12
+
- Added a node create menu when dropping an edge in the graph that also connects the edge to the new node (like in ShaderGraph or VFX Graph)
13
+
- Added ITypeAdapter.GetIncompatibleTypes to list all the incompatible types (prevent automatic casting / unwanted connectable ports, can be used to exclude a conversion to System.Object for example)
14
+
- Added a node inspector to show advanced settings in the inspector, see `ShowInInspector.cs` and `DrawDefaultInspector(bool fromInspector)` for more details.
15
+
16
+
### Changed
17
+
- Improved a lot the edge connection behavior for both input and output ports
18
+
- Improved domain reload performances by using `TypeCache` when possible
19
+
- Node copy/pasting now keeps the connected edges
20
+
- Copy/paste now works between multiple graph windows
21
+
- Copy/paste now supports node groups
22
+
23
+
### Fixed
24
+
- Fixed delete of multiple relay node at the same time breaking the graph
25
+
- Fixed undo event not being unregistered when closing the graph
0 commit comments