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-09-16Fix refresh of ChoosePrinterDialog not workingCURA-9278_UI_UX_FixesJaime van Kessel
CURA-9278
2022-09-13Show printer even if the configuration does not matchc.lamboo
CURA-9278
2022-09-13Defensive coding: What if no extruder position.Remco Burema
part of CURA-9278
2022-09-12Fix bug in displaying extrudersc.lamboo
CURA-9278
2022-09-12Simplify if notation Casper Lamboo
CURA-9278
2022-09-12Simplify list notation Casper Lamboo
CURA-9278
2022-09-09Connect buttons for selected printers: Print and refresh.Remco Burema
part of CURA-9278
2022-09-09Don't show machines with only incompatible configurations.Remco Burema
part of CURA-9278
2022-09-09Complete interface for selecting cloud printer.Remco Burema
CURA-9278
2022-09-08Get extruder configs to frontend.Remco Burema
When choosing the printer, all possible (single) extruder configs need to be shown for that printer. CURA-9278
2022-09-07Merge remote-tracking branch 'origin/main' into CURA-9278_choose_printer_dialogRemco Burema
2022-09-06Merge pull request #12947 from digitalfrost/040822Jaime van Kessel
MachineErrorChecker.py: Use one line conditional assignment
2022-09-06Merge branch '030822' of github.com:digitalfrost/CuraJaime van Kessel
2022-09-06Move `hasNetworkedConnection` to `GlobalStack`c.lamboo
From code review CURA-9277 Co-authored-by: Joey <j.delarago@ultimaker.com>
2022-09-06Add typing to function argument Casper Lamboo
CURA-9277 Co-authored-by: Joey de l'Arago <joeydelarago@gmail.com>
2022-09-05Add some extrudare information fetching.Joey de l'Arago
CURA-9278
2022-09-05Add printer cardsJoey de l'Arago
CURA-9278
2022-09-05Revert "Prevent abstract machines from being deleted in the config menu"CURA-9277_c.lamboo
This reverts commit 27fc11b8404ed84a9b95b2fdddab239d2cd3c93b.
2022-09-05Make sure online printers are always shown in the correct tabc.lamboo
CURA-9277
2022-09-02W.I.P.: Press print on abstract cloud printer. User should see dialog.Remco Burema
Start of implementation. When printing on an abstract printer, a user should see a dialog with the matching concrete cloud printers to pick from to actually print. Names are not final. Very much a work in progress. Very not finished also. start of implementation for CURA-9278
2022-09-02Always show correct number of connected machinesc.lamboo
Calculate number of connected machines _after_ the abstract machine its connected is removed from the list CURA-9277
2022-09-02Prevent abstract machines from being deleted in the config menuc.lamboo
CURA-9277
2022-09-02Don't show abstract machines in configuration pagec.lamboo
So they cannot be removed through the preferences CURA-9289
2022-08-31Fix abstract machines being displayed twiceJaime van Kessel
2022-08-31Merge pull request #13165 from Ultimaker/CURA-8463_cloud_configurationRemco Burema
Show all configurations in "abstract" printer from cloud
2022-08-31Default printers should be collapsedjoeydelarago
CURA-9514
2022-08-31Update cura/Machines/Models/MachineListModel.pyCasper Lamboo
2022-08-31Change listType -> componentType. Makes it a bit more clear that this ↵joeydelarago
variable decides which component should be used for the model. CURA-9514
2022-08-31Merge branch 'main' of github.com:Ultimaker/Cura into ↵Jaime van Kessel
CURA-8463_cloud_configuration
2022-08-31Update function name to match code stylejoeydelarago
CURA-9514
2022-08-31Update isAbstractMachine to match Role name format.joeydelarago
CURA-9514
2022-08-31Fix indentationjoeydelarago
Remove debug statement CURA-9514
2022-08-31QML was attempting to fetch variables that were emtpy. Using self.clear() ↵joeydelarago
properly removed unused items when the list is resized to be smaller. Also add some dummy variables inside cloud printer expand and contract buttons. CURA-9514
2022-08-31Typoc.lamboo
CURA-9514
2022-08-31Use list model to display show hide buttonsc.lamboo
CURA-9514
2022-08-31Add button to hide/show connected printersCURA-9514c.lamboo
CURA-9514
2022-08-29Add sanity check for printers that are online. They must have an online ↵joeydelarago
connection type. This can pop up when adding a printer from a 3mf since we do not store the connection_type but we do store is_online=True. CURA-9277
2022-08-26Remove code duplication in createAbstractMachineJaime van Kessel
This also caused a crash when an abstract machine with multiple extruders was selected CURA-8463
2022-08-26Add documentationCURA-9277_CURA-9514_remove_AbstractMachinec.lamboo
CURA-9514, CURA-9277
2022-08-26Move `getMachinesWithDefinition` to `MachinesManager`c.lamboo
CURA-9514, CURA-9277
2022-08-26Remove AbstractMachinec.lamboo
Having a separate class for the AbstractMachine complicated things; it's behaviour was extremely similar to the GlobalStack so adding one more stack container type in addition to the many similar setting container types we already have adds complexity to the system. Having these different classes for machines and abstract machines also add complexity to the update script as the abstract machines were stored in a separate folder from the machine types. Because of these reasons we decided to replace the AbstractMachine by a GlobalStack where the is_abstract_machine property metadata property is set to True. CURA-9514, CURA-9277 Co-authored-by: joeydelarago <joeydelarago@gmail.com>
2022-08-24Merge pull request #13102 from Ultimaker/CURA-9514_collapsable_printers_listCasper Lamboo
[CURA-9514] Collapsable printers list
2022-08-24Simplify logic by having abstract printers always be online.joeydelarago
CURA-9221
2022-08-24Remove redundant commentjoeydelarago
CURA-9514
2022-08-24Subtract online printers from list of all printers instead of searching for ↵joeydelarago
offline printers. This prevents printers without "is_online" in the metadata from being left out, and is generally more defensive for uncertain states. CURA-9514
2022-08-23Use f-string and info method with Loggerdigitalfrost
Use f-string and info method for Logger instead of "Old Style" string formating.
2022-08-23Code stylejoeydelarago
CURA-9514
2022-08-23Group printers by section (Connected Printers/Other Printers)joeydelarago
Cleanup redundant code. CURA-9514
2022-08-23Rename AbstractStacksModel.py -> MachineListModel.py since this model ↵joeydelarago
includes both abstract machine stacks and regular machines Add machineCount for displaying the number of machines of a type. MachineSelectorButton is in use in other places, swapped it out for a new Component MachineListButton. CURA-9514
2022-08-23Searching container registry returns ContainerStacks.joeydelarago
Made typing more generic to work with an ContainerStack to compensate. Made AbstractMachine getMachines a classmethod so it can be called with ContainerStacks. CURA-9514