From c017013aaee66412519334ea03b948beb50d1eec Mon Sep 17 00:00:00 2001 From: Mark Burton Date: Thu, 19 Jan 2017 11:48:17 +0000 Subject: [PATCH 1/3] Added min_infill_area setting. This allows the user to specify in mm^2 the minimum area of infill regions. Areas smaller than this will be merged into the surrounding skin rather than being filled with infill. --- resources/definitions/fdmprinter.def.json | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/resources/definitions/fdmprinter.def.json b/resources/definitions/fdmprinter.def.json index 6627754274..3be63b555d 100644 --- a/resources/definitions/fdmprinter.def.json +++ b/resources/definitions/fdmprinter.def.json @@ -1230,6 +1230,16 @@ "default_value": true, "enabled": "infill_sparse_density > 0", "settable_per_mesh": true + }, + "min_infill_area": + { + "label": "Min Infill Area", + "description": "Don't generate areas of infill smaller than this (use skin instead).", + "unit": "mm²", + "type": "float", + "minimum_value": "0", + "default_value": 0, + "settable_per_mesh": true } } }, From 1727b6dbe1aa9478e3d6bb5534fa0d29129e80b4 Mon Sep 17 00:00:00 2001 From: Ghostkeeper Date: Mon, 23 Jan 2017 17:18:27 +0100 Subject: [PATCH 2/3] Add entry that we switched Linux to AppImage format It was deemed worthy to mention. Contributes to issue CURA-3048. --- plugins/ChangeLogPlugin/ChangeLog.txt | 3 +++ 1 file changed, 3 insertions(+) diff --git a/plugins/ChangeLogPlugin/ChangeLog.txt b/plugins/ChangeLogPlugin/ChangeLog.txt index c98f0a7c6b..265a076d25 100644 --- a/plugins/ChangeLogPlugin/ChangeLog.txt +++ b/plugins/ChangeLogPlugin/ChangeLog.txt @@ -98,6 +98,9 @@ Use a mesh to specify a volume within which to classify nothing as overhang for *Delta printer support This release adds support for printers with elliptic buildplates. This feature has not been extensively tested so please let us know if it works or get involved in improving it. +*AppImage for Linux +The Linux distribution is now in AppImage format, which makes Cura easier to install. + *bugfixes The user is now notified when a new version of Cura is available. When searching in the setting visibility preferences, the category for each setting is always displayed. From 7020e018432bf2ad8242ddb06838b51ca25ff335 Mon Sep 17 00:00:00 2001 From: Mark Burton Date: Tue, 24 Jan 2017 10:50:28 +0000 Subject: [PATCH 3/3] Don't minimise minimum! --- resources/definitions/fdmprinter.def.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/definitions/fdmprinter.def.json b/resources/definitions/fdmprinter.def.json index 3be63b555d..14f65137e9 100644 --- a/resources/definitions/fdmprinter.def.json +++ b/resources/definitions/fdmprinter.def.json @@ -1233,7 +1233,7 @@ }, "min_infill_area": { - "label": "Min Infill Area", + "label": "Minimum Infill Area", "description": "Don't generate areas of infill smaller than this (use skin instead).", "unit": "mm²", "type": "float",