CONTRIBUTING
- SuperSlicer and Slic3r are merging so you should be able to use the superslicer repository or the slic3r one. (when the switch will be completed)
Bug Reports
Did you encounter an issue with using SuperSlicer? Fear not! This guide will help you to write a good bug report in just a few, simple steps.
There is a good chance that the issue, you have encountered, is already reported. Please check the list of reported issues before creating a new issue report. If you find an existing issue report, feel free to add further information to that report.
If you are reporting an issue relating to a release version of SuperSlicer, it would help a lot if you could also confirm that the behavior is still present in the newest build.
Please include the needed information when reporting an issue (follow the template and add your project file!)
Please make sure only to include one issue per report. If you encounter multiple, unrelated issues, please report them as such.
Simon Tatham has written an excellent on article on How to Report Bugs Effectively which is well worth reading, although it is not specific to Slic3r.
Submitting a Patch
Do you want to help fix issues in or add features to SuperSlicer/Slic3r? That's also very, very welcome :)
Basically you can follow the GitHub
flow for submitting
patches, but please also read below for more specific information about
contributing to the Slic3r project.
- Development
- Review the TODO wiki page.
- Contribute to the Manual! (see its GitHub repository)
- Add an issue to the GitHub tracker if it isn't already present.
- Update Slic3r's test suite to improve test coverage Writing Test Cases
- A good place to start if you can is to look over the Pull Request or Bust milestone. This contains all of the things (mostly new feature requests) that there isn't time or resources to address at this time.
- Things that are probably fixable via scripts (usually marked as such) have the lowest bar to getting something that works, as you don't need to recompile Slic3r to test.
- If you're starting on an issue, please say something in the related issues thread so that someone else doesn't start working on it too.
- If there's nothing in the Pull Request or Bust milestone that interests you, the next place to look is for issues that don't have a milestone. Lots of people commit ideas to Slic3r, and it's difficult to keep up and sort through them.
- Before sending a pull request, please make sure that the changes you are submitting are contained in their own git branch, as PRs merge histories.
- Pull requests that contain unrelated changes will be rejected.
- A common workflow is to fork the master branch, create your new branch and do your work there. git-rebase and git-cherry-pick are also helpful for separating out unrelated changes.
- If you are pushing Slic3r code changes that touch the main application, it is very much appreciated if you write some tests that check the functionality of the code. It's much easier to vet and merge in code that includes tests and doing so will likely speed things up.
Communication