diff --git a/CHANGELOG.md b/CHANGELOG.md index 4196fd87..cb765335 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,10 +1,47 @@ # CHANGELOG -## [1.0.1] - 2023-09-08 +## [1.0.5](https://github.com/Vahera/godot-orchestrator/releases/tag/v1.0.5) - 2023-09-17 + +- [0cb4a85](http://github.com/Vahera/godot-orchestrator/commit/0cb4a854542f3afffec2b35b241d0ab06a6b677e) - Document wait-for-input-action (#14) +- [0ee6ec3](http://github.com/Vahera/godot-orchestrator/commit/0ee6ec38a641b00a487a7e217620a84c0f079ff3) - wait between each action when chaining action multiple times +- [db147c4](http://github.com/Vahera/godot-orchestrator/commit/db147c407805a1914b37d7faf33e230da4d4fc09) - adjusted node ui size +- [eacbb2e](http://github.com/Vahera/godot-orchestrator/commit/eacbb2ee16a889ccab65373b35af28d7b4d88ced) - renamed shadow variable +- [750e959](http://github.com/Vahera/godot-orchestrator/commit/750e9598580f5b2733141a24f987a9be401b34ae) - added wait for action node +- [3fb7b41](http://github.com/Vahera/godot-orchestrator/commit/3fb7b41c8282c3eff27d36d7ab4bc44593bba496) - Fix more load order dependency failures +- [402152d](http://github.com/Vahera/godot-orchestrator/commit/402152de0606cc6fad34223c849603c40d74183c) - ShowMessage: ESC/SPACE now auto-completes text +- [f585b99](http://github.com/Vahera/godot-orchestrator/commit/f585b99a9e5a69d10d263394555dc9b51d2e0115) - Add handles to AUTHORS.txt +- [8275543](http://github.com/Vahera/godot-orchestrator/commit/827554380df7218b3bb82bf4c2d8f8b641fe1ad6) - Source version from plugin.cfg +- [a162a9b](http://github.com/Vahera/godot-orchestrator/commit/a162a9b156bb6bba82528b5ca365e88e4e2a68d6) - Add GitHub actions & dependabot + + +## [1.0.4](https://github.com/Vahera/godot-orchestrator/releases/tag/v1.0.4) - 2023-09-16 + +- [4f73e27](https://github.com/Vahera/godot-orchestrator/tree/4f73e27eb97f5d20dc89a5685140db846a98a085) - Prepare 1.0.4 release (update version) + + +## [1.0.3](https://github.com/Vahera/godot-orchestrator/releases/tag/v1.0.3) - 2023-09-16 + +- [4c14f2f](https://github.com/Vahera/godot-orchestrator/tree/4c14f2ff1e4c945c3e05053e7b4fd7d2b7e0be08) - Update open file references when moving files +- [7cfc9aa](https://github.com/Vahera/godot-orchestrator/tree/7cfc9aa06b1eaad12fd4903517c2f2999cf4c505) - Cleanup editor runtime output +- [fba16d4](https://github.com/Vahera/godot-orchestrator/tree/fba16d4289f631369469673e87f162e0b42e22b0) - Fix running orchestrations in editor +- [6c30b52](https://github.com/Vahera/godot-orchestrator/tree/6c30b5297ea33742ab13d0a832b8c6554ece64b2) - Allow multiple end nodes +- [b18a349](https://github.com/Vahera/godot-orchestrator/tree/b18a34924fc749df2fb2d3fbff82125659d93a1a) - Rename README to README.md +- [d6d7f96](https://github.com/Vahera/godot-orchestrator/tree/d6d7f96526b69815207a556bfb40037625768ad7) - Duplicate README in addon folder +- [f6e9fd9](https://github.com/Vahera/godot-orchestrator/tree/f6e9fd9a2a88f83b737aa956b034470f8708d019) - Updated README.md + + +## [1.0.2](https://github.com/Vahera/godot-orchestrator/releases/tag/v1.0.2) - 2023-09-10 + +- [a82afa7](https://github.com/Vahera/godot-orchestrator/tree/a82afa7853eff1eb8250b6e3a1d5a1e401787a2b) - Save orchestrations on EditorPlugin apply_changes callback +- [33a1392](https://github.com/Vahera/godot-orchestrator/tree/33e1392f63ad8e288ddf6bc990a6c6b22a2d33bc) - Fix plug-in load order, removing const preloads +- [3b54509](https://github.com/Vahera/godot-orchestrator/tree/3b54509912d13ac0cc3daf37ba2d202f0cca5dd3) - Load resource scripts safely to avoid runtime errors + + +## [1.0.1](https://github.com/Vahera/godot-orchestrator/releases/tag/v1.0.1) - 2023-09-08 - Removed unused logos. -- Released [1.0.1](https://github.com/Vahera/godot-orchestrator/releases/tag/v1.0.1) -## [1.0.0] - 2023-08-13 -- Released [1.0.0](https://github.com/Vahera/godot-orchestrator/releases/tag/v1.0.0) \ No newline at end of file +## [1.0.0](https://github.com/Vahera/godot-orchestrator/releases/tag/v1.0.0) - 2023-08-13 + +- Initial release \ No newline at end of file diff --git a/addons/orchestrator/AUTHORS.txt b/addons/orchestrator/AUTHORS.txt index e63b5665..4e2fe4da 100644 --- a/addons/orchestrator/AUTHORS.txt +++ b/addons/orchestrator/AUTHORS.txt @@ -1,2 +1,3 @@ Darryl Agee (Zomphie) Chris Cranford (Naros) +Pavan Ganti (gvrocksnow) diff --git a/addons/orchestrator/plugin.cfg b/addons/orchestrator/plugin.cfg index 7ee11a33..66054cc4 100644 --- a/addons/orchestrator/plugin.cfg +++ b/addons/orchestrator/plugin.cfg @@ -3,5 +3,5 @@ name="Orchestrator" description="Godot Orchestrator provides the ability to easily compose complex interactions using flow graphs." author="Vahera Studios" -version="1.0.4" +version="1.0.5" script="plugin.gd" diff --git a/docs/antora.yml b/docs/antora.yml index 89958349..fbe9ab09 100644 --- a/docs/antora.yml +++ b/docs/antora.yml @@ -1,10 +1,10 @@ name: orchestrator title: Orchestrator -version: 1.0.4 +version: 1.0.5 start_page: overview.adoc asciidoc: attributes: - version: 1.0.4 + version: 1.0.5 source-highlighter: ~ source-language: asciidoc@ table-caption: false