Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2022-04-22Use right enums for single instanceJaime van Kessel
CURA-9183
2021-12-28Search/replace Qt5->Qt6.Remco Burema
part of upgrading Qt to v6.2: CURA-8591
2021-09-15Merge branch 'feature_single_instance_clear_before_load' of ↵Jaime van Kessel
https://github.com/fieldOfView/Cura
2021-09-07Fix various typosluz paz
Found via `codespell -q 3 -S *.po,*.pot -L childs,initialy,lod,ned,te,slicable,sur,tutoriels,wont`
2021-03-24Add preference to enable loading multiple objects into a single instancefieldOfView
2019-10-01Consider user preference when opening project files from cli.Nino van Hooff
The logic using just a "skip_project_file_check" boolean was too obscure imho, so used a string value with more explicit values to improve readability CURA-6824
2019-09-27Revert "Do not show the "load project or models" dialog when opening a file ↵Nino van Hooff
from a command line argument" This reverts commit abfd7e92, because the desired behavior has still tbd
2019-09-27Do not show the "load project or models" dialog when opening a file fromNino van Hooff
a command line argument
2018-07-03Fix code-stylingDiego Prado Gesto
2018-06-15Fix minor type mistakesGhostkeeper
Contributes to issue CURA-5330.
2018-06-13CURA-5330 Fix typing checkDiego Prado Gesto
2018-06-13Merge branch 'mypy_fixes' of ssh://github.com/Ultimaker/Cura into mypy_fixesGhostkeeper
2018-06-13CURA-5330 Fix typing in SingleInstanceDiego Prado Gesto
2018-06-08Add function typingGhostkeeper
This allows MyPy to detect mistakes in the typing of these functions. Contributes to issue CURA-5330.
2018-05-04WIP: Make application initialization and start up more clearLipu Fei
- 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.