Skip to content

Commit ac1a438

Browse files
Release v0.11.3-stable
1 parent 7f2791f commit ac1a438

File tree

7 files changed

+12
-11
lines changed

7 files changed

+12
-11
lines changed

.github/workflows/release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ env:
99
GODOT_VERSION_MAC: 3.5.2
1010
RASPBERRY_PI_BUILDS_VERSION: 1.15.0
1111
EXPORT_NAME: Pixelorama
12-
TAG: v0.11.2
12+
TAG: v0.11.3
1313
BUTLER_API_KEY: ${{ secrets.BUTLER_API_KEY }}
1414

1515
jobs:

CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). All the dates are in YYYY-MM-DD format.
55
<br><br>
66

7-
## [v0.11.3] - Unreleased
7+
## [v0.11.3] - 2023-10-30
88
This update has been brought to you by the contributions of:
99
Fayez Akhtar ([@Variable-ind](https://github.com/Variable-ind))
1010

Misc/Linux/com.orama_interactive.Pixelorama.appdata.xml

+1
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@
3737
</screenshots>
3838
<content_rating type="oars-1.1"/>
3939
<releases>
40+
<release version="0.11.3" date="2023-10-30"/>
4041
<release version="0.11.2" date="2023-08-31"/>
4142
<release version="0.11.1" date="2023-08-12"/>
4243
<release version="0.11" date="2023-06-13"/>

export_presets.cfg

+6-6
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@ codesign/description=""
3333
codesign/custom_options=PoolStringArray( )
3434
application/modify_resources=true
3535
application/icon="res://assets/graphics/icons/icon.ico"
36-
application/file_version="0.11.2.0"
37-
application/product_version="0.11.2.0"
36+
application/file_version="0.11.3.0"
37+
application/product_version="0.11.3.0"
3838
application/company_name="Orama Interactive"
3939
application/product_name="Pixelorama"
4040
application/file_description="Pixelorama - Your free & open-source sprite editor"
@@ -89,8 +89,8 @@ application/icon="res://assets/graphics/icons/icon.icns"
8989
application/identifier="com.orama-interactive.pixelorama"
9090
application/signature=""
9191
application/app_category="Graphics-design"
92-
application/short_version="0.11.2"
93-
application/version="0.11.2"
92+
application/short_version="0.11.3"
93+
application/version="0.11.3"
9494
application/copyright="Orama Interactive and contributors 2019-present"
9595
display/high_res=false
9696
privacy/microphone_usage_description=""
@@ -210,8 +210,8 @@ codesign/description=""
210210
codesign/custom_options=PoolStringArray( )
211211
application/modify_resources=true
212212
application/icon="res://assets/graphics/icons/icon.ico"
213-
application/file_version="0.11.2.0"
214-
application/product_version="0.11.2.0"
213+
application/file_version="0.11.3.0"
214+
application/product_version="0.11.3.0"
215215
application/company_name="Orama Interactive"
216216
application/product_name="Pixelorama"
217217
application/file_description="Pixelorama - Your free & open-source sprite editor"

installer/pixelorama.nsi

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
; Helper variables so that we don't change 20 instances of the version for every update
77

88
!define APPNAME "Pixelorama"
9-
!define APPVERSION "v0.11.2"
9+
!define APPVERSION "v0.11.3"
1010
!define COMPANYNAME "Orama Interactive"
1111

1212

project.godot

+1-1
Original file line numberDiff line numberDiff line change
@@ -343,7 +343,7 @@ config/icon="res://assets/graphics/icons/icon.png"
343343
config/macos_native_icon="res://assets/graphics/icons/icon.icns"
344344
config/windows_native_icon="res://assets/graphics/icons/icon.ico"
345345
config/custom_user_dir_name.X11="pixelorama"
346-
config/Version="v0.11.2-stable"
346+
config/Version="v0.11.3-stable"
347347
config/ExtensionsAPI_Version=3
348348
config/Pxo_Version=2
349349

src/UI/TopMenuContainer/TopMenuContainer.gd

+1-1
Original file line numberDiff line numberDiff line change
@@ -734,7 +734,7 @@ func help_menu_id_pressed(id: int) -> void:
734734
OS.shell_open(ProjectSettings.globalize_path("user://logs"))
735735
Global.HelpMenu.CHANGELOG:
736736
OS.shell_open(
737-
"https://github.com/Orama-Interactive/Pixelorama/blob/master/CHANGELOG.md#v0112---2023-08-31"
737+
"https://github.com/Orama-Interactive/Pixelorama/blob/master/CHANGELOG.md#v0113---2023-10-30"
738738
)
739739
Global.HelpMenu.ABOUT_PIXELORAMA:
740740
_popup_dialog(Global.control.get_node("Dialogs/AboutDialog"))

0 commit comments

Comments
 (0)