Ghostkeeper
336bd2bd16
Use extruderList rather than deprecated extruders property
...
Done during Turbo Testing and Tooling.
2020-06-05 15:17:35 +02:00
Kostas Karmas
ec62cd5671
Fix "Unable to assing null to double" QmlWarning
2020-06-05 14:20:52 +02:00
Kostas Karmas
306f58f96e
Fix contentWidth reference error in ActionButton
2020-06-05 14:13:36 +02:00
Ghostkeeper
9fab964afe
Merge branch 'master' of github.com:Ultimaker/Cura
2020-06-05 13:48:52 +02:00
Remco Burema
7fd7b3a868
Merge branch 'master' of https://github.com/Ultimaker/Cura
2020-06-05 13:29:53 +02:00
Remco Burema
670f1df6c7
Show latest version nr. available in firmware-update-checker-message.
2020-06-05 13:29:21 +02:00
Kostas Karmas
42daef0a75
Remove spam info message
2020-06-05 13:20:38 +02:00
Ghostkeeper
7ec681a04d
Merge branch 'feature_support_meshes_present' of https://github.com/fieldOfView/Cura into fieldOfView-feature_support_meshes_present
2020-06-05 13:20:31 +02:00
Kostas Karmas
ea6a73e76d
Fix mypy complains
2020-06-05 13:18:48 +02:00
Kostas Karmas
22b9bb77ef
Fix reporting the [WinError 10038] exception traceback on sign-in
...
Surround the serve_forever function of the web server with a try-catch
on Windows, in order to avoid printing the entire (useless) traceback.
Now a warning message is be displayed in the log instead.
The behavior is untouched in other platforms
2020-06-05 12:59:31 +02:00
Jaime van Kessel
fd2a7689cc
Remove overly spammy logging
2020-06-04 14:32:37 +02:00
Gabriel Vogel
2ebf32831a
remove duplicate updates for model properties
2020-06-04 13:50:24 +02:00
Ghostkeeper
9b6f10b6e7
Merge branch '4.6'
2020-06-04 13:37:44 +02:00
Ghostkeeper
2e5f4764bd
Remove duplicated version upgrade plug-in
...
These two version upgraders do the same operation. Their code is copied. Instead, we can just let one version upgrader upgrade both versions of the files.
Contributes to issue CURA-7413.
2020-06-04 13:37:30 +02:00
Ghostkeeper
1d6c722505
Indent using spaces, not a mix of tabs and spaces
...
Contributes to issue CURA-7450.
2020-06-04 13:14:56 +02:00
Ghostkeeper
06dce91bef
Merge branch 'master' of https://github.com/grk3010/Cura into grk3010-master
2020-06-04 13:06:08 +02:00
Jaime van Kessel
d4eba3d089
Merge branch 'CURA-7460_Change_popup_tooltip_when_printer_is_offline' of github.com:Ultimaker/Cura
2020-06-04 11:27:41 +02:00
fieldOfView
c34162a2ba
Merge branch 'master' into feature_support_meshes_present
...
# Conflicts:
# cura/Scene/CuraSceneController.py
# cura/Scene/CuraSceneNode.py
2020-06-04 10:27:11 +02:00
Ghostkeeper
b2ce1419cf
Don't crash when syncing material that has no colour code
...
Use the colour code for Generic PLA then.
2020-06-03 17:48:28 +02:00
Ghostkeeper
1e49438c03
Merge branch 'master' of https://github.com/victornpb/Cura into victornpb-master
2020-06-03 16:21:50 +02:00
Remco Burema
2337e3b82c
Merge pull request #7862 from Ultimaker/CURA-7457_Fix_resyncing_removed_online_cloud_printers
...
Update _remote_clusters dict when cloud printer is removed from Cura
2020-06-03 16:14:37 +02:00
Kostas Karmas
be9aec624a
Use the um_cloud_cluster_id metadata when removing the cloud printer
...
CURA-7457
2020-06-03 11:13:21 +02:00
Ghostkeeper
6d1d6ca1aa
Add warning for Support Wall Line Count if breaking up support in chunks
...
It will be hard to break it up then.
Fixes #7841 .
2020-06-03 10:51:43 +02:00
Kostas Karmas
09ff6b72ed
Merge branch 'master' into CURA-7457_Fix_resyncing_removed_online_cloud_printers
2020-06-03 09:46:10 +02:00
Kostas Karmas
323d2d4019
Update setting_version to 15 for ATMAT machine profiles
...
Following PR https://github.com/Ultimaker/Cura/pull/7030
CURA-7323
2020-06-02 16:28:49 +02:00
Konstantinos Karmas
856221f0b6
Merge pull request #7030 from gandzia44/master
...
ATMAT machines profiles
2020-06-02 16:25:55 +02:00
Kostas Karmas
a06035cf38
Display appropriate tooltip message when cloud printer is offline
...
Display a different message in the popup tooltip when the internet
is reachable but the printer is offline.
CURA-7460
2020-06-02 16:12:05 +02:00
Kostas Karmas
d0534c0476
Update _remote_clusters dict when cloud printer is removed from Cura
...
CURA-7457
2020-06-02 15:23:35 +02:00
Jaime van Kessel
73026a0744
Merge branch 'master' of github.com:Ultimaker/Cura
2020-06-02 14:20:35 +02:00
Jaime van Kessel
fbbd2f7484
Fix small copy paste error
...
CURA-7477
2020-06-02 14:19:13 +02:00
Jaime van Kessel
0885d1a8e2
Merge branch 'feature_single_instance_preference' of https://github.com/fieldOfView/Cura
2020-06-02 14:16:18 +02:00
Ghostkeeper
93c84d5bc0
Mock the limit_to_extruder property with an actual value
...
This is necessary because our code now converts this to an integer. Mocks can't be converted to an integer, so the sub-magic-mock here can't be used. We need to provide something that can be cast to an integer.
2020-06-02 14:01:09 +02:00
Ghostkeeper
825a34d418
Mock the extruderList
...
Otherwise the list of extruders becomes a MagicMock. Adding a list to a MagicMock is again a MagicMock, and when iterating over that it doesn't result in any iterations. As a result, the for loop that clears all user containers didn't clear anything and the test failed.
2020-06-02 13:46:17 +02:00
Ghostkeeper
be814535e9
Avoid hitting the prime blob when Z hop is enabled
...
If Z hop is enabled, it would move to the height of the Z hop at the start of the print, in order to hop for the initial travel move. Cura sort of assumes that this hop is going up and so it's safe to do, but in reality this hop is going down due to the starting process in the firmware. As a hotfix, we'll just move away from that blob so that we don't hit it even if you enable Z hops.
2020-06-02 11:54:10 +02:00
Ghostkeeper
19f500834b
Remove use of deprecated extruders property
...
Still had this one uncommitted from last Friday. I tested it and it works the same way.
2020-06-02 11:54:10 +02:00
Jaime van Kessel
f1d3c2272e
Merge branch 'CURA-7458_Add_offline_cloud_printers_in_Cura' of github.com:Ultimaker/Cura
2020-06-02 10:55:21 +02:00
Victor
63e7e2b382
Added 76800 baud rate
2020-06-02 00:03:12 -03:00
Victor
accd205185
Added 76800 baud rate
2020-06-02 00:02:24 -03:00
Ghostkeeper
e68ebb198e
Don't use deprecated extruders property
...
Done during Turbo Testing and Tooling.
2020-05-29 18:14:21 +02:00
Ghostkeeper
0e4830e6ef
Don't use deprecated extruders property
...
Done during Turbo Testing and Tooling.
2020-05-29 18:10:59 +02:00
Ghostkeeper
e98c26a33c
Don't use deprecated extruders property
...
Done during Turbo Testing and Tooling.
2020-05-29 18:07:08 +02:00
Ghostkeeper
b68c3b7301
Remove usage of deprecated extruders property
...
Initially PyCharm didn't find this because it's not typed.
Done during Turbo Testing and Tooling.
2020-05-29 18:06:02 +02:00
Ghostkeeper
fc6867a4a0
Use extruderList rather than deprecated extruders property
...
Done during Turbo Testing and Tooling.
2020-05-29 17:56:56 +02:00
Ghostkeeper
458acb356f
Use extruderList rather than deprecated extruders property
...
Once more into the fray.
Done during Turbo Testing and Tooling.
2020-05-29 17:55:12 +02:00
Ghostkeeper
0d9053881c
Remove use of deprecated extruders property
...
Removes lots of warnings from the test log, since there the logger doesn't prevent creating multiple of those.
Done during Turbo Testing and Tooling.
2020-05-29 17:47:56 +02:00
Ghostkeeper
1bb4458dca
Remove use of deprecated extruders property
...
This also removes the need to sort them, since the list is already sorted by position.
Done during Turbo Testing and Tooling.
2020-05-29 17:45:41 +02:00
Ghostkeeper
1fb78d23a5
Remove usage of deprecated extruders property
...
Use extruderList instead.
Done during Turbo Testing and Tooling.
2020-05-29 17:42:18 +02:00
Ghostkeeper
da61096efe
Remove uses of deprecated extruders property
...
It's been replaced by extruderList now.
Done during Turbo Testing and Tooling.
2020-05-29 17:38:34 +02:00
Ghostkeeper
e098f98a7d
Remove unused mock of extruders property
...
The extruders property is no longer being used by the code under test, so this mock is unnecessary. It's also a deprecated property.
Done during Turbo Testing and Tooling.
2020-05-29 17:35:42 +02:00
Ghostkeeper
9c78178561
Fix running automated tests from source with different SIP version
...
This prevents the PyCapsule_GetPointer error when running the tests for this plug-in.
Done during Turbo Testing and Tooling.
2020-05-29 17:31:58 +02:00