v2.0.0-beta
版本发布时间: 2024-03-12 19:58:45
SoftFever/OrcaSlicer最新发布版本:v2.2.0-beta(2024-09-14 12:45:21)
What's Changed
This is OrcaSlicer V2.0.0 beta release.
This update introduces innovative new features and a lot of bug fixes and improvements.
-
Scarf joint seam: an innovative apprach to hide seams for FDM printing by @Noisyfox
You probably have already heard of the "scarf joint" feature implemented in OrcaSlicer through forum/YouTube videos.
It's a exicting new way to hide the seams in FDM printing.
Main implementation is done by @Noisyfox in https://github.com/SoftFever/OrcaSlicer/pull/3839
Conditional scarf joint and slowdown for scarf joint only feature is done by @SoftFever in https://github.com/SoftFever/OrcaSlicer/pull/4317
A big shoutout to @vgdh and @MichaelJLew for coming up with this brilliant idea and the early-stage prototype
A heartfelt thank you to everyone who participated in the testing and discussion, look at how many people are involved in the PR thread!
Adam(@psiberfunk) has done incredible scientific experiments. He wrote a great guide on how to use this feature, do check it out.
Michael(TeachingTech) made a fantastic YouTube video to explain this feature, do check it out.
-
Small area flow compensation by @mjonuschat in https://github.com/SoftFever/OrcaSlicer/pull/3334
A feature aimed at addressing the challenge of over-extrusion in small areas of solid infill, an issue previously not well understood. By implementing a strategy that adjusts extrusion flow inversely proportional to the length of the extrusion line, we ensure that shorter lines receive less flow. This approach is visually represented in the software, with color coding—blue for reduced flow and red for increased flow—to clearly show the effect of the adjustments. This feature is designed to enhance print quality by providing a practical solution to the over-extrusion problem, making it easier for users to achieve consistent results across their prints.
Big shoutout to @Alexander-T-Moss, who first came up with this innovative improvement and implemented it with scripts.
-
Orca Slicer now support OTA profile update for all 3d printers by @SoftFever in https://github.com/SoftFever/OrcaSlicer/pull/4069
-
QoL: 3D navigator by @Noisyfox in https://github.com/SoftFever/OrcaSlicer/pull/4181
You can turn it off in menu -
Improve gap fill application strategy by @igiannakas in https://github.com/SoftFever/OrcaSlicer/pull/3412
-
Add direct adaptive bed mesh support by @SoftFever in https://github.com/SoftFever/OrcaSlicer/pull/4212
Orca Slicer introduces comprehensive support for adaptive bed meshing across a variety of firmware, including Marlin, Klipper, and RepRapFirmware (RRF).
This feature allows users to seamlessly integrate adaptive bed mesh commands within the Machine Start G-code.
The implementation is designed to be straightforward, requiring no additional plugins or alterations to firmware settings, thereby enhancing user experience and print quality directly from Orca Slicer.
Compared to existing adaptive bed mesh plugins for Klipper, the Orca Slicer implementation can handle max/min bed mesh safety limits to avoid potential crashing into the bed.
For detailed usage, please refer to the Orca Slicer WIKI.
Example of Adaptive Bed Mesh usage in Orca Slicer:Marlin:
G29 X{bed_mesh_probe_count[0]} Y{bed_mesh_probe_count[1]} L{adaptive_bed_mesh_min[0]} R{adaptive_bed_mesh_max[0]} F{adaptive_bed_mesh_min[1]} B{adaptive_bed_mesh_max[1]} T V4
Klipper:
; Always pass `ADAPTIVE_MARGIN=0` because Orca has already handled `adaptive_bed_mesh_margin` internally BED_MESH_CALIBRATE mesh_min={adaptive_bed_mesh_min[0]},{adaptive_bed_mesh_min[1]} mesh_max={adaptive_bed_mesh_max[0]},{adaptive_bed_mesh_max[1]} ALGORITHM=[bed_mesh_algo] PROBE_COUNT={bed_mesh_probe_count[0]},{bed_mesh_probe_count[1]} ADAPTIVE=1 ADAPTIVE_MARGIN=0
RRF:
M557 X{adaptive_bed_mesh_min[0]}:{adaptive_bed_mesh_max[0]} Y{adaptive_bed_mesh_min[1]}:{adaptive_bed_mesh_max[1]} P{bed_mesh_probe_count[0]}:{bed_mesh_probe_count[1]}
-
Allow specifying print order within each layer by @Noisyfox in https://github.com/SoftFever/OrcaSlicer/pull/3685 You can now adjust the print order of objects in "by layer" mode by dragging them in the object list. Choosing the "as object list" option from the layer order dropdown will ensure objects are printed in your specified order for each layer.
-
Revist and improve "ensure vertical thickness" strategy and UX by @igiannakas and @SoftFever in https://github.com/SoftFever/OrcaSlicer/pull/3235 and https://github.com/SoftFever/OrcaSlicer/pull/4402
-
Add a new handy model: Orca string hell by @SoftFever in https://github.com/SoftFever/OrcaSlicer/pull/3892 The model itself is pretty much a clone of the top part of the Autodesk FDM test model.
It's handy to have a dedicated model to benchmark the stringing performance quickly, hence this handy model.
This also serves as a mini user guide on the One Wall on Top Surfaces feature for models with text embossment on top surfaces.
-
UX: check and warn users if print speed/accel/jerk are higher than the machine limits by @SoftFever in https://github.com/SoftFever/OrcaSlicer/pull/4403
-
Improve pressure equalizer so that it's less aggressive by @Noisyfox in https://github.com/SoftFever/OrcaSlicer/pull/4264
-
[Feature] Introduced option to control amount of internal bridging, fixing internal bridge missing for some sloped surfaces by @igiannakas in https://github.com/SoftFever/OrcaSlicer/pull/3319
-
Port EditGCodeDialog from PrusaSlicer by @Ocraftyone in https://github.com/SoftFever/OrcaSlicer/pull/3417
-
Port "counterbole hole bridging" feature from SuperSlicer(it's called "No Unsupported Perimeters" in SS) by @Ocraftyone and @Noisyfox in https://github.com/SoftFever/OrcaSlicer/pull/3189
-
Fixed a bug that in edge cases, wrong top surfaces were detected by @SoftFever in https://github.com/SoftFever/OrcaSlicer/pull/4244
-
Improvement: Corrected monotonic lines now respect user infill / wall overlap setting by @igiannakas in https://github.com/SoftFever/OrcaSlicer/pull/3388
-
Add configurable short wall/perimeter cleaning for Arachne by @scottmudge in https://github.com/SoftFever/OrcaSlicer/pull/2790
-
Fix #3311: filament Load / Unload time was not used in time estimation by @eoyilmaz in https://github.com/SoftFever/OrcaSlicer/pull/3706
-
Add shell type to STEP importer, to fix importing of some STEP files by @scottmudge in https://github.com/SoftFever/OrcaSlicer/pull/4247
-
Pressure equalizer documentation by @igiannakas in https://github.com/SoftFever/OrcaSlicer/pull/4334
-
Improve PA tower: 1. support large nozzles 2. remove jerk=1 settings 3. move settings changes to object to avoid accidently saving the profile by @SoftFever in https://github.com/SoftFever/OrcaSlicer/pull/4382
-
Support for Obico cloud integration by @kennethjiang in https://github.com/SoftFever/OrcaSlicer/pull/4116
For more detailed guild, please check this page: https://obico.io/docs/user-guides/orca-slicer-integration/
-
Allow specify wall directions by @Noisyfox in https://github.com/SoftFever/OrcaSlicer/pull/4156
-
ENH: Better Scrolling Over Multiline Fields by @Ocraftyone in https://github.com/SoftFever/OrcaSlicer/pull/4218
-
Improve ExtrusionLine::simplify, eliminating many very-short extrusion segments which led to blemishes in thin-wall models sliced with Arachne - Take 2 by @sethml in https://github.com/SoftFever/OrcaSlicer/pull/3750
-
Decouple filament minimum print speed from overhang slowdown by @igiannakas in https://github.com/SoftFever/OrcaSlicer/pull/3859
-
Fix an issue that exporting filament profiles didn't work for non-bbl printers by @Noisyfox in https://github.com/SoftFever/OrcaSlicer/pull/4217
Profiles:
-
QIDI: Update two new filaments by @Hukete in https://github.com/SoftFever/OrcaSlicer/pull/3304
-
Profile: Fixes and simplification of some Creality profiles. by @bistory in https://github.com/SoftFever/OrcaSlicer/pull/3315
-
Profile: Anker M5/C first layer consistency improvements by @just-trey in https://github.com/SoftFever/OrcaSlicer/pull/3321
-
Creality K1/K1 Max, Ender 3 V3 Series and Ender 5 S1 baseplates by @bistory in https://github.com/SoftFever/OrcaSlicer/pull/3365
-
Creality Ender 3 V3/KE important fixes and some fine-tunings by @bistory in https://github.com/SoftFever/OrcaSlicer/pull/3362
-
Update the some profiles by @Hukete in https://github.com/SoftFever/OrcaSlicer/pull/3470
-
M600 for Neptune 3 series (and removed from Neptune X) by @bistory in https://github.com/SoftFever/OrcaSlicer/pull/3432
-
Default Anker support_base_pattern (Fixes #3326) by @Xelinor in https://github.com/SoftFever/OrcaSlicer/pull/3585
-
New generic profile for Ender 3 V2 Neo by @bistory in https://github.com/SoftFever/OrcaSlicer/pull/3434
-
Added i3 printer_structure to Creality printers by @bistory in https://github.com/SoftFever/OrcaSlicer/pull/3460
-
Creality K1 Profiles improvements (and K1C addition) by @bistory in https://github.com/SoftFever/OrcaSlicer/pull/3728
-
Added PAUSE command for change_filament_gcode on Elegoo Neptune 4 series by @bistory in https://github.com/SoftFever/OrcaSlicer/pull/3411
-
Update 0.48mm Standard @BBL X1C 0.8 nozzle.json by @SufficentMuffin in https://github.com/SoftFever/OrcaSlicer/pull/3379
-
0109 Machine end gcode and process update for Adventurer 5M series by @FlashforgeOfficial in https://github.com/SoftFever/OrcaSlicer/pull/3580
-
Qidi x 3 thumbnail scale by @tome9111991 in https://github.com/SoftFever/OrcaSlicer/pull/3600
-
[Fix] Fixed error in Anycubic Kobra 2 profile using "rectilinear" sparse infill by @bistory in https://github.com/SoftFever/OrcaSlicer/pull/3664
-
New printer profile : TwoTrees SK1 by @bistory in https://github.com/SoftFever/OrcaSlicer/pull/3982
-
Creality Ender 3 and Prusa Mk3s 0,2;0,4,06 and 0,8 profiles by @goyetus in https://github.com/SoftFever/OrcaSlicer/pull/4029
-
Fixed Ender 3 profile inheritance by @bistory in https://github.com/SoftFever/OrcaSlicer/pull/4089
-
FlyingBear profiles updates: abs filament by @FlyingbearOfficial in https://github.com/SoftFever/OrcaSlicer/pull/4165
-
InfiMech profile updates: Change some parameterts and Update ABS filament by @InfimechOfficial in https://github.com/SoftFever/OrcaSlicer/pull/4166
-
TwoTrees SK1 Profiles : New filament (PLA Matte) and tuned volumetric flow rates by @bistory in https://github.com/SoftFever/OrcaSlicer/pull/4172
-
Added Voron 120 build plate for V0 by @bistory in https://github.com/SoftFever/OrcaSlicer/pull/4292
-
Construct 1 XL Start G-code Change by @Construct3D-AM in https://github.com/SoftFever/OrcaSlicer/pull/4336
-
Add AnkerMake 0.6mm Nozzle Profiles by @Xelinor in https://github.com/SoftFever/OrcaSlicer/pull/4338
-
Fix 0.16mm parameters and update start_gcode by @InfimechOfficial in https://github.com/SoftFever/OrcaSlicer/pull/4414
-
Added Flashforge Adventurer 3 Series profile by @RikshaDriver in https://github.com/SoftFever/OrcaSlicer/pull/4331
-
Add 0.2mm and 0.25mm nozzle profiles to AnkerMake printers by @Xelinor in https://github.com/SoftFever/OrcaSlicer/pull/4260
-
Creality textures and covers tweaks by @bistory in https://github.com/SoftFever/OrcaSlicer/pull/4274
-
Add a new filament named PLA Hyper by @InfimechOfficial in https://github.com/SoftFever/OrcaSlicer/pull/4339
-
CONSTRUCT3D Construct 1 & Construct 1 XL print profiles by @Construct3D-AM in https://github.com/SoftFever/OrcaSlicer/pull/4187
-
Ender 3 V3 SE/KE improvements by @bistory in https://github.com/SoftFever/OrcaSlicer/pull/4225
-
Fix paramters of the process and machine files by @FlyingbearOfficial in https://github.com/SoftFever/OrcaSlicer/pull/4246
-
Modified filaments/process/starting codes and added a new print layer height 0.16mm in the process by @InfimechOfficial in https://github.com/SoftFever/OrcaSlicer/pull/4200
-
Add a new model named S1 and fix some parameters of previous files by @FlyingbearOfficial in https://github.com/SoftFever/OrcaSlicer/pull/4267
-
Add Artillery Genius Pro Profile by @Mr-PBH in https://github.com/SoftFever/OrcaSlicer/pull/3742
-
Fix Voron "0.32mm Optimal 0.6 nozzle @Voron" profile by @SoftFever
-
Apply precise_outer_wall for inner-outer wall seq only by @SoftFever
-
Show warning notification if jerk is set to 1 by @SoftFever
Translations:
- Update Turkish translation by @olcayoren in https://github.com/SoftFever/OrcaSlicer/pull/3270
- kor translation update by @crwusiz in https://github.com/SoftFever/OrcaSlicer/pull/3272
- Update README.md by @eltociear in https://github.com/SoftFever/OrcaSlicer/pull/3281
- Feature/add more hints and fix/update locale by @SoftFever in https://github.com/SoftFever/OrcaSlicer/pull/3316
- Update German translation for 1.9 by @hliebscher in https://github.com/SoftFever/OrcaSlicer/pull/3343
- Updated Italian translation by @FabioForcina in https://github.com/SoftFever/OrcaSlicer/pull/3347
- Feature/build target 10.15 by @kpishere in https://github.com/SoftFever/OrcaSlicer/pull/3252
- Update README.md to provide alternative download links of webview2 runtimes by @silence48 in https://github.com/SoftFever/OrcaSlicer/pull/3384
- edit Ukrainian translation by @kvantum in https://github.com/SoftFever/OrcaSlicer/pull/3403
- Create SECURITY.md by @giveen in https://github.com/SoftFever/OrcaSlicer/pull/3696
- Update Spanish translation by @duub in https://github.com/SoftFever/OrcaSlicer/pull/3793
- [Fix] Polish translation update by @KrisMorr in https://github.com/SoftFever/OrcaSlicer/pull/3934
- Added new French translations by @bistory in https://github.com/SoftFever/OrcaSlicer/pull/4319
- Catalan Language updated to V1.9.1 by @davidjuanesb in https://github.com/SoftFever/OrcaSlicer/pull/4131
- Update simplified Chinese translation by @SoftFever
Misc:
- Fix issue that "Per-glyph" option not working when UI is in Chinese by @Noisyfox in https://github.com/SoftFever/OrcaSlicer/pull/3425
- Fix preview legend window size by @Noisyfox in https://github.com/SoftFever/OrcaSlicer/pull/3363
- Fix crash when click the color paint gizmo when object part is selected by @Noisyfox in https://github.com/SoftFever/OrcaSlicer/pull/3405
- Fixed crashes caused by pressure eq when support is used by @SoftFever in https://github.com/SoftFever/OrcaSlicer/pull/3407
- Fix NaN when adding negative part (#3423) by @Noisyfox in https://github.com/SoftFever/OrcaSlicer/pull/3431
- CICD: Fail on no cache hit by @Ocraftyone in https://github.com/SoftFever/OrcaSlicer/pull/3429
- Bug: Fix retraction issues with PA pattern calibration by @igiannakas in https://github.com/SoftFever/OrcaSlicer/pull/3314
- Display accurate precision for percent config values by @gswatkins in https://github.com/SoftFever/OrcaSlicer/pull/3466
- Support custom IP camera by @stuomas in https://github.com/SoftFever/OrcaSlicer/pull/3415
- [Bug fix] Fixes lightning infill with sparse infill width set to 0 causes "divide by zero" fatal error by @igiannakas in https://github.com/SoftFever/OrcaSlicer/pull/3592
- Fix garbled text when display scalling > 300% by @lllucius in https://github.com/SoftFever/OrcaSlicer/pull/3402
- [Bug fix] Fixes retraction on layer change being performed when retract travel threshold is set to 0 by @igiannakas in https://github.com/SoftFever/OrcaSlicer/pull/3614
- Update for colpic thumbnails background color to match Elegoo theme by @VBitsHub in https://github.com/SoftFever/OrcaSlicer/pull/3647
- fix(TemperaturesCalibration): typo in end_temp_string by @wesselbaum in https://github.com/SoftFever/OrcaSlicer/pull/3680
- Update BuildLinux.sh by @Ocraftyone in https://github.com/SoftFever/OrcaSlicer/pull/3679
- fix precedence errors by @foghatredbird in https://github.com/SoftFever/OrcaSlicer/pull/3611
- Remember the sidebar size by @Noisyfox in https://github.com/SoftFever/OrcaSlicer/pull/3700
- Fix Kingroon KP3S profiles by @konradmb in https://github.com/SoftFever/OrcaSlicer/pull/3712
- Fix constrainted scale (scale with ctrl key pressed) by @Noisyfox in https://github.com/SoftFever/OrcaSlicer/pull/3717
- [Bug fix] Fixes "Wipe before external loop" causing blobs on single wall perimeters by @igiannakas in https://github.com/SoftFever/OrcaSlicer/pull/3616
- Document building and debugging with XCode. by @sethml in https://github.com/SoftFever/OrcaSlicer/pull/3733
- Fixes #3721 - Typo in lang files by @Eldenroot in https://github.com/SoftFever/OrcaSlicer/pull/3722
- Don't check the temperature of multi filament for multi toolhead printers by @macdylan in https://github.com/SoftFever/OrcaSlicer/pull/3649
- Add plate name edit btn by @Noisyfox in https://github.com/SoftFever/OrcaSlicer/pull/3756
- Re-enable printing by object gcode by @Ocraftyone in https://github.com/SoftFever/OrcaSlicer/pull/3691
- Add project info editor by @Noisyfox in https://github.com/SoftFever/OrcaSlicer/pull/3754
- QoL: Some UI improvements to Cut Gizmo by @Noisyfox in https://github.com/SoftFever/OrcaSlicer/pull/3752
- Retain mirror state when scaling using text input (#3643) by @Noisyfox in https://github.com/SoftFever/OrcaSlicer/pull/3719
- Fixes for French translations by @bistory in https://github.com/SoftFever/OrcaSlicer/pull/3773
- [BUGFIX] Prevent crash in small area infill comp with gcode comments by @mjonuschat in https://github.com/SoftFever/OrcaSlicer/pull/3786
- Fix duplicate entry of Only Lift Z above and below in the extruder tab by @igiannakas in https://github.com/SoftFever/OrcaSlicer/pull/3788
- genreate smaller EXCLUDE_OBJECT_DEFINE for PA Line/Pattern tests Klipper by @SoftFever
- nightly release by @SoftFever in https://github.com/SoftFever/OrcaSlicer/pull/3792
- corrected printable_area by @RyanWhipple in https://github.com/SoftFever/OrcaSlicer/pull/3527
- Debug Improvments on Windows by @Ocraftyone in https://github.com/SoftFever/OrcaSlicer/pull/3275
- QoL: Port profile value transfer on profile diff dialog from PrusaSlicer by @Noisyfox in https://github.com/SoftFever/OrcaSlicer/pull/3737
- Modifiers should load at object offset like in Prusaslicer by @foghatredbird in https://github.com/SoftFever/OrcaSlicer/pull/3802
- Update the naming of the layer order option to intra-layer order by @Noisyfox in https://github.com/SoftFever/OrcaSlicer/pull/3834
- Feature/merge 1.8.4 by @SoftFever in https://github.com/SoftFever/OrcaSlicer/pull/3827
- Fix asserts which would not compile. by @sethml in https://github.com/SoftFever/OrcaSlicer/pull/3741
- Fixes 3833 ("Miss spelling") by @bistory in https://github.com/SoftFever/OrcaSlicer/pull/3840
- Add the Polish language by @KrisMorr in https://github.com/SoftFever/OrcaSlicer/pull/3622
- Add Devcontainer Support by @Ocraftyone in https://github.com/SoftFever/OrcaSlicer/pull/3777
- Prevent extra wall generation when sparse infill is zero by @oleksii-suprun in https://github.com/SoftFever/OrcaSlicer/pull/3775
- Refactor anker by @Xelinor in https://github.com/SoftFever/OrcaSlicer/pull/3845
- [Fix] Polish translation update by @KrisMorr in https://github.com/SoftFever/OrcaSlicer/pull/3855
- Fixes Anker M5C profiles by @Xelinor in https://github.com/SoftFever/OrcaSlicer/pull/3862
- Fix DEBUG build by @sethml in https://github.com/SoftFever/OrcaSlicer/pull/3861
- Update OrcaSlicer_tr.po - TURKISH translation update by @olcayoren in https://github.com/SoftFever/OrcaSlicer/pull/3864
- Update Spanish translation by @tadeu2 in https://github.com/SoftFever/OrcaSlicer/pull/3873
- Enforce retraction before wipe by @SoftFever in https://github.com/SoftFever/OrcaSlicer/pull/3888
- Change from "Back" to "Return" in the project tab by @KrisMorr in https://github.com/SoftFever/OrcaSlicer/pull/3867
- Fix some rotation-related issues by @Noisyfox in https://github.com/SoftFever/OrcaSlicer/pull/3890
- Fix issue with PA pattern test using travel acceleration and jerk for the PA patterns by @igiannakas in https://github.com/SoftFever/OrcaSlicer/pull/3851
- Update orca_bot.yml by @Eldenroot in https://github.com/SoftFever/OrcaSlicer/pull/3798
- Fix issue with auto orient a scaled object. by @Noisyfox in https://github.com/SoftFever/OrcaSlicer/pull/3904
- Update Polish translation by @KrisMorr in https://github.com/SoftFever/OrcaSlicer/pull/3903
- A lot of import fixes for flatpak by @powpingdone in https://github.com/SoftFever/OrcaSlicer/pull/3909
- Fix crashing on AMS filament edit by @igiannakas in https://github.com/SoftFever/OrcaSlicer/pull/3981
- Update build_release.bat by @tsmith35 in https://github.com/SoftFever/OrcaSlicer/pull/3961
- Give CGAL a boost::prior (import) by @powpingdone in https://github.com/SoftFever/OrcaSlicer/pull/3978
- Update orca_bot.yml by @Eldenroot in https://github.com/SoftFever/OrcaSlicer/pull/3986
- Update Polish translation by @KrisMorr in https://github.com/SoftFever/OrcaSlicer/pull/3998
- Fixed and integrated some Italian translations by @frankieorabona in https://github.com/SoftFever/OrcaSlicer/pull/4008
- Update HMS.cpp set language code to en by default for PL language by @KrisMorr in https://github.com/SoftFever/OrcaSlicer/pull/4034
- Creality Ender-3 V3 SE: Fix present print by @Jesterovskiy in https://github.com/SoftFever/OrcaSlicer/pull/4031
- New Language: Catalan language for OrcaSlicer 1.9.0 by @davidjuanesb in https://github.com/SoftFever/OrcaSlicer/pull/4036
- Russian translation update by @AndylgTom in https://github.com/SoftFever/OrcaSlicer/pull/4049
- Various Emboss improvements from PS by @Noisyfox in https://github.com/SoftFever/OrcaSlicer/pull/4039
- Fixed typo "Confing" by @bistory in https://github.com/SoftFever/OrcaSlicer/pull/4071
- Fix for #4047 by @bistory in https://github.com/SoftFever/OrcaSlicer/pull/4072
- Update orca_bot.yml by @Eldenroot in https://github.com/SoftFever/OrcaSlicer/pull/4044
- Make reporting easier - part I by @Eldenroot in https://github.com/SoftFever/OrcaSlicer/pull/4080
- Update bug_report.yml by @Eldenroot in https://github.com/SoftFever/OrcaSlicer/pull/4082
- Update and rename feature_request.md to feature_request.yml by @Eldenroot in https://github.com/SoftFever/OrcaSlicer/pull/4084
- Bug Fixed: Added "Printer Variant" to all Ender 3 and Prusa Mk3s Profiles by @goyetus in https://github.com/SoftFever/OrcaSlicer/pull/4098
- Show dialog when opening 3mf files to choose whether to import settings. by @markleaf131313 in https://github.com/SoftFever/OrcaSlicer/pull/4110
- Fix move gizmo on parts by @Noisyfox in https://github.com/SoftFever/OrcaSlicer/pull/4138
- Update Spanish translation by @tadeu2 in https://github.com/SoftFever/OrcaSlicer/pull/4142
- Fix object list crash on click (#2823) by @Noisyfox in https://github.com/SoftFever/OrcaSlicer/pull/4164
- Fix caucluation of rotation between two vectors during auto-orient by @Noisyfox in https://github.com/SoftFever/OrcaSlicer/pull/4144
- Fixed all filaments and added a new filament named pla_Hyper by @FlyingbearOfficial in https://github.com/SoftFever/OrcaSlicer/pull/4213
- check profile for PRs by @SoftFever in https://github.com/SoftFever/OrcaSlicer/pull/4251
- add profile validate tool by @SoftFever in https://github.com/SoftFever/OrcaSlicer/pull/4249
- Feature/enhance profile validator by @SoftFever in https://github.com/SoftFever/OrcaSlicer/pull/4278
- Reduced size of Max Flowrate Test model by @yw4z in https://github.com/SoftFever/OrcaSlicer/pull/4281
- FIX: Typo with exhuast by @valerian in https://github.com/SoftFever/OrcaSlicer/pull/4269
- Optimized PNG files by @bistory in https://github.com/SoftFever/OrcaSlicer/pull/4294
- ENH: Improve macOS build script by @nevack in https://github.com/SoftFever/OrcaSlicer/pull/4310
- FIX: revert default CMake generator for deps on macOS by @nevack in https://github.com/SoftFever/OrcaSlicer/pull/4357
- FIX: Support building with latest Xcode 15.3 by @nevack in https://github.com/SoftFever/OrcaSlicer/pull/4367
- fix an issue that pressure eq may cause 0 feedrate in vase mode by @SoftFever in https://github.com/SoftFever/OrcaSlicer/pull/4398
- Fix an issue that locale not compiled in CI/CD in by @SoftFever in https://github.com/SoftFever/OrcaSlicer/pull/4404
- ENH: Switch wxWidgets dep to a shallow git clone. by @nevack in https://github.com/SoftFever/OrcaSlicer/pull/4369
Support
If you appreciate my work and would like to support me, consider buying me a coffee.
Your support is greatly appreciated! :)
1、 OrcaSlicer_Linux_V2.0.0-beta.AppImage 103.12MB
2、 OrcaSlicer_Mac_arm64_V2.0.0-beta.dmg 123MB
3、 OrcaSlicer_Mac_x86_64_V2.0.0-beta.dmg 122.37MB
4、 OrcaSlicer_Windows_Installer_V2.0.0-beta.exe 79.06MB
5、 OrcaSlicer_Windows_V2.0.0-beta_portable.zip 98.67MB