25644 Commits

Author SHA1 Message Date
3dg-Lester
90076c5586
Update resources/definitions/two_trees_sapphireplus.def.json
Co-authored-by: Konstantinos Karmas <konskarm@gmail.com>
2021-03-07 10:42:09 +08:00
3dg-Lester
04e30b9fae
Update resources/definitions/two_trees_sapphireplus.def.json
Co-authored-by: Konstantinos Karmas <konskarm@gmail.com>
2021-03-07 10:41:54 +08:00
3dg-Lester
135484744b
Update resources/definitions/two_trees_sapphireplus.def.json
Co-authored-by: Konstantinos Karmas <konskarm@gmail.com>
2021-03-07 10:41:41 +08:00
3dg-Lester
0e5da37c31
Update resources/definitions/two_trees_sapphireplus.def.json
Co-authored-by: Konstantinos Karmas <konskarm@gmail.com>
2021-03-07 10:41:12 +08:00
3dg-Lester
1010b180e2
Update resources/definitions/two_trees_bluerplus.def.json
Co-authored-by: Konstantinos Karmas <konskarm@gmail.com>
2021-03-07 10:40:57 +08:00
3dg-Lester
3593a54754
Update resources/definitions/two_trees_bluerplus.def.json
Co-authored-by: Konstantinos Karmas <konskarm@gmail.com>
2021-03-07 10:40:46 +08:00
3dg-Lester
5ce25058af
Update resources/definitions/two_trees_bluerplus.def.json
Co-authored-by: Konstantinos Karmas <konskarm@gmail.com>
2021-03-07 10:40:34 +08:00
3dg-Lester
c8e61c790a
Update resources/definitions/two_trees_bluerplus.def.json
Co-authored-by: Konstantinos Karmas <konskarm@gmail.com>
2021-03-07 10:40:24 +08:00
3dg-Lester
98ec1132b1
Update resources/definitions/two_trees_bluer.def.json
Co-authored-by: Konstantinos Karmas <konskarm@gmail.com>
2021-03-07 10:40:13 +08:00
3dg-Lester
ef1beee166
Update resources/definitions/two_trees_sapphirepro.def.json
Co-authored-by: Konstantinos Karmas <konskarm@gmail.com>
2021-03-07 10:39:40 +08:00
3dg-Lester
4cddd4cd1b
Update resources/definitions/two_trees_sapphirepro.def.json
Co-authored-by: Konstantinos Karmas <konskarm@gmail.com>
2021-03-07 10:39:35 +08:00
3dg-Lester
5a6239a1a9
Update resources/definitions/two_trees_sapphirepro.def.json
Co-authored-by: Konstantinos Karmas <konskarm@gmail.com>
2021-03-07 10:39:27 +08:00
3dg-Lester
d7c3e1b0ef
Update resources/definitions/two_trees_sapphirepro.def.json
Co-authored-by: Konstantinos Karmas <konskarm@gmail.com>
2021-03-07 10:39:22 +08:00
3dg-Lester
994b38f1df
Update resources/definitions/two_trees_bluer.def.json
Co-authored-by: Konstantinos Karmas <konskarm@gmail.com>
2021-03-07 10:39:17 +08:00
3dg-Lester
ca581d7992
Update resources/definitions/two_trees_sapphirepro.def.json
Co-authored-by: Konstantinos Karmas <konskarm@gmail.com>
2021-03-07 10:39:09 +08:00
3dg-Lester
a216d51c45
Update resources/definitions/two_trees_base.def.json
Co-authored-by: Konstantinos Karmas <konskarm@gmail.com>
2021-03-07 10:39:03 +08:00
3dg-Lester
76296f15b5
Update resources/definitions/two_trees_base.def.json
Co-authored-by: Konstantinos Karmas <konskarm@gmail.com>
2021-03-07 10:38:57 +08:00
3dg-Lester
298d8dc5c7
Update resources/definitions/two_trees_bluer.def.json
Co-authored-by: Konstantinos Karmas <konskarm@gmail.com>
2021-03-07 10:38:49 +08:00
3dg-Lester
094a9077af
Update resources/definitions/two_trees_bluer.def.json
Co-authored-by: Konstantinos Karmas <konskarm@gmail.com>
2021-03-07 10:38:42 +08:00
3dg-Lester
1e5487134e
Update resources/definitions/two_trees_bluer.def.json
Co-authored-by: Konstantinos Karmas <konskarm@gmail.com>
2021-03-07 10:38:35 +08:00
Ghostkeeper
a379e01f1d
Fix layer view being greyed out after reslicing gives same current layer
This fixes a very old bug in Cura where sometimes after re-slicing it would display the layer as if you've been going horizontal through the path slider, even if you never touched the horizontal path slider.
This was caused by a tracking flag in the SimulationPass, _switching_layers. This bit of state in the SimulationPass was tracking whether the user is going through the vertical layer slider (True) or the horizontal path slider (False). If False, the nozzle mesh is drawn and lower layers get drawn in a shadowy shader. The state of this flag was being updated on every render by looking at whether the previous render has the same current layer number but a different path index. If so, it changed to False, meaning that it assumes you're going through the paths on a layer and things get shadowy.
However if you slice a different object such that the number of layers stay the same (or at least the current layer) but the number of paths on a layer change (e.g. by reducing Maximum Resolution, or by loading a different model that happens to be equally tall) then it would falsely think you were going through the horizontal path slider.

