Skip to content

Commit

Permalink
Release: v1.6.16-stable
Browse files Browse the repository at this point in the history
  • Loading branch information
SonarSonic committed Apr 21, 2024
1 parent 62b37c7 commit 5818557
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 2 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
### [v1.6.16-stable](https://github.com/SonarSonic/DrawingBotV3/releases/tag/v1.6.16-stable-free)
- Added: 'Area Calibration' PFM, used for checking the size of the plotters drawing area and adjusting margins
- Fixed: CMYK / Colour Match / Masking settings not saving / loading properly when saved in a project
- Fixed: Older projects not reloading properly in some situations
- Fixed: Viewport zoom resetting when a task is stopped, or when a task is completed
- Fixed: HPGL plotters not being detected with "Detect Plotter" when the serial port echoes the input
- Improved: Allow multi-threading when running tasks with Batch Processing

### [v1.6.15-stable](https://github.com/SonarSonic/DrawingBotV3/releases/tag/v1.6.15-stable-free)
- Fixed: Preset creation/editing dialogs appearing blank on macOS
- Fixed: Prevent the Drawing Pen selection closing when a check-box is ticked.
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.15
app_version=1.6.16
app_state=stable

javaFX_version=17.0.10
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 @@ -23,7 +23,7 @@ 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.15";
public static final String rawVersion = "1.6.16";
public static final String releaseType = "Stable";
public static final String displayVersion = rawVersion + " " + releaseType;

Expand Down
4 changes: 4 additions & 0 deletions src/main/java/drawingbot/plugins/PremiumPluginDummy.java
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,9 @@ public void registerPFMS() {
MasterRegistry.INSTANCE.registerPFM(DummyPFM.class, "Sketch Flow Field", Register.PFM_TYPE_SKETCH, DummyPFM::new).setPremium(true);
MasterRegistry.INSTANCE.registerPFM(DummyPFM.class, "Sketch Superformula", Register.PFM_TYPE_SKETCH, DummyPFM::new).setPremium(true);
MasterRegistry.INSTANCE.registerPFM(DummyPFM.class, "Sketch Sweeping Curves", Register.PFM_TYPE_SKETCH, DummyPFM::new).setPremium(true);
MasterRegistry.INSTANCE.registerPFM(DummyPFM.class, "Streamlines Edge Field", Register.PFM_TYPE_SKETCH, DummyPFM::new).setPremium(true);
MasterRegistry.INSTANCE.registerPFM(DummyPFM.class, "Streamlines Flow Field", Register.PFM_TYPE_SKETCH, DummyPFM::new).setPremium(true);
MasterRegistry.INSTANCE.registerPFM(DummyPFM.class, "Streamlines Superformula", Register.PFM_TYPE_SKETCH, DummyPFM::new).setPremium(true);
MasterRegistry.INSTANCE.registerPFM(DummyPFM.class, "ECS Drawing", Register.PFM_TYPE_SPECIAL, DummyPFM::new).setPremium(true);
MasterRegistry.INSTANCE.registerPFM(DummyPFM.class, "Spiral Circular Scribbles", Register.PFM_TYPE_SKETCH, DummyPFM::new).setPremium(true);

Expand Down Expand Up @@ -137,6 +140,7 @@ public void registerPFMS() {
MasterRegistry.INSTANCE.registerPFM(DummyPFM.class, "Layers PFM", Register.PFM_TYPE_SPECIAL, DummyPFM::new).setPremium(true);
MasterRegistry.INSTANCE.registerPFM(DummyPFM.class, "SVG Converter", Register.PFM_TYPE_SPECIAL, DummyPFM::new).setPremium(true);
MasterRegistry.INSTANCE.registerPFM(DummyPFM.class, "Pen Calibration", Register.PFM_TYPE_SPECIAL, DummyPFM::new).setPremium(true);
MasterRegistry.INSTANCE.registerPFM(DummyPFM.class, "Area Calibration", Register.PFM_TYPE_SPECIAL, DummyPFM::new).setPremium(true);
}

public Object[] disableBatchProcessingUI(Object... objects) {
Expand Down

0 comments on commit 5818557

Please sign in to comment.