From 2f4f189925672c4b744cc5e36b12f794c0aa550e Mon Sep 17 00:00:00 2001 From: Marcus Brummer Date: Thu, 15 Aug 2024 20:24:53 +0200 Subject: [PATCH] Bumped version to 0.7.0-dev --- docs/changelog.md | 11 +++++++++++ lorien/Config.gd | 4 ++-- 2 files changed, 13 insertions(+), 2 deletions(-) diff --git a/docs/changelog.md b/docs/changelog.md index 7aab75bd..3989c894 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -4,6 +4,17 @@ 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/). +## [0.7.0] + +### Added +- Setting to disable pressure sensitivity and always draw with a constant brush width +- Translations: Ukrainian + +### Fixed + +### Changed +- Improved icon resolution on Windows + ## [0.6.0] - 2023-11-06 It's been a while - but here is a another release! Special thanks goes to [@MrApplejuice](https://github.com/MrApplejuice) for adding support for rebindable keyboard shortcuts and [@hansemro](https://github.com/hansemro) for enabling the eraser mode when the pen is inverted! diff --git a/lorien/Config.gd b/lorien/Config.gd index 8b993ced..5c47826d 100644 --- a/lorien/Config.gd +++ b/lorien/Config.gd @@ -1,9 +1,9 @@ class_name Config const VERSION_MAJOR := 0 -const VERSION_MINOR := 6 +const VERSION_MINOR := 7 const VERSION_PATCH := 0 -const VERSION_STATUS := "" +const VERSION_STATUS := "-dev" const VERSION_STRING := "%d.%d.%d%s" % [VERSION_MAJOR, VERSION_MINOR, VERSION_PATCH, VERSION_STATUS] const CONFIG_PATH := "user://settings.cfg" const PALETTES_PATH := "user://palettes.cfg"