This change effectively resets this state flag when any layer data is changed in the scene. So if you re-slice, it always goes back to _switching_layers = True.

The side effect is that if you were going through the paths of a layer and you re-slice, you won't end up on the same path even if the number of paths on your current layer didn't change due to the reslice. But I think that is more towards what the user would accept a re-slice to do anyway.

I decided to take a look into this bug because I'm making a script to automatically refresh the screenshots of the Settings Guide plug-in. This script frequently hits cases like this, and it's easier to fix this bug than to work around it in my script.
2021-03-06 15:48:32 +01:00
Ghostkeeper
2cdb025adb
Document layer view navigation functions 2021-03-06 14:21:38 +01:00
Ghostkeeper
e9d3ba9b74
Simplify limits on [minimum] layer/path number
Just a few calls to min() or max() do the trick, rather than if statements.
I consider this more semantic, because we just intend to clamp values here, and min() and max() are commonly used to do that.
It should also be slightly faster because it's less Python and more internal in CPython, but considering that this happens at best like 60 times per second the performance impact of this will be practically nil.
2021-03-06 14:15:48 +01:00
Ghostkeeper
3ef01ecbd8
Limit minimum path number to path count, not layer count
This was probably copy-pasted wrongly years ago.
The Cura interface currently doesn't allow changing the minimum path anyway, so this doesn't have any effect on the actual behaviour of Cura. Still, can't hurt to fix this, for posterity.
2021-03-06 14:05:17 +01:00
Jaime van Kessel
cc1aadde12
Set & use enabled property for saving projects when ufp/gcode is loaded
CURA-8034
2021-03-05 14:09:39 +01:00
Fenne
1193c197c2
Merge pull request #9367 from Ultimaker/new_issue_templates
Fixed typo and clarified message
2021-03-04 17:30:06 +01:00
fvrmr
6ef3e37fbd Fixed typo and clarified message
Fixed typo in featurerequest.yaml
Clarified message in bugreport.yaml about uploading project file
2021-03-04 17:28:09 +01:00
Jaime van Kessel
2b63fb1081
Add spaces between names of issue templates 2021-03-04 16:52:59 +01:00
Fenne
fdb957ecf2
Merge pull request #9365 from Ultimaker/new_issue_templates
New issue templates
2021-03-04 16:51:04 +01:00
Jaime van Kessel
258313d192
Swap out depricated tag 2021-03-04 16:49:25 +01:00
Jaime van Kessel
2583493638
CHange name of template so that it's unique 2021-03-04 16:47:49 +01:00
Jaime van Kessel
301a571a08
Remove old bug templates 2021-03-04 16:46:18 +01:00
Jaime van Kessel
d9bc0e1dea
Add new bugreport & template 2021-03-04 16:44:20 +01:00
Daniel Kreuzhofer
5e97cf91ff Add FLSUN Q5 printer and extruder profile 2021-03-04 13:39:40 +01:00
Konstantinos Karmas
f7c45f6cb6
Merge pull request #9358 from Ultimaker/CURA-7820_reword_nonmanifold
[CURA-7820] Reword the non-manifold message, add link.
2021-03-04 09:49:19 +01:00
TheTRCG
650a195fab
Update Geeetech A10 definition
Removed overwriting temperature gcode in the definition
Removed repeated gcode
Added comments for the gcode
2021-03-04 14:16:36 +05:30
Remco Burema
62056f3b0a
Reword previous rewording ('import' -> 'open').
CURA-7820
2021-03-04 09:32:07 +01:00
Ghostkeeper
2c55c4a562
Merge branch 'master' into CURA-7871_lowest_print_height 2021-03-03 17:13:30 +01:00
Remco Burema
8bb57ac0e6
Reword the nonmanifold message, add link.
UX found that users where confused by the word nonmanifold. Reword the message and add an explanatory link.

