Commit Graph

14603 Commits

Author SHA1 Message Date
0778bcd5c9 Replace F5 with Ctrl+Shift+R as shortcut key for reload from disk commands on MAC 2020-12-07 08:39:43 +01:00
113acf61e3 Bumped up version number 2020-12-05 12:00:38 +01:00
b3d3685232 TriLAB 0.0.5 Removed obsolete host keys. 2020-12-05 11:29:16 +01:00
0147f46118 Anycubic 0.0.5 Updated end g-code. 2020-12-05 11:23:07 +01:00
4d69cc6ded LulzBot 0.0.2 Removed obsolete host keys 2020-12-05 11:19:53 +01:00
172596ef94 BIBO 0.0.3 Removed obsolete host keys 2020-12-05 11:14:27 +01:00
0c375f4179 Fixed typo (incopatible -> incompatible) 2020-12-05 10:56:58 +01:00
d8d423fff2 0.0.8 min_slic3r_version changed to 2.3.0-beta2 2020-12-05 10:21:13 +01:00
59bf949cec Changed layer_z to max_layer_z in end g-code. 2020-12-05 10:18:49 +01:00
8d0a439ca3 Removed redundant line 2020-12-05 09:58:51 +01:00
bf9b1d309c Fix of install wizard: Escape ampersands in printer models. 2020-12-05 09:55:09 +01:00
5a287f4dd1 Updated end g-code. Added full_fan_speed_layer values. 2020-12-05 09:55:07 +01:00
c1fb533185 Creality 0.0.8 2020-12-05 09:53:05 +01:00
38a7c8e63c bumped up to 0.0.8 2020-12-05 09:51:38 +01:00
1b013c704a Linux specific: Documented an improved way of offering language
selection on Linux.
2020-12-05 09:12:28 +01:00
5492ed5352 Fix of rework of loading configs from 3MFs, AMFs, gcodes
as modifications of existing user or system presets.
2020-12-05 08:14:04 +01:00
8ab0d7d7ab Bugfix: custom seam identification
Bounding boxes of polygons could overlap. Ask the AABB tree for all possible candidates.
Might be faster than searching for the closest triangle, that requires traversing the whole depth of the tree every time.
2020-12-05 02:02:22 +01:00
3e1b6a049f Bugfix: custom seam did not work on first layer with elephant foot compensation active 2020-12-05 00:02:43 +01:00
bcefdac090 Bugfix: seam enforcers not always respected (#5137, #5294) 2020-12-05 00:02:43 +01:00
5974ece496 Added missing includes for gcc 2020-12-05 00:02:43 +01:00
ea28d2a4ae Fixed wrong selection, when try to change printer preset from logical to physical and then in UnsavedChangesDialog select "Cancel" 2020-12-04 21:23:12 +01:00
b864272458 UnsavedChangesDialog: Fixed a crash when we trying to switch a profile after importing of the 3mf
+ Fixed typo in "__linux__"
2020-12-04 17:16:08 +01:00
39844241ec Merge branch 'master' of https://github.com/prusa3d/PrusaSlicer 2020-12-04 15:36:41 +01:00
856eadb73f Enabled tech ENABLE_RENDER_STATISTICS 2020-12-04 15:36:30 +01:00
9d4c5ea27a Delete whole object, when all instances are selected. Fix for #5191 2020-12-04 14:19:51 +01:00
10a165b338 Merge branch 'master' of https://github.com/prusa3d/PrusaSlicer 2020-12-04 14:19:08 +01:00
b694e697b8 GCodeViewer - Disable Tab and collapse sidebar events 2020-12-04 14:18:54 +01:00
b18d01f6ff Limiting the resolution of G-code export for retract/deretract feedrate
to three digits.
Fixes excessive precision in gcode? #5362
2020-12-04 13:37:36 +01:00
4a6dd55b27 Fixed missing include 2020-12-04 13:37:36 +01:00
bc5dfba54e Show the PrintHostDialog on the same display as an application window. Probably, fix for #5044 2020-12-04 13:34:44 +01:00
8c173db0ed Fixed missing include (OSX - clang specific) 2020-12-04 13:17:30 +01:00
c16221dc8c Localization: Fixed some phrases. Updated POT and NL dictionary. 2020-12-04 13:08:48 +01:00
d6b880f362 Fix of cooling preset hints 2020-12-04 13:05:25 +01:00
f7cc738d63 Fixed conflits after merge with master 2020-12-04 12:33:44 +01:00
36efbb8295 #5080 - Reworked logic for automatic selection of current view type in preview 2020-12-04 12:31:50 +01:00
4f0811c67c Merge branch 'master' of https://github.com/Prusa3d/PrusaSlicer 2020-12-04 11:53:29 +01:00
0373c646f1 Ramp up layer cooling fan over X layers #848
Fan speed will be ramped up linearly from zero at layer disable_fan_first_layers
to maximum at layer full_fan_speed_layer. full_fan_speed_layer will be
ignored if lower than disable_fan_first_layers, in which case
the fan will be running at maximum allowed speed at layer
disable_fan_first_layers + 1.;

WIP: The cooling PresetHints are likely not finalized yet.
2020-12-04 11:53:02 +01:00
8c6fff1e19 1) Storing the physical_printer_settings_id into the 3MF, AMF, GCode.
2) Activating the physical_printer_settings_id when loading from 3MF, AMF, GCode.
   The physical printer is only activated if it references the printer_settings_id
   loaded from the same file.
