From 686a49d4c53449c3a5de100f6391fbdf7df6617a Mon Sep 17 00:00:00 2001 From: Manolis Papadeas <35376950+OverloadedOrama@users.noreply.github.com> Date: Fri, 21 Jan 2022 16:03:53 +0200 Subject: [PATCH] Release v0.9.2-stable --- .github/workflows/release.yml | 2 +- CHANGELOG.md | 2 +- Misc/Clickable/click/manifest.json | 2 +- .../com.orama_interactive.Pixelorama.appdata.xml | 1 + export_presets.cfg | 12 ++++++------ installer/pixelorama.nsi | 2 +- project.godot | 2 +- src/UI/Dialogs/AboutDialog.gd | 1 + src/UI/TopMenuContainer.gd | 2 +- 9 files changed, 14 insertions(+), 12 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 563b21bef..9c90b5a64 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.9.1 + TAG: v0.9.2 BUTLER_API_KEY: ${{ secrets.BUTLER_API_KEY }} jobs: diff --git a/CHANGELOG.md b/CHANGELOG.md index 2f7adbfd3..2b76db0a7 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.2] - Unreleased +## [v0.9.2] - 2022-01-21 This update has been brought to you by the contributions of: Fayez Akhtar ([@Variable-ind](https://github.com/Variable-ind)), Darshan Phaldesai ([@luiq54](https://github.com/luiq54)), [@mrtripie](https://github.com/mrtripie) diff --git a/Misc/Clickable/click/manifest.json b/Misc/Clickable/click/manifest.json index fd5707102..fb685e2c2 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.9.1-stable" + "version": "0.9.2-stable" } diff --git a/Misc/Linux/com.orama_interactive.Pixelorama.appdata.xml b/Misc/Linux/com.orama_interactive.Pixelorama.appdata.xml index 9b22eb53b..2fe04999d 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/export_presets.cfg b/export_presets.cfg index c19d1a2e2..334491202 100644 --- a/export_presets.cfg +++ b/export_presets.cfg @@ -31,8 +31,8 @@ codesign/digest_algorithm=1 codesign/description="" codesign/custom_options=PoolStringArray( ) application/icon="res://assets/graphics/icons/icon.ico" -application/file_version="0.9.1" -application/product_version="0.9.1" +application/file_version="0.9.2" +application/product_version="0.9.2" application/company_name="Orama Interactive" application/product_name="Pixelorama" application/file_description="Pixelorama - Your free & open-source sprite editor" @@ -87,8 +87,8 @@ application/icon="res://assets/graphics/icons/icon.icns" application/identifier="com.orama-interactive.pixelorama" application/signature="" application/app_category="Graphics-design" -application/short_version="0.9.1" -application/version="0.9.1" +application/short_version="0.9.2" +application/version="0.9.2" application/copyright="Orama Interactive and contributors 2019-present" display/high_res=false privacy/camera_usage_description="" @@ -165,8 +165,8 @@ codesign/digest_algorithm=1 codesign/description="" codesign/custom_options=PoolStringArray( ) application/icon="res://assets/graphics/icons/icon.ico" -application/file_version="0.9.1" -application/product_version="0.9.1" +application/file_version="0.9.2" +application/product_version="0.9.2" application/company_name="Orama Interactive" application/product_name="Pixelorama" application/file_description="Pixelorama - Your free & open-source sprite editor" diff --git a/installer/pixelorama.nsi b/installer/pixelorama.nsi index 5968be29f..9e007a00f 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.1" + !define APPVERSION "v0.9.2" !define COMPANYNAME "Orama Interactive" diff --git a/project.godot b/project.godot index 5337ba71e..0f9027f51 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.2-rc1" +config/Version="v0.9.2-stable" run/low_processor_mode.Android=false [audio] diff --git a/src/UI/Dialogs/AboutDialog.gd b/src/UI/Dialogs/AboutDialog.gd index d7326b4e7..045fd324e 100644 --- a/src/UI/Dialogs/AboutDialog.gd +++ b/src/UI/Dialogs/AboutDialog.gd @@ -201,6 +201,7 @@ func create_translators() -> void: translators.create_item(translators_root).set_text( 0, " Martin Zabinski (Martin1991zab) - " + tr("German") ) + translators.create_item(translators_root).set_text(0, " Manuel (DrMoebyus) - " + tr("German")) translators.create_item(translators_root).set_text( 0, " Dawid Niedźwiedzki (tiritto) - " + tr("Polish") ) diff --git a/src/UI/TopMenuContainer.gd b/src/UI/TopMenuContainer.gd index 9e746aebd..9b595f0f9 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#v091---2021-12-20" + "https://github.com/Orama-Interactive/Pixelorama/blob/master/CHANGELOG.md#v092---2022-01-21" ) HelpMenuId.ABOUT_PIXELORAMA: Global.control.get_node("Dialogs/AboutDialog").popup_centered()