From 3628baf4b3b4c779a13ffbe3fcf35df03cbaa40a Mon Sep 17 00:00:00 2001 From: Nikolas Howard Date: Thu, 11 Apr 2024 20:03:50 +0100 Subject: [PATCH] 4.1.0 --- README.md | 7 +++++-- package-lock.json | 4 ++-- package.json | 4 ++-- 3 files changed, 9 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index f8ba680..14e86c8 100644 --- a/README.md +++ b/README.md @@ -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 | diff --git a/package-lock.json b/package-lock.json index bb85d2e..cfc1845 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "mistreevous", - "version": "4.0.0", + "version": "4.1.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "mistreevous", - "version": "4.0.0", + "version": "4.1.0", "license": "MIT", "dependencies": { "lotto-draw": "^1.0.2" diff --git a/package.json b/package.json index 4284b10..6c29968 100644 --- a/package.json +++ b/package.json @@ -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", @@ -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" }