Skip to content

Commit

Permalink
Bump Version 1.6.3 Beta
Browse files Browse the repository at this point in the history
  • Loading branch information
SonarSonic committed Jul 27, 2023
1 parent 70ee86e commit c7845c4
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 21 deletions.
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,18 @@
### [v1.6.3-beta](https://github.com/SonarSonic/DrawingBotV3/releases/tag/v1.6.3-beta-free)
- Added: New Presets "Messy TSP", "Hatchy Squiggles" & "Glitchy Stars" - for Adaptive/LBG Circular Scribbles & "Light Crosshatch" for Layers PFM
- Improved: 'Default' & 'Detailed Scribbles' & 'Sketch' - Circular Scribbles Presets
- Improved: More improvements to the quality of Circular Scribbles, transitions between different radii will be smoother.
- Changed: The default "Angular Velocity" for Adaptive Circular Scribbles & LBG Circular Scribbles is 60 instead of 20.
- Fixed: Using CMYK with Mosaic PFMS.
- Fixed: CMYK Processing failing to finish properly with "Coordinate out of bounds"
- Fixed: SVG Converter PFM not scaling properly and sometimes moving elements of the SVG.
- Fixed: Drawings created with the SVG Converter PFM not keeping the SVGs original size when exported.
- Fixed: Loading Projects when the original image can't be located would not load the chosen replacement image.
- Fixed: "Star" and "Triangle" shapes missing rotation when using Shapes PFMs
- Fixed: Loading Projects ignored the Drawing Area orientation.
- Fixed: Drawings being re-rendered when exporting non-vector files.
- Fixed: Drawings being re-generated when creating new preset files.

### [v1.6.2-Beta](https://github.com/SonarSonic/DrawingBotV3/releases/tag/v1.6.2-beta-free)
- Added: New presets "Single Pen Preset V1" for Sketch Sweeping Curves and "Distorted Waves" for Sketch Waves
- Added: "Cache Result" option to all LBG PFMs, which results in a significant increase in speed for subsequent runs on the same image if the "LBG Sampling" settings are still the same. Any changes to image filtering / drawing size will invalidate this cache.
Expand Down
19 changes: 0 additions & 19 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -45,25 +45,6 @@ dependencies {
implementation "org.sejda.imageio:webp-imageio:${webp_imageio_version}" //google webp support
implementation "org.fxmisc.easybind:easybind:${easy_bind_version}"

//required for cross platform compatibility, src: https://stackoverflow.com/questions/61579722/making-a-cross-platform-build-of-javafx-using-gradle

/*
implementation group: 'org.openjfx', name: 'javafx-base', version: javaFX_version, classifier: 'win'
implementation group: 'org.openjfx', name: 'javafx-base', version: javaFX_version, classifier: 'mac'
implementation group: 'org.openjfx', name: 'javafx-base', version: javaFX_version, classifier: 'linux'
implementation group: 'org.openjfx', name: 'javafx-controls', version: javaFX_version, classifier: 'win'
implementation group: 'org.openjfx', name: 'javafx-controls', version: javaFX_version, classifier: 'mac'
implementation group: 'org.openjfx', name: 'javafx-controls', version: javaFX_version, classifier: 'linux'
implementation group: 'org.openjfx', name: 'javafx-fxml', version: javaFX_version, classifier: 'win'
implementation group: 'org.openjfx', name: 'javafx-fxml', version: javaFX_version, classifier: 'mac'
implementation group: 'org.openjfx', name: 'javafx-fxml', version: javaFX_version, classifier: 'linux'
implementation group: 'org.openjfx', name: 'javafx-graphics', version: javaFX_version, classifier: 'win'
implementation group: 'org.openjfx', name: 'javafx-graphics', version: javaFX_version, classifier: 'mac'
implementation group: 'org.openjfx', name: 'javafx-graphics', version: javaFX_version, classifier: 'linux'
implementation group: 'org.openjfx', name: 'javafx-swing', version: javaFX_version, classifier: 'win'
implementation group: 'org.openjfx', name: 'javafx-swing', version: javaFX_version, classifier: 'mac'
implementation group: 'org.openjfx', name: 'javafx-swing', version: javaFX_version, classifier: 'linux'
*/
//// JOGL
implementation "org.jogamp.gluegen:gluegen-rt-main:${jogl_version}"
implementation "org.jogamp.jogl:jogl-all-main:${jogl_version}"
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#app version
app_name=DrawingBotV3-Free
app_version=1.6.2
app_version=1.6.3
app_state=beta

javaFX_version=17.0.7
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/drawingbot/SoftwareDBV3Free.java
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ public class SoftwareDBV3Free extends AbstractSoftware {
public static final SoftwareDBV3Free INSTANCE = new SoftwareDBV3Free();

public static final String displayName = "DrawingBotV3 Free";
public static final String displayVersion = "1.6.2 Beta";
public static final String displayVersion = "1.6.3 Beta";

@Override
public String getDisplayName() {
Expand Down

0 comments on commit c7845c4

Please sign in to comment.