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
2017-11-21Use workspaceLoaded signal instead of projectFileLoadedLipu Fei
CURA-4581
2017-11-21CURA-4526 Delete LayerView plugin because it will be replaced with theDiego Prado Gesto
SimulationView. This commit also adapts the code in order to accept the messages coming from the engine, with information about feedrates and line thicknesses. Add also some changes in the GCodeReader that reads feedrates and line thickness from the gcode file.
2017-11-20Merge pull request #2685 from Ultimaker/container_stack_improvementsChrisTerBeke
Container stack improvements
2017-11-15CuraApplication: Rename file --> file_nameThomas Karl Pietrowski
'file' is a built-in function!
2017-11-01Merge branch 'master' into headless_curaMark
2017-10-30Merge pull request #2697 from Ultimaker/feature_add_user_agreementLipu Fei
Feature add user agreement
2017-10-30Simplified version for validation need to show user agreementAleksei S
CURA-4501
2017-10-30Add upgrade script for 3.0 to 3.1Lipu Fei
CURA-4451 - Add upgrade script for 3.0. to 3.1 - Upgrade old stack files so they will use "empty_quality" as the "Not Supported" quality profile. - Increase SettingVersion to 4
2017-10-30Show Add Machine dialog after User Agreement dialog is closedLipu Fei
CURA-4501
2017-10-28Add useragreement screen on first run of CuraMark
CURA-4501
2017-10-26Remove some changes, debugging - CURA-4451Chris ter Beke
WIP - CURA-4451 correctly show not supported when any of the extruders has a not supported profile - CURA-4451 Clean up and add comments - CURA-4451
2017-10-23Wait with updating active stack variant and material until dialog was closed ↵ChrisTerBeke
- CURA-4447
2017-10-19Small cleanups for discard or keep behavior - CURA-4447ChrisTerBeke
2017-10-19Take into account the keep/discard interaction when emitting signalsLipu Fei
CURA-4248 When user switches to a different profile, the keep/discard dialog can show up. Don't emit signals immediately if this interaction takes place because it will trigger an unnecessary slice.
2017-10-17Added update to for Instance container to re calculate values and validateA.Sasin
CURA-4447
2017-10-16Add extra --headless flag to commandlineJaime van Kessel
2017-10-16Move simple-mode settings customization check into a separate fileLipu Fei
CURA-4333 Simple-mode is a special mode so it makes more sense to put those code in a separate file instead of in the more generic MachineManager.
2017-10-13User pyqtProperty instead of puqtSlotA.Sasin
CURA-4333
2017-10-12Added a pyQtProperty to validate user settings (Might be wrong approach)A.Sasin
CURA-4333
2017-10-12Fix custom profile handling for quality sliderLipu Fei
CURA-4333
2017-10-12Merge branch 'master' of github.com:Ultimaker/curaA.Sasin
2017-10-12Merge branch 'master' into CURA-4333_Notification_icon_for_recommended_modeLipu Fei
2017-10-12Added notification icon in recomended mode. The notification icon is onlyA.Sasin
active if one of custom settings is changed CURA-4333
2017-10-12Force use and update the job name with the loaded project fileLipu Fei
CURA-4348 - If no project is loaded beforehand and then a model file is loaded, the job name should be determined with the current machine name and the first loaded model name. - If a project is loaded, the job name should be the same as the project name, and it should not change until another project is loaded.
2017-10-10Add message when model could not be loaded because of small size - CURA-4431ChrisTerBeke
2017-10-10Make sure we do not have a crash when model is very small - CURA-4431ChrisTerBeke
2017-10-10Fixed: Very small objects less then 0.1mm creates critical issuesA.Sasin
CURA-4431
2017-10-04CURA-4390 make plugin browser a required pluginChrisTerBeke
2017-10-03CURA-4390 add new menu item for pluginsChrisTerBeke
2017-09-28Changing AGPLv3 to LGPLv3Mark
2017-09-25Make Solid View a required plugin.fieldOfView
There is no plugin with the id "MeshView"
2017-09-13Merge branch 'master' of github.com:Ultimaker/curaalekseisasin
2017-09-13Added Title for messagesalekseisasin
CURA-4203
2017-09-13Merged branch - CURA-4270Diego Prado Gesto
2017-09-12add ConvexHullDecorator when groupingEloi Pardo
2017-09-10Revert "CuraApplication: Minor pep8 fix"Ruben D
This reverts commit ee1ba30d0eec849f78a710ee5f270b2c756402fc.
2017-09-06Remove "Sync" buttonLipu Fei
CURA-4211
2017-09-06Update extruder button stylesLipu Fei
CURA-4211
2017-09-04Add upgrade script for 2.7 to 3.0Lipu Fei
CURA-4270 Changes for the Skin Pre-shrink settings requires upgrade.
2017-09-02CuraApplication: Minor pep8 fixVivek Anand
2017-08-30Change default themeGhostkeeper
This new field is now read by Uranium that indicates the default theme to load first before there are any changed preferences. Contributes to issue CURA-4148.
2017-08-14Pass tray_icon_name to QtApplicationLipu Fei
CURA-4032
2017-08-02Added method to close the application (after clicking quit button) to ↵alekseisasin
prevent loss of custom material CURA-3298
2017-07-31Disable centre on select by defaultGhostkeeper
Apparently that was chosen or the user experience because the workflow for working with a lot of small objects becomes easier.
2017-07-26Make sure MachineManager initializes after ContainerRegistry doesLipu Fei
CURA-4084 When MachineManager gets created, it will find and set the current active machine. This requires the ContainerRegistry to be initialized first.
2017-07-18Clarify context of print info bounding box size translationGhostkeeper
Lots of translators did this wrong. Contributes to issue CURA-3998.
2017-07-10Cache preferences instance during start-upGhostkeeper
Perhaps a bit faster and less code duplication. Contributes to issue CURA-4024.
2017-07-10Make sure the preferences file doesn't always get upgradedGhostkeeper
When the setting is equal to the default the setting_version won't get written to the preferences file. In that case the version upgrade system assumes that the setting_version was 0 or 1 and upgrades it. This makes sure that the setting is never equal to the default so that it always gets written. Found while working on CURA-4024.
2017-07-06Add setting_version for PreferencesLipu Fei
CURA-3975
2017-07-06Fix upgrade from 2.5 to 2.6 to 2.7Lipu Fei
CURA-3975 - Set Preferences setting_version in CuraApplication so Preferences can get upgraded correctly - Fix upgrade script for 2.5 to 2.6 - Fix upgrade script for 2.6 to 2.7 which relies on the upgrade of 2.5 to 2.6