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-04-06Increment SDK version to 7.5.0Ghostkeeper
The Cura 4.9 release will have expanded functionality. If you have a plug-in that uses this functionality, marking it as using SDK 7.5.0 will notify older Cura releases that they can't use that plug-in.
2020-10-22Up the SDK version to 7.4.0Kostas Karmas
In preparation for release of the 4.8. CURA-7795
2020-08-07Update the SDK version to 7.3.0 for 4.7Kostas Karmas
CURA-7641
2020-04-21Update missed sdk versions from 7.1 to 7.2.0 for Cura 4.6Nino van Hooff
CURA-7383
2020-02-10Bump SDK version number of Cura 4.5 to 7.1Ghostkeeper
We've added new things to our API. This allows plug-in developers to use them. Contributes to issue CURA-7205.
2019-10-21Change SDK version to 7.0.0Nino van Hooff
CURA-6858
2019-09-10Update the Support Eraser icon sizeNino van Hooff
2019-09-10Update the Support Eraser (support blocker) iconNino van Hooff
2019-05-24Calculate bounding box for helper meshesLipu Fei
2018-12-17Update plugin versions to match package versionsLipu Fei
CURA-6019
2018-12-14Increment API version to 6Ghostkeeper
All plug-ins now have to re-check whether they are still compatible with the current version of Cura. Contributes to issue CURA-6019.
2018-08-27Increase plugin API version to 5Aleksei S
CURA-5627
2018-08-10Merge pull request #4210 from fieldOfView/fix_support_eraser_renderingDiego Prado Gesto
Fix rendering support eraser cubes
2018-08-10Remap shortcutGhostkeeper
This is a bit more logical than 'G', I'd say. E is now available since other shortcuts were remapped as well. Contributes to issue CURA-5634 and fixes #3969.
2018-08-08Fix rendering support eraser cubesfieldOfView
MeshBuilder.addCube creates cubes that don't have per-vertex normals. Geometry like that does not render properly in most shaders used in Cura. This becomes obvious when a user changes the "Mesh Type" using Per Model Settings.
2018-07-03Fix some more code-styleDiego Prado Gesto
2018-06-15Use CuraApplication instead of ApplicationGhostkeeper
Because UM.Application has no function getMultiBuildPlateModel. Contributes to issue CURA-5330.
2018-04-23Fix translation of Support Blocker plug-in nameGhostkeeper
It was in the wrong catalogue. This means that our template picks it up but our actual code couldn't find the translation in that catalogue. Contributes to issue CURA-5166.
2018-04-19Prevent scaling support eraser with scaled parentfieldOfView
2018-04-19Only respond to left mouse buttonfieldOfView
2018-03-19Fix position of added anti support meshes in groupfieldOfView
2018-03-19Don't add a SettingOverrideDecorator twicefieldOfView
CuraSceneNodes get a SettingOverrideDecorator automatically when constructed
2018-03-16Fix codestylefieldOfView
2018-03-16Switch to translate tool when ctrl-clickingfieldOfView
2018-03-16Maintain a selection when removing a mesh, so the tool stays activefieldOfView
2018-03-16Parent added meshes to the parent node instead of creating a groupfieldOfView
This requires a small change in PlatformPhysics, or otherwise the added mesh would still drop down.
2018-03-16Fix crash when clicking a non-slicable nodefieldOfView
2018-03-16Ignore the first press after the selection has been clearedfieldOfView
if the selection is cleared with this tool active, there is no way to switch to another tool than to re-select an object (by clicking it) because the tool buttons in the toolbar will have been disabled. The mouse-event happens after the selection is changed, so we need to keep track of what the selection was previously by monitoring the selection state.
2018-03-15Remove group when "parent" is the only node in the groupfieldOfView
2018-03-15Select the picked node so the group does not get drawnfieldOfView
2018-03-15Add support eraser meshes to group so it does not dropfieldOfView
2018-03-15Click support eraser mesh to remove it from the scenefieldOfView
2018-03-14Disable Support Eraser if anti_overhang_mesh is disabledfieldOfView
2018-03-13Rename DepthPass to PickingPassfieldOfView
The map created by the shader is not strictly a depth map; not only is the "depth" encoded in the rgb channels, but it is also a distance to the camera instead of a "scene depth".
2018-03-13Move ray picking to DepthPassfieldOfView
2018-03-13Fix rendering depth passfieldOfView
2018-03-13Add depth pass for picking a locationfieldOfView
2018-02-27Merge branch 'master' into refactoring_machine_managerJack Ha
2018-02-23CURA-4968 Add the support eraser cube to the bottom of the buildplateDiego Prado Gesto
when the automatic drop models preference is OFF
2018-02-18WIP: Refactor BuildPlateModel and split MultiBuildPlateModelLipu Fei
2018-02-01Removed debug messages & unused codeIan Paschal
2018-01-31Added 2018 copyright and license informationIan Paschal
2018-01-31Added Support Eraser PluginIan Paschal
This is the first draft of the Support Eraser tool. The plugin creates a cube mesh which has the `anti_overhang_mesh` decorator causing it to block the creation of support material for overhangs within its volume. This distinction is necessary to avoid confusing this behavior from actually erasing a _portion_ of a support structure. Some (non-necessary) improvements could be made such as: - Better graphical style - Discussion of whether the cube should be able to pass through the build plate or not - Possible improvements to the tool's icon - Placing the cube at a cursor click location