Ghostkeeper
0190247c5a
Don't show tooltip if it shows the same text as the button
...
It's only useful if the text on the button gets elided.
2019-06-14 14:17:10 +02:00
Ghostkeeper
a39ac2ca22
Reduce travel jerk/acceleration and reduce print jerk slightly
...
These settings are preventing layer shifts on the Tevo Tornado according to our users at #5694 .
2019-06-14 11:50:58 +02:00
Remco Burema
fd8dfb4185
Fix resolve/value/warning definition for enable prime blob. [CURA-6414]
2019-06-14 11:39:48 +02:00
Ghostkeeper
a89465afa1
Build volume temperature should not be settable per extruder
...
Just like build plate temperature, the per-extruder profiles can still override it but it will be resolved to a single global value.
2019-06-14 11:38:18 +02:00
Ghostkeeper
02b0242807
Fix translatability of caution message
...
Never put the formatting within the i18nc call. Always put the formatted string inside, but the formatting call outside of the function, like this:
catalog.i18nc('@info', 'I am {age} years old.').format(age = my_age)
Otherwise, when looking up the translation for the string, it's going to try to look up the translation for the formatted string (with the age already filled in). It won't be able to find that because this sentence was not translated for all possible ages of a human.
In this case I can make it even easier on the translator because the list must always follow after the text.
2019-06-14 11:00:52 +02:00
Ghostkeeper
52ed79805e
Enable numerous settings that just work fine with tree support
...
Found via a report in #5453 .
2019-06-14 09:51:27 +02:00
Remco Burema
1ae8011cf7
Clarify crystalline description (crystal clear?). [CURA-6329]
2019-06-12 14:02:37 +02:00
Ghostkeeper
a55cc6fade
Also remove removed keys from visible settings
...
It's listed among the setting keys that you explicitly made visible.
Contributes to issue CURA-6460.
2019-06-12 13:36:40 +02:00
Ghostkeeper
056afdde5f
Merge branch 'rename_minimum_diameter' into CURA-6460_remove_square_tower
...
Conflicts:
plugins/VersionUpgrade/VersionUpgrade41to42/VersionUpgrade41to42.py -> Change there that needed to be merged here, but we had changed lines around it.
2019-06-12 13:34:59 +02:00
Ghostkeeper
2fb722b287
Apply changed visible settings to preferences file
...
Otherwise the change will not be made to the actual file, just in memory.
Contributes to issue CURA-6311.
2019-06-12 13:32:43 +02:00
Ghostkeeper
a82e4bbb0b
Remove setting from 'values' category
...
Oops.
Contributes to issue CURA-6311.
2019-06-12 13:31:30 +02:00
Ghostkeeper
cf9f97e897
Merge branch 'rename_minimum_diameter' into CURA-6460_remove_square_tower
...
Conflicts:
plugins/VersionUpgrade/VersionUpgrade41to42/VersionUpgrade41to42.py -> Both had a version upgrade implementation.
plugins/VersionUpgrade/VersionUpgrade41to42/__init__.py -> Both had a version upgrade implementation.
2019-06-12 13:03:05 +02:00
Ghostkeeper
5fcb59d9fc
Also rename setting in list of visible settings
...
Yeah, that's why the preferences file had a setting version number...
Contributes to issue CURA-6311.
2019-06-12 12:55:33 +02:00
Ghostkeeper
b5a59d19ff
Set acceleration to 500 for Tevo Tornado
...
The users of this printer in #5702 found this to be a better value to prevent layer shifting. Fixes #5702 .
2019-06-12 10:38:54 +02:00
Ghostkeeper
9bcf1cd761
Reduce Tevo Tornado's jerk to 10 by default
...
This prevents layer shifts, according to the users in #5702 .
2019-06-12 10:35:37 +02:00
Ghostkeeper
a38984dcec
Increment setting_version to 8
...
This is required for the version upgrade.
Contributes to issue CURA-6311.
2019-06-12 09:09:41 +02:00
Ghostkeeper
4f954f18bd
Remove unnecessary updating of main version number
...
Contributes to issue CURA-6311.
2019-06-11 17:45:08 +02:00
Ghostkeeper
489b9c4c53
Add version upgrade for version 4.1 to 4.2
...
This is necessary for the renamed setting.
Contributes to issue CURA-6311.
2019-06-11 17:44:04 +02:00
Ghostkeeper
f897e31e96
Rename key of support_minimal_diameter to support_tower_maximum_supported_diameter
...
A bit long, but you won't have to type it that often.
Contributes to issue CURA-6311.
2019-06-11 17:43:16 +02:00
Diego Prado Gesto
de5de8b9f1
Merge branch 'master' of github.com:Ultimaker/Cura
2019-06-11 09:54:14 +02:00
Diego Prado Gesto
b90fb9f810
Make the layer and path slider a bit longer
2019-06-11 09:53:37 +02:00
Jaime van Kessel
f842769c1d
Fix situation where _calculateMoveFromWallRadius could cause exception
2019-06-07 17:21:28 +02:00
Jaime van Kessel
4018c24b4c
Split out all the individual steps for getting the edgeDisallowedSize
...
This makes it so much easier to write tests for it
2019-06-07 17:14:51 +02:00
KOUBeMT
00dbe63300
ABS_cooling_N0.6
2019-06-07 17:01:30 +02:00
Jaime van Kessel
3967c995f1
Split out updating the machine size properties so it can be tested easily
2019-06-07 16:42:51 +02:00
Jaime van Kessel
2f83fa1a42
Small code simplification
2019-06-07 16:34:38 +02:00
Jaime van Kessel
887f50dee4
Add tests for calculating the extra z clearance
2019-06-07 16:30:29 +02:00
Ghostkeeper
abda45ee59
Set crystalline to false by default
...
Because PLA is not crystalline.
Contributes to issue CURA-6329.
2019-06-07 16:26:19 +02:00
Jaime van Kessel
54740dd486
Add some unhappy flow tests for rebuild
2019-06-07 16:09:18 +02:00
Jaime van Kessel
090b7ac225
Refactor the rebuild function to cut it up in smaller bits
2019-06-07 16:08:47 +02:00
Jaime van Kessel
8fcec63ccb
Add tests for computing raft thickness
2019-06-07 15:52:35 +02:00
Jaime van Kessel
a98f88e6a3
Also move _getMachineTypeNameFromId to DiscoveredPrintersModel
...
As this is only used by that model, there is no point in keeping it in the machine manager
2019-06-07 15:04:19 +02:00
Jaime van Kessel
5eee3fc368
Move hasHumanReadableMachienTypeName to discovered printers
2019-06-07 15:01:30 +02:00
Jaime van Kessel
05a5f66856
Added few more deprecation warnings for functions that bloat the machine manager
2019-06-07 14:57:32 +02:00
Jaime van Kessel
8907a624e1
Add test to check the number of known settings
2019-06-07 14:45:36 +02:00
Jaime van Kessel
06aaf40d06
Add test for computation of prime blob
2019-06-07 14:29:15 +02:00
Ghostkeeper
27ea9c813e
Allow negative retraction distances
...
You COULD want to extrude.
Contributes to issue CURA-6329.
2019-06-07 13:57:56 +02:00
Jaime van Kessel
a8a4180f6f
Merge branch 'master' of github.com:Ultimaker/Cura
2019-06-07 13:41:43 +02:00
Jaime van Kessel
1759e01b27
Make _geSettingFromAllExtruders use zip
...
This is a bit cleaner to use
2019-06-07 13:40:41 +02:00
Jaime van Kessel
a6ca49d68c
Fix typing for Buildvolume
2019-06-07 13:34:57 +02:00
Ghostkeeper
ec22ddcb9a
Give infill and support interface a more distinct colour
...
We had complaints that infill had a too similar colour to skin.
Fixes #5827 .
2019-06-07 13:30:15 +02:00
Jaime van Kessel
2d4fe5c128
Add some simple tests for meshbuilding of the build volume
2019-06-07 13:05:00 +02:00
Remco Burema
6f928ad97c
Merge branch 'master' into feature_intent
2019-06-07 10:39:52 +02:00
KOUBeMT
ee06ecca01
Indentation_fix_tabs_to_4spaces
2019-06-07 10:15:29 +02:00
KOUBeMT
c54f599acb
indentation_fix
2019-06-06 15:04:32 +02:00
Lipu Fei
9911f98deb
Add version upgrade 4.1 to 4.2
...
CURA-6460
2019-06-06 13:11:56 +02:00
Lipu Fei
e28ba497d3
Remove prime_tower_circular from profiles
...
CURA-6460
2019-06-06 13:11:26 +02:00
Lipu Fei
47ecdda0bc
Show prime blob by default
...
CURA-6414
So user can see if it's in a warning state.
2019-06-06 12:31:06 +02:00
Lipu Fei
960a20652a
Add warning state for prime blob and CheckBox
...
CURA-6414
2019-06-06 12:30:27 +02:00
Lipu Fei
d0f1b74bd7
Fix mistake in CLI check
...
CURA-6549
2019-06-06 12:16:54 +02:00