Skip to content

Commit

Permalink
Release: v1.6.13-stable
Browse files Browse the repository at this point in the history
  • Loading branch information
SonarSonic committed Jan 31, 2024
1 parent e3cb4e4 commit d1c4c81
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 4 deletions.
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
### [v1.6.13-stable](https://github.com/SonarSonic/DrawingBotV3/releases/tag/v1.6.13-stable-free)
- Added: SVG Converter - Support for SVG Gradients when Colour Match is enabled
- Added: Extra options for SVG Converter; 'Shape Outlines', 'Gradient Angle Match' and 'Gradient Colour Match'
- Added: 'Export Logs / Crash Reports' to the help menu, to simplify providing support / debugging
- Added: 'Switch to SVG Converter on SVG Import' option to SVG Preferences
- Improved: Reduced memory usage over application lifetime
- Improved: Speed of clipping when using Masks / SVG Converter
- Fixed: Crash on load when OpenCL Native Library is unavailable
- Fixed: OpenGL Renderer attempting to load on devices without OpenGL 3.3+ support.
- Fixed: SVG Converter - Using incorrect scaling in some situations
- Fixed: Export per/pens failing when the pen names contain special characters
- Fixed: SVG Converter - Shape clipping failing on complex SVGs
- Fixed: Freeze/hang when switching to cm/inches when the drawing width or height is 0.0
- Fixed: PFM not running when the drawing width/height is 0.0, now runs with default sizing: A4 paper
- Fixed: Occasional momentary hang after a PFM has finished processing
- Fixed: Renamed the Stabilo pen presets to match correct pen naming conventions / no special characters

### [v1.6.12-beta](https://github.com/SonarSonic/DrawingBotV3/releases/tag/v1.6.12-beta-free)
- Fixed: OpenCL Integration on MacOS and other configurations where OpenCL 2.0 is unavailable.

Expand Down
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#app version
app_name=DrawingBotV3-Free
app_version=1.6.12
app_state=beta
app_version=1.6.13
app_state=stable

javaFX_version=17.0.7

Expand Down
4 changes: 2 additions & 2 deletions src/main/java/drawingbot/SoftwareDBV3Free.java
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ public class SoftwareDBV3Free implements ISoftware {

public static final String displayName = "DrawingBotV3 Free";
public static final String shortName = "DBV3";
public static final String rawVersion = "1.6.12";
public static final String releaseType = "Beta";
public static final String rawVersion = "1.6.13";
public static final String releaseType = "Stable";
public static final String displayVersion = rawVersion + " " + releaseType;

public final BooleanProperty enabled = new SimpleBooleanProperty(true);
Expand Down

0 comments on commit d1c4c81

Please sign in to comment.