From 499c1d94de8792513e73fec17e513697c609f95b Mon Sep 17 00:00:00 2001 From: Marcus Brummer Date: Sun, 12 Jun 2022 15:24:48 +0200 Subject: [PATCH] Prepare for v0.5.0 release --- docs/changelog.md | 5 ++++- lorien/Config.gd | 4 ++-- lorien/export_presets.cfg | 37 ++++++------------------------------- 3 files changed, 12 insertions(+), 34 deletions(-) diff --git a/docs/changelog.md b/docs/changelog.md index 41942cf3..f18fa634 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -4,7 +4,9 @@ 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.5.0] - Unreleased +## [0.6.0] - Unreleased + +## [0.5.0] - 2022-06-12 ### Breaking Changes Version `v0.5` of Lorien features a new SuperEraser, which erases brush strokes as soon as it inserects with them. The previous implementation just painted over new brush strokes, which always had the same color as the background - giving you the illusion of a traditional eraser like in bitmap-based programs (Gimp, Photoshop, etc.). The old implementation has been completely removed in favor of the SuperEraser. @@ -40,6 +42,7 @@ If you rely on these eraser-strokes: DO NOT UPDATE to this version or BACKUP you - Made the brush stroke optimizer less aggresive, which results in smoother lines at the expense of slightly bigger savefiles - Increased the default pressure sensitvity from 1.0 to 1.5 - Lowered minimum window size +- Default to rounded brush stoke caps ## [0.4.0] - 2021-10-10 diff --git a/lorien/Config.gd b/lorien/Config.gd index 926fdc35..90712c51 100644 --- a/lorien/Config.gd +++ b/lorien/Config.gd @@ -3,7 +3,7 @@ class_name Config const VERSION_MAJOR := 0 const VERSION_MINOR := 5 const VERSION_PATCH := 0 -const VERSION_STATUS := "-dev" +const VERSION_STATUS := "" 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" @@ -19,7 +19,7 @@ const DEFAULT_AA_MODE := Types.AAMode.TEXTURE_FILL const DEFAULT_SELECTION_COLOR := Color("#2a967c") const DEFAULT_FOREGROUND_FPS := 144 const DEFAULT_BACKGROUND_FPS := 10 -const DEFAULT_BRUSH_ROUNDING := Types.BrushRoundingType.FLAT +const DEFAULT_BRUSH_ROUNDING := Types.BrushRoundingType.ROUNDED const DEFAULT_UI_SCALE_MODE := Types.UIScale.AUTO const DEFAULT_UI_SCALE := 1.0 const DEFAULT_GRID_SIZE := 25.0 diff --git a/lorien/export_presets.cfg b/lorien/export_presets.cfg index 17a07aaf..c8f10de3 100644 --- a/lorien/export_presets.cfg +++ b/lorien/export_presets.cfg @@ -23,6 +23,7 @@ texture_format/etc=false texture_format/etc2=false texture_format/no_bptc_fallbacks=true codesign/enable=false +codesign/identity_type=0 codesign/identity="" codesign/password="" codesign/timestamp=true @@ -31,8 +32,8 @@ codesign/digest_algorithm=1 codesign/description="" codesign/custom_options=PoolStringArray( ) application/icon="res://Assets/icon.ico" -application/file_version="0.4.0" -application/product_version="0.4.0" +application/file_version="0.5.0" +application/product_version="0.5.0" application/company_name="" application/product_name="Lorien" application/file_description="Lorien" @@ -86,39 +87,13 @@ application/info="Infinite Canvas drawing app" application/icon="res://Assets/icon.png" application/identifier="io.mbrlabs.lorien" application/signature="" -application/short_version="0.4.0" -application/version="0.4.0" +application/app_category="Productivity" +application/short_version="0.5.0" +application/version="0.5.0" application/copyright="mbrlabs" display/high_res=false privacy/camera_usage_description="" privacy/microphone_usage_description="" -codesign/enable=true -codesign/identity="" -codesign/timestamp=true -codesign/hardened_runtime=true -codesign/replace_existing_signature=true -codesign/entitlements/custom_file="" -codesign/entitlements/allow_jit_code_execution=false -codesign/entitlements/allow_unsigned_executable_memory=false -codesign/entitlements/allow_dyld_environment_variables=false -codesign/entitlements/disable_library_validation=false -codesign/entitlements/audio_input=false -codesign/entitlements/camera=false -codesign/entitlements/location=false -codesign/entitlements/address_book=false -codesign/entitlements/calendars=false -codesign/entitlements/photos_library=false -codesign/entitlements/apple_events=false -codesign/entitlements/app_sandbox/enabled=false -codesign/entitlements/app_sandbox/network_server=false -codesign/entitlements/app_sandbox/network_client=false -codesign/entitlements/app_sandbox/device_usb=false -codesign/entitlements/app_sandbox/device_bluetooth=false -codesign/entitlements/app_sandbox/files_downloads=0 -codesign/entitlements/app_sandbox/files_pictures=0 -codesign/entitlements/app_sandbox/files_music=0 -codesign/entitlements/app_sandbox/files_movies=0 -codesign/custom_options=PoolStringArray( ) texture_format/s3tc=true texture_format/etc=false texture_format/etc2=false