26797 Commits

Author SHA1 Message Date
Ghostkeeper
cbe3cf778a
Change distribution count to be the maximum diameter of distribution
Instead of the minimum. So previously a value of 2 would make it spread the error over 2 walls for an even number, or 3 for an odd. Now it makes it spread the error over 2 walls for an even number or 1 for an odd. This means that the minimum allowed value becomes 2, because for an even wall count it needs to place the error somewhere.

Done as a 5 minute fix.
2021-11-12 16:48:08 +01:00
Ghostkeeper
a94415b388
Merge branch 'flow_equalization_width_factor_as_ratio' into libArachne_rebased 2021-11-12 15:19:51 +01:00
Ghostkeeper
b8ccb32836
Merge branch 'master' into libArachne_rebased
Conflicts:
	resources/definitions/ultimaker2.def.json -> Additions in Arachne around a place where we fixed an enum setting.
	resources/definitions/ultimaker3.def.json
	resources/definitions/ultimaker_s3.def.json
	resources/definitions/ultimaker_s5.def.json
2021-11-12 15:08:29 +01:00
j.spijker@ultimaker.com
c668746769
Flow equalization width factor as percentage
This variable makes more sense to as a Ratio.
This was discussed during the eCCB 12/11/21
and implemented as a 5 min fix.

Note: The current default values were 0.5 there
is a new PR which change these 1.0. These values
should be multiplied with a 100
2021-11-12 14:13:25 +01:00
Ghostkeeper
6171107140
Remove upper limit of bridge skin density
There is no theoretical or algorithmic limit here. We may warn the user, but not prevent them from changing it.

Done as a five minute fix. Fixes CURA-8693. Fixes #10736.
2021-11-11 15:45:47 +01:00
Jaime van Kessel
136aa45172 Merge branch '4.12' of github.com:Ultimaker/Cura 2021-11-11 15:32:39 +01:00
Ghostkeeper
b4f10bab71
Merge branch 'PP-55_reduce-cross3D-top-layer-bridge-distance' 2021-11-11 12:34:58 +01:00
Jaime van Kessel
8998738237
Merge pull request #10774 from luzpaz/typos
Fix typos
2021-11-09 17:04:54 +01:00
luz paz
61d7895588 Fix typos
Found via `codespell -q 3 -S *.po,*.pot -L childs,initialy,lod,ned,te,slicable,sur,tutoriels,wont`
2021-11-09 10:38:01 -05:00
Jaime van Kessel
b1f797f6cb Merge branch 'master' of github.com:Ultimaker/Cura 2021-11-09 15:10:39 +01:00
Jaime van Kessel
c1a839ccaa Also ensure that extruder settings are correct when discarding unsaved changes
CURA-8584
2021-11-09 15:10:09 +01:00
Ghostkeeper
ca942a15e8
Don't use infinite lifetimes lightly
This is very annoying if switching profiles. This is not a critical message. The message should disappear after the default amount of time.

Discovered while working on CURA-8584.
2021-11-09 14:45:40 +01:00
Jelle Spijker
40be115b17
Use Spanish translation for lightning infill
Contributes to CURA-8638
4.12.0
2021-11-09 10:53:07 +01:00
fvrmr
75a77bf34f Update change log
Fixed some typo's
2021-11-09 10:31:21 +01:00
fvrmr
ad5937ee6a Updated whats new pages
Updated whats new pages and images
Updated the change log
2021-11-09 10:18:00 +01:00
Jaime van Kessel
73ca50d958 Handle exception when adhesion extruder could not be found
This should be pretty rare; the crash would only happen due to a race condition

cura-8584
2021-11-09 10:17:32 +01:00
Ghostkeeper
dcf78b4885
Merge branch '4.12'
Conflicts:
	resources/i18n/de_DE/fdmprinter.def.json.po -> German translations got some fixes in master while we also updated the new translations for 4.12.
2021-11-08 13:55:09 +01:00
Ghostkeeper
db637802bd
First translate, then process replacement keys
If we first process the replacement keys, the replaced string can't be found in the translation database, so you don't get a translation of the phrase 'Finishes x at y'.

Fixes #10718.
2021-11-08 13:49:54 +01:00
Jelle Spijker
1b503f003e
Disabled Čeština for 4.12
Contributes to CURA-8638
2021-11-08 13:48:11 +01:00
Jelle Spijker
fb3706d501
Merge pull request #10738 from Patola/4.12
Updated pt_BR strings for Cura 4.12
2021-11-08 13:19:36 +01:00
Jelle Spijker
8cae8b128b
Merge branch 'zh_tw_4.12' into 4.12 2021-11-08 13:14:22 +01:00
Jelle Spijker
e88a086a5b
Merge branch 'smartling_4.12' into 4.12 2021-11-08 13:14:04 +01:00
Sekisback
260cafab0f
Update fdmprinter.def.json.po
some German translation fixes

(cherry picked from commit d725fa880647336a2835e3f495196dc43ef25651)
2021-11-08 13:11:56 +01:00
Sekisback
3d1bc36f3d
Update fdmprinter.def.json.po
mistyping fixed

(cherry picked from commit 12c5a29d3ec7c00099608720f111d896585ef5f5)
2021-11-08 13:09:59 +01:00
Jelle Spijker
48d8841d5f
Updated translations for 4.12
From Smartling

- Chinese Simplified
- Dutch
- French
- German
- Italian
- Japanese
- Korean
- Portuguese
- Rusian
- Spanish
- Turkish