CURA-7820
2021-03-03 17:13:08 +01:00
Ghostkeeper
b83193bc0f
Fix lowest slice height
Don't always divide by 2. Just for slicing tolerance: Middle. And then just once.

Contributes to issue CURA-7871.
2021-03-03 17:05:01 +01:00
Firedrops
e385ac9e50
Update ideagen3D_sapphire_plus.def.json (#9213)
* Update ideagen3D_sapphire_plus.def.json

Added Restore Bed Levelling after Homing to start G-Code.

* Update resources/definitions/ideagen3D_sapphire_plus.def.json

Co-authored-by: Ghostkeeper <Ghostkeeper@users.noreply.github.com>

* Update ideagen3D_sapphire_plus.def.json

Corrected machine_head_with_fans_polygon and gantry_height for "One at a time" printing.

* Update resources/definitions/ideagen3D_sapphire_plus.def.json

Co-authored-by: Konstantinos Karmas <konskarm@gmail.com>

Co-authored-by: Ghostkeeper <Ghostkeeper@users.noreply.github.com>
Co-authored-by: Konstantinos Karmas <konskarm@gmail.com>
2021-03-02 15:23:13 +01:00
Jaime van Kessel
2806dc6947
Merge branch 'fix_attr_addresses_not_found' of github.com:Ultimaker/Cura 2021-03-01 15:07:31 +01:00
Jaime van Kessel
a8f92e9900
Merge branch 'master' of github.com:Ultimaker/Cura 2021-03-01 14:32:54 +01:00
Jaime van Kessel
ad8e78c7f8
Remove unused import 2021-03-01 14:32:42 +01:00
Jaime van Kessel
a9c255284c
Merge pull request #9328 from Ultimaker/fix/cluster-print-job-constraints
Fix cluster print job constraints typing and optionality
2021-03-01 13:31:24 +01:00
Daniel Kurth
22dd625c7d feat: Adds files for Layer Atom 3 line of printers
The commit adds:
- Machine definition files for the Layer One Atom 3 and Atom 3 Lite Printer
- One shared extruder definition file for the Atom 3 and the Atom 3 Lite
- A mesh file for the Atom 3 and Atom 3 Lite
- Variant files for [0.2; 0.4; 0.6]mm Nozzles for PTFE and full metal hotends
2021-02-28 12:34:23 +01:00
Remco Burema
2b88a2dc87
Fix error log spam.
The code is clearly written to take into account that 'addresses' may be null. But not that the whole 'addresses' attribute may not exist. And then instead of printing one warning (Could not get information about XX) it instead printed a stacktrace and retried and printed a stacktrace and retried and printed a stacktrace and.... It ended up driving me a bit nuts when looking at the logs for unrelated reasons. So Ifinallay fixed it. Could end up as a speedup in some cases as well I suppose?
2021-02-26 21:56:33 +01:00
Jaime van Kessel
fa4d1ba1fb
Don't strip accents from job name
No idea why this was there in the first place. Our archeology attempts couldn't
find out as to why it was introduced. We suspect an issue with other Qt versions.

At least now ロボット.stl will not be mangled into ロホット.gcode upon saving (and
german bears into bars)
2021-02-26 14:56:27 +01:00
Ghostkeeper
5c58df3c73
Minor corrections to Sri Vignan printers
Found during testing. I think it's pretty safe to say what they intended to write here.

Contributes to issue CURA-8051.
2021-02-25 17:46:46 +01:00
Ghostkeeper
642fee9904
Merge branch 'master' of https://github.com/venkatkamesh/Cura into venkatkamesh-master 2021-02-25 17:32:45 +01:00