Skip to content

Commit

Permalink
v2.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mhgolkar committed Mar 1, 2024
1 parent 9176927 commit c3335ff
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 7 deletions.
6 changes: 5 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# Git
.gitignore
.git/

# Godot 4+ specific ignores
.godot/

Expand All @@ -17,14 +21,14 @@ mono_crash.*.json

# Editor-specific ignores
.vscode/
*.code-workspace

# System/tool-specific ignores
.DS_Store
.directory
*~

# Misc
.git/
.wiki/
.extra/
.website/
Expand Down
7 changes: 7 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
8 changes: 4 additions & 4 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -103,10 +103,10 @@ Have a Good Time

<!-- download -->
[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
<!-- pwa -->
[web-app]: https://mhgolkar.github.io/Arrow/
<!-- wiki -->
Expand Down
4 changes: 2 additions & 2 deletions scripts/settings.gd
Original file line number Diff line number Diff line change
Expand Up @@ -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"

Expand Down

0 comments on commit c3335ff

Please sign in to comment.