Skip to content

Commit

Permalink
Prepare for v0.5.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
mbrlabs committed Jun 12, 2022
1 parent 28f6472 commit 499c1d9
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 34 deletions.
5 changes: 4 additions & 1 deletion docs/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -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

Expand Down
4 changes: 2 additions & 2 deletions lorien/Config.gd
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand All @@ -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
37 changes: 6 additions & 31 deletions lorien/export_presets.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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"
Expand Down Expand Up @@ -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

0 comments on commit 499c1d9

Please sign in to comment.