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

Release v0.10.1-stable

This commit is contained in:
Emmanouil Papadeas 2022-06-06 15:41:05 +03:00
parent 0020029871
commit e4607a46bc
8 changed files with 9 additions and 8 deletions

View file

@ -8,7 +8,7 @@ env:
GODOT_VERSION: 3.4.2
GODOT_VERSION_MAC: 3.4.2
EXPORT_NAME: Pixelorama
TAG: v0.10
TAG: v0.10.1
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.10.1] - Unreleased
## [v0.10.1] - 2022-06-06
This update has been brought to you by the contributions of:
Fayez Akhtar ([@Variable-ind](https://github.com/Variable-ind)), Matteo Piovanelli ([@MatteoPiovanelli-Laser](https://github.com/MatteoPiovanelli-Laser)), [@AlphinAlbukhari](https://github.com/AlphinAlbukhari), Martin Novák ([@novhack](https://github.com/novhack))

View file

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

View file

@ -31,6 +31,7 @@
</screenshots>
<content_rating type="oars-1.1"/>
<releases>
<release version="0.10.1" date="2022-06-06"/>
<release version="0.10" date="2022-04-15"/>
<release version="0.9.2" date="2022-01-21"/>
<release version="0.9.1" date="2021-12-20"/>

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.10"
!define APPVERSION "v0.10.1"
!define COMPANYNAME "Orama Interactive"

View file

@ -158,7 +158,7 @@ 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"
run/low_processor_mode.Android=false
config/Version="v0.10.1-rc1"
config/Version="v0.10.1-stable"
[audio]

View file

@ -177,7 +177,7 @@ func _on_Groups_item_selected() -> void:
func _on_Website_pressed() -> void:
OS.shell_open("https://www.orama-interactive.com")
OS.shell_open("https://www.oramainteractive.com")
func _on_GitHub_pressed() -> void:

View file

@ -676,7 +676,7 @@ func help_menu_id_pressed(id: int) -> void:
Global.control.get_node("Dialogs/SplashDialog").popup_centered()
Global.dialog_open(true)
Global.HelpMenu.ONLINE_DOCS:
OS.shell_open("https://orama-interactive.github.io/Pixelorama-Docs/")
OS.shell_open("https://www.oramainteractive.com/Pixelorama-Docs/")
Global.HelpMenu.ISSUE_TRACKER:
OS.shell_open("https://github.com/Orama-Interactive/Pixelorama/issues")
Global.HelpMenu.OPEN_LOGS_FOLDER:
@ -685,7 +685,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#v010---2022-04-15"
"https://github.com/Orama-Interactive/Pixelorama/blob/master/CHANGELOG.md#v0101---2022-06-06"
)
Global.HelpMenu.ABOUT_PIXELORAMA:
Global.control.get_node("Dialogs/AboutDialog").popup_centered()