From c3335ffc3ef9ad2689e691fc38d92a6799c66c9b Mon Sep 17 00:00:00 2001 From: "M. H. Golkar" <1233337+mhgolkar@users.noreply.github.com> Date: Fri, 1 Mar 2024 14:58:16 +0330 Subject: [PATCH] v2.3.0 --- .gitignore | 6 +++++- changelog.md | 7 +++++++ readme.md | 8 ++++---- scripts/settings.gd | 4 ++-- 4 files changed, 18 insertions(+), 7 deletions(-) diff --git a/.gitignore b/.gitignore index d6774f6..29f347d 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,7 @@ +# Git +.gitignore +.git/ + # Godot 4+ specific ignores .godot/ @@ -17,6 +21,7 @@ mono_crash.*.json # Editor-specific ignores .vscode/ +*.code-workspace # System/tool-specific ignores .DS_Store @@ -24,7 +29,6 @@ mono_crash.*.json *~ # Misc -.git/ .wiki/ .extra/ .website/ diff --git a/changelog.md b/changelog.md index decbde7..ca9afec 100755 --- a/changelog.md +++ b/changelog.md @@ -1,6 +1,13 @@ # Arrow: Changelog +## v2.3.0 + ++ Add *filter by scene usage* functionality to the main resource inspectors ++ Few readability and UI/UX enhancements ++ Multiple bug fixes + + ## v2.2.0 + New built-in `Tag-Match` node diff --git a/readme.md b/readme.md index 5773402..4e0442e 100644 --- a/readme.md +++ b/readme.md @@ -103,10 +103,10 @@ Have a Good Time [releases]: https://github.com/mhgolkar/Arrow/releases -[linux-x11-x86-64-latest]: https://github.com/mhgolkar/Arrow/releases/download/v2.2.0/Arrow-v2.2.0-linux-x86_64.tar.gz -[linux-x11-x86-latest]: https://github.com/mhgolkar/Arrow/releases/download/v2.2.0/Arrow-v2.2.0-linux-x86.tar.gz -[win-32-latest]: https://github.com/mhgolkar/Arrow/releases/download/v2.2.0/Arrow-v2.2.0-win.32.zip -[win-64-latest]: https://github.com/mhgolkar/Arrow/releases/download/v2.2.0/Arrow-v2.2.0-win.64.zip +[linux-x11-x86-64-latest]: https://github.com/mhgolkar/Arrow/releases/download/v2.3.0/Arrow-v2.3.0-linux-x86_64.tar.gz +[linux-x11-x86-latest]: https://github.com/mhgolkar/Arrow/releases/download/v2.3.0/Arrow-v2.3.0-linux-x86.tar.gz +[win-32-latest]: https://github.com/mhgolkar/Arrow/releases/download/v2.3.0/Arrow-v2.3.0-win.32.zip +[win-64-latest]: https://github.com/mhgolkar/Arrow/releases/download/v2.3.0/Arrow-v2.3.0-win.64.zip [web-app]: https://mhgolkar.github.io/Arrow/ diff --git a/scripts/settings.gd b/scripts/settings.gd index d849620..23d7a5f 100644 --- a/scripts/settings.gd +++ b/scripts/settings.gd @@ -6,10 +6,10 @@ # Other scripts use this class as a centralized set of configurations class_name Settings -const ARROW_VERSION = "2.2.0" +const ARROW_VERSION = "2.3.0" const ARROW_WEBSITE = "https://mhgolkar.github.io/Arrow/" -const CURRENT_RELEASE_TAG = "v2.2.0" +const CURRENT_RELEASE_TAG = "v2.3.0" const ARROW_RELEASES_ARCHIVE = "https://github.com/mhgolkar/Arrow/releases/" const LATEST_RELEASE_CHECK_API = "https://api.github.com/repos/mhgolkar/Arrow/releases/latest"