Skip to content

Commit

Permalink
Version Bump + Minor Fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
SonarSonic committed Mar 11, 2023
1 parent 418eecf commit 480c3e1
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 7 deletions.
15 changes: 15 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,18 @@
### [v1.5.3-stable](https://github.com/SonarSonic/DrawingBotV3/releases/tag/v1.5.3-stable-free)
- Added: "Create Curves" option to Voronoi TSP, matching Adaptive TSP.
- Improved: Stars & Triangles in Adaptive Shapes are now symmetrical
- Improved: Selecting values outside of the "safe" range of the slider with the text box now works as expected.
- Improved: Spiral centres can not be placed outside of the drawing area.
- Improved: When exporting files the last used extension will be kept.
- Improved: File name increments now also check for files with different extensions within the same file type e.g. image, svg
- Improved: Support for importing more image file extensions ".tiff", ".jif", ".jiff", ".wbmp"
- Improved: Clicking on the slider trigger Auto Run PFM as expected
- Improved: The CMYK Multipliers will be saved with the application as well as the project so will maintain their last state.
- Fixed: "Create Curves" in Adaptive TSP not working properly
- Fixed: "Ignore White" in Spiral Circular Scribbles not working properly
- Fixed: Spiral PFMs crashing with Colour Match enabled
- Fixed: Checkboxes in the Drawing Pen dropdown not updating properly when pens are removed/added.

### [v1.5.2-beta](https://github.com/SonarSonic/DrawingBotV3/releases/tag/v1.5.2-beta-free)
- Added: **7 NEW PFMS**
- **Spiral Circular Scribbles:** creates a spiral made of one continuous circular scribble
Expand Down
4 changes: 2 additions & 2 deletions gradle.properties
@@ -1,7 +1,7 @@
#app version
app_name=DrawingBotV3-Free
app_version=1.5.2
app_state=beta
app_version=1.5.3
app_state=stable

javaFX_version=17.0.2

Expand Down
6 changes: 3 additions & 3 deletions src/main/java/drawingbot/FXApplication.java
Expand Up @@ -191,13 +191,13 @@ protected Boolean call() throws Exception {

DrawingBotV3.logger.info("Json Loader: Load Defaults");
JsonLoaderManager.loadDefaults();

DrawingBotV3.logger.info("Plugins: Post Init");
MasterRegistry.PLUGINS.forEach(IPlugin::postInit);
latchB.countDown();
});
latchB.await();

DrawingBotV3.logger.info("Plugins: Post Init");
MasterRegistry.PLUGINS.forEach(IPlugin::postInit);

if(!isHeadless){
CountDownLatch latchC = new CountDownLatch(1);
DrawingBotV3.logger.info("Plugins: Load JFX Stages");
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/drawingbot/utils/DBConstants.java
Expand Up @@ -6,7 +6,7 @@ public class DBConstants {
public static final String appName = "DrawingBotV3";
public static final String majorVersion = "1";
public static final String minorVersion = "5";
public static final String patchVersion = "2";
public static final String patchVersion = "3";
public static final String appVersion = majorVersion + "." + minorVersion + "." + patchVersion;

public static String versionName = appName + " Free";
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/presets/sketch_pfm_defaults.json
Expand Up @@ -206,7 +206,7 @@
"Tone": "50.0",
"Line Min Length": "2",
"Erase Max": "125",
"Squiggle Min Length": "250",
"Squiggle Min Length": "50",
"Line Density": "75.0"
}
}
Expand Down

0 comments on commit 480c3e1

Please sign in to comment.