From 57d3050a67422d9f949edbfa46113784b7f60f0f Mon Sep 17 00:00:00 2001 From: OverloadedOrama <35376950+OverloadedOrama@users.noreply.github.com> Date: Tue, 3 Mar 2020 15:16:08 +0200 Subject: [PATCH] Added novhack to the list of contributors & updated changelog --- Changelog.md | 13 +++++++++++++ Scripts/Dialogs/AboutDialog.gd | 1 + 2 files changed, 14 insertions(+) diff --git a/Changelog.md b/Changelog.md index 181f3d214..c0f40d072 100644 --- a/Changelog.md +++ b/Changelog.md @@ -3,6 +3,19 @@ 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/). +## [v0.7] - Unreleased + +### Added +- Importing .pngs as palettes is now possible - thanks to Martin Novák (novhack)! +- A confirmation message now appears when the user quits Pixelorama, if there are unsaved changes - thanks to Schweini07! + +### Changed +- An asterisk is added to the window title if there are unsaved changes. +- Notification text is now black on the gold and light themes. + +### Fixed +- Chinese characters not being rendered in notifications (the labels that appear when undoing/redoing) + ## [v0.6.2] - 17-02-2020 ### Added diff --git a/Scripts/Dialogs/AboutDialog.gd b/Scripts/Dialogs/AboutDialog.gd index 9980840b0..92bf9162c 100644 --- a/Scripts/Dialogs/AboutDialog.gd +++ b/Scripts/Dialogs/AboutDialog.gd @@ -25,6 +25,7 @@ func _ready() -> void: contributors.create_item(contributor_root).set_text(0, " Subhang Nanduri (SbNanduri)") contributors.create_item(contributor_root).set_text(0, " danielnaoexiste") contributors.create_item(contributor_root).set_text(0, " Noah Burck (haonkrub)") + contributors.create_item(contributor_root).set_text(0, " Martin Novák (novhack)") var donors_root := donors.create_item() donors.create_item(donors_root).set_text(0, " pcmxms")