No description
Find a file
Lars Brubaker 85403d78f6 make set color work on types with source object
issue: MatterHackers/MCCentral#3985
Changing color on a Scale node makes it go away
2018-08-15 17:01:46 -07:00
AboutPage Improve DI, use constructor injection 2018-07-12 09:33:15 -07:00
ActionBar Fix failing QualitySettingsStayAsOverrides test 2018-08-13 13:50:35 -07:00
ApplicationView Initialize new agg FileMissingMesh on load 2018-08-13 18:49:16 -07:00
Community.CsharpSqlite
ConfigurationPage Add space between concatenated localization strings 2018-08-06 15:34:44 -07:00
ControlElements Make sure we always send a response 2018-07-17 16:20:50 -07:00
CustomWidgets The color picker is working nicely now. 2018-08-14 17:20:43 -07:00
DataStorage Consolidate application paths 2018-08-01 18:30:36 -07:00
DesignTools make set color work on types with source object 2018-08-15 17:01:46 -07:00
EeProm adding scroll to marlin eeprom window 2018-07-21 12:15:50 -07:00
History Fix layout issue and runtime exception in PrintHistory view 2018-07-18 17:12:56 -07:00
Launcher
Library Getting MaterControl solution to build 2018-08-09 10:48:48 -07:00
MatterControl.OpenGL Use new Graphics2D.Render(IVertexSource) signature 2018-08-14 17:34:28 -07:00
MatterControl.Printing Add GCodeFileStreamed(Stream) overload 2018-07-19 17:54:46 -07:00
PartPreviewWindow Revert back to two buttons - merge/delete 2018-08-11 10:07:06 -07:00
PluginSystem
PrinterCommunication Consolidate PrinterEmulator into MatterControl 2018-07-27 21:51:25 -07:00
PrinterControls Use current rather than abandoned naming, remove dead code 2018-08-13 13:31:37 -07:00
PrinterDriverInstaller
Properties
Queue Move PartSheetLogo into Images subdirectory 2018-08-07 14:03:54 -07:00
SettingsManagement Get gifs working in markdown 2018-06-25 17:14:08 -07:00
SetupWizard revert WrappedTextWidget to TextWidget 2018-07-18 16:13:13 -07:00
SlicerConfiguration Revise path test to consider Asset relative paths 2018-08-13 18:59:15 -07:00
StaticData Initialize new agg FileMissingMesh on load 2018-08-13 18:49:16 -07:00
Submodules latest agg 2018-08-15 11:56:17 -07:00
Tests Use current rather than abandoned naming, remove dead code 2018-08-13 13:31:37 -07:00
Tools Upgrade Roslyn 2018-07-29 16:49:41 -07:00
Utilities Consolidate application paths 2018-08-01 18:30:36 -07:00
VersionManagement
.gitignore
.gitmodules
.travis.yml Revise travis script 2018-08-10 17:30:21 -07:00
.yaspellerrc
App.config
application.ico
config.json
CONTRIBUTING.md
desktop.ini
LICENSE
MatterControl Deployment Tests.cts
MatterControl.csproj Merge branch 'master' into master 2018-08-13 18:42:02 -07:00
MatterControl.mac.nunit
MatterControl.sln Getting MaterControl solution to build 2018-08-09 10:48:48 -07:00
MatterControlApplication.cs Remove assembly validation as consolidated into MatterControl 2018-08-07 11:58:23 -07:00
packages.config Getting MaterControl solution to build 2018-08-09 10:48:48 -07:00
PdfSharp.dll
Program.cs Init PlatformFeatures, ProcCommandLineArgs b4 ShowAsSystemWindow 2018-08-02 17:56:59 -07:00
README.md Fixed screenshot in README 2018-07-20 14:25:54 -07:00
RootSystemWindow.cs Simplify title generation 2018-08-02 18:19:55 -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.