- Move AutoSave out of the plugins. It's a built-in module now.
- Add enable/disable saving data on CuraApplication.
- Avoid saving data in backup restore
* master:
Adds release notes link in version upgrade messagebox CURA-5348
CURA-5385 Project summary should use scroll view
CURA-5296 Small QML bug fix
Enabled drag-n-drop for curapackages
CURA-5296 Added "canDowngrade" functionality
Fix CURA_PACKAGES_VERSION
CURA-5254 Keep track of the latest manual entry key, so it is then selected in the list.
CURA-5296 Improve button styling
Add CURA_PACKAGES_VERSION to CMakeLists.txt
Add CuraPackageVersion
Remove extra "if" statement and unused code
Fix support blocker on older (legacy) opengl
Correct the test to hide bed temperature when no heated bed is present.
For this we need to rename bundled_packages to disambiguate between that and the other packages.json file for user-installed packages.
Contributes to issue CURA-5364.
several instances need to be created.
- In the ThreeMFWorkspaceReader we need to create some temporal
instances of Preferences that makes it not singleton anymore.
- The current preferences are kept in the Application class and so all
the calls to the preferences are changed to get the preferences from
Application.
- The method getInstance in Preferences is kept as deprecated since some
external plugins.
- Create SingleInstance class to handling single instance stuff.
- Instead of calling getInstance() everywhere, initialize each object
explicitly in order when application starts and getInstance()s do not
create instances any more and they merely return the created
instances.
- Only set initial values in construtor functions __init__(). Move the
initialization of context-aware (i.e. things that depend on other
things) to separate functions.
- Split application creation and initialziation into several steps and
them should be called explicitly in the correct order.