CURA-5296
The removal of already installed package is already handled by the
package manager in the package upgrade. Removing the package before the
download starts will make the package to be removed before the new
content is available and its license gets approved by the user.
Previously the resume only worked because in the message receiving loop it would no longer ignore the next 'ok'. It doesn't actually send a message that would trigger an 'ok'. This only worked because we are polling every 2 seconds for the nozzle temperature which also happens to trigger an 'ok' response, which we interpret as a go-ahead for being able to send the next g-code line.
Now it's no longer dependent on the fact that we happen to also poll the temperatures, so the code is more stable. And it also resumes immediately instead of waiting for up to 2 seconds.
CURA-5280
Remove the machine prefix in the base name, otherwise when the machine
gets changed, the job name will become
"<new-machine>_<old_machine>_basename".
Manual override of job name should also set the base name so that when the printer prefix is updated, it the prefix can be added to the manually added name, not the old base name.
This was a bit tricky because if you enter a job name, is that the job name or the base name? My answer is that it's both, and if you update your printer for the job, it will append a new prefix.
If this is not the desired behavior, and in fact once a custom name is set nothing can change it, then line 78 should be removed.
- 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.