From 591447114973bb22d9f4c6fe9546cd89f30e7c3c Mon Sep 17 00:00:00 2001 From: Emmanouil Papadeas Date: Mon, 26 Sep 2022 17:40:15 +0300 Subject: [PATCH] Release v0.10.3-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/TopMenuContainer.gd | 2 +- 8 files changed, 13 insertions(+), 12 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index df16afcb9..29a783ee8 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -9,7 +9,7 @@ env: GODOT_VERSION_MAC: 3.5 RASPBERRY_PI_BUILDS_VERSION: 1.13.0 EXPORT_NAME: Pixelorama - TAG: v0.10.2 + TAG: v0.10.3 BUTLER_API_KEY: ${{ secrets.BUTLER_API_KEY }} jobs: diff --git a/CHANGELOG.md b/CHANGELOG.md index f3463f63d..67926e70a 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.3] - Unreleased +## [v0.10.3] - 2022-09-26 This update has been brought to you by the contributions of: Fayez Akhtar ([@Variable-ind](https://github.com/Variable-ind)) diff --git a/Misc/Clickable/click/manifest.json b/Misc/Clickable/click/manifest.json index 7be8bc859..29a96ce63 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.2-stable" + "version": "0.10.3-stable" } diff --git a/Misc/Linux/com.orama_interactive.Pixelorama.appdata.xml b/Misc/Linux/com.orama_interactive.Pixelorama.appdata.xml index 326b9ff2b..4d555fefc 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 dbef5850a..0b3980675 100644 --- a/export_presets.cfg +++ b/export_presets.cfg @@ -33,8 +33,8 @@ codesign/description="" codesign/custom_options=PoolStringArray( ) application/modify_resources=true application/icon="res://assets/graphics/icons/icon.ico" -application/file_version="0.10.2.0" -application/product_version="0.10.2.0" +application/file_version="0.10.3.0" +application/product_version="0.10.3.0" application/company_name="Orama Interactive" application/product_name="Pixelorama" application/file_description="Pixelorama - Your free & open-source sprite editor" @@ -89,8 +89,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.10.2" -application/version="0.10.2" +application/short_version="0.10.3" +application/version="0.10.3" application/copyright="Orama Interactive and contributors 2019-present" display/high_res=false privacy/microphone_usage_description="" @@ -210,8 +210,8 @@ codesign/description="" codesign/custom_options=PoolStringArray( ) application/modify_resources=true application/icon="res://assets/graphics/icons/icon.ico" -application/file_version="0.10.2.0" -application/product_version="0.10.2.0" +application/file_version="0.10.3.0" +application/product_version="0.10.3.0" 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 e85eded62..721f9dd8e 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.2" + !define APPVERSION "v0.10.3" !define COMPANYNAME "Orama Interactive" diff --git a/project.godot b/project.godot index 7a15bd9df..dfec41c16 100644 --- a/project.godot +++ b/project.godot @@ -175,7 +175,7 @@ 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/custom_user_dir_name.X11="pixelorama" -config/Version="v0.10.3-rc1" +config/Version="v0.10.3-stable" config/ExtensionsAPI_Version=2 [audio] diff --git a/src/UI/TopMenuContainer.gd b/src/UI/TopMenuContainer.gd index b8c1300fa..4eb3c54de 100644 --- a/src/UI/TopMenuContainer.gd +++ b/src/UI/TopMenuContainer.gd @@ -676,7 +676,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#v0102---2022-08-18" + "https://github.com/Orama-Interactive/Pixelorama/blob/master/CHANGELOG.md#v0103---2022-09-26" ) Global.HelpMenu.ABOUT_PIXELORAMA: _popup_dialog(Global.control.get_node("Dialogs/AboutDialog"))