25609 Commits

Author SHA1 Message Date
Remco Burema
ed7439f9cd
Fix various UX issues.
- Remove donkey: We where showing our donkey due to an unfortunate abbreviation/truncation of 'Colorblind Assist'. Now that should already not show in for a default install, which was fixed in the previous commit, but also just give the box some more space.
- Revert most of the rest of the preferences/general page back to the old controls (except for the combo-boxes, which needed to be upgraded in order to work on MacOS 11), pending a _proper_ redesign to the newer style of this page.

CURA-8161
2021-04-09 15:30:09 +02:00
Kostas Karmas
2027309863 Fix tab button not switching to the next print setting field
The signal `setActiveFocusToNextSetting` has an argument which wasn't being passed in the
`onSetActiveFocusToNextSetting()` function, which was causing the broken behavior.

CURA-8166
2021-04-09 15:19:38 +02:00
Remco Burema
8ee0e13394
Remove hack that made older code work to make newer code work.
Theme and Language (in the interface) would stay on 'Colorblind Assist' and empty respectively, even if the actual theme (and obvioulsy the language) where different.

CURA-8161
2021-04-09 15:12:28 +02:00
Kostas Karmas
ae63dff0e4 Remove padding of the text in the scrollable text area
CURA-8154
2021-04-09 15:09:10 +02:00
Kostas Karmas
92dafccf6d Fix margins in the WhatsNew pages
CURA-8154
2021-04-09 15:08:43 +02:00
Ghostkeeper
6fdd8d3a75
Merge branch '4.9' 2021-04-09 14:13:28 +02:00
StijnArntz
d48722fcd1
Update um2pc_tpu_0.6_fast.inst.cfg 2021-04-09 14:11:23 +02:00
Ghostkeeper
7b7b640ef7
Merge branch 'atom3_printers' of https://github.com/Daniel-Kurth/Cura into Daniel-Kurth-atom3_printers 2021-04-09 13:34:28 +02:00
Ghostkeeper
6dd3256671
Hide initial layer speed settings if Number of Slower Layers is 0
These initial layer speeds were only applied to the model (not the raft).
Number of Slower Layers indicates how many layers the initial layer speed should apply to. So if that is 0, the initial layer speed doesn't apply to anything any more, and the setting should be hidden because it has no effect on the print.

Found by Markouustalu in #4439.
2021-04-09 13:17:03 +02:00
Kostas Karmas
89697ea489 Set height of progressBar to 0 when not visible in WizardPanel
CURA-8154
2021-04-09 11:42:13 +02:00
Kostas Karmas
34195551f4 Fix uneven margins in the WizardPanel
CURA-8154
2021-04-09 11:41:33 +02:00
Kostas Karmas
16cb42b3c7 Set the size of the "What's New" dialog equal to the "Welcome" dialog
CURA-8154
2021-04-09 11:39:43 +02:00
Remco Burema
e2135088b9
Merge branch '4.9' 2021-04-09 09:49:44 +02:00
Remco Burema
7f6133ca94
Merge pull request #9535 from Ultimaker/CURA-8093_Check_client_scope_when_upgrading_from_4.8
CURA-8093: Check client scope when upgrading from 4.8
2021-04-09 09:48:55 +02:00
Jaime van Kessel
dbef89ea89
Merge branch 'CURA-8127_settings_visibility_osx_fix' of github.com:Ultimaker/Cura into 4.9 2021-04-09 09:37:37 +02:00
Remco Burema
1c806199a4
Explicitly give keyring backend on Mac too.
CURA-7180
2021-04-08 14:08:35 +02:00
MarkMan0
8a091aa0d2 Change default machine_height 2021-04-08 13:27:11 +02:00
MarkMan0
ee50ad21cd Probe calibration on the side of the buildplate 2021-04-08 13:27:05 +02:00
Kostas Karmas
dca0612ee7 Add descriptive comment for deleting the user auth data
CURA-8093
2021-04-08 12:49:33 +02:00
Kostas Karmas
72080a3cca Delete the auth data on upgrade from 4.8 if the scope doesn't match
If the user account scope is outdated, delete it when upgrading from 4.8 to 4.9. This means that
the user will have to log in again, to make sure they get the correct account scope.

CURA-8093
2021-04-08 12:46:52 +02:00
Jaime van Kessel
8e106b2f5b
Merge branch '4.9' of github.com:Ultimaker/Cura 2021-04-08 12:05:26 +02:00
Ghostkeeper
fcc567c8aa
Merge branch 'master' of https://github.com/kreuzhofer/Cura into kreuzhofer-master 2021-04-08 11:53:06 +02:00
Remco Burema
37cd12663b
Merge pull request #9523 from Ultimaker/fix_tests_python_upgrade
Fix tests python upgrade
2021-04-08 11:49:38 +02:00
Jaime van Kessel
82ffdccac2
Added type ignore since it does accept it 2021-04-07 17:15:22 +02:00
Jaime van Kessel
8cc091fd0a
Merge branch 'typing_keyattribute' of github.com:Ultimaker/Cura into fix_tests_python_upgrade 2021-04-07 15:43:03 +02:00
Jaime van Kessel
d49a90029f
Fix final set of typing issues 2021-04-07 14:03:35 +02:00
Jaime van Kessel
3432720f7c
Fix mypy issues caused by numpy upgrade 2021-04-07 11:47:52 +02:00
Jaime van Kessel
17d8751ec1
Fix incorrect typing in keyring attribute
It didn't need Type["basemodel"] but a direct base model
2021-04-07 11:39:28 +02:00
Jaime van Kessel
00a360aca6
Don't overload types in AMFReader
The typing really doesn't like it if we first let a variable be a list and then
an numpy array
2021-04-07 11:32:09 +02:00
Jaime van Kessel
0d38035944
Add constructor for keyring attribute
_store_secure was used, so it should be created on construction
2021-04-07 11:30:08 +02:00
jelle Spijker
4b1087a138
Put BaseModel in quotes
Contributes to CURA-7180
2021-04-07 11:25:39 +02:00
jelle Spijker
33a812d696
Added typing fof KeyringAttributes
This should hopefully shut mypy up.

