1
0
Fork 0
mirror of https://github.com/Orama-Interactive/Pixelorama.git synced 2025-01-18 17:19:50 +00:00

Release v0.9.1-stable

This commit is contained in:
Manolis Papadeas 2021-12-20 13:45:53 +02:00
parent 2ca452d81c
commit 50885b8769
6 changed files with 7 additions and 5 deletions

View file

@ -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.
<br><br>
## [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)

View file

@ -31,6 +31,7 @@
</screenshots>
<content_rating type="oars-1.1"/>
<releases>
<release version="0.9.1" date="2021-12-20"/>
<release version="0.9" date="2021-09-18"/>
<release version="0.8.3" date="2021-05-04"/>
<release version="0.8.2" date="2020-12-12"/>

View file

@ -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"

View file

@ -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]

View file

@ -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")
)

View file

@ -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()