Skip to content

Commit 6c4d32b

Browse files
Release Pixelorama v1.1.5-stable
1 parent 6ca02d7 commit 6c4d32b

File tree

6 files changed

+7
-5
lines changed

6 files changed

+7
-5
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
env:
88
GODOT_VERSION: 4.4.1
99
EXPORT_NAME: Pixelorama
10-
TAG: v1.1.4
10+
TAG: v1.1.5
1111
BUTLER_API_KEY: ${{ secrets.BUTLER_API_KEY }}
1212

1313
jobs:

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
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-
## [v1.1.5] - Unreleased
7+
## [v1.1.5] - 2025-09-06
88
This update has been brought to you by the contributions of:
99
Fayez Akhtar ([@Variable-ind](https://github.com/Variable-ind))
1010

@@ -35,6 +35,7 @@ Built using Godot 4.4.1
3535
- Pasting a selection on a tilemap layer while draw tiles mode is active now updates the tileset. [#1340](https://github.com/Orama-Interactive/Pixelorama/pull/1340)
3636
- Backups no longer appear in the recent project list. [#1341](https://github.com/Orama-Interactive/Pixelorama/pull/1341)
3737
- The names of the projects are no longer being translated in tabs. [#1334](https://github.com/Orama-Interactive/Pixelorama/issues/1334)
38+
- Fixed the drop shadow dialog not having a selected option by default for the affect option button.
3839

3940
## [v1.1.4] - 2025-08-13
4041
This update has been brought to you by the contributions of:

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@
4444
</screenshots>
4545
<content_rating type="oars-1.1"/>
4646
<releases>
47+
<release version="1.1.5" date="2025-09-06"/>
4748
<release version="1.1.4" date="2025-08-13"/>
4849
<release version="1.1.3" date="2025-08-06"/>
4950
<release version="1.1.2" date="2025-06-26"/>

installer/pixelorama.nsi

Lines changed: 1 addition & 1 deletion
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 "v1.1.4"
9+
!define APPVERSION "v1.1.5"
1010
!define COMPANYNAME "Orama Interactive"
1111

1212

project.godot

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ config_version=5
1212

1313
config/name="Pixelorama"
1414
config/description="Unleash your creativity with Pixelorama, a powerful and accessible open-source pixel art multitool. Whether you want to create sprites, tiles, animations, or just express yourself in the language of pixel art, this software will realize your pixel-perfect dreams with a vast toolbox of features."
15-
config/version="v1.1.5-rc1"
15+
config/version="v1.1.5-stable"
1616
config/tags=PackedStringArray("pixelorama")
1717
run/main_scene="res://src/Main.tscn"
1818
config/use_custom_user_dir=true

src/UI/TopMenuContainer/TopMenuContainer.gd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ const DOCS_URL := "https://www.oramainteractive.com/Pixelorama-Docs/"
66
const ISSUES_URL := "https://github.com/Orama-Interactive/Pixelorama/issues"
77
const SUPPORT_URL := "https://www.patreon.com/OramaInteractive"
88
# gdlint: ignore=max-line-length
9-
const CHANGELOG_URL := "https://github.com/Orama-Interactive/Pixelorama/blob/master/CHANGELOG.md#v114---2025-08-13"
9+
const CHANGELOG_URL := "https://github.com/Orama-Interactive/Pixelorama/blob/master/CHANGELOG.md#v115---2025-09-06"
1010
const EXTERNAL_LINK_ICON := preload("res://assets/graphics/misc/external_link.svg")
1111
const PIXELORAMA_ICON := preload("res://assets/graphics/icons/icon_16x16.png")
1212
const HEART_ICON := preload("res://assets/graphics/misc/heart.svg")

0 commit comments

Comments
 (0)