Commit graph

24004 commits

Author SHA1 Message Date
Bernhard Koppensteiner
f86b45e4fa changed first layer height according to optimal value of the respective nozzle size 2024-06-10 07:53:35 +02:00
Bernhard Koppensteiner
b1c0b40fea updated firmware version 2024-06-10 07:52:55 +02:00
SoftFever
aa692b815e
Add Profiles for The Positron profiles (#5640)
* add the positron profiles

* update printable_height to 165
2024-06-09 00:17:22 +08:00
SoftFever
ef73bafeb0
Feature/add 0.2 0.6 0.8 nozzle for my klipper machine (#5637)
* Add 0.2mm 0.6mm 0.8 mm nozzle for MyKlipper profile

* small change
2024-06-08 21:37:09 +08:00
SoftFever
f9ecc9d423 Fix some small issues for Prusa XL profiles:
1. fixed some wrong parameter names
2. fixed bed texture
3. Fix typo "pursa"
4. Use Prusa XL in all cases
2024-06-08 17:38:09 +08:00
cochcoder
467691db5e
Add support for Prusa XL Input Shaper (only one head will print) & add PC-CF, PA11-CF, & PVB filament types (#5511)
* Add Prusa XL & speed profile

* Wrong name

* Fix cover image sizing

* Change infill pattern & density to whats in PrusaSlicer

* Fix filament start G-Code & Add additional info in printer notes

* Add PETG profile

* Link PETG profile

* Add ABS & add bed temps

* Add Prusament PLA & attempt at removing ramming limits

* Allow user to change ramming time & volume

* Revert changing identifier

* Remove invalid ramming variables

* Add Prusament PETG

* Try this

* Revert "Try this"

This reverts commit c6228950fb5f72baa64fa6e63ae8b25ffe4538ec.

* Revert ramming changes

* Add rPLA, PLA+, PC-CF, PA11-CF, and PVB

* Add PVB profile and other minor improvements

* Add image formats

* Add rPLA profile & remove rPLA & PLA+ from printConfig

* Add Prusament PC-CF & small bug fixes

* Add Prusament ASA, PA-CF, PC, & pa11cf common file

* Minor improvements to common and speed profiles

* Add 0.20mm Quality profile

* Add .3mm Draft process & link .2mm Quality

* Add 0.15mm Quality process

* Add 0.10mm Detail process

* Add 0.07mm UltraDetail profile

* Add 0.5mm nozzle size & related processes

* Set default print profile

* Fix incorrect bridge flow ratio

* Fix incorrect support z distance

* Correct skirt values if enabled

* Add 0.6 & 0.8 nozzles & respective profiles as well as some fixes

* Set default profile for 0.8

* Add 0.25, 0.3, & respective profiles

This also adds all the nozzle sizes to the filament profiles

* Adapt filename format

* Remove unneeded values

* Add Input Shaper

* Fix raft contact distance

* Add Input Shaper profiles to filaments

* List default profiles

* Add printer variant variable

* Change cover sizes & optimize svg

* Fix small filament bug

* Add comment for symmetry

* Add Prusa before XL & XLIS

* Fix failing check

* Fix failing check part 2

* Some small changes

* I've been overthinking this haven't I?

* Could it be this?

* Revert this change

* Try one last thing

* Change naming for XLIS & covers

* Try removing non-IS profiles

* Change IS models

* Remove remnants of non-IS profiles

* Change naming for better consistency
2024-06-08 17:36:00 +08:00
HYzd766
d49c8911ab
Tweak some settings for Qidi Q1 Pro and X3 serials printers (#5603)
* Update fdm_filament_abs.json

Modification based on chamber temperature

* Update fdm_filament_asa.json

Modification based on chamber temperature

* Update QIDI ABS-GF25 @Qidi Q1 Pro 0.4 nozzle.json

Modification based on chamber temperature

* Update QIDI ABS-GF25 @Qidi Q1 Pro 0.6 nozzle.json

Modification based on chamber temperature

* Update QIDI ABS-GF25 @Qidi Q1 Pro 0.8 nozzle.json

Modification based on chamber temperature

* Update QIDI ASA @Qidi Q1 Pro 0.2 nozzle.json

Modification based on chamber temperature

* Update Qidi Generic ABS.json

Modification based on chamber temperature

* Update Qidi Generic ASA.json

Modification based on chamber temperature

* Update QIDI ABS-GF25 @Qidi Q1 Pro 0.4 nozzle.json

Sorry, there is still a parameter that needs to be modified for this type of consumable

* Update QIDI ABS-GF25 @Qidi Q1 Pro 0.6 nozzle.json

Sorry, there is still a parameter that needs to be modified for this type of consumable

* Update QIDI ABS-GF25 @Qidi Q1 Pro 0.8 nozzle.json

Sorry, there is still a parameter that needs to be modified for this type of consumable

* Update Qidi Q1 Pro 0.4 nozzle.json

Parameter modification

* Update fdm_qidi_x3_common.json

Parameter modification

* Update Qidi Q1 Pro 0.4 nozzle.json

Gcode Change

* Update fdm_qidi_x3_common.json

Gcode Change

* Merge branch 'main' into main
2024-06-08 11:14:38 +08:00
SoftFever
68d2a9eedf
Fixed a minor bug where the maximum volumetric speed cap was slightly… (#5629)
Fixed a minor bug where the maximum volumetric speed cap was slightly off for the PA pattern calibration.
2024-06-08 10:55:32 +08:00
SoftFever
ff53f401be Take filament flow ratio into account when displaying flow in gcode legend 2024-06-08 10:50:08 +08:00
Alex Tang
06ef58ab3e
Allow Cmd-Shift-M to bring up 3dConnexion Spacemouse Dialog (EXCEPT on "Home" sub-screen) (#5598)
* Prevent Cmd-Shift-M from minimizing on Mac EXCEPT on "Home" sub-screen

The problem is that hitting "Cmd-Shift-M" on mac always minimizes the app, even though it should only minimize on "Cmd-M", and not on "Cmd-Shift-M".

The code that minimizes (using the WXWidgets "Iconize()" call) happens in MainFrame.cpp keyboard event loop.  The code that's checking, looks for "Cmd-M" but does not check for any other keyboard modifiers, so I added a check to ignore the event if Shift is pressed along with "Cmd-M".

There's a secondary issue that isn't really relevant to this bug in that the app will still minimize when pressing "Cmd-Shift-M", but ONLY on the "Home" sub-screen. (all other sub-screens work as they should).

I'm not sure why, but when the "Home" sub-screen is selected, the keyboard event loop (MainFrame.cpp, line 609), is called TWICE when "Cmd-Shift-<any key>" is pressed:

* Once where the event's wxKeyModifier (retrieved via `evt.GetModifiers()` is set to `wxMOD_CONTROL`  AND `wxMOD_SHIFT`.  (this is correct)
* Once where the event's wxKeyModifier  is **ONLY** set to `wxMOD_CONTROL` (this is wrong).

Again, this double-event (with the wrong modifiers) only happens when the user is on the "Home" sub-screen.  For the context of this bug the 3DConnexion preferences dialog isn't needed on the "Home" sub-screen so this secondary bug doesn't matter.  But it does make the UX odd where Cmd-Shift-M will minimize the app when the user is viewing the "Home" sub-screen, but not minimize the app when the user is viewing any other sub-screen.

* Merge branch 'main' into spacemouse_dialog
2024-06-07 22:14:41 +08:00
KrisMorr
4ee2193408
update locale + list.txt (#5600)
* update locale + list.txt

update litst.txt  - src/slic3r/GUI/wxMediaCtrl2.cpp

* typo
2024-06-07 21:18:23 +08:00
cochcoder
1b6c9aca94
Fix all nozzle types being shown when only one is selected on the Sovol SV08 (#5615)
Fix all nozzle types being shown when one is selected on the Sovol SV08
2024-06-07 21:15:40 +08:00
SoftFever
03e5da3d23 Fixed an bug that plate name was not used in some cases
Fixed #5556
2024-06-06 22:28:57 +08:00
Bernhard Koppensteiner
d3d9065ea3 Merge branch 'main' of https://github.com/koppensb/OrcaSlicer 2024-06-06 13:48:25 +02:00
SoftFever
cb4b84c4ba Fix an issue that Bambu printer camera is not prompted to register due to the Bambu's registry path changes
Fix #5554
2024-06-05 23:21:40 +08:00
SoftFever
6af6a42ed9 Fix issues for Peopoly profiles:
fixes includes:
1. 0.6 and 0.8 nozzles are not displayed
2. Some filaments are not enabled for 0.6 0.8 nozzle
3. version number
4. change default sparse_infill_pattern to crosshatch
5. change top_surface_pattern to monotonicline
2024-06-05 22:48:02 +08:00
Peopoly
3e232a86e8
Magneto X profile (#5590)
* Add files via upload

* Update fdm_process_pply_common.json

* test on v1.8/1.9/2.0/2.1 portable version
2024-06-05 22:14:06 +08:00
SoftFever
9a4429f603 Fixed an issue that small_area_infill_compensation_model was initialized even it's not used.
Fixed #5550
2024-06-04 23:14:22 +08:00
SoftFever
ae07cf9813 fix a regression that thumbnail was not rendered properly for delta printers
Fixes #5525
2024-06-04 20:30:18 +08:00
Noisyfox
2f265ef083
Fix issue that skip object won't trigger filament change when print-by-object is used (#5576)
* Fix issue that skip object won't trigger filament change when print-by-object is used
2024-06-04 20:00:56 +08:00
Noisyfox
a877d642f6
Fix build with VS2022 17.10.x (#5575)
* Fix dep build with latest vs2022

* Fix opencv build with latest vs2022
2024-06-04 19:59:23 +08:00
Ioannis Giannakas
99544f9104
Potential fix for other layers bed temperature not applied (#5546)
* Potential fix for other layers bed temperature not applied

* Merge branch 'main' into Potential-fix-for-other-layers-bed-temperature-not-applied

* Merge branch 'main' into Potential-fix-for-other-layers-bed-temperature-not-applied
2024-06-04 19:43:43 +08:00
Dima Buzdyk
47ab3a050e
fix url protocol integration under linux (#5535) 2024-06-04 18:32:49 +08:00
SoftFever
276e03683f disable flatpak CI for now 2024-06-04 18:32:29 +08:00
KrisMorr
eaee170b4c
Update string SendMultiMachinePage.cpp (#5538) 2024-06-03 21:42:24 +08:00
cochcoder
b7b3418baf
Fix Dremel Generic PLA, Snapmaker PET, & Snapmaker PVA showing up everywhere (#5508)
* Fix Dremel PLA being shown everywhere

* Remove duplicate ender 3 profile

* Fix failing build

* Revert "Fix failing build"

This reverts commit e137e7a135754914f193382870bfdc476ab1a4e3.

* Revert "Remove duplicate ender 3 profile"

This reverts commit a6cbd955ffd50d943b0546f811dc12f8e725652a.

* Fix Snapmaker PET & PVA showing up everywhere
2024-06-03 21:40:28 +08:00
Thomas
accc1a4fc1
Fixed a typo in Flsun SR profile (#5504) 2024-06-03 21:39:03 +08:00
Heiko Liebscher
e0ff96d574
add new german translation (de) (#5509)
* add new translation de

* edit text.js new translations

* typo
2024-06-03 21:37:49 +08:00
Olcay ÖREN
d972a68564
Update OrcaSlicer_tr.po - TURKISH translation update (#5559) 2024-06-03 21:34:51 +08:00
SoftFever
c083541e0a
Thumbnails feature revamp. (#5555)
* Thumbnails feature revamp.
Support generating different size/format combinations
* misc fix

Co-authored-by: Lukas Matena <lukasmatena@seznam.cz>
2024-06-03 21:30:38 +08:00
Gabriel E Dvoranen
50d00a1d54
Update OrcaSlicer_pt_BR (#5549)
Updated some translations

Added translation for the last .pot update
2024-06-02 23:02:21 +08:00
Thomas
c4a5a56b3b
Fixes remaining "code G" in French translations (#5533)
Fixes remaining "code G"
2024-06-02 23:01:55 +08:00
jimmyjon711
5f92fae965
Fix for InfimechTx Start Gcode (#5527)
Fixes InfimechTx Start Gcode

- Current start gcode for InfimechTx has the wrong index for Y when creating the purge line
- Updated start gcode to use right index for the Y value
2024-06-02 23:01:36 +08:00
Carlos Francisco Caruncho Serrano
51e88d4e24
Spanish translation update 2.1.0 Beta (#5520)
* Update OrcaSlicer_es.po

* Traducción español Beta 2.1.0

* Update text.js

* Minor fix PR
2024-06-02 23:00:21 +08:00
cochcoder
6ad2d7404e
Update the Sovol profiles to what Sovol provides themselves (#5512)
* Use profiles given by Sovol

* Change infill pattern to crosshatch
2024-06-02 22:59:35 +08:00
Lee Jong Mun
0862bb5808
kor translation update (#5519) 2024-06-02 22:58:40 +08:00
Bernhard Koppensteiner
b1163084f6 Merge branch 'main' of https://github.com/koppensb/OrcaSlicer 2024-05-31 20:01:34 +02:00
Bernhard Koppensteiner
b0bfa9165a Update Prusa MINIIS 0.4 nozzle.json
updated firmware version
2024-05-31 19:56:58 +02:00
Bernhard Koppensteiner
2bbbb7232c
Merge branch 'SoftFever:main' into main 2024-05-31 19:56:41 +02:00
Gudzonskiy
9b7b11e066
Update OrcaSlicer_uk.po (#5503)
Having spent a few days working on the translation into Ukrainian language for yourself, you would like to share the result! Please let the reader of this translation come!
2024-05-30 21:17:03 +08:00
HYzd766
985578fbdc
Chamber Change (#5500)
* Update fdm_filament_abs.json

Modification based on chamber temperature

* Update fdm_filament_asa.json

Modification based on chamber temperature

* Update QIDI ABS-GF25 @Qidi Q1 Pro 0.4 nozzle.json

Modification based on chamber temperature

* Update QIDI ABS-GF25 @Qidi Q1 Pro 0.6 nozzle.json

Modification based on chamber temperature

* Update QIDI ABS-GF25 @Qidi Q1 Pro 0.8 nozzle.json

Modification based on chamber temperature

* Update QIDI ASA @Qidi Q1 Pro 0.2 nozzle.json

Modification based on chamber temperature

* Update Qidi Generic ABS.json

Modification based on chamber temperature

* Update Qidi Generic ASA.json

Modification based on chamber temperature
2024-05-30 21:15:27 +08:00
SoftFever
9b6ceb9e80 bump version to 2.1.0-beta 2024-05-29 23:09:16 +08:00
SoftFever
0459c28596 Tweak default parameters
1.  Change default ensure_vertical_shell_thickness value back to ensure_all as suggested by @igiannakas
2.  Change default sparse_infill_pattern vaule to ipCrossHatch
2024-05-29 23:07:29 +08:00
SoftFever
8b1bf13021
optimize cross hatch infill to enchance strength (#5495)
Optimize the cross-hatch infill pattern to improve strength when low infill density is used.
2024-05-29 23:03:47 +08:00
yw4z
c14ae13788
Parameter box improvements (#5119)
* Parameter improvements

• Added "Layers" side text for
	Bottom shell layers
	Number of slow layers
	Top shell layers
• Added "Layer" side text for
	Full fan speed at layer
• Added "x" side text for ratios. This one looks nice imo
	Internal bridge flow ratio
	Bridge flow ratio
	Top surface flow ratio
	Bottom surface flow ratio
	Flow ratio
	Scarf joint flow ratio
• Added "mm" side text for
	Mesh margin
	Minimum wall length
• Added "°C" side text for
	Softening temperature
• Converted these to spin boxes. Currently it combines combo box and input box and it has weird usage. Using spin boxes better because other layer related input boxes uses this too
	Top interface layers
	Bottom interface layers

* Fix for combo boxes without arrows

* Add icon files for Point input boxes

* Add side text for Point controls

* Update width of point controls

* Use TextInput for PointCtrl

* Use TextInput for PointCtrl

* Update style of Point Control

* Better Background color for Disabled elements on dark mode

* Use same color for disabled text on combo boxes

* Use Slightly darker text color for disabled text elements

* Revert changes for Top / Bottom interface layers parameter boxes

* fix build error

* update point control icons

* Remove "x" side text from flow ratio related parameters

* revert color related fixes

---------

Co-authored-by: SoftFever <softfeverever@gmail.com>
2024-05-29 23:02:17 +08:00
Thomas
c47e4654c7
Added new French translations (#5492)
Added new translations
2024-05-29 23:00:20 +08:00
KrisMorr
06144dfc97
Update Polish translation for new features (#5487)
* fix Polish translation for new features

* update 2 strings
2024-05-29 22:59:59 +08:00
SoftFever
246fde0426 change handy models to 3mf fileformat 2024-05-29 20:42:50 +08:00
cochcoder
fd8e1d765b
Add filament vendors (CERPRiSE, FilamentOne, Tianse, and VOXELPLA) & rename Formfortura to Formfutura (#5472)
* Add filament vendors part 1

* Add filament vendors part 2

* Fix merge confilcts

* Readd filament vendors & remove duplicate
2024-05-29 00:32:04 +08:00
SoftFever
3ba57512d0 update locale 2024-05-29 00:30:50 +08:00