From 86875580afa00e931dead827b631135434de1dbc Mon Sep 17 00:00:00 2001 From: 10r3n20 Date: Tue, 26 Oct 2021 13:01:15 +0200 Subject: [PATCH 1/3] add dark themed images to the dark theme --- .../images/first_run_ultimaker_cloud.svg | 36 +++++++++++++++++++ .../themes/cura-dark/images/welcome_cura.svg | 27 ++++++++++++++ 2 files changed, 63 insertions(+) create mode 100644 resources/themes/cura-dark/images/first_run_ultimaker_cloud.svg create mode 100644 resources/themes/cura-dark/images/welcome_cura.svg diff --git a/resources/themes/cura-dark/images/first_run_ultimaker_cloud.svg b/resources/themes/cura-dark/images/first_run_ultimaker_cloud.svg new file mode 100644 index 0000000000..8cd749305e --- /dev/null +++ b/resources/themes/cura-dark/images/first_run_ultimaker_cloud.svg @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + diff --git a/resources/themes/cura-dark/images/welcome_cura.svg b/resources/themes/cura-dark/images/welcome_cura.svg new file mode 100644 index 0000000000..f92f032a2a --- /dev/null +++ b/resources/themes/cura-dark/images/welcome_cura.svg @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + From 87db24f14c162f48c69556eed4a8cbf679b0db34 Mon Sep 17 00:00:00 2001 From: Jaime van Kessel Date: Fri, 29 Oct 2021 10:39:00 +0200 Subject: [PATCH 2/3] Don't check validation for settings in error state CURA-8656 --- plugins/CuraEngineBackend/StartSliceJob.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/plugins/CuraEngineBackend/StartSliceJob.py b/plugins/CuraEngineBackend/StartSliceJob.py index 9e53ce8b3a..7e01e96b06 100644 --- a/plugins/CuraEngineBackend/StartSliceJob.py +++ b/plugins/CuraEngineBackend/StartSliceJob.py @@ -123,6 +123,9 @@ class StartSliceJob(Job): Job.yieldThread() for changed_setting_key in changed_setting_keys: + if not stack.getProperty(changed_setting_key, "enabled"): + continue + validation_state = stack.getProperty(changed_setting_key, "validationState") if validation_state is None: From 67d76e3af8024e96940a263bce888199f3e82bc3 Mon Sep 17 00:00:00 2001 From: Jaime van Kessel Date: Mon, 1 Nov 2021 11:50:24 +0100 Subject: [PATCH 3/3] Change version in citation file to 4.12 --- CITATION.cff | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CITATION.cff b/CITATION.cff index 808a403e1a..b97fdf7c49 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -7,5 +7,5 @@ license: "LGPL-3.0" message: "If you use this software, please cite it using these metadata." repository-code: "https://github.com/ultimaker/cura/" title: "Ultimaker Cura" -version: "4.10.0" -... \ No newline at end of file +version: "4.12.0" +...