No description
Find a file
Lars Brubaker 0df8886bef More tests
Validate that known settings are requested with the correct type passed to GetValue
Put in tests for extruder_count
2016-07-13 09:36:33 -07:00
AboutPage Suppress DeleteCacheData until MatterHackers/MCCentral#176 is fixed 2016-07-08 15:50:00 -07:00
ActionBar Remove call to ToString, SettingsKey properties are not strings 2016-07-11 15:30:30 -07:00
ApplicationView Set ActiveUserName on ChangeCloudSyncStatus, after login/logout 2016-07-11 15:30:30 -07:00
BrailleBuilder Made the scale control work with single transforms 2016-06-22 16:29:14 -07:00
Community.CsharpSqlite
ConfigurationPage Convert more string literals into SettingsKey constants 2016-07-12 17:51:26 -07:00
ControlElements Make sure we make copies of images that we are modifying in image button creation. 2016-07-07 10:28:51 -07:00
CustomWidgets Change the too big to render message to Reduce Polygons to Render 2016-06-22 09:55:57 -07:00
DataStorage Convert more string literals into SettingsKey constants 2016-07-12 17:51:26 -07:00
EeProm Moved TextWidget.GlobalPointSizeScaleRatio -> GuiWidget.DeviceScale 2016-05-06 17:56:27 -07:00
History Convert more string literals into SettingsKey constants 2016-07-12 17:51:26 -07:00
Launcher
Library Fixed a null reference in libraryDataView 2016-06-23 16:01:04 -07:00
PartPreviewWindow Convert more string literals into SettingsKey constants 2016-07-12 17:51:26 -07:00
PluginSystem Fix Spelling 2016-02-12 19:06:36 -08:00
PrinterCommunication Convert more string literals into SettingsKey constants 2016-07-12 17:51:26 -07:00
PrinterControls Convert more string literals into SettingsKey constants 2016-07-12 17:51:26 -07:00
PrinterDriverInstaller
Properties Added code so that we can set a special ApplicationDataStorage.Instance.ApplicationUserData for testing. Also removed code that renamed original MatterControl folder name in AppData. 2015-12-21 15:58:53 -08:00
Queue Convert more string literals into SettingsKey constants 2016-07-12 17:51:26 -07:00
SettingsManagement Sort the make and model in the printer selection menus. 2016-07-12 09:40:57 -07:00
SetupWizard More work on the copy printers to user wizard. 2016-07-12 18:23:31 -07:00
SlicerConfiguration More tests 2016-07-13 09:36:33 -07:00
StaticData Wrote a new test for first_layer_extrusion_width being parsed correctly 2016-07-12 18:06:06 -07:00
Submodules Wrote a new test for first_layer_extrusion_width being parsed correctly 2016-07-12 18:06:06 -07:00
Tests More tests 2016-07-13 09:36:33 -07:00
TextCreator Made the scale control work with single transforms 2016-06-22 16:29:14 -07:00
Utilities Made Marlin EEProm have import and export 2016-02-12 10:26:40 -08:00
VersionManagement Loading printer profile now follows local cache fallback when offline 2016-06-27 12:41:08 -07:00
.gitignore Add localization helper in Debug builds 2016-01-08 16:06:14 -08:00
.gitmodules
.travis.yml Revise .travis.yml, readme 2016-04-24 20:46:32 -07:00
App.config
application.ico Only register FileSystemWatchers on Windows 2016-01-12 16:44:05 -08:00
desktop.ini
LICENSE
LocalizedString.cs Prevent AutoGeneratingTranslationMap on Android 2016-01-11 13:43:22 -08:00
MatterControl Deployment Tests.cts
MatterControl.csproj Put in class to copy guest profiles to user profiles. 2016-07-12 13:36:47 -07:00
MatterControl.sln Add conditional user auth panel before ChangeToAddPrinter 2016-06-02 11:31:49 -07:00
MatterControlApplication.cs Migrate make/model settings keys to SettingsKey, revise service urls 2016-07-07 12:37:39 -07:00
packages.config
PdfSharp.dll
PrinterEmulator.py Tracking current completed percent. 2016-02-24 12:39:30 -08:00
README.md Revise .travis.yml, readme 2016-04-24 20:46:32 -07:00
RunUnitTests.txt

MatterControl

Master
Linux Travis CI-Master
Windows AppVeyor-Master

MatterControl is an open-source program designed to control and enhance the desktop 3D printing experience. It's designed to help you get the most out of your 3D printer - making it easy to track, preview, and print your 3D parts. Development of MatterControl is sponsored by MatterHackers and it's partners.

Screenshot

Features

Download

Release Notes

Building from Source

MatterControl is written in C#. It uses the agg-sharp GUI abstraction layer. See this wiki article if you want to contribute code.

  1. Checkout the latest source code and submodules:

     git clone --recursive https://github.com/MatterHackers/MatterControl.git
     cd MatterControl
    
  2. Install MonoDevelop and Nuget.

     sudo apt-get install monodevelop nuget
    
  3. Add Mono SSL Support - Copy in Mozilla Root certificates to enable NuGet and MatterControl SSL requests

     mozroots --import --sync
    
  4. Restore NuGet packages - On MonoDevelop 4.0 or older you can install NuGet Addin. If you are on Mint, also install libmono-cairo2.0-cil. Alternatively you can run the command line NuGet application to restore the project packages:

     nuget restore MatterControl.sln
    
  5. Optionally switch to a target branch

     git checkout master
     git submodule update --init --recursive
    

    As a single command line statement:

     targetBranch=master && git checkout $targetBranch && git submodule update --init --recursive
    
  6. Build MatterControl

     mdtool build -c:Release MatterControl.sln
    

    or

     xbuild /p:Configuration=Release MatterControl.sln
    
  7. Link the StaticData from your source directory to the build directory

     ln -s ../../StaticData bin/Release/StaticData
    
  8. After MatterControl has been built in MonoDevelop it is recommended that you run the application via command line or via a shell script to invoke mono.

     mono bin/Release/MatterControl.exe
    

    If you'd like to log errors for troubleshooting

     mono bin/Release/MatterControl.exe > log.txt
    

    If you want detailed error logging and tracing

     MONO_LOG_LEVEL=debug mono bin/Release/MatterControl.exe > log.txt
    
  9. In order for MatterControl to access the serial ports, you will need to give your user the appropriate permissions. On Debian based distros, add yourself to the dialout group. On Arch, add yourself the the uucp and lock groups instead.

     gpasswd -a $USER dialout
    

Serial Helper

  1. Change to the SerialHelper directory

     cd Submodules/agg-sharp/SerialPortCommunication/SerialHelper
    
  2. Run the build script

     ./build.sh
    
  3. If your receive errors you may need to install libc6-dev-i386 for x86 compilation

     sudo apt-get install libc6-dev-i386
    

Help, Bugs, Feedback

For information on using MatterControl, check the MatterControl Wiki. If you have questions or feedback, feel free to post on the MatterHackers Forums or send an email to support@matterhackers.com. To report a bug, file an issue on GitHub.