3) When loading the presets from 3MF, AMF, GCode, the "external" profiles
   are no more created for profiles which differ from the local profiles
   the loaded profiles reference. Instead, the referenced profile is activated
   and modified with the loaded preset. If the referenced profile does not
   exist, but the profile refers to a system profile with the "inherits"
   fileds, the system profile is loaded and modified instead.
   This works for all profiles with the exception of multi-extruder
   printer with multiple filament profiles modified. In that case
   the first modified filament profile will be loaded as modified,
   while the other modified profiles will be loaded as "external".

This should fix
Physical printer + 3mf file, wrong preset used to generate gcode #5178
and possibly
https://github.com/prusa3d/PrusaSlicer/issues/5272
2020-12-04 10:48:51 +01:00
e51d8b6cec Merge remote-tracking branch 'origin/et_animations' 2020-12-04 10:33:09 +01:00
d8ae92a17f Merge branch 'master' of https://github.com/prusa3d/PrusaSlicer into et_animations 2020-12-04 10:27:54 +01:00
cac0080ede Import all valid files when dragging and dropping a set of files on the application 2020-12-04 09:15:55 +01:00
ad4675ba09 Fixed build on MAC 2020-12-03 15:40:52 +01:00
fb0b3bd982 Fixed conflicts after merge with master 2020-12-03 15:27:34 +01:00
1b0829307d NotificationManager -> Separate notification update from its render to reduce the amount of scene refresh 2020-12-03 15:12:32 +01:00
5d4bc92096 Merge branch 'tm_fix_split_arrange_crash'
fixes #2209
2020-12-03 15:00:06 +01:00
ba155e88d7 Fix crash when splitting objects
fixes partially #2209
2020-12-03 14:58:56 +01:00
c6090fc69e Fix arrange with malformed contours 2020-12-03 14:58:09 +01:00
53d0166eec Revert "Fix of Proxy secured print host URL. Special character on password #4187"
The whole URL line was incorrectly escaped including the http:// prefix,
which is not correct.
This reverts commit 1b720dbc3d.
2020-12-03 14:20:04 +01:00
fcae337e31 Fix of Unexpected Behavior @ Application Open and When GCODE is Generated #5254
Icon not loaded from the exe on Windows.
2020-12-03 14:14:40 +01:00
f02e2759e3 Merge branch 'tm_arrange_bugfixes' 2020-12-03 14:09:55 +01:00