Skip to content

Commit 6c31708

Browse files
Release v1.0.4
1 parent 638130c commit 6c31708

File tree

6 files changed

+8
-7
lines changed

6 files changed

+8
-7
lines changed

.github/workflows/release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
env:
88
GODOT_VERSION: 4.3
99
EXPORT_NAME: Pixelorama
10-
TAG: v1.0.3
10+
TAG: v1.0.4
1111
BUTLER_API_KEY: ${{ secrets.BUTLER_API_KEY }}
1212

1313
jobs:

CHANGELOG.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ 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.0.4] - Unreleased
7+
## [v1.0.4] - 2024-10-25
88
This update has been brought to you by the contributions of:
9-
Fayez Akhtar ([@Variable-ind](https://github.com/Variable-ind))
9+
Fayez Akhtar ([@Variable-ind](https://github.com/Variable-ind)), Mariano Semelman ([@msemelman](https://github.com/msemelman))
1010

1111
Built using Godot 4.3
1212

@@ -18,7 +18,7 @@ Built using Godot 4.3
1818
- Implemented the ability to change the font of the interface from the properties.
1919
- Clipping to selection during export is now possible. [#1113](https://github.com/Orama-Interactive/Pixelorama/pull/1113)
2020
- Added a preference to share options between tools. [#1120](https://github.com/Orama-Interactive/Pixelorama/pull/1120)
21-
- Added an option to quickly center the canvas in the View menu. [#1123](https://github.com/Orama-Interactive/Pixelorama/pull/1123)
21+
- Added an option to quickly center the canvas in the View menu. Mapped to <kbd>Control + C</kbd> by default. [#1123](https://github.com/Orama-Interactive/Pixelorama/pull/1123)
2222
- Added hotkeys to switch between tabs. <kbd>Control+Tab</kbd> to go to the next project tab, and <kbd>Control+Shift+Tab</kbd> to go to the previous. [#1109](https://github.com/Orama-Interactive/Pixelorama/pull/1109)
2323
- Added menus next to each of the two mirroring buttons in the Global Tool Options, that allow users to automatically move the symmetry guides to the center of the canvas, or the view center.
2424
- A new Reset category has been added to the Preferences that lets users easily restore certain options.

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

+1
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.0.4" date="2024-10-25"/>
4748
<release version="1.0.3" date="2024-09-13"/>
4849
<release version="1.0.2" date="2024-08-21"/>
4950
<release version="1.0.1" date="2024-08-05"/>

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 "v1.0.3"
9+
!define APPVERSION "v1.0.4"
1010
!define COMPANYNAME "Orama Interactive"
1111

1212

project.godot

+1-1
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.0.4-rc1"
15+
config/version="v1.0.4-stable"
1616
run/main_scene="res://src/Main.tscn"
1717
config/use_custom_user_dir=true
1818
config/custom_user_dir_name="pixelorama"

src/UI/TopMenuContainer/TopMenuContainer.gd

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ const DOCS_URL := "https://www.oramainteractive.com/Pixelorama-Docs/"
44
const ISSUES_URL := "https://github.com/Orama-Interactive/Pixelorama/issues"
55
const SUPPORT_URL := "https://www.patreon.com/OramaInteractive"
66
# gdlint: ignore=max-line-length
7-
const CHANGELOG_URL := "https://github.com/Orama-Interactive/Pixelorama/blob/master/CHANGELOG.md#v103---2024-09-13"
7+
const CHANGELOG_URL := "https://github.com/Orama-Interactive/Pixelorama/blob/master/CHANGELOG.md#v104---2024-10-25"
88
const EXTERNAL_LINK_ICON := preload("res://assets/graphics/misc/external_link.svg")
99
const PIXELORAMA_ICON := preload("res://assets/graphics/icons/icon_16x16.png")
1010
const HEART_ICON := preload("res://assets/graphics/misc/heart.svg")

0 commit comments

Comments
 (0)