<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
		<id>http://wiki.mattercontrol.com/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Tanderson</id>
		<title>MatterControl Manual - User contributions [en]</title>
		<link rel="self" type="application/atom+xml" href="http://wiki.mattercontrol.com/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Tanderson"/>
		<link rel="alternate" type="text/html" href="http://wiki.mattercontrol.com/Special:Contributions/Tanderson"/>
		<updated>2026-05-04T23:38:23Z</updated>
		<subtitle>User contributions</subtitle>
		<generator>MediaWiki 1.26.0</generator>

	<entry>
		<id>http://wiki.mattercontrol.com/index.php?title=Development/Running_on_Linux&amp;diff=4226</id>
		<title>Development/Running on Linux</title>
		<link rel="alternate" type="text/html" href="http://wiki.mattercontrol.com/index.php?title=Development/Running_on_Linux&amp;diff=4226"/>
				<updated>2020-01-02T19:36:16Z</updated>
		
		<summary type="html">&lt;p&gt;Tanderson: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Migrated|linux}}&lt;br /&gt;
&lt;br /&gt;
You can either download the official .deb package from [http://www.mattercontrol.com/#jumpMatterControlDownloads MatterControl.com] or [[Building MatterControl|build from source]]. There are also user contributed packages for [https://aur.archlinux.org/packages/mattercontrol/ Arch] and [https://bugs.gentoo.org/show_bug.cgi?id=545340 Gentoo].&lt;br /&gt;
&lt;br /&gt;
== Installing Mono ==&lt;br /&gt;
&lt;br /&gt;
MatterControl works best with Mono 4.4. Earlier versions are not supported. There is an issue with Mono 4.6 and later that prevents the cloud services from establishing a full connection. The [[Cloud/Connection_Display | connection indicator]] will remain yellow. All other features are fully functional.&lt;br /&gt;
&lt;br /&gt;
If you are on an older version of Ubuntu (before Xenial 16.04 LTS) or Debian that does not have the latest Mono then you can add the official Xamarin repository to get up to date. The official MatterControl download currently comes with a shell script to do this automatically on Debian based distros.&lt;br /&gt;
&lt;br /&gt;
    $ sudo apt-get install curl&lt;br /&gt;
    $ curl -s &amp;lt;nowiki&amp;gt;http://download.mono-project.com/repo/xamarin.gpg&amp;lt;/nowiki&amp;gt; | sudo apt-key add -&lt;br /&gt;
    $ echo &amp;quot;deb &amp;lt;nowiki&amp;gt;http://download.mono-project.com/repo/debian wheezy/snapshots/4.4.2 main&amp;lt;/nowiki&amp;gt;&amp;quot; | sudo tee /etc/apt/sources.list.d/xamarin.list&lt;br /&gt;
    $ sudo apt-get update&lt;br /&gt;
    $ sudo apt-get -y install mono-complete&lt;br /&gt;
&lt;br /&gt;
There are also instructions for other distributions on the [http://www.mono-project.com/download/#download-lin Mono website].&lt;br /&gt;
&lt;br /&gt;
== Serial Port Permissions ==&lt;br /&gt;
&lt;br /&gt;
In order for MatterControl to access the serial ports, you will need to give your user the appropriate permissions. On Debian or Fedora based distros, add yourself to the dialout group. On Arch, add yourself the the uucp and lock groups instead.&lt;br /&gt;
&lt;br /&gt;
    $ gpasswd -a $USER dialout&lt;br /&gt;
&lt;br /&gt;
You will then need to logout and log back in for the changes to take effect.&lt;br /&gt;
&lt;br /&gt;
== Assigning Serial Ports ==&lt;br /&gt;
&lt;br /&gt;
On Linux, serial port assignments can change whenever a printer is connected or disconnected. MatterControl cannot tell which printer is connected to which serial port. You can setup a udev rule to permanently assign a unique port to your printer.&lt;br /&gt;
&lt;br /&gt;
Do &amp;lt;code&amp;gt;ls /dev/tty*&amp;lt;/code&amp;gt; before and after connecting your printer to find out which port it is assigned to. Printers will show up as either &amp;lt;code&amp;gt;/dev/ttyACM#&amp;lt;/code&amp;gt; or &amp;lt;code&amp;gt;/dev/ttyUSB#&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
Use &amp;lt;code&amp;gt;udevadm&amp;lt;/code&amp;gt; to get the serial number (UUID) of the USB device. This is a unique 20 digit hexadecimal value.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;$ udevadm info --attribute-walk -n /dev/ttyACM0 | grep &amp;quot;serial&amp;quot;&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Some printers will not report a serial number. In this case, you will have to use other attributes to identify it such as the vendor ID (idVendor) and the product ID (idProduct).&lt;br /&gt;
&lt;br /&gt;
Create a file &amp;lt;code&amp;gt;/etc/udev/rules.d/97-3dprinters.rules&amp;lt;/code&amp;gt;. Here is an example with rules for two printers.&lt;br /&gt;
&lt;br /&gt;
    SUBSYSTEM==&amp;quot;tty&amp;quot;, ATTRS{serial}==&amp;quot;6403237383335190E0F1&amp;quot;, GROUP=&amp;quot;uucp&amp;quot;, MODE=&amp;quot;0660&amp;quot;, SYMLINK+=&amp;quot;tty-taz&amp;quot;&lt;br /&gt;
    SUBSYSTEM==&amp;quot;tty&amp;quot;, ATTRS{idVendor}==&amp;quot;16d0&amp;quot;, ATTRS{idProduct}==&amp;quot;076b&amp;quot;, GROUP=&amp;quot;uucp&amp;quot;, MODE=&amp;quot;0660&amp;quot;, SYMLINK+=&amp;quot;tty-kosselpro&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Fill in either the serial number or vender and product IDs based on the information you obtained earlier. Make sure `GROUP` is set to the same group ownership as the rest of your serial ports. This is usually `dialout` on Debian or `uucp` on Arch. You can check by doing &amp;lt;code&amp;gt;ls -l /dev/ttyACM*&amp;lt;/code&amp;gt;. Lastly, give your printer a unique name for the `SYMLINK`. This name must start with `tty` or it will not show up in the list in MatterControl.&lt;br /&gt;
&lt;br /&gt;
The next time you connect the printer, a symlink will automatically be created that points to the correct serial device. You can now edit the printer in MatterControl and choose the new device.&lt;br /&gt;
&lt;br /&gt;
== Adding Proprietary Plugins ==&lt;br /&gt;
&lt;br /&gt;
If you are building from source, MatterControl will not come with certain proprietary components such as the Cloud Services or Print Notifications plugins. To get these, you will need to download the official release from [http://www.mattercontrol.com/#jumpMatterControlDownloads mattercontrol.com] and copy the following `.dll`, `.dll.config` and `.dll.mdb` files to your MatterControl directory.&lt;br /&gt;
&lt;br /&gt;
    CloudServices.dll&lt;br /&gt;
    CloudServices.dll.config&lt;br /&gt;
    CloudServices.dll.mdb&lt;br /&gt;
    MatterControlAuth.dll&lt;br /&gt;
    MatterControlAuth.dll.config&lt;br /&gt;
    MatterControlAuth.dll.mdb&lt;br /&gt;
    Mono.Nat.dll&lt;br /&gt;
    Mono.Nat.dll.mdb&lt;br /&gt;
    PictureCreator.dll&lt;br /&gt;
    PictureCreator.dll.config&lt;br /&gt;
    PictureCreator.dll.mdb&lt;br /&gt;
    PrintNotifications.dll&lt;br /&gt;
    PrintNotifications.dll.config&lt;br /&gt;
    PrintNotifications.dll.mdb&lt;br /&gt;
    X3GDriver.dll&lt;br /&gt;
    X3GDriver.dll.config&lt;br /&gt;
    X3GDriver.dll.mdb&lt;br /&gt;
&lt;br /&gt;
== Using Other Slice Engines ==&lt;br /&gt;
&lt;br /&gt;
MatterControl's built in slice engine is MatterSlice, which is a port of CuraEngine to C#. You can also choose other slicing engines. The official release comes with Slic3r, but when building from source or using unofficial packages you will have to install the other engines separately and make symlinks in the MatterControl directory. For example on Arch, make a symlink in &amp;lt;code&amp;gt;/usr/lib/mattercontrol/Slic3r/bin&amp;lt;/code&amp;gt; to the Slic3r executable.&lt;br /&gt;
&lt;br /&gt;
    # mkdir /usr/lib/mattercontrol/Slic3r&lt;br /&gt;
    # mkdir /usr/lib/mattercontrol/Slic3r/bin&lt;br /&gt;
    # ln -s /usr/bin/slic3r /usr/lib/mattercontrol/Slic3r/bin/slic3r&lt;br /&gt;
&lt;br /&gt;
To use CuraEngine, do&lt;br /&gt;
&lt;br /&gt;
    # ln -s /usr/share/cura/CuraEngine /usr/lib/mattercontrol/CuraEngine.exe&lt;br /&gt;
&lt;br /&gt;
Yes, it expects the `.exe` extension even on Linux.&lt;br /&gt;
&lt;br /&gt;
== Raspberry Pi ==&lt;br /&gt;
&lt;br /&gt;
The regular Linux version of MatterControl will run on the Pi as long as you have the [https://www.raspberrypi.org/blog/another-new-raspbian-release/ experimental OpenGL drivers] enabled. To do this, run &amp;lt;code&amp;gt;raspi-config&amp;lt;/code&amp;gt; and go to Advanced Options &amp;gt; GL Driver.&lt;br /&gt;
&lt;br /&gt;
If you have the Raspberry Pi touchscreen, remember that you can switch MatterControl into [[OPTIONS/Display_Mode|Touchscreen Mode]].&lt;br /&gt;
&lt;br /&gt;
[[Category:Linux]]&lt;br /&gt;
[[Category:Development]]&lt;br /&gt;
[[Category:Installation]]&lt;/div&gt;</summary>
		<author><name>Tanderson</name></author>	</entry>

	<entry>
		<id>http://wiki.mattercontrol.com/index.php?title=SETTINGS/Filament/Retraction/On_Tool_Change/Extra_Length_After_Tool_Change&amp;diff=4224</id>
		<title>SETTINGS/Filament/Retraction/On Tool Change/Extra Length After Tool Change</title>
		<link rel="alternate" type="text/html" href="http://wiki.mattercontrol.com/index.php?title=SETTINGS/Filament/Retraction/On_Tool_Change/Extra_Length_After_Tool_Change&amp;diff=4224"/>
				<updated>2019-06-01T00:24:19Z</updated>
		
		<summary type="html">&lt;p&gt;Tanderson: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Migrated|slice-settings/filament/retraction#extra-length-after-tool-change}}&lt;br /&gt;
{{Slice Settings&lt;br /&gt;
&lt;br /&gt;
|Length of extra filament to extrude after a complete tool change (in addition to the re-extrusion of the tool change retraction distance).|*millimeters (mm)|&lt;br /&gt;
&lt;br /&gt;
=== mm ===&lt;br /&gt;
&lt;br /&gt;
In this example 0.4 mm of filament will be extruded after a tool change completes.}}&lt;/div&gt;</summary>
		<author><name>Tanderson</name></author>	</entry>

	<entry>
		<id>http://wiki.mattercontrol.com/index.php?title=SETTINGS/Filament/Retraction/On_Tool_Change/Length_on_Tool_Change&amp;diff=4223</id>
		<title>SETTINGS/Filament/Retraction/On Tool Change/Length on Tool Change</title>
		<link rel="alternate" type="text/html" href="http://wiki.mattercontrol.com/index.php?title=SETTINGS/Filament/Retraction/On_Tool_Change/Length_on_Tool_Change&amp;diff=4223"/>
				<updated>2019-06-01T00:17:33Z</updated>
		
		<summary type="html">&lt;p&gt;Tanderson: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Migrated|slice-settings/filament/retraction#length-on-tool-change}}&lt;br /&gt;
{{Slice Settings&lt;br /&gt;
&lt;br /&gt;
|When using [[Multi-Extrusion|multiple extruders]], the distance filament will reverse before changing to a different extruder.|*millimeters (mm)&lt;br /&gt;
&lt;br /&gt;
Can be zero.|&lt;br /&gt;
&lt;br /&gt;
=== mm ===&lt;br /&gt;
&lt;br /&gt;
In this example, filament will reverse 16.5 mm before changing to a different extruder.}}&lt;/div&gt;</summary>
		<author><name>Tanderson</name></author>	</entry>

	<entry>
		<id>http://wiki.mattercontrol.com/index.php?title=Release_Notes&amp;diff=4222</id>
		<title>Release Notes</title>
		<link rel="alternate" type="text/html" href="http://wiki.mattercontrol.com/index.php?title=Release_Notes&amp;diff=4222"/>
				<updated>2019-05-30T17:30:33Z</updated>
		
		<summary type="html">&lt;p&gt;Tanderson: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Migrated|release-notes}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;float: right;&amp;quot;&amp;gt;&lt;br /&gt;
__TOC__&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
This page contains a brief description of each new release of MatterControl. The version numbers shown on this page are for the official [[Downloads|MatterHackers releases]]. &lt;br /&gt;
&lt;br /&gt;
== 2.19.2 ==&lt;br /&gt;
&lt;br /&gt;
'''Release Date:''' February, 6, 2019&lt;br /&gt;
*[https://mattercontrol.appspot.com/downloads/development/ag9zfm1hdHRlcmNvbnRyb2xyOwsSB1Byb2plY3QY6gcMCxINUHVibGljUmVsZWFzZRiAgICt8ISVCgwLEgZVcGxvYWQYgICA_ZPAggoM Windows Download]&lt;br /&gt;
*[Mac Download]&lt;br /&gt;
*[Linux Download]&lt;br /&gt;
=== Changes ===&lt;br /&gt;
&lt;br /&gt;
*Fixed bugs with exporting G-Code&lt;br /&gt;
*Improved flatten&lt;br /&gt;
*Improved Undo support&lt;br /&gt;
*Improved design history&lt;br /&gt;
&lt;br /&gt;
== 2.19.1 ==&lt;br /&gt;
&lt;br /&gt;
'''Release Date:''' January, 2, 2019&lt;br /&gt;
*[https://mattercontrol.appspot.com/downloads/development/ag9zfm1hdHRlcmNvbnRyb2xyOwsSB1Byb2plY3QY6gcMCxINUHVibGljUmVsZWFzZRiAgIC17KWBCgwLEgZVcGxvYWQYgICAzeeZlQoM Windows Download]&lt;br /&gt;
*[Mac Download]&lt;br /&gt;
*[Linux Download]&lt;br /&gt;
=== Changes ===&lt;br /&gt;
&lt;br /&gt;
*Versioning: Moving to a (version).(year).(month) version number. Easier to read and more informative.&lt;br /&gt;
*Multi-printer control&lt;br /&gt;
*A single instance of MatterControl can now run multiple printers simultaneously&lt;br /&gt;
*New State-of-the-art Subtract, Combine and Intersection&lt;br /&gt;
*We now start up with a 'Feature Tour' to help new users find their way&lt;br /&gt;
&lt;br /&gt;
== 2.0.0 ==&lt;br /&gt;
&lt;br /&gt;
'''Release Date:''' November, 19, 2018&lt;br /&gt;
*[https://mattercontrol.appspot.com/downloads/development/ag9zfm1hdHRlcmNvbnRyb2xyOwsSB1Byb2plY3QY6gcMCxINUHVibGljUmVsZWFzZRiAgIC1rPiMCgwLEgZVcGxvYWQYgICAtezqjgoM Windows Download]&lt;br /&gt;
*[Mac Download]&lt;br /&gt;
*[Linux Download]&lt;br /&gt;
=== Changes ===&lt;br /&gt;
&lt;br /&gt;
*Added Integrated Design Tools&lt;br /&gt;
&lt;br /&gt;
== 1.7.5 ==&lt;br /&gt;
&lt;br /&gt;
'''Release Date:''' August, 14, 2017&lt;br /&gt;
*[https://mattercontrol.appspot.com/downloads/development/ag9zfm1hdHRlcmNvbnRyb2xyOwsSB1Byb2plY3QY6gcMCxINUHVibGljUmVsZWFzZRiAgICGgYiLCgwLEgZVcGxvYWQYgICAps6mhwoM Windows Download]&lt;br /&gt;
*[Mac Download]&lt;br /&gt;
*[Linux Download]&lt;br /&gt;
=== Changes ===&lt;br /&gt;
&lt;br /&gt;
*Added filament selection into leveling wizard so we heat to printing temp before sampling.&lt;br /&gt;
&lt;br /&gt;
== 1.7.4 ==&lt;br /&gt;
&lt;br /&gt;
'''Release Date:''' July, 14, 2017&lt;br /&gt;
*[https://mattercontrol.appspot.com/downloads/development/ag9zfm1hdHRlcmNvbnRyb2xyOwsSB1Byb2plY3QY6gcMCxINUHVibGljUmVsZWFzZRiAgID64sGDCgwLEgZVcGxvYWQYgICA-vf2jwkM Windows Download]&lt;br /&gt;
*[Mac Download]&lt;br /&gt;
*[Linux Download]&lt;br /&gt;
&lt;br /&gt;
=== Changes ===&lt;br /&gt;
&lt;br /&gt;
*Put in the ability to ramp the extra extrusion after move to compensate for oozing while moving.&lt;br /&gt;
&lt;br /&gt;
== 1.7.3 ==&lt;br /&gt;
&lt;br /&gt;
'''Release Date:''' July, 6, 2017&lt;br /&gt;
*[https://mattercontrol.appspot.com/downloads/development/ag9zfm1hdHRlcmNvbnRyb2xyOwsSB1Byb2plY3QY6gcMCxINUHVibGljUmVsZWFzZRiAgIDa26CGCgwLEgZVcGxvYWQYgICAutPtmQsM Windows Download]&lt;br /&gt;
*[Mac Download]&lt;br /&gt;
*[Linux Download]&lt;br /&gt;
&lt;br /&gt;
=== Changes ===&lt;br /&gt;
&lt;br /&gt;
*Created regex filters that can be applied to printer read and writes. Allows us to support more printers.&lt;br /&gt;
&lt;br /&gt;
== 1.7.2 ==&lt;br /&gt;
&lt;br /&gt;
'''Release Date:''' June, 19, 2017&lt;br /&gt;
*[https://mattercontrol.appspot.com/downloads/development/ag9zfm1hdHRlcmNvbnRyb2xyOwsSB1Byb2plY3QY6gcMCxINUHVibGljUmVsZWFzZRiAgIDamL2UCgwLEgZVcGxvYWQYgICA2v78gAoM Windows Download]&lt;br /&gt;
*[Mac Download]&lt;br /&gt;
*[Linux Download]&lt;br /&gt;
&lt;br /&gt;
=== Changes ===&lt;br /&gt;
&lt;br /&gt;
*Fixed bug in leveling for JumpStart printer&lt;br /&gt;
&lt;br /&gt;
== 1.7.1 ==&lt;br /&gt;
&lt;br /&gt;
'''Release Date:''' June, 11, 2017&lt;br /&gt;
*[https://mattercontrol.appspot.com/downloads/development/ag9zfm1hdHRlcmNvbnRyb2xyOwsSB1Byb2plY3QY6gcMCxINUHVibGljUmVsZWFzZRiAgICSxoqdCgwLEgZVcGxvYWQYgICAmsW_hQkM Windows Download]&lt;br /&gt;
*[Mac Download]&lt;br /&gt;
*[Linux Download]&lt;br /&gt;
&lt;br /&gt;
=== Changes ===&lt;br /&gt;
&lt;br /&gt;
*New mesh bed leveling option (3x3)&lt;br /&gt;
*Improved tool pathing while printing supports&lt;br /&gt;
*Improved wipe towers while printing support&lt;br /&gt;
*Improved extruder selection when more than 2 extruders available&lt;br /&gt;
*Fixed small over extrusion issues with some overhang tool paths&lt;br /&gt;
*Added support for filament run out sensor&lt;br /&gt;
*New SMS messages for pausing and filament run out&lt;br /&gt;
*Added support for automatic probing if sensor available&lt;br /&gt;
*Added Support for probing servo&lt;br /&gt;
*Improved translations&lt;br /&gt;
*General bug fixing&lt;br /&gt;
&lt;br /&gt;
== 1.7.0 ==&lt;br /&gt;
&lt;br /&gt;
'''Release Date:''' March 14, 2017&lt;br /&gt;
*[https://mattercontrol.appspot.com/downloads/development/ag9zfm1hdHRlcmNvbnRyb2xyOwsSB1Byb2plY3QY6gcMCxINUHVibGljUmVsZWFzZRiAgIDCgYuDCQwLEgZVcGxvYWQYgICA4ou_lwoM Windows Download]&lt;br /&gt;
*[https://mattercontrol.appspot.com/downloads/development/ag9zfm1hdHRlcmNvbnRyb2xyOwsSB1Byb2plY3QY7AcMCxINUHVibGljUmVsZWFzZRiAgICwjeuTCgwLEgZVcGxvYWQYgICAsN-jmgoM Mac Download]&lt;br /&gt;
*[https://mattercontrol.appspot.com/downloads/development/ag9zfm1hdHRlcmNvbnRyb2xyQQsSB1Byb2plY3QYgICAiOCSzAsMCxINUHVibGljUmVsZWFzZRiAgICgsdyLCgwLEgZVcGxvYWQYgICAoK3hngoM Linux Download]&lt;br /&gt;
&lt;br /&gt;
=== Changes ===&lt;br /&gt;
&lt;br /&gt;
*Significantly improved tool paths, much better printed parts&lt;br /&gt;
*Improved macro support&lt;br /&gt;
*Improved baby stepping&lt;br /&gt;
*Updated to latest avrdude for improved compatibility with some non-standard boards &lt;br /&gt;
*Improved support for network printing &lt;br /&gt;
*Touch screen mode now works on all platforms&lt;br /&gt;
*New printing screen in touch screen mode&lt;br /&gt;
*Better screen position saving and restoring&lt;br /&gt;
&lt;br /&gt;
==== New translations added ====&lt;br /&gt;
&lt;br /&gt;
*Čeština&lt;br /&gt;
*Dansk&lt;br /&gt;
*Italiano&lt;br /&gt;
*ελληνικά&lt;br /&gt;
*Norsk&lt;br /&gt;
*Русский&lt;br /&gt;
*Română&lt;br /&gt;
*Vlaams&lt;br /&gt;
&lt;br /&gt;
==== Updated existing translations ====&lt;br /&gt;
*English&lt;br /&gt;
*Deutsch&lt;br /&gt;
*Español&lt;br /&gt;
*Français&lt;br /&gt;
*Polski&lt;br /&gt;
*Türkçe&lt;br /&gt;
&lt;br /&gt;
=== Bug Fixes ===&lt;br /&gt;
&lt;br /&gt;
*Increased hardware error reporting&lt;br /&gt;
*Improvements to Repetier communications&lt;br /&gt;
&lt;br /&gt;
== 1.6.2 ==&lt;br /&gt;
&lt;br /&gt;
'''Release Date:''' January 18, 2017&lt;br /&gt;
*[https://mattercontrol.appspot.com/downloads/development/ag9zfm1hdHRlcmNvbnRyb2xyOwsSB1Byb2plY3QY6gcMCxINUHVibGljUmVsZWFzZRiAgIDM446ECgwLEgZVcGxvYWQYgICA3O2njgoM Windows Download]&lt;br /&gt;
*[https://mattercontrol.appspot.com/downloads/development/ag9zfm1hdHRlcmNvbnRyb2xyOwsSB1Byb2plY3QY7AcMCxINUHVibGljUmVsZWFzZRiAgIDQ7biQCgwLEgZVcGxvYWQYgICAsIyyiAoM Mac Download]&lt;br /&gt;
*[https://mattercontrol.appspot.com/downloads/development/ag9zfm1hdHRlcmNvbnRyb2xyQQsSB1Byb2plY3QYgICAiOCSzAsMCxINUHVibGljUmVsZWFzZRiAgICgpIGdCgwLEgZVcGxvYWQYgICAoKL6nwoM Linux Download]&lt;br /&gt;
*[https://github.com/MatterHackers/MatterControl/releases/tag/Releases%2F1.6.2b Source Code]&lt;br /&gt;
&lt;br /&gt;
=== Changes ===&lt;br /&gt;
&lt;br /&gt;
*All printing instructions now sent with checksum&lt;br /&gt;
*Improved macro scripting and macro execution&lt;br /&gt;
*Disconnect and Reconnect does not cancel a print (can still be recovered)&lt;br /&gt;
*Improvements to language for dialogs and menus&lt;br /&gt;
*Record recover count in history&lt;br /&gt;
*Added error messages when saving files fails&lt;br /&gt;
&lt;br /&gt;
=== Bug Fixes ===&lt;br /&gt;
&lt;br /&gt;
*Fixed a problem with controlling multiple extruders that shared temp&lt;br /&gt;
*Fixed problem when changing colors on some dialogs&lt;br /&gt;
*Improved Android stability&lt;br /&gt;
**Switched from HTTP client to WebRequest&lt;br /&gt;
**Improved Queue logic to be more MVC and eliminated crash&lt;br /&gt;
&lt;br /&gt;
== 1.6.1 ==&lt;br /&gt;
&lt;br /&gt;
'''Release Date:''' December 6, 2016&lt;br /&gt;
&lt;br /&gt;
*[https://mattercontrol.appspot.com/downloads/development/ag9zfm1hdHRlcmNvbnRyb2xyOwsSB1Byb2plY3QY6gcMCxINUHVibGljUmVsZWFzZRiAgICMtpiFCgwLEgZVcGxvYWQYgICAzKTWkAsM Windows Download]&lt;br /&gt;
*[https://mattercontrol.appspot.com/downloads/development/ag9zfm1hdHRlcmNvbnRyb2xyOwsSB1Byb2plY3QY7AcMCxINUHVibGljUmVsZWFzZRiAgIDQ4bmcCgwLEgZVcGxvYWQYgICA0KXYjQoM Mac Download]&lt;br /&gt;
*[https://github.com/MatterHackers/MatterControl/releases/tag/Releases%2F1.6.1 Source Code]&lt;br /&gt;
&lt;br /&gt;
=== Changes ===&lt;br /&gt;
&lt;br /&gt;
*Request updated printer list from MatterHackers.com immediately on program startup.&lt;br /&gt;
*Show import printer Wizard after user logs in for the first time after updating.&lt;br /&gt;
&lt;br /&gt;
== 1.6 ==&lt;br /&gt;
&lt;br /&gt;
'''Release Date:''' November 21, 2016&lt;br /&gt;
&lt;br /&gt;
*[https://mattercontrol.appspot.com/downloads/development/ag9zfm1hdHRlcmNvbnRyb2xyOwsSB1Byb2plY3QY6gcMCxINUHVibGljUmVsZWFzZRiAgIC03baCCgwLEgZVcGxvYWQYgICAjIDRlAkM Windows Download]&lt;br /&gt;
*[https://mattercontrol.appspot.com/downloads/development/ag9zfm1hdHRlcmNvbnRyb2xyOwsSB1Byb2plY3QY7AcMCxINUHVibGljUmVsZWFzZRiAgIDQsvmSCgwLEgZVcGxvYWQYgICA0K6XjwoM Mac Download]&lt;br /&gt;
*[https://mattercontrol.appspot.com/downloads/development/ag9zfm1hdHRlcmNvbnRyb2xyQQsSB1Byb2plY3QYgICAiOCSzAsMCxINUHVibGljUmVsZWFzZRiAgIDA0_6ACgwLEgZVcGxvYWQYgICAwJ_IhQoM Linux Download]&lt;br /&gt;
*[https://github.com/MatterHackers/MatterControl/releases/tag/Releases%2F1.6.0 Source Code]&lt;br /&gt;
&lt;br /&gt;
=== New Features ===&lt;br /&gt;
&lt;br /&gt;
*Print Recovery&lt;br /&gt;
**Automatically recover from power failure, disconnection, or crash&lt;br /&gt;
*Printer settings now associated with user account and accessed when logged in&lt;br /&gt;
*Settings changes automatically synced across instances of the application&lt;br /&gt;
*Improved Settings Editor&lt;br /&gt;
**Revert to default profile settings at any time&lt;br /&gt;
**Revert to previous version of settings&lt;br /&gt;
*Improved Quality and Material Editors&lt;br /&gt;
*Improved Export and Import of settings&lt;br /&gt;
*Printer profiles added&lt;br /&gt;
*Calculate filament cost per print&lt;br /&gt;
*Part editing now has undo and redo&lt;br /&gt;
*Latest settings now retrieved the when setting up a new printer&lt;br /&gt;
&lt;br /&gt;
=== Better Print Results ===&lt;br /&gt;
&lt;br /&gt;
*Fill Thin Gaps&lt;br /&gt;
*Expand Thin Edges&lt;br /&gt;
*Perimeter Merging&lt;br /&gt;
*Improved wipe towers&lt;br /&gt;
*Improved support detection and removal&lt;br /&gt;
*Improved seam hiding&lt;br /&gt;
*Convex priming (skirt) loops&lt;br /&gt;
*Better fan speed control&lt;br /&gt;
*Can use G0 instead of G1 for moves if desired&lt;br /&gt;
&lt;br /&gt;
== 1.5.3 ==&lt;br /&gt;
&lt;br /&gt;
'''Release Date:''' May 19, 2016&lt;br /&gt;
&lt;br /&gt;
*[https://mattercontrol.appspot.com/downloads/development/ag9zfm1hdHRlcmNvbnRyb2xyOwsSB1Byb2plY3QY6gcMCxINUHVibGljUmVsZWFzZRiAgICEyriCCgwLEgZVcGxvYWQYgICAhP_3kQoM Windows Download]&lt;br /&gt;
*[https://mattercontrol.appspot.com/downloads/development/ag9zfm1hdHRlcmNvbnRyb2xyOwsSB1Byb2plY3QY7AcMCxINUHVibGljUmVsZWFzZRiAgICQyMOUCgwLEgZVcGxvYWQYgICAkMz3ngoM Mac Download]&lt;br /&gt;
*[https://github.com/MatterHackers/MatterControl/tree/1.5.3 Source Code]&lt;br /&gt;
&lt;br /&gt;
=== New Features ===&lt;br /&gt;
&lt;br /&gt;
*Added profile for the BCN3D Sigma printer &lt;br /&gt;
*Updated JumpStart V1 Printer Profile&lt;br /&gt;
*Added printer profile for the Lulzbot TAZ 6&lt;br /&gt;
&lt;br /&gt;
== 1.5.2 ==&lt;br /&gt;
&lt;br /&gt;
'''Release Date:''' April 29, 2016&lt;br /&gt;
&lt;br /&gt;
*[https://mattercontrol.appspot.com/downloads/development/ag9zfm1hdHRlcmNvbnRyb2xyOwsSB1Byb2plY3QY6gcMCxINUHVibGljUmVsZWFzZRiAgIC43e2YCQwLEgZVcGxvYWQYgICA-PnGhwoM Windows Download]&lt;br /&gt;
*[https://mattercontrol.appspot.com/downloads/development/ag9zfm1hdHRlcmNvbnRyb2xyOwsSB1Byb2plY3QY7AcMCxINUHVibGljUmVsZWFzZRiAgIDgs8GOCgwLEgZVcGxvYWQYgICA4K-MnwoM Mac Download]&lt;br /&gt;
*[https://github.com/MatterHackers/MatterControl/releases/tag/Releases%2F1.5.2 Source Code]&lt;br /&gt;
&lt;br /&gt;
=== Bug Fixes ===&lt;br /&gt;
&lt;br /&gt;
*Fixed Android keyboard crash on T10 tablet&lt;br /&gt;
&lt;br /&gt;
=== Other ===&lt;br /&gt;
&lt;br /&gt;
*Updated printer profiles&lt;br /&gt;
&lt;br /&gt;
== 1.5 ==&lt;br /&gt;
&lt;br /&gt;
'''Release Date:''' February 19, 2016&lt;br /&gt;
&lt;br /&gt;
*[https://mattercontrol.appspot.com/downloads/development/ag9zfm1hdHRlcmNvbnRyb2xyOwsSB1Byb2plY3QY6gcMCxINUHVibGljUmVsZWFzZRiAgICY8MOJCgwLEgZVcGxvYWQYgICA2JzcngkM Windows Download]&lt;br /&gt;
*[https://mattercontrol.appspot.com/downloads/development/ag9zfm1hdHRlcmNvbnRyb2xyOwsSB1Byb2plY3QY7AcMCxINUHVibGljUmVsZWFzZRiAgIDgqs2MCgwLEgZVcGxvYWQYgICA4I74jwoM Mac Download]&lt;br /&gt;
*[https://mattercontrol.appspot.com/downloads/development/ag9zfm1hdHRlcmNvbnRyb2xyQQsSB1Byb2plY3QYgICAiOCSzAsMCxINUHVibGljUmVsZWFzZRiAgIDA-PaGCgwLEgZVcGxvYWQYgICAwPi9jgoM Linux Download]&lt;br /&gt;
*[https://github.com/MatterHackers/MatterControl/releases/tag/Releases%2F1.5.0 Source Code]&lt;br /&gt;
&lt;br /&gt;
=== New Features ===&lt;br /&gt;
&lt;br /&gt;
*A new, vastly improved, [[Settings/General/Support Material|support system]]&lt;br /&gt;
*[[Controls/Movement#Axis_Motion_Buttons|Position tuning while printing (aka baby stepping)]]&lt;br /&gt;
*Ability to slice merged/intersecting parts&lt;br /&gt;
*Improved seam-hiding while printing&lt;br /&gt;
*Ability to cancel printing while heating&lt;br /&gt;
*[[Settings/Filament/Filament/Retraction/Retract_When_Changing_Islands|Setting to retract when changing islands]]&lt;br /&gt;
*Made it possible to have the first perimeter have a different extrusion width to compensate for more accurate small holes&lt;br /&gt;
*Added top infill speed&lt;br /&gt;
*Add support for closing MatterControl while printing&lt;br /&gt;
*Put in reporting of hardware errors&lt;br /&gt;
*Improved the local search feature&lt;br /&gt;
*Added visual indicator for http failures&lt;br /&gt;
*Made it possible to render [[Layer_View#Transparent|translucent extrusion paths]]&lt;br /&gt;
*Support drag and drop onto the settings widget will still add to [[Queue]]&lt;br /&gt;
*Fixed the [[Controls/Macros|macro window]] to grow in Y&lt;br /&gt;
*Implemented scroll wheel in the [[Options/G-Code Terminal|G-Code Terminal]]&lt;br /&gt;
*Added user configurable [[Library]] folders&lt;br /&gt;
*Finished Braille 2 functionality for [[Braille Builder]]&lt;br /&gt;
*Velocity during rotation of [[3D View]]&lt;br /&gt;
*Improved MatterControl Touch printing&lt;br /&gt;
*Improved Android soft keyboard support&lt;br /&gt;
*Only process the most outside perimeter with [[Settings/General/Layers-Surface/Outer_Surface_-_Perimeters/Spiral_Vase|Spiral Vase]]&lt;br /&gt;
*Fixed slicing to handle badly wound polygons&lt;br /&gt;
&lt;br /&gt;
=== Bug Fixes ===&lt;br /&gt;
&lt;br /&gt;
*Now reporting bed and extruder heating state for Repetier firmware&lt;br /&gt;
*You can now type a partial entry to a count or mm field and not have it get messed up if you are slow&lt;br /&gt;
*Make sure we turn off all heaters when we shut down&lt;br /&gt;
*Ability to save to the Queue on [[3D_View/Edit#Save_As|Save As]]&lt;br /&gt;
*Suppress error reporting and abort on COM Access Denied errors&lt;br /&gt;
*AMF save progress reporting&lt;br /&gt;
*Fixed first layer speed issue&lt;br /&gt;
*Better thread safety&lt;br /&gt;
*Made the leveling page easier to use on MatterControl Touch&lt;br /&gt;
*Made message box easier to use on MatterControl Touch&lt;br /&gt;
*Allow invalid image file formats to return a load failure rather than throw an assert&lt;br /&gt;
*Group objects move correctly on the bed when scaled&lt;br /&gt;
*Made it possible to edit the 3 point leveling positions even after you have set up 7 or 13 point leveling&lt;br /&gt;
*Making the save feature always go through a separate file so that we don't get collisions with files in use&lt;br /&gt;
*No crashing on corrupt zip files&lt;br /&gt;
*Fixed bug when opening and closing EEProm window&lt;br /&gt;
*Restore Clear Cache functionality&lt;br /&gt;
*Loading large GCode file no longer pauses Android&lt;br /&gt;
*Loading Repetier EEProm settings no longer pauses Android&lt;br /&gt;
*Fixed issue where [[Settings/General/Infill/Advanced/Infill_Overlap|Infill Overlap]] was not being used correctly&lt;br /&gt;
&lt;br /&gt;
=== See also === &lt;br /&gt;
&lt;br /&gt;
[https://www.matterhackers.com/news/mattercontrol-1-5-released MatterControl 1.5 Released] article on MatterHackers.com&lt;br /&gt;
&lt;br /&gt;
== 1.4.1 ==&lt;br /&gt;
&lt;br /&gt;
'''Release Date:''' November 16, 2015&lt;br /&gt;
&lt;br /&gt;
Notes: [[MatterControl Touch]] only&lt;br /&gt;
&lt;br /&gt;
=== Minor Changes ===&lt;br /&gt;
*Enabled new seam hiding code in MatterSlice&lt;br /&gt;
*Enabled 'Pinch to Zoom' on touchscreens&lt;br /&gt;
*Reset view button on model and gcode views&lt;br /&gt;
*Improved STL repair, added handling for bad polygon winding&lt;br /&gt;
*Added Outside perimeter extrusion width setting (Filament -&amp;gt; Extrusion)&lt;br /&gt;
*Added Top Solid Infill speed to MatterSlice&lt;br /&gt;
*Improved to Braille Grade 2 support in Braille Builder&lt;br /&gt;
*Made print leveling dialog easier to use on Touch&lt;br /&gt;
*Made message reports easier to read on Touch&lt;br /&gt;
=== Bug Fixes === &lt;br /&gt;
*Improved showing and hiding of the Android keyboard&lt;br /&gt;
*Better startup behavior when a printer plugged in&lt;br /&gt;
*Fixed issue where grouped objects were not moving when scaled&lt;br /&gt;
*Android now resets boards on connect&lt;br /&gt;
*Fixed issue where Infill Overlap was not being used correctly&lt;br /&gt;
*Fixed issue with empty Start GCode&lt;br /&gt;
*General stability improvements&lt;br /&gt;
&lt;br /&gt;
== 1.4.0 ==&lt;br /&gt;
&lt;br /&gt;
'''Release Date:''' October 5, 2015&lt;br /&gt;
&lt;br /&gt;
*[https://mattercontrol.appspot.com/downloads/development/ag9zfm1hdHRlcmNvbnRyb2xyOwsSB1Byb2plY3QY6gcMCxINUHVibGljUmVsZWFzZRiAgICI-uWHCgwLEgZVcGxvYWQYgICAiJmliwoM Windows Download]&lt;br /&gt;
*[https://mattercontrol.appspot.com/downloads/development/ag9zfm1hdHRlcmNvbnRyb2xyOwsSB1Byb2plY3QY7AcMCxINUHVibGljUmVsZWFzZRiAgICgjoKDCgwLEgZVcGxvYWQYgICAoMn-kwoM Mac Download]&lt;br /&gt;
*[https://github.com/MatterHackers/MatterControl/releases/tag/Releases%2F1.4.0 Source Code]&lt;br /&gt;
&lt;br /&gt;
=== New Features === &lt;br /&gt;
*Added Cloud Design Library - automatic design file syncing&lt;br /&gt;
*Expanded general library management tools (folder creation, item rename)&lt;br /&gt;
*Added options for sharing designs&lt;br /&gt;
*Added support for X3G 3D printers (added new profiles)&lt;br /&gt;
*Added ability to start/stop prints remotely and remotely add items to queue&lt;br /&gt;
*Added 'Braille Builder' design add-on for creation of 3d printable braille labels&lt;br /&gt;
&lt;br /&gt;
== 1.3.0 ==&lt;br /&gt;
&lt;br /&gt;
'''Release Date:''' June 23, 2015&lt;br /&gt;
&lt;br /&gt;
*[https://mattercontrol.appspot.com/downloads/development/ag9zfm1hdHRlcmNvbnRyb2xyOwsSB1Byb2plY3QY6gcMCxINUHVibGljUmVsZWFzZRiAgICwgO6SCgwLEgZVcGxvYWQYgICAsLiahQoM Windows Download]&lt;br /&gt;
*[https://mattercontrol.appspot.com/downloads/development/ag9zfm1hdHRlcmNvbnRyb2xyOwsSB1Byb2plY3QY7AcMCxINUHVibGljUmVsZWFzZRiAgIDA58SYCgwLEgZVcGxvYWQYgICAoOC5ngoM Mac Download]&lt;br /&gt;
*[https://github.com/MatterHackers/MatterControl/releases/tag/Releases%2F1.3.0 Source Code]&lt;br /&gt;
&lt;br /&gt;
=== New Features === &lt;br /&gt;
*Auto arrange has been improved&lt;br /&gt;
*Added profiles for MakerGear, PrintSpace, Huxley&lt;br /&gt;
*Adding Touchscreen mode for touchscreen devices&lt;br /&gt;
*Support for ATX power hardware&lt;br /&gt;
*Improved Basic and Standard UI settings&lt;br /&gt;
*Perimeters, Bottom and Top layers can all be set in millimeters&lt;br /&gt;
*Perimeters can now be printed outer layer first or last&lt;br /&gt;
&lt;br /&gt;
=== Minor Changes === &lt;br /&gt;
*Updated Lulzbot settings&lt;br /&gt;
*Added tool change g-code&lt;br /&gt;
*Added crash reporting to alpha and beta channels&lt;br /&gt;
*Better default printer naming&lt;br /&gt;
*Fixed slicing problems with very complex models during top and bottom layer creation.&lt;br /&gt;
&lt;br /&gt;
=== Bug Fixes === &lt;br /&gt;
*Fixed issue with spiral vase setting&lt;br /&gt;
*Fixed bug with dual extrusion offset (offset values were limited to integer values)&lt;br /&gt;
*Fixed slicing problems with very complex models during top and bottom layer creation&lt;br /&gt;
*Improved reset connection&lt;br /&gt;
*Keep 3D views up to date with model changes&lt;br /&gt;
*Fix to end gcode processing not doing replacements&lt;br /&gt;
*Improved error messages&lt;br /&gt;
*Fixed handling of bad AMF loading &lt;br /&gt;
*Better handling of connection not available&lt;br /&gt;
*Fixed a bug in the queue while printing and trying to change items1&lt;br /&gt;
*Fixes for international number formatting&lt;br /&gt;
*Improved clarity of redundant slice settings naming&lt;br /&gt;
*Fixed a problem with first layer extrusion width&lt;br /&gt;
&lt;br /&gt;
=== MatterSlice ===&lt;br /&gt;
&lt;br /&gt;
==== Features ====&lt;br /&gt;
*Added a wipe before retract feature&lt;br /&gt;
*Made it possible to print the raft with any extruder&lt;br /&gt;
&lt;br /&gt;
==== Bug Fixes ====&lt;br /&gt;
*Filter move writes better&lt;br /&gt;
*Spiral Vase now ignores confounding settings when set&lt;br /&gt;
*Outer perimeters can no longer overlap themselves&lt;br /&gt;
*Improved loop clipping&lt;br /&gt;
*Put in tool change code&lt;br /&gt;
*Print the skirt before the raft&lt;br /&gt;
*Hex infill could sometimes miss a bottom edge&lt;br /&gt;
*Fixed a freeze bug when creating top and bottom layers for complex parts&lt;br /&gt;
*Make sure we retract on layer change if required&lt;br /&gt;
*Extruder offset previously could only be an integer value (it can now be a decimal value as well)&lt;br /&gt;
&lt;br /&gt;
== 1.2.2 ==&lt;br /&gt;
&lt;br /&gt;
'''Release Date:''' March 6, 2015&lt;br /&gt;
&lt;br /&gt;
*[https://mattercontrol.appspot.com/downloads/development/ag9zfm1hdHRlcmNvbnRyb2xyOwsSB1Byb2plY3QY6gcMCxINUHVibGljUmVsZWFzZRiAgIDg7O2cCQwLEgZVcGxvYWQYgICA4IO_lgoM Windows Download]&lt;br /&gt;
*[https://mattercontrol.appspot.com/downloads/development/ag9zfm1hdHRlcmNvbnRyb2xyOwsSB1Byb2plY3QY7AcMCxINUHVibGljUmVsZWFzZRiAgIDAjJCPCwwLEgZVcGxvYWQYgICAwN74kAoM Mac Download]&lt;br /&gt;
*[https://github.com/MatterHackers/MatterControl/releases/tag/Releases%2F1.2.2 Source Code]&lt;br /&gt;
&lt;br /&gt;
=== New Features === &lt;br /&gt;
*Improved printer connection stability&lt;br /&gt;
*Updated Serial Driver for RAMPS&lt;br /&gt;
*Added profiles for Revolution 3D, Solidoodle&lt;br /&gt;
*Added hexagon infill&lt;br /&gt;
*Added the ability to turn on 'Reset Connection' works as an e-stop&lt;br /&gt;
	&lt;br /&gt;
=== Minor Changes === &lt;br /&gt;
*Bug fixes&lt;br /&gt;
*Better memory reporting and stability&lt;br /&gt;
*Fixed a bug with temp being set repeatedly&lt;br /&gt;
*Using sub-modules (easier to build from GitHub)&lt;br /&gt;
&lt;br /&gt;
== 1.2.1 ==&lt;br /&gt;
&lt;br /&gt;
'''Release Date:''' January 28, 2015&lt;br /&gt;
&lt;br /&gt;
* [https://mattercontrol.appspot.com/downloads/development/ag9zfm1hdHRlcmNvbnRyb2xyOwsSB1Byb2plY3QY6gcMCxINUHVibGljUmVsZWFzZRiAgICgkqidCgwLEgZVcGxvYWQYgICA4KyQhgoM Windows Download]&lt;br /&gt;
* [https://mattercontrol.appspot.com/downloads/development/ag9zfm1hdHRlcmNvbnRyb2xyOwsSB1Byb2plY3QY7AcMCxINUHVibGljUmVsZWFzZRiAgICA26OTCgwLEgZVcGxvYWQYgICAwPTHlgoM Mac Download]&lt;br /&gt;
* [https://github.com/MatterHackers/MatterControl/releases/tag/Releases%2F1.2.1 Source Code]&lt;br /&gt;
&lt;br /&gt;
=== New Features === &lt;br /&gt;
*Pop Out Windows - now you can show settings and controls all the time&lt;br /&gt;
*Ability to send parts to other computers and MatterControl Touch&lt;br /&gt;
*We now display a big 3D view on startup&lt;br /&gt;
*Better connection handling&lt;br /&gt;
*Support for many more printers&lt;br /&gt;
*Added a Simple mode to slice settings&lt;br /&gt;
	&lt;br /&gt;
=== Minor Changes === &lt;br /&gt;
*External Perimeter First slice setting&lt;br /&gt;
*Improved edge detection during slicing&lt;br /&gt;
*Select Raft Extruder&lt;br /&gt;
*Vertical offsets in edit mode&lt;br /&gt;
*Faster editing of models&lt;br /&gt;
*More accurate gcode generation&lt;br /&gt;
*More accurate support angles&lt;br /&gt;
*Better slice settings help and defaults&lt;br /&gt;
*Fixed some very obscure errors with Print Leveling being too high sometimes&lt;br /&gt;
*Better detection of co-linear edges (highly tessellated round things work better)&lt;br /&gt;
&lt;br /&gt;
== 1.2 ==&lt;br /&gt;
&lt;br /&gt;
'''Release Date:''' November 19, 2014&lt;br /&gt;
&lt;br /&gt;
*[https://mattercontrol.appspot.com/downloads/development/ag9zfm1hdHRlcmNvbnRyb2xyOwsSB1Byb2plY3QY6gcMCxINUHVibGljUmVsZWFzZRiAgICg3KGHCQwLEgZVcGxvYWQYgICAoOLjlQoM Windows Download]&lt;br /&gt;
*[https://mattercontrol.appspot.com/downloads/development/ag9zfm1hdHRlcmNvbnRyb2xyOwsSB1Byb2plY3QY7AcMCxINUHVibGljUmVsZWFzZRiAgICAy6-BCgwLEgZVcGxvYWQYgICAgNvunQoM Mac Download]&lt;br /&gt;
&lt;br /&gt;
=== New Features === &lt;br /&gt;
*Dual-Extrusion Support&lt;br /&gt;
*Simple Multi-Material Workflow&lt;br /&gt;
*Advanced Support Material Generation&lt;br /&gt;
*New Touch-Friendly UI&lt;br /&gt;
*Signed Windows Drivers (no more Windows 8 pain)&lt;br /&gt;
*AMF support&lt;br /&gt;
	&lt;br /&gt;
=== Minor Changes === &lt;br /&gt;
*Improved Pausing (remembers and returns to pause position)&lt;br /&gt;
*Support for @pause and M226 (user requested pause from gcode)&lt;br /&gt;
*MatterSlice&lt;br /&gt;
**Skirt always draws from the outside&lt;br /&gt;
&lt;br /&gt;
== 1.1.3 ==&lt;br /&gt;
&lt;br /&gt;
'''Release Date:''' August 8, 2014&lt;br /&gt;
&lt;br /&gt;
*[https://mattercontrol.appspot.com/downloads/development/ag9zfm1hdHRlcmNvbnRyb2xyOwsSB1Byb2plY3QY6gcMCxINUHVibGljUmVsZWFzZRiAgIDAxOeTCgwLEgZVcGxvYWQYgICAwMnShQoM Windows Download] - last XP compatible build&lt;br /&gt;
*[https://mattercontrol.appspot.com/downloads/development/ag9zfm1hdHRlcmNvbnRyb2xyOwsSB1Byb2plY3QY7AcMCxINUHVibGljUmVsZWFzZRiAgICA1pSNCgwLEgZVcGxvYWQYgICAgLG7igoM Mac Download]&lt;br /&gt;
*[https://github.com/MatterHackers/MatterControl/releases/tag/Releases%2F1.1.3 Source Code]&lt;br /&gt;
&lt;br /&gt;
=== New Features === &lt;br /&gt;
*Updated to Slic3r 1.1.7&lt;br /&gt;
*MatterSlice significantly improved&lt;br /&gt;
**Support can now have interface layers&lt;br /&gt;
**Many bugs and performance improvements&lt;br /&gt;
*New 3D Display options (outline view)&lt;br /&gt;
*MakerBot X3G support now available (beta)&lt;br /&gt;
*Added Turkish translation&lt;br /&gt;
	&lt;br /&gt;
=== Minor Changes: === &lt;br /&gt;
*Make sure the 3D views always match the current printer size and shape&lt;br /&gt;
*Improved 3D GCode view (more display options)&lt;br /&gt;
*Faster Mesh and GCode loading&lt;br /&gt;
*New driver for RoBo 3D&lt;br /&gt;
*Made Smoothieboards work better&lt;br /&gt;
&lt;br /&gt;
== 1.1.2 ==&lt;br /&gt;
&lt;br /&gt;
'''Release Date:''' July 22, 2014&lt;br /&gt;
&lt;br /&gt;
*[https://mattercontrol.appspot.com/downloads/development/ag9zfm1hdHRlcmNvbnRyb2xyOwsSB1Byb2plY3QY6gcMCxINUHVibGljUmVsZWFzZRiAgICA49WLCgwLEgZVcGxvYWQYgICAwKi2gwkM Windows Download]&lt;br /&gt;
*[https://mattercontrol.appspot.com/downloads/development/ag9zfm1hdHRlcmNvbnRyb2xyOwsSB1Byb2plY3QY7AcMCxINUHVibGljUmVsZWFzZRiAgICAotGHCgwLEgZVcGxvYWQYgICAgKaJlQoM Mac Download]&lt;br /&gt;
*[https://github.com/MatterHackers/MatterControl/releases/tag/Releases%2F1.1.2 Source Code]&lt;br /&gt;
&lt;br /&gt;
=== New Features === &lt;br /&gt;
*3D GCode View&lt;br /&gt;
*Cloud Monitoring: While logged in, printer status viewable from the web&lt;br /&gt;
*SD Card Support: Allows you to print from and view/edit the contents of the on-board SD Card&lt;br /&gt;
*Triangle infill in MatterSlice, for incredibly strong parts&lt;br /&gt;
&lt;br /&gt;
=== Minor Changes === &lt;br /&gt;
*Minor UI fixes (ex. added scroll bars to slice presets)&lt;br /&gt;
*Added 'Preheat' temperature preset - sets temp to current slice settings&lt;br /&gt;
*Fixed slice implementation of Raft settings. It was not putting in correct spacing&lt;br /&gt;
*Fixed issue with update download not starting.&lt;br /&gt;
*Fixed issue with auto-connect causing start-up crash (on Printrboards specifically)&lt;br /&gt;
&lt;br /&gt;
== 1.1.1 ==&lt;br /&gt;
&lt;br /&gt;
'''Release Date:''' May 27, 2014&lt;br /&gt;
&lt;br /&gt;
*[https://mattercontrol.appspot.com/downloads/development/ag9zfm1hdHRlcmNvbnRyb2xyOwsSB1Byb2plY3QY6gcMCxINUHVibGljUmVsZWFzZRiAgICApamKCgwLEgZVcGxvYWQYgICAgMOGmwsM Windows Download]&lt;br /&gt;
*[https://mattercontrol.appspot.com/downloads/development/ag9zfm1hdHRlcmNvbnRyb2xyOwsSB1Byb2plY3QY7AcMCxINUHVibGljUmVsZWFzZRiAgICA7KuBCgwLEgZVcGxvYWQYgICAgMKTnAoM Mac Download]&lt;br /&gt;
*[https://github.com/MatterHackers/MatterControl/releases/tag/Releases%2F1.1.1 Source Code]&lt;br /&gt;
&lt;br /&gt;
=== New Features === &lt;br /&gt;
*New Advanced Raft in MatterSlice&lt;br /&gt;
*GCode playback during printing&lt;br /&gt;
	&lt;br /&gt;
=== Minor Changes === &lt;br /&gt;
*Independent Axis Scaling Improved&lt;br /&gt;
*Fixed a bug in Macros being sent in reverse order&lt;br /&gt;
*Better international support (&lt;br /&gt;
*Bug fixes and performance improvements&lt;br /&gt;
&lt;br /&gt;
== 1.1.0 ==&lt;br /&gt;
&lt;br /&gt;
'''Release Date:''' May 14, 2014&lt;br /&gt;
&lt;br /&gt;
*[https://mattercontrol.appspot.com/downloads/development/ag9zfm1hdHRlcmNvbnRyb2xyOwsSB1Byb2plY3QY6gcMCxINUHVibGljUmVsZWFzZRiAgICA-YaUCQwLEgZVcGxvYWQYgICAgKX4nQkM Windows Download]&lt;br /&gt;
*[https://mattercontrol.appspot.com/downloads/development/ag9zfm1hdHRlcmNvbnRyb2xyOwsSB1Byb2plY3QY7AcMCxINUHVibGljUmVsZWFzZRiAgICArNeKCgwLEgZVcGxvYWQYgICAgOz6lwsM Mac Download]&lt;br /&gt;
*[https://github.com/MatterHackers/MatterControl/releases/tag/Releases%2F1.1.0 Source Code]&lt;br /&gt;
&lt;br /&gt;
=== New Features === &lt;br /&gt;
*MatterSlice : A new high quality, high speed slicing engine by MatterHackers&lt;br /&gt;
*Material/Quality Presets : Layers settings to that modify the base settings&lt;br /&gt;
*Widescreen Mode&lt;br /&gt;
*Expanded Themes&lt;br /&gt;
*Image Converter : A new tool that lets you change images into printable models&lt;br /&gt;
*Print History updates and improvements&lt;br /&gt;
&lt;br /&gt;
=== Minor Changes === &lt;br /&gt;
*Pause, cancel, resume functionality can now be assigned custom GCode.&lt;br /&gt;
*Added visualization for retraction and partial path viewing to GCode view. &lt;br /&gt;
*When parts are repositioned in the plate editor, the offsets are now preserved.&lt;br /&gt;
*Localization support has been added. We'll be integrating translations as they become available.&lt;br /&gt;
*Saving part file edits is now significantly faster.&lt;br /&gt;
**Loading images is now faster (uses caching).&lt;br /&gt;
**Many bug fixes and performance improvements&lt;br /&gt;
&lt;br /&gt;
[[Category:General Information]]&lt;br /&gt;
[[Category:Development]]&lt;/div&gt;</summary>
		<author><name>Tanderson</name></author>	</entry>

	<entry>
		<id>http://wiki.mattercontrol.com/index.php?title=Release_Notes&amp;diff=4221</id>
		<title>Release Notes</title>
		<link rel="alternate" type="text/html" href="http://wiki.mattercontrol.com/index.php?title=Release_Notes&amp;diff=4221"/>
				<updated>2019-05-30T17:29:17Z</updated>
		
		<summary type="html">&lt;p&gt;Tanderson: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Migrated|release-notes}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;float: right;&amp;quot;&amp;gt;&lt;br /&gt;
__TOC__&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
This page contains a brief description of each new release of MatterControl. The version numbers shown on this page are for the official [[Downloads|MatterHackers releases]]. &lt;br /&gt;
&lt;br /&gt;
== 2.19.2 ==&lt;br /&gt;
&lt;br /&gt;
'''Release Data:''' February, 6, 2019&lt;br /&gt;
*[https://mattercontrol.appspot.com/downloads/development/ag9zfm1hdHRlcmNvbnRyb2xyOwsSB1Byb2plY3QY6gcMCxINUHVibGljUmVsZWFzZRiAgICt8ISVCgwLEgZVcGxvYWQYgICA_ZPAggoM Windows Download]&lt;br /&gt;
*[Mac Download]&lt;br /&gt;
*[Linux Download]&lt;br /&gt;
=== Changes ===&lt;br /&gt;
&lt;br /&gt;
*Fixed bugs with exporting G-Code&lt;br /&gt;
*Improved flatten&lt;br /&gt;
*Improved Undo support&lt;br /&gt;
*Improved design history&lt;br /&gt;
&lt;br /&gt;
== 2.19.1 ==&lt;br /&gt;
&lt;br /&gt;
'''Release Data:''' January, 2, 2019&lt;br /&gt;
*[https://mattercontrol.appspot.com/downloads/development/ag9zfm1hdHRlcmNvbnRyb2xyOwsSB1Byb2plY3QY6gcMCxINUHVibGljUmVsZWFzZRiAgIC17KWBCgwLEgZVcGxvYWQYgICAzeeZlQoM Windows Download]&lt;br /&gt;
*[Mac Download]&lt;br /&gt;
*[Linux Download]&lt;br /&gt;
=== Changes ===&lt;br /&gt;
&lt;br /&gt;
*Versioning: Moving to a (version).(year).(month) version number. Easier to read and more informative.&lt;br /&gt;
*Multi-printer control&lt;br /&gt;
*A single instance of MatterControl can now run multiple printers simultaneously&lt;br /&gt;
*New State-of-the-art Subtract, Combine and Intersection&lt;br /&gt;
*We now start up with a 'Feature Tour' to help new users find their way&lt;br /&gt;
&lt;br /&gt;
== 2.0.0 ==&lt;br /&gt;
&lt;br /&gt;
'''Release Data:''' November, 19, 2018&lt;br /&gt;
*[https://mattercontrol.appspot.com/downloads/development/ag9zfm1hdHRlcmNvbnRyb2xyOwsSB1Byb2plY3QY6gcMCxINUHVibGljUmVsZWFzZRiAgIC1rPiMCgwLEgZVcGxvYWQYgICAtezqjgoM Windows Download]&lt;br /&gt;
*[Mac Download]&lt;br /&gt;
*[Linux Download]&lt;br /&gt;
=== Changes ===&lt;br /&gt;
&lt;br /&gt;
*Added Integrated Design Tools&lt;br /&gt;
&lt;br /&gt;
== 1.7.5 ==&lt;br /&gt;
&lt;br /&gt;
'''Release Data:''' August, 14, 2017&lt;br /&gt;
*[https://mattercontrol.appspot.com/downloads/development/ag9zfm1hdHRlcmNvbnRyb2xyOwsSB1Byb2plY3QY6gcMCxINUHVibGljUmVsZWFzZRiAgICGgYiLCgwLEgZVcGxvYWQYgICAps6mhwoM Windows Download]&lt;br /&gt;
*[Mac Download]&lt;br /&gt;
*[Linux Download]&lt;br /&gt;
=== Changes ===&lt;br /&gt;
&lt;br /&gt;
*Added filament selection into leveling wizard so we heat to printing temp before sampling.&lt;br /&gt;
&lt;br /&gt;
== 1.7.4 ==&lt;br /&gt;
&lt;br /&gt;
'''Release Date:''' July, 14, 2017&lt;br /&gt;
*[https://mattercontrol.appspot.com/downloads/development/ag9zfm1hdHRlcmNvbnRyb2xyOwsSB1Byb2plY3QY6gcMCxINUHVibGljUmVsZWFzZRiAgID64sGDCgwLEgZVcGxvYWQYgICA-vf2jwkM Windows Download]&lt;br /&gt;
*[Mac Download]&lt;br /&gt;
*[Linux Download]&lt;br /&gt;
&lt;br /&gt;
=== Changes ===&lt;br /&gt;
&lt;br /&gt;
*Put in the ability to ramp the extra extrusion after move to compensate for oozing while moving.&lt;br /&gt;
&lt;br /&gt;
== 1.7.3 ==&lt;br /&gt;
&lt;br /&gt;
'''Release Date:''' July, 6, 2017&lt;br /&gt;
*[https://mattercontrol.appspot.com/downloads/development/ag9zfm1hdHRlcmNvbnRyb2xyOwsSB1Byb2plY3QY6gcMCxINUHVibGljUmVsZWFzZRiAgIDa26CGCgwLEgZVcGxvYWQYgICAutPtmQsM Windows Download]&lt;br /&gt;
*[Mac Download]&lt;br /&gt;
*[Linux Download]&lt;br /&gt;
&lt;br /&gt;
=== Changes ===&lt;br /&gt;
&lt;br /&gt;
*Created regex filters that can be applied to printer read and writes. Allows us to support more printers.&lt;br /&gt;
&lt;br /&gt;
== 1.7.2 ==&lt;br /&gt;
&lt;br /&gt;
'''Release Date:''' June, 19, 2017&lt;br /&gt;
*[https://mattercontrol.appspot.com/downloads/development/ag9zfm1hdHRlcmNvbnRyb2xyOwsSB1Byb2plY3QY6gcMCxINUHVibGljUmVsZWFzZRiAgIDamL2UCgwLEgZVcGxvYWQYgICA2v78gAoM Windows Download]&lt;br /&gt;
*[Mac Download]&lt;br /&gt;
*[Linux Download]&lt;br /&gt;
&lt;br /&gt;
=== Changes ===&lt;br /&gt;
&lt;br /&gt;
*Fixed bug in leveling for JumpStart printer&lt;br /&gt;
&lt;br /&gt;
== 1.7.1 ==&lt;br /&gt;
&lt;br /&gt;
'''Release Date:''' June, 11, 2017&lt;br /&gt;
*[https://mattercontrol.appspot.com/downloads/development/ag9zfm1hdHRlcmNvbnRyb2xyOwsSB1Byb2plY3QY6gcMCxINUHVibGljUmVsZWFzZRiAgICSxoqdCgwLEgZVcGxvYWQYgICAmsW_hQkM Windows Download]&lt;br /&gt;
*[Mac Download]&lt;br /&gt;
*[Linux Download]&lt;br /&gt;
&lt;br /&gt;
=== Changes ===&lt;br /&gt;
&lt;br /&gt;
*New mesh bed leveling option (3x3)&lt;br /&gt;
*Improved tool pathing while printing supports&lt;br /&gt;
*Improved wipe towers while printing support&lt;br /&gt;
*Improved extruder selection when more than 2 extruders available&lt;br /&gt;
*Fixed small over extrusion issues with some overhang tool paths&lt;br /&gt;
*Added support for filament run out sensor&lt;br /&gt;
*New SMS messages for pausing and filament run out&lt;br /&gt;
*Added support for automatic probing if sensor available&lt;br /&gt;
*Added Support for probing servo&lt;br /&gt;
*Improved translations&lt;br /&gt;
*General bug fixing&lt;br /&gt;
&lt;br /&gt;
== 1.7.0 ==&lt;br /&gt;
&lt;br /&gt;
'''Release Date:''' March 14, 2017&lt;br /&gt;
*[https://mattercontrol.appspot.com/downloads/development/ag9zfm1hdHRlcmNvbnRyb2xyOwsSB1Byb2plY3QY6gcMCxINUHVibGljUmVsZWFzZRiAgIDCgYuDCQwLEgZVcGxvYWQYgICA4ou_lwoM Windows Download]&lt;br /&gt;
*[https://mattercontrol.appspot.com/downloads/development/ag9zfm1hdHRlcmNvbnRyb2xyOwsSB1Byb2plY3QY7AcMCxINUHVibGljUmVsZWFzZRiAgICwjeuTCgwLEgZVcGxvYWQYgICAsN-jmgoM Mac Download]&lt;br /&gt;
*[https://mattercontrol.appspot.com/downloads/development/ag9zfm1hdHRlcmNvbnRyb2xyQQsSB1Byb2plY3QYgICAiOCSzAsMCxINUHVibGljUmVsZWFzZRiAgICgsdyLCgwLEgZVcGxvYWQYgICAoK3hngoM Linux Download]&lt;br /&gt;
&lt;br /&gt;
=== Changes ===&lt;br /&gt;
&lt;br /&gt;
*Significantly improved tool paths, much better printed parts&lt;br /&gt;
*Improved macro support&lt;br /&gt;
*Improved baby stepping&lt;br /&gt;
*Updated to latest avrdude for improved compatibility with some non-standard boards &lt;br /&gt;
*Improved support for network printing &lt;br /&gt;
*Touch screen mode now works on all platforms&lt;br /&gt;
*New printing screen in touch screen mode&lt;br /&gt;
*Better screen position saving and restoring&lt;br /&gt;
&lt;br /&gt;
==== New translations added ====&lt;br /&gt;
&lt;br /&gt;
*Čeština&lt;br /&gt;
*Dansk&lt;br /&gt;
*Italiano&lt;br /&gt;
*ελληνικά&lt;br /&gt;
*Norsk&lt;br /&gt;
*Русский&lt;br /&gt;
*Română&lt;br /&gt;
*Vlaams&lt;br /&gt;
&lt;br /&gt;
==== Updated existing translations ====&lt;br /&gt;
*English&lt;br /&gt;
*Deutsch&lt;br /&gt;
*Español&lt;br /&gt;
*Français&lt;br /&gt;
*Polski&lt;br /&gt;
*Türkçe&lt;br /&gt;
&lt;br /&gt;
=== Bug Fixes ===&lt;br /&gt;
&lt;br /&gt;
*Increased hardware error reporting&lt;br /&gt;
*Improvements to Repetier communications&lt;br /&gt;
&lt;br /&gt;
== 1.6.2 ==&lt;br /&gt;
&lt;br /&gt;
'''Release Date:''' January 18, 2017&lt;br /&gt;
*[https://mattercontrol.appspot.com/downloads/development/ag9zfm1hdHRlcmNvbnRyb2xyOwsSB1Byb2plY3QY6gcMCxINUHVibGljUmVsZWFzZRiAgIDM446ECgwLEgZVcGxvYWQYgICA3O2njgoM Windows Download]&lt;br /&gt;
*[https://mattercontrol.appspot.com/downloads/development/ag9zfm1hdHRlcmNvbnRyb2xyOwsSB1Byb2plY3QY7AcMCxINUHVibGljUmVsZWFzZRiAgIDQ7biQCgwLEgZVcGxvYWQYgICAsIyyiAoM Mac Download]&lt;br /&gt;
*[https://mattercontrol.appspot.com/downloads/development/ag9zfm1hdHRlcmNvbnRyb2xyQQsSB1Byb2plY3QYgICAiOCSzAsMCxINUHVibGljUmVsZWFzZRiAgICgpIGdCgwLEgZVcGxvYWQYgICAoKL6nwoM Linux Download]&lt;br /&gt;
*[https://github.com/MatterHackers/MatterControl/releases/tag/Releases%2F1.6.2b Source Code]&lt;br /&gt;
&lt;br /&gt;
=== Changes ===&lt;br /&gt;
&lt;br /&gt;
*All printing instructions now sent with checksum&lt;br /&gt;
*Improved macro scripting and macro execution&lt;br /&gt;
*Disconnect and Reconnect does not cancel a print (can still be recovered)&lt;br /&gt;
*Improvements to language for dialogs and menus&lt;br /&gt;
*Record recover count in history&lt;br /&gt;
*Added error messages when saving files fails&lt;br /&gt;
&lt;br /&gt;
=== Bug Fixes ===&lt;br /&gt;
&lt;br /&gt;
*Fixed a problem with controlling multiple extruders that shared temp&lt;br /&gt;
*Fixed problem when changing colors on some dialogs&lt;br /&gt;
*Improved Android stability&lt;br /&gt;
**Switched from HTTP client to WebRequest&lt;br /&gt;
**Improved Queue logic to be more MVC and eliminated crash&lt;br /&gt;
&lt;br /&gt;
== 1.6.1 ==&lt;br /&gt;
&lt;br /&gt;
'''Release Date:''' December 6, 2016&lt;br /&gt;
&lt;br /&gt;
*[https://mattercontrol.appspot.com/downloads/development/ag9zfm1hdHRlcmNvbnRyb2xyOwsSB1Byb2plY3QY6gcMCxINUHVibGljUmVsZWFzZRiAgICMtpiFCgwLEgZVcGxvYWQYgICAzKTWkAsM Windows Download]&lt;br /&gt;
*[https://mattercontrol.appspot.com/downloads/development/ag9zfm1hdHRlcmNvbnRyb2xyOwsSB1Byb2plY3QY7AcMCxINUHVibGljUmVsZWFzZRiAgIDQ4bmcCgwLEgZVcGxvYWQYgICA0KXYjQoM Mac Download]&lt;br /&gt;
*[https://github.com/MatterHackers/MatterControl/releases/tag/Releases%2F1.6.1 Source Code]&lt;br /&gt;
&lt;br /&gt;
=== Changes ===&lt;br /&gt;
&lt;br /&gt;
*Request updated printer list from MatterHackers.com immediately on program startup.&lt;br /&gt;
*Show import printer Wizard after user logs in for the first time after updating.&lt;br /&gt;
&lt;br /&gt;
== 1.6 ==&lt;br /&gt;
&lt;br /&gt;
'''Release Date:''' November 21, 2016&lt;br /&gt;
&lt;br /&gt;
*[https://mattercontrol.appspot.com/downloads/development/ag9zfm1hdHRlcmNvbnRyb2xyOwsSB1Byb2plY3QY6gcMCxINUHVibGljUmVsZWFzZRiAgIC03baCCgwLEgZVcGxvYWQYgICAjIDRlAkM Windows Download]&lt;br /&gt;
*[https://mattercontrol.appspot.com/downloads/development/ag9zfm1hdHRlcmNvbnRyb2xyOwsSB1Byb2plY3QY7AcMCxINUHVibGljUmVsZWFzZRiAgIDQsvmSCgwLEgZVcGxvYWQYgICA0K6XjwoM Mac Download]&lt;br /&gt;
*[https://mattercontrol.appspot.com/downloads/development/ag9zfm1hdHRlcmNvbnRyb2xyQQsSB1Byb2plY3QYgICAiOCSzAsMCxINUHVibGljUmVsZWFzZRiAgIDA0_6ACgwLEgZVcGxvYWQYgICAwJ_IhQoM Linux Download]&lt;br /&gt;
*[https://github.com/MatterHackers/MatterControl/releases/tag/Releases%2F1.6.0 Source Code]&lt;br /&gt;
&lt;br /&gt;
=== New Features ===&lt;br /&gt;
&lt;br /&gt;
*Print Recovery&lt;br /&gt;
**Automatically recover from power failure, disconnection, or crash&lt;br /&gt;
*Printer settings now associated with user account and accessed when logged in&lt;br /&gt;
*Settings changes automatically synced across instances of the application&lt;br /&gt;
*Improved Settings Editor&lt;br /&gt;
**Revert to default profile settings at any time&lt;br /&gt;
**Revert to previous version of settings&lt;br /&gt;
*Improved Quality and Material Editors&lt;br /&gt;
*Improved Export and Import of settings&lt;br /&gt;
*Printer profiles added&lt;br /&gt;
*Calculate filament cost per print&lt;br /&gt;
*Part editing now has undo and redo&lt;br /&gt;
*Latest settings now retrieved the when setting up a new printer&lt;br /&gt;
&lt;br /&gt;
=== Better Print Results ===&lt;br /&gt;
&lt;br /&gt;
*Fill Thin Gaps&lt;br /&gt;
*Expand Thin Edges&lt;br /&gt;
*Perimeter Merging&lt;br /&gt;
*Improved wipe towers&lt;br /&gt;
*Improved support detection and removal&lt;br /&gt;
*Improved seam hiding&lt;br /&gt;
*Convex priming (skirt) loops&lt;br /&gt;
*Better fan speed control&lt;br /&gt;
*Can use G0 instead of G1 for moves if desired&lt;br /&gt;
&lt;br /&gt;
== 1.5.3 ==&lt;br /&gt;
&lt;br /&gt;
'''Release Date:''' May 19, 2016&lt;br /&gt;
&lt;br /&gt;
*[https://mattercontrol.appspot.com/downloads/development/ag9zfm1hdHRlcmNvbnRyb2xyOwsSB1Byb2plY3QY6gcMCxINUHVibGljUmVsZWFzZRiAgICEyriCCgwLEgZVcGxvYWQYgICAhP_3kQoM Windows Download]&lt;br /&gt;
*[https://mattercontrol.appspot.com/downloads/development/ag9zfm1hdHRlcmNvbnRyb2xyOwsSB1Byb2plY3QY7AcMCxINUHVibGljUmVsZWFzZRiAgICQyMOUCgwLEgZVcGxvYWQYgICAkMz3ngoM Mac Download]&lt;br /&gt;
*[https://github.com/MatterHackers/MatterControl/tree/1.5.3 Source Code]&lt;br /&gt;
&lt;br /&gt;
=== New Features ===&lt;br /&gt;
&lt;br /&gt;
*Added profile for the BCN3D Sigma printer &lt;br /&gt;
*Updated JumpStart V1 Printer Profile&lt;br /&gt;
*Added printer profile for the Lulzbot TAZ 6&lt;br /&gt;
&lt;br /&gt;
== 1.5.2 ==&lt;br /&gt;
&lt;br /&gt;
'''Release Date:''' April 29, 2016&lt;br /&gt;
&lt;br /&gt;
*[https://mattercontrol.appspot.com/downloads/development/ag9zfm1hdHRlcmNvbnRyb2xyOwsSB1Byb2plY3QY6gcMCxINUHVibGljUmVsZWFzZRiAgIC43e2YCQwLEgZVcGxvYWQYgICA-PnGhwoM Windows Download]&lt;br /&gt;
*[https://mattercontrol.appspot.com/downloads/development/ag9zfm1hdHRlcmNvbnRyb2xyOwsSB1Byb2plY3QY7AcMCxINUHVibGljUmVsZWFzZRiAgIDgs8GOCgwLEgZVcGxvYWQYgICA4K-MnwoM Mac Download]&lt;br /&gt;
*[https://github.com/MatterHackers/MatterControl/releases/tag/Releases%2F1.5.2 Source Code]&lt;br /&gt;
&lt;br /&gt;
=== Bug Fixes ===&lt;br /&gt;
&lt;br /&gt;
*Fixed Android keyboard crash on T10 tablet&lt;br /&gt;
&lt;br /&gt;
=== Other ===&lt;br /&gt;
&lt;br /&gt;
*Updated printer profiles&lt;br /&gt;
&lt;br /&gt;
== 1.5 ==&lt;br /&gt;
&lt;br /&gt;
'''Release Date:''' February 19, 2016&lt;br /&gt;
&lt;br /&gt;
*[https://mattercontrol.appspot.com/downloads/development/ag9zfm1hdHRlcmNvbnRyb2xyOwsSB1Byb2plY3QY6gcMCxINUHVibGljUmVsZWFzZRiAgICY8MOJCgwLEgZVcGxvYWQYgICA2JzcngkM Windows Download]&lt;br /&gt;
*[https://mattercontrol.appspot.com/downloads/development/ag9zfm1hdHRlcmNvbnRyb2xyOwsSB1Byb2plY3QY7AcMCxINUHVibGljUmVsZWFzZRiAgIDgqs2MCgwLEgZVcGxvYWQYgICA4I74jwoM Mac Download]&lt;br /&gt;
*[https://mattercontrol.appspot.com/downloads/development/ag9zfm1hdHRlcmNvbnRyb2xyQQsSB1Byb2plY3QYgICAiOCSzAsMCxINUHVibGljUmVsZWFzZRiAgIDA-PaGCgwLEgZVcGxvYWQYgICAwPi9jgoM Linux Download]&lt;br /&gt;
*[https://github.com/MatterHackers/MatterControl/releases/tag/Releases%2F1.5.0 Source Code]&lt;br /&gt;
&lt;br /&gt;
=== New Features ===&lt;br /&gt;
&lt;br /&gt;
*A new, vastly improved, [[Settings/General/Support Material|support system]]&lt;br /&gt;
*[[Controls/Movement#Axis_Motion_Buttons|Position tuning while printing (aka baby stepping)]]&lt;br /&gt;
*Ability to slice merged/intersecting parts&lt;br /&gt;
*Improved seam-hiding while printing&lt;br /&gt;
*Ability to cancel printing while heating&lt;br /&gt;
*[[Settings/Filament/Filament/Retraction/Retract_When_Changing_Islands|Setting to retract when changing islands]]&lt;br /&gt;
*Made it possible to have the first perimeter have a different extrusion width to compensate for more accurate small holes&lt;br /&gt;
*Added top infill speed&lt;br /&gt;
*Add support for closing MatterControl while printing&lt;br /&gt;
*Put in reporting of hardware errors&lt;br /&gt;
*Improved the local search feature&lt;br /&gt;
*Added visual indicator for http failures&lt;br /&gt;
*Made it possible to render [[Layer_View#Transparent|translucent extrusion paths]]&lt;br /&gt;
*Support drag and drop onto the settings widget will still add to [[Queue]]&lt;br /&gt;
*Fixed the [[Controls/Macros|macro window]] to grow in Y&lt;br /&gt;
*Implemented scroll wheel in the [[Options/G-Code Terminal|G-Code Terminal]]&lt;br /&gt;
*Added user configurable [[Library]] folders&lt;br /&gt;
*Finished Braille 2 functionality for [[Braille Builder]]&lt;br /&gt;
*Velocity during rotation of [[3D View]]&lt;br /&gt;
*Improved MatterControl Touch printing&lt;br /&gt;
*Improved Android soft keyboard support&lt;br /&gt;
*Only process the most outside perimeter with [[Settings/General/Layers-Surface/Outer_Surface_-_Perimeters/Spiral_Vase|Spiral Vase]]&lt;br /&gt;
*Fixed slicing to handle badly wound polygons&lt;br /&gt;
&lt;br /&gt;
=== Bug Fixes ===&lt;br /&gt;
&lt;br /&gt;
*Now reporting bed and extruder heating state for Repetier firmware&lt;br /&gt;
*You can now type a partial entry to a count or mm field and not have it get messed up if you are slow&lt;br /&gt;
*Make sure we turn off all heaters when we shut down&lt;br /&gt;
*Ability to save to the Queue on [[3D_View/Edit#Save_As|Save As]]&lt;br /&gt;
*Suppress error reporting and abort on COM Access Denied errors&lt;br /&gt;
*AMF save progress reporting&lt;br /&gt;
*Fixed first layer speed issue&lt;br /&gt;
*Better thread safety&lt;br /&gt;
*Made the leveling page easier to use on MatterControl Touch&lt;br /&gt;
*Made message box easier to use on MatterControl Touch&lt;br /&gt;
*Allow invalid image file formats to return a load failure rather than throw an assert&lt;br /&gt;
*Group objects move correctly on the bed when scaled&lt;br /&gt;
*Made it possible to edit the 3 point leveling positions even after you have set up 7 or 13 point leveling&lt;br /&gt;
*Making the save feature always go through a separate file so that we don't get collisions with files in use&lt;br /&gt;
*No crashing on corrupt zip files&lt;br /&gt;
*Fixed bug when opening and closing EEProm window&lt;br /&gt;
*Restore Clear Cache functionality&lt;br /&gt;
*Loading large GCode file no longer pauses Android&lt;br /&gt;
*Loading Repetier EEProm settings no longer pauses Android&lt;br /&gt;
*Fixed issue where [[Settings/General/Infill/Advanced/Infill_Overlap|Infill Overlap]] was not being used correctly&lt;br /&gt;
&lt;br /&gt;
=== See also === &lt;br /&gt;
&lt;br /&gt;
[https://www.matterhackers.com/news/mattercontrol-1-5-released MatterControl 1.5 Released] article on MatterHackers.com&lt;br /&gt;
&lt;br /&gt;
== 1.4.1 ==&lt;br /&gt;
&lt;br /&gt;
'''Release Date:''' November 16, 2015&lt;br /&gt;
&lt;br /&gt;
Notes: [[MatterControl Touch]] only&lt;br /&gt;
&lt;br /&gt;
=== Minor Changes ===&lt;br /&gt;
*Enabled new seam hiding code in MatterSlice&lt;br /&gt;
*Enabled 'Pinch to Zoom' on touchscreens&lt;br /&gt;
*Reset view button on model and gcode views&lt;br /&gt;
*Improved STL repair, added handling for bad polygon winding&lt;br /&gt;
*Added Outside perimeter extrusion width setting (Filament -&amp;gt; Extrusion)&lt;br /&gt;
*Added Top Solid Infill speed to MatterSlice&lt;br /&gt;
*Improved to Braille Grade 2 support in Braille Builder&lt;br /&gt;
*Made print leveling dialog easier to use on Touch&lt;br /&gt;
*Made message reports easier to read on Touch&lt;br /&gt;
=== Bug Fixes === &lt;br /&gt;
*Improved showing and hiding of the Android keyboard&lt;br /&gt;
*Better startup behavior when a printer plugged in&lt;br /&gt;
*Fixed issue where grouped objects were not moving when scaled&lt;br /&gt;
*Android now resets boards on connect&lt;br /&gt;
*Fixed issue where Infill Overlap was not being used correctly&lt;br /&gt;
*Fixed issue with empty Start GCode&lt;br /&gt;
*General stability improvements&lt;br /&gt;
&lt;br /&gt;
== 1.4.0 ==&lt;br /&gt;
&lt;br /&gt;
'''Release Date:''' October 5, 2015&lt;br /&gt;
&lt;br /&gt;
*[https://mattercontrol.appspot.com/downloads/development/ag9zfm1hdHRlcmNvbnRyb2xyOwsSB1Byb2plY3QY6gcMCxINUHVibGljUmVsZWFzZRiAgICI-uWHCgwLEgZVcGxvYWQYgICAiJmliwoM Windows Download]&lt;br /&gt;
*[https://mattercontrol.appspot.com/downloads/development/ag9zfm1hdHRlcmNvbnRyb2xyOwsSB1Byb2plY3QY7AcMCxINUHVibGljUmVsZWFzZRiAgICgjoKDCgwLEgZVcGxvYWQYgICAoMn-kwoM Mac Download]&lt;br /&gt;
*[https://github.com/MatterHackers/MatterControl/releases/tag/Releases%2F1.4.0 Source Code]&lt;br /&gt;
&lt;br /&gt;
=== New Features === &lt;br /&gt;
*Added Cloud Design Library - automatic design file syncing&lt;br /&gt;
*Expanded general library management tools (folder creation, item rename)&lt;br /&gt;
*Added options for sharing designs&lt;br /&gt;
*Added support for X3G 3D printers (added new profiles)&lt;br /&gt;
*Added ability to start/stop prints remotely and remotely add items to queue&lt;br /&gt;
*Added 'Braille Builder' design add-on for creation of 3d printable braille labels&lt;br /&gt;
&lt;br /&gt;
== 1.3.0 ==&lt;br /&gt;
&lt;br /&gt;
'''Release Date:''' June 23, 2015&lt;br /&gt;
&lt;br /&gt;
*[https://mattercontrol.appspot.com/downloads/development/ag9zfm1hdHRlcmNvbnRyb2xyOwsSB1Byb2plY3QY6gcMCxINUHVibGljUmVsZWFzZRiAgICwgO6SCgwLEgZVcGxvYWQYgICAsLiahQoM Windows Download]&lt;br /&gt;
*[https://mattercontrol.appspot.com/downloads/development/ag9zfm1hdHRlcmNvbnRyb2xyOwsSB1Byb2plY3QY7AcMCxINUHVibGljUmVsZWFzZRiAgIDA58SYCgwLEgZVcGxvYWQYgICAoOC5ngoM Mac Download]&lt;br /&gt;
*[https://github.com/MatterHackers/MatterControl/releases/tag/Releases%2F1.3.0 Source Code]&lt;br /&gt;
&lt;br /&gt;
=== New Features === &lt;br /&gt;
*Auto arrange has been improved&lt;br /&gt;
*Added profiles for MakerGear, PrintSpace, Huxley&lt;br /&gt;
*Adding Touchscreen mode for touchscreen devices&lt;br /&gt;
*Support for ATX power hardware&lt;br /&gt;
*Improved Basic and Standard UI settings&lt;br /&gt;
*Perimeters, Bottom and Top layers can all be set in millimeters&lt;br /&gt;
*Perimeters can now be printed outer layer first or last&lt;br /&gt;
&lt;br /&gt;
=== Minor Changes === &lt;br /&gt;
*Updated Lulzbot settings&lt;br /&gt;
*Added tool change g-code&lt;br /&gt;
*Added crash reporting to alpha and beta channels&lt;br /&gt;
*Better default printer naming&lt;br /&gt;
*Fixed slicing problems with very complex models during top and bottom layer creation.&lt;br /&gt;
&lt;br /&gt;
=== Bug Fixes === &lt;br /&gt;
*Fixed issue with spiral vase setting&lt;br /&gt;
*Fixed bug with dual extrusion offset (offset values were limited to integer values)&lt;br /&gt;
*Fixed slicing problems with very complex models during top and bottom layer creation&lt;br /&gt;
*Improved reset connection&lt;br /&gt;
*Keep 3D views up to date with model changes&lt;br /&gt;
*Fix to end gcode processing not doing replacements&lt;br /&gt;
*Improved error messages&lt;br /&gt;
*Fixed handling of bad AMF loading &lt;br /&gt;
*Better handling of connection not available&lt;br /&gt;
*Fixed a bug in the queue while printing and trying to change items1&lt;br /&gt;
*Fixes for international number formatting&lt;br /&gt;
*Improved clarity of redundant slice settings naming&lt;br /&gt;
*Fixed a problem with first layer extrusion width&lt;br /&gt;
&lt;br /&gt;
=== MatterSlice ===&lt;br /&gt;
&lt;br /&gt;
==== Features ====&lt;br /&gt;
*Added a wipe before retract feature&lt;br /&gt;
*Made it possible to print the raft with any extruder&lt;br /&gt;
&lt;br /&gt;
==== Bug Fixes ====&lt;br /&gt;
*Filter move writes better&lt;br /&gt;
*Spiral Vase now ignores confounding settings when set&lt;br /&gt;
*Outer perimeters can no longer overlap themselves&lt;br /&gt;
*Improved loop clipping&lt;br /&gt;
*Put in tool change code&lt;br /&gt;
*Print the skirt before the raft&lt;br /&gt;
*Hex infill could sometimes miss a bottom edge&lt;br /&gt;
*Fixed a freeze bug when creating top and bottom layers for complex parts&lt;br /&gt;
*Make sure we retract on layer change if required&lt;br /&gt;
*Extruder offset previously could only be an integer value (it can now be a decimal value as well)&lt;br /&gt;
&lt;br /&gt;
== 1.2.2 ==&lt;br /&gt;
&lt;br /&gt;
'''Release Date:''' March 6, 2015&lt;br /&gt;
&lt;br /&gt;
*[https://mattercontrol.appspot.com/downloads/development/ag9zfm1hdHRlcmNvbnRyb2xyOwsSB1Byb2plY3QY6gcMCxINUHVibGljUmVsZWFzZRiAgIDg7O2cCQwLEgZVcGxvYWQYgICA4IO_lgoM Windows Download]&lt;br /&gt;
*[https://mattercontrol.appspot.com/downloads/development/ag9zfm1hdHRlcmNvbnRyb2xyOwsSB1Byb2plY3QY7AcMCxINUHVibGljUmVsZWFzZRiAgIDAjJCPCwwLEgZVcGxvYWQYgICAwN74kAoM Mac Download]&lt;br /&gt;
*[https://github.com/MatterHackers/MatterControl/releases/tag/Releases%2F1.2.2 Source Code]&lt;br /&gt;
&lt;br /&gt;
=== New Features === &lt;br /&gt;
*Improved printer connection stability&lt;br /&gt;
*Updated Serial Driver for RAMPS&lt;br /&gt;
*Added profiles for Revolution 3D, Solidoodle&lt;br /&gt;
*Added hexagon infill&lt;br /&gt;
*Added the ability to turn on 'Reset Connection' works as an e-stop&lt;br /&gt;
	&lt;br /&gt;
=== Minor Changes === &lt;br /&gt;
*Bug fixes&lt;br /&gt;
*Better memory reporting and stability&lt;br /&gt;
*Fixed a bug with temp being set repeatedly&lt;br /&gt;
*Using sub-modules (easier to build from GitHub)&lt;br /&gt;
&lt;br /&gt;
== 1.2.1 ==&lt;br /&gt;
&lt;br /&gt;
'''Release Date:''' January 28, 2015&lt;br /&gt;
&lt;br /&gt;
* [https://mattercontrol.appspot.com/downloads/development/ag9zfm1hdHRlcmNvbnRyb2xyOwsSB1Byb2plY3QY6gcMCxINUHVibGljUmVsZWFzZRiAgICgkqidCgwLEgZVcGxvYWQYgICA4KyQhgoM Windows Download]&lt;br /&gt;
* [https://mattercontrol.appspot.com/downloads/development/ag9zfm1hdHRlcmNvbnRyb2xyOwsSB1Byb2plY3QY7AcMCxINUHVibGljUmVsZWFzZRiAgICA26OTCgwLEgZVcGxvYWQYgICAwPTHlgoM Mac Download]&lt;br /&gt;
* [https://github.com/MatterHackers/MatterControl/releases/tag/Releases%2F1.2.1 Source Code]&lt;br /&gt;
&lt;br /&gt;
=== New Features === &lt;br /&gt;
*Pop Out Windows - now you can show settings and controls all the time&lt;br /&gt;
*Ability to send parts to other computers and MatterControl Touch&lt;br /&gt;
*We now display a big 3D view on startup&lt;br /&gt;
*Better connection handling&lt;br /&gt;
*Support for many more printers&lt;br /&gt;
*Added a Simple mode to slice settings&lt;br /&gt;
	&lt;br /&gt;
=== Minor Changes === &lt;br /&gt;
*External Perimeter First slice setting&lt;br /&gt;
*Improved edge detection during slicing&lt;br /&gt;
*Select Raft Extruder&lt;br /&gt;
*Vertical offsets in edit mode&lt;br /&gt;
*Faster editing of models&lt;br /&gt;
*More accurate gcode generation&lt;br /&gt;
*More accurate support angles&lt;br /&gt;
*Better slice settings help and defaults&lt;br /&gt;
*Fixed some very obscure errors with Print Leveling being too high sometimes&lt;br /&gt;
*Better detection of co-linear edges (highly tessellated round things work better)&lt;br /&gt;
&lt;br /&gt;
== 1.2 ==&lt;br /&gt;
&lt;br /&gt;
'''Release Date:''' November 19, 2014&lt;br /&gt;
&lt;br /&gt;
*[https://mattercontrol.appspot.com/downloads/development/ag9zfm1hdHRlcmNvbnRyb2xyOwsSB1Byb2plY3QY6gcMCxINUHVibGljUmVsZWFzZRiAgICg3KGHCQwLEgZVcGxvYWQYgICAoOLjlQoM Windows Download]&lt;br /&gt;
*[https://mattercontrol.appspot.com/downloads/development/ag9zfm1hdHRlcmNvbnRyb2xyOwsSB1Byb2plY3QY7AcMCxINUHVibGljUmVsZWFzZRiAgICAy6-BCgwLEgZVcGxvYWQYgICAgNvunQoM Mac Download]&lt;br /&gt;
&lt;br /&gt;
=== New Features === &lt;br /&gt;
*Dual-Extrusion Support&lt;br /&gt;
*Simple Multi-Material Workflow&lt;br /&gt;
*Advanced Support Material Generation&lt;br /&gt;
*New Touch-Friendly UI&lt;br /&gt;
*Signed Windows Drivers (no more Windows 8 pain)&lt;br /&gt;
*AMF support&lt;br /&gt;
	&lt;br /&gt;
=== Minor Changes === &lt;br /&gt;
*Improved Pausing (remembers and returns to pause position)&lt;br /&gt;
*Support for @pause and M226 (user requested pause from gcode)&lt;br /&gt;
*MatterSlice&lt;br /&gt;
**Skirt always draws from the outside&lt;br /&gt;
&lt;br /&gt;
== 1.1.3 ==&lt;br /&gt;
&lt;br /&gt;
'''Release Date:''' August 8, 2014&lt;br /&gt;
&lt;br /&gt;
*[https://mattercontrol.appspot.com/downloads/development/ag9zfm1hdHRlcmNvbnRyb2xyOwsSB1Byb2plY3QY6gcMCxINUHVibGljUmVsZWFzZRiAgIDAxOeTCgwLEgZVcGxvYWQYgICAwMnShQoM Windows Download] - last XP compatible build&lt;br /&gt;
*[https://mattercontrol.appspot.com/downloads/development/ag9zfm1hdHRlcmNvbnRyb2xyOwsSB1Byb2plY3QY7AcMCxINUHVibGljUmVsZWFzZRiAgICA1pSNCgwLEgZVcGxvYWQYgICAgLG7igoM Mac Download]&lt;br /&gt;
*[https://github.com/MatterHackers/MatterControl/releases/tag/Releases%2F1.1.3 Source Code]&lt;br /&gt;
&lt;br /&gt;
=== New Features === &lt;br /&gt;
*Updated to Slic3r 1.1.7&lt;br /&gt;
*MatterSlice significantly improved&lt;br /&gt;
**Support can now have interface layers&lt;br /&gt;
**Many bugs and performance improvements&lt;br /&gt;
*New 3D Display options (outline view)&lt;br /&gt;
*MakerBot X3G support now available (beta)&lt;br /&gt;
*Added Turkish translation&lt;br /&gt;
	&lt;br /&gt;
=== Minor Changes: === &lt;br /&gt;
*Make sure the 3D views always match the current printer size and shape&lt;br /&gt;
*Improved 3D GCode view (more display options)&lt;br /&gt;
*Faster Mesh and GCode loading&lt;br /&gt;
*New driver for RoBo 3D&lt;br /&gt;
*Made Smoothieboards work better&lt;br /&gt;
&lt;br /&gt;
== 1.1.2 ==&lt;br /&gt;
&lt;br /&gt;
'''Release Date:''' July 22, 2014&lt;br /&gt;
&lt;br /&gt;
*[https://mattercontrol.appspot.com/downloads/development/ag9zfm1hdHRlcmNvbnRyb2xyOwsSB1Byb2plY3QY6gcMCxINUHVibGljUmVsZWFzZRiAgICA49WLCgwLEgZVcGxvYWQYgICAwKi2gwkM Windows Download]&lt;br /&gt;
*[https://mattercontrol.appspot.com/downloads/development/ag9zfm1hdHRlcmNvbnRyb2xyOwsSB1Byb2plY3QY7AcMCxINUHVibGljUmVsZWFzZRiAgICAotGHCgwLEgZVcGxvYWQYgICAgKaJlQoM Mac Download]&lt;br /&gt;
*[https://github.com/MatterHackers/MatterControl/releases/tag/Releases%2F1.1.2 Source Code]&lt;br /&gt;
&lt;br /&gt;
=== New Features === &lt;br /&gt;
*3D GCode View&lt;br /&gt;
*Cloud Monitoring: While logged in, printer status viewable from the web&lt;br /&gt;
*SD Card Support: Allows you to print from and view/edit the contents of the on-board SD Card&lt;br /&gt;
*Triangle infill in MatterSlice, for incredibly strong parts&lt;br /&gt;
&lt;br /&gt;
=== Minor Changes === &lt;br /&gt;
*Minor UI fixes (ex. added scroll bars to slice presets)&lt;br /&gt;
*Added 'Preheat' temperature preset - sets temp to current slice settings&lt;br /&gt;
*Fixed slice implementation of Raft settings. It was not putting in correct spacing&lt;br /&gt;
*Fixed issue with update download not starting.&lt;br /&gt;
*Fixed issue with auto-connect causing start-up crash (on Printrboards specifically)&lt;br /&gt;
&lt;br /&gt;
== 1.1.1 ==&lt;br /&gt;
&lt;br /&gt;
'''Release Date:''' May 27, 2014&lt;br /&gt;
&lt;br /&gt;
*[https://mattercontrol.appspot.com/downloads/development/ag9zfm1hdHRlcmNvbnRyb2xyOwsSB1Byb2plY3QY6gcMCxINUHVibGljUmVsZWFzZRiAgICApamKCgwLEgZVcGxvYWQYgICAgMOGmwsM Windows Download]&lt;br /&gt;
*[https://mattercontrol.appspot.com/downloads/development/ag9zfm1hdHRlcmNvbnRyb2xyOwsSB1Byb2plY3QY7AcMCxINUHVibGljUmVsZWFzZRiAgICA7KuBCgwLEgZVcGxvYWQYgICAgMKTnAoM Mac Download]&lt;br /&gt;
*[https://github.com/MatterHackers/MatterControl/releases/tag/Releases%2F1.1.1 Source Code]&lt;br /&gt;
&lt;br /&gt;
=== New Features === &lt;br /&gt;
*New Advanced Raft in MatterSlice&lt;br /&gt;
*GCode playback during printing&lt;br /&gt;
	&lt;br /&gt;
=== Minor Changes === &lt;br /&gt;
*Independent Axis Scaling Improved&lt;br /&gt;
*Fixed a bug in Macros being sent in reverse order&lt;br /&gt;
*Better international support (&lt;br /&gt;
*Bug fixes and performance improvements&lt;br /&gt;
&lt;br /&gt;
== 1.1.0 ==&lt;br /&gt;
&lt;br /&gt;
'''Release Date:''' May 14, 2014&lt;br /&gt;
&lt;br /&gt;
*[https://mattercontrol.appspot.com/downloads/development/ag9zfm1hdHRlcmNvbnRyb2xyOwsSB1Byb2plY3QY6gcMCxINUHVibGljUmVsZWFzZRiAgICA-YaUCQwLEgZVcGxvYWQYgICAgKX4nQkM Windows Download]&lt;br /&gt;
*[https://mattercontrol.appspot.com/downloads/development/ag9zfm1hdHRlcmNvbnRyb2xyOwsSB1Byb2plY3QY7AcMCxINUHVibGljUmVsZWFzZRiAgICArNeKCgwLEgZVcGxvYWQYgICAgOz6lwsM Mac Download]&lt;br /&gt;
*[https://github.com/MatterHackers/MatterControl/releases/tag/Releases%2F1.1.0 Source Code]&lt;br /&gt;
&lt;br /&gt;
=== New Features === &lt;br /&gt;
*MatterSlice : A new high quality, high speed slicing engine by MatterHackers&lt;br /&gt;
*Material/Quality Presets : Layers settings to that modify the base settings&lt;br /&gt;
*Widescreen Mode&lt;br /&gt;
*Expanded Themes&lt;br /&gt;
*Image Converter : A new tool that lets you change images into printable models&lt;br /&gt;
*Print History updates and improvements&lt;br /&gt;
&lt;br /&gt;
=== Minor Changes === &lt;br /&gt;
*Pause, cancel, resume functionality can now be assigned custom GCode.&lt;br /&gt;
*Added visualization for retraction and partial path viewing to GCode view. &lt;br /&gt;
*When parts are repositioned in the plate editor, the offsets are now preserved.&lt;br /&gt;
*Localization support has been added. We'll be integrating translations as they become available.&lt;br /&gt;
*Saving part file edits is now significantly faster.&lt;br /&gt;
**Loading images is now faster (uses caching).&lt;br /&gt;
**Many bug fixes and performance improvements&lt;br /&gt;
&lt;br /&gt;
[[Category:General Information]]&lt;br /&gt;
[[Category:Development]]&lt;/div&gt;</summary>
		<author><name>Tanderson</name></author>	</entry>

	<entry>
		<id>http://wiki.mattercontrol.com/index.php?title=SETTINGS/Filament/Retraction/While_Printing/Minimum_Extrusion_Requiring_Retraction&amp;diff=4220</id>
		<title>SETTINGS/Filament/Retraction/While Printing/Minimum Extrusion Requiring Retraction</title>
		<link rel="alternate" type="text/html" href="http://wiki.mattercontrol.com/index.php?title=SETTINGS/Filament/Retraction/While_Printing/Minimum_Extrusion_Requiring_Retraction&amp;diff=4220"/>
				<updated>2019-05-21T00:29:34Z</updated>
		
		<summary type="html">&lt;p&gt;Tanderson: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Migrated|slice-settings/filament/retraction#minimum-extrusion-requiring-retraction}}&lt;br /&gt;
{{Slice Settings&lt;br /&gt;
&lt;br /&gt;
|The minimum length of filament that must be extruded before a retraction can occur.|*millimeters (mm)&lt;br /&gt;
&lt;br /&gt;
Can be zero.|&lt;br /&gt;
&lt;br /&gt;
=== mm ===&lt;br /&gt;
&lt;br /&gt;
In this example, 1.5 mm of filament must be extruded before a retraction can occur.}}&lt;/div&gt;</summary>
		<author><name>Tanderson</name></author>	</entry>

	<entry>
		<id>http://wiki.mattercontrol.com/index.php?title=SETTINGS/Filament/Retraction/While_Printing/Retract_When_Changing_Islands&amp;diff=4219</id>
		<title>SETTINGS/Filament/Retraction/While Printing/Retract When Changing Islands</title>
		<link rel="alternate" type="text/html" href="http://wiki.mattercontrol.com/index.php?title=SETTINGS/Filament/Retraction/While_Printing/Retract_When_Changing_Islands&amp;diff=4219"/>
				<updated>2019-05-21T00:03:50Z</updated>
		
		<summary type="html">&lt;p&gt;Tanderson: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Migrated|slice-settings/filament/retraction#retract-when-changing-islands}}&lt;br /&gt;
{{Slice Settings&lt;br /&gt;
&lt;br /&gt;
|Force a retraction when moving between islands (distinct parts on the layer).|*Boolean|&lt;br /&gt;
&lt;br /&gt;
=== Boolean ===&lt;br /&gt;
&lt;br /&gt;
The check box is checked to use the function.}}&lt;br /&gt;
&lt;br /&gt;
The check box is unchecked to leave the function unused.&lt;br /&gt;
&lt;br /&gt;
[[File:{{SUBPAGENAME}}-ss-ex1.png]]&lt;/div&gt;</summary>
		<author><name>Tanderson</name></author>	</entry>

	<entry>
		<id>http://wiki.mattercontrol.com/index.php?title=Main_Page&amp;diff=4218</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="http://wiki.mattercontrol.com/index.php?title=Main_Page&amp;diff=4218"/>
				<updated>2019-05-17T01:32:01Z</updated>
		
		<summary type="html">&lt;p&gt;Tanderson: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;center&amp;gt;&lt;br /&gt;
&amp;lt;table cellspacing=&amp;quot;0&amp;quot; cellpadding=&amp;quot;0&amp;quot; border=&amp;quot;0&amp;quot; style=&amp;quot;background: transparent; margin-top:0.5em;border:1px #b52 solid;padding:0.5em;background-color: #fef7f5&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td valign=&amp;quot;top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;span style=&amp;quot;position: relative; top: -2px;&amp;quot;&amp;gt;[[File:Merge-arrow-3.png|60px|Merge|link=]]&amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&lt;br /&gt;
'''Migrating:''' For MatterControl 2.0 the MatterControl documentation is moving to [https://www.matterhackers.com/mattercontrol/support/ matterhackers.com/mattercontrol/support/].&amp;lt;br&amp;gt;&lt;br /&gt;
This wiki is being kept for historical reference only. The information here should be considered outdated.&lt;br /&gt;
&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td valign=&amp;quot;top&amp;quot; style=&amp;quot;padding-left:0.5em;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&amp;lt;/center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{DISPLAYTITLE:Welcome to the MatterControl Manual!}}&lt;br /&gt;
'''&amp;lt;big&amp;gt;The source for MatterControl documentation&amp;lt;/big&amp;gt;'''&lt;br /&gt;
&lt;br /&gt;
MatterControl is an open-source program designed to control and enhance the desktop 3D printing experience. http://www.mattercontrol.com/&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;nomobile&amp;quot;&amp;gt;&lt;br /&gt;
{| style=&amp;quot;height: 100px;width: 50%;text-align: center;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| [[File:Download-MC.png|296px|link=Downloads]] || [[File:Get Started.png|link=Getting Started]] || [[File:Slice Settings.png|link=SETTINGS]]&lt;br /&gt;
|-&lt;br /&gt;
| '''[[Downloads|DOWNLOAD MatterControl]]''' || '''[[Getting Started|GET STARTED with MatterControl]]''' || '''[[SETTINGS|EXPLORE Slice Settings]]'''&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;z-index:1;border-top-width:2px;border-bottom-width:2px;border-left-width:2px;border-right-width:2px;border-top-left-radius:0px;border-top-right-radius:0px;border-bottom-right-radius:0px;border-bottom-left-radius:0px;border-color:#d9d9d9;border-style:solid;background-color:#ebebeb;background-size:auto;background-repeat:repeat;background-position:center center;color:#000000;font-size:14px;font-weight:normal;font-style:normal;font-family:Arial;text-align:center;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px;left:0px;top:455px;position:absolute;width:100%;height:45px;&amp;quot; &amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;z-index:1;border-top-width:2px;border-bottom-width:2px;border-left-width:2px;border-right-width:2px;border-top-left-radius:0px;border-top-right-radius:0px;border-bottom-right-radius:0px;border-bottom-left-radius:0px;border-color:#d9d9d9;border-style:solid;background-color:#ebebeb;background-size:auto;background-repeat:repeat;background-position:center center;color:#000000;font-size:14px;font-weight:normal;font-style:normal;font-family:Arial;text-align:center;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px;left:0px;top:734px;position:absolute;width:100%;height:45px;&amp;quot; &amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;z-index:1;border-top-width:2px;border-bottom-width:2px;border-left-width:2px;border-right-width:2px;border-top-left-radius:0px;border-top-right-radius:0px;border-bottom-right-radius:0px;border-bottom-left-radius:0px;border-color:#d9d9d9;border-style:solid;background-color:#ebebeb;background-size:auto;background-repeat:repeat;background-position:center center;color:#000000;font-size:14px;font-weight:normal;font-style:normal;font-family:Arial;text-align:center;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px;left:0px;top:871px;position:absolute;width:100%;height:45px;&amp;quot; &amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;z-index:1;border-top-width:2px;border-bottom-width:2px;border-left-width:2px;border-right-width:2px;border-top-left-radius:0px;border-top-right-radius:0px;border-bottom-right-radius:0px;border-bottom-left-radius:0px;border-color:#d9d9d9;border-style:solid;background-color:#ebebeb;background-size:auto;background-repeat:repeat;background-position:center center;color:#000000;font-size:14px;font-weight:normal;font-style:normal;font-family:Arial;text-align:center;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px;left:0px;top:1020px;position:absolute;width:100%;height:45px;&amp;quot; &amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;left:18px;top:458px;z-index:10016;overflow:visible;color:;text-align:left;line-height:normal;font-weight:normal;font-style:normal;font-family:Arial;border-width:0px;border-style:solid;position:absolute;width:200px;height:29px;&amp;quot; &amp;gt;&amp;lt;p class=&amp;quot;wysiwyg-font-type-Montserrat&amp;quot; style=&amp;quot;font-size: 20px;&amp;quot;&amp;gt;&amp;lt;b&amp;gt;Features&amp;lt;/b&amp;gt;&amp;lt;br&amp;gt;&amp;lt;/p&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;left:18px;top:737px;z-index:10016;overflow:visible;color:;text-align:left;line-height:normal;font-weight:normal;font-style:normal;font-family:Arial;border-width:0px;border-style:solid;position:absolute;width:200px;height:29px;&amp;quot; &amp;gt;&amp;lt;p class=&amp;quot;wysiwyg-font-type-Montserrat&amp;quot; style=&amp;quot;font-size: 20px;&amp;quot;&amp;gt;&amp;lt;b&amp;gt;Slice Engines&amp;lt;/b&amp;gt;&amp;lt;br&amp;gt;&amp;lt;/p&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;left:18px;top:874px;z-index:10016;overflow:visible;color:;text-align:left;line-height:normal;font-weight:normal;font-style:normal;font-family:Arial;border-width:0px;border-style:solid;position:absolute;width:200px;height:29px;&amp;quot; &amp;gt;&amp;lt;p class=&amp;quot;wysiwyg-font-type-Montserrat&amp;quot; style=&amp;quot;font-size: 20px;&amp;quot;&amp;gt;&amp;lt;b&amp;gt;Design Tools&amp;lt;/b&amp;gt;&amp;lt;br&amp;gt;&amp;lt;/p&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;left:18px;top:1023px;z-index:10016;overflow:visible;color:;text-align:left;line-height:normal;font-weight:normal;font-style:normal;font-family:Arial;border-width:0px;border-style:solid;position:absolute;width:200px;height:29px;&amp;quot; &amp;gt;&amp;lt;p class=&amp;quot;wysiwyg-font-type-Montserrat&amp;quot; style=&amp;quot;font-size: 20px;&amp;quot;&amp;gt;&amp;lt;b&amp;gt;Troubleshooting&amp;lt;/b&amp;gt;&amp;lt;br&amp;gt;&amp;lt;/p&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
{|&lt;br /&gt;
|-&lt;br /&gt;
|       |&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&lt;br /&gt;
| style=&amp;quot;vertical-align:top;width: 300px;&amp;quot; | &lt;br /&gt;
*[[3D VIEW]]&lt;br /&gt;
*[[CONTROLS]]&lt;br /&gt;
*[[History|HISTORY]]&lt;br /&gt;
*[[LAYER VIEW]]&lt;br /&gt;
*[[LIBRARY]]&lt;br /&gt;
*[[OPTIONS]]&lt;br /&gt;
*[[QUEUE]]&lt;br /&gt;
*[[SETTINGS]]&lt;br /&gt;
*[[Cloud|CLOUD SYNC]]&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
{|&lt;br /&gt;
|-&lt;br /&gt;
|       |&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&lt;br /&gt;
| style=&amp;quot;vertical-align:top;width: 300px;&amp;quot; | &lt;br /&gt;
*[[MatterSlice]]&lt;br /&gt;
*[[CuraEngine]]&lt;br /&gt;
*[[Slic3r]]&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
{|&lt;br /&gt;
|-&lt;br /&gt;
|       |&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&lt;br /&gt;
| style=&amp;quot;vertical-align:top;width: 300px;&amp;quot; | &amp;lt;DynamicPageList&amp;gt;&lt;br /&gt;
category             = Design Tools&lt;br /&gt;
ordermethod          = categorysortkey&lt;br /&gt;
order                = ascending&lt;br /&gt;
&amp;lt;/DynamicPageList&amp;gt; &lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
{|&lt;br /&gt;
|-&lt;br /&gt;
|       |&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&lt;br /&gt;
| style=&amp;quot;vertical-align:top;width: 300px;&amp;quot; |  &amp;lt;DynamicPageList&amp;gt;&lt;br /&gt;
category             = Troubleshooting&lt;br /&gt;
ordermethod          = categorysortkey&lt;br /&gt;
order                = ascending&lt;br /&gt;
namespace            = main&lt;br /&gt;
&amp;lt;/DynamicPageList&amp;gt; &lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;/div&gt;</summary>
		<author><name>Tanderson</name></author>	</entry>

	<entry>
		<id>http://wiki.mattercontrol.com/index.php?title=SETTINGS/Filament/Retraction/While_Printing/Wipe_After_Retract&amp;diff=4217</id>
		<title>SETTINGS/Filament/Retraction/While Printing/Wipe After Retract</title>
		<link rel="alternate" type="text/html" href="http://wiki.mattercontrol.com/index.php?title=SETTINGS/Filament/Retraction/While_Printing/Wipe_After_Retract&amp;diff=4217"/>
				<updated>2019-05-17T01:10:13Z</updated>
		
		<summary type="html">&lt;p&gt;Tanderson: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Outdated|This setting is no longer available in MatterControl 2.0.}}&lt;br /&gt;
&lt;br /&gt;
{{Slice Settings&lt;br /&gt;
&lt;br /&gt;
|The extruder will wipe the nozzle over the last up to 10 mm of tool path after retracting.|*Boolean|&lt;br /&gt;
&lt;br /&gt;
=== Boolean ===&lt;br /&gt;
&lt;br /&gt;
The check box is checked to use the function.}}&lt;br /&gt;
&lt;br /&gt;
The check box is unchecked to leave the function unused.&lt;br /&gt;
&lt;br /&gt;
[[File:{{SUBPAGENAME}}-ss-ex1.png]]&lt;/div&gt;</summary>
		<author><name>Tanderson</name></author>	</entry>

	<entry>
		<id>http://wiki.mattercontrol.com/index.php?title=SETTINGS/Filament/Retraction/While_Printing/Minimum_Travel_Requiring_Retraction&amp;diff=4216</id>
		<title>SETTINGS/Filament/Retraction/While Printing/Minimum Travel Requiring Retraction</title>
		<link rel="alternate" type="text/html" href="http://wiki.mattercontrol.com/index.php?title=SETTINGS/Filament/Retraction/While_Printing/Minimum_Travel_Requiring_Retraction&amp;diff=4216"/>
				<updated>2019-04-09T19:03:47Z</updated>
		
		<summary type="html">&lt;p&gt;Tanderson: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Migrated|slice-settings/filament/retraction#minimum-travel-requiring-retraction}}&lt;br /&gt;
{{Slice Settings&lt;br /&gt;
&lt;br /&gt;
|The minimum distance of a non-print move which will trigger a retraction.|*millimeters (mm)&lt;br /&gt;
&lt;br /&gt;
Can be zero.|&lt;br /&gt;
&lt;br /&gt;
=== mm ===&lt;br /&gt;
&lt;br /&gt;
In this example, any non-print move of 10 mm or more will trigger a retraction.}}&lt;/div&gt;</summary>
		<author><name>Tanderson</name></author>	</entry>

	<entry>
		<id>http://wiki.mattercontrol.com/index.php?title=SETTINGS/Filament/Retraction/While_Printing/Z_Lift&amp;diff=4215</id>
		<title>SETTINGS/Filament/Retraction/While Printing/Z Lift</title>
		<link rel="alternate" type="text/html" href="http://wiki.mattercontrol.com/index.php?title=SETTINGS/Filament/Retraction/While_Printing/Z_Lift&amp;diff=4215"/>
				<updated>2019-04-09T18:40:13Z</updated>
		
		<summary type="html">&lt;p&gt;Tanderson: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Migrated|slice-settings/filament/retraction#z-lift}}&lt;br /&gt;
{{Slice Settings&lt;br /&gt;
&lt;br /&gt;
|The distance the nozzle will be lifted during non-printing moves (after each retraction happens). This ensures that the nozzle will not be dragged across the top of the object.|*millimeters (mm)&lt;br /&gt;
&lt;br /&gt;
Can be zero.|&lt;br /&gt;
&lt;br /&gt;
=== mm ===&lt;br /&gt;
&lt;br /&gt;
In this example, the nozzle will lift 1 mm after every retraction.}}&lt;/div&gt;</summary>
		<author><name>Tanderson</name></author>	</entry>

	<entry>
		<id>http://wiki.mattercontrol.com/index.php?title=SETTINGS/Filament/Retraction/While_Printing/Speed&amp;diff=4214</id>
		<title>SETTINGS/Filament/Retraction/While Printing/Speed</title>
		<link rel="alternate" type="text/html" href="http://wiki.mattercontrol.com/index.php?title=SETTINGS/Filament/Retraction/While_Printing/Speed&amp;diff=4214"/>
				<updated>2019-04-09T18:28:54Z</updated>
		
		<summary type="html">&lt;p&gt;Tanderson: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Migrated|slice-settings/filament/retraction#speed}}&lt;br /&gt;
{{Slice Settings&lt;br /&gt;
&lt;br /&gt;
|The speed at which filament will retract and re-extrude until the next print move.|*millimeters per second (mm/s)&lt;br /&gt;
&lt;br /&gt;
== [[Custom G-Code Variables|Custom G-Code Variable]] ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;retract_speed&amp;lt;/code&amp;gt;|&lt;br /&gt;
&lt;br /&gt;
=== mm/s ===&lt;br /&gt;
&lt;br /&gt;
In this example, filament will retract and re-extrude at 110 mm/s until the next print move.}}&lt;/div&gt;</summary>
		<author><name>Tanderson</name></author>	</entry>

	<entry>
		<id>http://wiki.mattercontrol.com/index.php?title=SETTINGS/Filament/Retraction/While_Printing/Time_For_Extra_Length&amp;diff=4213</id>
		<title>SETTINGS/Filament/Retraction/While Printing/Time For Extra Length</title>
		<link rel="alternate" type="text/html" href="http://wiki.mattercontrol.com/index.php?title=SETTINGS/Filament/Retraction/While_Printing/Time_For_Extra_Length&amp;diff=4213"/>
				<updated>2019-04-09T18:15:55Z</updated>
		
		<summary type="html">&lt;p&gt;Tanderson: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Migrated|slice-settings/filament/retraction#time-for-extra-length}}&lt;br /&gt;
{{Slice Settings&lt;br /&gt;
&lt;br /&gt;
|The length of time, over which the [[SETTINGS/Filament/Retraction/While Printing/Extra Length On Restart|Extra Length On Restart]] will be increased proportionally to its maximum value. Below this specified time only a portion of the extra length will be applied. &lt;br /&gt;
&lt;br /&gt;
Set to 0 to apply the entire amount all the time.|*seconds (s)&lt;br /&gt;
&lt;br /&gt;
Can be zero.|This example shows a length of two seconds for the amount of time designated to fulfill Extra Length On Restart. If the move takes less than this amount of time, the Extra Length On Restart will be applied proportionally.}}&lt;/div&gt;</summary>
		<author><name>Tanderson</name></author>	</entry>

	<entry>
		<id>http://wiki.mattercontrol.com/index.php?title=SETTINGS/Filament/Retraction/While_Printing/Extra_Length_On_Restart&amp;diff=4212</id>
		<title>SETTINGS/Filament/Retraction/While Printing/Extra Length On Restart</title>
		<link rel="alternate" type="text/html" href="http://wiki.mattercontrol.com/index.php?title=SETTINGS/Filament/Retraction/While_Printing/Extra_Length_On_Restart&amp;diff=4212"/>
				<updated>2019-04-09T01:50:20Z</updated>
		
		<summary type="html">&lt;p&gt;Tanderson: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Migrated|slice-settings/filament/retraction#extra-length-on-restart}}&lt;br /&gt;
{{Slice Settings&lt;br /&gt;
&lt;br /&gt;
|Maximum length of filament to extrude after a complete retraction (in addition to the re-extrusion of the [[Settings/Filament/Retraction/While Printing/Length on Move|Length on Move]] distance).&lt;br /&gt;
&lt;br /&gt;
Limited by the [[SETTINGS/Filament/Retraction/While_Printing/Time_For_Extra_Length|Time For Extra Length]] setting.|*millimeters (mm)&lt;br /&gt;
&lt;br /&gt;
Can be zero.&lt;br /&gt;
&lt;br /&gt;
Can be negative.|&lt;br /&gt;
&lt;br /&gt;
=== mm ===&lt;br /&gt;
&lt;br /&gt;
In this example, an additional 0.5 mm will be extruded after retraction.}}&lt;/div&gt;</summary>
		<author><name>Tanderson</name></author>	</entry>

	<entry>
		<id>http://wiki.mattercontrol.com/index.php?title=SETTINGS/Filament/Retraction/While_Printing/Length_on_Move&amp;diff=4211</id>
		<title>SETTINGS/Filament/Retraction/While Printing/Length on Move</title>
		<link rel="alternate" type="text/html" href="http://wiki.mattercontrol.com/index.php?title=SETTINGS/Filament/Retraction/While_Printing/Length_on_Move&amp;diff=4211"/>
				<updated>2019-04-09T01:49:41Z</updated>
		
		<summary type="html">&lt;p&gt;Tanderson: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Migrated|slice-settings/filament/retraction#retract-length}}&lt;br /&gt;
{{Slice Settings&lt;br /&gt;
&lt;br /&gt;
|The distance filament will reverse before each [[Settings/Filament/Retraction/While Printing/Minimum Travel Requiring Retraction|qualifying non-print move]].|*millimeters (mm)&lt;br /&gt;
&lt;br /&gt;
Can be zero.&lt;br /&gt;
&lt;br /&gt;
== [[Custom G-Code Variables|Custom G-Code Variable]] ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;retract_length&amp;lt;/code&amp;gt;|&lt;br /&gt;
&lt;br /&gt;
=== mm ===&lt;br /&gt;
&lt;br /&gt;
In this example, filament will reverse 4.5 mm before travelling 1.5 mm or more.}}&lt;/div&gt;</summary>
		<author><name>Tanderson</name></author>	</entry>

	<entry>
		<id>http://wiki.mattercontrol.com/index.php?title=SETTINGS/Filament/Extrusion&amp;diff=4210</id>
		<title>SETTINGS/Filament/Extrusion</title>
		<link rel="alternate" type="text/html" href="http://wiki.mattercontrol.com/index.php?title=SETTINGS/Filament/Extrusion&amp;diff=4210"/>
				<updated>2019-04-06T01:26:10Z</updated>
		
		<summary type="html">&lt;p&gt;Tanderson: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Migrated|slice-settings/filament/advanced}}&lt;br /&gt;
{{Slice Settings Category|how the filament is extruded during certain phases of a print.}}&lt;br /&gt;
&lt;br /&gt;
== Sections ==&lt;br /&gt;
&lt;br /&gt;
=== [[SETTINGS/Filament/Extrusion/Flow|Flow]] ===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;splist parent = SETTINGS/Filament/Extrusion/Flow/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== [[SETTINGS/Filament/Extrusion/Extrusion_Width|Extrusion Width]] ===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;splist parent = SETTINGS/Filament/Extrusion/Extrusion_Width /&amp;gt;&lt;/div&gt;</summary>
		<author><name>Tanderson</name></author>	</entry>

	<entry>
		<id>http://wiki.mattercontrol.com/index.php?title=SETTINGS/Filament/Extrusion/Extrusion_Width/Outside_Perimeters&amp;diff=4209</id>
		<title>SETTINGS/Filament/Extrusion/Extrusion Width/Outside Perimeters</title>
		<link rel="alternate" type="text/html" href="http://wiki.mattercontrol.com/index.php?title=SETTINGS/Filament/Extrusion/Extrusion_Width/Outside_Perimeters&amp;diff=4209"/>
				<updated>2019-04-06T01:25:45Z</updated>
		
		<summary type="html">&lt;p&gt;Tanderson: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Migrated|slice-settings/filament/advanced#outside-perimeters}}&lt;br /&gt;
{{Slice Settings&lt;br /&gt;
&lt;br /&gt;
|A modifier of the [[Settings/Printer/Extruder/Extruder X/Nozzle Diameter|width of the extrusion]] when printing outside perimeters.&lt;br /&gt;
&lt;br /&gt;
Can be useful to fine-adjust actual print size when objects print larger or smaller than specified in the digital model.|*millimeters (mm) &lt;br /&gt;
*percent (%)&lt;br /&gt;
&lt;br /&gt;
Set to 0 to use [[Settings/Printer/Extruder/Extruder X/Nozzle Diameter|default extrusion width]].|&lt;br /&gt;
&lt;br /&gt;
=== mm ===&lt;br /&gt;
&lt;br /&gt;
In this example, the adjusted nozzle diameter for the first layer extrusion will be 0.3 mm.}}&lt;br /&gt;
&lt;br /&gt;
=== % ===&lt;br /&gt;
&lt;br /&gt;
In this example, the [[Settings/Printer/Extruder/Extruder X/Nozzle Diameter|nozzle size set under Printer settings]] will be modified by 90%. For this example, the nozzle size was 0.5 mm, so the adjusted size will be 0.45 mm.&lt;br /&gt;
&lt;br /&gt;
[[File:{{SUBPAGENAME}}-ss-ex1.png]]&lt;/div&gt;</summary>
		<author><name>Tanderson</name></author>	</entry>

	<entry>
		<id>http://wiki.mattercontrol.com/index.php?title=SETTINGS/Filament/Extrusion/Extrusion_Width/First_Layer&amp;diff=4208</id>
		<title>SETTINGS/Filament/Extrusion/Extrusion Width/First Layer</title>
		<link rel="alternate" type="text/html" href="http://wiki.mattercontrol.com/index.php?title=SETTINGS/Filament/Extrusion/Extrusion_Width/First_Layer&amp;diff=4208"/>
				<updated>2019-04-06T01:20:44Z</updated>
		
		<summary type="html">&lt;p&gt;Tanderson: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Migrated|slice-settings/filament/advanced#first-layer}}&lt;br /&gt;
{{Slice Settings&lt;br /&gt;
&lt;br /&gt;
|A modifier of the [[Settings/Printer/Extruder/Extruder X/Nozzle Diameter|width of the extrusion]] for the first layer of the print. &lt;br /&gt;
&lt;br /&gt;
A value greater than 100% can help with adhesion to the print bed.|*millimeters (mm) &lt;br /&gt;
*percent (%)&lt;br /&gt;
&lt;br /&gt;
Set to 0 to use [[Settings/Printer/Extruder/Extruder X/Nozzle Diameter|default extrusion width]].|&lt;br /&gt;
&lt;br /&gt;
=== mm ===&lt;br /&gt;
&lt;br /&gt;
In this example, the adjusted nozzle diameter for the first layer extrusion will be 0.5 mm.}}&lt;br /&gt;
&lt;br /&gt;
=== % ===&lt;br /&gt;
&lt;br /&gt;
In this example, the [[Settings/Printer/Extruder/Extruder X/Nozzle Diameter|nozzle diameter set under Printer settings]] will be modified by 110%. For this example, the nozzle size was 0.4 mm, so the adjusted size will be 0.44 mm.&lt;br /&gt;
&lt;br /&gt;
[[File:{{SUBPAGENAME}}-ss-ex1.png]]&lt;/div&gt;</summary>
		<author><name>Tanderson</name></author>	</entry>

	<entry>
		<id>http://wiki.mattercontrol.com/index.php?title=SETTINGS/Filament/Extrusion/Flow/Extrusion_Multiplier&amp;diff=4207</id>
		<title>SETTINGS/Filament/Extrusion/Flow/Extrusion Multiplier</title>
		<link rel="alternate" type="text/html" href="http://wiki.mattercontrol.com/index.php?title=SETTINGS/Filament/Extrusion/Flow/Extrusion_Multiplier&amp;diff=4207"/>
				<updated>2019-04-06T01:20:14Z</updated>
		
		<summary type="html">&lt;p&gt;Tanderson: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Migrated|slice-settings/filament/advanced#extrusion-multiplier}}&lt;br /&gt;
{{Slice Settings&lt;br /&gt;
&lt;br /&gt;
|A multiplier for modifying the extrusion flow rate. &lt;br /&gt;
&lt;br /&gt;
This value can also be adjusted during a print using the [[Controls/Tuning Adjustment#Extrusion Multiplier|Extrusion Multiplier]] slider on the Controls pane. Keep in mind using the function in Controls will have an effect in addition to any existing multiplier used in the setting described on this page. For example, if the slicer setting is set at 1.06 and then the slider in Controls is used during the print and set to 1.08, the total result will be a multiplier of 1.1448 (1.06 * 1.08).&lt;br /&gt;
&lt;br /&gt;
=== Formula ===&lt;br /&gt;
&lt;br /&gt;
The general extrusion flow formula: &amp;lt;code&amp;gt;layer height / (filament area (pi*r²) * '''extrusion multiplier''')&amp;lt;/code&amp;gt;|*multiplier&lt;br /&gt;
&lt;br /&gt;
=== Range ===&lt;br /&gt;
&lt;br /&gt;
Increasing it above 1 (1.1 is a good max value) will increase the amount of filament being extruded; decreasing it (.9 is a good minimum value) will decrease the amount being extruded.|&lt;br /&gt;
&lt;br /&gt;
=== multiplier ===&lt;br /&gt;
&lt;br /&gt;
In this example, all extrusions will be multiplied by 1.04.}}&lt;/div&gt;</summary>
		<author><name>Tanderson</name></author>	</entry>

	<entry>
		<id>http://wiki.mattercontrol.com/index.php?title=Template:Outdated&amp;diff=4205</id>
		<title>Template:Outdated</title>
		<link rel="alternate" type="text/html" href="http://wiki.mattercontrol.com/index.php?title=Template:Outdated&amp;diff=4205"/>
				<updated>2019-01-29T18:50:27Z</updated>
		
		<summary type="html">&lt;p&gt;Tanderson: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;center&amp;gt;&lt;br /&gt;
&amp;lt;table cellspacing=&amp;quot;0&amp;quot; cellpadding=&amp;quot;0&amp;quot; border=&amp;quot;0&amp;quot; style=&amp;quot;background: transparent; margin-top:0.5em;border:1px #b52 solid;padding:0.5em;background-color: #fef7f5&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td valign=&amp;quot;top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;span style=&amp;quot;position: relative; padding-right: 8px;&amp;quot;&amp;gt;[[File:Outdated.png|40px|Outdated|link=]]&amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&lt;br /&gt;
'''Outdated:''' {{{1}}}&amp;lt;br&amp;gt;&lt;br /&gt;
This page contains outdated information and is kept only for historical reasons.&amp;lt;br&amp;gt;&lt;br /&gt;
For up to date information on MatterControl 2.0, visit the [http://matterhackers.com/mattercontrol/support/ new MatterControl documentation].&lt;br /&gt;
&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td valign=&amp;quot;top&amp;quot; style=&amp;quot;padding-left:0.5em;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&amp;lt;/center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Outdated]]&lt;/div&gt;</summary>
		<author><name>Tanderson</name></author>	</entry>

	<entry>
		<id>http://wiki.mattercontrol.com/index.php?title=OPTIONS/Slice_Engine&amp;diff=4204</id>
		<title>OPTIONS/Slice Engine</title>
		<link rel="alternate" type="text/html" href="http://wiki.mattercontrol.com/index.php?title=OPTIONS/Slice_Engine&amp;diff=4204"/>
				<updated>2019-01-29T18:47:50Z</updated>
		
		<summary type="html">&lt;p&gt;Tanderson: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Outdated|MatterControl 2.0 no longer supports any slice engines other than MatterSlice. The option to choose slice engines has been removed.}}&lt;br /&gt;
&lt;br /&gt;
{{DISPLAYTITLE:Slice Engine}}[[File:SE1.png|framed|right|&amp;lt;center&amp;gt;The '''Slice Engine''' selection menu.&amp;lt;/center&amp;gt;]]&lt;br /&gt;
MatterControl offers the ability to switch between one of three slicing engines: [[MatterSlice]], [[CuraEngine]], and [[Slic3r]].&lt;br /&gt;
&lt;br /&gt;
== Restrictions ==&lt;br /&gt;
&lt;br /&gt;
*Third-party slicers (CuraEngine, Slic3r) are not available on all versions, including custom-branded OEM builds, and on the MatterControl Touch tablets (T7, T10). MatterSlice is the default slice engine, and is available in all versions of MatterControl.&lt;br /&gt;
*MatterSlice is the only slice engine available in MatterControl that is capable of producing [[Multi-Extrusion|multi-extrusion]] prints. Third-party slicers do not appear in the Slice Engine menu when [[SETTINGS/Printer/Features/Hardware/Extruder Count|Extruder Count]] is set to a value greater than 1.&lt;br /&gt;
*Third-party slicers are not available in MatterControl for Linux by default, but can be added by following the instructions here: [[Development/Running_on_Linux#Using_Other_Slice_Engines|Running on Linux: Using Other Slice Engines]]&lt;br /&gt;
&lt;br /&gt;
= [[MatterSlice]] =&lt;br /&gt;
&lt;br /&gt;
{{:MatterSlice}}&lt;br /&gt;
&lt;br /&gt;
= [[Slic3r]] =&lt;br /&gt;
&lt;br /&gt;
{{:Slic3r}}&lt;br /&gt;
&lt;br /&gt;
= [[CuraEngine]] =&lt;br /&gt;
&lt;br /&gt;
{{:CuraEngine}}&lt;/div&gt;</summary>
		<author><name>Tanderson</name></author>	</entry>

	<entry>
		<id>http://wiki.mattercontrol.com/index.php?title=Template:Outdated&amp;diff=4203</id>
		<title>Template:Outdated</title>
		<link rel="alternate" type="text/html" href="http://wiki.mattercontrol.com/index.php?title=Template:Outdated&amp;diff=4203"/>
				<updated>2019-01-29T18:46:34Z</updated>
		
		<summary type="html">&lt;p&gt;Tanderson: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;center&amp;gt;&lt;br /&gt;
&amp;lt;table cellspacing=&amp;quot;0&amp;quot; cellpadding=&amp;quot;0&amp;quot; border=&amp;quot;0&amp;quot; style=&amp;quot;background: transparent; margin-top:0.5em;border:1px #b52 solid;padding:0.5em;background-color: #fef7f5&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td valign=&amp;quot;top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;span style=&amp;quot;position: relative;&amp;quot;&amp;gt;[[File:Outdated.png|40px|Outdated|link=]]&amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&lt;br /&gt;
'''Outdated:''' {{{1}}}&amp;lt;br&amp;gt;&lt;br /&gt;
This page contains outdated information and is kept only for historical reasons.&amp;lt;br&amp;gt;&lt;br /&gt;
For up to date information on MatterControl 2.0, visit the [http://matterhackers.com/mattercontrol/support/ new MatterControl documentation].&lt;br /&gt;
&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td valign=&amp;quot;top&amp;quot; style=&amp;quot;padding-left:0.5em;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&amp;lt;/center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Outdated]]&lt;/div&gt;</summary>
		<author><name>Tanderson</name></author>	</entry>

	<entry>
		<id>http://wiki.mattercontrol.com/index.php?title=Template:Outdated&amp;diff=4202</id>
		<title>Template:Outdated</title>
		<link rel="alternate" type="text/html" href="http://wiki.mattercontrol.com/index.php?title=Template:Outdated&amp;diff=4202"/>
				<updated>2019-01-29T18:45:20Z</updated>
		
		<summary type="html">&lt;p&gt;Tanderson: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;center&amp;gt;&lt;br /&gt;
&amp;lt;table cellspacing=&amp;quot;0&amp;quot; cellpadding=&amp;quot;0&amp;quot; border=&amp;quot;0&amp;quot; style=&amp;quot;background: transparent; margin-top:0.5em;border:1px #b52 solid;padding:0.5em;background-color: #fef7f5&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td valign=&amp;quot;top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;span style=&amp;quot;position: relative; top: -2px;&amp;quot;&amp;gt;[[File:Outdated.png|40px|Outdated|link=]]&amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&lt;br /&gt;
'''Outdated:''' {{{1}}}&amp;lt;br&amp;gt;&lt;br /&gt;
This page contains outdated information and is kept only for historical reasons.&amp;lt;br&amp;gt;&lt;br /&gt;
For up to date information on MatterControl 2.0, visit the [http://matterhackers.com/mattercontrol/support/ new MatterControl documentation].&lt;br /&gt;
&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td valign=&amp;quot;top&amp;quot; style=&amp;quot;padding-left:0.5em;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&amp;lt;/center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Outdated]]&lt;/div&gt;</summary>
		<author><name>Tanderson</name></author>	</entry>

	<entry>
		<id>http://wiki.mattercontrol.com/index.php?title=Template:Outdated&amp;diff=4201</id>
		<title>Template:Outdated</title>
		<link rel="alternate" type="text/html" href="http://wiki.mattercontrol.com/index.php?title=Template:Outdated&amp;diff=4201"/>
				<updated>2019-01-29T18:45:08Z</updated>
		
		<summary type="html">&lt;p&gt;Tanderson: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;center&amp;gt;&lt;br /&gt;
&amp;lt;table cellspacing=&amp;quot;0&amp;quot; cellpadding=&amp;quot;0&amp;quot; border=&amp;quot;0&amp;quot; style=&amp;quot;background: transparent; margin-top:0.5em;border:1px #b52 solid;padding:0.5em;background-color: #fef7f5&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td valign=&amp;quot;top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;span style=&amp;quot;position: relative; top: -2px;&amp;quot;&amp;gt;[[File:Outdated.png|40px|Outdated|link=]]&amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&lt;br /&gt;
'''Outdated:''' {{{1}}}&amp;lt;br&amp;gt;&lt;br /&gt;
This page contains outdated information and is kept only for historical reasons.&amp;lt;br&amp;gt;&lt;br /&gt;
For up to date information on MatterControl 2.0, visit the [http://matterhackers.com/mattercontrol/support/ new MatterControl documentation].&lt;br /&gt;
&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td valign=&amp;quot;top&amp;quot; style=&amp;quot;padding-left:0.5em;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&amp;lt;/center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;center&amp;gt;{{#if: {{{msg|{{{1|}}}}}}|&amp;lt;table cellspacing=&amp;quot;0&amp;quot; cellpadding=&amp;quot;0&amp;quot; border=&amp;quot;0&amp;quot; style=&amp;quot;background: transparent; margin-top:0.5em;border:1px #ffc394 solid;padding:0.5em;background-color: #fbfbfb&amp;quot;&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;td nowrap=&amp;quot;nowrap&amp;quot; valign=&amp;quot;top&amp;quot;&amp;gt;}}&amp;lt;span style=&amp;quot;position: relative; top: -2px;&amp;quot;&amp;gt;[[File:Outdated.png|18px|Outdated|link=]]&amp;lt;/span&amp;gt; '''Outdated:''' {{#if: {{{msg|{{{1|}}}}}}|&amp;lt;/td&amp;gt;&amp;lt;td valign=&amp;quot;top&amp;quot; style=&amp;quot;padding-left:0.5em;&amp;quot;&amp;gt;{{{msg|{{{1|}}}}}}&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;/table&amp;gt;}}&amp;lt;/center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Outdated]]&lt;/div&gt;</summary>
		<author><name>Tanderson</name></author>	</entry>

	<entry>
		<id>http://wiki.mattercontrol.com/index.php?title=SETTINGS/Filament/Temperatures/Bed_Temperatures/Bed_Remove_Part_Temperature&amp;diff=4200</id>
		<title>SETTINGS/Filament/Temperatures/Bed Temperatures/Bed Remove Part Temperature</title>
		<link rel="alternate" type="text/html" href="http://wiki.mattercontrol.com/index.php?title=SETTINGS/Filament/Temperatures/Bed_Temperatures/Bed_Remove_Part_Temperature&amp;diff=4200"/>
				<updated>2019-01-08T02:45:43Z</updated>
		
		<summary type="html">&lt;p&gt;Tanderson: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Migrated|slice-settings/filament/advanced#bed-remove-part-temperature}}&lt;br /&gt;
{{Slice Settings&lt;br /&gt;
&lt;br /&gt;
|The temperature to which the bed will heat (or cool) in order to remove the part, as specified in Custom G-Code.&lt;br /&gt;
&lt;br /&gt;
Used only by Custom G-Code fields as a [[Custom G-Code Variables|Custom G-Code variable]].&lt;br /&gt;
&lt;br /&gt;
=== Restrictions ===&lt;br /&gt;
&lt;br /&gt;
*Not shown if [[SETTINGS/Printer/Features/Hardware/Has Heated Bed|Has Heated Bed]] is disabled.|*degrees Celsius&lt;br /&gt;
&lt;br /&gt;
== [[Custom G-Code Variables|Custom G-Code Variable]] ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;bed_remove_part_temperature&amp;lt;/code&amp;gt;|&lt;br /&gt;
&lt;br /&gt;
=== degrees ===&lt;br /&gt;
&lt;br /&gt;
In this example, the bed will cool to 55 degrees after the print as specified in the [[Settings/Printer/Custom G-Code/End G-Code|End G-Code]] field, assuming the variable is used.}}&lt;/div&gt;</summary>
		<author><name>Tanderson</name></author>	</entry>

	<entry>
		<id>http://wiki.mattercontrol.com/index.php?title=SETTINGS/Filament/Temperatures/Extruder_Temperatures/Extruder_Wipe_Temperature&amp;diff=4199</id>
		<title>SETTINGS/Filament/Temperatures/Extruder Temperatures/Extruder Wipe Temperature</title>
		<link rel="alternate" type="text/html" href="http://wiki.mattercontrol.com/index.php?title=SETTINGS/Filament/Temperatures/Extruder_Temperatures/Extruder_Wipe_Temperature&amp;diff=4199"/>
				<updated>2019-01-08T02:37:07Z</updated>
		
		<summary type="html">&lt;p&gt;Tanderson: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Migrated|slice-settings/filament/advanced#extruder-wipe-temperature}}&lt;br /&gt;
{{Slice Settings&lt;br /&gt;
&lt;br /&gt;
|The temperature at which the extruder will wipe the nozzle, as specified in Custom G-Code.&lt;br /&gt;
&lt;br /&gt;
Used only by Custom G-Code fields as a [[Custom G-Code Variables|Custom G-Code variable]].|*degrees Celsius&lt;br /&gt;
&lt;br /&gt;
== [[Custom G-Code Variables|Custom G-Code Variable]] ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;extruder_wipe_temperature&amp;lt;/code&amp;gt;|&lt;br /&gt;
&lt;br /&gt;
=== degrees ===&lt;br /&gt;
In this example, the nozzle will heat to 145 degrees as specified in the [[Settings/Printer/Custom G-Code/Start G-Code|Start G-Code]] field, assuming the variable is used.}}&lt;/div&gt;</summary>
		<author><name>Tanderson</name></author>	</entry>

	<entry>
		<id>http://wiki.mattercontrol.com/index.php?title=SETTINGS/Filament/Temperatures/Bed_Temperatures/Bed_Temperature&amp;diff=4198</id>
		<title>SETTINGS/Filament/Temperatures/Bed Temperatures/Bed Temperature</title>
		<link rel="alternate" type="text/html" href="http://wiki.mattercontrol.com/index.php?title=SETTINGS/Filament/Temperatures/Bed_Temperatures/Bed_Temperature&amp;diff=4198"/>
				<updated>2019-01-08T02:31:30Z</updated>
		
		<summary type="html">&lt;p&gt;Tanderson: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Migrated|slice-settings/filament/filament#bed-temperature}}&lt;br /&gt;
{{Slice Settings&lt;br /&gt;
&lt;br /&gt;
|The temperature to which the bed will be set for the duration of the print. Set to 0 to disable.&lt;br /&gt;
&lt;br /&gt;
=== Restrictions ===&lt;br /&gt;
&lt;br /&gt;
*Not shown if [[SETTINGS/Printer/Features/Hardware/Has Heated Bed|Has Heated Bed]] is disabled.|*degrees Celsius&lt;br /&gt;
&lt;br /&gt;
== [[Custom G-Code Variables|Custom G-Code Variable]] ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;bed_temperature&amp;lt;/code&amp;gt;|&lt;br /&gt;
&lt;br /&gt;
=== degrees ===&lt;br /&gt;
&lt;br /&gt;
In this example, the bed will be set to 50 degrees Celsius for the print.}}&lt;/div&gt;</summary>
		<author><name>Tanderson</name></author>	</entry>

	<entry>
		<id>http://wiki.mattercontrol.com/index.php?title=SETTINGS/Filament/Temperatures/Extruder_Temperatures/Extruder_Temperature&amp;diff=4197</id>
		<title>SETTINGS/Filament/Temperatures/Extruder Temperatures/Extruder Temperature</title>
		<link rel="alternate" type="text/html" href="http://wiki.mattercontrol.com/index.php?title=SETTINGS/Filament/Temperatures/Extruder_Temperatures/Extruder_Temperature&amp;diff=4197"/>
				<updated>2019-01-08T02:12:00Z</updated>
		
		<summary type="html">&lt;p&gt;Tanderson: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Migrated|slice-settings/filament/filament#extruder-temperature}}&lt;br /&gt;
{{Slice Settings&lt;br /&gt;
&lt;br /&gt;
|The target temperature the extruder will attempt to reach during the print. &lt;br /&gt;
&lt;br /&gt;
This temperature can be adjusted during a print by changing the value in the [[Controls/Temperature#Extruder Temperature|Extruder Temperature Target field]].|*degrees Celsius&lt;br /&gt;
&lt;br /&gt;
== [[Custom G-Code Variables|Custom G-Code Variable]] ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;temperature&amp;lt;/code&amp;gt;|&lt;br /&gt;
&lt;br /&gt;
=== degrees ===&lt;br /&gt;
&lt;br /&gt;
In this example, the extruder will attempt to reach 218 for the duration of the print.}}&lt;/div&gt;</summary>
		<author><name>Tanderson</name></author>	</entry>

	<entry>
		<id>http://wiki.mattercontrol.com/index.php?title=SETTINGS/Filament/Material/Properties/Cost&amp;diff=4196</id>
		<title>SETTINGS/Filament/Material/Properties/Cost</title>
		<link rel="alternate" type="text/html" href="http://wiki.mattercontrol.com/index.php?title=SETTINGS/Filament/Material/Properties/Cost&amp;diff=4196"/>
				<updated>2019-01-07T22:18:42Z</updated>
		
		<summary type="html">&lt;p&gt;Tanderson: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Migrated|slice-settings/filament/filament#cost}}&lt;br /&gt;
{{Slice Settings&lt;br /&gt;
&lt;br /&gt;
|The cost of one kilogram of filament. Used to estimate the cost of a print in [[Layer View#Estimated_Cost|LAYER VIEW]]. If this value is set to 0, then the estimated cost will not be shown in the layer view.|*Dollars per kilogram ($/kg)|&lt;br /&gt;
&lt;br /&gt;
=== $/kg ===&lt;br /&gt;
&lt;br /&gt;
In this example, the cost for a kilogram of filament is $42.00.}}&lt;/div&gt;</summary>
		<author><name>Tanderson</name></author>	</entry>

	<entry>
		<id>http://wiki.mattercontrol.com/index.php?title=SETTINGS/Filament/Material/Properties/Density&amp;diff=4195</id>
		<title>SETTINGS/Filament/Material/Properties/Density</title>
		<link rel="alternate" type="text/html" href="http://wiki.mattercontrol.com/index.php?title=SETTINGS/Filament/Material/Properties/Density&amp;diff=4195"/>
				<updated>2019-01-07T22:11:06Z</updated>
		
		<summary type="html">&lt;p&gt;Tanderson: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Migrated|slice-settings/filament/filament#density}}&lt;br /&gt;
{{Slice Settings&lt;br /&gt;
&lt;br /&gt;
|The density of the filament in use. Used to calculate estimates for weight and cost in [[LAYER VIEW#MODEL|LAYER VIEW]].|*grams per cubic centimeter (g/cm³)&lt;br /&gt;
&lt;br /&gt;
=== Presets ===&lt;br /&gt;
&lt;br /&gt;
*PLA : 1.24&lt;br /&gt;
*ABS : 1.04&lt;br /&gt;
*Custom : user-defined|&lt;br /&gt;
&lt;br /&gt;
=== g/cm³ ===&lt;br /&gt;
&lt;br /&gt;
In this example, PLA is the filament in use which has a density of 1.24 g/cm³.}}&lt;/div&gt;</summary>
		<author><name>Tanderson</name></author>	</entry>

	<entry>
		<id>http://wiki.mattercontrol.com/index.php?title=SETTINGS/Filament/Material/Properties/Diameter&amp;diff=4194</id>
		<title>SETTINGS/Filament/Material/Properties/Diameter</title>
		<link rel="alternate" type="text/html" href="http://wiki.mattercontrol.com/index.php?title=SETTINGS/Filament/Material/Properties/Diameter&amp;diff=4194"/>
				<updated>2019-01-05T02:47:58Z</updated>
		
		<summary type="html">&lt;p&gt;Tanderson: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Migrated|slice-settings/filament/filament#diameter}}&lt;br /&gt;
{{Slice Settings&lt;br /&gt;
&lt;br /&gt;
|The actual diameter of the filament used for printing. Measure 5 times with calipers, throw out the top and bottom, and average the remaining 3.|*millimeters (mm)&lt;br /&gt;
&lt;br /&gt;
== [[Custom G-Code Variables|Custom G-Code Variable]] ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;filament_diameter&amp;lt;/code&amp;gt;|&lt;br /&gt;
&lt;br /&gt;
=== mm ===&lt;br /&gt;
&lt;br /&gt;
In this example, the filament diameter is 1.75 mm.}}&lt;/div&gt;</summary>
		<author><name>Tanderson</name></author>	</entry>

	<entry>
		<id>http://wiki.mattercontrol.com/index.php?title=SETTINGS/Filament/Material&amp;diff=4193</id>
		<title>SETTINGS/Filament/Material</title>
		<link rel="alternate" type="text/html" href="http://wiki.mattercontrol.com/index.php?title=SETTINGS/Filament/Material&amp;diff=4193"/>
				<updated>2019-01-05T02:31:46Z</updated>
		
		<summary type="html">&lt;p&gt;Tanderson: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Migrated|slice-settings/filament/filament}}&lt;br /&gt;
{{Slice Settings Category|fans and other methods for keeping the print at the right temperature.}}&lt;br /&gt;
&lt;br /&gt;
== Sections ==&lt;br /&gt;
&lt;br /&gt;
=== [[SETTINGS/Filament/Material/Properties|Properties]] ===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;splist parent = SETTINGS/Filament/Material/Properties /&amp;gt;&lt;/div&gt;</summary>
		<author><name>Tanderson</name></author>	</entry>

	<entry>
		<id>http://wiki.mattercontrol.com/index.php?title=SETTINGS/Filament&amp;diff=4192</id>
		<title>SETTINGS/Filament</title>
		<link rel="alternate" type="text/html" href="http://wiki.mattercontrol.com/index.php?title=SETTINGS/Filament&amp;diff=4192"/>
				<updated>2019-01-05T02:31:16Z</updated>
		
		<summary type="html">&lt;p&gt;Tanderson: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Migrated|slice-settings/filament/index}}&lt;br /&gt;
&lt;br /&gt;
__NOTOC__{{DISPLAYTITLE:Filament}}[[File:ss-{{SUBPAGENAME}}-ss.png|right|framed|&amp;lt;center&amp;gt;The '''{{SUBPAGENAME}}''' category of slice settings as seen in the MatterControl settings pane.&amp;lt;/center&amp;gt;]]Slice Settings found under this category apply to the filament used to create the print.&lt;br /&gt;
&lt;br /&gt;
== Sections ==&lt;br /&gt;
&lt;br /&gt;
=== [[SETTINGS/Filament/Material|Material]] ===&lt;br /&gt;
=== [[SETTINGS/Filament/Temperatures|Temperatures]] ===&lt;br /&gt;
=== [[SETTINGS/Filament/Retraction|Retraction]] ===&lt;br /&gt;
=== [[SETTINGS/Filament/Extrusion|Extrusion]] ===&lt;br /&gt;
=== [[SETTINGS/Filament/Cooling|Cooling]] ===&lt;/div&gt;</summary>
		<author><name>Tanderson</name></author>	</entry>

	<entry>
		<id>http://wiki.mattercontrol.com/index.php?title=SETTINGS/General/Support_Material/Extruders&amp;diff=4191</id>
		<title>SETTINGS/General/Support Material/Extruders</title>
		<link rel="alternate" type="text/html" href="http://wiki.mattercontrol.com/index.php?title=SETTINGS/General/Support_Material/Extruders&amp;diff=4191"/>
				<updated>2018-12-31T20:33:58Z</updated>
		
		<summary type="html">&lt;p&gt;Tanderson: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Migrated|slice-settings/support/advanced}}&lt;br /&gt;
{{Slice Settings Subsection|options for using one or more extruders for the creation of support material.}}&lt;/div&gt;</summary>
		<author><name>Tanderson</name></author>	</entry>

	<entry>
		<id>http://wiki.mattercontrol.com/index.php?title=SETTINGS/General/Support_Material/Support_Options&amp;diff=4190</id>
		<title>SETTINGS/General/Support Material/Support Options</title>
		<link rel="alternate" type="text/html" href="http://wiki.mattercontrol.com/index.php?title=SETTINGS/General/Support_Material/Support_Options&amp;diff=4190"/>
				<updated>2018-12-31T20:33:45Z</updated>
		
		<summary type="html">&lt;p&gt;Tanderson: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Migrated|slice-settings/support/advanced}}&lt;br /&gt;
{{Slice Settings Subsection|more advanced options for the creation of support material.}}&lt;/div&gt;</summary>
		<author><name>Tanderson</name></author>	</entry>

	<entry>
		<id>http://wiki.mattercontrol.com/index.php?title=SETTINGS/General/Support_Material/Support_Material&amp;diff=4189</id>
		<title>SETTINGS/General/Support Material/Support Material</title>
		<link rel="alternate" type="text/html" href="http://wiki.mattercontrol.com/index.php?title=SETTINGS/General/Support_Material/Support_Material&amp;diff=4189"/>
				<updated>2018-12-31T20:33:17Z</updated>
		
		<summary type="html">&lt;p&gt;Tanderson: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Migrated|slice-settings/support/support}}&lt;br /&gt;
{{Slice Settings Subsection|general options for enabling the creation of support material.}}&lt;/div&gt;</summary>
		<author><name>Tanderson</name></author>	</entry>

	<entry>
		<id>http://wiki.mattercontrol.com/index.php?title=SETTINGS/General/Support_Material&amp;diff=4188</id>
		<title>SETTINGS/General/Support Material</title>
		<link rel="alternate" type="text/html" href="http://wiki.mattercontrol.com/index.php?title=SETTINGS/General/Support_Material&amp;diff=4188"/>
				<updated>2018-12-31T20:32:43Z</updated>
		
		<summary type="html">&lt;p&gt;Tanderson: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Migrated|slice-settings/support/index}}&lt;br /&gt;
{{Slice Settings Category|how [[support material]] will generate, if enabled.}}&lt;br /&gt;
&lt;br /&gt;
== Sections ==&lt;br /&gt;
&lt;br /&gt;
=== [[SETTINGS/General/Support_Material/Support_Material|Support Material]] ===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;splist parent = SETTINGS/General/Support_Material/Support_Material /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== [[SETTINGS/General/Support_Material/Support_Options|Support Options]] ===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;splist parent = SETTINGS/General/Support_Material/Support_Options /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== [[SETTINGS/General/Support_Material/Extruders|Extruders]] ===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;splist parent = SETTINGS/General/Support_Material/Extruders /&amp;gt;&lt;/div&gt;</summary>
		<author><name>Tanderson</name></author>	</entry>

	<entry>
		<id>http://wiki.mattercontrol.com/index.php?title=SETTINGS/General/Support_Material/Extruders/Support_Interface_Extruder&amp;diff=4187</id>
		<title>SETTINGS/General/Support Material/Extruders/Support Interface Extruder</title>
		<link rel="alternate" type="text/html" href="http://wiki.mattercontrol.com/index.php?title=SETTINGS/General/Support_Material/Extruders/Support_Interface_Extruder&amp;diff=4187"/>
				<updated>2018-12-31T20:31:40Z</updated>
		
		<summary type="html">&lt;p&gt;Tanderson: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Migrated|slice-settings/support/advanced#support-interface-extruder}}&lt;br /&gt;
{{Slice Settings&lt;br /&gt;
&lt;br /&gt;
|The [[Extruder Index|index]] of the extruder to use for support material [[Settings/General/Support Material/Support Options/Interface Layers|interface layer(s)]].|*extruder index|&lt;br /&gt;
&lt;br /&gt;
=== extruder index ===&lt;br /&gt;
&lt;br /&gt;
In this example, the first extruder will print the interface layer(s).}}&lt;br /&gt;
&lt;br /&gt;
In this example, the second extruder will print the interface layer(s).&lt;br /&gt;
&lt;br /&gt;
[[File:{{SUBPAGENAME}}-ss-ex1.png]]&lt;/div&gt;</summary>
		<author><name>Tanderson</name></author>	</entry>

	<entry>
		<id>http://wiki.mattercontrol.com/index.php?title=SETTINGS/General/Support_Material/Extruders/Support_Material_Extruder&amp;diff=4186</id>
		<title>SETTINGS/General/Support Material/Extruders/Support Material Extruder</title>
		<link rel="alternate" type="text/html" href="http://wiki.mattercontrol.com/index.php?title=SETTINGS/General/Support_Material/Extruders/Support_Material_Extruder&amp;diff=4186"/>
				<updated>2018-12-31T20:30:45Z</updated>
		
		<summary type="html">&lt;p&gt;Tanderson: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Migrated|slice-settings/support/advanced#support-material-extruder}}&lt;br /&gt;
{{Slice Settings&lt;br /&gt;
&lt;br /&gt;
|The [[Extruder Index|index]] of the extruder to use for printing support material. Applicable only when [[Settings/Printer/Features/Hardware/Extruder Count|Extruder Count]] is set to a value more than 1.|*extruder index|&lt;br /&gt;
&lt;br /&gt;
=== extruder index ===&lt;br /&gt;
&lt;br /&gt;
In this example, the first extruder will print the support material.}}&lt;br /&gt;
&lt;br /&gt;
In this example, the second extruder will print the support material.&lt;br /&gt;
&lt;br /&gt;
[[File:{{SUBPAGENAME}}-ss-ex1.png]]&lt;/div&gt;</summary>
		<author><name>Tanderson</name></author>	</entry>

	<entry>
		<id>http://wiki.mattercontrol.com/index.php?title=SETTINGS/General/Support_Material/Support_Options/Infill_Angle&amp;diff=4185</id>
		<title>SETTINGS/General/Support Material/Support Options/Infill Angle</title>
		<link rel="alternate" type="text/html" href="http://wiki.mattercontrol.com/index.php?title=SETTINGS/General/Support_Material/Support_Options/Infill_Angle&amp;diff=4185"/>
				<updated>2018-12-31T20:20:19Z</updated>
		
		<summary type="html">&lt;p&gt;Tanderson: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Migrated|slice-settings/support/advanced#infill-angle}}&lt;br /&gt;
{{Slice Settings&lt;br /&gt;
&lt;br /&gt;
|The angle at which the support material lines will be drawn.|*degrees&lt;br /&gt;
&lt;br /&gt;
Can be zero.|&lt;br /&gt;
&lt;br /&gt;
For this example, [http://104.154.32.252/images/7/72/Support_test.stl Support_test.stl] is the model used.&lt;br /&gt;
&lt;br /&gt;
=== degrees ===&lt;br /&gt;
&lt;br /&gt;
In this example, the infill angle is 60 degrees as shown on the first layer of the model in [[2D Layer View]].}}&lt;/div&gt;</summary>
		<author><name>Tanderson</name></author>	</entry>

	<entry>
		<id>http://wiki.mattercontrol.com/index.php?title=SETTINGS/General/Support_Material/Support_Options/Pattern_Spacing&amp;diff=4184</id>
		<title>SETTINGS/General/Support Material/Support Options/Pattern Spacing</title>
		<link rel="alternate" type="text/html" href="http://wiki.mattercontrol.com/index.php?title=SETTINGS/General/Support_Material/Support_Options/Pattern_Spacing&amp;diff=4184"/>
				<updated>2018-12-31T20:15:35Z</updated>
		
		<summary type="html">&lt;p&gt;Tanderson: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Migrated|slice-settings/support/advanced#pattern-spacing}}&lt;br /&gt;
{{Slice Settings&lt;br /&gt;
&lt;br /&gt;
|The distance between support material lines.|*millimeters (mm)|&lt;br /&gt;
&lt;br /&gt;
=== mm ===&lt;br /&gt;
&lt;br /&gt;
In this example, lines will be spaced at 2.5 mm intervals.}}&lt;/div&gt;</summary>
		<author><name>Tanderson</name></author>	</entry>

	<entry>
		<id>http://wiki.mattercontrol.com/index.php?title=SETTINGS/General/Support_Material/Support_Material/Support_Type&amp;diff=4183</id>
		<title>SETTINGS/General/Support Material/Support Material/Support Type</title>
		<link rel="alternate" type="text/html" href="http://wiki.mattercontrol.com/index.php?title=SETTINGS/General/Support_Material/Support_Material/Support_Type&amp;diff=4183"/>
				<updated>2018-12-31T20:04:03Z</updated>
		
		<summary type="html">&lt;p&gt;Tanderson: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Migrated|slice-settings/support/advanced#support-type}}&lt;br /&gt;
{{Slice Settings&lt;br /&gt;
&lt;br /&gt;
|The pattern to draw for the generation of support material.|Available as presets only:&lt;br /&gt;
&lt;br /&gt;
*GRID&lt;br /&gt;
*LINES|&lt;br /&gt;
&lt;br /&gt;
For these examples, [http://104.154.32.252/images/7/72/Support_test.stl Support_test.stl] is the model used.&lt;br /&gt;
&lt;br /&gt;
=== GRID ===&lt;br /&gt;
&lt;br /&gt;
The GRID support material type, shown here in [[Layer View#3D|3D Layer View]] at full height before the overhang.}}&lt;br /&gt;
&lt;br /&gt;
=== LINES ===&lt;br /&gt;
&lt;br /&gt;
The LINES support material type, shown here in [[Layer View#3D|3D Layer View]] at full height before the overhang.&lt;br /&gt;
&lt;br /&gt;
[[File:{{SUBPAGENAME}}-ss-ex1.png]]&lt;/div&gt;</summary>
		<author><name>Tanderson</name></author>	</entry>

	<entry>
		<id>http://wiki.mattercontrol.com/index.php?title=SETTINGS/General/Support_Material/Support_Options/Air_Gap&amp;diff=4182</id>
		<title>SETTINGS/General/Support Material/Support Options/Air Gap</title>
		<link rel="alternate" type="text/html" href="http://wiki.mattercontrol.com/index.php?title=SETTINGS/General/Support_Material/Support_Options/Air_Gap&amp;diff=4182"/>
				<updated>2018-12-31T19:51:03Z</updated>
		
		<summary type="html">&lt;p&gt;Tanderson: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Migrated|slice-settings/support/advanced#air-gap}}&lt;br /&gt;
{{Slice Settings&lt;br /&gt;
&lt;br /&gt;
|The distance to skip between the support (including [[Settings/General/Support Material/Support Options/Interface Layers|interface layers]]) and the model. For ABS and PLA a value between 0.4 and 0.6 generally works well.&lt;br /&gt;
&lt;br /&gt;
In [[Release_Notes#1.5|MatterControl 1.5]], {{oldid|Settings/General/Support_Material/Support_Options/Air_Gap|1895|Z Gap}} was changed to Air Gap. Z Gap only worked in increments of the layer height. Air Gap can be any distance.|*millimeters (mm)&lt;br /&gt;
&lt;br /&gt;
Can be zero.|&lt;br /&gt;
&lt;br /&gt;
For this example, [http://wiki.mattercontrol.com/images/7/72/Support_test.stl Support_test.stl] is the model used.&lt;br /&gt;
&lt;br /&gt;
=== mm ===&lt;br /&gt;
&lt;br /&gt;
In this example, the distance between the top of the support material and the bottom of the model is 0.2 mm.}}&lt;br /&gt;
&lt;br /&gt;
=== Further details ===&lt;br /&gt;
&lt;br /&gt;
==== Animation ====&lt;br /&gt;
&lt;br /&gt;
​Here's an animation which will hopefully demonstrate a little better how the air gap works. As you can see, the first layer of the part is lifted up for the air gap, but then for the second layer it moves back down to where it would have been otherwise. In other words, the air gap does not shift the entire object up, only the first layer. This ensures that the first layer is loosely connected to the support, but subsequent layers are printed normally.&lt;br /&gt;
&lt;br /&gt;
[[File:Air Gap Animation.gif]]&lt;br /&gt;
&lt;br /&gt;
==== Exaggerated for clarity ====&lt;br /&gt;
&lt;br /&gt;
In this example we have set the air gap to 1mm (much larger than it should be) to illustrate how air gap works.&lt;br /&gt;
&lt;br /&gt;
[[File:Air Gap-ss-ex2.png]]&lt;br /&gt;
&lt;br /&gt;
The layer lines that are sitting on support material are printed with an offset of the air gap height (1mm). The parts that are not connected or touching the support material are printed at their normal layer height.&lt;br /&gt;
&lt;br /&gt;
[[File:Air Gap-ss-ex3.png]]&lt;br /&gt;
&lt;br /&gt;
The next layer (the one on top of support) is printed at its normal position, with no consideration of air gap at all. In this case (with the air gap sent to a very high value) actually below the air gapped sections. This is to ensure that support considerations do not actually change the geometry of the printed part. They are designed to only effect (attempt to affect) the adhesion of the material printed on top of support. &lt;br /&gt;
&lt;br /&gt;
We recommend  an air gap somewhere between .25 - .35 for a .35 - .5 nozzle.&lt;br /&gt;
&lt;br /&gt;
[[File:Air Gap-ss-ex4.png]]&lt;/div&gt;</summary>
		<author><name>Tanderson</name></author>	</entry>

	<entry>
		<id>http://wiki.mattercontrol.com/index.php?title=SETTINGS/General/Support_Material/Support_Options/X_and_Y_Distance&amp;diff=4181</id>
		<title>SETTINGS/General/Support Material/Support Options/X and Y Distance</title>
		<link rel="alternate" type="text/html" href="http://wiki.mattercontrol.com/index.php?title=SETTINGS/General/Support_Material/Support_Options/X_and_Y_Distance&amp;diff=4181"/>
				<updated>2018-12-31T19:14:35Z</updated>
		
		<summary type="html">&lt;p&gt;Tanderson: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Migrated|slice-settings/support/advanced#x-and-y-distance}}&lt;br /&gt;
{{Slice Settings&lt;br /&gt;
&lt;br /&gt;
|The distance the support material will be from the object in the X and Y directions.|*millimeters (mm)|&lt;br /&gt;
&lt;br /&gt;
=== mm ===&lt;br /&gt;
&lt;br /&gt;
In this example, support material will be generated 1 mm away from the model on the X and Y axes.}}&lt;/div&gt;</summary>
		<author><name>Tanderson</name></author>	</entry>

	<entry>
		<id>http://wiki.mattercontrol.com/index.php?title=SETTINGS/General/Support_Material/Support_Options/Interface_Layers&amp;diff=4180</id>
		<title>SETTINGS/General/Support Material/Support Options/Interface Layers</title>
		<link rel="alternate" type="text/html" href="http://wiki.mattercontrol.com/index.php?title=SETTINGS/General/Support_Material/Support_Options/Interface_Layers&amp;diff=4180"/>
				<updated>2018-12-31T19:04:26Z</updated>
		
		<summary type="html">&lt;p&gt;Tanderson: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Migrated|slice-settings/support/advanced#interface-layers}}&lt;br /&gt;
{{Slice Settings&lt;br /&gt;
&lt;br /&gt;
|The number of layers, or the distance, to print between the supports and the part.|*layer count (layers)&lt;br /&gt;
*millimeters (mm)&lt;br /&gt;
&lt;br /&gt;
Can be zero.|&lt;br /&gt;
&lt;br /&gt;
=== layers ===&lt;br /&gt;
&lt;br /&gt;
In this example, three interface layers will be drawn above the support material and below the model.}}&lt;br /&gt;
&lt;br /&gt;
=== mm ===&lt;br /&gt;
&lt;br /&gt;
In this example, 2 mm of interface layers will be drawn above the support material and below the model.&lt;br /&gt;
&lt;br /&gt;
[[File:{{SUBPAGENAME}}-ss-ex1.png]]&lt;/div&gt;</summary>
		<author><name>Tanderson</name></author>	</entry>

	<entry>
		<id>http://wiki.mattercontrol.com/index.php?title=SETTINGS/General/Support_Material/Support_Options/Create_Perimeter&amp;diff=4179</id>
		<title>SETTINGS/General/Support Material/Support Options/Create Perimeter</title>
		<link rel="alternate" type="text/html" href="http://wiki.mattercontrol.com/index.php?title=SETTINGS/General/Support_Material/Support_Options/Create_Perimeter&amp;diff=4179"/>
				<updated>2018-12-29T02:27:48Z</updated>
		
		<summary type="html">&lt;p&gt;Tanderson: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Migrated|slice-settings/support/advanced#create-perimeter}}&lt;br /&gt;
{{Slice Settings&lt;br /&gt;
&lt;br /&gt;
|Generates an outline around the support material to improve strength and hold up interface layers.|*Boolean|&lt;br /&gt;
&lt;br /&gt;
=== Boolean ===&lt;br /&gt;
&lt;br /&gt;
The check box is checked to use the function.}}&lt;br /&gt;
&lt;br /&gt;
The check box is unchecked to leave the function unused.&lt;br /&gt;
&lt;br /&gt;
[[File:{{SUBPAGENAME}}-ss-ex1.png]]&lt;/div&gt;</summary>
		<author><name>Tanderson</name></author>	</entry>

	<entry>
		<id>http://wiki.mattercontrol.com/index.php?title=SETTINGS/General/Support_Material/Support_Options/Support_Percent&amp;diff=4178</id>
		<title>SETTINGS/General/Support Material/Support Options/Support Percent</title>
		<link rel="alternate" type="text/html" href="http://wiki.mattercontrol.com/index.php?title=SETTINGS/General/Support_Material/Support_Options/Support_Percent&amp;diff=4178"/>
				<updated>2018-09-26T01:16:39Z</updated>
		
		<summary type="html">&lt;p&gt;Tanderson: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Migrated|slice-settings/support/support#support-percent}}&lt;br /&gt;
{{Slice Settings&lt;br /&gt;
&lt;br /&gt;
|The percentage of extrusion width that overlaps on the previous layer which will trigger support material generation.&lt;br /&gt;
&lt;br /&gt;
This replaces the [[Settings/General/Support Material/Support Material/Amount|Amount]] setting which was deprecated starting in version 1.5.|*percent (%)&lt;br /&gt;
&lt;br /&gt;
=== Presets ===&lt;br /&gt;
&lt;br /&gt;
*Little : 10%&lt;br /&gt;
*Standard : 50%&lt;br /&gt;
*Lots : 90%&lt;br /&gt;
*Custom : user-defined|&lt;br /&gt;
&lt;br /&gt;
=== percent ===&lt;br /&gt;
&lt;br /&gt;
In this example, a layer with an extrusion width which hangs 50% off over the previous layer will have support material generated.}}&lt;br /&gt;
&lt;br /&gt;
[[File:{{SUBPAGENAME}}-ss-ex1.png]]&lt;/div&gt;</summary>
		<author><name>Tanderson</name></author>	</entry>

	<entry>
		<id>http://wiki.mattercontrol.com/index.php?title=SETTINGS/General/Support_Material/Support_Options/Support_Everywhere&amp;diff=4177</id>
		<title>SETTINGS/General/Support Material/Support Options/Support Everywhere</title>
		<link rel="alternate" type="text/html" href="http://wiki.mattercontrol.com/index.php?title=SETTINGS/General/Support_Material/Support_Options/Support_Everywhere&amp;diff=4177"/>
				<updated>2018-09-26T00:46:09Z</updated>
		
		<summary type="html">&lt;p&gt;Tanderson: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Migrated|slice-settings/support/support#support-everywhere}}&lt;br /&gt;
{{Slice Settings&lt;br /&gt;
&lt;br /&gt;
|Generates [[Support material|support material]] starting on top of internal surfaces. If unchecked support will only generate starting on the bed.|*Boolean|&lt;br /&gt;
&lt;br /&gt;
=== Boolean ===&lt;br /&gt;
&lt;br /&gt;
The check box is checked to use the function.}}&lt;br /&gt;
&lt;br /&gt;
The check box is unchecked to leave the function unused.&lt;br /&gt;
&lt;br /&gt;
[[File:{{SUBPAGENAME}}-ss-ex1.png]]&lt;/div&gt;</summary>
		<author><name>Tanderson</name></author>	</entry>

	<entry>
		<id>http://wiki.mattercontrol.com/index.php?title=SETTINGS/General/Support_Material/Support_Material/Generate_Support_Material&amp;diff=4176</id>
		<title>SETTINGS/General/Support Material/Support Material/Generate Support Material</title>
		<link rel="alternate" type="text/html" href="http://wiki.mattercontrol.com/index.php?title=SETTINGS/General/Support_Material/Support_Material/Generate_Support_Material&amp;diff=4176"/>
				<updated>2018-09-26T00:37:26Z</updated>
		
		<summary type="html">&lt;p&gt;Tanderson: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Migrated|slice-settings/support/support}}&lt;br /&gt;
{{Slice Settings&lt;br /&gt;
&lt;br /&gt;
|Generates support material under areas of the part which may be too steep to support themselves.|*Boolean|&lt;br /&gt;
&lt;br /&gt;
=== Boolean ===&lt;br /&gt;
&lt;br /&gt;
The check box is checked to use the function.}}&lt;br /&gt;
&lt;br /&gt;
The check box is unchecked to leave the function unused.&lt;br /&gt;
&lt;br /&gt;
[[File:{{SUBPAGENAME}}-ss-ex1.png]]&lt;/div&gt;</summary>
		<author><name>Tanderson</name></author>	</entry>

	<entry>
		<id>http://wiki.mattercontrol.com/index.php?title=SETTINGS/General/Multiple_Extruders/Extruder_Change/Wipe_Tower_Size&amp;diff=4175</id>
		<title>SETTINGS/General/Multiple Extruders/Extruder Change/Wipe Tower Size</title>
		<link rel="alternate" type="text/html" href="http://wiki.mattercontrol.com/index.php?title=SETTINGS/General/Multiple_Extruders/Extruder_Change/Wipe_Tower_Size&amp;diff=4175"/>
				<updated>2018-09-19T19:03:48Z</updated>
		
		<summary type="html">&lt;p&gt;Tanderson: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Migrated|slice-settings/general/extruder-change#wipe-tower-distance}}&lt;br /&gt;
{{Slice Settings&lt;br /&gt;
&lt;br /&gt;
|The length and width of a square tower created at the back left of the print used for wiping the next nozzle when changing between multiple extruders. Set to 0 to disable.|*millimeters (mm)|&lt;br /&gt;
&lt;br /&gt;
=== mm ===&lt;br /&gt;
&lt;br /&gt;
For this example, [http://104.154.32.252/images/0/0d/Calibration_-_Box.stl Calibration - Box.stl] is the model used.&lt;br /&gt;
&lt;br /&gt;
A 2 mm x 2 mm wipe tower shown at the back left of the two Calibration Boxes.}}&lt;/div&gt;</summary>
		<author><name>Tanderson</name></author>	</entry>

	</feed>