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
2021-12-28Search/replace Qt5->Qt6.Remco Burema
part of upgrading Qt to v6.2: CURA-8591
2021-08-09Add missing campaign tagsKonstantinos Karmas
CURA-8441
2021-06-14Fix code style Ghostkeeper
Contributes to issue CURA-7859.
2021-06-10Set object bottom to be on buildplate with center model actionJaime van Kessel
CURA-7859
2020-09-07Update bugreport linkJaime van Kessel
2020-05-29Remove trailing whitespace from Python filesNino van Hooff
2020-04-21Converted comments in dir Cura/cura to rst styleJelle Spijker
Converted doxygen style comments to reStructuredText style in the files found in Cura/cura directory using the script dox_2_rst.py (provided in the Uranium repo). Comments were manually checked and changed if needed.
2020-01-10Fix bunch of issues found by pylintJaime van Kessel
2019-09-10Move 'lay flat by face' operation to Uranium.Remco Burema
2019-09-03Merge branch 'feature_bottom_face' of https://github.com/Ultimaker/Cura into ↵Remco Burema
feature_bottom_face
2019-09-03Less cryptic max face-id.Remco Burema
part of CURA-6745
2019-09-03Add None check in bottomFaceSelection()Lipu Fei
CURA-6745
2019-09-03Rename to getEndFaceSelectionId()Lipu Fei
CURA-6745
2019-09-03Make magic value into funtion (max face-id).Remco Burema
part of CURA-6745
2019-09-02Added 'align selected face with buildplate' feature.Remco Burema
Alt-click to select a face. See the (identically named) 'feature_bottom_face' branch in Uranium for more indepth information.
2019-07-19Fix crash when attempting to set build plate for selectionJaime van Kessel
2018-12-21Correct link to manualGhostkeeper
They changed this on the website, breaking all previous releases of Cura in the process.
2018-12-21Use HTTPS for Help linksGhostkeeper
The Ultimaker website doesn't even accept anything else any more.
2018-11-27Fix typingJaime van Kessel
2018-08-15Adjust default position of camera based on diagonal sizeGhostkeeper
2018-07-03Fix code-styleDiego Prado Gesto
2018-06-04Fix circular imports with CuraApplicationGhostkeeper
Contributes to issue CURA-5330.
2018-06-01Add missing type for locally created listGhostkeeper
MyPy isn't clever enough to figure this out. ...but I am. Contributes to issue CURA-5330.
2018-06-01Fix typesGhostkeeper
Added the missing ones and fixed the broken ones. Contributes to issue CURA-5330.
2018-05-25Merge branch 'master' into WIP_improve_initializationDiego Prado Gesto
Conflicts: cura/AutoSave.py cura/BuildVolume.py cura/CuraApplication.py Contributes to CURA-5164
2018-05-23CURA-5370 The minimum offset between objects in the Arranger is now ↵Jack Ha
determined by the brim/skirt/... setting
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.
2018-03-14CURA-4400 fix setting extruder number on a group printed with mixed extrudersJack Ha
2018-01-23Fixes for resetting print time information when removing all or last model, ↵ChrisTerBeke
reduce signals being used for print time resetting - CURA-4852
2018-01-11CURA-4525 fix placement on load to only avoid objects on current build plateJack Ha
2018-01-04CURA-4525 solved merge conflictJack Ha
2018-01-03Merge branch 'CURA-4525-multi-build-plate-merge' of ↵Jack Ha
github.com:Ultimaker/Cura into CURA-4525-multi-build-plate-merge
2018-01-03CURA-4525 deselect after move to build plate and build plate changeJack Ha
2018-01-03Fix for CURA-4111Ian
When centering a scene node, TranslateOperation is used in lieu of SetTransformOperation, to avoid combinations of mirror operations behaving like rotation operations. Instead, any given node is simply translated to 0,0,0.
2018-01-03Also move other operations into operations subfolderChrisTerBeke
2017-11-08CURA-4525 updated scene node menu and added multi buildplate arrangeJack Ha
2017-11-07CURA-4525 party working objects list and build platesJack Ha
2017-11-06CURA-4104 added first sucky build plate selection optionsJack Ha
2017-09-28Changing AGPLv3 to LGPLv3Mark
2017-09-16Add menu item to reset the camerafieldOfView
2017-04-24Workaround a tiny display issue with checkable MenuItemsArjen Hiemstra
If there are no changes to make, we still need to reset the selected extruders. This is a workaround for checked menu items being deselected while they actually should still be selected. Contributes to CURA-3609
2017-04-24Change the selected extruder for all child nodes of a groupArjen Hiemstra
Instead of setting the extruder for the group node, go through all children and set their extruders instead. Fixes extruder selection on groups. Contributes to CURA-3609
2017-04-24Rename setSelectionExtruder to setExtruderForSelectionArjen Hiemstra
This matches more closely with the naming of the other selection actions.
2017-04-24Remove superfluous return statementArjen Hiemstra
2017-04-24Use cura. for imports instead of relative imports`Arjen Hiemstra
Matches the style of the rest of the file.
2017-04-20Add a setSelectionExtruder method to CuraActionsArjen Hiemstra
Can be used to set the extruder used for the selection Contributes to CURA-3609
2017-04-20Add a deleteSelection method to CuraActionsArjen Hiemstra
It does the same as CuraApplication::deleteSelection but this is a better place for it. Contributes to CURA-3609
2017-04-20Add a multiplySelection method to CuraActionsArjen Hiemstra
Contributes to CURA-3609
2017-04-20Add a centerSelection method to CuraActionsArjen Hiemstra
Can be used to center all selected objects. Contributes to CURA-3609
2017-01-10Applied the profiler's pyqtSlot decorator to all of the code.Simon Edwards