Contributes to CURA-8638
2021-11-08 13:04:13 +01:00
Jelle Spijker
e3143312bc
Updated Taiwanese translations for 4.12
Translated by Valen Chang

Contributes to CURA-8638
2021-11-08 10:58:00 +01:00
Jaime van Kessel
561d0784f8 Merge branch 'CURA-8522_pause_extrusion_interruption' of github.com:Ultimaker/Cura 2021-11-08 10:23:49 +01:00
Ghostkeeper
fd5b248296
Don't register a new layer if not extruding a line
We do retracts/unretracts on different heights sometimes, for instance after a pause. This would get seen as a new layer. It's quite safe to say that purely retracts and unretracts on a different height do not constitute a layer in a normal g-code file. There would be nothing to draw anyway.

Contributes to issue CURA-8522. Fixes #10282.
2021-11-05 21:04:37 +01:00
Ghostkeeper
74ff28cbea
Only unretract/retract when necessary for priming
Otherwise this is quite a useless move and would only cause blobs on the print.

Found during work on CURA-8522.
2021-11-05 21:03:03 +01:00
Jaime van Kessel
a613a70758 Don't disable group nodes if it's extruder is disabled
Group nodes don't really have an extruder, so exclude them from that check

CURA-7710
Fixes #8336
2021-11-05 16:31:35 +01:00
Jaime van Kessel
db8153e9bb Merge branch 'master' of github.com:Ultimaker/Cura 2021-11-05 15:50:52 +01:00
Jaime van Kessel
c7c052e51c Fix crash when profile referenced unavailable extruder
CURA-8584
2021-11-05 15:50:24 +01:00
Jelle Spijker
64271d0a0c
Merge pull request #10712 from Ultimaker/fix_undo_redo_support_blocker
Fix undo and redo for support blocker
2021-11-05 09:22:11 +01:00
p.kuiper
2cba70edf1 Undo PP-29: apply zigzag pattern to top/bottom layers. These layer lead to more sagging of bridging patterns. We will undo the chance (for the 4.12 release). 2021-11-04 16:32:41 +01:00
p.kuiper
4163bc2400 Undo PP-29: apply zigzag pattern to top/bottom layers. These layer lead to more sagging of bridging patterns. We will undo the chance (for the 4.12 release). 2021-11-04 15:41:06 +01:00
Remco Burema
ba34a79204
Merge pull request #10740 from Ultimaker/update-readme.md
Update readme
2021-11-04 14:55:35 +01:00
fvrmr
9350831a5d Delete screenshot
Delete old screenshot
2021-11-04 14:52:30 +01:00
fvrmr
b31e4e81ce Update readme
Updated the readme with a new img
2021-11-04 14:49:06 +01:00
Cláudio 'Patola' Sampaio
97897466d6 Updated pt_BR strings for Cura 4.12 2021-11-04 08:49:03 +01:00
Ghostkeeper
8f7ffba1f9
Fix file extension
Contributes to issue CURA-8630.
2021-11-03 17:27:49 +01:00
Ghostkeeper
6a08fab2b5
Fix global level profiles for XYZPrinting printers
The global profiles weren't used because these printers don't have xyzprinting_base as their quality definition. And they can't use that because they do have different settings per printer in their quality profiles.
Instead it was using quality profiles from other materials, since those quality profiles, even though they were material-specific, were marked as global profiles.

Both of those issues are fixed now.

Contributes to issue CURA-8630.
2021-11-03 17:13:15 +01:00
Rijk van Manen
a0a55ea6fe optimized skin orientation for cross pattern
The skin orientation is optimized for the cross (3d) pattern to reduce the bridge distance. For more information see PP-55.
2021-11-03 16:46:46 +01:00
Ghostkeeper
c76385ca85
Merge branch 'master' of https://github.com/heed818/Cura into heed818-master 2021-11-03 15:39:24 +01:00
Ghostkeeper
1b36bc2e81
Remove padding on troubleshooting button
Contributes to issue CURA-8609.
2021-11-03 13:46:47 +01:00
Ghostkeeper
9c684cbc4d
Hide entire footer when the user started syncing
If they started syncing, most likely the list of printers is just complete and the user won't need this any more.

Contributes to issue CURA-8609.
2021-11-03 11:26:37 +01:00
Jaime van Kessel
ccfdfe5539 Merge branch 'CURA-8647_fix_beta_urls' of github.com:Ultimaker/Cura 2021-11-03 11:18:47 +01:00
Ghostkeeper
afb7854464
Don't show infill line directions setting for Gyroid and Cross patterns
It doesn't work for those patterns at the moment. For Gyroid it could be made to work. For Cross and Cross 3D it's a bit more difficult due to the pre-calculations and density image done for those.

Contributes to issue PP-55. Done as a 5 minute fix.
2021-11-03 10:38:28 +01:00
Remco Burema
1aeec9ce2b
Merge pull request #10722 from Ultimaker/CURA-8655_caz_add_build_volume
[Cura-8655] merge ChangeAtZ build-volume from contrib
2021-11-02 18:17:24 +01:00
Ghostkeeper
e929decce5
Merge branch 'speedup_inherit_button' 2021-11-02 17:59:28 +01:00
Jaime van Kessel
e02b179fae Fix toggle indicator camera view
Setting the checked state in the javascript caused the binding to be broken.
Stupid mistake and I should have known better...

CURA-8664
2021-11-02 16:54:10 +01:00