├── .dockerignore ├── .github └── ISSUE_TEMPLATE.md ├── .gitignore ├── BLACKBELT Cura.ico ├── CMakeLists.txt ├── Dockerfile ├── Jenkinsfile ├── LICENSE ├── README.md ├── cmake └── CuraTests.cmake ├── cura.appdata.xml ├── cura.desktop.in ├── cura.sharedmimeinfo ├── cura ├── API │ ├── Account.py │ ├── Backups.py │ ├── Interface │ │ ├── Settings.py │ │ └── __init__.py │ └── __init__.py ├── Arranging │ ├── Arrange.py │ ├── ArrangeObjectsAllBuildPlatesJob.py │ ├── ArrangeObjectsJob.py │ ├── ShapeArray.py │ └── __init__.py ├── AutoSave.py ├── Backups │ ├── Backup.py │ ├── BackupsManager.py │ └── __init__.py ├── BuildVolume.py ├── CameraAnimation.py ├── CrashHandler.py ├── CuraActions.py ├── CuraApplication.py ├── CuraPackageManager.py ├── CuraSplashScreen.py ├── CuraVersion.py ├── CuraVersion.py.in ├── Layer.py ├── LayerData.py ├── LayerDataBuilder.py ├── LayerDataDecorator.py ├── LayerPolygon.py ├── MachineAction.py ├── MachineActionManager.py ├── Machines │ ├── ContainerNode.py │ ├── MachineErrorChecker.py │ ├── MaterialGroup.py │ ├── MaterialManager.py │ ├── MaterialNode.py │ ├── Models │ │ ├── BaseMaterialsModel.py │ │ ├── BuildPlateModel.py │ │ ├── CustomQualityProfilesDropDownMenuModel.py │ │ ├── FavoriteMaterialsModel.py │ │ ├── GenericMaterialsModel.py │ │ ├── MachineManagementModel.py │ │ ├── MaterialBrandsModel.py │ │ ├── MultiBuildPlateModel.py │ │ ├── NozzleModel.py │ │ ├── QualityManagementModel.py │ │ ├── QualityProfilesDropDownMenuModel.py │ │ ├── QualitySettingsModel.py │ │ ├── SettingVisibilityPresetsModel.py │ │ └── __init__.py │ ├── QualityChangesGroup.py │ ├── QualityGroup.py │ ├── QualityManager.py │ ├── QualityNode.py │ ├── VariantManager.py │ ├── VariantType.py │ └── __init__.py ├── MultiplyObjectsJob.py ├── OAuth2 │ ├── AuthorizationHelpers.py │ ├── AuthorizationRequestHandler.py │ ├── AuthorizationRequestServer.py │ ├── AuthorizationService.py │ ├── LocalAuthorizationServer.py │ ├── Models.py │ └── __init__.py ├── ObjectsModel.py ├── OneAtATimeIterator.py ├── Operations │ ├── PlatformPhysicsOperation.py │ ├── SetBuildPlateNumberOperation.py │ ├── SetParentOperation.py │ └── __init__.py ├── PickingPass.py ├── PlatformPhysics.py ├── PreviewPass.py ├── PrintInformation.py ├── PrintJobPreviewImageProvider.py ├── PrinterOutput │ ├── ConfigurationModel.py │ ├── ExtruderConfigurationModel.py │ ├── ExtruderOutputModel.py │ ├── FirmwareUpdater.py │ ├── GenericOutputController.py │ ├── MaterialOutputModel.py │ ├── NetworkMJPGImage.py │ ├── NetworkedPrinterOutputDevice.py │ ├── PrintJobOutputModel.py │ ├── PrinterOutputController.py │ ├── PrinterOutputModel.py │ └── __init__.py ├── PrinterOutputDevice.py ├── ReaderWriters │ ├── ProfileReader.py │ ├── ProfileWriter.py │ └── __init__.py ├── Scene │ ├── BlockSlicingDecorator.py │ ├── BuildPlateDecorator.py │ ├── ConvexHullDecorator.py │ ├── ConvexHullNode.py │ ├── CuraSceneController.py │ ├── CuraSceneNode.py │ ├── GCodeListDecorator.py │ ├── SliceableObjectDecorator.py │ ├── ZOffsetDecorator.py │ └── __init__.py ├── Settings │ ├── ContainerManager.py │ ├── CuraContainerRegistry.py │ ├── CuraContainerStack.py │ ├── CuraFormulaFunctions.py │ ├── CuraStackBuilder.py │ ├── Exceptions.py │ ├── ExtruderManager.py │ ├── ExtruderStack.py │ ├── ExtrudersModel.py │ ├── GlobalStack.py │ ├── MachineManager.py │ ├── MachineNameValidator.py │ ├── MaterialSettingsVisibilityHandler.py │ ├── PerObjectContainerStack.py │ ├── SetObjectExtruderOperation.py │ ├── SettingInheritanceManager.py │ ├── SettingOverrideDecorator.py │ ├── SettingVisibilityPreset.py │ ├── SidebarCustomMenuItemsModel.py │ ├── SimpleModeSettingsManager.py │ ├── UserChangesModel.py │ ├── __init__.py │ └── cura_empty_instance_containers.py ├── SingleInstance.py ├── Snapshot.py ├── Stages │ ├── CuraStage.py │ └── __init__.py ├── TaskManagement │ ├── OnExitCallbackManager.py │ └── __init__.py ├── Utils │ ├── Threading.py │ └── __init__.py └── __init__.py ├── cura_app.py ├── docs ├── Cura_Data_Model.odg └── How_to_use_the_flame_graph_profiler.md ├── icons ├── cura-128.png ├── cura-32.png ├── cura-48.png ├── cura-64.png ├── cura.icns └── cura.ico ├── installer.nsi ├── plugins ├── 3MFReader │ ├── ThreeMFReader.py │ ├── ThreeMFWorkspaceReader.py │ ├── WorkspaceDialog.py │ ├── WorkspaceDialog.qml │ ├── __init__.py │ └── plugin.json ├── 3MFWriter │ ├── ThreeMFWorkspaceWriter.py │ ├── ThreeMFWriter.py │ ├── __init__.py │ └── plugin.json ├── BlackBeltPlugin │ ├── BlackBeltDecorator.py │ ├── BlackBeltPlugin.py │ ├── BlackBeltSingleton.py │ ├── BuildVolumePatches.py │ ├── CuraApplicationPatches.py │ ├── CuraEngineBackendPatches.py │ ├── FlavorParserPatches.py │ ├── PatchedCuraActions.py │ ├── PatchedMaterialManager.py │ ├── PrintInformationPatches.py │ ├── ProcessSlicedLayersJob.py │ ├── StartSliceJob.py │ ├── SupportMeshCreator.py │ ├── USBPrinterOutputDevicePatches.py │ ├── __init__.py │ ├── material_settings.json │ ├── plugin.json │ └── sidebar │ │ ├── PrepareSidebar.qml │ │ ├── SidebarHeader.qml │ │ └── SidebarSimple.qml ├── ChangeLogPlugin │ ├── ChangeLog.py │ ├── ChangeLog.qml │ ├── ChangeLog.txt │ ├── __init__.py │ └── plugin.json ├── CuraEngineBackend │ ├── Cura.proto │ ├── CuraEngineBackend.py │ ├── ProcessGCodeJob.py │ ├── ProcessSlicedLayersJob.py │ ├── StartSliceJob.py │ ├── __init__.py │ └── plugin.json ├── CuraProfileReader │ ├── CuraProfileReader.py │ ├── __init__.py │ └── plugin.json ├── CuraProfileWriter │ ├── CuraProfileWriter.py │ ├── __init__.py │ └── plugin.json ├── FirmwareUpdateChecker │ ├── FirmwareUpdateChecker.py │ ├── FirmwareUpdateCheckerJob.py │ ├── FirmwareUpdateCheckerLookup.py │ ├── FirmwareUpdateCheckerMessage.py │ ├── __init__.py │ └── plugin.json ├── FirmwareUpdater │ ├── FirmwareUpdaterMachineAction.py │ ├── FirmwareUpdaterMachineAction.qml │ ├── __init__.py │ └── plugin.json ├── GCodeGzReader │ ├── GCodeGzReader.py │ ├── __init__.py │ └── plugin.json ├── GCodeGzWriter │ ├── GCodeGzWriter.py │ ├── __init__.py │ └── plugin.json ├── GCodeProfileReader │ ├── GCodeProfileReader.py │ ├── __init__.py │ └── plugin.json ├── GCodeReader │ ├── FlavorParser.py │ ├── GCodeReader.py │ ├── MarlinFlavorParser.py │ ├── RepRapFlavorParser.py │ ├── __init__.py │ └── plugin.json ├── GCodeWriter │ ├── GCodeWriter.py │ ├── __init__.py │ └── plugin.json ├── ImageReader │ ├── ConfigUI.qml │ ├── ImageReader.py │ ├── ImageReaderUI.py │ ├── __init__.py │ └── plugin.json ├── LegacyProfileReader │ ├── DictionaryOfDoom.json │ ├── LegacyProfileReader.py │ ├── __init__.py │ └── plugin.json ├── MachineSettingsAction │ ├── MachineSettingsAction.py │ ├── MachineSettingsAction.qml │ ├── __init__.py │ └── plugin.json ├── ModelChecker │ ├── ModelChecker.py │ ├── ModelChecker.qml │ ├── __init__.py │ ├── model_checker.svg │ └── plugin.json ├── MonitorStage │ ├── MonitorMainView.qml │ ├── MonitorStage.py │ ├── __init__.py │ └── plugin.json ├── PerObjectSettingsTool │ ├── PerObjectCategory.qml │ ├── PerObjectItem.qml │ ├── PerObjectSettingVisibilityHandler.py │ ├── PerObjectSettingsPanel.qml │ ├── PerObjectSettingsTool.py │ ├── __init__.py │ ├── plugin.json │ └── tool_icon.svg ├── PostProcessingPlugin │ ├── PostProcessingPlugin.py │ ├── PostProcessingPlugin.qml │ ├── README.md │ ├── Script.py │ ├── __init__.py │ ├── plugin.json │ ├── postprocessing.svg │ └── scripts │ │ ├── BQ_PauseAtHeight.py │ │ ├── ChangeAtZ.py │ │ ├── DisplayFilenameAndLayerOnLCD.py │ │ ├── ExampleScript.py │ │ ├── FilamentChange.py │ │ ├── PauseAtHeight.py │ │ ├── PauseAtHeightRepRapFirmwareDuet.py │ │ ├── PauseAtHeightforRepetier.py │ │ ├── SearchAndReplace.py │ │ └── Stretch.py ├── PrepareStage │ ├── PrepareStage.py │ ├── __init__.py │ └── plugin.json ├── RemovableDriveOutputDevice │ ├── LinuxRemovableDrivePlugin.py │ ├── OSXRemovableDrivePlugin.py │ ├── RemovableDriveOutputDevice.py │ ├── RemovableDrivePlugin.py │ ├── WindowsRemovableDrivePlugin.py │ ├── __init__.py │ └── plugin.json ├── SimulationView │ ├── LayerSlider.qml │ ├── NozzleNode.py │ ├── PathSlider.qml │ ├── SimulationPass.py │ ├── SimulationSliderLabel.qml │ ├── SimulationView.py │ ├── SimulationView.qml │ ├── SimulationViewProxy.py │ ├── __init__.py │ ├── layers.shader │ ├── layers3d.shader │ ├── layers3d_shadow.shader │ ├── layers_shadow.shader │ ├── plugin.json │ ├── resources │ │ ├── nozzle.stl │ │ ├── simulation_pause.svg │ │ └── simulation_resume.svg │ └── simulationview_composite.shader ├── SliceInfoPlugin │ ├── MoreInfoWindow.qml │ ├── SliceInfo.py │ ├── SliceInfoJob.py │ ├── __init__.py │ ├── example_data.json │ └── plugin.json ├── SolidView │ ├── SolidView.py │ ├── __init__.py │ └── plugin.json ├── SupportEraser │ ├── SupportEraser.py │ ├── __init__.py │ ├── plugin.json │ └── tool_icon.svg ├── Toolbox │ ├── __init__.py │ ├── plugin.json │ ├── resources │ │ ├── images │ │ │ ├── installed_check.svg │ │ │ ├── loading.gif │ │ │ ├── loading.svg │ │ │ └── logobot.svg │ │ └── qml │ │ │ ├── Toolbox.qml │ │ │ ├── ToolboxActionButtonStyle.qml │ │ │ ├── ToolboxAuthorPage.qml │ │ │ ├── ToolboxBackColumn.qml │ │ │ ├── ToolboxCompatibilityChart.qml │ │ │ ├── ToolboxConfirmUninstallResetDialog.qml │ │ │ ├── ToolboxDetailList.qml │ │ │ ├── ToolboxDetailPage.qml │ │ │ ├── ToolboxDetailTile.qml │ │ │ ├── ToolboxDetailTileActions.qml │ │ │ ├── ToolboxDownloadsGrid.qml │ │ │ ├── ToolboxDownloadsGridTile.qml │ │ │ ├── ToolboxDownloadsPage.qml │ │ │ ├── ToolboxDownloadsShowcase.qml │ │ │ ├── ToolboxDownloadsShowcaseTile.qml │ │ │ ├── ToolboxErrorPage.qml │ │ │ ├── ToolboxFooter.qml │ │ │ ├── ToolboxHeader.qml │ │ │ ├── ToolboxInstalledPage.qml │ │ │ ├── ToolboxInstalledTile.qml │ │ │ ├── ToolboxInstalledTileActions.qml │ │ │ ├── ToolboxLicenseDialog.qml │ │ │ ├── ToolboxLoadingPage.qml │ │ │ ├── ToolboxProgressButton.qml │ │ │ ├── ToolboxShadow.qml │ │ │ └── ToolboxTabButton.qml │ └── src │ │ ├── AuthorsModel.py │ │ ├── ConfigsModel.py │ │ ├── PackagesModel.py │ │ ├── Toolbox.py │ │ └── __init__.py ├── UFPWriter │ ├── UFPWriter.py │ ├── __init__.py │ ├── kitten.png │ └── plugin.json ├── UM3NetworkPrinting │ ├── __init__.py │ ├── plugin.json │ ├── resources │ │ ├── qml │ │ │ ├── CameraButton.qml │ │ │ ├── ClusterControlItem.qml │ │ │ ├── ClusterMonitorItem.qml │ │ │ ├── DiscoverUM3Action.qml │ │ │ ├── HorizontalLine.qml │ │ │ ├── MonitorItem.qml │ │ │ ├── PrintCoreConfiguration.qml │ │ │ ├── PrintJobContextMenu.qml │ │ │ ├── PrintJobContextMenuItem.qml │ │ │ ├── PrintJobInfoBlock.qml │ │ │ ├── PrintJobPreview.qml │ │ │ ├── PrintJobTitle.qml │ │ │ ├── PrintWindow.qml │ │ │ ├── PrinterCard.qml │ │ │ ├── PrinterCardDetails.qml │ │ │ ├── PrinterCardProgressBar.qml │ │ │ ├── PrinterFamilyPill.qml │ │ │ ├── PrinterInfoBlock.qml │ │ │ ├── PrinterVideoStream.qml │ │ │ └── UM3InfoComponents.qml │ │ └── svg │ │ │ ├── UM3-icon.svg │ │ │ ├── UM3x-icon.svg │ │ │ ├── UMs5-icon.svg │ │ │ ├── aborted-icon.svg │ │ │ ├── action-required-icon.svg │ │ │ ├── approved-icon.svg │ │ │ ├── blocked-icon.svg │ │ │ ├── camera-icon.svg │ │ │ ├── checkmark-icon.svg │ │ │ ├── paused-icon.svg │ │ │ ├── ultibot.svg │ │ │ └── warning-icon.svg │ └── src │ │ ├── ClusterUM3OutputDevice.py │ │ ├── ClusterUM3PrinterOutputController.py │ │ ├── ConfigurationChangeModel.py │ │ ├── DiscoverUM3Action.py │ │ ├── LegacyUM3OutputDevice.py │ │ ├── LegacyUM3PrinterOutputController.py │ │ ├── SendMaterialJob.py │ │ ├── UM3OutputDevicePlugin.py │ │ └── UM3PrintJobOutputModel.py ├── USBPrinting │ ├── AutoDetectBaudJob.py │ ├── AvrFirmwareUpdater.py │ ├── USBPrinterOutputDevice.py │ ├── USBPrinterOutputDeviceManager.py │ ├── __init__.py │ ├── avr_isp │ │ ├── __init__.py │ │ ├── chipDB.py │ │ ├── intelHex.py │ │ ├── ispBase.py │ │ └── stk500v2.py │ └── plugin.json ├── UltimakerMachineActions │ ├── BedLevelMachineAction.py │ ├── BedLevelMachineAction.qml │ ├── UM2UpgradeSelection.py │ ├── UM2UpgradeSelectionMachineAction.qml │ ├── UMOCheckupMachineAction.py │ ├── UMOCheckupMachineAction.qml │ ├── UMOUpgradeSelection.py │ ├── UMOUpgradeSelectionMachineAction.qml │ ├── __init__.py │ └── plugin.json ├── UserAgreement │ ├── UserAgreement.py │ ├── UserAgreement.qml │ ├── __init__.py │ └── plugin.json ├── VersionUpgrade │ ├── VersionUpgrade21to22 │ │ ├── MachineInstance.py │ │ ├── Preferences.py │ │ ├── Profile.py │ │ ├── VersionUpgrade21to22.py │ │ ├── __init__.py │ │ └── plugin.json │ ├── VersionUpgrade22to24 │ │ ├── VersionUpgrade.py │ │ ├── __init__.py │ │ └── plugin.json │ ├── VersionUpgrade25to26 │ │ ├── VersionUpgrade25to26.py │ │ ├── __init__.py │ │ ├── plugin.json │ │ └── tests │ │ │ └── TestVersionUpgrade25to26.py │ ├── VersionUpgrade26to27 │ │ ├── VersionUpgrade26to27.py │ │ ├── __init__.py │ │ ├── plugin.json │ │ └── tests │ │ │ └── TestVersionUpgrade26to27.py │ ├── VersionUpgrade27to30 │ │ ├── VersionUpgrade27to30.py │ │ ├── __init__.py │ │ ├── plugin.json │ │ └── tests │ │ │ └── TestVersionUpgrade27to30.py │ ├── VersionUpgrade30to31 │ │ ├── VersionUpgrade30to31.py │ │ ├── __init__.py │ │ └── plugin.json │ ├── VersionUpgrade32to33 │ │ ├── VersionUpgrade32to33.py │ │ ├── __init__.py │ │ └── plugin.json │ ├── VersionUpgrade33to34 │ │ ├── VersionUpgrade33to34.py │ │ ├── __init__.py │ │ └── plugin.json │ └── VersionUpgrade34to35 │ │ ├── VersionUpgrade34to35.py │ │ ├── __init__.py │ │ ├── plugin.json │ │ └── tests │ │ └── TestVersionUpgrade34to35.py ├── X3DReader │ ├── X3DReader.py │ ├── __init__.py │ └── plugin.json ├── XRayView │ ├── XRayPass.py │ ├── XRayView.py │ ├── __init__.py │ ├── plugin.json │ ├── xray.shader │ └── xray_composite.shader └── XmlMaterialProfile │ ├── XmlMaterialProfile.py │ ├── XmlMaterialUpgrader.py │ ├── XmlMaterialValidator.py │ ├── __init__.py │ ├── plugin.json │ └── product_to_id.json ├── pytest.ini ├── resources ├── bundled_packages │ └── cura.json ├── definitions │ ├── 101Hero.def.json │ ├── 3dator.def.json │ ├── abax_pri3.def.json │ ├── abax_pri5.def.json │ ├── abax_titan.def.json │ ├── alya3dp.def.json │ ├── anycubic_4max.def.json │ ├── anycubic_i3_mega.def.json │ ├── beltprinter.def.json │ ├── bfb.def.json │ ├── blackbelt.def.json │ ├── blackbeltvd.def.json │ ├── bq_hephestos.def.json │ ├── bq_hephestos_2.def.json │ ├── bq_hephestos_xl.def.json │ ├── bq_witbox.def.json │ ├── bq_witbox_2.def.json │ ├── builder_premium_large.def.json │ ├── builder_premium_medium.def.json │ ├── builder_premium_small.def.json │ ├── cartesio.def.json │ ├── creality_cr10.def.json │ ├── creality_cr10s.def.json │ ├── creality_cr10s4.def.json │ ├── creality_cr10s5.def.json │ ├── creality_ender3.def.json │ ├── custom.def.json │ ├── custom_belt_printer.def.json │ ├── dagoma_discoeasy200.def.json │ ├── dagoma_magis.def.json │ ├── dagoma_neva.def.json │ ├── delta_go.def.json │ ├── deltabot.def.json │ ├── deltacomb.def.json │ ├── easyarts_ares.def.json │ ├── fabtotum.def.json │ ├── fdmextruder.def.json │ ├── fdmprinter.def.json │ ├── felixtec4dual.def.json │ ├── folgertech_FT-5.def.json │ ├── gmax15plus.def.json │ ├── gmax15plus_dual.def.json │ ├── grr_neo.def.json │ ├── helloBEEprusa.def.json │ ├── imade3d_jellybox.def.json │ ├── innovo_inventor.def.json │ ├── julia.def.json │ ├── kemiq_q2_beta.def.json │ ├── kemiq_q2_gama.def.json │ ├── kossel_mini.def.json │ ├── kossel_pro.def.json │ ├── kupido.def.json │ ├── makeR_pegasus.def.json │ ├── makeR_prusa_tairona_i3.def.json │ ├── makeit_pro_l.def.json │ ├── makeit_pro_m.def.json │ ├── maker_starter.def.json │ ├── makerbotreplicator.def.json │ ├── malyan_m180.def.json │ ├── malyan_m200.def.json │ ├── mankati_fullscale_xt_plus.def.json │ ├── mendel90.def.json │ ├── monoprice_select_mini_v1.def.json │ ├── monoprice_select_mini_v2.def.json │ ├── ord.def.json │ ├── peopoly_moai.def.json │ ├── podoprinter.def.json │ ├── printrbot_play.def.json │ ├── printrbot_play_heated.def.json │ ├── printrbot_simple.def.json │ ├── printrbot_simple_extended.def.json │ ├── printrbot_simple_makers_kit.def.json │ ├── prusa_i3.def.json │ ├── prusa_i3_mk2.def.json │ ├── prusa_i3_xl.def.json │ ├── punchtec_connect_xl.def.json │ ├── raise3D_N2_dual.def.json │ ├── raise3D_N2_plus_dual.def.json │ ├── raise3D_N2_plus_single.def.json │ ├── raise3D_N2_single.def.json │ ├── renkforce_rf100.def.json │ ├── rigid3d.def.json │ ├── rigid3d_3rdgen.def.json │ ├── rigid3d_hobby.def.json │ ├── rigid3d_mucit.def.json │ ├── rigid3d_zero.def.json │ ├── rigid3d_zero2.def.json │ ├── rigidbot.def.json │ ├── rigidbot_big.def.json │ ├── robo_3d_r1.def.json │ ├── seemecnc_artemis.def.json │ ├── seemecnc_v32.def.json │ ├── tam.def.json │ ├── tevo_blackwidow.def.json │ ├── tevo_tarantula.def.json │ ├── tevo_tornado.def.json │ ├── tizyx_k25.def.json │ ├── ubuild-3d_mr_bot_280.def.json │ ├── ultimaker.def.json │ ├── ultimaker2.def.json │ ├── ultimaker2_extended.def.json │ ├── ultimaker2_extended_plus.def.json │ ├── ultimaker2_go.def.json │ ├── ultimaker2_plus.def.json │ ├── ultimaker3.def.json │ ├── ultimaker3_extended.def.json │ ├── ultimaker_original.def.json │ ├── ultimaker_original_dual.def.json │ ├── ultimaker_original_plus.def.json │ ├── ultimaker_s5.def.json │ ├── uni_print_3d.def.json │ ├── uniqbot_one.def.json │ ├── vertex_delta_k8800.def.json │ ├── vertex_k8400.def.json │ ├── vertex_k8400_dual.def.json │ ├── wanhao_d4s.def.json │ ├── wanhao_d6.def.json │ ├── wanhao_d6_plus.def.json │ ├── wanhao_duplicator5S.def.json │ ├── wanhao_duplicator5Smini.def.json │ ├── wanhao_i3.def.json │ ├── wanhao_i3mini.def.json │ ├── wanhao_i3plus.def.json │ ├── winbo_dragonl4.def.json │ ├── winbo_mini2.def.json │ ├── winbo_superhelper105.def.json │ ├── winbo_superhelper155.def.json │ ├── zone3d_printer.def.json │ └── zyyx_agile.def.json ├── extruders │ ├── 101Hero_extruder_0.def.json │ ├── 3dator_extruder_0.def.json │ ├── abax_pri3_extruder_0.def.json │ ├── abax_pri5_extruder_0.def.json │ ├── abax_titan_extruder_0.def.json │ ├── alya3dp_extruder_0.def.json │ ├── anycubic_4max_extruder_0.def.json │ ├── anycubic_i3_mega_extruder_0.def.json │ ├── bfb_extruder_0.def.json │ ├── blackbelt_extruder_0.def.json │ ├── blackbeltvd_extruder_0.def.json │ ├── bq_hephestos_2_extruder_0.def.json │ ├── bq_hephestos_extruder_0.def.json │ ├── bq_hephestos_xl_extruder_0.def.json │ ├── bq_witbox_2_extruder_0.def.json │ ├── bq_witbox_extruder_0.def.json │ ├── builder_premium_large_front.def.json │ ├── builder_premium_large_rear.def.json │ ├── builder_premium_medium_front.def.json │ ├── builder_premium_medium_rear.def.json │ ├── builder_premium_small_front.def.json │ ├── builder_premium_small_rear.def.json │ ├── cartesio_extruder_0.def.json │ ├── cartesio_extruder_1.def.json │ ├── cartesio_extruder_2.def.json │ ├── cartesio_extruder_3.def.json │ ├── creality_cr10_extruder_0.def.json │ ├── creality_cr10s4_extruder_0.def.json │ ├── creality_cr10s5_extruder_0.def.json │ ├── creality_ender3_extruder_0.def.json │ ├── custom_extruder_1.def.json │ ├── custom_extruder_2.def.json │ ├── custom_extruder_3.def.json │ ├── custom_extruder_4.def.json │ ├── custom_extruder_5.def.json │ ├── custom_extruder_6.def.json │ ├── custom_extruder_7.def.json │ ├── custom_extruder_8.def.json │ ├── dagoma_discoeasy200_extruder_0.def.json │ ├── dagoma_magis_extruder_0.def.json │ ├── dagoma_neva_extruder_0.def.json │ ├── delta_go_extruder_0.def.json │ ├── deltabot_extruder_0.def.json │ ├── deltacomb_extruder_0.def.json │ ├── easyarts_ares_extruder_0.def.json │ ├── fabtotum_extruder_0.def.json │ ├── felixtec4_dual_extruder_0.def.json │ ├── felixtec4_dual_extruder_1.def.json │ ├── folgertech_FT-5_extruder_0.def.json │ ├── gmax15plus_dual_extruder_0.def.json │ ├── gmax15plus_dual_extruder_1.def.json │ ├── gmax15plus_extruder_0.def.json │ ├── grr_neo_extruder_0.def.json │ ├── hBp_extruder_left.def.json │ ├── hBp_extruder_right.def.json │ ├── imade3d_jellybox_extruder_0.def.json │ ├── innovo_inventor_extruder_0.def.json │ ├── julia_extruder_0.def.json │ ├── kemiq_q2_beta_extruder_0.def.json │ ├── kemiq_q2_gama_extruder_0.def.json │ ├── kossel_mini_extruder_0.def.json │ ├── kossel_pro_extruder_0.def.json │ ├── kupido_extruder_0.def.json │ ├── makeR_pegasus_extruder_0.def.json │ ├── makeR_prusa_tairona_i3_extruder_0.def.json │ ├── makeit_dual_1st.def.json │ ├── makeit_dual_2nd.def.json │ ├── makeit_l_dual_1st.def.json │ ├── makeit_l_dual_2nd.def.json │ ├── maker_starter_extruder_0.def.json │ ├── makerbotreplicator_extruder_0.def.json │ ├── malyan_m180_extruder_0.def.json │ ├── malyan_m200_extruder_0.def.json │ ├── mankati_fullscale_xt_plus_extruder_0.def.json │ ├── mendel90_extruder_0.def.json │ ├── monoprice_select_mini_v1_extruder_0.def.json │ ├── monoprice_select_mini_v2_extruder_0.def.json │ ├── ord_extruder_0.def.json │ ├── ord_extruder_1.def.json │ ├── ord_extruder_2.def.json │ ├── ord_extruder_3.def.json │ ├── ord_extruder_4.def.json │ ├── peopoly_moai_extruder_0.def.json │ ├── printrbot_play_extruder_0.def.json │ ├── printrbot_play_heated_extruder_0.def.json │ ├── printrbot_simple_extended_extruder_0.def.json │ ├── printrbot_simple_extruder_0.def.json │ ├── printrbot_simple_makers_kit_extruder_0.def.json │ ├── prusa_i3_extruder_0.def.json │ ├── prusa_i3_mk2_extruder_0.def.json │ ├── prusa_i3_xl_extruder_0.def.json │ ├── punchtec_connect_xl_extruder_0.def.json │ ├── punchtec_connect_xl_extruder_1.def.json │ ├── raise3D_N2_dual_extruder_0.def.json │ ├── raise3D_N2_dual_extruder_1.def.json │ ├── raise3D_N2_plus_dual_extruder_0.def.json │ ├── raise3D_N2_plus_dual_extruder_1.def.json │ ├── raise3D_N2_plus_single_extruder_0.def.json │ ├── raise3D_N2_single_extruder_0.def.json │ ├── renkforce_rf100_extruder_0.def.json │ ├── rigid3d_3rdgen_extruder_0.def.json │ ├── rigid3d_extruder_0.def.json │ ├── rigid3d_hobby_extruder_0.def.json │ ├── rigid3d_mucit_extruder_0.def.json │ ├── rigid3d_zero2_extruder_0.def.json │ ├── rigid3d_zero_extruder_0.def.json │ ├── rigidbot_big_extruder_0.def.json │ ├── rigidbot_extruder_0.def.json │ ├── robo_3d_r1_extruder_0.def.json │ ├── seemecnc_artemis_extruder_0.def.json │ ├── seemecnc_v32_extruder_0.def.json │ ├── tam_extruder_0.def.json │ ├── tevo_blackwidow_extruder_0.def.json │ ├── tevo_tarantula_extruder_0.def.json │ ├── tevo_tornado_extruder_0.def.json │ ├── tizyx_k25_extruder_0.def.json │ ├── ubuild-3d_mr_bot_280_extruder_0.def.json │ ├── ultimaker2_extended_extruder_0.def.json │ ├── ultimaker2_extended_plus_extruder_0.def.json │ ├── ultimaker2_extruder_0.def.json │ ├── ultimaker2_go_extruder_0.def.json │ ├── ultimaker2_plus_extruder_0.def.json │ ├── ultimaker3_extended_extruder_left.def.json │ ├── ultimaker3_extended_extruder_right.def.json │ ├── ultimaker3_extruder_left.def.json │ ├── ultimaker3_extruder_right.def.json │ ├── ultimaker_original_dual_1st.def.json │ ├── ultimaker_original_dual_2nd.def.json │ ├── ultimaker_original_extruder_0.def.json │ ├── ultimaker_original_plus_extruder_0.def.json │ ├── ultimaker_s5_extruder_left.def.json │ ├── ultimaker_s5_extruder_right.def.json │ ├── uni_print_3d_extruder_0.def.json │ ├── uniqbot_one_extruder_0.def.json │ ├── vertex_delta_k8800_extruder_0.def.json │ ├── vertex_k8400_dual_1st.def.json │ ├── vertex_k8400_dual_2nd.def.json │ ├── vertex_k8400_extruder_0.def.json │ ├── wanhao_d4s_extruder_0.def.json │ ├── wanhao_d6_extruder_0.def.json │ ├── wanhao_d6_plus_extruder_0.def.json │ ├── wanhao_duplicator5S_extruder_0.def.json │ ├── wanhao_duplicator5Smini_extruder_0.def.json │ ├── wanhao_i3_extruder_0.def.json │ ├── wanhao_i3mini_extruder_0.def.json │ ├── wanhao_i3plus_extruder_0.def.json │ ├── winbo_dragonl4_extruder.def.json │ ├── winbo_mini2_extruder.def.json │ ├── winbo_superhelper105_extruder.def.json │ ├── winbo_superhelper155_extruder.def.json │ ├── zone3d_printer_extruder_0.def.json │ └── zyyx_agile_extruder_0.def.json ├── firmware │ ├── MarlinBlackBelt3D.hex │ └── MarlinBlackBelt3DVD.hex ├── i18n │ ├── cura.pot │ ├── de_DE │ │ ├── cura.po │ │ ├── fdmextruder.def.json.po │ │ └── fdmprinter.def.json.po │ ├── es_ES │ │ ├── cura.po │ │ ├── fdmextruder.def.json.po │ │ └── fdmprinter.def.json.po │ ├── fdmextruder.def.json.pot │ ├── fdmprinter.def.json.pot │ ├── fi_FI │ │ ├── cura.po │ │ ├── fdmextruder.def.json.po │ │ └── fdmprinter.def.json.po │ ├── fr_FR │ │ ├── cura.po │ │ ├── fdmextruder.def.json.po │ │ └── fdmprinter.def.json.po │ ├── it_IT │ │ ├── cura.po │ │ ├── fdmextruder.def.json.po │ │ └── fdmprinter.def.json.po │ ├── ja_JP │ │ ├── cura.po │ │ ├── fdmextruder.def.json.po │ │ └── fdmprinter.def.json.po │ ├── ko_KR │ │ ├── cura.po │ │ ├── fdmextruder.def.json.po │ │ └── fdmprinter.def.json.po │ ├── nl_NL │ │ ├── cura.po │ │ ├── fdmextruder.def.json.po │ │ └── fdmprinter.def.json.po │ ├── pl_PL │ │ ├── cura.po │ │ ├── fdmextruder.def.json.po │ │ └── fdmprinter.def.json.po │ ├── pt_BR │ │ ├── cura.po │ │ ├── fdmextruder.def.json.po │ │ └── fdmprinter.def.json.po │ ├── pt_PT │ │ ├── cura.po │ │ ├── fdmextruder.def.json.po │ │ └── fdmprinter.def.json.po │ ├── ru_RU │ │ ├── cura.po │ │ ├── fdmextruder.def.json.po │ │ └── fdmprinter.def.json.po │ ├── tr_TR │ │ ├── cura.po │ │ ├── fdmextruder.def.json.po │ │ └── fdmprinter.def.json.po │ ├── zh_CN │ │ ├── cura.po │ │ ├── fdmextruder.def.json.po │ │ └── fdmprinter.def.json.po │ └── zh_TW │ │ ├── cura.po │ │ ├── fdmextruder.def.json.po │ │ └── fdmprinter.def.json.po ├── images │ ├── MakerStarterbackplate.png │ ├── Ultimaker2ExtendedPlusbackplate.png │ ├── Ultimaker2Extendedbackplate.png │ ├── Ultimaker2Gobackplate.png │ ├── Ultimaker2Plusbackplate.png │ ├── Ultimaker2backplate.png │ ├── Ultimaker3Extendedbackplate.png │ ├── Ultimaker3backplate.png │ ├── UltimakerPlusbackplate.png │ ├── UltimakerS5backplate.png │ ├── Wanhaobackplate.png │ ├── category_blackbelt.svg │ ├── cura-icon-32.png │ ├── cura-icon.png │ ├── cura.png │ ├── fabtotum_platform.png │ ├── kitten.jpg │ ├── moai.jpg │ └── wanhao-icon.png ├── meshes │ ├── 101hero-platform.stl │ ├── 3dator_platform.stl │ ├── BEEVERYCREATIVE-helloBEEprusa.stl │ ├── FT-5_build_plate.stl │ ├── FelixTec4_platform.stl │ ├── UltimakerRobot_support.stl │ ├── Vertex_build_panel.stl │ ├── anycubic_4max_platform.stl │ ├── anycubic_i3_mega_platform.stl │ ├── artemis_platform.stl │ ├── blackbelt_platform.stl │ ├── bq_hephestos_2_platform.stl │ ├── bq_hephestos_platform.stl │ ├── bq_witbox_platform.stl │ ├── builder_premium_platform.stl │ ├── cartesio_platform.stl │ ├── creality_ender3_platform.stl │ ├── deltacomb.stl │ ├── discoeasy200.stl │ ├── fabtotum_platform.stl │ ├── gmax_1-5_xt-plus_s3d_full model_150707.stl │ ├── grr_neo_platform.stl │ ├── imade3d_jellybox_platform.stl │ ├── inventor_platform.stl │ ├── kemiq_q2.stl │ ├── kossel_platform.stl │ ├── kossel_pro_build_platform.stl │ ├── makeR_pegasus_platform.stl │ ├── makeR_prusa_tairona_i3_platform.stl │ ├── makerstarter_platform.stl │ ├── malyan_m200_platform.stl │ ├── mankati_fullscale_xt_plus_platform.stl │ ├── mendel90_platform.stl │ ├── moai.obj │ ├── neva.stl │ ├── printrbot_play.stl │ ├── printrbot_simple_metal_platform.stl │ ├── printrbot_simple_metal_upgrade.stl │ ├── prusai3_platform.stl │ ├── prusai3_xl_platform.stl │ ├── rigid3d_mucit_platform.stl │ ├── rigid3d_zero2_platform.stl │ ├── rigidbot_platform.stl │ ├── rigidbotbig_platform.stl │ ├── rostock_platform.stl │ ├── tam_series1.stl │ ├── tevo_blackwidow.stl │ ├── tizyx_k25_platform.stl │ ├── ultimaker2_platform.obj │ ├── ultimaker2go_platform.obj │ ├── ultimaker3_platform.obj │ ├── ultimaker_platform.stl │ ├── ultimaker_s5_platform.obj │ ├── uni_print_3d_platform.stl │ ├── wanhao_110_110_platform.obj │ ├── wanhao_150_150_platform.obj │ ├── wanhao_200_200_platform.obj │ ├── wanhao_225_145_platform.obj │ ├── wanhao_300_200_platform.obj │ └── zyyx_platform.stl ├── qml │ ├── AboutDialog.qml │ ├── Actions.qml │ ├── AddMachineDialog.qml │ ├── AskOpenAsProjectOrModelsDialog.qml │ ├── Cura.qml │ ├── DiscardOrKeepProfileChangesDialog.qml │ ├── EngineLog.qml │ ├── ExtruderButton.qml │ ├── JobSpecs.qml │ ├── MachineAction.qml │ ├── MachineSelection.qml │ ├── Menus │ │ ├── BuildplateMenu.qml │ │ ├── ConfigurationMenu │ │ │ ├── ConfigurationItem.qml │ │ │ ├── ConfigurationListView.qml │ │ │ ├── ConfigurationSelection.qml │ │ │ ├── PrintCoreConfiguration.qml │ │ │ └── SyncButton.qml │ │ ├── ContextMenu.qml │ │ ├── LocalPrinterMenu.qml │ │ ├── MaterialMenu.qml │ │ ├── NetworkPrinterMenu.qml │ │ ├── NozzleMenu.qml │ │ ├── PrinterMenu.qml │ │ ├── PrinterStatusIcon.qml │ │ ├── PrinterTypeMenu.qml │ │ ├── ProfileMenu.qml │ │ ├── RecentFilesMenu.qml │ │ ├── SettingVisibilityPresetsMenu.qml │ │ └── ViewMenu.qml │ ├── MonitorButton.qml │ ├── MonitorSidebar.qml │ ├── ObjectsList.qml │ ├── OpenFilesIncludingProjectsDialog.qml │ ├── Preferences │ │ ├── GeneralPage.qml │ │ ├── MachinesPage.qml │ │ ├── Materials │ │ │ ├── MaterialsBrandSection.qml │ │ │ ├── MaterialsDetailsPanel.qml │ │ │ ├── MaterialsList.qml │ │ │ ├── MaterialsPage.qml │ │ │ ├── MaterialsSlot.qml │ │ │ ├── MaterialsTypeSection.qml │ │ │ └── MaterialsView.qml │ │ ├── ProfileTab.qml │ │ ├── ProfilesPage.qml │ │ ├── ReadOnlySpinBox.qml │ │ ├── ReadOnlyTextArea.qml │ │ ├── ReadOnlyTextField.qml │ │ └── SettingVisibilityPage.qml │ ├── PrepareSidebar.qml │ ├── PrintMonitor.qml │ ├── PrinterOutput │ │ ├── ExtruderBox.qml │ │ ├── HeatedBedBox.qml │ │ ├── ManualPrinterControl.qml │ │ ├── MonitorItem.qml │ │ ├── MonitorSection.qml │ │ └── OutputDeviceHeader.qml │ ├── SaveButton.qml │ ├── Settings │ │ ├── SettingCategory.qml │ │ ├── SettingCheckBox.qml │ │ ├── SettingComboBox.qml │ │ ├── SettingExtruder.qml │ │ ├── SettingItem.qml │ │ ├── SettingOptionalExtruder.qml │ │ ├── SettingTextField.qml │ │ ├── SettingUnknown.qml │ │ └── SettingView.qml │ ├── SidebarAdvanced.qml │ ├── SidebarContents.qml │ ├── SidebarHeader.qml │ ├── SidebarSimple.qml │ ├── SidebarTooltip.qml │ ├── Toolbar.qml │ ├── Topbar.qml │ └── WorkspaceSummaryDialog.qml ├── quality │ ├── abax_pri3 │ │ ├── apri3_pla_fast.inst.cfg │ │ ├── apri3_pla_high.inst.cfg │ │ └── apri3_pla_normal.inst.cfg │ ├── abax_pri5 │ │ ├── apri5_pla_fast.inst.cfg │ │ ├── apri5_pla_high.inst.cfg │ │ └── apri5_pla_normal.inst.cfg │ ├── abax_titan │ │ ├── atitan_pla_fast.inst.cfg │ │ ├── atitan_pla_high.inst.cfg │ │ └── atitan_pla_normal.inst.cfg │ ├── anycubic_4max │ │ ├── abs │ │ │ ├── anycubic_4max_abs_draft.inst.cfg │ │ │ ├── anycubic_4max_abs_high.inst.cfg │ │ │ └── anycubic_4max_abs_normal.inst.cfg │ │ ├── anycubic_4max_draft.inst.cfg │ │ ├── anycubic_4max_high.inst.cfg │ │ ├── anycubic_4max_normal.inst.cfg │ │ ├── hips │ │ │ ├── anycubic_4max_hips_draft.inst.cfg │ │ │ ├── anycubic_4max_hips_high.inst.cfg │ │ │ └── anycubic_4max_hips_normal.inst.cfg │ │ ├── petg │ │ │ ├── anycubic_4max_petg_draft.inst.cfg │ │ │ ├── anycubic_4max_petg_high.inst.cfg │ │ │ └── anycubic_4max_petg_normal.inst.cfg │ │ └── pla │ │ │ ├── anycubic_4max_pla_draft.inst.cfg │ │ │ ├── anycubic_4max_pla_high.inst.cfg │ │ │ └── anycubic_4max_pla_normal.inst.cfg │ ├── anycubic_i3_mega │ │ ├── anycubic_i3_mega_draft.inst.cfg │ │ ├── anycubic_i3_mega_high.inst.cfg │ │ └── anycubic_i3_mega_normal.inst.cfg │ ├── blackbelt │ │ ├── blackbelt_global_normal.inst.cfg │ │ └── blackbelt_normal.inst.cfg │ ├── blackbeltvd │ │ ├── blackbeltvd_global_normal.inst.cfg │ │ └── blackbeltvd_normal.inst.cfg │ ├── builder_premium │ │ ├── bp_BVOH_Coarse_Quality.inst.cfg │ │ ├── bp_BVOH_High_Quality.inst.cfg │ │ ├── bp_BVOH_Normal_Quality.inst.cfg │ │ ├── bp_Innoflex60_Coarse_Quality.inst.cfg │ │ ├── bp_Innoflex60_High_Quality.inst.cfg │ │ ├── bp_Innoflex60_Normal_Quality.inst.cfg │ │ ├── bp_PET_Coarse_Quality.inst.cfg │ │ ├── bp_PET_High_Quality.inst.cfg │ │ ├── bp_PET_Normal_Quality.inst.cfg │ │ ├── bp_PLA_Coarse_Quality.inst.cfg │ │ ├── bp_PLA_High_Quality.inst.cfg │ │ ├── bp_PLA_Normal_Quality.inst.cfg │ │ ├── bp_PVA_Coarse_Quality.inst.cfg │ │ ├── bp_PVA_High_Quality.inst.cfg │ │ ├── bp_PVA_Normal_Quality.inst.cfg │ │ ├── bp_global_Coarse_Quality.inst.cfg │ │ ├── bp_global_High_Quality.inst.cfg │ │ └── bp_global_Normal_Quality.inst.cfg │ ├── cartesio │ │ ├── abs │ │ │ ├── cartesio_0.25_abs_high.inst.cfg │ │ │ ├── cartesio_0.25_abs_normal.inst.cfg │ │ │ ├── cartesio_0.4_abs_high.inst.cfg │ │ │ ├── cartesio_0.4_abs_normal.inst.cfg │ │ │ ├── cartesio_0.8_abs_coarse.inst.cfg │ │ │ ├── cartesio_0.8_abs_extra_coarse.inst.cfg │ │ │ ├── cartesio_0.8_abs_high.inst.cfg │ │ │ └── cartesio_0.8_abs_normal.inst.cfg │ │ ├── arnitel │ │ │ ├── cartesio_0.4_arnitel2045_high.inst.cfg │ │ │ └── cartesio_0.4_arnitel2045_normal.inst.cfg │ │ ├── cartesio_global_Coarse_Quality.inst.cfg │ │ ├── cartesio_global_Extra_Coarse_Quality.inst.cfg │ │ ├── cartesio_global_High_Quality.inst.cfg │ │ ├── cartesio_global_Normal_Quality.inst.cfg │ │ ├── hips │ │ │ ├── cartesio_0.25_hips_high.inst.cfg │ │ │ ├── cartesio_0.25_hips_normal.inst.cfg │ │ │ ├── cartesio_0.4_hips_high.inst.cfg │ │ │ ├── cartesio_0.4_hips_normal.inst.cfg │ │ │ ├── cartesio_0.8_hips_coarse.inst.cfg │ │ │ ├── cartesio_0.8_hips_extra_coarse.inst.cfg │ │ │ ├── cartesio_0.8_hips_high.inst.cfg │ │ │ └── cartesio_0.8_hips_normal.inst.cfg │ │ ├── nylon │ │ │ ├── cartesio_0.25_nylon_high.inst.cfg │ │ │ ├── cartesio_0.25_nylon_normal.inst.cfg │ │ │ ├── cartesio_0.4_nylon_high.inst.cfg │ │ │ ├── cartesio_0.4_nylon_normal.inst.cfg │ │ │ ├── cartesio_0.8_nylon_coarse.inst.cfg │ │ │ ├── cartesio_0.8_nylon_extra_coarse.inst.cfg │ │ │ ├── cartesio_0.8_nylon_high.inst.cfg │ │ │ └── cartesio_0.8_nylon_normal.inst.cfg │ │ ├── pc │ │ │ ├── cartesio_0.25_pc_high.inst.cfg │ │ │ ├── cartesio_0.25_pc_normal.inst.cfg │ │ │ ├── cartesio_0.4_pc_high.inst.cfg │ │ │ ├── cartesio_0.4_pc_normal.inst.cfg │ │ │ ├── cartesio_0.8_pc_coarse.inst.cfg │ │ │ ├── cartesio_0.8_pc_extra_coarse.inst.cfg │ │ │ ├── cartesio_0.8_pc_high.inst.cfg │ │ │ └── cartesio_0.8_pc_normal.inst.cfg │ │ ├── petg │ │ │ ├── cartesio_0.25_petg_high.inst.cfg │ │ │ ├── cartesio_0.25_petg_normal.inst.cfg │ │ │ ├── cartesio_0.4_petg_high.inst.cfg │ │ │ ├── cartesio_0.4_petg_normal.inst.cfg │ │ │ ├── cartesio_0.8_petg_coarse.inst.cfg │ │ │ ├── cartesio_0.8_petg_extra_coarse.inst.cfg │ │ │ ├── cartesio_0.8_petg_high.inst.cfg │ │ │ └── cartesio_0.8_petg_normal.inst.cfg │ │ ├── pla │ │ │ ├── cartesio_0.25_pla_high.inst.cfg │ │ │ ├── cartesio_0.25_pla_normal.inst.cfg │ │ │ ├── cartesio_0.4_pla_high.inst.cfg │ │ │ ├── cartesio_0.4_pla_normal.inst.cfg │ │ │ ├── cartesio_0.8_pla_coarse.inst.cfg │ │ │ ├── cartesio_0.8_pla_extra_coarse.inst.cfg │ │ │ ├── cartesio_0.8_pla_high.inst.cfg │ │ │ └── cartesio_0.8_pla_normal.inst.cfg │ │ └── pva │ │ │ ├── cartesio_0.25_pva_high.inst.cfg │ │ │ ├── cartesio_0.25_pva_normal.inst.cfg │ │ │ ├── cartesio_0.4_pva_high.inst.cfg │ │ │ ├── cartesio_0.4_pva_normal.inst.cfg │ │ │ ├── cartesio_0.8_pva_coarse.inst.cfg │ │ │ ├── cartesio_0.8_pva_extra_coarse.inst.cfg │ │ │ ├── cartesio_0.8_pva_high.inst.cfg │ │ │ └── cartesio_0.8_pva_normal.inst.cfg │ ├── coarse.inst.cfg │ ├── dagoma │ │ ├── dagoma_discoeasy200_pla_fast.inst.cfg │ │ ├── dagoma_discoeasy200_pla_fine.inst.cfg │ │ ├── dagoma_discoeasy200_pla_standard.inst.cfg │ │ ├── dagoma_global_fast.inst.cfg │ │ ├── dagoma_global_fine.inst.cfg │ │ ├── dagoma_global_standard.inst.cfg │ │ ├── dagoma_magis_pla_fast.inst.cfg │ │ ├── dagoma_magis_pla_fine.inst.cfg │ │ ├── dagoma_magis_pla_standard.inst.cfg │ │ ├── dagoma_neva_pla_fast.inst.cfg │ │ ├── dagoma_neva_pla_fine.inst.cfg │ │ └── dagoma_neva_pla_standard.inst.cfg │ ├── deltacomb │ │ ├── deltacomb_abs_Draft_Quality.inst.cfg │ │ ├── deltacomb_abs_Fast_Quality.inst.cfg │ │ ├── deltacomb_abs_High_Quality.inst.cfg │ │ ├── deltacomb_abs_Normal_Quality.inst.cfg │ │ ├── deltacomb_abs_Verydraft_Quality.inst.cfg │ │ ├── deltacomb_global_Draft_Quality.inst.cfg │ │ ├── deltacomb_global_Fast_Quality.inst.cfg │ │ ├── deltacomb_global_High_Quality.inst.cfg │ │ ├── deltacomb_global_Normal_Quality.inst.cfg │ │ ├── deltacomb_global_Verydraft_Quality.inst.cfg │ │ ├── deltacomb_pla_Draft_Quality.inst.cfg │ │ ├── deltacomb_pla_Fast_Quality.inst.cfg │ │ ├── deltacomb_pla_High_Quality.inst.cfg │ │ ├── deltacomb_pla_Normal_Quality.inst.cfg │ │ └── deltacomb_pla_Verydraft_Quality.inst.cfg │ ├── draft.inst.cfg │ ├── extra_coarse.inst.cfg │ ├── extra_fast.inst.cfg │ ├── fabtotum │ │ ├── fabtotum_abs_fast.inst.cfg │ │ ├── fabtotum_abs_high.inst.cfg │ │ ├── fabtotum_abs_normal.inst.cfg │ │ ├── fabtotum_nylon_fast.inst.cfg │ │ ├── fabtotum_nylon_high.inst.cfg │ │ ├── fabtotum_nylon_normal.inst.cfg │ │ ├── fabtotum_pla_fast.inst.cfg │ │ ├── fabtotum_pla_high.inst.cfg │ │ ├── fabtotum_pla_normal.inst.cfg │ │ ├── fabtotum_tpu_fast.inst.cfg │ │ ├── fabtotum_tpu_high.inst.cfg │ │ └── fabtotum_tpu_normal.inst.cfg │ ├── fast.inst.cfg │ ├── gmax15plus │ │ ├── gmax15plus_pla_dual_normal.inst.cfg │ │ ├── gmax15plus_pla_dual_thick.inst.cfg │ │ ├── gmax15plus_pla_dual_thin.inst.cfg │ │ ├── gmax15plus_pla_dual_very_thick.inst.cfg │ │ ├── gmax15plus_pla_normal.inst.cfg │ │ ├── gmax15plus_pla_thick.inst.cfg │ │ ├── gmax15plus_pla_thin.inst.cfg │ │ └── gmax15plus_pla_very_thick.inst.cfg │ ├── high.inst.cfg │ ├── imade3d_jellybox │ │ ├── generic_petg_0.4_coarse.inst.cfg │ │ ├── generic_petg_0.4_coarse_2-fans.inst.cfg │ │ ├── generic_petg_0.4_medium.inst.cfg │ │ ├── generic_petg_0.4_medium_2-fans.inst.cfg │ │ ├── generic_pla_0.4_coarse.inst.cfg │ │ ├── generic_pla_0.4_coarse_2-fans.inst.cfg │ │ ├── generic_pla_0.4_fine.inst.cfg │ │ ├── generic_pla_0.4_fine_2-fans.inst.cfg │ │ ├── generic_pla_0.4_medium.inst.cfg │ │ ├── generic_pla_0.4_medium_2-fans.inst.cfg │ │ ├── generic_pla_0.4_ultrafine.inst.cfg │ │ ├── generic_pla_0.4_ultrafine_2-fans.inst.cfg │ │ ├── imade3d_jellybox_coarse.inst.cfg │ │ ├── imade3d_jellybox_fine.inst.cfg │ │ ├── imade3d_jellybox_normal.inst.cfg │ │ └── imade3d_jellybox_ultrafine.inst.cfg │ ├── kemiq_q2 │ │ ├── kemiq_q2_beta_abs_draft.inst.cfg │ │ ├── kemiq_q2_beta_abs_extra_fine.inst.cfg │ │ ├── kemiq_q2_beta_abs_fine.inst.cfg │ │ ├── kemiq_q2_beta_abs_low.inst.cfg │ │ ├── kemiq_q2_beta_abs_normal.inst.cfg │ │ ├── kemiq_q2_beta_pla_draft.inst.cfg │ │ ├── kemiq_q2_beta_pla_extra_fine.inst.cfg │ │ ├── kemiq_q2_beta_pla_fine.inst.cfg │ │ ├── kemiq_q2_beta_pla_low.inst.cfg │ │ ├── kemiq_q2_beta_pla_normal.inst.cfg │ │ ├── kemiq_q2_gama_pla_draft.inst.cfg │ │ ├── kemiq_q2_gama_pla_extra_fine.inst.cfg │ │ ├── kemiq_q2_gama_pla_fine.inst.cfg │ │ ├── kemiq_q2_gama_pla_low.inst.cfg │ │ └── kemiq_q2_gama_pla_normal.inst.cfg │ ├── malyan_m200 │ │ ├── abs │ │ │ ├── malyan_m200_abs_draft.inst.cfg │ │ │ ├── malyan_m200_abs_fast.inst.cfg │ │ │ ├── malyan_m200_abs_high.inst.cfg │ │ │ ├── malyan_m200_abs_normal.inst.cfg │ │ │ ├── malyan_m200_abs_superdraft.inst.cfg │ │ │ ├── malyan_m200_abs_thickerdraft.inst.cfg │ │ │ ├── malyan_m200_abs_ultra.inst.cfg │ │ │ └── malyan_m200_abs_verydraft.inst.cfg │ │ ├── malyan_m200_global_Draft_Quality.inst.cfg │ │ ├── malyan_m200_global_Fast_Quality.inst.cfg │ │ ├── malyan_m200_global_High_Quality.inst.cfg │ │ ├── malyan_m200_global_Normal_Quality.inst.cfg │ │ ├── malyan_m200_global_SuperDraft_Quality.inst.cfg │ │ ├── malyan_m200_global_ThickerDraft_Quality.inst.cfg │ │ ├── malyan_m200_global_Ultra_Quality.inst.cfg │ │ ├── malyan_m200_global_VeryDraft_Quality.inst.cfg │ │ ├── petg │ │ │ ├── malyan_m200_petg_draft.inst.cfg │ │ │ ├── malyan_m200_petg_fast.inst.cfg │ │ │ ├── malyan_m200_petg_high.inst.cfg │ │ │ ├── malyan_m200_petg_normal.inst.cfg │ │ │ ├── malyan_m200_petg_superdraft.inst.cfg │ │ │ ├── malyan_m200_petg_thickerdraft.inst.cfg │ │ │ ├── malyan_m200_petg_ultra.inst.cfg │ │ │ └── malyan_m200_petg_verydraft.inst.cfg │ │ └── pla │ │ │ ├── malyan_m200_pla_draft.inst.cfg │ │ │ ├── malyan_m200_pla_fast.inst.cfg │ │ │ ├── malyan_m200_pla_high.inst.cfg │ │ │ ├── malyan_m200_pla_normal.inst.cfg │ │ │ ├── malyan_m200_pla_superdraft.inst.cfg │ │ │ ├── malyan_m200_pla_thickerdraft.inst.cfg │ │ │ ├── malyan_m200_pla_ultra.inst.cfg │ │ │ └── malyan_m200_pla_verydraft.inst.cfg │ ├── monoprice_select_mini_v2 │ │ ├── abs │ │ │ ├── monoprice_select_mini_v2_abs_draft.inst.cfg │ │ │ ├── monoprice_select_mini_v2_abs_fast.inst.cfg │ │ │ ├── monoprice_select_mini_v2_abs_high.inst.cfg │ │ │ ├── monoprice_select_mini_v2_abs_normal.inst.cfg │ │ │ ├── monoprice_select_mini_v2_abs_superdraft.inst.cfg │ │ │ ├── monoprice_select_mini_v2_abs_thickerdraft.inst.cfg │ │ │ ├── monoprice_select_mini_v2_abs_ultra.inst.cfg │ │ │ └── monoprice_select_mini_v2_abs_verydraft.inst.cfg │ │ ├── monoprice_select_mini_v2_global_Draft_Quality.inst.cfg │ │ ├── monoprice_select_mini_v2_global_Fast_Quality.inst.cfg │ │ ├── monoprice_select_mini_v2_global_High_Quality.inst.cfg │ │ ├── monoprice_select_mini_v2_global_Normal_Quality.inst.cfg │ │ ├── monoprice_select_mini_v2_global_SuperDraft_Quality.inst.cfg │ │ ├── monoprice_select_mini_v2_global_ThickerDraft_Quality.inst.cfg │ │ ├── monoprice_select_mini_v2_global_Ultra_Quality.inst.cfg │ │ ├── monoprice_select_mini_v2_global_VeryDraft_Quality.inst.cfg │ │ ├── nylon │ │ │ ├── monoprice_select_mini_v2_nylon_draft.inst.cfg │ │ │ ├── monoprice_select_mini_v2_nylon_fast.inst.cfg │ │ │ ├── monoprice_select_mini_v2_nylon_high.inst.cfg │ │ │ ├── monoprice_select_mini_v2_nylon_normal.inst.cfg │ │ │ ├── monoprice_select_mini_v2_nylon_superdraft.inst.cfg │ │ │ ├── monoprice_select_mini_v2_nylon_thickerdraft.inst.cfg │ │ │ ├── monoprice_select_mini_v2_nylon_ultra.inst.cfg │ │ │ └── monoprice_select_mini_v2_nylon_verydraft.inst.cfg │ │ ├── pc │ │ │ ├── monoprice_select_mini_v2_pc_draft.inst.cfg │ │ │ ├── monoprice_select_mini_v2_pc_fast.inst.cfg │ │ │ ├── monoprice_select_mini_v2_pc_high.inst.cfg │ │ │ ├── monoprice_select_mini_v2_pc_normal.inst.cfg │ │ │ ├── monoprice_select_mini_v2_pc_superdraft.inst.cfg │ │ │ ├── monoprice_select_mini_v2_pc_thickerdraft.inst.cfg │ │ │ ├── monoprice_select_mini_v2_pc_ultra.inst.cfg │ │ │ └── monoprice_select_mini_v2_pc_verydraft.inst.cfg │ │ ├── petg │ │ │ ├── monoprice_select_mini_v2_petg_draft.inst.cfg │ │ │ ├── monoprice_select_mini_v2_petg_fast.inst.cfg │ │ │ ├── monoprice_select_mini_v2_petg_high.inst.cfg │ │ │ ├── monoprice_select_mini_v2_petg_normal.inst.cfg │ │ │ ├── monoprice_select_mini_v2_petg_superdraft.inst.cfg │ │ │ ├── monoprice_select_mini_v2_petg_thickerdraft.inst.cfg │ │ │ ├── monoprice_select_mini_v2_petg_ultra.inst.cfg │ │ │ └── monoprice_select_mini_v2_petg_verydraft.inst.cfg │ │ └── pla │ │ │ ├── monoprice_select_mini_v2_pla_draft.inst.cfg │ │ │ ├── monoprice_select_mini_v2_pla_fast.inst.cfg │ │ │ ├── monoprice_select_mini_v2_pla_high.inst.cfg │ │ │ ├── monoprice_select_mini_v2_pla_normal.inst.cfg │ │ │ ├── monoprice_select_mini_v2_pla_superdraft.inst.cfg │ │ │ ├── monoprice_select_mini_v2_pla_thickerdraft.inst.cfg │ │ │ ├── monoprice_select_mini_v2_pla_ultra.inst.cfg │ │ │ └── monoprice_select_mini_v2_pla_verydraft.inst.cfg │ ├── normal.inst.cfg │ ├── peopoly_moai │ │ ├── peopoly_moai_coarse.inst.cfg │ │ ├── peopoly_moai_draft.inst.cfg │ │ ├── peopoly_moai_extra_high.inst.cfg │ │ ├── peopoly_moai_high.inst.cfg │ │ └── peopoly_moai_normal.inst.cfg │ ├── tevo_blackwidow │ │ ├── tevo_blackwidow_draft.inst.cfg │ │ ├── tevo_blackwidow_high.inst.cfg │ │ └── tevo_blackwidow_normal.inst.cfg │ ├── tizyx_k25 │ │ └── tizyx_k25_normal.inst.cfg │ ├── ultimaker2 │ │ ├── um2_draft.inst.cfg │ │ ├── um2_fast.inst.cfg │ │ ├── um2_high.inst.cfg │ │ └── um2_normal.inst.cfg │ ├── ultimaker2_plus │ │ ├── pla_0.25_normal.inst.cfg │ │ ├── pla_0.4_fast.inst.cfg │ │ ├── pla_0.4_high.inst.cfg │ │ ├── pla_0.4_normal.inst.cfg │ │ ├── pla_0.6_normal.inst.cfg │ │ ├── pla_0.8_normal.inst.cfg │ │ ├── um2p_abs_0.25_normal.inst.cfg │ │ ├── um2p_abs_0.4_fast.inst.cfg │ │ ├── um2p_abs_0.4_high.inst.cfg │ │ ├── um2p_abs_0.4_normal.inst.cfg │ │ ├── um2p_abs_0.6_normal.inst.cfg │ │ ├── um2p_abs_0.8_normal.inst.cfg │ │ ├── um2p_cpe_0.25_normal.inst.cfg │ │ ├── um2p_cpe_0.4_fast.inst.cfg │ │ ├── um2p_cpe_0.4_high.inst.cfg │ │ ├── um2p_cpe_0.4_normal.inst.cfg │ │ ├── um2p_cpe_0.6_normal.inst.cfg │ │ ├── um2p_cpe_0.8_normal.inst.cfg │ │ ├── um2p_cpep_0.4_draft.inst.cfg │ │ ├── um2p_cpep_0.4_normal.inst.cfg │ │ ├── um2p_cpep_0.6_draft.inst.cfg │ │ ├── um2p_cpep_0.6_normal.inst.cfg │ │ ├── um2p_cpep_0.8_draft.inst.cfg │ │ ├── um2p_cpep_0.8_normal.inst.cfg │ │ ├── um2p_global_Coarse_Quality.inst.cfg │ │ ├── um2p_global_Draft_Quality.inst.cfg │ │ ├── um2p_global_Extra_Coarse_Quality.inst.cfg │ │ ├── um2p_global_Fast_Quality.inst.cfg │ │ ├── um2p_global_High_Quality.inst.cfg │ │ ├── um2p_global_Normal_Quality.inst.cfg │ │ ├── um2p_nylon_0.25_high.inst.cfg │ │ ├── um2p_nylon_0.25_normal.inst.cfg │ │ ├── um2p_nylon_0.4_fast.inst.cfg │ │ ├── um2p_nylon_0.4_normal.inst.cfg │ │ ├── um2p_nylon_0.6_fast.inst.cfg │ │ ├── um2p_nylon_0.6_normal.inst.cfg │ │ ├── um2p_nylon_0.8_draft.inst.cfg │ │ ├── um2p_nylon_0.8_normal.inst.cfg │ │ ├── um2p_pc_0.25_high.inst.cfg │ │ ├── um2p_pc_0.25_normal.inst.cfg │ │ ├── um2p_pc_0.4_fast.inst.cfg │ │ ├── um2p_pc_0.4_normal.inst.cfg │ │ ├── um2p_pc_0.6_fast.inst.cfg │ │ ├── um2p_pc_0.6_normal.inst.cfg │ │ ├── um2p_pc_0.8_draft.inst.cfg │ │ ├── um2p_pc_0.8_normal.inst.cfg │ │ ├── um2p_pp_0.4_fast.inst.cfg │ │ ├── um2p_pp_0.4_normal.inst.cfg │ │ ├── um2p_pp_0.6_draft.inst.cfg │ │ ├── um2p_pp_0.6_fast.inst.cfg │ │ ├── um2p_pp_0.8_draft.inst.cfg │ │ ├── um2p_pp_0.8_verydraft.inst.cfg │ │ ├── um2p_tpu_0.25_high.inst.cfg │ │ ├── um2p_tpu_0.4_normal.inst.cfg │ │ └── um2p_tpu_0.6_fast.inst.cfg │ ├── ultimaker3 │ │ ├── um3_aa0.25_ABS_Normal_Quality.inst.cfg │ │ ├── um3_aa0.25_CPE_Normal_Quality.inst.cfg │ │ ├── um3_aa0.25_Nylon_Normal_Quality.inst.cfg │ │ ├── um3_aa0.25_PC_Normal_Quality.inst.cfg │ │ ├── um3_aa0.25_PLA_Normal_Quality.inst.cfg │ │ ├── um3_aa0.25_PP_Normal_Quality.inst.cfg │ │ ├── um3_aa0.25_TPLA_Normal_Quality.inst.cfg │ │ ├── um3_aa0.4_ABS_Draft_Print.inst.cfg │ │ ├── um3_aa0.4_ABS_Fast_Print.inst.cfg │ │ ├── um3_aa0.4_ABS_High_Quality.inst.cfg │ │ ├── um3_aa0.4_ABS_Normal_Quality.inst.cfg │ │ ├── um3_aa0.4_BAM_Draft_Print.inst.cfg │ │ ├── um3_aa0.4_BAM_Fast_Print.inst.cfg │ │ ├── um3_aa0.4_BAM_Normal_Quality.inst.cfg │ │ ├── um3_aa0.4_CPEP_Draft_Print.inst.cfg │ │ ├── um3_aa0.4_CPEP_Fast_Print.inst.cfg │ │ ├── um3_aa0.4_CPEP_High_Quality.inst.cfg │ │ ├── um3_aa0.4_CPEP_Normal_Quality.inst.cfg │ │ ├── um3_aa0.4_CPE_Draft_Print.inst.cfg │ │ ├── um3_aa0.4_CPE_Fast_Print.inst.cfg │ │ ├── um3_aa0.4_CPE_High_Quality.inst.cfg │ │ ├── um3_aa0.4_CPE_Normal_Quality.inst.cfg │ │ ├── um3_aa0.4_Nylon_Draft_Print.inst.cfg │ │ ├── um3_aa0.4_Nylon_Fast_Print.inst.cfg │ │ ├── um3_aa0.4_Nylon_High_Quality.inst.cfg │ │ ├── um3_aa0.4_Nylon_Normal_Quality.inst.cfg │ │ ├── um3_aa0.4_PC_Draft_Print.inst.cfg │ │ ├── um3_aa0.4_PC_Fast_Print.inst.cfg │ │ ├── um3_aa0.4_PC_High_Quality.inst.cfg │ │ ├── um3_aa0.4_PC_Normal_Quality.inst.cfg │ │ ├── um3_aa0.4_PLA_Draft_Print.inst.cfg │ │ ├── um3_aa0.4_PLA_Fast_Print.inst.cfg │ │ ├── um3_aa0.4_PLA_High_Quality.inst.cfg │ │ ├── um3_aa0.4_PLA_Normal_Quality.inst.cfg │ │ ├── um3_aa0.4_PP_Draft_Print.inst.cfg │ │ ├── um3_aa0.4_PP_Fast_Print.inst.cfg │ │ ├── um3_aa0.4_PP_Normal_Quality.inst.cfg │ │ ├── um3_aa0.4_TPLA_Draft_Print.inst.cfg │ │ ├── um3_aa0.4_TPLA_Fast_Print.inst.cfg │ │ ├── um3_aa0.4_TPLA_Normal_Quality.inst.cfg │ │ ├── um3_aa0.4_TPU_Draft_Print.inst.cfg │ │ ├── um3_aa0.4_TPU_Fast_Print.inst.cfg │ │ ├── um3_aa0.4_TPU_Normal_Quality.inst.cfg │ │ ├── um3_aa0.8_ABS_Draft_Print.inst.cfg │ │ ├── um3_aa0.8_ABS_Superdraft_Print.inst.cfg │ │ ├── um3_aa0.8_ABS_Verydraft_Print.inst.cfg │ │ ├── um3_aa0.8_CPEP_Fast_Print.inst.cfg │ │ ├── um3_aa0.8_CPEP_Superdraft_Print.inst.cfg │ │ ├── um3_aa0.8_CPEP_Verydraft_Print.inst.cfg │ │ ├── um3_aa0.8_CPE_Draft_Print.inst.cfg │ │ ├── um3_aa0.8_CPE_Superdraft_Print.inst.cfg │ │ ├── um3_aa0.8_CPE_Verydraft_Print.inst.cfg │ │ ├── um3_aa0.8_Nylon_Draft_Print.inst.cfg │ │ ├── um3_aa0.8_Nylon_Superdraft_Print.inst.cfg │ │ ├── um3_aa0.8_Nylon_Verydraft_Print.inst.cfg │ │ ├── um3_aa0.8_PC_Fast_Print.inst.cfg │ │ ├── um3_aa0.8_PC_Superdraft_Print.inst.cfg │ │ ├── um3_aa0.8_PC_Verydraft_Print.inst.cfg │ │ ├── um3_aa0.8_PLA_Draft_Print.inst.cfg │ │ ├── um3_aa0.8_PLA_Superdraft_Print.inst.cfg │ │ ├── um3_aa0.8_PLA_Verydraft_Print.inst.cfg │ │ ├── um3_aa0.8_PP_Draft_Print.inst.cfg │ │ ├── um3_aa0.8_PP_Superdraft_Print.inst.cfg │ │ ├── um3_aa0.8_PP_Verydraft_Print.inst.cfg │ │ ├── um3_aa0.8_TPLA_Draft_Print.inst.cfg │ │ ├── um3_aa0.8_TPLA_Superdraft_Print.inst.cfg │ │ ├── um3_aa0.8_TPLA_Verydraft_Print.inst.cfg │ │ ├── um3_aa0.8_TPU_Draft_Print.inst.cfg │ │ ├── um3_aa0.8_TPU_Superdraft_Print.inst.cfg │ │ ├── um3_aa0.8_TPU_Verydraft_Print.inst.cfg │ │ ├── um3_bb0.4_PVA_Draft_Print.inst.cfg │ │ ├── um3_bb0.4_PVA_Fast_Print.inst.cfg │ │ ├── um3_bb0.4_PVA_High_Quality.inst.cfg │ │ ├── um3_bb0.4_PVA_Normal_Quality.inst.cfg │ │ ├── um3_bb0.8_PVA_Draft_Print.inst.cfg │ │ ├── um3_bb0.8_PVA_Superdraft_Print.inst.cfg │ │ ├── um3_bb0.8_PVA_Verydraft_Print.inst.cfg │ │ ├── um3_global_Draft_Quality.inst.cfg │ │ ├── um3_global_Fast_Quality.inst.cfg │ │ ├── um3_global_High_Quality.inst.cfg │ │ ├── um3_global_Normal_Quality.inst.cfg │ │ ├── um3_global_Superdraft_Quality.inst.cfg │ │ └── um3_global_Verydraft_Quality.inst.cfg │ ├── ultimaker_original │ │ ├── umo_global_Coarse_Quality.inst.cfg │ │ ├── umo_global_Draft_Quality.inst.cfg │ │ ├── umo_global_Extra_Coarse_Quality.inst.cfg │ │ ├── umo_global_Fast_Quality.inst.cfg │ │ ├── umo_global_High_Quality.inst.cfg │ │ └── umo_global_Normal_Quality.inst.cfg │ ├── ultimaker_s5 │ │ ├── um_s5_aa0.25_ABS_Normal_Quality.inst.cfg │ │ ├── um_s5_aa0.25_CPE_Normal_Quality.inst.cfg │ │ ├── um_s5_aa0.25_Nylon_Normal_Quality.inst.cfg │ │ ├── um_s5_aa0.25_PC_Normal_Quality.inst.cfg │ │ ├── um_s5_aa0.25_PLA_Normal_Quality.inst.cfg │ │ ├── um_s5_aa0.25_PP_Normal_Quality.inst.cfg │ │ ├── um_s5_aa0.25_TPLA_Normal_Quality.inst.cfg │ │ ├── um_s5_aa0.4_ABS_Draft_Print.inst.cfg │ │ ├── um_s5_aa0.4_ABS_Fast_Print.inst.cfg │ │ ├── um_s5_aa0.4_ABS_High_Quality.inst.cfg │ │ ├── um_s5_aa0.4_ABS_Normal_Quality.inst.cfg │ │ ├── um_s5_aa0.4_BAM_Draft_Print.inst.cfg │ │ ├── um_s5_aa0.4_BAM_Fast_Print.inst.cfg │ │ ├── um_s5_aa0.4_BAM_Normal_Quality.inst.cfg │ │ ├── um_s5_aa0.4_CPEP_Draft_Print.inst.cfg │ │ ├── um_s5_aa0.4_CPEP_Fast_Print.inst.cfg │ │ ├── um_s5_aa0.4_CPEP_High_Quality.inst.cfg │ │ ├── um_s5_aa0.4_CPEP_Normal_Quality.inst.cfg │ │ ├── um_s5_aa0.4_CPE_Draft_Print.inst.cfg │ │ ├── um_s5_aa0.4_CPE_Fast_Print.inst.cfg │ │ ├── um_s5_aa0.4_CPE_High_Quality.inst.cfg │ │ ├── um_s5_aa0.4_CPE_Normal_Quality.inst.cfg │ │ ├── um_s5_aa0.4_Nylon_Draft_Print.inst.cfg │ │ ├── um_s5_aa0.4_Nylon_Fast_Print.inst.cfg │ │ ├── um_s5_aa0.4_Nylon_High_Quality.inst.cfg │ │ ├── um_s5_aa0.4_Nylon_Normal_Quality.inst.cfg │ │ ├── um_s5_aa0.4_PC_Draft_Print.inst.cfg │ │ ├── um_s5_aa0.4_PC_Fast_Print.inst.cfg │ │ ├── um_s5_aa0.4_PC_High_Quality.inst.cfg │ │ ├── um_s5_aa0.4_PC_Normal_Quality.inst.cfg │ │ ├── um_s5_aa0.4_PLA_Draft_Print.inst.cfg │ │ ├── um_s5_aa0.4_PLA_Fast_Print.inst.cfg │ │ ├── um_s5_aa0.4_PLA_High_Quality.inst.cfg │ │ ├── um_s5_aa0.4_PLA_Normal_Quality.inst.cfg │ │ ├── um_s5_aa0.4_PP_Draft_Print.inst.cfg │ │ ├── um_s5_aa0.4_PP_Fast_Print.inst.cfg │ │ ├── um_s5_aa0.4_PP_Normal_Quality.inst.cfg │ │ ├── um_s5_aa0.4_TPLA_Draft_Print.inst.cfg │ │ ├── um_s5_aa0.4_TPLA_Fast_Print.inst.cfg │ │ ├── um_s5_aa0.4_TPLA_High_Quality.inst.cfg │ │ ├── um_s5_aa0.4_TPLA_Normal_Quality.inst.cfg │ │ ├── um_s5_aa0.4_TPU_Draft_Print.inst.cfg │ │ ├── um_s5_aa0.4_TPU_Fast_Print.inst.cfg │ │ ├── um_s5_aa0.4_TPU_Normal_Quality.inst.cfg │ │ ├── um_s5_aa0.4_aluminum_ABS_Draft_Print.inst.cfg │ │ ├── um_s5_aa0.4_aluminum_ABS_Fast_Print.inst.cfg │ │ ├── um_s5_aa0.4_aluminum_ABS_High_Quality.inst.cfg │ │ ├── um_s5_aa0.4_aluminum_ABS_Normal_Quality.inst.cfg │ │ ├── um_s5_aa0.4_aluminum_CPEP_Draft_Print.inst.cfg │ │ ├── um_s5_aa0.4_aluminum_CPEP_Fast_Print.inst.cfg │ │ ├── um_s5_aa0.4_aluminum_CPEP_High_Quality.inst.cfg │ │ ├── um_s5_aa0.4_aluminum_CPEP_Normal_Quality.inst.cfg │ │ ├── um_s5_aa0.4_aluminum_CPE_Draft_Print.inst.cfg │ │ ├── um_s5_aa0.4_aluminum_CPE_Fast_Print.inst.cfg │ │ ├── um_s5_aa0.4_aluminum_CPE_High_Quality.inst.cfg │ │ ├── um_s5_aa0.4_aluminum_CPE_Normal_Quality.inst.cfg │ │ ├── um_s5_aa0.4_aluminum_PC_Draft_Print.inst.cfg │ │ ├── um_s5_aa0.4_aluminum_PC_Fast_Print.inst.cfg │ │ ├── um_s5_aa0.4_aluminum_PC_High_Quality.inst.cfg │ │ ├── um_s5_aa0.4_aluminum_PC_Normal_Quality.inst.cfg │ │ ├── um_s5_aa0.4_aluminum_PP_Draft_Print.inst.cfg │ │ ├── um_s5_aa0.4_aluminum_PP_Fast_Print.inst.cfg │ │ ├── um_s5_aa0.4_aluminum_PP_Normal_Quality.inst.cfg │ │ ├── um_s5_aa0.8_ABS_Draft_Print.inst.cfg │ │ ├── um_s5_aa0.8_ABS_Superdraft_Print.inst.cfg │ │ ├── um_s5_aa0.8_ABS_Verydraft_Print.inst.cfg │ │ ├── um_s5_aa0.8_CPEP_Fast_Print.inst.cfg │ │ ├── um_s5_aa0.8_CPEP_Superdraft_Print.inst.cfg │ │ ├── um_s5_aa0.8_CPEP_Verydraft_Print.inst.cfg │ │ ├── um_s5_aa0.8_CPE_Draft_Print.inst.cfg │ │ ├── um_s5_aa0.8_CPE_Superdraft_Print.inst.cfg │ │ ├── um_s5_aa0.8_CPE_Verydraft_Print.inst.cfg │ │ ├── um_s5_aa0.8_Nylon_Draft_Print.inst.cfg │ │ ├── um_s5_aa0.8_Nylon_Superdraft_Print.inst.cfg │ │ ├── um_s5_aa0.8_Nylon_Verydraft_Print.inst.cfg │ │ ├── um_s5_aa0.8_PC_Fast_Print.inst.cfg │ │ ├── um_s5_aa0.8_PC_Superdraft_Print.inst.cfg │ │ ├── um_s5_aa0.8_PC_Verydraft_Print.inst.cfg │ │ ├── um_s5_aa0.8_PLA_Draft_Print.inst.cfg │ │ ├── um_s5_aa0.8_PLA_Superdraft_Print.inst.cfg │ │ ├── um_s5_aa0.8_PLA_Verydraft_Print.inst.cfg │ │ ├── um_s5_aa0.8_PP_Draft_Print.inst.cfg │ │ ├── um_s5_aa0.8_PP_Superdraft_Print.inst.cfg │ │ ├── um_s5_aa0.8_PP_Verydraft_Print.inst.cfg │ │ ├── um_s5_aa0.8_TPLA_Draft_Print.inst.cfg │ │ ├── um_s5_aa0.8_TPLA_Superdraft_Print.inst.cfg │ │ ├── um_s5_aa0.8_TPLA_Verydraft_Print.inst.cfg │ │ ├── um_s5_aa0.8_TPU_Draft_Print.inst.cfg │ │ ├── um_s5_aa0.8_TPU_Superdraft_Print.inst.cfg │ │ ├── um_s5_aa0.8_TPU_Verydraft_Print.inst.cfg │ │ ├── um_s5_aa0.8_aluminum_ABS_Draft_Print.inst.cfg │ │ ├── um_s5_aa0.8_aluminum_ABS_Superdraft_Print.inst.cfg │ │ ├── um_s5_aa0.8_aluminum_ABS_Verydraft_Print.inst.cfg │ │ ├── um_s5_aa0.8_aluminum_CPEP_Fast_Print.inst.cfg │ │ ├── um_s5_aa0.8_aluminum_CPEP_Superdraft_Print.inst.cfg │ │ ├── um_s5_aa0.8_aluminum_CPEP_Verydraft_Print.inst.cfg │ │ ├── um_s5_aa0.8_aluminum_CPE_Draft_Print.inst.cfg │ │ ├── um_s5_aa0.8_aluminum_CPE_Superdraft_Print.inst.cfg │ │ ├── um_s5_aa0.8_aluminum_CPE_Verydraft_Print.inst.cfg │ │ ├── um_s5_aa0.8_aluminum_PC_Fast_Print.inst.cfg │ │ ├── um_s5_aa0.8_aluminum_PC_Superdraft_Print.inst.cfg │ │ ├── um_s5_aa0.8_aluminum_PC_Verydraft_Print.inst.cfg │ │ ├── um_s5_aa0.8_aluminum_PP_Draft_Print.inst.cfg │ │ ├── um_s5_aa0.8_aluminum_PP_Superdraft_Print.inst.cfg │ │ ├── um_s5_aa0.8_aluminum_PP_Verydraft_Print.inst.cfg │ │ ├── um_s5_bb0.4_PVA_Draft_Print.inst.cfg │ │ ├── um_s5_bb0.4_PVA_Fast_Print.inst.cfg │ │ ├── um_s5_bb0.4_PVA_High_Quality.inst.cfg │ │ ├── um_s5_bb0.4_PVA_Normal_Quality.inst.cfg │ │ ├── um_s5_bb0.8_PVA_Draft_Print.inst.cfg │ │ ├── um_s5_bb0.8_PVA_Superdraft_Print.inst.cfg │ │ ├── um_s5_bb0.8_PVA_Verydraft_Print.inst.cfg │ │ ├── um_s5_cc0.6_CFFCPE_Draft_Print.inst.cfg │ │ ├── um_s5_cc0.6_CFFPA_Draft_Print.inst.cfg │ │ ├── um_s5_cc0.6_GFFCPE_Draft_Print.inst.cfg │ │ ├── um_s5_cc0.6_GFFPA_Draft_Print.inst.cfg │ │ ├── um_s5_global_Draft_Quality.inst.cfg │ │ ├── um_s5_global_Fast_Quality.inst.cfg │ │ ├── um_s5_global_High_Quality.inst.cfg │ │ ├── um_s5_global_Normal_Quality.inst.cfg │ │ ├── um_s5_global_Superdraft_Quality.inst.cfg │ │ └── um_s5_global_Verydraft_Quality.inst.cfg │ ├── vertex_delta_k8800 │ │ ├── k8800_ABS_Extreme_Quality.inst.cfg │ │ ├── k8800_ABS_High_Quality.inst.cfg │ │ ├── k8800_ABS_Normal_Quality.inst.cfg │ │ ├── k8800_Global_Extreme_Quality.inst.cfg │ │ ├── k8800_Global_High_Quality.inst.cfg │ │ ├── k8800_Global_Normal_Quality.inst.cfg │ │ ├── k8800_PET_Extreme_Quality.inst.cfg │ │ ├── k8800_PET_High_Quality.inst.cfg │ │ ├── k8800_PET_Normal_Quality.inst.cfg │ │ ├── k8800_PLA_Extreme_Quality.inst.cfg │ │ ├── k8800_PLA_High_Quality.inst.cfg │ │ ├── k8800_PLA_Normal_Quality.inst.cfg │ │ ├── k8800_TPU_Extreme_Quality.inst.cfg │ │ ├── k8800_TPU_High_Quality.inst.cfg │ │ └── k8800_TPU_Normal_Quality.inst.cfg │ └── zyyx │ │ ├── zyyx_agile_global_fast.inst.cfg │ │ ├── zyyx_agile_global_fine.inst.cfg │ │ ├── zyyx_agile_global_normal.inst.cfg │ │ ├── zyyx_agile_pro_flex_fast.inst.cfg │ │ ├── zyyx_agile_pro_flex_fine.inst.cfg │ │ ├── zyyx_agile_pro_flex_normal.inst.cfg │ │ ├── zyyx_agile_pro_pla_fast.inst.cfg │ │ ├── zyyx_agile_pro_pla_fine.inst.cfg │ │ └── zyyx_agile_pro_pla_normal.inst.cfg ├── setting_visibility │ ├── advanced.cfg │ ├── basic.cfg │ ├── blackbelt.cfg │ └── expert.cfg ├── shaders │ ├── camera_distance.shader │ ├── grid.shader │ ├── overhang.shader │ ├── striped.shader │ └── transparent_object.shader ├── themes │ ├── blackbelt │ │ ├── icons │ │ │ └── category_blackbelt.svg │ │ ├── styles.qml │ │ └── theme.json │ ├── cura-dark │ │ ├── icons │ │ │ └── tab_status_unknown.svg │ │ ├── images │ │ │ └── logo.svg │ │ └── theme.json │ └── cura-light │ │ ├── fonts │ │ ├── noto-sans-display │ │ │ ├── LICENSE_OFL.txt │ │ │ ├── noto-sans-display-100-thin-italic.ttf │ │ │ ├── noto-sans-display-100-thin.ttf │ │ │ ├── noto-sans-display-200-extra-light-italic.ttf │ │ │ ├── noto-sans-display-200-extra-light.ttf │ │ │ ├── noto-sans-display-300-light-italic.ttf │ │ │ ├── noto-sans-display-300-light.ttf │ │ │ ├── noto-sans-display-400-regular-italic.ttf │ │ │ ├── noto-sans-display-400-regular.ttf │ │ │ ├── noto-sans-display-500-medium-italic.ttf │ │ │ ├── noto-sans-display-500-medium.ttf │ │ │ ├── noto-sans-display-600-semi-bold-italic.ttf │ │ │ ├── noto-sans-display-600-semi-bold.ttf │ │ │ ├── noto-sans-display-700-bold-italic.ttf │ │ │ ├── noto-sans-display-700-bold.ttf │ │ │ ├── noto-sans-display-800-extra-bold-italic.ttf │ │ │ ├── noto-sans-display-800-extra-bold.ttf │ │ │ ├── noto-sans-display-900-black-italic.ttf │ │ │ └── noto-sans-display-900-black.ttf │ │ └── noto-sans │ │ │ ├── LICENSE_OFL.txt │ │ │ ├── noto-sans-100-thin-italic.ttf │ │ │ ├── noto-sans-100-thin.ttf │ │ │ ├── noto-sans-200-extra-light-italic.ttf │ │ │ ├── noto-sans-200-extra-light.ttf │ │ │ ├── noto-sans-300-light-italic.ttf │ │ │ ├── noto-sans-300-light.ttf │ │ │ ├── noto-sans-400-regular-italic.ttf │ │ │ ├── noto-sans-400-regular.ttf │ │ │ ├── noto-sans-500-medium-italic.ttf │ │ │ ├── noto-sans-500-medium.ttf │ │ │ ├── noto-sans-600-semi-bold-italic.ttf │ │ │ ├── noto-sans-600-semi-bold.ttf │ │ │ ├── noto-sans-700-bold-italic.ttf │ │ │ ├── noto-sans-700-bold.ttf │ │ │ ├── noto-sans-800-extra-bold-italic.ttf │ │ │ ├── noto-sans-800-extra-bold.ttf │ │ │ ├── noto-sans-900-black-italic.ttf │ │ │ └── noto-sans-900-black.ttf │ │ ├── icons │ │ ├── application.svg │ │ ├── arrow_bottom.svg │ │ ├── arrow_left.svg │ │ ├── arrow_right.svg │ │ ├── arrow_top.svg │ │ ├── basic.svg │ │ ├── buildplate.svg │ │ ├── category_adhesion.svg │ │ ├── category_blackmagic.svg │ │ ├── category_cool.svg │ │ ├── category_dual.svg │ │ ├── category_experimental.svg │ │ ├── category_fixes.svg │ │ ├── category_infill.svg │ │ ├── category_layer_height.svg │ │ ├── category_machine.svg │ │ ├── category_material.svg │ │ ├── category_shell.svg │ │ ├── category_shield.svg │ │ ├── category_speed.svg │ │ ├── category_support.svg │ │ ├── category_travel.svg │ │ ├── category_unknown.svg │ │ ├── check.svg │ │ ├── connected.svg │ │ ├── cross1.svg │ │ ├── cross2.svg │ │ ├── dense.svg │ │ ├── disconnected.svg │ │ ├── dot.svg │ │ ├── drop_down_button.svg │ │ ├── extruder_button.svg │ │ ├── favorites_star_empty.svg │ │ ├── favorites_star_full.svg │ │ ├── formula.svg │ │ ├── gradual.svg │ │ ├── hollow.svg │ │ ├── home.svg │ │ ├── link.svg │ │ ├── load.svg │ │ ├── menu.svg │ │ ├── minus.svg │ │ ├── mirror.svg │ │ ├── notice.svg │ │ ├── pencil.svg │ │ ├── play.svg │ │ ├── plugin.svg │ │ ├── plus.svg │ │ ├── print_time.svg │ │ ├── printer_group.svg │ │ ├── printer_single.svg │ │ ├── printsetup.svg │ │ ├── quick.svg │ │ ├── reset.svg │ │ ├── rotate.svg │ │ ├── rotate_layflat.svg │ │ ├── rotate_reset.svg │ │ ├── scale.svg │ │ ├── scale_max.svg │ │ ├── scale_reset.svg │ │ ├── search.svg │ │ ├── setting_per_object.svg │ │ ├── settings.svg │ │ ├── solid.svg │ │ ├── sparse.svg │ │ ├── star.svg │ │ ├── tab_status_busy.svg │ │ ├── tab_status_connected.svg │ │ ├── tab_status_finished.svg │ │ ├── tab_status_paused.svg │ │ ├── tab_status_stopped.svg │ │ ├── tab_status_unknown.svg │ │ ├── translate.svg │ │ ├── ulti.svg │ │ ├── view_3d.svg │ │ ├── view_front.svg │ │ ├── view_layer.svg │ │ ├── view_left.svg │ │ ├── view_normal.svg │ │ ├── view_right.svg │ │ ├── view_top.svg │ │ ├── view_xray.svg │ │ ├── viewmode.svg │ │ └── warning.svg │ │ ├── images │ │ └── logo.svg │ │ ├── styles.qml │ │ └── theme.json └── variants │ ├── blackbelt_15_0.25.inst.cfg │ ├── blackbelt_15_0.4.inst.cfg │ ├── blackbelt_15_0.6.inst.cfg │ ├── blackbelt_15_0.8.inst.cfg │ ├── blackbelt_15_1.0.inst.cfg │ ├── blackbelt_25_0.25.inst.cfg │ ├── blackbelt_25_0.4.inst.cfg │ ├── blackbelt_25_0.6.inst.cfg │ ├── blackbelt_25_0.8.inst.cfg │ ├── blackbelt_25_1.0.inst.cfg │ ├── blackbelt_35_0.25.inst.cfg │ ├── blackbelt_35_0.4.inst.cfg │ ├── blackbelt_35_0.6.inst.cfg │ ├── blackbelt_35_0.8.inst.cfg │ ├── blackbelt_35_1.0.inst.cfg │ ├── blackbelt_45_0.25.inst.cfg │ ├── blackbelt_45_0.4.inst.cfg │ ├── blackbelt_45_0.6.inst.cfg │ ├── blackbelt_45_0.8.inst.cfg │ ├── blackbelt_45_1.0.inst.cfg │ ├── blackbeltvd_15_0.2.inst.cfg │ ├── blackbeltvd_15_0.4.inst.cfg │ ├── blackbeltvd_15_0.6.inst.cfg │ ├── blackbeltvd_15_0.9.inst.cfg │ ├── blackbeltvd_15_1.2.inst.cfg │ ├── blackbeltvd_25_0.2.inst.cfg │ ├── blackbeltvd_25_0.4.inst.cfg │ ├── blackbeltvd_25_0.6.inst.cfg │ ├── blackbeltvd_25_0.9.inst.cfg │ ├── blackbeltvd_25_1.2.inst.cfg │ ├── blackbeltvd_35_0.2.inst.cfg │ ├── blackbeltvd_35_0.4.inst.cfg │ ├── blackbeltvd_35_0.6.inst.cfg │ ├── blackbeltvd_35_0.9.inst.cfg │ ├── blackbeltvd_35_1.2.inst.cfg │ ├── blackbeltvd_45_0.2.inst.cfg │ ├── blackbeltvd_45_0.4.inst.cfg │ ├── blackbeltvd_45_0.6.inst.cfg │ ├── blackbeltvd_45_0.9.inst.cfg │ ├── blackbeltvd_45_1.2.inst.cfg │ ├── cartesio_0.25.inst.cfg │ ├── cartesio_0.4.inst.cfg │ ├── cartesio_0.8.inst.cfg │ ├── fabtotum_hyb35.inst.cfg │ ├── fabtotum_lite04.inst.cfg │ ├── fabtotum_lite06.inst.cfg │ ├── fabtotum_pro02.inst.cfg │ ├── fabtotum_pro04.inst.cfg │ ├── fabtotum_pro06.inst.cfg │ ├── fabtotum_pro08.inst.cfg │ ├── felixtec4_0.25.inst.cfg │ ├── felixtec4_0.35.inst.cfg │ ├── felixtec4_0.50.inst.cfg │ ├── felixtec4_0.70.inst.cfg │ ├── gmax15plus_025_e3d.inst.cfg │ ├── gmax15plus_04_e3d.inst.cfg │ ├── gmax15plus_05_e3d.inst.cfg │ ├── gmax15plus_05_jhead.inst.cfg │ ├── gmax15plus_06_e3d.inst.cfg │ ├── gmax15plus_08_e3d.inst.cfg │ ├── gmax15plus_10_jhead.inst.cfg │ ├── gmax15plus_dual_025_e3d.inst.cfg │ ├── gmax15plus_dual_04_e3d.inst.cfg │ ├── gmax15plus_dual_05_e3d.inst.cfg │ ├── gmax15plus_dual_05_jhead.inst.cfg │ ├── gmax15plus_dual_06_e3d.inst.cfg │ ├── gmax15plus_dual_08_e3d.inst.cfg │ ├── gmax15plus_dual_10_jhead.inst.cfg │ ├── imade3d_jellybox_0.4.inst.cfg │ ├── imade3d_jellybox_0.4_2-fans.inst.cfg │ ├── tizyx_k25_0.2.inst.cfg │ ├── tizyx_k25_0.3.inst.cfg │ ├── tizyx_k25_0.4.inst.cfg │ ├── tizyx_k25_0.5.inst.cfg │ ├── tizyx_k25_0.6.inst.cfg │ ├── tizyx_k25_0.8.inst.cfg │ ├── tizyx_k25_1.0.inst.cfg │ ├── ultimaker2_0.25.inst.cfg │ ├── ultimaker2_0.4.inst.cfg │ ├── ultimaker2_0.6.inst.cfg │ ├── ultimaker2_0.8.inst.cfg │ ├── ultimaker2_extended_0.25.inst.cfg │ ├── ultimaker2_extended_0.4.inst.cfg │ ├── ultimaker2_extended_0.6.inst.cfg │ ├── ultimaker2_extended_0.8.inst.cfg │ ├── ultimaker2_extended_plus_0.25.inst.cfg │ ├── ultimaker2_extended_plus_0.4.inst.cfg │ ├── ultimaker2_extended_plus_0.6.inst.cfg │ ├── ultimaker2_extended_plus_0.8.inst.cfg │ ├── ultimaker2_plus_0.25.inst.cfg │ ├── ultimaker2_plus_0.4.inst.cfg │ ├── ultimaker2_plus_0.6.inst.cfg │ ├── ultimaker2_plus_0.8.inst.cfg │ ├── ultimaker3_aa0.25.inst.cfg │ ├── ultimaker3_aa0.8.inst.cfg │ ├── ultimaker3_aa04.inst.cfg │ ├── ultimaker3_bb0.8.inst.cfg │ ├── ultimaker3_bb04.inst.cfg │ ├── ultimaker3_extended_aa0.25.inst.cfg │ ├── ultimaker3_extended_aa0.8.inst.cfg │ ├── ultimaker3_extended_aa04.inst.cfg │ ├── ultimaker3_extended_bb0.8.inst.cfg │ ├── ultimaker3_extended_bb04.inst.cfg │ ├── ultimaker_s5_aa0.25.inst.cfg │ ├── ultimaker_s5_aa0.8.inst.cfg │ ├── ultimaker_s5_aa04.inst.cfg │ ├── ultimaker_s5_aluminum.inst.cfg │ ├── ultimaker_s5_bb0.8.inst.cfg │ ├── ultimaker_s5_bb04.inst.cfg │ ├── ultimaker_s5_cc06.inst.cfg │ └── ultimaker_s5_glass.inst.cfg ├── run_in_docker.sh ├── run_mypy.py ├── scripts ├── check_gcode_buffer.py └── check_shortcut_keys.py ├── setup.py └── tests ├── Settings ├── TestCuraContainerRegistry.py ├── TestExtruderStack.py ├── TestGlobalStack.py ├── TestSettingVisibilityPresets.py ├── conftest.py └── setting_visiblity_preset_test.cfg ├── TestArrange.py ├── TestMachineAction.py ├── TestOAuth2.py ├── TestPrintInformation.py ├── TestProfileRequirements.py └── conftest.py /.dockerignore: -------------------------------------------------------------------------------- 1 | .git 2 | .github 3 | resources/materials 4 | CuraEngine -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/.gitignore -------------------------------------------------------------------------------- /BLACKBELT Cura.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/BLACKBELT Cura.ico -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/Dockerfile -------------------------------------------------------------------------------- /Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/Jenkinsfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/README.md -------------------------------------------------------------------------------- /cmake/CuraTests.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/cmake/CuraTests.cmake -------------------------------------------------------------------------------- /cura.appdata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/cura.appdata.xml -------------------------------------------------------------------------------- /cura.desktop.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/cura.desktop.in -------------------------------------------------------------------------------- /cura.sharedmimeinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/cura.sharedmimeinfo -------------------------------------------------------------------------------- /cura/API/Account.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/cura/API/Account.py -------------------------------------------------------------------------------- /cura/API/Backups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/cura/API/Backups.py -------------------------------------------------------------------------------- /cura/API/Interface/Settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/cura/API/Interface/Settings.py -------------------------------------------------------------------------------- /cura/API/Interface/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/cura/API/Interface/__init__.py -------------------------------------------------------------------------------- /cura/API/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/cura/API/__init__.py -------------------------------------------------------------------------------- /cura/Arranging/Arrange.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/cura/Arranging/Arrange.py -------------------------------------------------------------------------------- /cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py -------------------------------------------------------------------------------- /cura/Arranging/ArrangeObjectsJob.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/cura/Arranging/ArrangeObjectsJob.py -------------------------------------------------------------------------------- /cura/Arranging/ShapeArray.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/cura/Arranging/ShapeArray.py -------------------------------------------------------------------------------- /cura/Arranging/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cura/AutoSave.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/cura/AutoSave.py -------------------------------------------------------------------------------- /cura/Backups/Backup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/cura/Backups/Backup.py -------------------------------------------------------------------------------- /cura/Backups/BackupsManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/cura/Backups/BackupsManager.py -------------------------------------------------------------------------------- /cura/Backups/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cura/BuildVolume.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/cura/BuildVolume.py -------------------------------------------------------------------------------- /cura/CameraAnimation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/cura/CameraAnimation.py -------------------------------------------------------------------------------- /cura/CrashHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/cura/CrashHandler.py -------------------------------------------------------------------------------- /cura/CuraActions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/cura/CuraActions.py -------------------------------------------------------------------------------- /cura/CuraApplication.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/cura/CuraApplication.py -------------------------------------------------------------------------------- /cura/CuraPackageManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/cura/CuraPackageManager.py -------------------------------------------------------------------------------- /cura/CuraSplashScreen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/cura/CuraSplashScreen.py -------------------------------------------------------------------------------- /cura/CuraVersion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/cura/CuraVersion.py -------------------------------------------------------------------------------- /cura/CuraVersion.py.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/cura/CuraVersion.py.in -------------------------------------------------------------------------------- /cura/Layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/cura/Layer.py -------------------------------------------------------------------------------- /cura/LayerData.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/cura/LayerData.py -------------------------------------------------------------------------------- /cura/LayerDataBuilder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/cura/LayerDataBuilder.py -------------------------------------------------------------------------------- /cura/LayerDataDecorator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/cura/LayerDataDecorator.py -------------------------------------------------------------------------------- /cura/LayerPolygon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/cura/LayerPolygon.py -------------------------------------------------------------------------------- /cura/MachineAction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/cura/MachineAction.py -------------------------------------------------------------------------------- /cura/MachineActionManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/cura/MachineActionManager.py -------------------------------------------------------------------------------- /cura/Machines/ContainerNode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/cura/Machines/ContainerNode.py -------------------------------------------------------------------------------- /cura/Machines/MachineErrorChecker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/cura/Machines/MachineErrorChecker.py -------------------------------------------------------------------------------- /cura/Machines/MaterialGroup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/cura/Machines/MaterialGroup.py -------------------------------------------------------------------------------- /cura/Machines/MaterialManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/cura/Machines/MaterialManager.py -------------------------------------------------------------------------------- /cura/Machines/MaterialNode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/cura/Machines/MaterialNode.py -------------------------------------------------------------------------------- /cura/Machines/Models/BaseMaterialsModel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/cura/Machines/Models/BaseMaterialsModel.py -------------------------------------------------------------------------------- /cura/Machines/Models/BuildPlateModel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/cura/Machines/Models/BuildPlateModel.py -------------------------------------------------------------------------------- /cura/Machines/Models/FavoriteMaterialsModel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/cura/Machines/Models/FavoriteMaterialsModel.py -------------------------------------------------------------------------------- /cura/Machines/Models/GenericMaterialsModel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/cura/Machines/Models/GenericMaterialsModel.py -------------------------------------------------------------------------------- /cura/Machines/Models/MachineManagementModel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/cura/Machines/Models/MachineManagementModel.py -------------------------------------------------------------------------------- /cura/Machines/Models/MaterialBrandsModel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/cura/Machines/Models/MaterialBrandsModel.py -------------------------------------------------------------------------------- /cura/Machines/Models/MultiBuildPlateModel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/cura/Machines/Models/MultiBuildPlateModel.py -------------------------------------------------------------------------------- /cura/Machines/Models/NozzleModel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/cura/Machines/Models/NozzleModel.py -------------------------------------------------------------------------------- /cura/Machines/Models/QualityManagementModel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/cura/Machines/Models/QualityManagementModel.py -------------------------------------------------------------------------------- /cura/Machines/Models/QualitySettingsModel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/cura/Machines/Models/QualitySettingsModel.py -------------------------------------------------------------------------------- /cura/Machines/Models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cura/Machines/QualityChangesGroup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/cura/Machines/QualityChangesGroup.py -------------------------------------------------------------------------------- /cura/Machines/QualityGroup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/cura/Machines/QualityGroup.py -------------------------------------------------------------------------------- /cura/Machines/QualityManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/cura/Machines/QualityManager.py -------------------------------------------------------------------------------- /cura/Machines/QualityNode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/cura/Machines/QualityNode.py -------------------------------------------------------------------------------- /cura/Machines/VariantManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/cura/Machines/VariantManager.py -------------------------------------------------------------------------------- /cura/Machines/VariantType.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/cura/Machines/VariantType.py -------------------------------------------------------------------------------- /cura/Machines/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cura/MultiplyObjectsJob.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/cura/MultiplyObjectsJob.py -------------------------------------------------------------------------------- /cura/OAuth2/AuthorizationHelpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/cura/OAuth2/AuthorizationHelpers.py -------------------------------------------------------------------------------- /cura/OAuth2/AuthorizationRequestHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/cura/OAuth2/AuthorizationRequestHandler.py -------------------------------------------------------------------------------- /cura/OAuth2/AuthorizationRequestServer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/cura/OAuth2/AuthorizationRequestServer.py -------------------------------------------------------------------------------- /cura/OAuth2/AuthorizationService.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/cura/OAuth2/AuthorizationService.py -------------------------------------------------------------------------------- /cura/OAuth2/LocalAuthorizationServer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/cura/OAuth2/LocalAuthorizationServer.py -------------------------------------------------------------------------------- /cura/OAuth2/Models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/cura/OAuth2/Models.py -------------------------------------------------------------------------------- /cura/OAuth2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/cura/OAuth2/__init__.py -------------------------------------------------------------------------------- /cura/ObjectsModel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/cura/ObjectsModel.py -------------------------------------------------------------------------------- /cura/OneAtATimeIterator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/cura/OneAtATimeIterator.py -------------------------------------------------------------------------------- /cura/Operations/PlatformPhysicsOperation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/cura/Operations/PlatformPhysicsOperation.py -------------------------------------------------------------------------------- /cura/Operations/SetBuildPlateNumberOperation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/cura/Operations/SetBuildPlateNumberOperation.py -------------------------------------------------------------------------------- /cura/Operations/SetParentOperation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/cura/Operations/SetParentOperation.py -------------------------------------------------------------------------------- /cura/Operations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cura/PickingPass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/cura/PickingPass.py -------------------------------------------------------------------------------- /cura/PlatformPhysics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/cura/PlatformPhysics.py -------------------------------------------------------------------------------- /cura/PreviewPass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/cura/PreviewPass.py -------------------------------------------------------------------------------- /cura/PrintInformation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/cura/PrintInformation.py -------------------------------------------------------------------------------- /cura/PrintJobPreviewImageProvider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/cura/PrintJobPreviewImageProvider.py -------------------------------------------------------------------------------- /cura/PrinterOutput/ConfigurationModel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/cura/PrinterOutput/ConfigurationModel.py -------------------------------------------------------------------------------- /cura/PrinterOutput/ExtruderConfigurationModel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/cura/PrinterOutput/ExtruderConfigurationModel.py -------------------------------------------------------------------------------- /cura/PrinterOutput/ExtruderOutputModel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/cura/PrinterOutput/ExtruderOutputModel.py -------------------------------------------------------------------------------- /cura/PrinterOutput/FirmwareUpdater.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/cura/PrinterOutput/FirmwareUpdater.py -------------------------------------------------------------------------------- /cura/PrinterOutput/GenericOutputController.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/cura/PrinterOutput/GenericOutputController.py -------------------------------------------------------------------------------- /cura/PrinterOutput/MaterialOutputModel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/cura/PrinterOutput/MaterialOutputModel.py -------------------------------------------------------------------------------- /cura/PrinterOutput/NetworkMJPGImage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/cura/PrinterOutput/NetworkMJPGImage.py -------------------------------------------------------------------------------- /cura/PrinterOutput/NetworkedPrinterOutputDevice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/cura/PrinterOutput/NetworkedPrinterOutputDevice.py -------------------------------------------------------------------------------- /cura/PrinterOutput/PrintJobOutputModel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/cura/PrinterOutput/PrintJobOutputModel.py -------------------------------------------------------------------------------- /cura/PrinterOutput/PrinterOutputController.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/cura/PrinterOutput/PrinterOutputController.py -------------------------------------------------------------------------------- /cura/PrinterOutput/PrinterOutputModel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/cura/PrinterOutput/PrinterOutputModel.py -------------------------------------------------------------------------------- /cura/PrinterOutput/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cura/PrinterOutputDevice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/cura/PrinterOutputDevice.py -------------------------------------------------------------------------------- /cura/ReaderWriters/ProfileReader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/cura/ReaderWriters/ProfileReader.py -------------------------------------------------------------------------------- /cura/ReaderWriters/ProfileWriter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/cura/ReaderWriters/ProfileWriter.py -------------------------------------------------------------------------------- /cura/ReaderWriters/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cura/Scene/BlockSlicingDecorator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/cura/Scene/BlockSlicingDecorator.py -------------------------------------------------------------------------------- /cura/Scene/BuildPlateDecorator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/cura/Scene/BuildPlateDecorator.py -------------------------------------------------------------------------------- /cura/Scene/ConvexHullDecorator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/cura/Scene/ConvexHullDecorator.py -------------------------------------------------------------------------------- /cura/Scene/ConvexHullNode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/cura/Scene/ConvexHullNode.py -------------------------------------------------------------------------------- /cura/Scene/CuraSceneController.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/cura/Scene/CuraSceneController.py -------------------------------------------------------------------------------- /cura/Scene/CuraSceneNode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/cura/Scene/CuraSceneNode.py -------------------------------------------------------------------------------- /cura/Scene/GCodeListDecorator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/cura/Scene/GCodeListDecorator.py -------------------------------------------------------------------------------- /cura/Scene/SliceableObjectDecorator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/cura/Scene/SliceableObjectDecorator.py -------------------------------------------------------------------------------- /cura/Scene/ZOffsetDecorator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/cura/Scene/ZOffsetDecorator.py -------------------------------------------------------------------------------- /cura/Scene/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cura/Settings/ContainerManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/cura/Settings/ContainerManager.py -------------------------------------------------------------------------------- /cura/Settings/CuraContainerRegistry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/cura/Settings/CuraContainerRegistry.py -------------------------------------------------------------------------------- /cura/Settings/CuraContainerStack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/cura/Settings/CuraContainerStack.py -------------------------------------------------------------------------------- /cura/Settings/CuraFormulaFunctions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/cura/Settings/CuraFormulaFunctions.py -------------------------------------------------------------------------------- /cura/Settings/CuraStackBuilder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/cura/Settings/CuraStackBuilder.py -------------------------------------------------------------------------------- /cura/Settings/Exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/cura/Settings/Exceptions.py -------------------------------------------------------------------------------- /cura/Settings/ExtruderManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/cura/Settings/ExtruderManager.py -------------------------------------------------------------------------------- /cura/Settings/ExtruderStack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/cura/Settings/ExtruderStack.py -------------------------------------------------------------------------------- /cura/Settings/ExtrudersModel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/cura/Settings/ExtrudersModel.py -------------------------------------------------------------------------------- /cura/Settings/GlobalStack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/cura/Settings/GlobalStack.py -------------------------------------------------------------------------------- /cura/Settings/MachineManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/cura/Settings/MachineManager.py -------------------------------------------------------------------------------- /cura/Settings/MachineNameValidator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/cura/Settings/MachineNameValidator.py -------------------------------------------------------------------------------- /cura/Settings/MaterialSettingsVisibilityHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/cura/Settings/MaterialSettingsVisibilityHandler.py -------------------------------------------------------------------------------- /cura/Settings/PerObjectContainerStack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/cura/Settings/PerObjectContainerStack.py -------------------------------------------------------------------------------- /cura/Settings/SetObjectExtruderOperation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/cura/Settings/SetObjectExtruderOperation.py -------------------------------------------------------------------------------- /cura/Settings/SettingInheritanceManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/cura/Settings/SettingInheritanceManager.py -------------------------------------------------------------------------------- /cura/Settings/SettingOverrideDecorator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/cura/Settings/SettingOverrideDecorator.py -------------------------------------------------------------------------------- /cura/Settings/SettingVisibilityPreset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/cura/Settings/SettingVisibilityPreset.py -------------------------------------------------------------------------------- /cura/Settings/SidebarCustomMenuItemsModel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/cura/Settings/SidebarCustomMenuItemsModel.py -------------------------------------------------------------------------------- /cura/Settings/SimpleModeSettingsManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/cura/Settings/SimpleModeSettingsManager.py -------------------------------------------------------------------------------- /cura/Settings/UserChangesModel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/cura/Settings/UserChangesModel.py -------------------------------------------------------------------------------- /cura/Settings/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/cura/Settings/__init__.py -------------------------------------------------------------------------------- /cura/Settings/cura_empty_instance_containers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/cura/Settings/cura_empty_instance_containers.py -------------------------------------------------------------------------------- /cura/SingleInstance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/cura/SingleInstance.py -------------------------------------------------------------------------------- /cura/Snapshot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/cura/Snapshot.py -------------------------------------------------------------------------------- /cura/Stages/CuraStage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/cura/Stages/CuraStage.py -------------------------------------------------------------------------------- /cura/Stages/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/cura/Stages/__init__.py -------------------------------------------------------------------------------- /cura/TaskManagement/OnExitCallbackManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/cura/TaskManagement/OnExitCallbackManager.py -------------------------------------------------------------------------------- /cura/TaskManagement/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cura/Utils/Threading.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/cura/Utils/Threading.py -------------------------------------------------------------------------------- /cura/Utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cura/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cura_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/cura_app.py -------------------------------------------------------------------------------- /docs/Cura_Data_Model.odg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/docs/Cura_Data_Model.odg -------------------------------------------------------------------------------- /docs/How_to_use_the_flame_graph_profiler.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/docs/How_to_use_the_flame_graph_profiler.md -------------------------------------------------------------------------------- /icons/cura-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/icons/cura-128.png -------------------------------------------------------------------------------- /icons/cura-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/icons/cura-32.png -------------------------------------------------------------------------------- /icons/cura-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/icons/cura-48.png -------------------------------------------------------------------------------- /icons/cura-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/icons/cura-64.png -------------------------------------------------------------------------------- /icons/cura.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/icons/cura.icns -------------------------------------------------------------------------------- /icons/cura.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/icons/cura.ico -------------------------------------------------------------------------------- /installer.nsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/installer.nsi -------------------------------------------------------------------------------- /plugins/3MFReader/ThreeMFReader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/plugins/3MFReader/ThreeMFReader.py -------------------------------------------------------------------------------- /plugins/3MFReader/ThreeMFWorkspaceReader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/plugins/3MFReader/ThreeMFWorkspaceReader.py -------------------------------------------------------------------------------- /plugins/3MFReader/WorkspaceDialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/plugins/3MFReader/WorkspaceDialog.py -------------------------------------------------------------------------------- /plugins/3MFReader/WorkspaceDialog.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/plugins/3MFReader/WorkspaceDialog.qml -------------------------------------------------------------------------------- /plugins/3MFReader/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/plugins/3MFReader/__init__.py -------------------------------------------------------------------------------- /plugins/3MFReader/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/plugins/3MFReader/plugin.json -------------------------------------------------------------------------------- /plugins/3MFWriter/ThreeMFWorkspaceWriter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/plugins/3MFWriter/ThreeMFWorkspaceWriter.py -------------------------------------------------------------------------------- /plugins/3MFWriter/ThreeMFWriter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/plugins/3MFWriter/ThreeMFWriter.py -------------------------------------------------------------------------------- /plugins/3MFWriter/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/plugins/3MFWriter/__init__.py -------------------------------------------------------------------------------- /plugins/3MFWriter/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/plugins/3MFWriter/plugin.json -------------------------------------------------------------------------------- /plugins/BlackBeltPlugin/BlackBeltDecorator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/plugins/BlackBeltPlugin/BlackBeltDecorator.py -------------------------------------------------------------------------------- /plugins/BlackBeltPlugin/BlackBeltPlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/plugins/BlackBeltPlugin/BlackBeltPlugin.py -------------------------------------------------------------------------------- /plugins/BlackBeltPlugin/BlackBeltSingleton.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/plugins/BlackBeltPlugin/BlackBeltSingleton.py -------------------------------------------------------------------------------- /plugins/BlackBeltPlugin/BuildVolumePatches.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/plugins/BlackBeltPlugin/BuildVolumePatches.py -------------------------------------------------------------------------------- /plugins/BlackBeltPlugin/CuraApplicationPatches.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/plugins/BlackBeltPlugin/CuraApplicationPatches.py -------------------------------------------------------------------------------- /plugins/BlackBeltPlugin/FlavorParserPatches.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/plugins/BlackBeltPlugin/FlavorParserPatches.py -------------------------------------------------------------------------------- /plugins/BlackBeltPlugin/PatchedCuraActions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/plugins/BlackBeltPlugin/PatchedCuraActions.py -------------------------------------------------------------------------------- /plugins/BlackBeltPlugin/PatchedMaterialManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/plugins/BlackBeltPlugin/PatchedMaterialManager.py -------------------------------------------------------------------------------- /plugins/BlackBeltPlugin/PrintInformationPatches.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/plugins/BlackBeltPlugin/PrintInformationPatches.py -------------------------------------------------------------------------------- /plugins/BlackBeltPlugin/ProcessSlicedLayersJob.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/plugins/BlackBeltPlugin/ProcessSlicedLayersJob.py -------------------------------------------------------------------------------- /plugins/BlackBeltPlugin/StartSliceJob.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/plugins/BlackBeltPlugin/StartSliceJob.py -------------------------------------------------------------------------------- /plugins/BlackBeltPlugin/SupportMeshCreator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/plugins/BlackBeltPlugin/SupportMeshCreator.py -------------------------------------------------------------------------------- /plugins/BlackBeltPlugin/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/plugins/BlackBeltPlugin/__init__.py -------------------------------------------------------------------------------- /plugins/BlackBeltPlugin/material_settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/plugins/BlackBeltPlugin/material_settings.json -------------------------------------------------------------------------------- /plugins/BlackBeltPlugin/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/plugins/BlackBeltPlugin/plugin.json -------------------------------------------------------------------------------- /plugins/BlackBeltPlugin/sidebar/PrepareSidebar.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/plugins/BlackBeltPlugin/sidebar/PrepareSidebar.qml -------------------------------------------------------------------------------- /plugins/BlackBeltPlugin/sidebar/SidebarHeader.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/plugins/BlackBeltPlugin/sidebar/SidebarHeader.qml -------------------------------------------------------------------------------- /plugins/BlackBeltPlugin/sidebar/SidebarSimple.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/plugins/BlackBeltPlugin/sidebar/SidebarSimple.qml -------------------------------------------------------------------------------- /plugins/ChangeLogPlugin/ChangeLog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/plugins/ChangeLogPlugin/ChangeLog.py -------------------------------------------------------------------------------- /plugins/ChangeLogPlugin/ChangeLog.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/plugins/ChangeLogPlugin/ChangeLog.qml -------------------------------------------------------------------------------- /plugins/ChangeLogPlugin/ChangeLog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/plugins/ChangeLogPlugin/ChangeLog.txt -------------------------------------------------------------------------------- /plugins/ChangeLogPlugin/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/plugins/ChangeLogPlugin/__init__.py -------------------------------------------------------------------------------- /plugins/ChangeLogPlugin/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/plugins/ChangeLogPlugin/plugin.json -------------------------------------------------------------------------------- /plugins/CuraEngineBackend/Cura.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/plugins/CuraEngineBackend/Cura.proto -------------------------------------------------------------------------------- /plugins/CuraEngineBackend/CuraEngineBackend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/plugins/CuraEngineBackend/CuraEngineBackend.py -------------------------------------------------------------------------------- /plugins/CuraEngineBackend/ProcessGCodeJob.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/plugins/CuraEngineBackend/ProcessGCodeJob.py -------------------------------------------------------------------------------- /plugins/CuraEngineBackend/StartSliceJob.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/plugins/CuraEngineBackend/StartSliceJob.py -------------------------------------------------------------------------------- /plugins/CuraEngineBackend/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/plugins/CuraEngineBackend/__init__.py -------------------------------------------------------------------------------- /plugins/CuraEngineBackend/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/plugins/CuraEngineBackend/plugin.json -------------------------------------------------------------------------------- /plugins/CuraProfileReader/CuraProfileReader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/plugins/CuraProfileReader/CuraProfileReader.py -------------------------------------------------------------------------------- /plugins/CuraProfileReader/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/plugins/CuraProfileReader/__init__.py -------------------------------------------------------------------------------- /plugins/CuraProfileReader/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/plugins/CuraProfileReader/plugin.json -------------------------------------------------------------------------------- /plugins/CuraProfileWriter/CuraProfileWriter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/plugins/CuraProfileWriter/CuraProfileWriter.py -------------------------------------------------------------------------------- /plugins/CuraProfileWriter/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/plugins/CuraProfileWriter/__init__.py -------------------------------------------------------------------------------- /plugins/CuraProfileWriter/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/plugins/CuraProfileWriter/plugin.json -------------------------------------------------------------------------------- /plugins/FirmwareUpdateChecker/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/plugins/FirmwareUpdateChecker/__init__.py -------------------------------------------------------------------------------- /plugins/FirmwareUpdateChecker/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/plugins/FirmwareUpdateChecker/plugin.json -------------------------------------------------------------------------------- /plugins/FirmwareUpdater/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/plugins/FirmwareUpdater/__init__.py -------------------------------------------------------------------------------- /plugins/FirmwareUpdater/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/plugins/FirmwareUpdater/plugin.json -------------------------------------------------------------------------------- /plugins/GCodeGzReader/GCodeGzReader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/plugins/GCodeGzReader/GCodeGzReader.py -------------------------------------------------------------------------------- /plugins/GCodeGzReader/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/plugins/GCodeGzReader/__init__.py -------------------------------------------------------------------------------- /plugins/GCodeGzReader/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/plugins/GCodeGzReader/plugin.json -------------------------------------------------------------------------------- /plugins/GCodeGzWriter/GCodeGzWriter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/plugins/GCodeGzWriter/GCodeGzWriter.py -------------------------------------------------------------------------------- /plugins/GCodeGzWriter/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/plugins/GCodeGzWriter/__init__.py -------------------------------------------------------------------------------- /plugins/GCodeGzWriter/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/plugins/GCodeGzWriter/plugin.json -------------------------------------------------------------------------------- /plugins/GCodeProfileReader/GCodeProfileReader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/plugins/GCodeProfileReader/GCodeProfileReader.py -------------------------------------------------------------------------------- /plugins/GCodeProfileReader/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/plugins/GCodeProfileReader/__init__.py -------------------------------------------------------------------------------- /plugins/GCodeProfileReader/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/plugins/GCodeProfileReader/plugin.json -------------------------------------------------------------------------------- /plugins/GCodeReader/FlavorParser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/plugins/GCodeReader/FlavorParser.py -------------------------------------------------------------------------------- /plugins/GCodeReader/GCodeReader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/plugins/GCodeReader/GCodeReader.py -------------------------------------------------------------------------------- /plugins/GCodeReader/MarlinFlavorParser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/plugins/GCodeReader/MarlinFlavorParser.py -------------------------------------------------------------------------------- /plugins/GCodeReader/RepRapFlavorParser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/plugins/GCodeReader/RepRapFlavorParser.py -------------------------------------------------------------------------------- /plugins/GCodeReader/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/plugins/GCodeReader/__init__.py -------------------------------------------------------------------------------- /plugins/GCodeReader/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/plugins/GCodeReader/plugin.json -------------------------------------------------------------------------------- /plugins/GCodeWriter/GCodeWriter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/plugins/GCodeWriter/GCodeWriter.py -------------------------------------------------------------------------------- /plugins/GCodeWriter/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/plugins/GCodeWriter/__init__.py -------------------------------------------------------------------------------- /plugins/GCodeWriter/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/plugins/GCodeWriter/plugin.json -------------------------------------------------------------------------------- /plugins/ImageReader/ConfigUI.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/plugins/ImageReader/ConfigUI.qml -------------------------------------------------------------------------------- /plugins/ImageReader/ImageReader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/plugins/ImageReader/ImageReader.py -------------------------------------------------------------------------------- /plugins/ImageReader/ImageReaderUI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/plugins/ImageReader/ImageReaderUI.py -------------------------------------------------------------------------------- /plugins/ImageReader/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/plugins/ImageReader/__init__.py -------------------------------------------------------------------------------- /plugins/ImageReader/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/plugins/ImageReader/plugin.json -------------------------------------------------------------------------------- /plugins/LegacyProfileReader/DictionaryOfDoom.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/plugins/LegacyProfileReader/DictionaryOfDoom.json -------------------------------------------------------------------------------- /plugins/LegacyProfileReader/LegacyProfileReader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/plugins/LegacyProfileReader/LegacyProfileReader.py -------------------------------------------------------------------------------- /plugins/LegacyProfileReader/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/plugins/LegacyProfileReader/__init__.py -------------------------------------------------------------------------------- /plugins/LegacyProfileReader/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/plugins/LegacyProfileReader/plugin.json -------------------------------------------------------------------------------- /plugins/MachineSettingsAction/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/plugins/MachineSettingsAction/__init__.py -------------------------------------------------------------------------------- /plugins/MachineSettingsAction/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/plugins/MachineSettingsAction/plugin.json -------------------------------------------------------------------------------- /plugins/ModelChecker/ModelChecker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/plugins/ModelChecker/ModelChecker.py -------------------------------------------------------------------------------- /plugins/ModelChecker/ModelChecker.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/plugins/ModelChecker/ModelChecker.qml -------------------------------------------------------------------------------- /plugins/ModelChecker/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/plugins/ModelChecker/__init__.py -------------------------------------------------------------------------------- /plugins/ModelChecker/model_checker.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/plugins/ModelChecker/model_checker.svg -------------------------------------------------------------------------------- /plugins/ModelChecker/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/plugins/ModelChecker/plugin.json -------------------------------------------------------------------------------- /plugins/MonitorStage/MonitorMainView.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/plugins/MonitorStage/MonitorMainView.qml -------------------------------------------------------------------------------- /plugins/MonitorStage/MonitorStage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/plugins/MonitorStage/MonitorStage.py -------------------------------------------------------------------------------- /plugins/MonitorStage/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/plugins/MonitorStage/__init__.py -------------------------------------------------------------------------------- /plugins/MonitorStage/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/plugins/MonitorStage/plugin.json -------------------------------------------------------------------------------- /plugins/PerObjectSettingsTool/PerObjectItem.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/plugins/PerObjectSettingsTool/PerObjectItem.qml -------------------------------------------------------------------------------- /plugins/PerObjectSettingsTool/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/plugins/PerObjectSettingsTool/__init__.py -------------------------------------------------------------------------------- /plugins/PerObjectSettingsTool/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/plugins/PerObjectSettingsTool/plugin.json -------------------------------------------------------------------------------- /plugins/PerObjectSettingsTool/tool_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/plugins/PerObjectSettingsTool/tool_icon.svg -------------------------------------------------------------------------------- /plugins/PostProcessingPlugin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/plugins/PostProcessingPlugin/README.md -------------------------------------------------------------------------------- /plugins/PostProcessingPlugin/Script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/plugins/PostProcessingPlugin/Script.py -------------------------------------------------------------------------------- /plugins/PostProcessingPlugin/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/plugins/PostProcessingPlugin/__init__.py -------------------------------------------------------------------------------- /plugins/PostProcessingPlugin/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/plugins/PostProcessingPlugin/plugin.json -------------------------------------------------------------------------------- /plugins/PostProcessingPlugin/postprocessing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/plugins/PostProcessingPlugin/postprocessing.svg -------------------------------------------------------------------------------- /plugins/PostProcessingPlugin/scripts/Stretch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/plugins/PostProcessingPlugin/scripts/Stretch.py -------------------------------------------------------------------------------- /plugins/PrepareStage/PrepareStage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/plugins/PrepareStage/PrepareStage.py -------------------------------------------------------------------------------- /plugins/PrepareStage/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/plugins/PrepareStage/__init__.py -------------------------------------------------------------------------------- /plugins/PrepareStage/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/plugins/PrepareStage/plugin.json -------------------------------------------------------------------------------- /plugins/RemovableDriveOutputDevice/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/plugins/RemovableDriveOutputDevice/__init__.py -------------------------------------------------------------------------------- /plugins/RemovableDriveOutputDevice/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/plugins/RemovableDriveOutputDevice/plugin.json -------------------------------------------------------------------------------- /plugins/SimulationView/LayerSlider.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/plugins/SimulationView/LayerSlider.qml -------------------------------------------------------------------------------- /plugins/SimulationView/NozzleNode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/plugins/SimulationView/NozzleNode.py -------------------------------------------------------------------------------- /plugins/SimulationView/PathSlider.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/plugins/SimulationView/PathSlider.qml -------------------------------------------------------------------------------- /plugins/SimulationView/SimulationPass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/plugins/SimulationView/SimulationPass.py -------------------------------------------------------------------------------- /plugins/SimulationView/SimulationSliderLabel.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/plugins/SimulationView/SimulationSliderLabel.qml -------------------------------------------------------------------------------- /plugins/SimulationView/SimulationView.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/plugins/SimulationView/SimulationView.py -------------------------------------------------------------------------------- /plugins/SimulationView/SimulationView.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/plugins/SimulationView/SimulationView.qml -------------------------------------------------------------------------------- /plugins/SimulationView/SimulationViewProxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/plugins/SimulationView/SimulationViewProxy.py -------------------------------------------------------------------------------- /plugins/SimulationView/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/plugins/SimulationView/__init__.py -------------------------------------------------------------------------------- /plugins/SimulationView/layers.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/plugins/SimulationView/layers.shader -------------------------------------------------------------------------------- /plugins/SimulationView/layers3d.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/plugins/SimulationView/layers3d.shader -------------------------------------------------------------------------------- /plugins/SimulationView/layers3d_shadow.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/plugins/SimulationView/layers3d_shadow.shader -------------------------------------------------------------------------------- /plugins/SimulationView/layers_shadow.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/plugins/SimulationView/layers_shadow.shader -------------------------------------------------------------------------------- /plugins/SimulationView/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/plugins/SimulationView/plugin.json -------------------------------------------------------------------------------- /plugins/SimulationView/resources/nozzle.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/plugins/SimulationView/resources/nozzle.stl -------------------------------------------------------------------------------- /plugins/SliceInfoPlugin/MoreInfoWindow.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/plugins/SliceInfoPlugin/MoreInfoWindow.qml -------------------------------------------------------------------------------- /plugins/SliceInfoPlugin/SliceInfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/plugins/SliceInfoPlugin/SliceInfo.py -------------------------------------------------------------------------------- /plugins/SliceInfoPlugin/SliceInfoJob.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/plugins/SliceInfoPlugin/SliceInfoJob.py -------------------------------------------------------------------------------- /plugins/SliceInfoPlugin/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/plugins/SliceInfoPlugin/__init__.py -------------------------------------------------------------------------------- /plugins/SliceInfoPlugin/example_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/plugins/SliceInfoPlugin/example_data.json -------------------------------------------------------------------------------- /plugins/SliceInfoPlugin/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/plugins/SliceInfoPlugin/plugin.json -------------------------------------------------------------------------------- /plugins/SolidView/SolidView.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/plugins/SolidView/SolidView.py -------------------------------------------------------------------------------- /plugins/SolidView/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/plugins/SolidView/__init__.py -------------------------------------------------------------------------------- /plugins/SolidView/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/plugins/SolidView/plugin.json -------------------------------------------------------------------------------- /plugins/SupportEraser/SupportEraser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/plugins/SupportEraser/SupportEraser.py -------------------------------------------------------------------------------- /plugins/SupportEraser/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/plugins/SupportEraser/__init__.py -------------------------------------------------------------------------------- /plugins/SupportEraser/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/plugins/SupportEraser/plugin.json -------------------------------------------------------------------------------- /plugins/SupportEraser/tool_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/plugins/SupportEraser/tool_icon.svg -------------------------------------------------------------------------------- /plugins/Toolbox/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/plugins/Toolbox/__init__.py -------------------------------------------------------------------------------- /plugins/Toolbox/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/plugins/Toolbox/plugin.json -------------------------------------------------------------------------------- /plugins/Toolbox/resources/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/plugins/Toolbox/resources/images/loading.gif -------------------------------------------------------------------------------- /plugins/Toolbox/resources/images/loading.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/plugins/Toolbox/resources/images/loading.svg -------------------------------------------------------------------------------- /plugins/Toolbox/resources/images/logobot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/plugins/Toolbox/resources/images/logobot.svg -------------------------------------------------------------------------------- /plugins/Toolbox/resources/qml/Toolbox.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/plugins/Toolbox/resources/qml/Toolbox.qml -------------------------------------------------------------------------------- /plugins/Toolbox/resources/qml/ToolboxFooter.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/plugins/Toolbox/resources/qml/ToolboxFooter.qml -------------------------------------------------------------------------------- /plugins/Toolbox/resources/qml/ToolboxHeader.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/plugins/Toolbox/resources/qml/ToolboxHeader.qml -------------------------------------------------------------------------------- /plugins/Toolbox/resources/qml/ToolboxShadow.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/plugins/Toolbox/resources/qml/ToolboxShadow.qml -------------------------------------------------------------------------------- /plugins/Toolbox/src/AuthorsModel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/plugins/Toolbox/src/AuthorsModel.py -------------------------------------------------------------------------------- /plugins/Toolbox/src/ConfigsModel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/plugins/Toolbox/src/ConfigsModel.py -------------------------------------------------------------------------------- /plugins/Toolbox/src/PackagesModel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/plugins/Toolbox/src/PackagesModel.py -------------------------------------------------------------------------------- /plugins/Toolbox/src/Toolbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/plugins/Toolbox/src/Toolbox.py -------------------------------------------------------------------------------- /plugins/Toolbox/src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/UFPWriter/UFPWriter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/plugins/UFPWriter/UFPWriter.py -------------------------------------------------------------------------------- /plugins/UFPWriter/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/plugins/UFPWriter/__init__.py -------------------------------------------------------------------------------- /plugins/UFPWriter/kitten.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/plugins/UFPWriter/kitten.png -------------------------------------------------------------------------------- /plugins/UFPWriter/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/plugins/UFPWriter/plugin.json -------------------------------------------------------------------------------- /plugins/UM3NetworkPrinting/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/plugins/UM3NetworkPrinting/__init__.py -------------------------------------------------------------------------------- /plugins/UM3NetworkPrinting/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/plugins/UM3NetworkPrinting/plugin.json -------------------------------------------------------------------------------- /plugins/USBPrinting/AutoDetectBaudJob.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/plugins/USBPrinting/AutoDetectBaudJob.py -------------------------------------------------------------------------------- /plugins/USBPrinting/AvrFirmwareUpdater.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/plugins/USBPrinting/AvrFirmwareUpdater.py -------------------------------------------------------------------------------- /plugins/USBPrinting/USBPrinterOutputDevice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/plugins/USBPrinting/USBPrinterOutputDevice.py -------------------------------------------------------------------------------- /plugins/USBPrinting/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/plugins/USBPrinting/__init__.py -------------------------------------------------------------------------------- /plugins/USBPrinting/avr_isp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/USBPrinting/avr_isp/chipDB.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/plugins/USBPrinting/avr_isp/chipDB.py -------------------------------------------------------------------------------- /plugins/USBPrinting/avr_isp/intelHex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/plugins/USBPrinting/avr_isp/intelHex.py -------------------------------------------------------------------------------- /plugins/USBPrinting/avr_isp/ispBase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/plugins/USBPrinting/avr_isp/ispBase.py -------------------------------------------------------------------------------- /plugins/USBPrinting/avr_isp/stk500v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/plugins/USBPrinting/avr_isp/stk500v2.py -------------------------------------------------------------------------------- /plugins/USBPrinting/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/plugins/USBPrinting/plugin.json -------------------------------------------------------------------------------- /plugins/UltimakerMachineActions/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/plugins/UltimakerMachineActions/__init__.py -------------------------------------------------------------------------------- /plugins/UltimakerMachineActions/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/plugins/UltimakerMachineActions/plugin.json -------------------------------------------------------------------------------- /plugins/UserAgreement/UserAgreement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/plugins/UserAgreement/UserAgreement.py -------------------------------------------------------------------------------- /plugins/UserAgreement/UserAgreement.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/plugins/UserAgreement/UserAgreement.qml -------------------------------------------------------------------------------- /plugins/UserAgreement/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/plugins/UserAgreement/__init__.py -------------------------------------------------------------------------------- /plugins/UserAgreement/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/plugins/UserAgreement/plugin.json -------------------------------------------------------------------------------- /plugins/X3DReader/X3DReader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/plugins/X3DReader/X3DReader.py -------------------------------------------------------------------------------- /plugins/X3DReader/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/plugins/X3DReader/__init__.py -------------------------------------------------------------------------------- /plugins/X3DReader/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/plugins/X3DReader/plugin.json -------------------------------------------------------------------------------- /plugins/XRayView/XRayPass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/plugins/XRayView/XRayPass.py -------------------------------------------------------------------------------- /plugins/XRayView/XRayView.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/plugins/XRayView/XRayView.py -------------------------------------------------------------------------------- /plugins/XRayView/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/plugins/XRayView/__init__.py -------------------------------------------------------------------------------- /plugins/XRayView/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/plugins/XRayView/plugin.json -------------------------------------------------------------------------------- /plugins/XRayView/xray.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/plugins/XRayView/xray.shader -------------------------------------------------------------------------------- /plugins/XRayView/xray_composite.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/plugins/XRayView/xray_composite.shader -------------------------------------------------------------------------------- /plugins/XmlMaterialProfile/XmlMaterialProfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/plugins/XmlMaterialProfile/XmlMaterialProfile.py -------------------------------------------------------------------------------- /plugins/XmlMaterialProfile/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/plugins/XmlMaterialProfile/__init__.py -------------------------------------------------------------------------------- /plugins/XmlMaterialProfile/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/plugins/XmlMaterialProfile/plugin.json -------------------------------------------------------------------------------- /plugins/XmlMaterialProfile/product_to_id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/plugins/XmlMaterialProfile/product_to_id.json -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/pytest.ini -------------------------------------------------------------------------------- /resources/bundled_packages/cura.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/bundled_packages/cura.json -------------------------------------------------------------------------------- /resources/definitions/101Hero.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/definitions/101Hero.def.json -------------------------------------------------------------------------------- /resources/definitions/3dator.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/definitions/3dator.def.json -------------------------------------------------------------------------------- /resources/definitions/abax_pri3.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/definitions/abax_pri3.def.json -------------------------------------------------------------------------------- /resources/definitions/abax_pri5.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/definitions/abax_pri5.def.json -------------------------------------------------------------------------------- /resources/definitions/abax_titan.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/definitions/abax_titan.def.json -------------------------------------------------------------------------------- /resources/definitions/alya3dp.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/definitions/alya3dp.def.json -------------------------------------------------------------------------------- /resources/definitions/anycubic_4max.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/definitions/anycubic_4max.def.json -------------------------------------------------------------------------------- /resources/definitions/anycubic_i3_mega.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/definitions/anycubic_i3_mega.def.json -------------------------------------------------------------------------------- /resources/definitions/beltprinter.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/definitions/beltprinter.def.json -------------------------------------------------------------------------------- /resources/definitions/bfb.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/definitions/bfb.def.json -------------------------------------------------------------------------------- /resources/definitions/blackbelt.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/definitions/blackbelt.def.json -------------------------------------------------------------------------------- /resources/definitions/blackbeltvd.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/definitions/blackbeltvd.def.json -------------------------------------------------------------------------------- /resources/definitions/bq_hephestos.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/definitions/bq_hephestos.def.json -------------------------------------------------------------------------------- /resources/definitions/bq_hephestos_2.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/definitions/bq_hephestos_2.def.json -------------------------------------------------------------------------------- /resources/definitions/bq_hephestos_xl.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/definitions/bq_hephestos_xl.def.json -------------------------------------------------------------------------------- /resources/definitions/bq_witbox.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/definitions/bq_witbox.def.json -------------------------------------------------------------------------------- /resources/definitions/bq_witbox_2.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/definitions/bq_witbox_2.def.json -------------------------------------------------------------------------------- /resources/definitions/cartesio.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/definitions/cartesio.def.json -------------------------------------------------------------------------------- /resources/definitions/creality_cr10.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/definitions/creality_cr10.def.json -------------------------------------------------------------------------------- /resources/definitions/creality_cr10s.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/definitions/creality_cr10s.def.json -------------------------------------------------------------------------------- /resources/definitions/creality_cr10s4.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/definitions/creality_cr10s4.def.json -------------------------------------------------------------------------------- /resources/definitions/creality_cr10s5.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/definitions/creality_cr10s5.def.json -------------------------------------------------------------------------------- /resources/definitions/creality_ender3.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/definitions/creality_ender3.def.json -------------------------------------------------------------------------------- /resources/definitions/custom.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/definitions/custom.def.json -------------------------------------------------------------------------------- /resources/definitions/dagoma_magis.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/definitions/dagoma_magis.def.json -------------------------------------------------------------------------------- /resources/definitions/dagoma_neva.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/definitions/dagoma_neva.def.json -------------------------------------------------------------------------------- /resources/definitions/delta_go.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/definitions/delta_go.def.json -------------------------------------------------------------------------------- /resources/definitions/deltabot.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/definitions/deltabot.def.json -------------------------------------------------------------------------------- /resources/definitions/deltacomb.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/definitions/deltacomb.def.json -------------------------------------------------------------------------------- /resources/definitions/easyarts_ares.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/definitions/easyarts_ares.def.json -------------------------------------------------------------------------------- /resources/definitions/fabtotum.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/definitions/fabtotum.def.json -------------------------------------------------------------------------------- /resources/definitions/fdmextruder.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/definitions/fdmextruder.def.json -------------------------------------------------------------------------------- /resources/definitions/fdmprinter.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/definitions/fdmprinter.def.json -------------------------------------------------------------------------------- /resources/definitions/felixtec4dual.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/definitions/felixtec4dual.def.json -------------------------------------------------------------------------------- /resources/definitions/folgertech_FT-5.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/definitions/folgertech_FT-5.def.json -------------------------------------------------------------------------------- /resources/definitions/gmax15plus.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/definitions/gmax15plus.def.json -------------------------------------------------------------------------------- /resources/definitions/gmax15plus_dual.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/definitions/gmax15plus_dual.def.json -------------------------------------------------------------------------------- /resources/definitions/grr_neo.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/definitions/grr_neo.def.json -------------------------------------------------------------------------------- /resources/definitions/helloBEEprusa.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/definitions/helloBEEprusa.def.json -------------------------------------------------------------------------------- /resources/definitions/imade3d_jellybox.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/definitions/imade3d_jellybox.def.json -------------------------------------------------------------------------------- /resources/definitions/innovo_inventor.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/definitions/innovo_inventor.def.json -------------------------------------------------------------------------------- /resources/definitions/julia.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/definitions/julia.def.json -------------------------------------------------------------------------------- /resources/definitions/kemiq_q2_beta.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/definitions/kemiq_q2_beta.def.json -------------------------------------------------------------------------------- /resources/definitions/kemiq_q2_gama.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/definitions/kemiq_q2_gama.def.json -------------------------------------------------------------------------------- /resources/definitions/kossel_mini.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/definitions/kossel_mini.def.json -------------------------------------------------------------------------------- /resources/definitions/kossel_pro.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/definitions/kossel_pro.def.json -------------------------------------------------------------------------------- /resources/definitions/kupido.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/definitions/kupido.def.json -------------------------------------------------------------------------------- /resources/definitions/makeR_pegasus.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/definitions/makeR_pegasus.def.json -------------------------------------------------------------------------------- /resources/definitions/makeit_pro_l.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/definitions/makeit_pro_l.def.json -------------------------------------------------------------------------------- /resources/definitions/makeit_pro_m.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/definitions/makeit_pro_m.def.json -------------------------------------------------------------------------------- /resources/definitions/maker_starter.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/definitions/maker_starter.def.json -------------------------------------------------------------------------------- /resources/definitions/malyan_m180.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/definitions/malyan_m180.def.json -------------------------------------------------------------------------------- /resources/definitions/malyan_m200.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/definitions/malyan_m200.def.json -------------------------------------------------------------------------------- /resources/definitions/mendel90.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/definitions/mendel90.def.json -------------------------------------------------------------------------------- /resources/definitions/ord.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/definitions/ord.def.json -------------------------------------------------------------------------------- /resources/definitions/peopoly_moai.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/definitions/peopoly_moai.def.json -------------------------------------------------------------------------------- /resources/definitions/podoprinter.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/definitions/podoprinter.def.json -------------------------------------------------------------------------------- /resources/definitions/printrbot_play.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/definitions/printrbot_play.def.json -------------------------------------------------------------------------------- /resources/definitions/printrbot_simple.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/definitions/printrbot_simple.def.json -------------------------------------------------------------------------------- /resources/definitions/prusa_i3.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/definitions/prusa_i3.def.json -------------------------------------------------------------------------------- /resources/definitions/prusa_i3_mk2.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/definitions/prusa_i3_mk2.def.json -------------------------------------------------------------------------------- /resources/definitions/prusa_i3_xl.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/definitions/prusa_i3_xl.def.json -------------------------------------------------------------------------------- /resources/definitions/raise3D_N2_dual.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/definitions/raise3D_N2_dual.def.json -------------------------------------------------------------------------------- /resources/definitions/raise3D_N2_single.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/definitions/raise3D_N2_single.def.json -------------------------------------------------------------------------------- /resources/definitions/renkforce_rf100.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/definitions/renkforce_rf100.def.json -------------------------------------------------------------------------------- /resources/definitions/rigid3d.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/definitions/rigid3d.def.json -------------------------------------------------------------------------------- /resources/definitions/rigid3d_3rdgen.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/definitions/rigid3d_3rdgen.def.json -------------------------------------------------------------------------------- /resources/definitions/rigid3d_hobby.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/definitions/rigid3d_hobby.def.json -------------------------------------------------------------------------------- /resources/definitions/rigid3d_mucit.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/definitions/rigid3d_mucit.def.json -------------------------------------------------------------------------------- /resources/definitions/rigid3d_zero.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/definitions/rigid3d_zero.def.json -------------------------------------------------------------------------------- /resources/definitions/rigid3d_zero2.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/definitions/rigid3d_zero2.def.json -------------------------------------------------------------------------------- /resources/definitions/rigidbot.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/definitions/rigidbot.def.json -------------------------------------------------------------------------------- /resources/definitions/rigidbot_big.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/definitions/rigidbot_big.def.json -------------------------------------------------------------------------------- /resources/definitions/robo_3d_r1.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/definitions/robo_3d_r1.def.json -------------------------------------------------------------------------------- /resources/definitions/seemecnc_artemis.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/definitions/seemecnc_artemis.def.json -------------------------------------------------------------------------------- /resources/definitions/seemecnc_v32.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/definitions/seemecnc_v32.def.json -------------------------------------------------------------------------------- /resources/definitions/tam.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/definitions/tam.def.json -------------------------------------------------------------------------------- /resources/definitions/tevo_blackwidow.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/definitions/tevo_blackwidow.def.json -------------------------------------------------------------------------------- /resources/definitions/tevo_tarantula.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/definitions/tevo_tarantula.def.json -------------------------------------------------------------------------------- /resources/definitions/tevo_tornado.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/definitions/tevo_tornado.def.json -------------------------------------------------------------------------------- /resources/definitions/tizyx_k25.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/definitions/tizyx_k25.def.json -------------------------------------------------------------------------------- /resources/definitions/ultimaker.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/definitions/ultimaker.def.json -------------------------------------------------------------------------------- /resources/definitions/ultimaker2.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/definitions/ultimaker2.def.json -------------------------------------------------------------------------------- /resources/definitions/ultimaker2_go.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/definitions/ultimaker2_go.def.json -------------------------------------------------------------------------------- /resources/definitions/ultimaker2_plus.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/definitions/ultimaker2_plus.def.json -------------------------------------------------------------------------------- /resources/definitions/ultimaker3.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/definitions/ultimaker3.def.json -------------------------------------------------------------------------------- /resources/definitions/ultimaker_s5.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/definitions/ultimaker_s5.def.json -------------------------------------------------------------------------------- /resources/definitions/uni_print_3d.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/definitions/uni_print_3d.def.json -------------------------------------------------------------------------------- /resources/definitions/uniqbot_one.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/definitions/uniqbot_one.def.json -------------------------------------------------------------------------------- /resources/definitions/vertex_k8400.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/definitions/vertex_k8400.def.json -------------------------------------------------------------------------------- /resources/definitions/vertex_k8400_dual.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/definitions/vertex_k8400_dual.def.json -------------------------------------------------------------------------------- /resources/definitions/wanhao_d4s.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/definitions/wanhao_d4s.def.json -------------------------------------------------------------------------------- /resources/definitions/wanhao_d6.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/definitions/wanhao_d6.def.json -------------------------------------------------------------------------------- /resources/definitions/wanhao_d6_plus.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/definitions/wanhao_d6_plus.def.json -------------------------------------------------------------------------------- /resources/definitions/wanhao_i3.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/definitions/wanhao_i3.def.json -------------------------------------------------------------------------------- /resources/definitions/wanhao_i3mini.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/definitions/wanhao_i3mini.def.json -------------------------------------------------------------------------------- /resources/definitions/wanhao_i3plus.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/definitions/wanhao_i3plus.def.json -------------------------------------------------------------------------------- /resources/definitions/winbo_dragonl4.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/definitions/winbo_dragonl4.def.json -------------------------------------------------------------------------------- /resources/definitions/winbo_mini2.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/definitions/winbo_mini2.def.json -------------------------------------------------------------------------------- /resources/definitions/zone3d_printer.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/definitions/zone3d_printer.def.json -------------------------------------------------------------------------------- /resources/definitions/zyyx_agile.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/definitions/zyyx_agile.def.json -------------------------------------------------------------------------------- /resources/extruders/101Hero_extruder_0.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/extruders/101Hero_extruder_0.def.json -------------------------------------------------------------------------------- /resources/extruders/3dator_extruder_0.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/extruders/3dator_extruder_0.def.json -------------------------------------------------------------------------------- /resources/extruders/alya3dp_extruder_0.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/extruders/alya3dp_extruder_0.def.json -------------------------------------------------------------------------------- /resources/extruders/bfb_extruder_0.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/extruders/bfb_extruder_0.def.json -------------------------------------------------------------------------------- /resources/extruders/cartesio_extruder_0.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/extruders/cartesio_extruder_0.def.json -------------------------------------------------------------------------------- /resources/extruders/cartesio_extruder_1.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/extruders/cartesio_extruder_1.def.json -------------------------------------------------------------------------------- /resources/extruders/cartesio_extruder_2.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/extruders/cartesio_extruder_2.def.json -------------------------------------------------------------------------------- /resources/extruders/cartesio_extruder_3.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/extruders/cartesio_extruder_3.def.json -------------------------------------------------------------------------------- /resources/extruders/custom_extruder_1.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/extruders/custom_extruder_1.def.json -------------------------------------------------------------------------------- /resources/extruders/custom_extruder_2.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/extruders/custom_extruder_2.def.json -------------------------------------------------------------------------------- /resources/extruders/custom_extruder_3.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/extruders/custom_extruder_3.def.json -------------------------------------------------------------------------------- /resources/extruders/custom_extruder_4.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/extruders/custom_extruder_4.def.json -------------------------------------------------------------------------------- /resources/extruders/custom_extruder_5.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/extruders/custom_extruder_5.def.json -------------------------------------------------------------------------------- /resources/extruders/custom_extruder_6.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/extruders/custom_extruder_6.def.json -------------------------------------------------------------------------------- /resources/extruders/custom_extruder_7.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/extruders/custom_extruder_7.def.json -------------------------------------------------------------------------------- /resources/extruders/custom_extruder_8.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/extruders/custom_extruder_8.def.json -------------------------------------------------------------------------------- /resources/extruders/delta_go_extruder_0.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/extruders/delta_go_extruder_0.def.json -------------------------------------------------------------------------------- /resources/extruders/deltabot_extruder_0.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/extruders/deltabot_extruder_0.def.json -------------------------------------------------------------------------------- /resources/extruders/fabtotum_extruder_0.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/extruders/fabtotum_extruder_0.def.json -------------------------------------------------------------------------------- /resources/extruders/grr_neo_extruder_0.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/extruders/grr_neo_extruder_0.def.json -------------------------------------------------------------------------------- /resources/extruders/hBp_extruder_left.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/extruders/hBp_extruder_left.def.json -------------------------------------------------------------------------------- /resources/extruders/hBp_extruder_right.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/extruders/hBp_extruder_right.def.json -------------------------------------------------------------------------------- /resources/extruders/julia_extruder_0.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/extruders/julia_extruder_0.def.json -------------------------------------------------------------------------------- /resources/extruders/kupido_extruder_0.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/extruders/kupido_extruder_0.def.json -------------------------------------------------------------------------------- /resources/extruders/makeit_dual_1st.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/extruders/makeit_dual_1st.def.json -------------------------------------------------------------------------------- /resources/extruders/makeit_dual_2nd.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/extruders/makeit_dual_2nd.def.json -------------------------------------------------------------------------------- /resources/extruders/makeit_l_dual_1st.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/extruders/makeit_l_dual_1st.def.json -------------------------------------------------------------------------------- /resources/extruders/makeit_l_dual_2nd.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/extruders/makeit_l_dual_2nd.def.json -------------------------------------------------------------------------------- /resources/extruders/mendel90_extruder_0.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/extruders/mendel90_extruder_0.def.json -------------------------------------------------------------------------------- /resources/extruders/ord_extruder_0.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/extruders/ord_extruder_0.def.json -------------------------------------------------------------------------------- /resources/extruders/ord_extruder_1.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/extruders/ord_extruder_1.def.json -------------------------------------------------------------------------------- /resources/extruders/ord_extruder_2.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/extruders/ord_extruder_2.def.json -------------------------------------------------------------------------------- /resources/extruders/ord_extruder_3.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/extruders/ord_extruder_3.def.json -------------------------------------------------------------------------------- /resources/extruders/ord_extruder_4.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/extruders/ord_extruder_4.def.json -------------------------------------------------------------------------------- /resources/extruders/prusa_i3_extruder_0.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/extruders/prusa_i3_extruder_0.def.json -------------------------------------------------------------------------------- /resources/extruders/rigid3d_extruder_0.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/extruders/rigid3d_extruder_0.def.json -------------------------------------------------------------------------------- /resources/extruders/rigidbot_extruder_0.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/extruders/rigidbot_extruder_0.def.json -------------------------------------------------------------------------------- /resources/extruders/tam_extruder_0.def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/extruders/tam_extruder_0.def.json -------------------------------------------------------------------------------- /resources/firmware/MarlinBlackBelt3D.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/firmware/MarlinBlackBelt3D.hex -------------------------------------------------------------------------------- /resources/firmware/MarlinBlackBelt3DVD.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/firmware/MarlinBlackBelt3DVD.hex -------------------------------------------------------------------------------- /resources/i18n/cura.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/i18n/cura.pot -------------------------------------------------------------------------------- /resources/i18n/de_DE/cura.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/i18n/de_DE/cura.po -------------------------------------------------------------------------------- /resources/i18n/de_DE/fdmextruder.def.json.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/i18n/de_DE/fdmextruder.def.json.po -------------------------------------------------------------------------------- /resources/i18n/de_DE/fdmprinter.def.json.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/i18n/de_DE/fdmprinter.def.json.po -------------------------------------------------------------------------------- /resources/i18n/es_ES/cura.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/i18n/es_ES/cura.po -------------------------------------------------------------------------------- /resources/i18n/es_ES/fdmextruder.def.json.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/i18n/es_ES/fdmextruder.def.json.po -------------------------------------------------------------------------------- /resources/i18n/es_ES/fdmprinter.def.json.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/i18n/es_ES/fdmprinter.def.json.po -------------------------------------------------------------------------------- /resources/i18n/fdmextruder.def.json.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/i18n/fdmextruder.def.json.pot -------------------------------------------------------------------------------- /resources/i18n/fdmprinter.def.json.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/i18n/fdmprinter.def.json.pot -------------------------------------------------------------------------------- /resources/i18n/fi_FI/cura.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/i18n/fi_FI/cura.po -------------------------------------------------------------------------------- /resources/i18n/fi_FI/fdmextruder.def.json.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/i18n/fi_FI/fdmextruder.def.json.po -------------------------------------------------------------------------------- /resources/i18n/fi_FI/fdmprinter.def.json.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/i18n/fi_FI/fdmprinter.def.json.po -------------------------------------------------------------------------------- /resources/i18n/fr_FR/cura.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/i18n/fr_FR/cura.po -------------------------------------------------------------------------------- /resources/i18n/fr_FR/fdmextruder.def.json.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/i18n/fr_FR/fdmextruder.def.json.po -------------------------------------------------------------------------------- /resources/i18n/fr_FR/fdmprinter.def.json.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/i18n/fr_FR/fdmprinter.def.json.po -------------------------------------------------------------------------------- /resources/i18n/it_IT/cura.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/i18n/it_IT/cura.po -------------------------------------------------------------------------------- /resources/i18n/it_IT/fdmextruder.def.json.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/i18n/it_IT/fdmextruder.def.json.po -------------------------------------------------------------------------------- /resources/i18n/it_IT/fdmprinter.def.json.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/i18n/it_IT/fdmprinter.def.json.po -------------------------------------------------------------------------------- /resources/i18n/ja_JP/cura.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/i18n/ja_JP/cura.po -------------------------------------------------------------------------------- /resources/i18n/ja_JP/fdmextruder.def.json.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/i18n/ja_JP/fdmextruder.def.json.po -------------------------------------------------------------------------------- /resources/i18n/ja_JP/fdmprinter.def.json.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/i18n/ja_JP/fdmprinter.def.json.po -------------------------------------------------------------------------------- /resources/i18n/ko_KR/cura.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/i18n/ko_KR/cura.po -------------------------------------------------------------------------------- /resources/i18n/ko_KR/fdmextruder.def.json.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/i18n/ko_KR/fdmextruder.def.json.po -------------------------------------------------------------------------------- /resources/i18n/ko_KR/fdmprinter.def.json.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/i18n/ko_KR/fdmprinter.def.json.po -------------------------------------------------------------------------------- /resources/i18n/nl_NL/cura.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/i18n/nl_NL/cura.po -------------------------------------------------------------------------------- /resources/i18n/nl_NL/fdmextruder.def.json.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/i18n/nl_NL/fdmextruder.def.json.po -------------------------------------------------------------------------------- /resources/i18n/nl_NL/fdmprinter.def.json.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/i18n/nl_NL/fdmprinter.def.json.po -------------------------------------------------------------------------------- /resources/i18n/pl_PL/cura.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/i18n/pl_PL/cura.po -------------------------------------------------------------------------------- /resources/i18n/pl_PL/fdmextruder.def.json.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/i18n/pl_PL/fdmextruder.def.json.po -------------------------------------------------------------------------------- /resources/i18n/pl_PL/fdmprinter.def.json.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/i18n/pl_PL/fdmprinter.def.json.po -------------------------------------------------------------------------------- /resources/i18n/pt_BR/cura.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/i18n/pt_BR/cura.po -------------------------------------------------------------------------------- /resources/i18n/pt_BR/fdmextruder.def.json.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/i18n/pt_BR/fdmextruder.def.json.po -------------------------------------------------------------------------------- /resources/i18n/pt_BR/fdmprinter.def.json.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/i18n/pt_BR/fdmprinter.def.json.po -------------------------------------------------------------------------------- /resources/i18n/pt_PT/cura.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/i18n/pt_PT/cura.po -------------------------------------------------------------------------------- /resources/i18n/pt_PT/fdmextruder.def.json.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/i18n/pt_PT/fdmextruder.def.json.po -------------------------------------------------------------------------------- /resources/i18n/pt_PT/fdmprinter.def.json.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/i18n/pt_PT/fdmprinter.def.json.po -------------------------------------------------------------------------------- /resources/i18n/ru_RU/cura.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/i18n/ru_RU/cura.po -------------------------------------------------------------------------------- /resources/i18n/ru_RU/fdmextruder.def.json.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/i18n/ru_RU/fdmextruder.def.json.po -------------------------------------------------------------------------------- /resources/i18n/ru_RU/fdmprinter.def.json.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/i18n/ru_RU/fdmprinter.def.json.po -------------------------------------------------------------------------------- /resources/i18n/tr_TR/cura.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/i18n/tr_TR/cura.po -------------------------------------------------------------------------------- /resources/i18n/tr_TR/fdmextruder.def.json.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/i18n/tr_TR/fdmextruder.def.json.po -------------------------------------------------------------------------------- /resources/i18n/tr_TR/fdmprinter.def.json.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/i18n/tr_TR/fdmprinter.def.json.po -------------------------------------------------------------------------------- /resources/i18n/zh_CN/cura.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/i18n/zh_CN/cura.po -------------------------------------------------------------------------------- /resources/i18n/zh_CN/fdmextruder.def.json.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/i18n/zh_CN/fdmextruder.def.json.po -------------------------------------------------------------------------------- /resources/i18n/zh_CN/fdmprinter.def.json.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/i18n/zh_CN/fdmprinter.def.json.po -------------------------------------------------------------------------------- /resources/i18n/zh_TW/cura.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/i18n/zh_TW/cura.po -------------------------------------------------------------------------------- /resources/i18n/zh_TW/fdmextruder.def.json.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/i18n/zh_TW/fdmextruder.def.json.po -------------------------------------------------------------------------------- /resources/i18n/zh_TW/fdmprinter.def.json.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/i18n/zh_TW/fdmprinter.def.json.po -------------------------------------------------------------------------------- /resources/images/MakerStarterbackplate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/images/MakerStarterbackplate.png -------------------------------------------------------------------------------- /resources/images/Ultimaker2Extendedbackplate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/images/Ultimaker2Extendedbackplate.png -------------------------------------------------------------------------------- /resources/images/Ultimaker2Gobackplate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/images/Ultimaker2Gobackplate.png -------------------------------------------------------------------------------- /resources/images/Ultimaker2Plusbackplate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/images/Ultimaker2Plusbackplate.png -------------------------------------------------------------------------------- /resources/images/Ultimaker2backplate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/images/Ultimaker2backplate.png -------------------------------------------------------------------------------- /resources/images/Ultimaker3Extendedbackplate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/images/Ultimaker3Extendedbackplate.png -------------------------------------------------------------------------------- /resources/images/Ultimaker3backplate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/images/Ultimaker3backplate.png -------------------------------------------------------------------------------- /resources/images/UltimakerPlusbackplate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/images/UltimakerPlusbackplate.png -------------------------------------------------------------------------------- /resources/images/UltimakerS5backplate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/images/UltimakerS5backplate.png -------------------------------------------------------------------------------- /resources/images/Wanhaobackplate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/images/Wanhaobackplate.png -------------------------------------------------------------------------------- /resources/images/category_blackbelt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/images/category_blackbelt.svg -------------------------------------------------------------------------------- /resources/images/cura-icon-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/images/cura-icon-32.png -------------------------------------------------------------------------------- /resources/images/cura-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/images/cura-icon.png -------------------------------------------------------------------------------- /resources/images/cura.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/images/cura.png -------------------------------------------------------------------------------- /resources/images/fabtotum_platform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/images/fabtotum_platform.png -------------------------------------------------------------------------------- /resources/images/kitten.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/images/kitten.jpg -------------------------------------------------------------------------------- /resources/images/moai.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/images/moai.jpg -------------------------------------------------------------------------------- /resources/images/wanhao-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/images/wanhao-icon.png -------------------------------------------------------------------------------- /resources/meshes/101hero-platform.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/meshes/101hero-platform.stl -------------------------------------------------------------------------------- /resources/meshes/3dator_platform.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/meshes/3dator_platform.stl -------------------------------------------------------------------------------- /resources/meshes/FT-5_build_plate.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/meshes/FT-5_build_plate.stl -------------------------------------------------------------------------------- /resources/meshes/FelixTec4_platform.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/meshes/FelixTec4_platform.stl -------------------------------------------------------------------------------- /resources/meshes/UltimakerRobot_support.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/meshes/UltimakerRobot_support.stl -------------------------------------------------------------------------------- /resources/meshes/Vertex_build_panel.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/meshes/Vertex_build_panel.stl -------------------------------------------------------------------------------- /resources/meshes/anycubic_4max_platform.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/meshes/anycubic_4max_platform.stl -------------------------------------------------------------------------------- /resources/meshes/anycubic_i3_mega_platform.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/meshes/anycubic_i3_mega_platform.stl -------------------------------------------------------------------------------- /resources/meshes/artemis_platform.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/meshes/artemis_platform.stl -------------------------------------------------------------------------------- /resources/meshes/blackbelt_platform.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/meshes/blackbelt_platform.stl -------------------------------------------------------------------------------- /resources/meshes/bq_hephestos_2_platform.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/meshes/bq_hephestos_2_platform.stl -------------------------------------------------------------------------------- /resources/meshes/bq_hephestos_platform.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/meshes/bq_hephestos_platform.stl -------------------------------------------------------------------------------- /resources/meshes/bq_witbox_platform.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/meshes/bq_witbox_platform.stl -------------------------------------------------------------------------------- /resources/meshes/builder_premium_platform.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/meshes/builder_premium_platform.stl -------------------------------------------------------------------------------- /resources/meshes/cartesio_platform.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/meshes/cartesio_platform.stl -------------------------------------------------------------------------------- /resources/meshes/creality_ender3_platform.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/meshes/creality_ender3_platform.stl -------------------------------------------------------------------------------- /resources/meshes/deltacomb.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/meshes/deltacomb.stl -------------------------------------------------------------------------------- /resources/meshes/discoeasy200.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/meshes/discoeasy200.stl -------------------------------------------------------------------------------- /resources/meshes/fabtotum_platform.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/meshes/fabtotum_platform.stl -------------------------------------------------------------------------------- /resources/meshes/grr_neo_platform.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/meshes/grr_neo_platform.stl -------------------------------------------------------------------------------- /resources/meshes/imade3d_jellybox_platform.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/meshes/imade3d_jellybox_platform.stl -------------------------------------------------------------------------------- /resources/meshes/inventor_platform.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/meshes/inventor_platform.stl -------------------------------------------------------------------------------- /resources/meshes/kemiq_q2.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/meshes/kemiq_q2.stl -------------------------------------------------------------------------------- /resources/meshes/kossel_platform.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/meshes/kossel_platform.stl -------------------------------------------------------------------------------- /resources/meshes/kossel_pro_build_platform.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/meshes/kossel_pro_build_platform.stl -------------------------------------------------------------------------------- /resources/meshes/makeR_pegasus_platform.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/meshes/makeR_pegasus_platform.stl -------------------------------------------------------------------------------- /resources/meshes/makerstarter_platform.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/meshes/makerstarter_platform.stl -------------------------------------------------------------------------------- /resources/meshes/malyan_m200_platform.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/meshes/malyan_m200_platform.stl -------------------------------------------------------------------------------- /resources/meshes/mendel90_platform.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/meshes/mendel90_platform.stl -------------------------------------------------------------------------------- /resources/meshes/moai.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/meshes/moai.obj -------------------------------------------------------------------------------- /resources/meshes/neva.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/meshes/neva.stl -------------------------------------------------------------------------------- /resources/meshes/printrbot_play.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/meshes/printrbot_play.stl -------------------------------------------------------------------------------- /resources/meshes/prusai3_platform.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/meshes/prusai3_platform.stl -------------------------------------------------------------------------------- /resources/meshes/prusai3_xl_platform.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/meshes/prusai3_xl_platform.stl -------------------------------------------------------------------------------- /resources/meshes/rigid3d_mucit_platform.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/meshes/rigid3d_mucit_platform.stl -------------------------------------------------------------------------------- /resources/meshes/rigid3d_zero2_platform.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/meshes/rigid3d_zero2_platform.stl -------------------------------------------------------------------------------- /resources/meshes/rigidbot_platform.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/meshes/rigidbot_platform.stl -------------------------------------------------------------------------------- /resources/meshes/rigidbotbig_platform.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/meshes/rigidbotbig_platform.stl -------------------------------------------------------------------------------- /resources/meshes/rostock_platform.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/meshes/rostock_platform.stl -------------------------------------------------------------------------------- /resources/meshes/tam_series1.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/meshes/tam_series1.stl -------------------------------------------------------------------------------- /resources/meshes/tevo_blackwidow.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/meshes/tevo_blackwidow.stl -------------------------------------------------------------------------------- /resources/meshes/tizyx_k25_platform.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/meshes/tizyx_k25_platform.stl -------------------------------------------------------------------------------- /resources/meshes/ultimaker2_platform.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/meshes/ultimaker2_platform.obj -------------------------------------------------------------------------------- /resources/meshes/ultimaker2go_platform.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/meshes/ultimaker2go_platform.obj -------------------------------------------------------------------------------- /resources/meshes/ultimaker3_platform.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/meshes/ultimaker3_platform.obj -------------------------------------------------------------------------------- /resources/meshes/ultimaker_platform.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/meshes/ultimaker_platform.stl -------------------------------------------------------------------------------- /resources/meshes/ultimaker_s5_platform.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/meshes/ultimaker_s5_platform.obj -------------------------------------------------------------------------------- /resources/meshes/uni_print_3d_platform.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/meshes/uni_print_3d_platform.stl -------------------------------------------------------------------------------- /resources/meshes/wanhao_110_110_platform.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/meshes/wanhao_110_110_platform.obj -------------------------------------------------------------------------------- /resources/meshes/wanhao_150_150_platform.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/meshes/wanhao_150_150_platform.obj -------------------------------------------------------------------------------- /resources/meshes/wanhao_200_200_platform.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/meshes/wanhao_200_200_platform.obj -------------------------------------------------------------------------------- /resources/meshes/wanhao_225_145_platform.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/meshes/wanhao_225_145_platform.obj -------------------------------------------------------------------------------- /resources/meshes/wanhao_300_200_platform.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/meshes/wanhao_300_200_platform.obj -------------------------------------------------------------------------------- /resources/meshes/zyyx_platform.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/meshes/zyyx_platform.stl -------------------------------------------------------------------------------- /resources/qml/AboutDialog.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/qml/AboutDialog.qml -------------------------------------------------------------------------------- /resources/qml/Actions.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/qml/Actions.qml -------------------------------------------------------------------------------- /resources/qml/AddMachineDialog.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/qml/AddMachineDialog.qml -------------------------------------------------------------------------------- /resources/qml/AskOpenAsProjectOrModelsDialog.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/qml/AskOpenAsProjectOrModelsDialog.qml -------------------------------------------------------------------------------- /resources/qml/Cura.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/qml/Cura.qml -------------------------------------------------------------------------------- /resources/qml/EngineLog.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/qml/EngineLog.qml -------------------------------------------------------------------------------- /resources/qml/ExtruderButton.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/qml/ExtruderButton.qml -------------------------------------------------------------------------------- /resources/qml/JobSpecs.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/qml/JobSpecs.qml -------------------------------------------------------------------------------- /resources/qml/MachineAction.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/qml/MachineAction.qml -------------------------------------------------------------------------------- /resources/qml/MachineSelection.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/qml/MachineSelection.qml -------------------------------------------------------------------------------- /resources/qml/Menus/BuildplateMenu.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/qml/Menus/BuildplateMenu.qml -------------------------------------------------------------------------------- /resources/qml/Menus/ContextMenu.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/qml/Menus/ContextMenu.qml -------------------------------------------------------------------------------- /resources/qml/Menus/LocalPrinterMenu.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/qml/Menus/LocalPrinterMenu.qml -------------------------------------------------------------------------------- /resources/qml/Menus/MaterialMenu.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/qml/Menus/MaterialMenu.qml -------------------------------------------------------------------------------- /resources/qml/Menus/NetworkPrinterMenu.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/qml/Menus/NetworkPrinterMenu.qml -------------------------------------------------------------------------------- /resources/qml/Menus/NozzleMenu.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/qml/Menus/NozzleMenu.qml -------------------------------------------------------------------------------- /resources/qml/Menus/PrinterMenu.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/qml/Menus/PrinterMenu.qml -------------------------------------------------------------------------------- /resources/qml/Menus/PrinterStatusIcon.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/qml/Menus/PrinterStatusIcon.qml -------------------------------------------------------------------------------- /resources/qml/Menus/PrinterTypeMenu.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/qml/Menus/PrinterTypeMenu.qml -------------------------------------------------------------------------------- /resources/qml/Menus/ProfileMenu.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/qml/Menus/ProfileMenu.qml -------------------------------------------------------------------------------- /resources/qml/Menus/RecentFilesMenu.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/qml/Menus/RecentFilesMenu.qml -------------------------------------------------------------------------------- /resources/qml/Menus/ViewMenu.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/qml/Menus/ViewMenu.qml -------------------------------------------------------------------------------- /resources/qml/MonitorButton.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/qml/MonitorButton.qml -------------------------------------------------------------------------------- /resources/qml/MonitorSidebar.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/qml/MonitorSidebar.qml -------------------------------------------------------------------------------- /resources/qml/ObjectsList.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/qml/ObjectsList.qml -------------------------------------------------------------------------------- /resources/qml/Preferences/GeneralPage.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/qml/Preferences/GeneralPage.qml -------------------------------------------------------------------------------- /resources/qml/Preferences/MachinesPage.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/qml/Preferences/MachinesPage.qml -------------------------------------------------------------------------------- /resources/qml/Preferences/ProfileTab.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/qml/Preferences/ProfileTab.qml -------------------------------------------------------------------------------- /resources/qml/Preferences/ProfilesPage.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/qml/Preferences/ProfilesPage.qml -------------------------------------------------------------------------------- /resources/qml/Preferences/ReadOnlySpinBox.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/qml/Preferences/ReadOnlySpinBox.qml -------------------------------------------------------------------------------- /resources/qml/Preferences/ReadOnlyTextArea.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/qml/Preferences/ReadOnlyTextArea.qml -------------------------------------------------------------------------------- /resources/qml/Preferences/ReadOnlyTextField.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/qml/Preferences/ReadOnlyTextField.qml -------------------------------------------------------------------------------- /resources/qml/PrepareSidebar.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/qml/PrepareSidebar.qml -------------------------------------------------------------------------------- /resources/qml/PrintMonitor.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/qml/PrintMonitor.qml -------------------------------------------------------------------------------- /resources/qml/PrinterOutput/ExtruderBox.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/qml/PrinterOutput/ExtruderBox.qml -------------------------------------------------------------------------------- /resources/qml/PrinterOutput/HeatedBedBox.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/qml/PrinterOutput/HeatedBedBox.qml -------------------------------------------------------------------------------- /resources/qml/PrinterOutput/MonitorItem.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/qml/PrinterOutput/MonitorItem.qml -------------------------------------------------------------------------------- /resources/qml/PrinterOutput/MonitorSection.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/qml/PrinterOutput/MonitorSection.qml -------------------------------------------------------------------------------- /resources/qml/SaveButton.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/qml/SaveButton.qml -------------------------------------------------------------------------------- /resources/qml/Settings/SettingCategory.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/qml/Settings/SettingCategory.qml -------------------------------------------------------------------------------- /resources/qml/Settings/SettingCheckBox.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/qml/Settings/SettingCheckBox.qml -------------------------------------------------------------------------------- /resources/qml/Settings/SettingComboBox.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/qml/Settings/SettingComboBox.qml -------------------------------------------------------------------------------- /resources/qml/Settings/SettingExtruder.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/qml/Settings/SettingExtruder.qml -------------------------------------------------------------------------------- /resources/qml/Settings/SettingItem.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/qml/Settings/SettingItem.qml -------------------------------------------------------------------------------- /resources/qml/Settings/SettingTextField.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/qml/Settings/SettingTextField.qml -------------------------------------------------------------------------------- /resources/qml/Settings/SettingUnknown.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/qml/Settings/SettingUnknown.qml -------------------------------------------------------------------------------- /resources/qml/Settings/SettingView.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/qml/Settings/SettingView.qml -------------------------------------------------------------------------------- /resources/qml/SidebarAdvanced.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/qml/SidebarAdvanced.qml -------------------------------------------------------------------------------- /resources/qml/SidebarContents.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/qml/SidebarContents.qml -------------------------------------------------------------------------------- /resources/qml/SidebarHeader.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/qml/SidebarHeader.qml -------------------------------------------------------------------------------- /resources/qml/SidebarSimple.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/qml/SidebarSimple.qml -------------------------------------------------------------------------------- /resources/qml/SidebarTooltip.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/qml/SidebarTooltip.qml -------------------------------------------------------------------------------- /resources/qml/Toolbar.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/qml/Toolbar.qml -------------------------------------------------------------------------------- /resources/qml/Topbar.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/qml/Topbar.qml -------------------------------------------------------------------------------- /resources/qml/WorkspaceSummaryDialog.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/qml/WorkspaceSummaryDialog.qml -------------------------------------------------------------------------------- /resources/quality/coarse.inst.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/quality/coarse.inst.cfg -------------------------------------------------------------------------------- /resources/quality/draft.inst.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/quality/draft.inst.cfg -------------------------------------------------------------------------------- /resources/quality/extra_coarse.inst.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/quality/extra_coarse.inst.cfg -------------------------------------------------------------------------------- /resources/quality/extra_fast.inst.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/quality/extra_fast.inst.cfg -------------------------------------------------------------------------------- /resources/quality/fast.inst.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/quality/fast.inst.cfg -------------------------------------------------------------------------------- /resources/quality/high.inst.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/quality/high.inst.cfg -------------------------------------------------------------------------------- /resources/quality/normal.inst.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/quality/normal.inst.cfg -------------------------------------------------------------------------------- /resources/quality/ultimaker2/um2_draft.inst.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/quality/ultimaker2/um2_draft.inst.cfg -------------------------------------------------------------------------------- /resources/quality/ultimaker2/um2_fast.inst.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/quality/ultimaker2/um2_fast.inst.cfg -------------------------------------------------------------------------------- /resources/quality/ultimaker2/um2_high.inst.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/quality/ultimaker2/um2_high.inst.cfg -------------------------------------------------------------------------------- /resources/quality/ultimaker2/um2_normal.inst.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/quality/ultimaker2/um2_normal.inst.cfg -------------------------------------------------------------------------------- /resources/setting_visibility/advanced.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/setting_visibility/advanced.cfg -------------------------------------------------------------------------------- /resources/setting_visibility/basic.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/setting_visibility/basic.cfg -------------------------------------------------------------------------------- /resources/setting_visibility/blackbelt.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/setting_visibility/blackbelt.cfg -------------------------------------------------------------------------------- /resources/setting_visibility/expert.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/setting_visibility/expert.cfg -------------------------------------------------------------------------------- /resources/shaders/camera_distance.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/shaders/camera_distance.shader -------------------------------------------------------------------------------- /resources/shaders/grid.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/shaders/grid.shader -------------------------------------------------------------------------------- /resources/shaders/overhang.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/shaders/overhang.shader -------------------------------------------------------------------------------- /resources/shaders/striped.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/shaders/striped.shader -------------------------------------------------------------------------------- /resources/shaders/transparent_object.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/shaders/transparent_object.shader -------------------------------------------------------------------------------- /resources/themes/blackbelt/styles.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/themes/blackbelt/styles.qml -------------------------------------------------------------------------------- /resources/themes/blackbelt/theme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/themes/blackbelt/theme.json -------------------------------------------------------------------------------- /resources/themes/cura-dark/images/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/themes/cura-dark/images/logo.svg -------------------------------------------------------------------------------- /resources/themes/cura-dark/theme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/themes/cura-dark/theme.json -------------------------------------------------------------------------------- /resources/themes/cura-light/icons/arrow_left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/themes/cura-light/icons/arrow_left.svg -------------------------------------------------------------------------------- /resources/themes/cura-light/icons/arrow_top.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/themes/cura-light/icons/arrow_top.svg -------------------------------------------------------------------------------- /resources/themes/cura-light/icons/basic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/themes/cura-light/icons/basic.svg -------------------------------------------------------------------------------- /resources/themes/cura-light/icons/buildplate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/themes/cura-light/icons/buildplate.svg -------------------------------------------------------------------------------- /resources/themes/cura-light/icons/check.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/themes/cura-light/icons/check.svg -------------------------------------------------------------------------------- /resources/themes/cura-light/icons/connected.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/themes/cura-light/icons/connected.svg -------------------------------------------------------------------------------- /resources/themes/cura-light/icons/cross1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/themes/cura-light/icons/cross1.svg -------------------------------------------------------------------------------- /resources/themes/cura-light/icons/cross2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/themes/cura-light/icons/cross2.svg -------------------------------------------------------------------------------- /resources/themes/cura-light/icons/dense.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/themes/cura-light/icons/dense.svg -------------------------------------------------------------------------------- /resources/themes/cura-light/icons/dot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/themes/cura-light/icons/dot.svg -------------------------------------------------------------------------------- /resources/themes/cura-light/icons/formula.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/themes/cura-light/icons/formula.svg -------------------------------------------------------------------------------- /resources/themes/cura-light/icons/gradual.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/themes/cura-light/icons/gradual.svg -------------------------------------------------------------------------------- /resources/themes/cura-light/icons/hollow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/themes/cura-light/icons/hollow.svg -------------------------------------------------------------------------------- /resources/themes/cura-light/icons/home.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/themes/cura-light/icons/home.svg -------------------------------------------------------------------------------- /resources/themes/cura-light/icons/link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/themes/cura-light/icons/link.svg -------------------------------------------------------------------------------- /resources/themes/cura-light/icons/load.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/themes/cura-light/icons/load.svg -------------------------------------------------------------------------------- /resources/themes/cura-light/icons/menu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/themes/cura-light/icons/menu.svg -------------------------------------------------------------------------------- /resources/themes/cura-light/icons/minus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/themes/cura-light/icons/minus.svg -------------------------------------------------------------------------------- /resources/themes/cura-light/icons/mirror.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/themes/cura-light/icons/mirror.svg -------------------------------------------------------------------------------- /resources/themes/cura-light/icons/notice.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/themes/cura-light/icons/notice.svg -------------------------------------------------------------------------------- /resources/themes/cura-light/icons/pencil.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/themes/cura-light/icons/pencil.svg -------------------------------------------------------------------------------- /resources/themes/cura-light/icons/play.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/themes/cura-light/icons/play.svg -------------------------------------------------------------------------------- /resources/themes/cura-light/icons/plugin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/themes/cura-light/icons/plugin.svg -------------------------------------------------------------------------------- /resources/themes/cura-light/icons/plus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/themes/cura-light/icons/plus.svg -------------------------------------------------------------------------------- /resources/themes/cura-light/icons/print_time.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/themes/cura-light/icons/print_time.svg -------------------------------------------------------------------------------- /resources/themes/cura-light/icons/printsetup.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/themes/cura-light/icons/printsetup.svg -------------------------------------------------------------------------------- /resources/themes/cura-light/icons/quick.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/themes/cura-light/icons/quick.svg -------------------------------------------------------------------------------- /resources/themes/cura-light/icons/reset.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/themes/cura-light/icons/reset.svg -------------------------------------------------------------------------------- /resources/themes/cura-light/icons/rotate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/themes/cura-light/icons/rotate.svg -------------------------------------------------------------------------------- /resources/themes/cura-light/icons/scale.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/themes/cura-light/icons/scale.svg -------------------------------------------------------------------------------- /resources/themes/cura-light/icons/scale_max.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/themes/cura-light/icons/scale_max.svg -------------------------------------------------------------------------------- /resources/themes/cura-light/icons/search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/themes/cura-light/icons/search.svg -------------------------------------------------------------------------------- /resources/themes/cura-light/icons/settings.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/themes/cura-light/icons/settings.svg -------------------------------------------------------------------------------- /resources/themes/cura-light/icons/solid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/themes/cura-light/icons/solid.svg -------------------------------------------------------------------------------- /resources/themes/cura-light/icons/sparse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/themes/cura-light/icons/sparse.svg -------------------------------------------------------------------------------- /resources/themes/cura-light/icons/star.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/themes/cura-light/icons/star.svg -------------------------------------------------------------------------------- /resources/themes/cura-light/icons/translate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/themes/cura-light/icons/translate.svg -------------------------------------------------------------------------------- /resources/themes/cura-light/icons/ulti.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/themes/cura-light/icons/ulti.svg -------------------------------------------------------------------------------- /resources/themes/cura-light/icons/view_3d.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/themes/cura-light/icons/view_3d.svg -------------------------------------------------------------------------------- /resources/themes/cura-light/icons/view_front.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/themes/cura-light/icons/view_front.svg -------------------------------------------------------------------------------- /resources/themes/cura-light/icons/view_layer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/themes/cura-light/icons/view_layer.svg -------------------------------------------------------------------------------- /resources/themes/cura-light/icons/view_left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/themes/cura-light/icons/view_left.svg -------------------------------------------------------------------------------- /resources/themes/cura-light/icons/view_right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/themes/cura-light/icons/view_right.svg -------------------------------------------------------------------------------- /resources/themes/cura-light/icons/view_top.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/themes/cura-light/icons/view_top.svg -------------------------------------------------------------------------------- /resources/themes/cura-light/icons/view_xray.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/themes/cura-light/icons/view_xray.svg -------------------------------------------------------------------------------- /resources/themes/cura-light/icons/viewmode.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/themes/cura-light/icons/viewmode.svg -------------------------------------------------------------------------------- /resources/themes/cura-light/icons/warning.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/themes/cura-light/icons/warning.svg -------------------------------------------------------------------------------- /resources/themes/cura-light/images/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/themes/cura-light/images/logo.svg -------------------------------------------------------------------------------- /resources/themes/cura-light/styles.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/themes/cura-light/styles.qml -------------------------------------------------------------------------------- /resources/themes/cura-light/theme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/themes/cura-light/theme.json -------------------------------------------------------------------------------- /resources/variants/blackbelt_15_0.25.inst.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/variants/blackbelt_15_0.25.inst.cfg -------------------------------------------------------------------------------- /resources/variants/blackbelt_15_0.4.inst.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/variants/blackbelt_15_0.4.inst.cfg -------------------------------------------------------------------------------- /resources/variants/blackbelt_15_0.6.inst.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/variants/blackbelt_15_0.6.inst.cfg -------------------------------------------------------------------------------- /resources/variants/blackbelt_15_0.8.inst.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/variants/blackbelt_15_0.8.inst.cfg -------------------------------------------------------------------------------- /resources/variants/blackbelt_15_1.0.inst.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/variants/blackbelt_15_1.0.inst.cfg -------------------------------------------------------------------------------- /resources/variants/blackbelt_25_0.25.inst.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/variants/blackbelt_25_0.25.inst.cfg -------------------------------------------------------------------------------- /resources/variants/blackbelt_25_0.4.inst.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/variants/blackbelt_25_0.4.inst.cfg -------------------------------------------------------------------------------- /resources/variants/blackbelt_25_0.6.inst.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/variants/blackbelt_25_0.6.inst.cfg -------------------------------------------------------------------------------- /resources/variants/blackbelt_25_0.8.inst.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/variants/blackbelt_25_0.8.inst.cfg -------------------------------------------------------------------------------- /resources/variants/blackbelt_25_1.0.inst.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/variants/blackbelt_25_1.0.inst.cfg -------------------------------------------------------------------------------- /resources/variants/blackbelt_35_0.25.inst.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/variants/blackbelt_35_0.25.inst.cfg -------------------------------------------------------------------------------- /resources/variants/blackbelt_35_0.4.inst.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/variants/blackbelt_35_0.4.inst.cfg -------------------------------------------------------------------------------- /resources/variants/blackbelt_35_0.6.inst.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/variants/blackbelt_35_0.6.inst.cfg -------------------------------------------------------------------------------- /resources/variants/blackbelt_35_0.8.inst.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/variants/blackbelt_35_0.8.inst.cfg -------------------------------------------------------------------------------- /resources/variants/blackbelt_35_1.0.inst.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/variants/blackbelt_35_1.0.inst.cfg -------------------------------------------------------------------------------- /resources/variants/blackbelt_45_0.25.inst.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/variants/blackbelt_45_0.25.inst.cfg -------------------------------------------------------------------------------- /resources/variants/blackbelt_45_0.4.inst.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/variants/blackbelt_45_0.4.inst.cfg -------------------------------------------------------------------------------- /resources/variants/blackbelt_45_0.6.inst.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/variants/blackbelt_45_0.6.inst.cfg -------------------------------------------------------------------------------- /resources/variants/blackbelt_45_0.8.inst.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/variants/blackbelt_45_0.8.inst.cfg -------------------------------------------------------------------------------- /resources/variants/blackbelt_45_1.0.inst.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/variants/blackbelt_45_1.0.inst.cfg -------------------------------------------------------------------------------- /resources/variants/blackbeltvd_15_0.2.inst.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/variants/blackbeltvd_15_0.2.inst.cfg -------------------------------------------------------------------------------- /resources/variants/blackbeltvd_15_0.4.inst.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/variants/blackbeltvd_15_0.4.inst.cfg -------------------------------------------------------------------------------- /resources/variants/blackbeltvd_15_0.6.inst.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/variants/blackbeltvd_15_0.6.inst.cfg -------------------------------------------------------------------------------- /resources/variants/blackbeltvd_15_0.9.inst.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/variants/blackbeltvd_15_0.9.inst.cfg -------------------------------------------------------------------------------- /resources/variants/blackbeltvd_15_1.2.inst.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/variants/blackbeltvd_15_1.2.inst.cfg -------------------------------------------------------------------------------- /resources/variants/blackbeltvd_25_0.2.inst.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/variants/blackbeltvd_25_0.2.inst.cfg -------------------------------------------------------------------------------- /resources/variants/blackbeltvd_25_0.4.inst.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/variants/blackbeltvd_25_0.4.inst.cfg -------------------------------------------------------------------------------- /resources/variants/blackbeltvd_25_0.6.inst.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/variants/blackbeltvd_25_0.6.inst.cfg -------------------------------------------------------------------------------- /resources/variants/blackbeltvd_25_0.9.inst.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/variants/blackbeltvd_25_0.9.inst.cfg -------------------------------------------------------------------------------- /resources/variants/blackbeltvd_25_1.2.inst.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/variants/blackbeltvd_25_1.2.inst.cfg -------------------------------------------------------------------------------- /resources/variants/blackbeltvd_35_0.2.inst.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/variants/blackbeltvd_35_0.2.inst.cfg -------------------------------------------------------------------------------- /resources/variants/blackbeltvd_35_0.4.inst.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/variants/blackbeltvd_35_0.4.inst.cfg -------------------------------------------------------------------------------- /resources/variants/blackbeltvd_35_0.6.inst.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/variants/blackbeltvd_35_0.6.inst.cfg -------------------------------------------------------------------------------- /resources/variants/blackbeltvd_35_0.9.inst.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/variants/blackbeltvd_35_0.9.inst.cfg -------------------------------------------------------------------------------- /resources/variants/blackbeltvd_35_1.2.inst.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/variants/blackbeltvd_35_1.2.inst.cfg -------------------------------------------------------------------------------- /resources/variants/blackbeltvd_45_0.2.inst.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/variants/blackbeltvd_45_0.2.inst.cfg -------------------------------------------------------------------------------- /resources/variants/blackbeltvd_45_0.4.inst.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/variants/blackbeltvd_45_0.4.inst.cfg -------------------------------------------------------------------------------- /resources/variants/blackbeltvd_45_0.6.inst.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/variants/blackbeltvd_45_0.6.inst.cfg -------------------------------------------------------------------------------- /resources/variants/blackbeltvd_45_0.9.inst.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/variants/blackbeltvd_45_0.9.inst.cfg -------------------------------------------------------------------------------- /resources/variants/blackbeltvd_45_1.2.inst.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/variants/blackbeltvd_45_1.2.inst.cfg -------------------------------------------------------------------------------- /resources/variants/cartesio_0.25.inst.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/variants/cartesio_0.25.inst.cfg -------------------------------------------------------------------------------- /resources/variants/cartesio_0.4.inst.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/variants/cartesio_0.4.inst.cfg -------------------------------------------------------------------------------- /resources/variants/cartesio_0.8.inst.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/variants/cartesio_0.8.inst.cfg -------------------------------------------------------------------------------- /resources/variants/fabtotum_hyb35.inst.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/variants/fabtotum_hyb35.inst.cfg -------------------------------------------------------------------------------- /resources/variants/fabtotum_lite04.inst.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/variants/fabtotum_lite04.inst.cfg -------------------------------------------------------------------------------- /resources/variants/fabtotum_lite06.inst.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/variants/fabtotum_lite06.inst.cfg -------------------------------------------------------------------------------- /resources/variants/fabtotum_pro02.inst.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/variants/fabtotum_pro02.inst.cfg -------------------------------------------------------------------------------- /resources/variants/fabtotum_pro04.inst.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/variants/fabtotum_pro04.inst.cfg -------------------------------------------------------------------------------- /resources/variants/fabtotum_pro06.inst.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/variants/fabtotum_pro06.inst.cfg -------------------------------------------------------------------------------- /resources/variants/fabtotum_pro08.inst.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/variants/fabtotum_pro08.inst.cfg -------------------------------------------------------------------------------- /resources/variants/felixtec4_0.25.inst.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/variants/felixtec4_0.25.inst.cfg -------------------------------------------------------------------------------- /resources/variants/felixtec4_0.35.inst.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/variants/felixtec4_0.35.inst.cfg -------------------------------------------------------------------------------- /resources/variants/felixtec4_0.50.inst.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/variants/felixtec4_0.50.inst.cfg -------------------------------------------------------------------------------- /resources/variants/felixtec4_0.70.inst.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/variants/felixtec4_0.70.inst.cfg -------------------------------------------------------------------------------- /resources/variants/gmax15plus_025_e3d.inst.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/variants/gmax15plus_025_e3d.inst.cfg -------------------------------------------------------------------------------- /resources/variants/gmax15plus_04_e3d.inst.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/variants/gmax15plus_04_e3d.inst.cfg -------------------------------------------------------------------------------- /resources/variants/gmax15plus_05_e3d.inst.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/variants/gmax15plus_05_e3d.inst.cfg -------------------------------------------------------------------------------- /resources/variants/gmax15plus_05_jhead.inst.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/variants/gmax15plus_05_jhead.inst.cfg -------------------------------------------------------------------------------- /resources/variants/gmax15plus_06_e3d.inst.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/variants/gmax15plus_06_e3d.inst.cfg -------------------------------------------------------------------------------- /resources/variants/gmax15plus_08_e3d.inst.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/variants/gmax15plus_08_e3d.inst.cfg -------------------------------------------------------------------------------- /resources/variants/gmax15plus_10_jhead.inst.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/variants/gmax15plus_10_jhead.inst.cfg -------------------------------------------------------------------------------- /resources/variants/imade3d_jellybox_0.4.inst.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/variants/imade3d_jellybox_0.4.inst.cfg -------------------------------------------------------------------------------- /resources/variants/tizyx_k25_0.2.inst.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/variants/tizyx_k25_0.2.inst.cfg -------------------------------------------------------------------------------- /resources/variants/tizyx_k25_0.3.inst.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/variants/tizyx_k25_0.3.inst.cfg -------------------------------------------------------------------------------- /resources/variants/tizyx_k25_0.4.inst.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/variants/tizyx_k25_0.4.inst.cfg -------------------------------------------------------------------------------- /resources/variants/tizyx_k25_0.5.inst.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/variants/tizyx_k25_0.5.inst.cfg -------------------------------------------------------------------------------- /resources/variants/tizyx_k25_0.6.inst.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/variants/tizyx_k25_0.6.inst.cfg -------------------------------------------------------------------------------- /resources/variants/tizyx_k25_0.8.inst.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/variants/tizyx_k25_0.8.inst.cfg -------------------------------------------------------------------------------- /resources/variants/tizyx_k25_1.0.inst.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/variants/tizyx_k25_1.0.inst.cfg -------------------------------------------------------------------------------- /resources/variants/ultimaker2_0.25.inst.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/variants/ultimaker2_0.25.inst.cfg -------------------------------------------------------------------------------- /resources/variants/ultimaker2_0.4.inst.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/variants/ultimaker2_0.4.inst.cfg -------------------------------------------------------------------------------- /resources/variants/ultimaker2_0.6.inst.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/variants/ultimaker2_0.6.inst.cfg -------------------------------------------------------------------------------- /resources/variants/ultimaker2_0.8.inst.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/variants/ultimaker2_0.8.inst.cfg -------------------------------------------------------------------------------- /resources/variants/ultimaker2_plus_0.25.inst.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/variants/ultimaker2_plus_0.25.inst.cfg -------------------------------------------------------------------------------- /resources/variants/ultimaker2_plus_0.4.inst.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/variants/ultimaker2_plus_0.4.inst.cfg -------------------------------------------------------------------------------- /resources/variants/ultimaker2_plus_0.6.inst.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/variants/ultimaker2_plus_0.6.inst.cfg -------------------------------------------------------------------------------- /resources/variants/ultimaker2_plus_0.8.inst.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/variants/ultimaker2_plus_0.8.inst.cfg -------------------------------------------------------------------------------- /resources/variants/ultimaker3_aa0.25.inst.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/variants/ultimaker3_aa0.25.inst.cfg -------------------------------------------------------------------------------- /resources/variants/ultimaker3_aa0.8.inst.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/variants/ultimaker3_aa0.8.inst.cfg -------------------------------------------------------------------------------- /resources/variants/ultimaker3_aa04.inst.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/variants/ultimaker3_aa04.inst.cfg -------------------------------------------------------------------------------- /resources/variants/ultimaker3_bb0.8.inst.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/variants/ultimaker3_bb0.8.inst.cfg -------------------------------------------------------------------------------- /resources/variants/ultimaker3_bb04.inst.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/variants/ultimaker3_bb04.inst.cfg -------------------------------------------------------------------------------- /resources/variants/ultimaker_s5_aa0.25.inst.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/variants/ultimaker_s5_aa0.25.inst.cfg -------------------------------------------------------------------------------- /resources/variants/ultimaker_s5_aa0.8.inst.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/variants/ultimaker_s5_aa0.8.inst.cfg -------------------------------------------------------------------------------- /resources/variants/ultimaker_s5_aa04.inst.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/variants/ultimaker_s5_aa04.inst.cfg -------------------------------------------------------------------------------- /resources/variants/ultimaker_s5_bb0.8.inst.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/variants/ultimaker_s5_bb0.8.inst.cfg -------------------------------------------------------------------------------- /resources/variants/ultimaker_s5_bb04.inst.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/variants/ultimaker_s5_bb04.inst.cfg -------------------------------------------------------------------------------- /resources/variants/ultimaker_s5_cc06.inst.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/variants/ultimaker_s5_cc06.inst.cfg -------------------------------------------------------------------------------- /resources/variants/ultimaker_s5_glass.inst.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/resources/variants/ultimaker_s5_glass.inst.cfg -------------------------------------------------------------------------------- /run_in_docker.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | Xvfb :1 -screen 0 1280x800x16 & 3 | export DISPLAY=:1.0 4 | python3 cura_app.py --headless -------------------------------------------------------------------------------- /run_mypy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/run_mypy.py -------------------------------------------------------------------------------- /scripts/check_gcode_buffer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/scripts/check_gcode_buffer.py -------------------------------------------------------------------------------- /scripts/check_shortcut_keys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/scripts/check_shortcut_keys.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/setup.py -------------------------------------------------------------------------------- /tests/Settings/TestCuraContainerRegistry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/tests/Settings/TestCuraContainerRegistry.py -------------------------------------------------------------------------------- /tests/Settings/TestExtruderStack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/tests/Settings/TestExtruderStack.py -------------------------------------------------------------------------------- /tests/Settings/TestGlobalStack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/tests/Settings/TestGlobalStack.py -------------------------------------------------------------------------------- /tests/Settings/TestSettingVisibilityPresets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/tests/Settings/TestSettingVisibilityPresets.py -------------------------------------------------------------------------------- /tests/Settings/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/tests/Settings/conftest.py -------------------------------------------------------------------------------- /tests/Settings/setting_visiblity_preset_test.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/tests/Settings/setting_visiblity_preset_test.cfg -------------------------------------------------------------------------------- /tests/TestArrange.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/tests/TestArrange.py -------------------------------------------------------------------------------- /tests/TestMachineAction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/tests/TestMachineAction.py -------------------------------------------------------------------------------- /tests/TestOAuth2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/tests/TestOAuth2.py -------------------------------------------------------------------------------- /tests/TestPrintInformation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/tests/TestPrintInformation.py -------------------------------------------------------------------------------- /tests/TestProfileRequirements.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/tests/TestProfileRequirements.py -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodoPrinter/Cura/HEAD/tests/conftest.py --------------------------------------------------------------------------------