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

Release v0.9.2-stable

This commit is contained in:
Manolis Papadeas 2022-01-21 16:03:53 +02:00
parent 4512cf0e55
commit 686a49d4c5
9 changed files with 14 additions and 12 deletions

View file

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

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.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)

View file

@ -11,5 +11,5 @@
"maintainer": "Orama Interactive <oramagamestudios@gmail.com>",
"name": "pixelorama.orama-interactive",
"title": "Pixelorama",
"version": "0.9.1-stable"
"version": "0.9.2-stable"
}

View file

@ -31,6 +31,7 @@
</screenshots>
<content_rating type="oars-1.1"/>
<releases>
<release version="0.9.2" date="2022-01-21"/>
<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"/>

View file

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

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.1"
!define APPVERSION "v0.9.2"
!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.2-rc1"
config/Version="v0.9.2-stable"
run/low_processor_mode.Android=false
[audio]

View file

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

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