diff --git a/CHANGELOG.md b/CHANGELOG.md
index c6faa436d..374113adb 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.9.1] - Unreleased
+## [v0.9.1] - 2021-12-20
This update has been brought to you by the contributions of:
Laurenz Reinthaler ([@Schweini07](https://github.com/Schweini07)), Fayez Akhtar ([@Variable-ind](https://github.com/Variable-ind)), Marquis Kurt ([@alicerunsonfedora](https://github.com/alicerunsonfedora)), Xenofon Konitsas ([@huskeee](https://github.com/huskeee)), Silent Orb ([@silentorb](https://github.com/silentorb)), Jeremy Behreandt ([@behreajj](https://github.com/behreajj)), [@mrtripie](https://github.com/mrtripie), [@JumpJetAvocado](https://github.com/JumpJetAvocado)
diff --git a/Misc/Linux/com.orama_interactive.Pixelorama.appdata.xml b/Misc/Linux/com.orama_interactive.Pixelorama.appdata.xml
index 5b74e7e3c..9b22eb53b 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 06742ac57..5968be29f 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.9"
+ !define APPVERSION "v0.9.1"
!define COMPANYNAME "Orama Interactive"
@@ -261,4 +261,4 @@
!insertmacro MUI_UNFUNCTION_DESCRIPTION_END
-
\ No newline at end of file
+
diff --git a/project.godot b/project.godot
index 2c65d3aea..398f101bf 100644
--- a/project.godot
+++ b/project.godot
@@ -149,7 +149,7 @@ boot_splash/bg_color=Color( 0.145098, 0.145098, 0.164706, 1 )
config/icon="res://assets/graphics/icons/icon.png"
config/macos_native_icon="res://assets/graphics/icons/icon.icns"
config/windows_native_icon="res://assets/graphics/icons/icon.ico"
-config/Version="v0.9.1-rc2"
+config/Version="v0.9.1-stable"
run/low_processor_mode.Android=false
[audio]
diff --git a/src/UI/Dialogs/AboutDialog.gd b/src/UI/Dialogs/AboutDialog.gd
index c678245a4..026dc209f 100644
--- a/src/UI/Dialogs/AboutDialog.gd
+++ b/src/UI/Dialogs/AboutDialog.gd
@@ -297,6 +297,7 @@ func create_translators() -> void:
)
translators.create_item(translators_root).set_text(0, " Teashrock - " + tr("Esperanto"))
translators.create_item(translators_root).set_text(0, " Blend_Smile - " + tr("Indonesian"))
+ translators.create_item(translators_root).set_text(0, " NoahParaduck - " + tr("Indonesian"))
translators.create_item(translators_root).set_text(
0, " Martin Novák (novhack) - " + tr("Czech")
)
diff --git a/src/UI/TopMenuContainer.gd b/src/UI/TopMenuContainer.gd
index 3f7aad7e1..9e746aebd 100644
--- a/src/UI/TopMenuContainer.gd
+++ b/src/UI/TopMenuContainer.gd
@@ -578,7 +578,7 @@ func help_menu_id_pressed(id: int) -> void:
OS.shell_open(ProjectSettings.globalize_path("user://logs"))
HelpMenuId.CHANGELOG:
OS.shell_open(
- "https://github.com/Orama-Interactive/Pixelorama/blob/master/CHANGELOG.md#v09---2021-09-18"
+ "https://github.com/Orama-Interactive/Pixelorama/blob/master/CHANGELOG.md#v091---2021-12-20"
)
HelpMenuId.ABOUT_PIXELORAMA:
Global.control.get_node("Dialogs/AboutDialog").popup_centered()