ce4b5c5252
Merge branch 'master' of https://github.com/prusa3d/Slic3r into time_estimate
2018-02-23 08:56:39 +01:00
c3d7be5994
Merge remote-tracking branch 'remotes/origin/3mf_io'
2018-02-22 18:57:07 +01:00
acce8dbff6
A workaround of the dreaded Intel HD Graphics driver issue at least
...
on the laptop of @roesel.
fixes https://github.com/prusa3d/Slic3r/issues/672
The Intel HD Graphics hangs on the glFinish() call for some reason
with one particular graphics driver revision. Also the glFinish() call
was superfluous and it only may have had negative effect over the performance.
Both glFinish() and glFlush() were removed for performance reasons
where they were not needed, see
https://www.khronos.org/opengl/wiki/Common_Mistakes
2018-02-22 18:56:37 +01:00
30ca38793e
Merge branch 'master' of https://github.com/prusa3d/Slic3r into time_estimate
2018-02-22 15:32:13 +01:00
52eb6f6bcf
Remove .zip from file extension on import to avoid having it added again and again when exporting
2018-02-22 15:27:32 +01:00
d17229efd5
Gyroid infill - minor correction for standard-conforming compilers
2018-02-22 12:00:24 +01:00
d59bb027eb
Gyroid infill type ( #733 )
...
Gyroid infill type.
2018-02-22 09:56:05 +01:00
662ea15c23
3rd attempt to fix JIRA SPE-22 (wrong file export on MAC)
2018-02-20 11:33:38 +01:00
e13a9adff2
2nd attempt to fix JIRA SPE-22 (wrong file export on MAC)
2018-02-20 11:10:54 +01:00
4d727263c5
Merge branch 'master' of https://github.com/prusa3d/Slic3r into time_estimate
2018-02-20 08:40:28 +01:00
eeada56c1f
1st attempt to fix JIRA SPE-22 (wrong file export on MAC)
2018-02-19 15:33:01 +01:00
d4f1ed0036
Fixed crash while exporting MultiMaterial
2018-02-19 13:46:36 +01:00
7375f6a6f5
Fixed camera shifting after generating gcode
2018-02-19 11:28:56 +01:00
59bda19f3e
Merge branch 'master' of https://github.com/prusa3d/Slic3r into time_estimate
2018-02-19 11:20:28 +01:00
ac904b2731
Error messages in parsing variables ( #722 )
...
Making error messages more clear when a vector or scalar is found in macro parsing, and the other type is expected.
2018-02-16 17:27:50 +01:00
8dd5fe83fc
Humbly re-added the BedShapeDialog.pm. Even though we have a C++
...
implementation now, the Perl BedShapeDialog.pm is used by the wizard.
2018-02-16 17:20:34 +01:00
7436d58045
Merge remote-tracking branch 'origin/gui_translate_to_cpp'
2018-02-16 11:38:11 +01:00
53006384d5
Fixed converting of Unicode codepoint (\uXXXX) into a character in Perl.
2018-02-16 10:29:28 +01:00
1167458acd
Fixed converting of Unicode codepoint (\uXXXX) into a character in Perl.
2018-02-16 09:38:03 +01:00
66b6447fc1
Merge branch 'master' of https://github.com/prusa3d/Slic3r into time_estimate
2018-02-16 08:45:38 +01:00
4ee620b57d
Fixed Perl dependencies after some obsolete modules were removed.
2018-02-15 18:41:37 +01:00
f876946358
Merge remote-tracking branch 'origin/gui_translate_to_cpp'
2018-02-15 18:32:51 +01:00
7014902341
Updated *.po & *.mo files for EN & CS
2018-02-15 18:30:48 +01:00
39100068c1
Removed the Perl Tab & BedDialog as they were replaced by their C++
...
counterparts.
2018-02-15 18:16:19 +01:00
f1840a52db
Merged the C++ port of the GUI Tabs / OptionGroup / Option classes
...
by @YuSanka, thanks @lordofhyphens for the initial port
of the OptionGroup / Option.
2018-02-15 18:13:37 +01:00
59cee4a3aa
Thanks @stelgenhof Corrected units of measure that had exponents displayed with caret.
2018-02-15 18:06:37 +01:00
e0933786e3
Marked string used at localization.
...
* Correct save changed color
2018-02-15 17:30:33 +01:00
b695089bc4
Merge remote-tracking branch 'remotes/origin/3mf_io'
2018-02-15 17:02:47 +01:00
1fa3ffbf83
Fixed a bug, when a color selection popped up when clicking
...
on the print or printer combo box icon.
2018-02-15 16:41:26 +01:00
4a35fd655c
Disable some of the G-code preview controls for the old 3D path preview,
...
re-enable them when the G-code preview is ready.
Resurrected the old logic to automatically switch to the tool preview
for a multi-material print, and to switch automatically to the feature
preview for a single material print.
2018-02-15 16:30:35 +01:00
f9cdda7bfd
Delayed loading of the opengl texture for the G-code preview legend,
...
as the opengl context may not be ready on some platforms (Linux)
at the time the window gets its focus for the first time.
Changed the G-code preview invalidation to trigger when the print
gets invalidated. At that time the 3D path preview switches to the old
preview, if there is anything valid left.
2018-02-15 14:37:53 +01:00
b5bdb46268
Added logging of the G-code export.
2018-02-14 22:25:09 +01:00
7f51b07f69
First take on restoring the old 3D path preview before the G-code preview is ready
2018-02-14 21:59:33 +01:00
ff3ae40aeb
Fixed compilation issues caused by the previous commits
2018-02-14 21:57:46 +01:00
2caba92623
GCode/PreviewData.cpp,hpp has been split from GCode/Analyzer.cpp,hpp
2018-02-14 20:38:03 +01:00
b1f5e7e8fa
Removed the GCodePreviewData from the Print class, it does not belong here,
...
as the GCode is generated outside of the Print class.
Exported the GCodePreviewData as GCode::PreviewData to Perl.
When exporting the G-code with a command line Slic3r,
the GCodeAnalyzer is now supressed for performance reasons.
Removed obsolete Perl module Slic3r::GUI::Plater::3DToolpaths.
2018-02-14 20:35:59 +01:00
3a6436f6f0
Split the GCodePreviewData from the GCodeAnalyzer,
...
as in the next step the GCodePreviewData will be exported to Perl.
2018-02-14 18:42:09 +01:00
dcc667cdc7
AMF I/O - Fixed error messages
2018-02-14 15:52:39 +01:00
f5f27859e0
AMF I/O - Embedded config data + zip formatting
2018-02-14 14:30:03 +01:00
f38e0f2b4f
Merge branch 'gcode_preview'
2018-02-14 13:29:57 +01:00
6e80a9111c
Reworked the plater UI messages to standard wxWidgets wxCommandEvent
...
messages to support receiving status line updates from the C++ code.
2018-02-13 18:31:34 +01:00
6cf8264362
Re-enabled $combochecklist_features->UseAltPopupWindow(), without this
...
line the combo box popup was not reacting to mouse events on Windows 10.
2018-02-13 17:46:23 +01:00
39fae3777c
Marked all informative strings by macros _L and _LU8.
2018-02-13 16:05:53 +01:00
bacb36eb10
3mf - Fixed include for Linux build
2018-02-13 15:33:45 +01:00
8885f5e344
3mf import/export of config data
2018-02-13 15:19:55 +01:00
030fc9c320
Merge branch 'master' into gcode_preview
2018-02-13 14:55:54 +01:00
752d089814
Fixed Issue #478
2018-02-13 13:39:20 +01:00
f4522cd2fc
GCode Preview - Customizable extrusion role colors by editing 3DPreview.pm
2018-02-13 13:16:23 +01:00
a5e48cdf4d
Merge branch 'master' of https://github.com/prusa3d/Slic3r
2018-02-13 11:19:34 +01:00
e7f05f8516
Fix of "Crash while trying to slice with a raft" #686
...
This was an issue specific to multi-material print with raft
and no support.
2018-02-13 11:18:58 +01:00