Joseph Lenox
7ddbd092f6
added win32 build link to readme from bintray
2016-06-30 21:14:22 -05:00
Joseph Lenox
849b232882
Merge pull request #3355 from lordofhyphens/gcode_speedup
...
Fix of git #3293 More efficient GCode export
2016-06-30 08:17:53 -05:00
Joseph Lenox
c09da450f6
Merge pull request #2779 from lordofhyphens/infill-combine
...
Infill combine, fix #1783
2016-06-29 23:08:39 -05:00
Joseph Lenox
2ff9532f43
Don't combine more layers than you have nozzle.
2016-06-29 23:02:30 -05:00
Joseph Lenox
d1f6cdf55f
found the right spot for infill_every_layers.
2016-06-29 22:35:02 -05:00
Joseph Lenox
86e1f2fb11
Small change to actually infill every layer. Should fix #1783 , but there's side effects in that there's no check against the nozzle size.
...
Proper check would be to reduce infill_every_layers to the closest integer multiple below the nozzle size.
I can't find the tooltip text either to note the possible overextrusion problem.
2016-06-29 21:08:57 -05:00
Joseph Lenox
e32635cddf
Merge pull request #3386 from lordofhyphens/fix-3126-spiral-vase-infill
...
infill_only_where_needed is incompatible with spiral_vase: enforced.
2016-06-29 19:32:08 -05:00
Joseph Lenox
f56799e9d5
infill_only_where_needed is incompatible with spiral_vase, enforced.
...
Also ensured that support is disabled if spiral_vase is on.
Added a secondary check to make sure that clip_fill_surfaces does not run if we're in spiral_vase.
2016-06-29 19:30:21 -05:00
Joseph Lenox
cb72967fd8
Merge pull request #3373 from lordofhyphens/smoothie-flavor
...
Adds Smoothieware flavor to Gcode
2016-06-23 19:13:26 -05:00
Joseph Lenox
0673389009
Adds Smoothieware flavor to Gcode, to avoid some weirdness in the new motion controls.
...
Avoids resetting extrusion axis after firmware retract (still resets after unretract)
with smoothieware.
2016-06-23 19:10:36 -05:00
Alessandro Ranellucci
36231347f9
Partially ported Format::STL and Format::OBJ to XS
2016-06-20 21:02:41 +02:00
bubnikv
5f521b24c4
Fix of git #3293 : More efficient GCode export
...
This fixes two problems of repeatedly copying data from the C++ layer
to perl, by factoring the copying out of an inner loop.
2016-06-02 20:48:56 -05:00
Joseph Lenox
2230652218
Added simple JSCAD modifier helper
...
Simple cube oriented around the center with a parametric interface. Just copy/paste into openjscad.org and hit shift+enter.
2016-06-02 19:18:29 -05:00
Joseph Lenox
2e1a3eaf16
Merge pull request #3353 from alexrj/feature-3308
...
Post process script for fan kickstart
2016-06-02 11:44:48 -05:00
Joseph Lenox
5e17746427
Post process script for fan kickstart
...
Addresses #3308
2016-06-02 11:43:34 -05:00
Joseph Lenox
7b334bf2e5
Merge pull request #3351 from VanessaE/patch-1
...
Mention anti-ooze sacrificial skirt feature.
2016-06-01 16:48:48 -05:00
Vanessa Ezekowitz
39dfee79c7
Mention anti-ooze sacrificial skirt feature.
2016-06-01 17:47:54 -04:00
Joseph Lenox
08a2775dbd
Update solid_layers.scad
...
Oops, left a hardcoded 0.3 in. Fixed.
2016-05-31 19:14:20 -05:00
Alessandro Ranellucci
2a8c139ca4
Add XYZ homing button to printer manual control
2016-05-31 15:02:56 +02:00
Alessandro Ranellucci
30f6e4b16f
Bugfix: homing was not correctly saved
2016-05-31 15:02:55 +02:00
Joseph Lenox
00ab6af046
Merge pull request #3346 from lordofhyphens/feature-1129_899
...
Added a short OpenSCAD utility
2016-05-29 11:01:38 -05:00
Joseph Lenox
ea9b10c764
Added a short OpenSCAD description to aid in the creation of simple modifier meshes that describe a change every N layers
2016-05-29 10:56:21 -05:00
Alessandro Ranellucci
9e8022f6f6
More refactoring to medial axis and gap fill, more robust
2016-05-20 17:03:57 +02:00
Joseph Lenox
b068616366
Merge pull request #3120 from Vicious-one/patch-1
...
Fix for #3069
2016-05-18 23:01:19 -05:00
Joseph Lenox
f2e8c6f3bd
Merge pull request #3262 from hyperair/fix-autospeed-F0-moves
...
Don't use equality comparisons for floats
2016-05-18 22:07:34 -05:00
Joseph Lenox
3d34bed0e3
Merge pull request #3326 from hyperair/fix-cooldown-verbose
...
Fix cooling not working if !gcode_comments
2016-05-18 21:42:29 -05:00
Joseph Lenox
6122056517
Merge pull request #3330 from prusa3d/release_candidate_1_3
...
allow to hide the "controller" tab
2016-05-18 21:31:27 -05:00
bubnikv
d8be976356
The "controller" tab and the settings of the USB/serial connection was
...
made configurable. Now one may hide the "controller" tab and the USB/serial
connection configuration from the preferences. This is useful for someone,
who never connects his printer to the computer by a cable.
version_1.30.0
2016-05-16 23:57:53 +02:00
Chow Loong Jin
209b919fe6
Fix cooling not working if !gcode_comments
...
The cooling markers were being passed into GCodeWriter::set_speed() as a
comment which were being ignored if gcode_comments was false.
Fixes : #3325
2016-05-12 23:35:39 +08:00
Joseph Lenox
510ca9f9e2
Merge pull request #3303 from hyperair/fix-cooldown
...
Changes to properly detect extrusion moves for "layer cooldown" slowdowns and properly calculate time required to complete moves.
2016-04-12 12:50:43 -05:00
Chow Loong Jin
3d73fbf5fd
Use float for elapsed_time
...
When accumulating elapsed_time from many moves that take less than 1
second, elapsed_time does not get incremented because (unsigned int)0.9
= 0.
2016-04-13 01:13:42 +08:00
Chow Loong Jin
4c622c504f
Account for travel moves in elapsed_time
2016-04-13 01:13:39 +08:00
Alessandro Ranellucci
a54edf8fbc
Support static linking of the Boost libs
2016-04-11 22:14:12 +02:00
Alessandro Ranellucci
f66585c250
Fixed compilation on OS X
2016-04-11 12:04:54 +02:00
Chow Loong Jin
a94402a8a2
Update tests for new GCode style and markers
2016-04-10 16:40:18 +08:00
Chow Loong Jin
2e2e4e68d3
Fix layer time slowdown
...
The recent GCode writer changes which put the speed changes on a line of
their own have caused the layer time slowdown to be ignored by the regex
in CoolingBuffer.pm.
Fixes : #3134
2016-04-10 16:10:18 +08:00
Alessandro Ranellucci
82b07a02fa
One more year
2016-04-09 19:11:50 +02:00
Alessandro Ranellucci
f006e66549
Refactored calls to Wx::Bitmap->new
2016-04-09 19:10:57 +02:00
Alessandro Ranellucci
9576973b57
Tune gap fill and thin walls to less extreme values
2016-03-26 18:37:37 +01:00
Alessandro Ranellucci
36d5272f05
Filter gap fill using length relative to the actual width. #2781
2016-03-26 18:10:17 +01:00
Alessandro Ranellucci
fd4f5e40ca
Actually add CONNTRIBUTING.md, not included in f5a5eb37362bc6416949bf336cc92e8860e9e887
2016-03-26 12:22:34 +01:00
Alessandro Ranellucci
660b56acb5
Fixed type error
2016-03-26 12:21:54 +01:00
Alessandro Ranellucci
f5a5eb3736
Moved CONTRIBUTING.md to .github/
2016-03-26 10:57:35 +01:00
Alessandro Ranellucci
7041bb5bd9
Rewritten the medial axis algorithm, now more robust (don't just prune MAT from endpoints, but validate all single edges)
2016-03-26 01:45:08 +01:00
Joseph Lenox
e4147a6bed
Merge pull request #3284 from lordofhyphens/gh2
...
Update ISSUE_TEMPLATE.md to hopefully make issues less free-form.
2016-03-20 13:46:18 -05:00
Joseph Lenox
bfa12e5a66
Update ISSUE_TEMPLATE.md
2016-03-20 13:44:09 -05:00
Alessandro Ranellucci
b744947711
Missing #include
2016-03-20 01:50:27 +01:00
Alessandro Ranellucci
412a862677
Fixed dragging in 3D plater having some glitches with multipart objects
2016-03-19 22:31:07 +01:00
Alessandro Ranellucci
dd879c3ef2
When loading an AMF file having multiple objects that look like multiple parts of a single object, prompt user and ask how to consider it. #2970
...
Conflicts:
lib/Slic3r/Model.pm
2016-03-19 22:24:20 +01:00
Alessandro Ranellucci
dfb1ec99ac
Variable-width thin walls. Yay!
2016-03-19 19:40:11 +01:00