* 'master' of github.com:ultimaker/Cura: (110 commits)
Rearrange MachineActions on Machines page
Skip containers that can not be serialized
Make PerObjectSettingVisiblityHandler inherit SettingVisiblityHandler and some other cleanup
Use the right property for the property provider
Clean up indentation
Remove unused code
Fix expanded settings for Per Object settings tool
Use the expanded categories from Cura to expand the proper categories on startup
Starting UMOCheckup before connection was established now works correctly
Fixed layout
Added missing decorator CURA-1385
Restored accidental delete
Removed extraneous space
Refactoring; Renaming firstRunWizard to machineActionsWizard
Added BedLevel as supported action to UMO
Refactoring (Renaming variables so they are more clear & update documentation)
Remove some trailing spaces CURA-1615
GCodeProfileReader: Removing useless containername
Reenable Per Object Settings tool in simple mode if the current printer has multiextrusion
Fix minor codereview issues
...
This requires some trickery of initialising the extruder manager before the machine manager is initialised, so that it properly listens to global container stack changes.
Contributes to issues CURA-340 and CURA-1278.
There were two singletons of this manager: One created by QML and managed by QML, and one created by us and managed by our own singleton pattern. That won't work! So we now manage just our own singleton type, and make it a context item for QML so it can use the manager too.
Contributes to issues CURA-340 and CURA-1278.
For example, if the community distributes Cura in a different way, they
can set CURA_BUILDTYPE via 'cmake -DCURA_BUILDTYPE=' and whenever Cura
is launched " (PPA)" will be appended. Of course, this could be done by
appending " (PPA)" to CURA_VERSION, but in case of my Ubuntu/Debian
packaging it will only need one modification in debian/changelog to
change the version. During build (debian/rules) this version will be
read from debian/changelog.
Changing the version number across different files, is a waste of time.
Finally, we can use that field in the future to indicate debug or other
other special builds.
This is a new data type. It behaves and saves just like an integer, but it's actually just an index of the extruder to use.
Contributes to issues CURA-1278 and CURA-351.
This way we don't need to load it in CuraApplication but we can just load it whenever it is first needed. ExtruderManager should be robust against initialising it at any point in Cura's runtime.
Contributes to issues CURA-1278 and CURA-351.
This will consequently also load all extruder stacks of the current machine whenever the current machine changes.
Contributes to issues CURA-1278 and CURA-351.