diff --git a/CHANGELOG.md b/CHANGELOG.md index cb765335..efa50716 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,33 @@ # CHANGELOG +## [1.1.0](https://github.com/Vahera/godot-orchestrator/releases/tag/v1.1.0) - 2023-12-08 + +- [174bdc4](http://github.com/Vahera/godot-orchestrator/commit/174bdc4d10a12ed04a7ccfc8ca0f0f1081eb93b7) - GH-22 Fix UID warnings +- [87cfac5](http://github.com/Vahera/godot-orchestrator/commit/87cfac53ee10a777ddd77c6a68b9af99fa56abc5) - GH-22 Remove default close_button signal +- [e98d83a](http://github.com/Vahera/godot-orchestrator/commit/e98d83ab4d6c90e5fa3cd2af49fbd06f7e8d39b0) - GH-22 Initial support for Godot 4.2 (4.2.dev5) +- [bb16856](http://github.com/Vahera/godot-orchestrator/commit/bb1685623f985e5b3411cf2028d5bcf86fd4b45d) - [ci] Upgrade metcalfc/changelog-generator from 4.1.0 to 4.2.0 +- [867eb58](http://github.com/Vahera/godot-orchestrator/commit/867eb58e47d7dbc6c96089d6f378ef926524a876) - Update READMEs +- [90b73b6](http://github.com/Vahera/godot-orchestrator/commit/90b73b6b5150f8feb4068a2e8d3a1457a6d71000) - Code improvements +- [4b8c265](http://github.com/Vahera/godot-orchestrator/commit/4b8c2656d23b968ce67f6954d842683357b96490) - Add context-menu to Orchestration files list +- [ca1ae29](http://github.com/Vahera/godot-orchestrator/commit/ca1ae291e7e6ad570987ff0a4c016bbcf1a4fd41) - GH-24 Introduce an `OrchestrationPlayer` scene node +- [17425b8](http://github.com/Vahera/godot-orchestrator/commit/17425b834561f5cb3ccf901437832865b264bf8c) - GH-29 Update documentation +- [8010d4a](http://github.com/Vahera/godot-orchestrator/commit/8010d4ad1163906a2b5f946669079c4c6eb0b7e9) - GH-31 Add missing documentation images +- [a41bdc7](http://github.com/Vahera/godot-orchestrator/commit/a41bdc73510431bba07a6e4bece9341c2085e8ae) - GH-31 Update documentation +- [27f4314](http://github.com/Vahera/godot-orchestrator/commit/27f4314ebf14e327f88916f852cc4bc22c29fefb) - GH-33 Update documentation +- [bd20168](http://github.com/Vahera/godot-orchestrator/commit/bd201684a3c5b8307e1bccdb07ff0d25a3e8d599) - Update .gitignore +- [292e73c](http://github.com/Vahera/godot-orchestrator/commit/292e73c03b62a3e039fb9e3af0b05224536ad842) - GH-33 Add node icons to node list and drag visual +- [266e828](http://github.com/Vahera/godot-orchestrator/commit/266e8282982ce273b5fbae5c2fcef0cb519b2e35) - GH-31 Add auto-update feature +- [33684d3](http://github.com/Vahera/godot-orchestrator/commit/33684d3ea82079f6e109f11ab4f7dcfd249308cc) - GH-29 Add configurable options to ProjectSettings UI +- [c81f23e](http://github.com/Vahera/godot-orchestrator/commit/c81f23e0090c239dc3b2f6f15fea5542a786a006) - Merge branch 'Zomphie-patch-3' +- [e20bfc7](http://github.com/Vahera/godot-orchestrator/commit/e20bfc74ac86c57481c3fd4a806c6dd181f6d473) - Update README.md +- [4b33aa6](http://github.com/Vahera/godot-orchestrator/commit/4b33aa6aa9173d791cfe3d050ef58c9a061bcbf3) - Update README.md +- [7001d13](http://github.com/Vahera/godot-orchestrator/commit/7001d1372606c41e9172c9b9c89088a14a05444d) - GH-26 Fix when removing unconnected show message choices +- [26be9f4](http://github.com/Vahera/godot-orchestrator/commit/26be9f433d4173a2c57a25df5480ea3f6bea46fc) - GH-21 Show character name field by default +- [277fbd8](http://github.com/Vahera/godot-orchestrator/commit/277fbd8a9ea5700ec9af148464bc1da2088cf825) - GH-21 Use correct speaker name for show message nodes +- [0b6cf15](http://github.com/Vahera/godot-orchestrator/commit/0b6cf15f2aba769d4fd1e1cc6ef753721588b3a1) - Add feature request/enhancement issues option +- [027d13b](http://github.com/Vahera/godot-orchestrator/commit/027d13bdf77aa926ce3c143299eeda0676b1b4ae) - Update config.yml + + ## [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) diff --git a/addons/orchestrator/components/editor/plugin_update_available_button.tscn b/addons/orchestrator/components/editor/plugin_update_available_button.tscn index 6ae95da2..0347aca1 100644 --- a/addons/orchestrator/components/editor/plugin_update_available_button.tscn +++ b/addons/orchestrator/components/editor/plugin_update_available_button.tscn @@ -13,7 +13,7 @@ grow_vertical = 2 theme_override_colors/font_color = Color(0, 0, 0, 1) theme_override_colors/font_hover_color = Color(0, 0, 0, 1) theme_override_colors/font_focus_color = Color(0, 0, 0, 1) -text = "v1.0.5" +text = "v1.1.0" script = ExtResource("1_c2qg7") [node name="HTTPRequest" type="HTTPRequest" parent="."] diff --git a/addons/orchestrator/plugin.cfg b/addons/orchestrator/plugin.cfg index aad50502..15bc5c77 100644 --- a/addons/orchestrator/plugin.cfg +++ b/addons/orchestrator/plugin.cfg @@ -3,7 +3,7 @@ name="Orchestrator" description="Godot Orchestrator provides the ability to easily compose complex interactions using flow graphs." author="Vahera Studios" -version="1.0.5" +version="1.1.0" script="plugin.gd" documentation_url="https://www.vahera.com/docs" github_releases_url="https://api.github.com/repos/Vahera/godot-orchestrator/releases" diff --git a/addons/orchestrator/views/about_view.tscn b/addons/orchestrator/views/about_view.tscn index cfbbc5d6..8dcb324a 100644 --- a/addons/orchestrator/views/about_view.tscn +++ b/addons/orchestrator/views/about_view.tscn @@ -69,7 +69,7 @@ alignment = 1 [node name="Version" type="Label" parent="AboutLayout/Banner/HBoxContainer/CopyrightContainer"] unique_name_in_owner = true layout_mode = 2 -text = "Godot Orchestrator v1.0.5" +text = "Godot Orchestrator v1.1.0" [node name="Copyright" type="Label" parent="AboutLayout/Banner/HBoxContainer/CopyrightContainer"] layout_mode = 2 diff --git a/addons/orchestrator/views/main_view.tscn b/addons/orchestrator/views/main_view.tscn index 40f06f84..1a23feb6 100644 --- a/addons/orchestrator/views/main_view.tscn +++ b/addons/orchestrator/views/main_view.tscn @@ -146,7 +146,7 @@ size_flags_vertical = 4 [node name="Version" type="Label" parent="Margin/VBoxContainer/HBoxContainer/MenuBar2/HBoxContainer"] layout_mode = 2 -text = "Godot Orchestrator v1.0.5" +text = "Godot Orchestrator v1.1.0" vertical_alignment = 1 [node name="PluginUpdateAvailableButton" parent="Margin/VBoxContainer/HBoxContainer/MenuBar2/HBoxContainer" instance=ExtResource("2_hestl")] diff --git a/docs/antora.yml b/docs/antora.yml index fbe9ab09..8b1cc3fe 100644 --- a/docs/antora.yml +++ b/docs/antora.yml @@ -1,10 +1,10 @@ name: orchestrator title: Orchestrator -version: 1.0.5 +version: 1.1.0 start_page: overview.adoc asciidoc: attributes: - version: 1.0.5 + version: 1.1.0 source-highlighter: ~ source-language: asciidoc@ table-caption: false