├── cura ├── __init__.py ├── Scene │ └── __init__.py ├── Stages │ └── __init__.py ├── UI │ └── __init__.py ├── Utils │ └── __init__.py ├── Arranging │ └── __init__.py ├── Backups │ └── __init__.py ├── Machines │ ├── __init__.py │ └── Models │ │ └── __init__.py ├── Operations │ └── __init__.py ├── PrinterOutput │ ├── __init__.py │ └── Models │ │ └── __init__.py ├── ReaderWriters │ └── __init__.py ├── TaskManagement │ └── __init__.py ├── UltimakerCloud │ └── __init__.py ├── Settings │ ├── DatabaseHandlers │ │ └── __init__.py │ └── __init__.py └── OAuth2 │ └── __init__.py ├── tests ├── __init__.py └── Settings │ ├── __init__.py │ └── setting_visibility_preset_test.cfg ├── plugins ├── CuraDrive │ ├── src │ │ └── __init__.py │ └── plugin.json ├── DigitalLibrary │ ├── src │ │ └── __init__.py │ ├── tests │ │ └── conftest.py │ └── resources │ │ └── images │ │ └── placeholder.svg ├── USBPrinting │ └── avr_isp │ │ └── __init__.py ├── FirmwareUpdateChecker │ ├── tests │ │ └── __init__.py │ └── plugin.json ├── UM3NetworkPrinting │ ├── src │ │ ├── Cloud │ │ │ └── __init__.py │ │ ├── Messages │ │ │ └── __init__.py │ │ ├── Models │ │ │ ├── __init__.py │ │ │ └── Http │ │ │ │ └── __init__.py │ │ ├── Network │ │ │ └── __init__.py │ │ └── __init__.py │ └── resources │ │ ├── png │ │ ├── Ultimaker 3.png │ │ ├── Ultimaker S3.png │ │ ├── Ultimaker S5.png │ │ ├── Ultimaker 2+ Connect.png │ │ └── Ultimaker 3 Extended.png │ │ └── svg │ │ └── Check.svg ├── PostProcessingPlugin │ ├── README.md │ ├── tests │ │ └── __init__.py │ ├── scripts │ │ └── ExampleScript.md │ └── plugin.json ├── UFPWriter │ ├── kitten.png │ └── plugin.json ├── SimulationView │ ├── resources │ │ ├── nozzle.stl │ │ └── Pause.svg │ └── plugin.json ├── LegacyProfileReader │ └── tests │ │ └── normal_case.ini ├── AMFReader │ └── plugin.json ├── TrimeshReader │ └── plugin.json ├── XRayView │ └── plugin.json ├── GCodeWriter │ └── plugin.json ├── SolidView │ └── plugin.json ├── Marketplace │ └── resources │ │ └── images │ │ └── placeholder.svg ├── MonitorStage │ └── plugin.json ├── PrepareStage │ └── plugin.json ├── PreviewStage │ └── plugin.json ├── 3MFReader │ └── plugin.json ├── 3MFWriter │ └── plugin.json ├── GCodeGzReader │ └── plugin.json ├── GCodeGzWriter │ └── plugin.json ├── PerObjectSettingsTool │ └── plugin.json ├── X3DReader │ └── plugin.json ├── CuraProfileReader │ └── plugin.json ├── CuraProfileWriter │ └── plugin.json ├── FirmwareUpdater │ └── plugin.json ├── GCodeReader │ └── plugin.json ├── CuraEngineBackend │ └── plugin.json ├── ImageReader │ └── plugin.json ├── SentryLogger │ └── plugin.json ├── SliceInfoPlugin │ └── plugin.json └── UFPReader │ └── plugin.json ├── .dockerignore ├── cura-logo.PNG ├── icons ├── cura.ico ├── cura.icns ├── cura-128.png ├── cura-32.png ├── cura-48.png └── cura-64.png ├── docker └── test.sh ├── resources ├── images │ ├── uni.png │ ├── zav.png │ ├── cura.png │ ├── moai.jpg │ ├── cura_wip.png │ ├── hellbot.png │ ├── hms434.png │ ├── kitten.jpg │ ├── koonovo.png │ ├── Magna2_230.png │ ├── Magna2_300.png │ ├── Magna2_400.png │ ├── Magna2_500.png │ ├── cura-icon.png │ ├── farm2plate.png │ ├── koshertext.png │ ├── cubicon_icon.png │ ├── cubicon_log.png │ ├── cura-icon-32.png │ ├── cura-icon_wip.png │ ├── dxu_backplate.png │ ├── farm2ceplate.png │ ├── hellbot_hidra.png │ ├── svtbacktext.png │ ├── wanhao-icon.png │ ├── Wanhaobackplate.png │ ├── anycubic-chiron.png │ ├── cura_enterprise.png │ ├── Cocoon-backplate.png │ ├── anycubic_predator.png │ ├── cura-icon-32_wip.png │ ├── fabtotum_platform.png │ ├── hellbot_hidra_plus.png │ ├── hellbot_magna_SE.png │ ├── Ultimaker2backplate.png │ ├── Ultimaker3backplate.png │ ├── UltimakerS3backplate.png │ ├── UltimakerS5backplate.png │ ├── eryone_thinker_plate.png │ ├── flyingbear_platform.png │ ├── MakerStarterbackplate.png │ ├── Ultimaker2Gobackplate.png │ ├── Ultimaker2Plusbackplate.png │ ├── UltimakerPlusbackplate.png │ ├── StereotechSte320backplate.png │ ├── Ultimaker2Extendedbackplate.png │ ├── Ultimaker3Extendedbackplate.png │ ├── Mark2_for_Ultimaker2_backplate.png │ ├── Ultimaker2PlusConnectbackplate.png │ └── Ultimaker2ExtendedPlusbackplate.png ├── meshes │ ├── cr-x.3mf │ ├── zav_l.stl │ ├── BIQU_SSS.stl │ ├── beamup_l.3mf │ ├── beamup_s.3mf │ ├── flsun_sr.stl │ ├── kemiq_q2.3mf │ ├── tronxy.stl │ ├── zav_big.stl │ ├── zav_max.stl │ ├── zav_mini.stl │ ├── Atom 3 bed.3mf │ ├── deltacomb.3mf │ ├── flsun_qq_s.3mf │ ├── weedo_x40.3mf │ ├── zav_maxpro.stl │ ├── BIQU_BX_PLATE.stl │ ├── SH65_platform.STL │ ├── alya_platform.3mf │ ├── dagoma_magis.3mf │ ├── dagoma_neva.3mf │ ├── jgaurora_a5.3mf │ ├── kingroon_kp3.stl │ ├── kingroon_kp3s.stl │ ├── koonovo_kn3.stl │ ├── koonovo_kn5.stl │ ├── lulzbot_mini.stl │ ├── tam_series1.3mf │ ├── zav_bigplus.stl │ ├── zyyx_platform.3mf │ ├── 3dator_platform.3mf │ ├── Atom 3 lite bed.3mf │ ├── aneta6_platform.3mf │ ├── artillery_swx1.stl │ ├── creality_ender3.3mf │ ├── deltacomb_dc20.stl │ ├── deltacomb_dc30.stl │ ├── kossel_platform.3mf │ ├── liquid_platform.stl │ ├── mingda_d2_base.stl │ ├── printrbot_play.3mf │ ├── tevo_blackwidow.3mf │ ├── voron0_120_bed.stl │ ├── voron2_250_bed.3mf │ ├── voron2_300_bed.3mf │ ├── voron2_350_bed.3mf │ ├── 101hero-platform.3mf │ ├── 3di_d300_platform.STL │ ├── FT-5_build_plate.3mf │ ├── FelixTec4_platform.3mf │ ├── Vertex_build_panel.3mf │ ├── alya_nx_platform.3mf │ ├── arjun300_platform.stl │ ├── artemis_platform.3mf │ ├── artillery_genius.stl │ ├── bq_witbox_platform.3mf │ ├── cartesio_platform.3mf │ ├── creality_cr10spro.3mf │ ├── creality_ender3max.stl │ ├── fabtotum_platform.3mf │ ├── fabxpro_platform.3mf │ ├── grr_neo_platform.3mf │ ├── inventor_platform.3mf │ ├── mendel90_platform.3mf │ ├── mingda_d4pro_base.stl │ ├── mingda_rock3_base.stl │ ├── predator_platform.stl │ ├── prusai3_platform.3mf │ ├── rigidbot_platform.3mf │ ├── rostock_platform.3mf │ ├── stereotech_start.3mf │ ├── tizyx_k25_platform.3mf │ ├── twotrees_platform.stl │ ├── ultimaker_platform.3mf │ ├── uni_200_platform.stl │ ├── uni_250_platform.stl │ ├── uni_300_platform.stl │ ├── uni_mini_platform.stl │ ├── STREAM20PRO_platform.STL │ ├── STREAM30PRO_platform.STL │ ├── arjunpro300_platform.STL │ ├── dagoma_discoeasy200.3mf │ ├── dagoma_discoultimate.3mf │ ├── dagoma_pro_430_base.3mf │ ├── jgaurora_a6_platform.stl │ ├── lulzbot_taz_pro_bed.stl │ ├── malyan_m200_platform.3mf │ ├── pbr3d_g1_buildplate.stl │ ├── prusai3_xl_platform.3mf │ ├── rigidbotbig_platform.3mf │ ├── sapphirepro_platform.stl │ ├── skriware_2_platform.3mf │ ├── tinyboy_fabrikator15.stl │ ├── z-bolt_plus_platform.3mf │ ├── STREAM30ULTRA_platform.STL │ ├── UltimakerRobot_support.stl │ ├── anycubic_4max_platform.3mf │ ├── anycubic_vyper_platform.stl │ ├── atmat_asterion_platform.stl │ ├── bq_hephestos_2_platform.3mf │ ├── bq_hephestos_platform.3mf │ ├── eryone_er20_plateform.stl │ ├── hardprint_hozo_platform.stl │ ├── ideagen3D_sapphire_plus.3mf │ ├── longer_235mm_platform.stl │ ├── longer_310mm_platform.stl │ ├── longer_415mm_platform.stl │ ├── longer_cube2_platform.stl │ ├── makeR_pegasus_platform.3mf │ ├── makerstarter_platform.3mf │ ├── mp_mini_delta_platform.3mf │ ├── rigid3d_mucit2_platform.3mf │ ├── rigid3d_mucit_platform.3mf │ ├── rigid3d_zero2_platform.3mf │ ├── sapphireplus_platform.stl │ ├── twotrees235x235_generic.stl │ ├── twotrees300x300_generic.stl │ ├── uni_print_3d_platform.3mf │ ├── z-bolt_classic_platform.3mf │ ├── anycubic_i3_mega_platform.3mf │ ├── atmat_signal_pro_platform.stl │ ├── blv_mgn_cube_300_platform.3mf │ ├── blv_mgn_cube_350_platform.3mf │ ├── builder_premium_platform.3mf │ ├── imade3d_jellybox_platform.3mf │ ├── inat_proton_x_buildplate.stl │ ├── kossel_pro_build_platform.3mf │ ├── lotmaxx_sc_10_20_platform.3mf │ ├── mixware_hyper_s_platform.stl │ ├── trimaker_nebula_platform.stl │ ├── anycubic_i3_mega_s_platform.3mf │ ├── anycubic_i3_mega_x_platform.stl │ ├── anycubic_mega_zero_platform.stl │ ├── dagoma_discoeasy200_bicolor.3mf │ ├── dagoma_discoultimate_bicolor.3mf │ ├── hardprint_hozo_ix_platform.stl │ ├── imade3d_jellybox_2_platform.3mf │ ├── leapfrog_bolt_pro_platform.3mf │ ├── tevo_tarantula_pro_platform.3mf │ ├── trimaker_cosmosII_platform.stl │ ├── BEEVERYCREATIVE-helloBEEprusa.3mf │ ├── printrbot_simple_metal_upgrade.3mf │ ├── 3dtech_semi_professional_platform.3mf │ ├── makeR_prusa_tairona_i3_platform.3mf │ ├── printrbot_simple_metal_platform.3mf │ ├── Original_Prusa_i3_MK3S_MK3_platform.3mf │ ├── mankati_fullscale_xt_plus_platform.3mf │ └── gmax_1-5_xt-plus_s3d_full model_150707.3mf ├── themes │ └── cura-light │ │ ├── fonts │ │ ├── noto-sans │ │ │ ├── NotoSans-Bold.ttf │ │ │ ├── NotoSans-Thin.ttf │ │ │ ├── NotoSans-Black.ttf │ │ │ ├── NotoSans-Italic.ttf │ │ │ ├── NotoSans-Light.ttf │ │ │ ├── NotoSans-Medium.ttf │ │ │ ├── NotoSans-Regular.ttf │ │ │ ├── NotoSans-ExtraBold.ttf │ │ │ ├── NotoSans-SemiBold.ttf │ │ │ ├── NotoSans-BlackItalic.ttf │ │ │ ├── NotoSans-BoldItalic.ttf │ │ │ ├── NotoSans-ExtraLight.ttf │ │ │ ├── NotoSans-LightItalic.ttf │ │ │ ├── NotoSans-MediumItalic.ttf │ │ │ ├── NotoSans-ThinItalic.ttf │ │ │ ├── NotoSans-SemiBoldItalic.ttf │ │ │ ├── NotoSans-ExtraBoldItalic.ttf │ │ │ └── NotoSans-ExtraLightItalic.ttf │ │ └── noto-sans-display │ │ │ ├── NotoSansDisplay-Bold.ttf │ │ │ ├── NotoSansDisplay-Thin.ttf │ │ │ ├── NotoSansDisplay-Black.ttf │ │ │ ├── NotoSansDisplay-Italic.ttf │ │ │ ├── NotoSansDisplay-Light.ttf │ │ │ ├── NotoSansDisplay-Medium.ttf │ │ │ ├── NotoSansDisplay-Regular.ttf │ │ │ ├── NotoSansDisplay-ExtraBold.ttf │ │ │ ├── NotoSansDisplay-SemiBold.ttf │ │ │ ├── NotoSansDisplay-BlackItalic.ttf │ │ │ ├── NotoSansDisplay-BoldItalic.ttf │ │ │ ├── NotoSansDisplay-ExtraLight.ttf │ │ │ ├── NotoSansDisplay-LightItalic.ttf │ │ │ ├── NotoSansDisplay-MediumItalic.ttf │ │ │ ├── NotoSansDisplay-ThinItalic.ttf │ │ │ ├── NotoSansDisplay-SemiBoldItalic.ttf │ │ │ ├── NotoSansDisplay-ExtraBoldItalic.ttf │ │ │ └── NotoSansDisplay-ExtraLightItalic.ttf │ │ └── icons │ │ ├── default │ │ ├── Solid.svg │ │ ├── Infill100.svg │ │ ├── EmptyInfo.svg │ │ ├── CircleOutline.svg │ │ ├── Minus.svg │ │ ├── Pen.svg │ │ ├── Check.svg │ │ ├── ArrowDown.svg │ │ ├── ArrowLeft.svg │ │ ├── ChevronSingleDown.svg │ │ ├── ChevronSingleLeft.svg │ │ ├── ChevronSingleRight.svg │ │ ├── ChevronSingleUp.svg │ │ ├── ThreeDots.svg │ │ └── Plus.svg │ │ └── low │ │ ├── CircleSolid.svg │ │ ├── Dot.svg │ │ ├── Warning.svg │ │ ├── CheckThin.svg │ │ ├── Check.svg │ │ └── CheckBoxFill.svg ├── definitions │ └── goofoo_near.def.json ├── variants │ ├── tizyx_k25_0.2.inst.cfg │ ├── tizyx_k25_0.3.inst.cfg │ ├── tizyx_k25_0.4.inst.cfg │ ├── tizyx_k25_0.6.inst.cfg │ ├── tizyx_k25_0.8.inst.cfg │ ├── tizyx_k25_1.0.inst.cfg │ ├── biqu_b1_0.2.inst.cfg │ ├── biqu_b1_0.3.inst.cfg │ ├── biqu_b1_0.4.inst.cfg │ ├── biqu_b1_0.5.inst.cfg │ ├── biqu_b1_0.6.inst.cfg │ ├── biqu_b1_0.8.inst.cfg │ ├── uni_200_0.30.inst.cfg │ ├── uni_200_0.40.inst.cfg │ ├── uni_200_0.50.inst.cfg │ ├── uni_250_0.30.inst.cfg │ ├── uni_250_0.40.inst.cfg │ ├── uni_250_0.50.inst.cfg │ ├── uni_300_0.30.inst.cfg │ ├── uni_300_0.40.inst.cfg │ ├── uni_300_0.50.inst.cfg │ ├── zav_l_0.20.inst.cfg │ ├── zav_l_0.30.inst.cfg │ ├── zav_l_0.40.inst.cfg │ ├── zav_l_0.50.inst.cfg │ ├── zav_l_0.60.inst.cfg │ ├── zav_l_0.80.inst.cfg │ ├── zav_l_1.00.inst.cfg │ ├── biqu_b1_abl_0.2.inst.cfg │ ├── biqu_b1_abl_0.3.inst.cfg │ ├── biqu_b1_abl_0.4.inst.cfg │ ├── biqu_b1_abl_0.5.inst.cfg │ ├── biqu_b1_abl_0.6.inst.cfg │ ├── biqu_b1_abl_0.8.inst.cfg │ ├── biqu_base_0.2.inst.cfg │ ├── biqu_base_0.3.inst.cfg │ ├── biqu_base_0.4.inst.cfg │ ├── biqu_base_0.5.inst.cfg │ ├── biqu_base_0.6.inst.cfg │ ├── biqu_base_0.8.inst.cfg │ ├── biqu_bx_abl_0.2.inst.cfg │ ├── biqu_bx_abl_0.3.inst.cfg │ ├── biqu_bx_abl_0.4.inst.cfg │ ├── biqu_bx_abl_0.5.inst.cfg │ ├── biqu_bx_abl_0.6.inst.cfg │ ├── biqu_bx_abl_0.8.inst.cfg │ ├── diy220_0.2.inst.cfg │ ├── diy220_0.3.inst.cfg │ ├── diy220_0.4.inst.cfg │ ├── diy220_0.5.inst.cfg │ ├── diy220_0.6.inst.cfg │ ├── diy220_0.8.inst.cfg │ ├── goofoo_base_0.4.inst.cfg │ ├── goofoo_max_0.2.inst.cfg │ ├── goofoo_max_0.4.inst.cfg │ ├── goofoo_max_0.6.inst.cfg │ ├── goofoo_max_0.8.inst.cfg │ ├── goofoo_max_1.0.inst.cfg │ ├── goofoo_mido_0.2.inst.cfg │ ├── goofoo_mido_0.4.inst.cfg │ ├── goofoo_mido_0.6.inst.cfg │ ├── goofoo_mido_0.8.inst.cfg │ ├── goofoo_mido_1.0.inst.cfg │ ├── goofoo_nova_0.2.inst.cfg │ ├── goofoo_nova_0.4.inst.cfg │ ├── goofoo_nova_0.6.inst.cfg │ ├── goofoo_nova_0.8.inst.cfg │ ├── goofoo_nova_1.0.inst.cfg │ ├── goofoo_plus_0.2.inst.cfg │ ├── goofoo_plus_0.4.inst.cfg │ ├── goofoo_plus_0.6.inst.cfg │ ├── goofoo_plus_0.8.inst.cfg │ ├── goofoo_plus_1.0.inst.cfg │ ├── goofoo_tiny_0.2.inst.cfg │ ├── goofoo_tiny_0.4.inst.cfg │ ├── goofoo_tiny_0.6.inst.cfg │ ├── goofoo_tiny_0.8.inst.cfg │ ├── goofoo_tiny_1.0.inst.cfg │ ├── kosher220_0.2.inst.cfg │ ├── kosher220_0.3.inst.cfg │ ├── kosher220_0.4.inst.cfg │ ├── kosher220_0.5.inst.cfg │ ├── kosher220_0.6.inst.cfg │ ├── kosher220_0.8.inst.cfg │ ├── mingda_base_0.2.inst.cfg │ ├── mingda_base_0.3.inst.cfg │ ├── mingda_base_0.4.inst.cfg │ ├── mingda_base_0.6.inst.cfg │ ├── mingda_base_0.8.inst.cfg │ ├── mingda_base_1.0.inst.cfg │ ├── mingda_d2_0.2.inst.cfg │ ├── mingda_d2_0.3.inst.cfg │ ├── mingda_d2_0.4.inst.cfg │ ├── mingda_d2_0.5.inst.cfg │ ├── mingda_d2_0.6.inst.cfg │ ├── mingda_d2_0.8.inst.cfg │ ├── mingda_d2_1.0.inst.cfg │ ├── tizyx_k25_0.5.inst.cfg │ ├── uni_base_0.30.inst.cfg │ ├── uni_base_0.40.inst.cfg │ ├── uni_base_0.50.inst.cfg │ ├── uni_mini_0.30.inst.cfg │ ├── uni_mini_0.40.inst.cfg │ ├── uni_mini_0.50.inst.cfg │ ├── voron0_120_v6_0.25.inst.cfg │ ├── voron0_120_v6_0.30.inst.cfg │ ├── voron0_120_v6_0.40.inst.cfg │ ├── voron0_120_v6_0.50.inst.cfg │ ├── voron0_120_v6_0.60.inst.cfg │ ├── voron0_120_v6_0.80.inst.cfg │ ├── voron2_250_v6_0.25.inst.cfg │ ├── voron2_250_v6_0.30.inst.cfg │ ├── voron2_250_v6_0.35.inst.cfg │ ├── voron2_250_v6_0.40.inst.cfg │ ├── voron2_250_v6_0.50.inst.cfg │ ├── voron2_250_v6_0.60.inst.cfg │ ├── voron2_250_v6_0.80.inst.cfg │ ├── voron2_300_v6_0.25.inst.cfg │ ├── voron2_300_v6_0.30.inst.cfg │ ├── voron2_300_v6_0.35.inst.cfg │ ├── voron2_300_v6_0.40.inst.cfg │ ├── voron2_300_v6_0.50.inst.cfg │ ├── voron2_300_v6_0.60.inst.cfg │ ├── voron2_300_v6_0.80.inst.cfg │ ├── voron2_350_v6_0.25.inst.cfg │ ├── voron2_350_v6_0.30.inst.cfg │ ├── voron2_350_v6_0.35.inst.cfg │ ├── voron2_350_v6_0.40.inst.cfg │ ├── voron2_350_v6_0.50.inst.cfg │ ├── voron2_350_v6_0.60.inst.cfg │ ├── voron2_350_v6_0.80.inst.cfg │ ├── zav_big_0.20.inst.cfg │ ├── zav_big_0.25.inst.cfg │ ├── zav_big_0.30.inst.cfg │ ├── zav_big_0.35.inst.cfg │ ├── zav_big_0.40.inst.cfg │ ├── zav_big_0.45.inst.cfg │ ├── zav_big_0.50.inst.cfg │ ├── zav_big_0.60.inst.cfg │ ├── zav_big_0.80.inst.cfg │ ├── zav_big_1.00.inst.cfg │ ├── zav_l_0.25.inst.cfg │ ├── zav_l_0.35.inst.cfg │ ├── zav_l_0.45.inst.cfg │ ├── zav_max_0.20.inst.cfg │ ├── zav_max_0.25.inst.cfg │ ├── zav_max_0.30.inst.cfg │ ├── zav_max_0.35.inst.cfg │ ├── zav_max_0.40.inst.cfg │ ├── zav_max_0.45.inst.cfg │ ├── zav_max_0.50.inst.cfg │ ├── zav_max_0.60.inst.cfg │ ├── zav_max_0.80.inst.cfg │ ├── zav_max_1.00.inst.cfg │ ├── arjun300_0.2.inst.cfg │ ├── arjun300_0.3.inst.cfg │ ├── arjun300_0.4.inst.cfg │ ├── arjun300_0.5.inst.cfg │ ├── arjun300_0.6.inst.cfg │ ├── arjun300_0.8.inst.cfg │ ├── creality_base_0.2.inst.cfg │ ├── creality_base_0.3.inst.cfg │ ├── creality_base_0.4.inst.cfg │ ├── creality_base_0.5.inst.cfg │ ├── creality_base_0.6.inst.cfg │ ├── creality_base_0.8.inst.cfg │ ├── creality_base_1.0.inst.cfg │ ├── creality_cr10_0.2.inst.cfg │ ├── creality_cr10_0.3.inst.cfg │ ├── creality_cr10_0.4.inst.cfg │ ├── creality_cr10_0.5.inst.cfg │ ├── creality_cr10_0.6.inst.cfg │ ├── creality_cr10_0.8.inst.cfg │ ├── creality_cr10_1.0.inst.cfg │ ├── creality_cr20_0.2.inst.cfg │ ├── creality_cr20_0.3.inst.cfg │ ├── creality_cr20_0.4.inst.cfg │ ├── creality_cr20_0.5.inst.cfg │ ├── creality_cr20_0.6.inst.cfg │ ├── creality_cr20_0.8.inst.cfg │ ├── creality_cr20_1.0.inst.cfg │ ├── farm2_printhead_0.2.inst.cfg │ ├── farm2_printhead_0.3.inst.cfg │ ├── farm2_printhead_0.4.inst.cfg │ ├── farm2_printhead_0.5.inst.cfg │ ├── goofoo_cube_0.7.inst.cfg │ ├── goofoo_e-one_0.2.inst.cfg │ ├── goofoo_e-one_0.4.inst.cfg │ ├── goofoo_e-one_0.6.inst.cfg │ ├── goofoo_e-one_0.8.inst.cfg │ ├── goofoo_e-one_1.0.inst.cfg │ ├── goofoo_gemini_0.2.inst.cfg │ ├── goofoo_gemini_0.4.inst.cfg │ ├── goofoo_gemini_0.6.inst.cfg │ ├── goofoo_gemini_0.8.inst.cfg │ ├── goofoo_gemini_1.0.inst.cfg │ ├── goofoo_giant_0.2.inst.cfg │ ├── goofoo_giant_0.4.inst.cfg │ ├── goofoo_giant_0.6.inst.cfg │ ├── goofoo_giant_0.8.inst.cfg │ ├── goofoo_giant_1.0.inst.cfg │ ├── goofoo_t-one_0.2.inst.cfg │ ├── goofoo_t-one_0.4.inst.cfg │ ├── goofoo_t-one_0.6.inst.cfg │ ├── goofoo_t-one_0.8.inst.cfg │ ├── goofoo_t-one_1.0.inst.cfg │ ├── kingroon_kp3_0.2.inst.cfg │ ├── kingroon_kp3_0.3.inst.cfg │ ├── kingroon_kp3_0.4.inst.cfg │ ├── kingroon_kp3_0.5.inst.cfg │ ├── kingroon_kp3_0.6.inst.cfg │ ├── kingroon_kp3_0.8.inst.cfg │ ├── kingroon_kp3_1.0.inst.cfg │ ├── kingroon_kp3s_0.2.inst.cfg │ ├── kingroon_kp3s_0.3.inst.cfg │ ├── kingroon_kp3s_0.4.inst.cfg │ ├── kingroon_kp3s_0.5.inst.cfg │ ├── kingroon_kp3s_0.6.inst.cfg │ ├── kingroon_kp3s_0.8.inst.cfg │ ├── kingroon_kp3s_1.0.inst.cfg │ ├── longer │ │ ├── longer_lk1_0.4.inst.cfg │ │ ├── longer_lk4_0.4.inst.cfg │ │ └── longer_lk5_0.4.inst.cfg │ ├── mingda_d3pro_0.2.inst.cfg │ ├── mingda_d3pro_0.3.inst.cfg │ ├── mingda_d3pro_0.4.inst.cfg │ ├── mingda_d3pro_0.5.inst.cfg │ ├── mingda_d3pro_0.6.inst.cfg │ ├── mingda_d3pro_0.8.inst.cfg │ ├── mingda_d3pro_1.0.inst.cfg │ ├── mingda_d4pro_0.2.inst.cfg │ ├── mingda_d4pro_0.3.inst.cfg │ ├── mingda_d4pro_0.4.inst.cfg │ ├── mingda_d4pro_0.5.inst.cfg │ ├── mingda_d4pro_0.6.inst.cfg │ ├── mingda_d4pro_0.8.inst.cfg │ ├── mingda_d4pro_1.0.inst.cfg │ ├── mingda_rock3_0.2.inst.cfg │ ├── mingda_rock3_0.3.inst.cfg │ ├── mingda_rock3_0.4.inst.cfg │ ├── mingda_rock3_0.5.inst.cfg │ ├── mingda_rock3_0.6.inst.cfg │ ├── mingda_rock3_0.8.inst.cfg │ ├── mingda_rock3_1.0.inst.cfg │ ├── voron2_custom_v6_0.40.inst.cfg │ ├── voron2_custom_v6_0.50.inst.cfg │ ├── voron2_custom_v6_0.60.inst.cfg │ ├── voron2_custom_v6_0.80.inst.cfg │ ├── weedo_x40_weedo_0.4.inst.cfg │ ├── weedo_x40_weedo_0.6.inst.cfg │ ├── weedo_x40_weedo_0.8.inst.cfg │ ├── zav_base_0.20.inst.cfg │ ├── zav_base_0.25.inst.cfg │ ├── zav_base_0.30.inst.cfg │ ├── zav_base_0.35.inst.cfg │ ├── zav_base_0.40.inst.cfg │ ├── zav_base_0.45.inst.cfg │ ├── zav_base_0.50.inst.cfg │ ├── zav_base_0.60.inst.cfg │ ├── zav_base_0.80.inst.cfg │ ├── zav_base_1.00.inst.cfg │ ├── zav_maxpro_0.20.inst.cfg │ ├── zav_maxpro_0.30.inst.cfg │ ├── zav_maxpro_0.40.inst.cfg │ ├── zav_maxpro_0.50.inst.cfg │ ├── zav_maxpro_0.60.inst.cfg │ ├── zav_maxpro_0.80.inst.cfg │ ├── zav_maxpro_1.00.inst.cfg │ ├── zav_mini_0.20.inst.cfg │ ├── zav_mini_0.25.inst.cfg │ ├── zav_mini_0.30.inst.cfg │ ├── zav_mini_0.35.inst.cfg │ ├── zav_mini_0.40.inst.cfg │ ├── zav_mini_0.45.inst.cfg │ ├── zav_mini_0.50.inst.cfg │ ├── zav_mini_0.60.inst.cfg │ ├── zav_mini_0.80.inst.cfg │ ├── zav_mini_1.00.inst.cfg │ ├── arjun300_mm_0.2.inst.cfg │ ├── arjun300_mm_0.3.inst.cfg │ ├── arjun300_mm_0.4.inst.cfg │ ├── arjun300_mm_0.5.inst.cfg │ ├── arjun300_mm_0.6.inst.cfg │ ├── arjun300_mm_0.8.inst.cfg │ ├── arjunpro300_0.2.inst.cfg │ ├── arjunpro300_0.3.inst.cfg │ ├── arjunpro300_0.4.inst.cfg │ ├── arjunpro300_0.5.inst.cfg │ ├── arjunpro300_0.6.inst.cfg │ └── arjunpro300_0.8.inst.cfg ├── qml │ └── BorderGroup.qml └── quality │ ├── normal.inst.cfg │ ├── diy220 │ └── diy220_normal.inst.cfg │ ├── malyan_m200 │ └── 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 │ └── ultimaker2 │ └── um2_normal.inst.cfg ├── docs ├── Profile Structure.png ├── resources │ └── PerObjectStack.png └── scene │ └── images │ ├── mirror_tool.jpg │ ├── rotate_tool.jpg │ ├── scale_tool.jpg │ ├── scene_example.jpg │ ├── selection_tool.jpg │ ├── translate_tool.jpg │ ├── layer_data_scene_node.jpg │ ├── support_blocker_tool.jpg │ ├── per_objectsettings_tool.jpg │ ├── scene_example_scene_graph.jpg │ ├── tools_tool-handles_class_diagram.jpg │ ├── components_interacting_with_scene.jpg │ └── components_interacting_with_scene.png ├── pytest.ini ├── run_in_docker.sh ├── test-in-docker.sh └── .github └── ISSUE_TEMPLATE └── config.yml /cura/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cura/Scene/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cura/Stages/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cura/UI/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cura/Utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cura/Arranging/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cura/Backups/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cura/Machines/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cura/Operations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/Settings/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cura/Machines/Models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cura/PrinterOutput/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cura/ReaderWriters/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cura/TaskManagement/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cura/UltimakerCloud/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/CuraDrive/src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cura/PrinterOutput/Models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/DigitalLibrary/src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cura/Settings/DatabaseHandlers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/USBPrinting/avr_isp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/FirmwareUpdateChecker/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/UM3NetworkPrinting/src/Cloud/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/UM3NetworkPrinting/src/Messages/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/UM3NetworkPrinting/src/Models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/UM3NetworkPrinting/src/Network/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/UM3NetworkPrinting/src/Models/Http/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- 1 | .git 2 | .github 3 | resources/materials 4 | CuraEngine -------------------------------------------------------------------------------- /cura-logo.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/cura-logo.PNG -------------------------------------------------------------------------------- /icons/cura.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/icons/cura.ico -------------------------------------------------------------------------------- /icons/cura.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/icons/cura.icns -------------------------------------------------------------------------------- /icons/cura-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/icons/cura-128.png -------------------------------------------------------------------------------- /icons/cura-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/icons/cura-32.png -------------------------------------------------------------------------------- /icons/cura-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/icons/cura-48.png -------------------------------------------------------------------------------- /icons/cura-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/icons/cura-64.png -------------------------------------------------------------------------------- /docker/test.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | cd build 3 | ctest -j4 --output-on-failure -T Test 4 | -------------------------------------------------------------------------------- /resources/images/uni.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/images/uni.png -------------------------------------------------------------------------------- /resources/images/zav.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/images/zav.png -------------------------------------------------------------------------------- /docs/Profile Structure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/docs/Profile Structure.png -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- 1 | [pytest] 2 | testpaths = tests 3 | python_files = Test*.py 4 | python_classes = Test 5 | -------------------------------------------------------------------------------- /resources/images/cura.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/images/cura.png -------------------------------------------------------------------------------- /resources/images/moai.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/images/moai.jpg -------------------------------------------------------------------------------- /resources/meshes/cr-x.3mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/meshes/cr-x.3mf -------------------------------------------------------------------------------- /resources/meshes/zav_l.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/meshes/zav_l.stl -------------------------------------------------------------------------------- /plugins/PostProcessingPlugin/README.md: -------------------------------------------------------------------------------- 1 | # PostProcessingPlugin 2 | A post processing plugin for Cura 3 | -------------------------------------------------------------------------------- /plugins/UFPWriter/kitten.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/plugins/UFPWriter/kitten.png -------------------------------------------------------------------------------- /resources/images/cura_wip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/images/cura_wip.png -------------------------------------------------------------------------------- /resources/images/hellbot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/images/hellbot.png -------------------------------------------------------------------------------- /resources/images/hms434.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/images/hms434.png -------------------------------------------------------------------------------- /resources/images/kitten.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/images/kitten.jpg -------------------------------------------------------------------------------- /resources/images/koonovo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/images/koonovo.png -------------------------------------------------------------------------------- /resources/meshes/BIQU_SSS.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/meshes/BIQU_SSS.stl -------------------------------------------------------------------------------- /resources/meshes/beamup_l.3mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/meshes/beamup_l.3mf -------------------------------------------------------------------------------- /resources/meshes/beamup_s.3mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/meshes/beamup_s.3mf -------------------------------------------------------------------------------- /resources/meshes/flsun_sr.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/meshes/flsun_sr.stl -------------------------------------------------------------------------------- /resources/meshes/kemiq_q2.3mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/meshes/kemiq_q2.3mf -------------------------------------------------------------------------------- /resources/meshes/tronxy.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/meshes/tronxy.stl -------------------------------------------------------------------------------- /resources/meshes/zav_big.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/meshes/zav_big.stl -------------------------------------------------------------------------------- /resources/meshes/zav_max.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/meshes/zav_max.stl -------------------------------------------------------------------------------- /resources/meshes/zav_mini.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/meshes/zav_mini.stl -------------------------------------------------------------------------------- /resources/images/Magna2_230.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/images/Magna2_230.png -------------------------------------------------------------------------------- /resources/images/Magna2_300.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/images/Magna2_300.png -------------------------------------------------------------------------------- /resources/images/Magna2_400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/images/Magna2_400.png -------------------------------------------------------------------------------- /resources/images/Magna2_500.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/images/Magna2_500.png -------------------------------------------------------------------------------- /resources/images/cura-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/images/cura-icon.png -------------------------------------------------------------------------------- /resources/images/farm2plate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/images/farm2plate.png -------------------------------------------------------------------------------- /resources/images/koshertext.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/images/koshertext.png -------------------------------------------------------------------------------- /resources/meshes/Atom 3 bed.3mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/meshes/Atom 3 bed.3mf -------------------------------------------------------------------------------- /resources/meshes/deltacomb.3mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/meshes/deltacomb.3mf -------------------------------------------------------------------------------- /resources/meshes/flsun_qq_s.3mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/meshes/flsun_qq_s.3mf -------------------------------------------------------------------------------- /resources/meshes/weedo_x40.3mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/meshes/weedo_x40.3mf -------------------------------------------------------------------------------- /resources/meshes/zav_maxpro.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/meshes/zav_maxpro.stl -------------------------------------------------------------------------------- /docs/resources/PerObjectStack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/docs/resources/PerObjectStack.png -------------------------------------------------------------------------------- /docs/scene/images/mirror_tool.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/docs/scene/images/mirror_tool.jpg -------------------------------------------------------------------------------- /docs/scene/images/rotate_tool.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/docs/scene/images/rotate_tool.jpg -------------------------------------------------------------------------------- /docs/scene/images/scale_tool.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/docs/scene/images/scale_tool.jpg -------------------------------------------------------------------------------- /resources/images/cubicon_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/images/cubicon_icon.png -------------------------------------------------------------------------------- /resources/images/cubicon_log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/images/cubicon_log.png -------------------------------------------------------------------------------- /resources/images/cura-icon-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/images/cura-icon-32.png -------------------------------------------------------------------------------- /resources/images/cura-icon_wip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/images/cura-icon_wip.png -------------------------------------------------------------------------------- /resources/images/dxu_backplate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/images/dxu_backplate.png -------------------------------------------------------------------------------- /resources/images/farm2ceplate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/images/farm2ceplate.png -------------------------------------------------------------------------------- /resources/images/hellbot_hidra.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/images/hellbot_hidra.png -------------------------------------------------------------------------------- /resources/images/svtbacktext.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/images/svtbacktext.png -------------------------------------------------------------------------------- /resources/images/wanhao-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/images/wanhao-icon.png -------------------------------------------------------------------------------- /resources/meshes/BIQU_BX_PLATE.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/meshes/BIQU_BX_PLATE.stl -------------------------------------------------------------------------------- /resources/meshes/SH65_platform.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/meshes/SH65_platform.STL -------------------------------------------------------------------------------- /resources/meshes/alya_platform.3mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/meshes/alya_platform.3mf -------------------------------------------------------------------------------- /resources/meshes/dagoma_magis.3mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/meshes/dagoma_magis.3mf -------------------------------------------------------------------------------- /resources/meshes/dagoma_neva.3mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/meshes/dagoma_neva.3mf -------------------------------------------------------------------------------- /resources/meshes/jgaurora_a5.3mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/meshes/jgaurora_a5.3mf -------------------------------------------------------------------------------- /resources/meshes/kingroon_kp3.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/meshes/kingroon_kp3.stl -------------------------------------------------------------------------------- /resources/meshes/kingroon_kp3s.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/meshes/kingroon_kp3s.stl -------------------------------------------------------------------------------- /resources/meshes/koonovo_kn3.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/meshes/koonovo_kn3.stl -------------------------------------------------------------------------------- /resources/meshes/koonovo_kn5.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/meshes/koonovo_kn5.stl -------------------------------------------------------------------------------- /resources/meshes/lulzbot_mini.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/meshes/lulzbot_mini.stl -------------------------------------------------------------------------------- /resources/meshes/tam_series1.3mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/meshes/tam_series1.3mf -------------------------------------------------------------------------------- /resources/meshes/zav_bigplus.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/meshes/zav_bigplus.stl -------------------------------------------------------------------------------- /resources/meshes/zyyx_platform.3mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/meshes/zyyx_platform.3mf -------------------------------------------------------------------------------- /docs/scene/images/scene_example.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/docs/scene/images/scene_example.jpg -------------------------------------------------------------------------------- /docs/scene/images/selection_tool.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/docs/scene/images/selection_tool.jpg -------------------------------------------------------------------------------- /docs/scene/images/translate_tool.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/docs/scene/images/translate_tool.jpg -------------------------------------------------------------------------------- /resources/images/Wanhaobackplate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/images/Wanhaobackplate.png -------------------------------------------------------------------------------- /resources/images/anycubic-chiron.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/images/anycubic-chiron.png -------------------------------------------------------------------------------- /resources/images/cura_enterprise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/images/cura_enterprise.png -------------------------------------------------------------------------------- /resources/meshes/3dator_platform.3mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/meshes/3dator_platform.3mf -------------------------------------------------------------------------------- /resources/meshes/Atom 3 lite bed.3mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/meshes/Atom 3 lite bed.3mf -------------------------------------------------------------------------------- /resources/meshes/aneta6_platform.3mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/meshes/aneta6_platform.3mf -------------------------------------------------------------------------------- /resources/meshes/artillery_swx1.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/meshes/artillery_swx1.stl -------------------------------------------------------------------------------- /resources/meshes/creality_ender3.3mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/meshes/creality_ender3.3mf -------------------------------------------------------------------------------- /resources/meshes/deltacomb_dc20.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/meshes/deltacomb_dc20.stl -------------------------------------------------------------------------------- /resources/meshes/deltacomb_dc30.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/meshes/deltacomb_dc30.stl -------------------------------------------------------------------------------- /resources/meshes/kossel_platform.3mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/meshes/kossel_platform.3mf -------------------------------------------------------------------------------- /resources/meshes/liquid_platform.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/meshes/liquid_platform.stl -------------------------------------------------------------------------------- /resources/meshes/mingda_d2_base.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/meshes/mingda_d2_base.stl -------------------------------------------------------------------------------- /resources/meshes/printrbot_play.3mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/meshes/printrbot_play.3mf -------------------------------------------------------------------------------- /resources/meshes/tevo_blackwidow.3mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/meshes/tevo_blackwidow.3mf -------------------------------------------------------------------------------- /resources/meshes/voron0_120_bed.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/meshes/voron0_120_bed.stl -------------------------------------------------------------------------------- /resources/meshes/voron2_250_bed.3mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/meshes/voron2_250_bed.3mf -------------------------------------------------------------------------------- /resources/meshes/voron2_300_bed.3mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/meshes/voron2_300_bed.3mf -------------------------------------------------------------------------------- /resources/meshes/voron2_350_bed.3mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/meshes/voron2_350_bed.3mf -------------------------------------------------------------------------------- /cura/OAuth2/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright (c) 2019 Ultimaker B.V. 2 | # Cura is released under the terms of the LGPLv3 or higher. 3 | -------------------------------------------------------------------------------- /resources/images/Cocoon-backplate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/images/Cocoon-backplate.png -------------------------------------------------------------------------------- /resources/images/anycubic_predator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/images/anycubic_predator.png -------------------------------------------------------------------------------- /resources/images/cura-icon-32_wip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/images/cura-icon-32_wip.png -------------------------------------------------------------------------------- /resources/images/fabtotum_platform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/images/fabtotum_platform.png -------------------------------------------------------------------------------- /resources/images/hellbot_hidra_plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/images/hellbot_hidra_plus.png -------------------------------------------------------------------------------- /resources/images/hellbot_magna_SE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/images/hellbot_magna_SE.png -------------------------------------------------------------------------------- /resources/meshes/101hero-platform.3mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/meshes/101hero-platform.3mf -------------------------------------------------------------------------------- /resources/meshes/3di_d300_platform.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/meshes/3di_d300_platform.STL -------------------------------------------------------------------------------- /resources/meshes/FT-5_build_plate.3mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/meshes/FT-5_build_plate.3mf -------------------------------------------------------------------------------- /resources/meshes/FelixTec4_platform.3mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/meshes/FelixTec4_platform.3mf -------------------------------------------------------------------------------- /resources/meshes/Vertex_build_panel.3mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/meshes/Vertex_build_panel.3mf -------------------------------------------------------------------------------- /resources/meshes/alya_nx_platform.3mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/meshes/alya_nx_platform.3mf -------------------------------------------------------------------------------- /resources/meshes/arjun300_platform.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/meshes/arjun300_platform.stl -------------------------------------------------------------------------------- /resources/meshes/artemis_platform.3mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/meshes/artemis_platform.3mf -------------------------------------------------------------------------------- /resources/meshes/artillery_genius.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/meshes/artillery_genius.stl -------------------------------------------------------------------------------- /resources/meshes/bq_witbox_platform.3mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/meshes/bq_witbox_platform.3mf -------------------------------------------------------------------------------- /resources/meshes/cartesio_platform.3mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/meshes/cartesio_platform.3mf -------------------------------------------------------------------------------- /resources/meshes/creality_cr10spro.3mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/meshes/creality_cr10spro.3mf -------------------------------------------------------------------------------- /resources/meshes/creality_ender3max.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/meshes/creality_ender3max.stl -------------------------------------------------------------------------------- /resources/meshes/fabtotum_platform.3mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/meshes/fabtotum_platform.3mf -------------------------------------------------------------------------------- /resources/meshes/fabxpro_platform.3mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/meshes/fabxpro_platform.3mf -------------------------------------------------------------------------------- /resources/meshes/grr_neo_platform.3mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/meshes/grr_neo_platform.3mf -------------------------------------------------------------------------------- /resources/meshes/inventor_platform.3mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/meshes/inventor_platform.3mf -------------------------------------------------------------------------------- /resources/meshes/mendel90_platform.3mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/meshes/mendel90_platform.3mf -------------------------------------------------------------------------------- /resources/meshes/mingda_d4pro_base.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/meshes/mingda_d4pro_base.stl -------------------------------------------------------------------------------- /resources/meshes/mingda_rock3_base.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/meshes/mingda_rock3_base.stl -------------------------------------------------------------------------------- /resources/meshes/predator_platform.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/meshes/predator_platform.stl -------------------------------------------------------------------------------- /resources/meshes/prusai3_platform.3mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/meshes/prusai3_platform.3mf -------------------------------------------------------------------------------- /resources/meshes/rigidbot_platform.3mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/meshes/rigidbot_platform.3mf -------------------------------------------------------------------------------- /resources/meshes/rostock_platform.3mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/meshes/rostock_platform.3mf -------------------------------------------------------------------------------- /resources/meshes/stereotech_start.3mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/meshes/stereotech_start.3mf -------------------------------------------------------------------------------- /resources/meshes/tizyx_k25_platform.3mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/meshes/tizyx_k25_platform.3mf -------------------------------------------------------------------------------- /resources/meshes/twotrees_platform.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/meshes/twotrees_platform.stl -------------------------------------------------------------------------------- /resources/meshes/ultimaker_platform.3mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/meshes/ultimaker_platform.3mf -------------------------------------------------------------------------------- /resources/meshes/uni_200_platform.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/meshes/uni_200_platform.stl -------------------------------------------------------------------------------- /resources/meshes/uni_250_platform.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/meshes/uni_250_platform.stl -------------------------------------------------------------------------------- /resources/meshes/uni_300_platform.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/meshes/uni_300_platform.stl -------------------------------------------------------------------------------- /resources/meshes/uni_mini_platform.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/meshes/uni_mini_platform.stl -------------------------------------------------------------------------------- /cura/Settings/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright (c) 2016 Ultimaker B.V. 2 | # Cura is released under the terms of the LGPLv3 or higher. 3 | -------------------------------------------------------------------------------- /resources/images/Ultimaker2backplate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/images/Ultimaker2backplate.png -------------------------------------------------------------------------------- /resources/images/Ultimaker3backplate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/images/Ultimaker3backplate.png -------------------------------------------------------------------------------- /resources/images/UltimakerS3backplate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/images/UltimakerS3backplate.png -------------------------------------------------------------------------------- /resources/images/UltimakerS5backplate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/images/UltimakerS5backplate.png -------------------------------------------------------------------------------- /resources/images/eryone_thinker_plate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/images/eryone_thinker_plate.png -------------------------------------------------------------------------------- /resources/images/flyingbear_platform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/images/flyingbear_platform.png -------------------------------------------------------------------------------- /resources/meshes/STREAM20PRO_platform.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/meshes/STREAM20PRO_platform.STL -------------------------------------------------------------------------------- /resources/meshes/STREAM30PRO_platform.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/meshes/STREAM30PRO_platform.STL -------------------------------------------------------------------------------- /resources/meshes/arjunpro300_platform.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/meshes/arjunpro300_platform.STL -------------------------------------------------------------------------------- /resources/meshes/dagoma_discoeasy200.3mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/meshes/dagoma_discoeasy200.3mf -------------------------------------------------------------------------------- /resources/meshes/dagoma_discoultimate.3mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/meshes/dagoma_discoultimate.3mf -------------------------------------------------------------------------------- /resources/meshes/dagoma_pro_430_base.3mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/meshes/dagoma_pro_430_base.3mf -------------------------------------------------------------------------------- /resources/meshes/jgaurora_a6_platform.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/meshes/jgaurora_a6_platform.stl -------------------------------------------------------------------------------- /resources/meshes/lulzbot_taz_pro_bed.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/meshes/lulzbot_taz_pro_bed.stl -------------------------------------------------------------------------------- /resources/meshes/malyan_m200_platform.3mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/meshes/malyan_m200_platform.3mf -------------------------------------------------------------------------------- /resources/meshes/pbr3d_g1_buildplate.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/meshes/pbr3d_g1_buildplate.stl -------------------------------------------------------------------------------- /resources/meshes/prusai3_xl_platform.3mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/meshes/prusai3_xl_platform.3mf -------------------------------------------------------------------------------- /resources/meshes/rigidbotbig_platform.3mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/meshes/rigidbotbig_platform.3mf -------------------------------------------------------------------------------- /resources/meshes/sapphirepro_platform.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/meshes/sapphirepro_platform.stl -------------------------------------------------------------------------------- /resources/meshes/skriware_2_platform.3mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/meshes/skriware_2_platform.3mf -------------------------------------------------------------------------------- /resources/meshes/tinyboy_fabrikator15.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/meshes/tinyboy_fabrikator15.stl -------------------------------------------------------------------------------- /resources/meshes/z-bolt_plus_platform.3mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/meshes/z-bolt_plus_platform.3mf -------------------------------------------------------------------------------- /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 -------------------------------------------------------------------------------- /docs/scene/images/layer_data_scene_node.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/docs/scene/images/layer_data_scene_node.jpg -------------------------------------------------------------------------------- /docs/scene/images/support_blocker_tool.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/docs/scene/images/support_blocker_tool.jpg -------------------------------------------------------------------------------- /plugins/SimulationView/resources/nozzle.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/plugins/SimulationView/resources/nozzle.stl -------------------------------------------------------------------------------- /resources/images/MakerStarterbackplate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/images/MakerStarterbackplate.png -------------------------------------------------------------------------------- /resources/images/Ultimaker2Gobackplate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/images/Ultimaker2Gobackplate.png -------------------------------------------------------------------------------- /resources/images/Ultimaker2Plusbackplate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/images/Ultimaker2Plusbackplate.png -------------------------------------------------------------------------------- /resources/images/UltimakerPlusbackplate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/images/UltimakerPlusbackplate.png -------------------------------------------------------------------------------- /resources/meshes/STREAM30ULTRA_platform.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/meshes/STREAM30ULTRA_platform.STL -------------------------------------------------------------------------------- /resources/meshes/UltimakerRobot_support.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/meshes/UltimakerRobot_support.stl -------------------------------------------------------------------------------- /resources/meshes/anycubic_4max_platform.3mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/meshes/anycubic_4max_platform.3mf -------------------------------------------------------------------------------- /resources/meshes/anycubic_vyper_platform.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/meshes/anycubic_vyper_platform.stl -------------------------------------------------------------------------------- /resources/meshes/atmat_asterion_platform.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/meshes/atmat_asterion_platform.stl -------------------------------------------------------------------------------- /resources/meshes/bq_hephestos_2_platform.3mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/meshes/bq_hephestos_2_platform.3mf -------------------------------------------------------------------------------- /resources/meshes/bq_hephestos_platform.3mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/meshes/bq_hephestos_platform.3mf -------------------------------------------------------------------------------- /resources/meshes/eryone_er20_plateform.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/meshes/eryone_er20_plateform.stl -------------------------------------------------------------------------------- /resources/meshes/hardprint_hozo_platform.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/meshes/hardprint_hozo_platform.stl -------------------------------------------------------------------------------- /resources/meshes/ideagen3D_sapphire_plus.3mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/meshes/ideagen3D_sapphire_plus.3mf -------------------------------------------------------------------------------- /resources/meshes/longer_235mm_platform.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/meshes/longer_235mm_platform.stl -------------------------------------------------------------------------------- /resources/meshes/longer_310mm_platform.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/meshes/longer_310mm_platform.stl -------------------------------------------------------------------------------- /resources/meshes/longer_415mm_platform.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/meshes/longer_415mm_platform.stl -------------------------------------------------------------------------------- /resources/meshes/longer_cube2_platform.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/meshes/longer_cube2_platform.stl -------------------------------------------------------------------------------- /resources/meshes/makeR_pegasus_platform.3mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/meshes/makeR_pegasus_platform.3mf -------------------------------------------------------------------------------- /resources/meshes/makerstarter_platform.3mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/meshes/makerstarter_platform.3mf -------------------------------------------------------------------------------- /resources/meshes/mp_mini_delta_platform.3mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/meshes/mp_mini_delta_platform.3mf -------------------------------------------------------------------------------- /resources/meshes/rigid3d_mucit2_platform.3mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/meshes/rigid3d_mucit2_platform.3mf -------------------------------------------------------------------------------- /resources/meshes/rigid3d_mucit_platform.3mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/meshes/rigid3d_mucit_platform.3mf -------------------------------------------------------------------------------- /resources/meshes/rigid3d_zero2_platform.3mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/meshes/rigid3d_zero2_platform.3mf -------------------------------------------------------------------------------- /resources/meshes/sapphireplus_platform.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/meshes/sapphireplus_platform.stl -------------------------------------------------------------------------------- /resources/meshes/twotrees235x235_generic.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/meshes/twotrees235x235_generic.stl -------------------------------------------------------------------------------- /resources/meshes/twotrees300x300_generic.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/meshes/twotrees300x300_generic.stl -------------------------------------------------------------------------------- /resources/meshes/uni_print_3d_platform.3mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/meshes/uni_print_3d_platform.3mf -------------------------------------------------------------------------------- /resources/meshes/z-bolt_classic_platform.3mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/meshes/z-bolt_classic_platform.3mf -------------------------------------------------------------------------------- /docs/scene/images/per_objectsettings_tool.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/docs/scene/images/per_objectsettings_tool.jpg -------------------------------------------------------------------------------- /resources/images/StereotechSte320backplate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/images/StereotechSte320backplate.png -------------------------------------------------------------------------------- /resources/meshes/anycubic_i3_mega_platform.3mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/meshes/anycubic_i3_mega_platform.3mf -------------------------------------------------------------------------------- /resources/meshes/atmat_signal_pro_platform.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/meshes/atmat_signal_pro_platform.stl -------------------------------------------------------------------------------- /resources/meshes/blv_mgn_cube_300_platform.3mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/meshes/blv_mgn_cube_300_platform.3mf -------------------------------------------------------------------------------- /resources/meshes/blv_mgn_cube_350_platform.3mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/meshes/blv_mgn_cube_350_platform.3mf -------------------------------------------------------------------------------- /resources/meshes/builder_premium_platform.3mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/meshes/builder_premium_platform.3mf -------------------------------------------------------------------------------- /resources/meshes/imade3d_jellybox_platform.3mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/meshes/imade3d_jellybox_platform.3mf -------------------------------------------------------------------------------- /resources/meshes/inat_proton_x_buildplate.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/meshes/inat_proton_x_buildplate.stl -------------------------------------------------------------------------------- /resources/meshes/kossel_pro_build_platform.3mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/meshes/kossel_pro_build_platform.3mf -------------------------------------------------------------------------------- /resources/meshes/lotmaxx_sc_10_20_platform.3mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/meshes/lotmaxx_sc_10_20_platform.3mf -------------------------------------------------------------------------------- /resources/meshes/mixware_hyper_s_platform.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/meshes/mixware_hyper_s_platform.stl -------------------------------------------------------------------------------- /resources/meshes/trimaker_nebula_platform.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/meshes/trimaker_nebula_platform.stl -------------------------------------------------------------------------------- /docs/scene/images/scene_example_scene_graph.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/docs/scene/images/scene_example_scene_graph.jpg -------------------------------------------------------------------------------- /plugins/PostProcessingPlugin/tests/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright (c) 2020 Ultimaker B.V. 2 | # Cura is released under the terms of the LGPLv3 or higher. -------------------------------------------------------------------------------- /plugins/UM3NetworkPrinting/src/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright (c) 2019 Ultimaker B.V. 2 | # Cura is released under the terms of the LGPLv3 or higher. 3 | -------------------------------------------------------------------------------- /resources/images/Ultimaker2Extendedbackplate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/images/Ultimaker2Extendedbackplate.png -------------------------------------------------------------------------------- /resources/images/Ultimaker3Extendedbackplate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/images/Ultimaker3Extendedbackplate.png -------------------------------------------------------------------------------- /resources/meshes/anycubic_i3_mega_s_platform.3mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/meshes/anycubic_i3_mega_s_platform.3mf -------------------------------------------------------------------------------- /resources/meshes/anycubic_i3_mega_x_platform.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/meshes/anycubic_i3_mega_x_platform.stl -------------------------------------------------------------------------------- /resources/meshes/anycubic_mega_zero_platform.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/meshes/anycubic_mega_zero_platform.stl -------------------------------------------------------------------------------- /resources/meshes/dagoma_discoeasy200_bicolor.3mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/meshes/dagoma_discoeasy200_bicolor.3mf -------------------------------------------------------------------------------- /resources/meshes/dagoma_discoultimate_bicolor.3mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/meshes/dagoma_discoultimate_bicolor.3mf -------------------------------------------------------------------------------- /resources/meshes/hardprint_hozo_ix_platform.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/meshes/hardprint_hozo_ix_platform.stl -------------------------------------------------------------------------------- /resources/meshes/imade3d_jellybox_2_platform.3mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/meshes/imade3d_jellybox_2_platform.3mf -------------------------------------------------------------------------------- /resources/meshes/leapfrog_bolt_pro_platform.3mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/meshes/leapfrog_bolt_pro_platform.3mf -------------------------------------------------------------------------------- /resources/meshes/tevo_tarantula_pro_platform.3mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/meshes/tevo_tarantula_pro_platform.3mf -------------------------------------------------------------------------------- /resources/meshes/trimaker_cosmosII_platform.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/meshes/trimaker_cosmosII_platform.stl -------------------------------------------------------------------------------- /plugins/LegacyProfileReader/tests/normal_case.ini: -------------------------------------------------------------------------------- 1 | [profile] 2 | foo = bar 3 | boo = far 4 | fill_overlap = 3 5 | 6 | [alterations] 7 | some = values 8 | -------------------------------------------------------------------------------- /resources/images/Mark2_for_Ultimaker2_backplate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/images/Mark2_for_Ultimaker2_backplate.png -------------------------------------------------------------------------------- /resources/images/Ultimaker2PlusConnectbackplate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/images/Ultimaker2PlusConnectbackplate.png -------------------------------------------------------------------------------- /resources/meshes/BEEVERYCREATIVE-helloBEEprusa.3mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/meshes/BEEVERYCREATIVE-helloBEEprusa.3mf -------------------------------------------------------------------------------- /resources/meshes/printrbot_simple_metal_upgrade.3mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/meshes/printrbot_simple_metal_upgrade.3mf -------------------------------------------------------------------------------- /docs/scene/images/tools_tool-handles_class_diagram.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/docs/scene/images/tools_tool-handles_class_diagram.jpg -------------------------------------------------------------------------------- /resources/images/Ultimaker2ExtendedPlusbackplate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/images/Ultimaker2ExtendedPlusbackplate.png -------------------------------------------------------------------------------- /resources/meshes/3dtech_semi_professional_platform.3mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/meshes/3dtech_semi_professional_platform.3mf -------------------------------------------------------------------------------- /resources/meshes/makeR_prusa_tairona_i3_platform.3mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/meshes/makeR_prusa_tairona_i3_platform.3mf -------------------------------------------------------------------------------- /resources/meshes/printrbot_simple_metal_platform.3mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/meshes/printrbot_simple_metal_platform.3mf -------------------------------------------------------------------------------- /docs/scene/images/components_interacting_with_scene.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/docs/scene/images/components_interacting_with_scene.jpg -------------------------------------------------------------------------------- /docs/scene/images/components_interacting_with_scene.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/docs/scene/images/components_interacting_with_scene.png -------------------------------------------------------------------------------- /plugins/UM3NetworkPrinting/resources/png/Ultimaker 3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/plugins/UM3NetworkPrinting/resources/png/Ultimaker 3.png -------------------------------------------------------------------------------- /resources/meshes/Original_Prusa_i3_MK3S_MK3_platform.3mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/meshes/Original_Prusa_i3_MK3S_MK3_platform.3mf -------------------------------------------------------------------------------- /resources/meshes/mankati_fullscale_xt_plus_platform.3mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/meshes/mankati_fullscale_xt_plus_platform.3mf -------------------------------------------------------------------------------- /plugins/UM3NetworkPrinting/resources/png/Ultimaker S3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/plugins/UM3NetworkPrinting/resources/png/Ultimaker S3.png -------------------------------------------------------------------------------- /plugins/UM3NetworkPrinting/resources/png/Ultimaker S5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/plugins/UM3NetworkPrinting/resources/png/Ultimaker S5.png -------------------------------------------------------------------------------- /resources/meshes/gmax_1-5_xt-plus_s3d_full model_150707.3mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/meshes/gmax_1-5_xt-plus_s3d_full model_150707.3mf -------------------------------------------------------------------------------- /tests/Settings/setting_visibility_preset_test.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = test 3 | weight = 1 4 | 5 | [test] 6 | zomg 7 | derp 8 | yay 9 | 10 | [whoo] 11 | yay -------------------------------------------------------------------------------- /resources/themes/cura-light/fonts/noto-sans/NotoSans-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/themes/cura-light/fonts/noto-sans/NotoSans-Bold.ttf -------------------------------------------------------------------------------- /resources/themes/cura-light/fonts/noto-sans/NotoSans-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/themes/cura-light/fonts/noto-sans/NotoSans-Thin.ttf -------------------------------------------------------------------------------- /resources/themes/cura-light/icons/default/Solid.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /resources/themes/cura-light/fonts/noto-sans/NotoSans-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/themes/cura-light/fonts/noto-sans/NotoSans-Black.ttf -------------------------------------------------------------------------------- /resources/themes/cura-light/fonts/noto-sans/NotoSans-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/themes/cura-light/fonts/noto-sans/NotoSans-Italic.ttf -------------------------------------------------------------------------------- /resources/themes/cura-light/fonts/noto-sans/NotoSans-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/themes/cura-light/fonts/noto-sans/NotoSans-Light.ttf -------------------------------------------------------------------------------- /resources/themes/cura-light/fonts/noto-sans/NotoSans-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/themes/cura-light/fonts/noto-sans/NotoSans-Medium.ttf -------------------------------------------------------------------------------- /resources/themes/cura-light/fonts/noto-sans/NotoSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/themes/cura-light/fonts/noto-sans/NotoSans-Regular.ttf -------------------------------------------------------------------------------- /plugins/UM3NetworkPrinting/resources/png/Ultimaker 2+ Connect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/plugins/UM3NetworkPrinting/resources/png/Ultimaker 2+ Connect.png -------------------------------------------------------------------------------- /plugins/UM3NetworkPrinting/resources/png/Ultimaker 3 Extended.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/plugins/UM3NetworkPrinting/resources/png/Ultimaker 3 Extended.png -------------------------------------------------------------------------------- /resources/themes/cura-light/fonts/noto-sans/NotoSans-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/themes/cura-light/fonts/noto-sans/NotoSans-ExtraBold.ttf -------------------------------------------------------------------------------- /resources/themes/cura-light/fonts/noto-sans/NotoSans-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/themes/cura-light/fonts/noto-sans/NotoSans-SemiBold.ttf -------------------------------------------------------------------------------- /resources/themes/cura-light/icons/default/Infill100.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /resources/themes/cura-light/fonts/noto-sans/NotoSans-BlackItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/themes/cura-light/fonts/noto-sans/NotoSans-BlackItalic.ttf -------------------------------------------------------------------------------- /resources/themes/cura-light/fonts/noto-sans/NotoSans-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/themes/cura-light/fonts/noto-sans/NotoSans-BoldItalic.ttf -------------------------------------------------------------------------------- /resources/themes/cura-light/fonts/noto-sans/NotoSans-ExtraLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/themes/cura-light/fonts/noto-sans/NotoSans-ExtraLight.ttf -------------------------------------------------------------------------------- /resources/themes/cura-light/fonts/noto-sans/NotoSans-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/themes/cura-light/fonts/noto-sans/NotoSans-LightItalic.ttf -------------------------------------------------------------------------------- /resources/themes/cura-light/fonts/noto-sans/NotoSans-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/themes/cura-light/fonts/noto-sans/NotoSans-MediumItalic.ttf -------------------------------------------------------------------------------- /resources/themes/cura-light/fonts/noto-sans/NotoSans-ThinItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/themes/cura-light/fonts/noto-sans/NotoSans-ThinItalic.ttf -------------------------------------------------------------------------------- /resources/themes/cura-light/icons/low/CircleSolid.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /resources/themes/cura-light/icons/low/Dot.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /resources/themes/cura-light/fonts/noto-sans/NotoSans-SemiBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/themes/cura-light/fonts/noto-sans/NotoSans-SemiBoldItalic.ttf -------------------------------------------------------------------------------- /plugins/PostProcessingPlugin/scripts/ExampleScript.md: -------------------------------------------------------------------------------- 1 | A good example script is SearchAndReplace.py. 2 | If you have any questions please ask them at: 3 | https://github.com/Ultimaker/Cura/issues -------------------------------------------------------------------------------- /resources/themes/cura-light/fonts/noto-sans/NotoSans-ExtraBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/themes/cura-light/fonts/noto-sans/NotoSans-ExtraBoldItalic.ttf -------------------------------------------------------------------------------- /resources/themes/cura-light/fonts/noto-sans/NotoSans-ExtraLightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/themes/cura-light/fonts/noto-sans/NotoSans-ExtraLightItalic.ttf -------------------------------------------------------------------------------- /resources/themes/cura-light/fonts/noto-sans-display/NotoSansDisplay-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/themes/cura-light/fonts/noto-sans-display/NotoSansDisplay-Bold.ttf -------------------------------------------------------------------------------- /resources/themes/cura-light/fonts/noto-sans-display/NotoSansDisplay-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/themes/cura-light/fonts/noto-sans-display/NotoSansDisplay-Thin.ttf -------------------------------------------------------------------------------- /resources/themes/cura-light/icons/low/Warning.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /resources/themes/cura-light/fonts/noto-sans-display/NotoSansDisplay-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/themes/cura-light/fonts/noto-sans-display/NotoSansDisplay-Black.ttf -------------------------------------------------------------------------------- /resources/themes/cura-light/fonts/noto-sans-display/NotoSansDisplay-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/themes/cura-light/fonts/noto-sans-display/NotoSansDisplay-Italic.ttf -------------------------------------------------------------------------------- /resources/themes/cura-light/fonts/noto-sans-display/NotoSansDisplay-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/themes/cura-light/fonts/noto-sans-display/NotoSansDisplay-Light.ttf -------------------------------------------------------------------------------- /resources/themes/cura-light/fonts/noto-sans-display/NotoSansDisplay-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/themes/cura-light/fonts/noto-sans-display/NotoSansDisplay-Medium.ttf -------------------------------------------------------------------------------- /resources/themes/cura-light/fonts/noto-sans-display/NotoSansDisplay-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/themes/cura-light/fonts/noto-sans-display/NotoSansDisplay-Regular.ttf -------------------------------------------------------------------------------- /resources/themes/cura-light/icons/default/EmptyInfo.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /plugins/DigitalLibrary/tests/conftest.py: -------------------------------------------------------------------------------- 1 | 2 | # Ensure that the importing for all tests work 3 | import sys 4 | import os 5 | sys.path.append(os.path.join(os.path.dirname(os.path.abspath(__file__)), "..")) 6 | -------------------------------------------------------------------------------- /resources/themes/cura-light/fonts/noto-sans-display/NotoSansDisplay-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/themes/cura-light/fonts/noto-sans-display/NotoSansDisplay-ExtraBold.ttf -------------------------------------------------------------------------------- /resources/themes/cura-light/fonts/noto-sans-display/NotoSansDisplay-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/themes/cura-light/fonts/noto-sans-display/NotoSansDisplay-SemiBold.ttf -------------------------------------------------------------------------------- /test-in-docker.sh: -------------------------------------------------------------------------------- 1 | sudo rm -rf ./build ./Uranium 2 | sudo docker run -it --rm \ 3 | -v "$(pwd):/srv/cura" ultimaker/cura-build-environment \ 4 | /srv/cura/docker/build.sh 5 | sudo rm -rf ./build ./Uranium 6 | -------------------------------------------------------------------------------- /plugins/AMFReader/plugin.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "AMF Reader", 3 | "author": "fieldOfView", 4 | "version": "1.0.0", 5 | "description": "Provides support for reading AMF files.", 6 | "api": 7 7 | } 8 | -------------------------------------------------------------------------------- /resources/themes/cura-light/fonts/noto-sans-display/NotoSansDisplay-BlackItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/themes/cura-light/fonts/noto-sans-display/NotoSansDisplay-BlackItalic.ttf -------------------------------------------------------------------------------- /resources/themes/cura-light/fonts/noto-sans-display/NotoSansDisplay-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/themes/cura-light/fonts/noto-sans-display/NotoSansDisplay-BoldItalic.ttf -------------------------------------------------------------------------------- /resources/themes/cura-light/fonts/noto-sans-display/NotoSansDisplay-ExtraLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/themes/cura-light/fonts/noto-sans-display/NotoSansDisplay-ExtraLight.ttf -------------------------------------------------------------------------------- /resources/themes/cura-light/fonts/noto-sans-display/NotoSansDisplay-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/themes/cura-light/fonts/noto-sans-display/NotoSansDisplay-LightItalic.ttf -------------------------------------------------------------------------------- /resources/themes/cura-light/fonts/noto-sans-display/NotoSansDisplay-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/themes/cura-light/fonts/noto-sans-display/NotoSansDisplay-MediumItalic.ttf -------------------------------------------------------------------------------- /resources/themes/cura-light/fonts/noto-sans-display/NotoSansDisplay-ThinItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/themes/cura-light/fonts/noto-sans-display/NotoSansDisplay-ThinItalic.ttf -------------------------------------------------------------------------------- /resources/themes/cura-light/fonts/noto-sans-display/NotoSansDisplay-SemiBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/themes/cura-light/fonts/noto-sans-display/NotoSansDisplay-SemiBoldItalic.ttf -------------------------------------------------------------------------------- /plugins/SimulationView/resources/Pause.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /plugins/TrimeshReader/plugin.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Trimesh Reader", 3 | "author": "Ultimaker B.V.", 4 | "version": "1.0.0", 5 | "description": "Provides support for reading model files.", 6 | "api": 7 7 | } 8 | -------------------------------------------------------------------------------- /resources/themes/cura-light/fonts/noto-sans-display/NotoSansDisplay-ExtraBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/themes/cura-light/fonts/noto-sans-display/NotoSansDisplay-ExtraBoldItalic.ttf -------------------------------------------------------------------------------- /resources/themes/cura-light/fonts/noto-sans-display/NotoSansDisplay-ExtraLightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/Cura/master/resources/themes/cura-light/fonts/noto-sans-display/NotoSansDisplay-ExtraLightItalic.ttf -------------------------------------------------------------------------------- /resources/themes/cura-light/icons/low/CheckThin.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /resources/themes/cura-light/icons/default/CircleOutline.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /resources/themes/cura-light/icons/default/Minus.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /plugins/XRayView/plugin.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "X-Ray View", 3 | "author": "Ultimaker B.V.", 4 | "version": "1.0.1", 5 | "description": "Provides the X-Ray view.", 6 | "api": 7, 7 | "i18n-catalog": "cura" 8 | } 9 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false 2 | contact_links: 3 | - name: Have questions or need support? 4 | url: https://community.ultimaker.com/ 5 | about: Please get in touch on our Ultimaker Community Forum! -------------------------------------------------------------------------------- /plugins/GCodeWriter/plugin.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "G-code Writer", 3 | "author": "Ultimaker B.V.", 4 | "version": "1.0.1", 5 | "description": "Writes g-code to a file.", 6 | "api": 7, 7 | "i18n-catalog": "cura" 8 | } 9 | -------------------------------------------------------------------------------- /plugins/SolidView/plugin.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Solid View", 3 | "author": "Ultimaker B.V.", 4 | "version": "1.0.1", 5 | "description": "Provides a normal solid mesh view.", 6 | "api": 7, 7 | "i18n-catalog": "cura" 8 | } -------------------------------------------------------------------------------- /plugins/Marketplace/resources/images/placeholder.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /plugins/MonitorStage/plugin.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Monitor Stage", 3 | "author": "Ultimaker B.V.", 4 | "version": "1.0.1", 5 | "description": "Provides a monitor stage in Cura.", 6 | "api": 7, 7 | "i18n-catalog": "cura" 8 | } -------------------------------------------------------------------------------- /plugins/PrepareStage/plugin.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Prepare Stage", 3 | "author": "Ultimaker B.V.", 4 | "version": "1.0.1", 5 | "description": "Provides a prepare stage in Cura.", 6 | "api": 7, 7 | "i18n-catalog": "cura" 8 | } -------------------------------------------------------------------------------- /plugins/PreviewStage/plugin.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Preview Stage", 3 | "author": "Ultimaker B.V.", 4 | "version": "1.0.1", 5 | "description": "Provides a preview stage in Cura.", 6 | "api": 7, 7 | "i18n-catalog": "cura" 8 | } -------------------------------------------------------------------------------- /resources/definitions/goofoo_near.def.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Goofoo Near", 3 | "version": 2, 4 | "inherits": "goofoo_base", 5 | "metadata": { 6 | "quality_definition": "goofoo_near", 7 | "visible": false 8 | } 9 | } -------------------------------------------------------------------------------- /plugins/3MFReader/plugin.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "3MF Reader", 3 | "author": "Ultimaker B.V.", 4 | "version": "1.0.1", 5 | "description": "Provides support for reading 3MF files.", 6 | "api": 7, 7 | "i18n-catalog": "cura" 8 | } 9 | -------------------------------------------------------------------------------- /plugins/3MFWriter/plugin.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "3MF Writer", 3 | "author": "Ultimaker B.V.", 4 | "version": "1.0.1", 5 | "description": "Provides support for writing 3MF files.", 6 | "api": 7, 7 | "i18n-catalog": "cura" 8 | } 9 | -------------------------------------------------------------------------------- /plugins/CuraDrive/plugin.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Cura Backups", 3 | "author": "Ultimaker B.V.", 4 | "description": "Backup and restore your configuration.", 5 | "version": "1.2.0", 6 | "api": 7, 7 | "i18n-catalog": "cura" 8 | } 9 | -------------------------------------------------------------------------------- /plugins/DigitalLibrary/resources/images/placeholder.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /resources/themes/cura-light/icons/default/Pen.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /plugins/SimulationView/plugin.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Simulation View", 3 | "author": "Ultimaker B.V.", 4 | "version": "1.0.1", 5 | "description": "Provides the preview of sliced layerdata.", 6 | "api": 7, 7 | "i18n-catalog": "cura" 8 | } 9 | -------------------------------------------------------------------------------- /plugins/UFPWriter/plugin.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "UFP Writer", 3 | "author": "Ultimaker B.V.", 4 | "version": "1.0.1", 5 | "description": "Provides support for writing Ultimaker Format Packages.", 6 | "api": 7, 7 | "i18n-catalog": "cura" 8 | } -------------------------------------------------------------------------------- /plugins/UM3NetworkPrinting/resources/svg/Check.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /resources/themes/cura-light/icons/default/Check.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /plugins/FirmwareUpdateChecker/plugin.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Firmware Update Checker", 3 | "author": "Ultimaker B.V.", 4 | "version": "1.0.1", 5 | "description": "Checks for firmware updates.", 6 | "api": 7, 7 | "i18n-catalog": "cura" 8 | } 9 | -------------------------------------------------------------------------------- /plugins/GCodeGzReader/plugin.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Compressed G-code Reader", 3 | "author": "Ultimaker B.V.", 4 | "version": "1.0.1", 5 | "description": "Reads g-code from a compressed archive.", 6 | "api": 7, 7 | "i18n-catalog": "cura" 8 | } 9 | -------------------------------------------------------------------------------- /plugins/GCodeGzWriter/plugin.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Compressed G-code Writer", 3 | "author": "Ultimaker B.V.", 4 | "version": "1.0.1", 5 | "description": "Writes g-code to a compressed archive.", 6 | "api": 7, 7 | "i18n-catalog": "cura" 8 | } 9 | -------------------------------------------------------------------------------- /plugins/PerObjectSettingsTool/plugin.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Per Model Settings Tool", 3 | "author": "Ultimaker B.V.", 4 | "version": "1.0.1", 5 | "description": "Provides the Per Model Settings.", 6 | "api": 7, 7 | "i18n-catalog": "cura" 8 | } 9 | -------------------------------------------------------------------------------- /plugins/X3DReader/plugin.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "X3D Reader", 3 | "author": "Seva Alekseyev, Ultimaker B.V.", 4 | "version": "1.0.1", 5 | "description": "Provides support for reading X3D files.", 6 | "api": 7, 7 | "i18n-catalog": "cura" 8 | } 9 | -------------------------------------------------------------------------------- /resources/themes/cura-light/icons/default/ArrowDown.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /resources/variants/tizyx_k25_0.2.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.2 mm 3 | version = 4 4 | definition = tizyx_k25 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.2 13 | -------------------------------------------------------------------------------- /resources/variants/tizyx_k25_0.3.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.3 mm 3 | version = 4 4 | definition = tizyx_k25 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.3 13 | -------------------------------------------------------------------------------- /resources/variants/tizyx_k25_0.4.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.4 mm 3 | version = 4 4 | definition = tizyx_k25 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.4 13 | -------------------------------------------------------------------------------- /resources/variants/tizyx_k25_0.6.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.6 mm 3 | version = 4 4 | definition = tizyx_k25 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.6 13 | -------------------------------------------------------------------------------- /resources/variants/tizyx_k25_0.8.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.8 mm 3 | version = 4 4 | definition = tizyx_k25 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.8 13 | -------------------------------------------------------------------------------- /resources/variants/tizyx_k25_1.0.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 1.0 mm 3 | version = 4 4 | definition = tizyx_k25 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 1.0 13 | -------------------------------------------------------------------------------- /plugins/CuraProfileReader/plugin.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Cura Profile Reader", 3 | "author": "Ultimaker B.V.", 4 | "version": "1.0.1", 5 | "description": "Provides support for importing Cura profiles.", 6 | "api": 7, 7 | "i18n-catalog": "cura" 8 | } 9 | -------------------------------------------------------------------------------- /plugins/CuraProfileWriter/plugin.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Cura Profile Writer", 3 | "author": "Ultimaker B.V.", 4 | "version": "1.0.1", 5 | "description": "Provides support for exporting Cura profiles.", 6 | "api": 7, 7 | "i18n-catalog":"cura" 8 | } 9 | -------------------------------------------------------------------------------- /plugins/FirmwareUpdater/plugin.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Firmware Updater", 3 | "author": "Ultimaker B.V.", 4 | "version": "1.0.1", 5 | "description": "Provides a machine actions for updating firmware.", 6 | "api": 7, 7 | "i18n-catalog": "cura" 8 | } 9 | -------------------------------------------------------------------------------- /resources/qml/BorderGroup.qml: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2018 Ultimaker B.V. 2 | // Cura is released under the terms of the LGPLv3 or higher. 3 | 4 | import QtQuick 2.0 5 | 6 | QtObject 7 | { 8 | property real width: 0 9 | property color color: "black" 10 | } 11 | -------------------------------------------------------------------------------- /resources/quality/normal.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | version = 4 3 | name = Fine 4 | definition = fdmprinter 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = quality 9 | quality_type = normal 10 | weight = 0 11 | global_quality = True 12 | 13 | [values] 14 | -------------------------------------------------------------------------------- /resources/themes/cura-light/icons/default/ArrowLeft.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /resources/themes/cura-light/icons/default/ChevronSingleDown.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /resources/themes/cura-light/icons/default/ChevronSingleLeft.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /resources/themes/cura-light/icons/default/ChevronSingleRight.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /resources/themes/cura-light/icons/default/ChevronSingleUp.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /resources/themes/cura-light/icons/default/ThreeDots.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /resources/variants/biqu_b1_0.2.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.2mm Nozzle 3 | version = 4 4 | definition = biqu_b1 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.2 13 | -------------------------------------------------------------------------------- /resources/variants/biqu_b1_0.3.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.3mm Nozzle 3 | version = 4 4 | definition = biqu_b1 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.3 13 | -------------------------------------------------------------------------------- /resources/variants/biqu_b1_0.4.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.4mm Nozzle 3 | version = 4 4 | definition = biqu_b1 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.4 13 | -------------------------------------------------------------------------------- /resources/variants/biqu_b1_0.5.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.5mm Nozzle 3 | version = 4 4 | definition = biqu_b1 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.5 13 | -------------------------------------------------------------------------------- /resources/variants/biqu_b1_0.6.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.6mm Nozzle 3 | version = 4 4 | definition = biqu_b1 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.6 13 | -------------------------------------------------------------------------------- /resources/variants/biqu_b1_0.8.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.8mm Nozzle 3 | version = 4 4 | definition = biqu_b1 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.8 13 | -------------------------------------------------------------------------------- /resources/variants/uni_200_0.30.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.30mm Nozzle 3 | version = 4 4 | definition = uni_200 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.3 13 | -------------------------------------------------------------------------------- /resources/variants/uni_200_0.40.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.40mm Nozzle 3 | version = 4 4 | definition = uni_200 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.4 13 | -------------------------------------------------------------------------------- /resources/variants/uni_200_0.50.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.50mm Nozzle 3 | version = 4 4 | definition = uni_200 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.5 13 | -------------------------------------------------------------------------------- /resources/variants/uni_250_0.30.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.30mm Nozzle 3 | version = 4 4 | definition = uni_250 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.3 13 | -------------------------------------------------------------------------------- /resources/variants/uni_250_0.40.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.40mm Nozzle 3 | version = 4 4 | definition = uni_250 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.4 13 | -------------------------------------------------------------------------------- /resources/variants/uni_250_0.50.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.50mm Nozzle 3 | version = 4 4 | definition = uni_250 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.5 13 | -------------------------------------------------------------------------------- /resources/variants/uni_300_0.30.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.30mm Nozzle 3 | version = 4 4 | definition = uni_300 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.3 13 | -------------------------------------------------------------------------------- /resources/variants/uni_300_0.40.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.40mm Nozzle 3 | version = 4 4 | definition = uni_300 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.4 13 | -------------------------------------------------------------------------------- /resources/variants/uni_300_0.50.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.50mm Nozzle 3 | version = 4 4 | definition = uni_300 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.5 13 | -------------------------------------------------------------------------------- /resources/variants/zav_l_0.20.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.20mm_ZAV_Nozzle 3 | version = 4 4 | definition = zav_l 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.2 13 | -------------------------------------------------------------------------------- /resources/variants/zav_l_0.30.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.30mm_ZAV_Nozzle 3 | version = 4 4 | definition = zav_l 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.3 13 | -------------------------------------------------------------------------------- /resources/variants/zav_l_0.40.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.40mm_ZAV_Nozzle 3 | version = 4 4 | definition = zav_l 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.4 13 | -------------------------------------------------------------------------------- /resources/variants/zav_l_0.50.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.50mm_ZAV_Nozzle 3 | version = 4 4 | definition = zav_l 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.5 13 | -------------------------------------------------------------------------------- /resources/variants/zav_l_0.60.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.60mm_ZAV_Nozzle 3 | version = 4 4 | definition = zav_l 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.6 13 | -------------------------------------------------------------------------------- /resources/variants/zav_l_0.80.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.80mm_ZAV_Nozzle 3 | version = 4 4 | definition = zav_l 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.8 13 | -------------------------------------------------------------------------------- /resources/variants/zav_l_1.00.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 1.00mm_ZAV_Nozzle 3 | version = 4 4 | definition = zav_l 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 1.0 13 | -------------------------------------------------------------------------------- /plugins/GCodeReader/plugin.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "G-code Reader", 3 | "author": "Victor Larchenko, Ultimaker B.V.", 4 | "version": "1.0.1", 5 | "description": "Allows loading and displaying G-code files.", 6 | "api": 7, 7 | "i18n-catalog": "cura" 8 | } 9 | -------------------------------------------------------------------------------- /plugins/PostProcessingPlugin/plugin.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Post Processing", 3 | "author": "Ultimaker", 4 | "version": "2.2.1", 5 | "api": 7, 6 | "description": "Extension that allows for user created scripts for post processing", 7 | "catalog": "cura" 8 | } -------------------------------------------------------------------------------- /resources/themes/cura-light/icons/default/Plus.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /resources/themes/cura-light/icons/low/Check.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /resources/themes/cura-light/icons/low/CheckBoxFill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /resources/variants/biqu_b1_abl_0.2.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.2mm Nozzle 3 | version = 4 4 | definition = biqu_b1_abl 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.2 13 | -------------------------------------------------------------------------------- /resources/variants/biqu_b1_abl_0.3.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.3mm Nozzle 3 | version = 4 4 | definition = biqu_b1_abl 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.3 13 | -------------------------------------------------------------------------------- /resources/variants/biqu_b1_abl_0.4.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.4mm Nozzle 3 | version = 4 4 | definition = biqu_b1_abl 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.4 13 | -------------------------------------------------------------------------------- /resources/variants/biqu_b1_abl_0.5.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.5mm Nozzle 3 | version = 4 4 | definition = biqu_b1_abl 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.5 13 | -------------------------------------------------------------------------------- /resources/variants/biqu_b1_abl_0.6.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.6mm Nozzle 3 | version = 4 4 | definition = biqu_b1_abl 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.6 13 | -------------------------------------------------------------------------------- /resources/variants/biqu_b1_abl_0.8.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.8mm Nozzle 3 | version = 4 4 | definition = biqu_b1_abl 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.8 13 | -------------------------------------------------------------------------------- /resources/variants/biqu_base_0.2.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.2mm Nozzle 3 | version = 4 4 | definition = biqu_base 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.2 13 | -------------------------------------------------------------------------------- /resources/variants/biqu_base_0.3.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.3mm Nozzle 3 | version = 4 4 | definition = biqu_base 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.3 13 | -------------------------------------------------------------------------------- /resources/variants/biqu_base_0.4.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.4mm Nozzle 3 | version = 4 4 | definition = biqu_base 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.4 13 | -------------------------------------------------------------------------------- /resources/variants/biqu_base_0.5.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.5mm Nozzle 3 | version = 4 4 | definition = biqu_base 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.5 13 | -------------------------------------------------------------------------------- /resources/variants/biqu_base_0.6.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.6mm Nozzle 3 | version = 4 4 | definition = biqu_base 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.6 13 | -------------------------------------------------------------------------------- /resources/variants/biqu_base_0.8.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.8mm Nozzle 3 | version = 4 4 | definition = biqu_base 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.8 13 | -------------------------------------------------------------------------------- /resources/variants/biqu_bx_abl_0.2.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.2mm Nozzle 3 | version = 4 4 | definition = biqu_bx_abl 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.2 13 | -------------------------------------------------------------------------------- /resources/variants/biqu_bx_abl_0.3.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.3mm Nozzle 3 | version = 4 4 | definition = biqu_bx_abl 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.3 13 | -------------------------------------------------------------------------------- /resources/variants/biqu_bx_abl_0.4.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.4mm Nozzle 3 | version = 4 4 | definition = biqu_bx_abl 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.4 13 | -------------------------------------------------------------------------------- /resources/variants/biqu_bx_abl_0.5.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.5mm Nozzle 3 | version = 4 4 | definition = biqu_bx_abl 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.5 13 | -------------------------------------------------------------------------------- /resources/variants/biqu_bx_abl_0.6.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.6mm Nozzle 3 | version = 4 4 | definition = biqu_bx_abl 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.6 13 | -------------------------------------------------------------------------------- /resources/variants/biqu_bx_abl_0.8.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.8mm Nozzle 3 | version = 4 4 | definition = biqu_bx_abl 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.8 13 | -------------------------------------------------------------------------------- /resources/variants/diy220_0.2.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.2 mm Nozzle 3 | version = 4 4 | definition = diy220 5 | 6 | [metadata] 7 | 8 | setting_version = 19 9 | type = variant 10 | hardware_type = nozzle 11 | 12 | [values] 13 | machine_nozzle_size = 0.2 14 | -------------------------------------------------------------------------------- /resources/variants/diy220_0.3.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.3 mm Nozzle 3 | version = 4 4 | definition = diy220 5 | 6 | [metadata] 7 | 8 | setting_version = 19 9 | type = variant 10 | hardware_type = nozzle 11 | 12 | [values] 13 | machine_nozzle_size = 0.3 14 | -------------------------------------------------------------------------------- /resources/variants/diy220_0.4.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.4 mm Nozzle 3 | version = 4 4 | definition = diy220 5 | 6 | [metadata] 7 | 8 | setting_version = 19 9 | type = variant 10 | hardware_type = nozzle 11 | 12 | [values] 13 | machine_nozzle_size = 0.4 14 | -------------------------------------------------------------------------------- /resources/variants/diy220_0.5.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.5 mm Nozzle 3 | version = 4 4 | definition = diy220 5 | 6 | [metadata] 7 | 8 | setting_version = 19 9 | type = variant 10 | hardware_type = nozzle 11 | 12 | [values] 13 | machine_nozzle_size = 0.5 14 | -------------------------------------------------------------------------------- /resources/variants/diy220_0.6.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.6 mm Nozzle 3 | version = 4 4 | definition = diy220 5 | 6 | [metadata] 7 | 8 | setting_version = 19 9 | type = variant 10 | hardware_type = nozzle 11 | 12 | [values] 13 | machine_nozzle_size = 0.6 14 | -------------------------------------------------------------------------------- /resources/variants/diy220_0.8.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.8 mm Nozzle 3 | version = 4 4 | definition = diy220 5 | 6 | [metadata] 7 | 8 | setting_version = 19 9 | type = variant 10 | hardware_type = nozzle 11 | 12 | [values] 13 | machine_nozzle_size = 0.8 14 | -------------------------------------------------------------------------------- /resources/variants/goofoo_base_0.4.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.4mm Nozzle 3 | version = 4 4 | definition = goofoo_base 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.4 13 | -------------------------------------------------------------------------------- /resources/variants/goofoo_max_0.2.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.2mm Nozzle 3 | version = 4 4 | definition = goofoo_max 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.2 13 | -------------------------------------------------------------------------------- /resources/variants/goofoo_max_0.4.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.4mm Nozzle 3 | version = 4 4 | definition = goofoo_max 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.4 13 | -------------------------------------------------------------------------------- /resources/variants/goofoo_max_0.6.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.6mm Nozzle 3 | version = 4 4 | definition = goofoo_max 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.6 13 | -------------------------------------------------------------------------------- /resources/variants/goofoo_max_0.8.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.8mm Nozzle 3 | version = 4 4 | definition = goofoo_max 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.8 13 | -------------------------------------------------------------------------------- /resources/variants/goofoo_max_1.0.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 1.0mm Nozzle 3 | version = 4 4 | definition = goofoo_max 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 1.0 13 | -------------------------------------------------------------------------------- /resources/variants/goofoo_mido_0.2.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.2mm Nozzle 3 | version = 4 4 | definition = goofoo_mido 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.2 13 | -------------------------------------------------------------------------------- /resources/variants/goofoo_mido_0.4.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.4mm Nozzle 3 | version = 4 4 | definition = goofoo_mido 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.4 13 | -------------------------------------------------------------------------------- /resources/variants/goofoo_mido_0.6.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.6mm Nozzle 3 | version = 4 4 | definition = goofoo_mido 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.6 13 | -------------------------------------------------------------------------------- /resources/variants/goofoo_mido_0.8.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.8mm Nozzle 3 | version = 4 4 | definition = goofoo_mido 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.8 13 | -------------------------------------------------------------------------------- /resources/variants/goofoo_mido_1.0.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 1.0mm Nozzle 3 | version = 4 4 | definition = goofoo_mido 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 1.0 13 | -------------------------------------------------------------------------------- /resources/variants/goofoo_nova_0.2.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.2mm Nozzle 3 | version = 4 4 | definition = goofoo_nova 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.2 13 | -------------------------------------------------------------------------------- /resources/variants/goofoo_nova_0.4.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.4mm Nozzle 3 | version = 4 4 | definition = goofoo_nova 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.4 13 | -------------------------------------------------------------------------------- /resources/variants/goofoo_nova_0.6.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.6mm Nozzle 3 | version = 4 4 | definition = goofoo_nova 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.6 13 | -------------------------------------------------------------------------------- /resources/variants/goofoo_nova_0.8.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.8mm Nozzle 3 | version = 4 4 | definition = goofoo_nova 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.8 13 | -------------------------------------------------------------------------------- /resources/variants/goofoo_nova_1.0.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 1.0mm Nozzle 3 | version = 4 4 | definition = goofoo_nova 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 1.0 13 | -------------------------------------------------------------------------------- /resources/variants/goofoo_plus_0.2.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.2mm Nozzle 3 | version = 4 4 | definition = goofoo_plus 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.2 13 | -------------------------------------------------------------------------------- /resources/variants/goofoo_plus_0.4.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.4mm Nozzle 3 | version = 4 4 | definition = goofoo_plus 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.4 13 | -------------------------------------------------------------------------------- /resources/variants/goofoo_plus_0.6.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.6mm Nozzle 3 | version = 4 4 | definition = goofoo_plus 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.6 13 | -------------------------------------------------------------------------------- /resources/variants/goofoo_plus_0.8.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.8mm Nozzle 3 | version = 4 4 | definition = goofoo_plus 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.8 13 | -------------------------------------------------------------------------------- /resources/variants/goofoo_plus_1.0.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 1.0mm Nozzle 3 | version = 4 4 | definition = goofoo_plus 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 1.0 13 | -------------------------------------------------------------------------------- /resources/variants/goofoo_tiny_0.2.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.2mm Nozzle 3 | version = 4 4 | definition = goofoo_tiny 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.2 13 | -------------------------------------------------------------------------------- /resources/variants/goofoo_tiny_0.4.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.4mm Nozzle 3 | version = 4 4 | definition = goofoo_tiny 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.4 13 | -------------------------------------------------------------------------------- /resources/variants/goofoo_tiny_0.6.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.6mm Nozzle 3 | version = 4 4 | definition = goofoo_tiny 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.6 13 | -------------------------------------------------------------------------------- /resources/variants/goofoo_tiny_0.8.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.8mm Nozzle 3 | version = 4 4 | definition = goofoo_tiny 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.8 13 | -------------------------------------------------------------------------------- /resources/variants/goofoo_tiny_1.0.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 1.0mm Nozzle 3 | version = 4 4 | definition = goofoo_tiny 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 1.0 13 | -------------------------------------------------------------------------------- /resources/variants/kosher220_0.2.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.2 mm Nozzle 3 | version = 4 4 | definition = kosher 5 | 6 | [metadata] 7 | 8 | setting_version = 19 9 | type = variant 10 | hardware_type = nozzle 11 | 12 | [values] 13 | machine_nozzle_size = 0.2 14 | -------------------------------------------------------------------------------- /resources/variants/kosher220_0.3.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.3 mm Nozzle 3 | version = 4 4 | definition = kosher 5 | 6 | [metadata] 7 | 8 | setting_version = 19 9 | type = variant 10 | hardware_type = nozzle 11 | 12 | [values] 13 | machine_nozzle_size = 0.3 14 | -------------------------------------------------------------------------------- /resources/variants/kosher220_0.4.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.4 mm Nozzle 3 | version = 4 4 | definition = kosher 5 | 6 | [metadata] 7 | 8 | setting_version = 19 9 | type = variant 10 | hardware_type = nozzle 11 | 12 | [values] 13 | machine_nozzle_size = 0.4 14 | -------------------------------------------------------------------------------- /resources/variants/kosher220_0.5.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.5 mm Nozzle 3 | version = 4 4 | definition = kosher 5 | 6 | [metadata] 7 | 8 | setting_version = 19 9 | type = variant 10 | hardware_type = nozzle 11 | 12 | [values] 13 | machine_nozzle_size = 0.5 14 | -------------------------------------------------------------------------------- /resources/variants/kosher220_0.6.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.6 mm Nozzle 3 | version = 4 4 | definition = kosher 5 | 6 | [metadata] 7 | 8 | setting_version = 19 9 | type = variant 10 | hardware_type = nozzle 11 | 12 | [values] 13 | machine_nozzle_size = 0.6 14 | -------------------------------------------------------------------------------- /resources/variants/kosher220_0.8.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.8 mm Nozzle 3 | version = 4 4 | definition = kosher 5 | 6 | [metadata] 7 | 8 | setting_version = 19 9 | type = variant 10 | hardware_type = nozzle 11 | 12 | [values] 13 | machine_nozzle_size = 0.8 14 | -------------------------------------------------------------------------------- /resources/variants/mingda_base_0.2.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.2mm Nozzle 3 | version = 4 4 | definition = mingda_base 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.2 13 | -------------------------------------------------------------------------------- /resources/variants/mingda_base_0.3.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.3mm Nozzle 3 | version = 4 4 | definition = mingda_base 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.3 13 | -------------------------------------------------------------------------------- /resources/variants/mingda_base_0.4.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.4mm Nozzle 3 | version = 4 4 | definition = mingda_base 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.4 13 | -------------------------------------------------------------------------------- /resources/variants/mingda_base_0.6.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.6mm Nozzle 3 | version = 4 4 | definition = mingda_base 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.6 13 | -------------------------------------------------------------------------------- /resources/variants/mingda_base_0.8.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.8mm Nozzle 3 | version = 4 4 | definition = mingda_base 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.8 13 | -------------------------------------------------------------------------------- /resources/variants/mingda_base_1.0.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 1.0mm Nozzle 3 | version = 4 4 | definition = mingda_base 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 1.0 13 | -------------------------------------------------------------------------------- /resources/variants/mingda_d2_0.2.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.2mm Nozzle 3 | version = 4 4 | definition = mingda_d2 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.2 13 | -------------------------------------------------------------------------------- /resources/variants/mingda_d2_0.3.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.3mm Nozzle 3 | version = 4 4 | definition = mingda_d2 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.3 13 | -------------------------------------------------------------------------------- /resources/variants/mingda_d2_0.4.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.4mm Nozzle 3 | version = 4 4 | definition = mingda_d2 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.4 13 | -------------------------------------------------------------------------------- /resources/variants/mingda_d2_0.5.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.5mm Nozzle 3 | version = 4 4 | definition = mingda_d2 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.5 13 | -------------------------------------------------------------------------------- /resources/variants/mingda_d2_0.6.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.6mm Nozzle 3 | version = 4 4 | definition = mingda_d2 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.6 13 | -------------------------------------------------------------------------------- /resources/variants/mingda_d2_0.8.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.8mm Nozzle 3 | version = 4 4 | definition = mingda_d2 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.8 13 | -------------------------------------------------------------------------------- /resources/variants/mingda_d2_1.0.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 1.0mm Nozzle 3 | version = 4 4 | definition = mingda_d2 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 1.0 13 | -------------------------------------------------------------------------------- /resources/variants/tizyx_k25_0.5.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.5 mm 3 | version = 4 4 | definition = tizyx_k25 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.5 13 | 14 | -------------------------------------------------------------------------------- /resources/variants/uni_base_0.30.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.30mm Nozzle 3 | version = 4 4 | definition = uni_base 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.3 13 | -------------------------------------------------------------------------------- /resources/variants/uni_base_0.40.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.40mm Nozzle 3 | version = 4 4 | definition = uni_base 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.4 13 | -------------------------------------------------------------------------------- /resources/variants/uni_base_0.50.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.50mm Nozzle 3 | version = 4 4 | definition = uni_base 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.5 13 | -------------------------------------------------------------------------------- /resources/variants/uni_mini_0.30.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.30mm Nozzle 3 | version = 4 4 | definition = uni_mini 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.3 13 | -------------------------------------------------------------------------------- /resources/variants/uni_mini_0.40.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.40mm Nozzle 3 | version = 4 4 | definition = uni_mini 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.4 13 | -------------------------------------------------------------------------------- /resources/variants/uni_mini_0.50.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.50mm Nozzle 3 | version = 4 4 | definition = uni_mini 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.5 13 | -------------------------------------------------------------------------------- /resources/variants/voron0_120_v6_0.25.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = V6 0.25mm 3 | version = 4 4 | definition = voron0_120 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.25 13 | -------------------------------------------------------------------------------- /resources/variants/voron0_120_v6_0.30.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = V6 0.30mm 3 | version = 4 4 | definition = voron0_120 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.3 13 | -------------------------------------------------------------------------------- /resources/variants/voron0_120_v6_0.40.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = V6 0.40mm 3 | version = 4 4 | definition = voron0_120 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.4 13 | -------------------------------------------------------------------------------- /resources/variants/voron0_120_v6_0.50.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = V6 0.50mm 3 | version = 4 4 | definition = voron0_120 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.5 13 | -------------------------------------------------------------------------------- /resources/variants/voron0_120_v6_0.60.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = V6 0.60mm 3 | version = 4 4 | definition = voron0_120 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.6 13 | -------------------------------------------------------------------------------- /resources/variants/voron0_120_v6_0.80.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = V6 0.80mm 3 | version = 4 4 | definition = voron0_120 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.8 13 | -------------------------------------------------------------------------------- /resources/variants/voron2_250_v6_0.25.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = V6 0.25mm 3 | version = 4 4 | definition = voron2_250 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.25 13 | -------------------------------------------------------------------------------- /resources/variants/voron2_250_v6_0.30.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = V6 0.30mm 3 | version = 4 4 | definition = voron2_250 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.30 13 | -------------------------------------------------------------------------------- /resources/variants/voron2_250_v6_0.35.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = V6 0.35mm 3 | version = 4 4 | definition = voron2_250 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.35 13 | -------------------------------------------------------------------------------- /resources/variants/voron2_250_v6_0.40.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = V6 0.40mm 3 | version = 4 4 | definition = voron2_250 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.4 13 | -------------------------------------------------------------------------------- /resources/variants/voron2_250_v6_0.50.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = V6 0.50mm 3 | version = 4 4 | definition = voron2_250 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.5 13 | -------------------------------------------------------------------------------- /resources/variants/voron2_250_v6_0.60.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = V6 0.60mm 3 | version = 4 4 | definition = voron2_250 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.6 13 | -------------------------------------------------------------------------------- /resources/variants/voron2_250_v6_0.80.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = V6 0.80mm 3 | version = 4 4 | definition = voron2_250 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.8 13 | -------------------------------------------------------------------------------- /resources/variants/voron2_300_v6_0.25.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = V6 0.25mm 3 | version = 4 4 | definition = voron2_300 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.25 13 | -------------------------------------------------------------------------------- /resources/variants/voron2_300_v6_0.30.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = V6 0.30mm 3 | version = 4 4 | definition = voron2_300 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.30 13 | -------------------------------------------------------------------------------- /resources/variants/voron2_300_v6_0.35.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = V6 0.35mm 3 | version = 4 4 | definition = voron2_300 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.35 13 | -------------------------------------------------------------------------------- /resources/variants/voron2_300_v6_0.40.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = V6 0.40mm 3 | version = 4 4 | definition = voron2_300 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.4 13 | -------------------------------------------------------------------------------- /resources/variants/voron2_300_v6_0.50.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = V6 0.50mm 3 | version = 4 4 | definition = voron2_300 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.5 13 | -------------------------------------------------------------------------------- /resources/variants/voron2_300_v6_0.60.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = V6 0.60mm 3 | version = 4 4 | definition = voron2_300 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.6 13 | -------------------------------------------------------------------------------- /resources/variants/voron2_300_v6_0.80.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = V6 0.80mm 3 | version = 4 4 | definition = voron2_300 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.8 13 | -------------------------------------------------------------------------------- /resources/variants/voron2_350_v6_0.25.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = V6 0.25mm 3 | version = 4 4 | definition = voron2_350 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.25 13 | -------------------------------------------------------------------------------- /resources/variants/voron2_350_v6_0.30.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = V6 0.30mm 3 | version = 4 4 | definition = voron2_350 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.30 13 | -------------------------------------------------------------------------------- /resources/variants/voron2_350_v6_0.35.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = V6 0.35mm 3 | version = 4 4 | definition = voron2_350 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.35 13 | -------------------------------------------------------------------------------- /resources/variants/voron2_350_v6_0.40.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = V6 0.40mm 3 | version = 4 4 | definition = voron2_350 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.4 13 | -------------------------------------------------------------------------------- /resources/variants/voron2_350_v6_0.50.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = V6 0.50mm 3 | version = 4 4 | definition = voron2_350 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.5 13 | -------------------------------------------------------------------------------- /resources/variants/voron2_350_v6_0.60.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = V6 0.60mm 3 | version = 4 4 | definition = voron2_350 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.6 13 | -------------------------------------------------------------------------------- /resources/variants/voron2_350_v6_0.80.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = V6 0.80mm 3 | version = 4 4 | definition = voron2_350 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.8 13 | -------------------------------------------------------------------------------- /resources/variants/zav_big_0.20.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.20mm_ZAV_Nozzle 3 | version = 4 4 | definition = zav_big 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.2 13 | -------------------------------------------------------------------------------- /resources/variants/zav_big_0.25.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.25mm_ZAV_Nozzle 3 | version = 4 4 | definition = zav_big 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.25 13 | -------------------------------------------------------------------------------- /resources/variants/zav_big_0.30.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.30mm_ZAV_Nozzle 3 | version = 4 4 | definition = zav_big 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.3 13 | -------------------------------------------------------------------------------- /resources/variants/zav_big_0.35.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.35mm_ZAV_Nozzle 3 | version = 4 4 | definition = zav_big 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.35 13 | -------------------------------------------------------------------------------- /resources/variants/zav_big_0.40.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.40mm_ZAV_Nozzle 3 | version = 4 4 | definition = zav_big 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.4 13 | -------------------------------------------------------------------------------- /resources/variants/zav_big_0.45.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.45mm_ZAV_Nozzle 3 | version = 4 4 | definition = zav_big 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.45 13 | -------------------------------------------------------------------------------- /resources/variants/zav_big_0.50.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.50mm_ZAV_Nozzle 3 | version = 4 4 | definition = zav_big 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.5 13 | -------------------------------------------------------------------------------- /resources/variants/zav_big_0.60.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.60mm_ZAV_Nozzle 3 | version = 4 4 | definition = zav_big 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.6 13 | -------------------------------------------------------------------------------- /resources/variants/zav_big_0.80.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.80mm_ZAV_Nozzle 3 | version = 4 4 | definition = zav_big 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.8 13 | -------------------------------------------------------------------------------- /resources/variants/zav_big_1.00.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 1.00mm_ZAV_Nozzle 3 | version = 4 4 | definition = zav_big 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 1.0 13 | -------------------------------------------------------------------------------- /resources/variants/zav_l_0.25.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.25mm_ZAV_Nozzle 3 | version = 4 4 | definition = zav_l 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.25 13 | -------------------------------------------------------------------------------- /resources/variants/zav_l_0.35.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.35mm_ZAV_Nozzle 3 | version = 4 4 | definition = zav_l 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.35 13 | -------------------------------------------------------------------------------- /resources/variants/zav_l_0.45.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.45mm_ZAV_Nozzle 3 | version = 4 4 | definition = zav_l 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.45 13 | -------------------------------------------------------------------------------- /resources/variants/zav_max_0.20.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.20mm_ZAV_Nozzle 3 | version = 4 4 | definition = zav_max 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.2 13 | -------------------------------------------------------------------------------- /resources/variants/zav_max_0.25.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.25mm_ZAV_Nozzle 3 | version = 4 4 | definition = zav_max 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.25 13 | -------------------------------------------------------------------------------- /resources/variants/zav_max_0.30.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.30mm_ZAV_Nozzle 3 | version = 4 4 | definition = zav_max 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.3 13 | -------------------------------------------------------------------------------- /resources/variants/zav_max_0.35.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.35mm_ZAV_Nozzle 3 | version = 4 4 | definition = zav_max 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.35 13 | -------------------------------------------------------------------------------- /resources/variants/zav_max_0.40.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.40mm_ZAV_Nozzle 3 | version = 4 4 | definition = zav_max 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.4 13 | -------------------------------------------------------------------------------- /resources/variants/zav_max_0.45.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.45mm_ZAV_Nozzle 3 | version = 4 4 | definition = zav_max 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.45 13 | -------------------------------------------------------------------------------- /resources/variants/zav_max_0.50.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.50mm_ZAV_Nozzle 3 | version = 4 4 | definition = zav_max 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.5 13 | -------------------------------------------------------------------------------- /resources/variants/zav_max_0.60.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.60mm_ZAV_Nozzle 3 | version = 4 4 | definition = zav_max 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.6 13 | -------------------------------------------------------------------------------- /resources/variants/zav_max_0.80.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.80mm_ZAV_Nozzle 3 | version = 4 4 | definition = zav_max 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.8 13 | -------------------------------------------------------------------------------- /resources/variants/zav_max_1.00.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 1.00mm_ZAV_Nozzle 3 | version = 4 4 | definition = zav_max 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 1.0 13 | -------------------------------------------------------------------------------- /plugins/CuraEngineBackend/plugin.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "CuraEngine Backend", 3 | "author": "Ultimaker B.V.", 4 | "description": "Provides the link to the CuraEngine slicing backend.", 5 | "api": 7, 6 | "version": "1.0.1", 7 | "i18n-catalog": "cura" 8 | } 9 | -------------------------------------------------------------------------------- /plugins/ImageReader/plugin.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Image Reader", 3 | "author": "Ultimaker B.V.", 4 | "version": "1.0.1", 5 | "description": "Enables ability to generate printable geometry from 2D image files.", 6 | "api": 7, 7 | "i18n-catalog": "cura" 8 | } 9 | -------------------------------------------------------------------------------- /plugins/SentryLogger/plugin.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Sentry Logger", 3 | "author": "Ultimaker B.V.", 4 | "version": "1.0.0", 5 | "description": "Logs certain events so that they can be used by the crash reporter", 6 | "api": 7, 7 | "i18n-catalog": "cura" 8 | } 9 | -------------------------------------------------------------------------------- /plugins/SliceInfoPlugin/plugin.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Slice info", 3 | "author": "Ultimaker B.V.", 4 | "version": "1.0.1", 5 | "description": "Submits anonymous slice info. Can be disabled through preferences.", 6 | "api": 7, 7 | "i18n-catalog": "cura" 8 | } 9 | -------------------------------------------------------------------------------- /resources/quality/diy220/diy220_normal.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | version = 4 3 | name = Fine 4 | definition = diy220 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = quality 9 | quality_type = normal 10 | weight = 0 11 | global_quality = True 12 | 13 | [values] 14 | -------------------------------------------------------------------------------- /resources/variants/arjun300_0.2.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.2 mm Nozzle 3 | version = 4 4 | definition = arjun300 5 | 6 | [metadata] 7 | 8 | setting_version = 19 9 | type = variant 10 | hardware_type = nozzle 11 | 12 | [values] 13 | machine_nozzle_size = 0.2 14 | -------------------------------------------------------------------------------- /resources/variants/arjun300_0.3.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.3 mm Nozzle 3 | version = 4 4 | definition = arjun300 5 | 6 | [metadata] 7 | 8 | setting_version = 19 9 | type = variant 10 | hardware_type = nozzle 11 | 12 | [values] 13 | machine_nozzle_size = 0.3 14 | -------------------------------------------------------------------------------- /resources/variants/arjun300_0.4.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.4 mm Nozzle 3 | version = 4 4 | definition = arjun300 5 | 6 | [metadata] 7 | 8 | setting_version = 19 9 | type = variant 10 | hardware_type = nozzle 11 | 12 | [values] 13 | machine_nozzle_size = 0.4 14 | -------------------------------------------------------------------------------- /resources/variants/arjun300_0.5.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.5 mm Nozzle 3 | version = 4 4 | definition = arjun300 5 | 6 | [metadata] 7 | 8 | setting_version = 19 9 | type = variant 10 | hardware_type = nozzle 11 | 12 | [values] 13 | machine_nozzle_size = 0.5 14 | -------------------------------------------------------------------------------- /resources/variants/arjun300_0.6.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.6 mm Nozzle 3 | version = 4 4 | definition = arjun300 5 | 6 | [metadata] 7 | 8 | setting_version = 19 9 | type = variant 10 | hardware_type = nozzle 11 | 12 | [values] 13 | machine_nozzle_size = 0.6 14 | -------------------------------------------------------------------------------- /resources/variants/arjun300_0.8.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.8 mm Nozzle 3 | version = 4 4 | definition = arjun300 5 | 6 | [metadata] 7 | 8 | setting_version = 19 9 | type = variant 10 | hardware_type = nozzle 11 | 12 | [values] 13 | machine_nozzle_size = 0.8 14 | -------------------------------------------------------------------------------- /resources/variants/creality_base_0.2.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.2mm Nozzle 3 | version = 4 4 | definition = creality_base 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.2 13 | -------------------------------------------------------------------------------- /resources/variants/creality_base_0.3.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.3mm Nozzle 3 | version = 4 4 | definition = creality_base 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.3 13 | -------------------------------------------------------------------------------- /resources/variants/creality_base_0.4.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.4mm Nozzle 3 | version = 4 4 | definition = creality_base 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.4 13 | -------------------------------------------------------------------------------- /resources/variants/creality_base_0.5.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.5mm Nozzle 3 | version = 4 4 | definition = creality_base 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.5 13 | -------------------------------------------------------------------------------- /resources/variants/creality_base_0.6.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.6mm Nozzle 3 | version = 4 4 | definition = creality_base 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.6 13 | -------------------------------------------------------------------------------- /resources/variants/creality_base_0.8.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.8mm Nozzle 3 | version = 4 4 | definition = creality_base 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.8 13 | -------------------------------------------------------------------------------- /resources/variants/creality_base_1.0.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 1.0mm Nozzle 3 | version = 4 4 | definition = creality_base 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 1.0 13 | -------------------------------------------------------------------------------- /resources/variants/creality_cr10_0.2.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.2mm Nozzle 3 | version = 4 4 | definition = creality_cr10 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.2 13 | -------------------------------------------------------------------------------- /resources/variants/creality_cr10_0.3.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.3mm Nozzle 3 | version = 4 4 | definition = creality_cr10 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.3 13 | -------------------------------------------------------------------------------- /resources/variants/creality_cr10_0.4.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.4mm Nozzle 3 | version = 4 4 | definition = creality_cr10 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.4 13 | -------------------------------------------------------------------------------- /resources/variants/creality_cr10_0.5.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.5mm Nozzle 3 | version = 4 4 | definition = creality_cr10 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.5 13 | -------------------------------------------------------------------------------- /resources/variants/creality_cr10_0.6.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.6mm Nozzle 3 | version = 4 4 | definition = creality_cr10 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.6 13 | -------------------------------------------------------------------------------- /resources/variants/creality_cr10_0.8.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.8mm Nozzle 3 | version = 4 4 | definition = creality_cr10 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.8 13 | -------------------------------------------------------------------------------- /resources/variants/creality_cr10_1.0.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 1.0mm Nozzle 3 | version = 4 4 | definition = creality_cr10 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 1.0 13 | -------------------------------------------------------------------------------- /resources/variants/creality_cr20_0.2.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.2mm Nozzle 3 | version = 4 4 | definition = creality_cr20 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.2 13 | -------------------------------------------------------------------------------- /resources/variants/creality_cr20_0.3.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.3mm Nozzle 3 | version = 4 4 | definition = creality_cr20 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.3 13 | -------------------------------------------------------------------------------- /resources/variants/creality_cr20_0.4.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.4mm Nozzle 3 | version = 4 4 | definition = creality_cr20 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.4 13 | -------------------------------------------------------------------------------- /resources/variants/creality_cr20_0.5.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.5mm Nozzle 3 | version = 4 4 | definition = creality_cr20 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.5 13 | -------------------------------------------------------------------------------- /resources/variants/creality_cr20_0.6.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.6mm Nozzle 3 | version = 4 4 | definition = creality_cr20 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.6 13 | -------------------------------------------------------------------------------- /resources/variants/creality_cr20_0.8.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.8mm Nozzle 3 | version = 4 4 | definition = creality_cr20 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.8 13 | -------------------------------------------------------------------------------- /resources/variants/creality_cr20_1.0.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 1.0mm Nozzle 3 | version = 4 4 | definition = creality_cr20 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 1.0 13 | -------------------------------------------------------------------------------- /resources/variants/farm2_printhead_0.2.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = PrintHead 0.2 mm 3 | version = 4 4 | definition = farm2 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.2 13 | -------------------------------------------------------------------------------- /resources/variants/farm2_printhead_0.3.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = PrintHead 0.3 mm 3 | version = 4 4 | definition = farm2 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.3 13 | -------------------------------------------------------------------------------- /resources/variants/farm2_printhead_0.4.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = PrintHead 0.4 mm 3 | version = 4 4 | definition = farm2 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.4 13 | -------------------------------------------------------------------------------- /resources/variants/farm2_printhead_0.5.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = PrintHead 0.5 mm 3 | version = 4 4 | definition = farm2 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.5 13 | -------------------------------------------------------------------------------- /resources/variants/goofoo_cube_0.7.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.7mm Nozzle 3 | version = 4 4 | definition = goofoo_cube 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.7 -------------------------------------------------------------------------------- /resources/variants/goofoo_e-one_0.2.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.2mm Nozzle 3 | version = 4 4 | definition = goofoo_e-one 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.2 13 | -------------------------------------------------------------------------------- /resources/variants/goofoo_e-one_0.4.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.4mm Nozzle 3 | version = 4 4 | definition = goofoo_e-one 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.4 13 | -------------------------------------------------------------------------------- /resources/variants/goofoo_e-one_0.6.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.6mm Nozzle 3 | version = 4 4 | definition = goofoo_e-one 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.6 13 | -------------------------------------------------------------------------------- /resources/variants/goofoo_e-one_0.8.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.8mm Nozzle 3 | version = 4 4 | definition = goofoo_e-one 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.8 13 | -------------------------------------------------------------------------------- /resources/variants/goofoo_e-one_1.0.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 1.0mm Nozzle 3 | version = 4 4 | definition = goofoo_e-one 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 1.0 13 | -------------------------------------------------------------------------------- /resources/variants/goofoo_gemini_0.2.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.2mm Nozzle 3 | version = 4 4 | definition = goofoo_gemini 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.2 13 | -------------------------------------------------------------------------------- /resources/variants/goofoo_gemini_0.4.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.4mm Nozzle 3 | version = 4 4 | definition = goofoo_gemini 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.4 13 | -------------------------------------------------------------------------------- /resources/variants/goofoo_gemini_0.6.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.6mm Nozzle 3 | version = 4 4 | definition = goofoo_gemini 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.6 13 | -------------------------------------------------------------------------------- /resources/variants/goofoo_gemini_0.8.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.8mm Nozzle 3 | version = 4 4 | definition = goofoo_gemini 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.8 13 | -------------------------------------------------------------------------------- /resources/variants/goofoo_gemini_1.0.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 1.0mm Nozzle 3 | version = 4 4 | definition = goofoo_gemini 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 1.0 13 | -------------------------------------------------------------------------------- /resources/variants/goofoo_giant_0.2.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.2mm Nozzle 3 | version = 4 4 | definition = goofoo_giant 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.2 13 | -------------------------------------------------------------------------------- /resources/variants/goofoo_giant_0.4.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.4mm Nozzle 3 | version = 4 4 | definition = goofoo_giant 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.4 13 | -------------------------------------------------------------------------------- /resources/variants/goofoo_giant_0.6.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.6mm Nozzle 3 | version = 4 4 | definition = goofoo_giant 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.6 13 | -------------------------------------------------------------------------------- /resources/variants/goofoo_giant_0.8.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.8mm Nozzle 3 | version = 4 4 | definition = goofoo_giant 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.8 13 | -------------------------------------------------------------------------------- /resources/variants/goofoo_giant_1.0.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 1.0mm Nozzle 3 | version = 4 4 | definition = goofoo_giant 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 1.0 13 | -------------------------------------------------------------------------------- /resources/variants/goofoo_t-one_0.2.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.2mm Nozzle 3 | version = 4 4 | definition = goofoo_t-one 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.2 13 | -------------------------------------------------------------------------------- /resources/variants/goofoo_t-one_0.4.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.4mm Nozzle 3 | version = 4 4 | definition = goofoo_t-one 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.4 13 | -------------------------------------------------------------------------------- /resources/variants/goofoo_t-one_0.6.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.6mm Nozzle 3 | version = 4 4 | definition = goofoo_t-one 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.6 13 | -------------------------------------------------------------------------------- /resources/variants/goofoo_t-one_0.8.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.8mm Nozzle 3 | version = 4 4 | definition = goofoo_t-one 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.8 13 | -------------------------------------------------------------------------------- /resources/variants/goofoo_t-one_1.0.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 1.0mm Nozzle 3 | version = 4 4 | definition = goofoo_t-one 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 1.0 13 | -------------------------------------------------------------------------------- /resources/variants/kingroon_kp3_0.2.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.2mm Nozzle 3 | version = 4 4 | definition = kingroon_kp3 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.2 13 | -------------------------------------------------------------------------------- /resources/variants/kingroon_kp3_0.3.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.3mm Nozzle 3 | version = 4 4 | definition = kingroon_kp3 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.3 13 | -------------------------------------------------------------------------------- /resources/variants/kingroon_kp3_0.4.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.4mm Nozzle 3 | version = 4 4 | definition = kingroon_kp3 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.4 13 | -------------------------------------------------------------------------------- /resources/variants/kingroon_kp3_0.5.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.5mm Nozzle 3 | version = 4 4 | definition = kingroon_kp3 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.5 13 | -------------------------------------------------------------------------------- /resources/variants/kingroon_kp3_0.6.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.6mm Nozzle 3 | version = 4 4 | definition = kingroon_kp3 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.6 13 | -------------------------------------------------------------------------------- /resources/variants/kingroon_kp3_0.8.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.8mm Nozzle 3 | version = 4 4 | definition = kingroon_kp3 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.8 13 | -------------------------------------------------------------------------------- /resources/variants/kingroon_kp3_1.0.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 1.0mm Nozzle 3 | version = 4 4 | definition = kingroon_kp3 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 1.0 13 | -------------------------------------------------------------------------------- /resources/variants/kingroon_kp3s_0.2.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.2mm Nozzle 3 | version = 4 4 | definition = kingroon_kp3s 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.2 13 | -------------------------------------------------------------------------------- /resources/variants/kingroon_kp3s_0.3.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.3mm Nozzle 3 | version = 4 4 | definition = kingroon_kp3s 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.3 13 | -------------------------------------------------------------------------------- /resources/variants/kingroon_kp3s_0.4.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.4mm Nozzle 3 | version = 4 4 | definition = kingroon_kp3s 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.4 13 | -------------------------------------------------------------------------------- /resources/variants/kingroon_kp3s_0.5.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.5mm Nozzle 3 | version = 4 4 | definition = kingroon_kp3s 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.5 13 | -------------------------------------------------------------------------------- /resources/variants/kingroon_kp3s_0.6.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.6mm Nozzle 3 | version = 4 4 | definition = kingroon_kp3s 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.6 13 | -------------------------------------------------------------------------------- /resources/variants/kingroon_kp3s_0.8.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.8mm Nozzle 3 | version = 4 4 | definition = kingroon_kp3s 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.8 13 | -------------------------------------------------------------------------------- /resources/variants/kingroon_kp3s_1.0.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 1.0mm Nozzle 3 | version = 4 4 | definition = kingroon_kp3s 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 1.0 13 | -------------------------------------------------------------------------------- /resources/variants/longer/longer_lk1_0.4.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.4mm Nozzle 3 | version = 4 4 | definition = longer_lk1 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.4 13 | -------------------------------------------------------------------------------- /resources/variants/longer/longer_lk4_0.4.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.4mm Nozzle 3 | version = 4 4 | definition = longer_lk4 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.4 13 | -------------------------------------------------------------------------------- /resources/variants/longer/longer_lk5_0.4.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.4mm Nozzle 3 | version = 4 4 | definition = longer_lk5 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.4 13 | -------------------------------------------------------------------------------- /resources/variants/mingda_d3pro_0.2.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.2mm Nozzle 3 | version = 4 4 | definition = mingda_d3pro 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.2 13 | -------------------------------------------------------------------------------- /resources/variants/mingda_d3pro_0.3.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.3mm Nozzle 3 | version = 4 4 | definition = mingda_d3pro 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.3 13 | -------------------------------------------------------------------------------- /resources/variants/mingda_d3pro_0.4.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.4mm Nozzle 3 | version = 4 4 | definition = mingda_d3pro 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.4 13 | -------------------------------------------------------------------------------- /resources/variants/mingda_d3pro_0.5.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.5mm Nozzle 3 | version = 4 4 | definition = mingda_d3pro 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.5 13 | -------------------------------------------------------------------------------- /resources/variants/mingda_d3pro_0.6.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.6mm Nozzle 3 | version = 4 4 | definition = mingda_d3pro 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.6 13 | -------------------------------------------------------------------------------- /resources/variants/mingda_d3pro_0.8.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.8mm Nozzle 3 | version = 4 4 | definition = mingda_d3pro 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.8 13 | -------------------------------------------------------------------------------- /resources/variants/mingda_d3pro_1.0.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 1.0mm Nozzle 3 | version = 4 4 | definition = mingda_d3pro 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 1.0 13 | -------------------------------------------------------------------------------- /resources/variants/mingda_d4pro_0.2.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.2mm Nozzle 3 | version = 4 4 | definition = mingda_d4pro 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.2 13 | -------------------------------------------------------------------------------- /resources/variants/mingda_d4pro_0.3.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.3mm Nozzle 3 | version = 4 4 | definition = mingda_d4pro 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.3 13 | -------------------------------------------------------------------------------- /resources/variants/mingda_d4pro_0.4.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.4mm Nozzle 3 | version = 4 4 | definition = mingda_d4pro 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.4 13 | -------------------------------------------------------------------------------- /resources/variants/mingda_d4pro_0.5.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.5mm Nozzle 3 | version = 4 4 | definition = mingda_d4pro 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.5 13 | -------------------------------------------------------------------------------- /resources/variants/mingda_d4pro_0.6.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.6mm Nozzle 3 | version = 4 4 | definition = mingda_d4pro 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.6 13 | -------------------------------------------------------------------------------- /resources/variants/mingda_d4pro_0.8.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.8mm Nozzle 3 | version = 4 4 | definition = mingda_d4pro 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.8 13 | -------------------------------------------------------------------------------- /resources/variants/mingda_d4pro_1.0.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 1.0mm Nozzle 3 | version = 4 4 | definition = mingda_d4pro 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 1.0 13 | -------------------------------------------------------------------------------- /resources/variants/mingda_rock3_0.2.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.2mm Nozzle 3 | version = 4 4 | definition = mingda_rock3 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.2 13 | -------------------------------------------------------------------------------- /resources/variants/mingda_rock3_0.3.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.3mm Nozzle 3 | version = 4 4 | definition = mingda_rock3 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.3 13 | -------------------------------------------------------------------------------- /resources/variants/mingda_rock3_0.4.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.4mm Nozzle 3 | version = 4 4 | definition = mingda_rock3 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.4 13 | -------------------------------------------------------------------------------- /resources/variants/mingda_rock3_0.5.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.5mm Nozzle 3 | version = 4 4 | definition = mingda_rock3 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.5 13 | -------------------------------------------------------------------------------- /resources/variants/mingda_rock3_0.6.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.6mm Nozzle 3 | version = 4 4 | definition = mingda_rock3 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.6 13 | -------------------------------------------------------------------------------- /resources/variants/mingda_rock3_0.8.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.8mm Nozzle 3 | version = 4 4 | definition = mingda_rock3 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.8 13 | -------------------------------------------------------------------------------- /resources/variants/mingda_rock3_1.0.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 1.0mm Nozzle 3 | version = 4 4 | definition = mingda_rock3 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 1.0 13 | -------------------------------------------------------------------------------- /resources/variants/voron2_custom_v6_0.40.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = V6 0.40mm 3 | version = 4 4 | definition = voron2_custom 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.4 13 | -------------------------------------------------------------------------------- /resources/variants/voron2_custom_v6_0.50.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = V6 0.50mm 3 | version = 4 4 | definition = voron2_custom 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.5 13 | -------------------------------------------------------------------------------- /resources/variants/voron2_custom_v6_0.60.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = V6 0.60mm 3 | version = 4 4 | definition = voron2_custom 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.6 13 | -------------------------------------------------------------------------------- /resources/variants/voron2_custom_v6_0.80.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = V6 0.80mm 3 | version = 4 4 | definition = voron2_custom 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.8 13 | -------------------------------------------------------------------------------- /resources/variants/weedo_x40_weedo_0.4.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.4mm Nozzle 3 | version = 4 4 | definition = weedo_x40 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.4 13 | -------------------------------------------------------------------------------- /resources/variants/weedo_x40_weedo_0.6.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.6mm Nozzle 3 | version = 4 4 | definition = weedo_x40 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.6 13 | -------------------------------------------------------------------------------- /resources/variants/weedo_x40_weedo_0.8.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.8mm Nozzle 3 | version = 4 4 | definition = weedo_x40 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.8 13 | -------------------------------------------------------------------------------- /resources/variants/zav_base_0.20.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.20mm_ZAV_Nozzle 3 | version = 4 4 | definition = zav_base 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.2 13 | -------------------------------------------------------------------------------- /resources/variants/zav_base_0.25.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.25mm_ZAV_Nozzle 3 | version = 4 4 | definition = zav_base 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.25 13 | -------------------------------------------------------------------------------- /resources/variants/zav_base_0.30.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.30mm_ZAV_Nozzle 3 | version = 4 4 | definition = zav_base 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.3 13 | -------------------------------------------------------------------------------- /resources/variants/zav_base_0.35.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.35mm_ZAV_Nozzle 3 | version = 4 4 | definition = zav_base 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.35 13 | -------------------------------------------------------------------------------- /resources/variants/zav_base_0.40.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.40mm_ZAV_Nozzle 3 | version = 4 4 | definition = zav_base 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.4 13 | -------------------------------------------------------------------------------- /resources/variants/zav_base_0.45.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.45mm_ZAV_Nozzle 3 | version = 4 4 | definition = zav_base 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.45 13 | -------------------------------------------------------------------------------- /resources/variants/zav_base_0.50.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.50mm_ZAV_Nozzle 3 | version = 4 4 | definition = zav_base 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.5 13 | -------------------------------------------------------------------------------- /resources/variants/zav_base_0.60.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.60mm_ZAV_Nozzle 3 | version = 4 4 | definition = zav_base 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.6 13 | -------------------------------------------------------------------------------- /resources/variants/zav_base_0.80.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.80mm_ZAV_Nozzle 3 | version = 4 4 | definition = zav_base 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.8 13 | -------------------------------------------------------------------------------- /resources/variants/zav_base_1.00.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 1.00mm_ZAV_Nozzle 3 | version = 4 4 | definition = zav_base 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 1.0 13 | -------------------------------------------------------------------------------- /resources/variants/zav_maxpro_0.20.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.20mm_ZAV_Nozzle 3 | version = 4 4 | definition = zav_maxpro 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.2 13 | -------------------------------------------------------------------------------- /resources/variants/zav_maxpro_0.30.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.30mm_ZAV_Nozzle 3 | version = 4 4 | definition = zav_maxpro 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.3 13 | -------------------------------------------------------------------------------- /resources/variants/zav_maxpro_0.40.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.40mm_ZAV_Nozzle 3 | version = 4 4 | definition = zav_maxpro 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.4 13 | -------------------------------------------------------------------------------- /resources/variants/zav_maxpro_0.50.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.50mm_ZAV_Nozzle 3 | version = 4 4 | definition = zav_maxpro 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.5 13 | -------------------------------------------------------------------------------- /resources/variants/zav_maxpro_0.60.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.60mm_ZAV_Nozzle 3 | version = 4 4 | definition = zav_maxpro 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.6 13 | -------------------------------------------------------------------------------- /resources/variants/zav_maxpro_0.80.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.80mm_ZAV_Nozzle 3 | version = 4 4 | definition = zav_maxpro 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.8 13 | -------------------------------------------------------------------------------- /resources/variants/zav_maxpro_1.00.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 1.00mm_ZAV_Nozzle 3 | version = 4 4 | definition = zav_maxpro 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 1.0 13 | -------------------------------------------------------------------------------- /resources/variants/zav_mini_0.20.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.20mm_ZAV_Nozzle 3 | version = 4 4 | definition = zav_mini 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.2 13 | -------------------------------------------------------------------------------- /resources/variants/zav_mini_0.25.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.25mm_ZAV_Nozzle 3 | version = 4 4 | definition = zav_mini 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.25 13 | -------------------------------------------------------------------------------- /resources/variants/zav_mini_0.30.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.30mm_ZAV_Nozzle 3 | version = 4 4 | definition = zav_mini 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.3 13 | -------------------------------------------------------------------------------- /resources/variants/zav_mini_0.35.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.35mm_ZAV_Nozzle 3 | version = 4 4 | definition = zav_mini 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.35 13 | -------------------------------------------------------------------------------- /resources/variants/zav_mini_0.40.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.40mm_ZAV_Nozzle 3 | version = 4 4 | definition = zav_mini 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.4 13 | -------------------------------------------------------------------------------- /resources/variants/zav_mini_0.45.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.45mm_ZAV_Nozzle 3 | version = 4 4 | definition = zav_mini 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.45 13 | -------------------------------------------------------------------------------- /resources/variants/zav_mini_0.50.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.50mm_ZAV_Nozzle 3 | version = 4 4 | definition = zav_mini 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.5 13 | -------------------------------------------------------------------------------- /resources/variants/zav_mini_0.60.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.60mm_ZAV_Nozzle 3 | version = 4 4 | definition = zav_mini 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.6 13 | -------------------------------------------------------------------------------- /resources/variants/zav_mini_0.80.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.80mm_ZAV_Nozzle 3 | version = 4 4 | definition = zav_mini 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 0.8 13 | -------------------------------------------------------------------------------- /resources/variants/zav_mini_1.00.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 1.00mm_ZAV_Nozzle 3 | version = 4 4 | definition = zav_mini 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = variant 9 | hardware_type = nozzle 10 | 11 | [values] 12 | machine_nozzle_size = 1.0 13 | -------------------------------------------------------------------------------- /plugins/UFPReader/plugin.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "UFP Reader", 3 | "author": "Ultimaker B.V.", 4 | "version": "1.0.0", 5 | "description": "Provides support for reading Ultimaker Format Packages.", 6 | "supported_sdk_versions": ["7.9.0"], 7 | "i18n-catalog": "cura" 8 | } -------------------------------------------------------------------------------- /resources/quality/malyan_m200/petg/malyan_m200_petg_draft.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | version = 4 3 | name = Fast 4 | definition = malyan_m200 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = quality 9 | quality_type = draft 10 | weight = -2 11 | material = generic_petg 12 | -------------------------------------------------------------------------------- /resources/quality/malyan_m200/petg/malyan_m200_petg_fast.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | version = 4 3 | name = Normal 4 | definition = malyan_m200 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = quality 9 | quality_type = fast 10 | weight = -1 11 | material = generic_petg 12 | -------------------------------------------------------------------------------- /resources/quality/malyan_m200/petg/malyan_m200_petg_high.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | version = 4 3 | name = Finer 4 | definition = malyan_m200 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = quality 9 | quality_type = high 10 | weight = 1 11 | material = generic_petg 12 | -------------------------------------------------------------------------------- /resources/quality/malyan_m200/petg/malyan_m200_petg_normal.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | version = 4 3 | name = Fine 4 | definition = malyan_m200 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = quality 9 | quality_type = normal 10 | weight = 0 11 | material = generic_petg 12 | -------------------------------------------------------------------------------- /resources/quality/ultimaker2/um2_normal.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | version = 4 3 | name = Fine 4 | definition = ultimaker2 5 | 6 | [metadata] 7 | setting_version = 19 8 | type = quality 9 | quality_type = normal 10 | weight = 0 11 | global_quality = True 12 | 13 | [values] 14 | -------------------------------------------------------------------------------- /resources/variants/arjun300_mm_0.2.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.2 mm Nozzle 3 | version = 4 4 | definition = arjun_mirrored 5 | 6 | [metadata] 7 | 8 | setting_version = 19 9 | type = variant 10 | hardware_type = nozzle 11 | 12 | [values] 13 | machine_nozzle_size = 0.2 14 | -------------------------------------------------------------------------------- /resources/variants/arjun300_mm_0.3.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.3 mm Nozzle 3 | version = 4 4 | definition = arjun_mirrored 5 | 6 | [metadata] 7 | 8 | setting_version = 19 9 | type = variant 10 | hardware_type = nozzle 11 | 12 | [values] 13 | machine_nozzle_size = 0.3 14 | -------------------------------------------------------------------------------- /resources/variants/arjun300_mm_0.4.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.4 mm Nozzle 3 | version = 4 4 | definition = arjun_mirrored 5 | 6 | [metadata] 7 | 8 | setting_version = 19 9 | type = variant 10 | hardware_type = nozzle 11 | 12 | [values] 13 | machine_nozzle_size = 0.4 14 | -------------------------------------------------------------------------------- /resources/variants/arjun300_mm_0.5.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.5 mm Nozzle 3 | version = 4 4 | definition = arjun_mirrored 5 | 6 | [metadata] 7 | 8 | setting_version = 19 9 | type = variant 10 | hardware_type = nozzle 11 | 12 | [values] 13 | machine_nozzle_size = 0.5 14 | -------------------------------------------------------------------------------- /resources/variants/arjun300_mm_0.6.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.6 mm Nozzle 3 | version = 4 4 | definition = arjun_mirrored 5 | 6 | [metadata] 7 | 8 | setting_version = 19 9 | type = variant 10 | hardware_type = nozzle 11 | 12 | [values] 13 | machine_nozzle_size = 0.6 14 | -------------------------------------------------------------------------------- /resources/variants/arjun300_mm_0.8.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.8 mm Nozzle 3 | version = 4 4 | definition = arjun_mirrored 5 | 6 | [metadata] 7 | 8 | setting_version = 19 9 | type = variant 10 | hardware_type = nozzle 11 | 12 | [values] 13 | machine_nozzle_size = 0.8 14 | -------------------------------------------------------------------------------- /resources/variants/arjunpro300_0.2.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.2 mm Nozzle 3 | version = 4 4 | definition = arjunpro300 5 | 6 | [metadata] 7 | 8 | setting_version = 19 9 | type = variant 10 | hardware_type = nozzle 11 | 12 | [values] 13 | machine_nozzle_size = 0.2 14 | -------------------------------------------------------------------------------- /resources/variants/arjunpro300_0.3.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.3 mm Nozzle 3 | version = 4 4 | definition = arjunpro300 5 | 6 | [metadata] 7 | 8 | setting_version = 19 9 | type = variant 10 | hardware_type = nozzle 11 | 12 | [values] 13 | machine_nozzle_size = 0.3 14 | -------------------------------------------------------------------------------- /resources/variants/arjunpro300_0.4.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.4 mm Nozzle 3 | version = 4 4 | definition = arjunpro300 5 | 6 | [metadata] 7 | 8 | setting_version = 19 9 | type = variant 10 | hardware_type = nozzle 11 | 12 | [values] 13 | machine_nozzle_size = 0.4 14 | -------------------------------------------------------------------------------- /resources/variants/arjunpro300_0.5.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.5 mm Nozzle 3 | version = 4 4 | definition = arjunpro300 5 | 6 | [metadata] 7 | 8 | setting_version = 19 9 | type = variant 10 | hardware_type = nozzle 11 | 12 | [values] 13 | machine_nozzle_size = 0.5 14 | -------------------------------------------------------------------------------- /resources/variants/arjunpro300_0.6.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.6 mm Nozzle 3 | version = 4 4 | definition = arjunpro300 5 | 6 | [metadata] 7 | 8 | setting_version = 19 9 | type = variant 10 | hardware_type = nozzle 11 | 12 | [values] 13 | machine_nozzle_size = 0.6 14 | -------------------------------------------------------------------------------- /resources/variants/arjunpro300_0.8.inst.cfg: -------------------------------------------------------------------------------- 1 | [general] 2 | name = 0.8 mm Nozzle 3 | version = 4 4 | definition = arjunpro300 5 | 6 | [metadata] 7 | 8 | setting_version = 19 9 | type = variant 10 | hardware_type = nozzle 11 | 12 | [values] 13 | machine_nozzle_size = 0.8 14 | --------------------------------------------------------------------------------