Contributes to CURA-7180
2021-04-07 11:06:06 +02:00
Remco Burema
1e5d7623cb
Make it more clear the updates where for MacOS BigSur. 2021-04-07 09:40:06 +02:00
Remco Burema
d2007901f7
Also convert visibility-preset dropdown.
This will make this Qt5.15 control work on mac again. (Since the older controls are deprecated.)

CURA-8127
2021-04-07 08:31:49 +02:00
Kostas Karmas
39e9dcd4f5 Fix VersionUpgrade48to49 crashing if there is no "categories_expanded"
If the 4.8 is started from a clean install and no category gets expanded in the settings panel,
then the "categories_expanded" key will not exist in the [cura] preferences in cura.cfg.
As a result, when the 4.9 gets started in this specific case, the version upgrade 48 to 49 will
produce a crash and will be considered as "failed", which will then lead to cura requesting from
the user to go from the entire onboarding flow instead of landing on the "What's new" pages (even
though everything else has been properly updated).

This commit fixes that by checking whether the "categories_expanded" key exists in the cura.cfg.
2021-04-06 16:37:06 +02:00
Remco Burema
b3ea26c955
Half-revert last-last-last changelog changes.
CURA-8127
4.9-beta
2021-04-06 15:11:43 +02:00
Remco Burema
b505835248
Merge pull request #9509 from Ultimaker/Post_processing_script_add_script_fix
CURA-8127: Post processing script add script fix
2021-04-06 15:07:29 +02:00
Kostas Karmas
b2b258d357 Fix add script button list not working in MacOS
Fixed by using the qt quick controls 2

CURA-8127
2021-04-06 14:53:20 +02:00
jelle Spijker
1132e4c6f9
Added known Mac OSX issues to the Changelog of 4.9 beta
This commit should be reverted on the branch with the fixes made by
@rburema.
2021-04-06 14:09:13 +02:00
Ghostkeeper
95297f0410
Merge branch '4.9' 2021-04-06 13:30:03 +02:00
Ghostkeeper
08be77adad
Increment SDK version to 7.5.0
The Cura 4.9 release will have expanded functionality. If you have a plug-in that uses this functionality, marking it as using SDK 7.5.0 will notify older Cura releases that they can't use that plug-in.
2021-04-06 13:28:08 +02:00
Remco Burema
81c37ac4f4
Changelog changes just in time. 2021-04-06 13:10:52 +02:00
Jelle Spijker
98730eace7
Merge pull request #9508 from Ultimaker/CURA-8142_custom_menu_osx_fix
CURA-8142 Custom-menu OSX workaround
2021-04-06 12:39:28 +02:00
Remco Burema
40fb430277
Merge pull request #9501 from Ultimaker/CURA-7180_keyring_none_value
Handle storing None values in keyring
2021-04-06 12:31:45 +02:00
Remco Burema
7520e3b148
Workaround old-style menu's not closeable on Mac OSX.
Menu's didn't always close, and on newer Macs users wouldnt be able to even close the menu, making this a blocker. Will fix this properly before the final, but at least the beta should be usable now.

CURA-8142
2021-04-06 12:21:59 +02:00
Konstantinos Karmas
b9f76ef9e4
Merge pull request #9488 from Ultimaker/CURA-8110_upgrader
Cura 8110 upgrader
2021-04-06 12:03:17 +02:00
Jelle Spijker
e9a8ff05cd
Merge pull request #9507 from Ultimaker/CURA-8127_pref_screen_osx_fix
CURA-8127 preference-screen OSX fix
2021-04-06 11:59:38 +02:00
Kostas Karmas
081b0b23a4 Fix setting the time_remaining_method in the versionUpgrader
The DisplayProgressOnLCD script was changed and the "time_remaining" was split into two settings:
the "time_remaining" and the "time_remaining_method". If the "time_remaining" was enabled, the
"time_remaining_method" should be set to "m117".

The VersionUpgrader48to49 was changing the "time_remaining" to "m117" instead of changing the
"time_remaining_method", which was leading to the "time_remaining" having a wrong value and not
being interpreted as a boolean.

This commit fixes that by setting the "time_remaining_method" into "m117" when the "time_remaining"
was True.

CURA-8110
2021-04-06 11:38:28 +02:00
Remco Burema
a04fee8e95
Deprecated QtQuickControls 1 has some problems on Mac OSX.
In this particular case it was easiest to do the in a sense proper thing and just upgrade.

CURA-8127
2021-04-06 10:44:31 +02:00
Miroslav Sustek
068ee32d32 fix typo in Czech translation of "Experimental" 2021-04-04 20:55:28 +02:00