Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

4.1.0 #90

Merged
merged 1 commit into from
Apr 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -1431,8 +1431,11 @@ A practical look at behaviour trees and a good example of modelling behaviour fo
## Version History
| Version | Notes |
| -------------- |:----------------------------------------------------------------------------------------|
| 4.0.0 | Added support for JSON tree defintions |
| | Added validateDefintion function to use in validating JSON/MDSL definitons |
| 4.1.0 | Added Race and All node types |
| | Added onNodeStateChange callback to behaviour tree options |
| | Added getTreeNodeDetails method to BehaviourTree |
| 4.0.0 | Added support for JSON tree definitions |
| | Added validateDefinition function to use in validating JSON/MDSL definitions |
| | Added convertMDSLToJSON function to convert existing MDSL definitions to JSON |
| | Tidied up error handling for agent and registered function invocation |
| | Action functions can now explictly return a value of State.RUNNING instead of having to return undefined |
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "mistreevous",
"version": "4.0.0",
"version": "4.1.0",
"description": "A library to declaratively define, build and execute behaviour trees, written in TypeScript for Node and browsers",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand Down Expand Up @@ -54,7 +54,7 @@
"bugs": {
"url": "https://github.com/nikkorn/mistreevous/issues"
},
"homepage": "https://nikkorn.github.io/mistreevous",
"homepage": "https://github.com/nikkorn/mistreevous",
"dependencies": {
"lotto-draw": "^1.0.2"
}
Expand Down
Loading