From fc482831a8b50c580eb0f6ad951b7cb418ea32bd Mon Sep 17 00:00:00 2001 From: Manolis Papadeas <35376950+OverloadedOrama@users.noreply.github.com> Date: Thu, 14 Apr 2022 18:32:39 +0300 Subject: [PATCH] Update tags to 0.10 --- .github/workflows/release.yml | 2 +- CHANGELOG.md | 2 +- Misc/Clickable/click/manifest.json | 4 ++-- Misc/Linux/com.orama_interactive.Pixelorama.appdata.xml | 1 + installer/pixelorama.nsi | 2 +- src/UI/TopMenuContainer.gd | 2 +- 6 files changed, 7 insertions(+), 6 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index d258d7009..4de8c6e93 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.2 + TAG: v0.10 BUTLER_API_KEY: ${{ secrets.BUTLER_API_KEY }} jobs: diff --git a/CHANGELOG.md b/CHANGELOG.md index 479920019..eb890ba24 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] - Unreleased +## [v0.10] - 2022-04-15 This update has been brought to you by the contributions of: Fayez Akhtar ([@Variable-ind](https://github.com/Variable-ind)), Martin Novák ([@novhack](https://github.com/novhack)), Lili Zoey ([@sayaks](https://github.com/sayaks)), [@ArthyChaux](https://github.com/ArthyChaux) diff --git a/Misc/Clickable/click/manifest.json b/Misc/Clickable/click/manifest.json index fb685e2c2..3757ed1d0 100644 --- a/Misc/Clickable/click/manifest.json +++ b/Misc/Clickable/click/manifest.json @@ -1,6 +1,6 @@ { "architecture": "@CLICK_ARCH@", - "description": "A free & open-source 2D sprite editor, made with the Godot Engine!", + "description": "A free & open-source 2D sprite editor!", "framework": "ubuntu-sdk-16.04.5", "hooks": { "pixelorama": { @@ -11,5 +11,5 @@ "maintainer": "Orama Interactive ", "name": "pixelorama.orama-interactive", "title": "Pixelorama", - "version": "0.9.2-stable" + "version": "0.10-stable" } diff --git a/Misc/Linux/com.orama_interactive.Pixelorama.appdata.xml b/Misc/Linux/com.orama_interactive.Pixelorama.appdata.xml index 2fe04999d..e50c1fbad 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 9e007a00f..1d3985cdd 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.2" + !define APPVERSION "v0.10" !define COMPANYNAME "Orama Interactive" diff --git a/src/UI/TopMenuContainer.gd b/src/UI/TopMenuContainer.gd index 3558ae39b..15bd7602d 100644 --- a/src/UI/TopMenuContainer.gd +++ b/src/UI/TopMenuContainer.gd @@ -703,7 +703,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#v092---2022-01-21" + "https://github.com/Orama-Interactive/Pixelorama/blob/master/CHANGELOG.md#v019---2022-04-15" ) HelpMenuId.ABOUT_PIXELORAMA: Global.control.get_node("Dialogs/AboutDialog").popup_centered()