mirror of
https://github.com/Orama-Interactive/Pixelorama.git
synced 2025-02-12 16:53:07 +00:00
Compare commits
3 commits
61543df66b
...
880c0e5194
Author | SHA1 | Date | |
---|---|---|---|
|
880c0e5194 | ||
|
41ea287df4 | ||
|
a3e372c5d8 |
22
CHANGELOG.md
22
CHANGELOG.md
|
@ -4,6 +4,28 @@ 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.
|
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>
|
<br><br>
|
||||||
|
|
||||||
|
## [v1.1] - Unreleased
|
||||||
|
This update has been brought to you by the contributions of:
|
||||||
|
Fayez Akhtar ([@Variable-ind](https://github.com/Variable-ind))
|
||||||
|
|
||||||
|
Built using Godot 4.3
|
||||||
|
|
||||||
|
### Added
|
||||||
|
- Indexed mode has finally been implemented! [#1136](https://github.com/Orama-Interactive/Pixelorama/pull/1136)
|
||||||
|
- Added a new text tool. Destructive only for now, meaning that once the text is confirmed, it cannot be changed later. [#1134](https://github.com/Orama-Interactive/Pixelorama/pull/1134)
|
||||||
|
- Implemented support for multiple grids. [#1122](https://github.com/Orama-Interactive/Pixelorama/pull/1122)
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
- System font names are now sorted by alphabetical order.
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
- Fixed crash when Pixelorama starts without a palette.
|
||||||
|
- Undo/redo now works again when the cursor is hovering over the timeline.
|
||||||
|
- Palette swatches now get deleted when the user removes all palettes
|
||||||
|
- Fixed the Palettize effect and palette exporting to images storing slightly wrong color values. [77f6bcf](https://github.com/Orama-Interactive/Pixelorama/commit/77f6bcf07bd80bc042e478bb883d05900cebe436)
|
||||||
|
- Fixed some issues with the Palettize effect where the output would be different if the palette size changed and empty swatches were added, even if the colors themselves stayed the same. Initially fixed by [bd7d3b1](https://github.com/Orama-Interactive/Pixelorama/commit/bd7d3b19cc98804e9b99754153c4d553d2048ee3), but [1dcb696](https://github.com/Orama-Interactive/Pixelorama/commit/1dcb696c35121f8208bde699f87bb75deff99d13) is the proper fix.
|
||||||
|
- Fixed recorder label not updating when project is changed. [#1139](https://github.com/Orama-Interactive/Pixelorama/pull/1139)
|
||||||
|
|
||||||
## [v1.0.5] - 2024-11-18
|
## [v1.0.5] - 2024-11-18
|
||||||
This update has been brought to you by the contributions of:
|
This update has been brought to you by the contributions of:
|
||||||
Fayez Akhtar ([@Variable-ind](https://github.com/Variable-ind))
|
Fayez Akhtar ([@Variable-ind](https://github.com/Variable-ind))
|
||||||
|
|
|
@ -90,9 +90,9 @@ func get_brush_files_from_directory(directory: String): # -> Array
|
||||||
func add_randomised_brush(fpaths: Array, tooltip_name: String) -> void:
|
func add_randomised_brush(fpaths: Array, tooltip_name: String) -> void:
|
||||||
# Attempt to load the images from the file paths.
|
# Attempt to load the images from the file paths.
|
||||||
var loaded_images: Array = []
|
var loaded_images: Array = []
|
||||||
for filen in fpaths:
|
for file in fpaths:
|
||||||
var image := Image.new()
|
var image := Image.new()
|
||||||
var err := image.load(filen)
|
var err := image.load(file)
|
||||||
if err == OK:
|
if err == OK:
|
||||||
image.convert(Image.FORMAT_RGBA8)
|
image.convert(Image.FORMAT_RGBA8)
|
||||||
loaded_images.append(image)
|
loaded_images.append(image)
|
||||||
|
|
Loading…
Reference in a new issue