YuSanka
a391d4c445
Added missed includes of "format.hpp"
2023-03-24 10:07:41 +01:00
Lukas Matena
c9b15736da
Fixed compilation errors and warnings
2023-03-24 09:56:40 +01:00
Lukas Matena
5d4f11ac24
Merge branch 'lm_acceleration'
2023-03-24 09:30:08 +01:00
Lukas Matena
0a52ef8da7
Fix format of M204 emitted from machine limits for various fws
2023-03-24 09:29:53 +01:00
Lukas Matena
847a34c644
Do not clamp travel acceleration when current firmware flavor does not allow separate setting of print and travel acceleration
2023-03-24 09:29:53 +01:00
YuSanka
51129fd4f3
Follow-up 87d77f338d
- Added control of a value of changed parameter "How to apply limits", when Klipper is selected
2023-03-24 09:29:53 +01:00
YuSanka
dcfbff5ec8
Check value of the parameter "How to apply limits", when Klipper is selected
...
+ Suppress silent mode for G-code flavor that is different from MarlinFirmware or MarlinLegacy
2023-03-24 09:29:53 +01:00
Lukas Matena
4b27210b6e
Bypass a crash when validating custom gcodes
2023-03-24 09:29:53 +01:00
Lukas Matena
09122fb0d0
Added a new config option to disable automatic temperature commands around start gcode (autoemit_temperature_commands)
2023-03-24 09:29:53 +01:00
Lukas Matena
da714c7210
Removed M107 inserted automatically at the start of the G-Code
2023-03-24 09:29:53 +01:00
Lukas Matena
06bccab711
Added Mainsail print host
2023-03-24 09:29:53 +01:00
Lukas Matena
b9eb13dff9
Klipper: specific behaviour (GCodeProcessor, WipeTower). GCodeWriter should behave as Marlin(legacy).
2023-03-24 09:29:53 +01:00
Lukas Matena
42f1217f6e
Klipper: Adding the new firmware flavor:
...
- added the new option
- allowed machine limits page
- added a check for Klipper + 'emit limits to gcode' (Print::validate so far)
2023-03-24 09:29:53 +01:00
Lukas Matena
3ff600bed0
Separated travel and print acceleration control
2023-03-24 09:29:53 +01:00
Lukas Matena
cf226f8eab
Added 'travel_acceleration' configuration option (not used so far)
2023-03-24 09:29:52 +01:00
YuSanka
5d89e742b4
Added missed includes of "format.hpp"
2023-03-24 09:27:12 +01:00
Lukas Matena
f57de43680
Fixed several more warnings
2023-03-23 22:59:01 +01:00
Lukas Matena
1a67044c81
Merge branch 'lm_localization'
2023-03-23 22:55:56 +01:00
YuSanka
18e56c3d53
Localization: Fixes for some phrases
...
+ Added/Fixed comments where it's needed
2023-03-23 22:55:38 +01:00
YuSanka
f9de995f9e
Remove '_utf8' makro.
...
(Initially, it was used because of using of boost::format for localized lines. But now It's better to use format and formal_wxstr functions)
+ Fixed missed marks for localization
+ Added missed filed to localization to the list.txt
2023-03-23 22:55:38 +01:00
Lukas Matena
472090a54d
Fix: file containing localization was missing in list.txt
2023-03-23 22:55:38 +01:00
Lukas Matena
73857703b8
Added a check that libslic3r/I18N.hpp is not included on the frontend by mistake,
...
also added a check that L macro is not defined when including libslic3r/I18N.hpp
2023-03-23 22:55:38 +01:00
YuSanka
19f2a1d9e9
Unified usage of localization macros in slic3r/libslic3r
2023-03-23 22:55:38 +01:00
Vojtech Bubnik
9cb50e6586
PlaceholderParser: added size() and empty() functions over vector variables.
2023-03-23 17:51:37 +01:00
Vojtech Bubnik
929a0eba2c
PlaceholderParser: replaced the new "array" operator with "repeat",
...
simplified the parser a bit more.
2023-03-23 17:08:56 +01:00
Vojtech Bubnik
3045884640
PlaceholderParser: Reduced code duplicity.
2023-03-23 15:00:45 +01:00
Lukas Matena
11e22b7950
Merge branch 'lm_wipe_tower_spacing'
2023-03-23 12:47:05 +01:00
Lukas Matena
6170783f7c
Wipe tower: Increased maximum of wipe_tower_extra_spacing to 300 %
2023-03-23 12:46:38 +01:00
Lukas Matena
64cf357907
Wipe tower: fix the cone in combination with 'no_sparse_layers'
2023-03-23 12:44:42 +01:00
Lukas Matena
b20325671a
Wipe tower: added the stabilization cone into configuration
2023-03-23 12:44:42 +01:00
Lukas Matena
26ba74fad0
Wipe tower: stabilization cone bottom infill
2023-03-23 12:44:42 +01:00
Lukas Matena
571b133791
Wipe tower: stabilization cone
2023-03-23 12:44:42 +01:00
Lukas Matena
cd70954758
Wipe tower: added an option to change spacing of the lines
2023-03-23 12:44:42 +01:00
Lukas Matena
7df4cfb453
Fixed a crash when selection wipe tower and using add instance function:
...
this was between 2.6.0-alpha3 and 2.6.0-alpha4 in 4d5b85e
.
2023-03-23 12:27:07 +01:00
Vojtech Bubnik
e46891fa8c
PlaceholderParser: Fixed compilation issues, added integration test
...
with FDM slicing process.
2023-03-23 09:23:20 +01:00
Vojtech Bubnik
c28585ab7f
WIP PlaceholderParser: Support for local and global variables.
...
Implements #4048 #7196
Syntax:
(global|local) variable_name =
(scalar_expression|vector_variable|array_expr|initializer_list)
array_expr := array(repeat, value)
initializer_list := (value, value, value, ...)
The type of the newly created variable is defined by the type
of the right hand side intitializer.
Newly declared variable must not override an existing variable.
Variable may be assigned with global|local expression, but its type
must not be changed.
Newly the assignment operator also accepts the same right hand expressions
as the global|local variable definition.
2023-03-22 17:46:57 +01:00
Vojtech Bubnik
963ca415d4
PlaceholderParser: new interpolate_table() "function"
...
interpolate_table(x, (x0, y0), (x1, y1), (x2, y2), ...)
interpolates a table at position x.
2023-03-22 17:46:57 +01:00
Filip Sykala - NTB T15p
c5b43107ba
Merge branch 'fs_emboss_Fix_fontpath'
2023-03-22 13:46:26 +01:00
Filip Sykala - NTB T15p
0a3db4525d
Fix suggested by Stefan Csomor<csomor@advancedconcepts.ch> for releasing MacOs references.
...
link: https://groups.google.com/g/wx-users/c/f2nVyT59H6M/m/_BocNmwCAgAJ
2023-03-22 13:46:10 +01:00
Pavel Mikus
fbcc1ab276
Fix SPE-1595 - crash when no bridgin surfaces present and adaptive fill selected
2023-03-22 13:23:07 +01:00
Filip Sykala - NTB T15p
ac5633841b
Merge branch 'master' into fs_emboss
2023-03-21 13:19:53 +01:00
rtyr
4326929960
Updated output filename format.
2023-03-21 12:36:23 +01:00
Filip Sykala - NTB T15p
59f14be1a8
Merge branch 'master' into fs_emboss
2023-03-21 12:11:31 +01:00
Filip Sykala - NTB T15p
ae016aceb9
Fix for selection of unknodn font
2023-03-21 12:11:09 +01:00
Pavel Mikus
ff5767b6f5
enable AABB tree over 3D lines
2023-03-20 20:01:37 +01:00
Filip Sykala - NTB T15p
a60bf51ce4
Merge branch 'master' into fs_emboss
2023-03-20 17:42:05 +01:00
Filip Sykala - NTB T15p
9c70ed01e5
Fix add emboss volume on reflected
2023-03-20 17:41:51 +01:00
Filip Sykala - NTB T15p
d653cc6ab5
Fix crash made on MMU printers
2023-03-20 16:10:13 +01:00
Vojtech Bubnik
7afabcde95
PlaceholderParser: Implemented one_of() matching function:
...
1st parameter is the text to match against,
the rest of the parameters are pattern to be matched:
either strings, then the match is exact,
or regex enclosed in //
or regex string starting with ~
For example
one_of("a", "a", "b")
finds a in "a", "b"
one_of("abc", /.*a.*/)
matches "abc" using regular expression /.*a.*/
2023-03-20 15:55:18 +01:00
Filip Sykala - NTB T15p
d24472675c
Keep color of object during drag over surface.
2023-03-20 15:33:00 +01:00