diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
index 4de8c6e93..9db31b20c 100644
--- a/.github/workflows/release.yml
+++ b/.github/workflows/release.yml
@@ -8,7 +8,7 @@ env:
GODOT_VERSION: 3.4.2
GODOT_VERSION_MAC: 3.4.2
EXPORT_NAME: Pixelorama
- TAG: v0.10
+ TAG: v0.10.1
BUTLER_API_KEY: ${{ secrets.BUTLER_API_KEY }}
jobs:
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 9c535a4ce..08bc881f7 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). All the dates are in YYYY-MM-DD format.
-## [v0.10.1] - Unreleased
+## [v0.10.1] - 2022-06-06
This update has been brought to you by the contributions of:
Fayez Akhtar ([@Variable-ind](https://github.com/Variable-ind)), Matteo Piovanelli ([@MatteoPiovanelli-Laser](https://github.com/MatteoPiovanelli-Laser)), [@AlphinAlbukhari](https://github.com/AlphinAlbukhari), Martin Novák ([@novhack](https://github.com/novhack))
diff --git a/Misc/Clickable/click/manifest.json b/Misc/Clickable/click/manifest.json
index 3757ed1d0..122f1630c 100644
--- a/Misc/Clickable/click/manifest.json
+++ b/Misc/Clickable/click/manifest.json
@@ -11,5 +11,5 @@
"maintainer": "Orama Interactive ",
"name": "pixelorama.orama-interactive",
"title": "Pixelorama",
- "version": "0.10-stable"
+ "version": "0.10.1-stable"
}
diff --git a/Misc/Linux/com.orama_interactive.Pixelorama.appdata.xml b/Misc/Linux/com.orama_interactive.Pixelorama.appdata.xml
index e50c1fbad..2e6c384e7 100644
--- a/Misc/Linux/com.orama_interactive.Pixelorama.appdata.xml
+++ b/Misc/Linux/com.orama_interactive.Pixelorama.appdata.xml
@@ -31,6 +31,7 @@
+
diff --git a/installer/pixelorama.nsi b/installer/pixelorama.nsi
index 1d3985cdd..6f306b25e 100644
--- a/installer/pixelorama.nsi
+++ b/installer/pixelorama.nsi
@@ -6,7 +6,7 @@
; Helper variables so that we don't change 20 instances of the version for every update
!define APPNAME "Pixelorama"
- !define APPVERSION "v0.10"
+ !define APPVERSION "v0.10.1"
!define COMPANYNAME "Orama Interactive"
diff --git a/project.godot b/project.godot
index c730d91b5..f44936ebe 100644
--- a/project.godot
+++ b/project.godot
@@ -158,7 +158,7 @@ config/macos_native_icon="res://assets/graphics/icons/icon.icns"
config/windows_native_icon="res://assets/graphics/icons/icon.ico"
config/custom_user_dir_name.X11="pixelorama"
run/low_processor_mode.Android=false
-config/Version="v0.10.1-rc1"
+config/Version="v0.10.1-stable"
[audio]
diff --git a/src/UI/Dialogs/AboutDialog.gd b/src/UI/Dialogs/AboutDialog.gd
index f517d581c..ec623f2cd 100644
--- a/src/UI/Dialogs/AboutDialog.gd
+++ b/src/UI/Dialogs/AboutDialog.gd
@@ -177,7 +177,7 @@ func _on_Groups_item_selected() -> void:
func _on_Website_pressed() -> void:
- OS.shell_open("https://www.orama-interactive.com")
+ OS.shell_open("https://www.oramainteractive.com")
func _on_GitHub_pressed() -> void:
diff --git a/src/UI/TopMenuContainer.gd b/src/UI/TopMenuContainer.gd
index 44fd0012d..744862b06 100644
--- a/src/UI/TopMenuContainer.gd
+++ b/src/UI/TopMenuContainer.gd
@@ -676,7 +676,7 @@ func help_menu_id_pressed(id: int) -> void:
Global.control.get_node("Dialogs/SplashDialog").popup_centered()
Global.dialog_open(true)
Global.HelpMenu.ONLINE_DOCS:
- OS.shell_open("https://orama-interactive.github.io/Pixelorama-Docs/")
+ OS.shell_open("https://www.oramainteractive.com/Pixelorama-Docs/")
Global.HelpMenu.ISSUE_TRACKER:
OS.shell_open("https://github.com/Orama-Interactive/Pixelorama/issues")
Global.HelpMenu.OPEN_LOGS_FOLDER:
@@ -685,7 +685,7 @@ func help_menu_id_pressed(id: int) -> void:
OS.shell_open(ProjectSettings.globalize_path("user://logs"))
Global.HelpMenu.CHANGELOG:
OS.shell_open(
- "https://github.com/Orama-Interactive/Pixelorama/blob/master/CHANGELOG.md#v010---2022-04-15"
+ "https://github.com/Orama-Interactive/Pixelorama/blob/master/CHANGELOG.md#v0101---2022-06-06"
)
Global.HelpMenu.ABOUT_PIXELORAMA:
Global.control.get_node("Dialogs/AboutDialog").popup_centered()