The following guidelines are designed for contributors to MiNAA.
For reporting a bug, a failed function or requesting a new feature, open an issue in GitHub's issue tracker. First, seach through existing issues (open or closed) that might have the answer to your question.
When reporting a bug, it is most helpful to include:
- A quick background/summary
- Specific steps to reproduce, with sample code if you can
- The expected result
- The actual result
- Notes (i.e. why you think this might be happening, or things you tried that didn't work)
To make contributions to MiNAA, request your changes or contributions via a pull request against the development
branch of the MiNAA repository.
Please use the following steps:
- Fork the MiNAA repository to your GitHub account
- Clone your fork locally with
git clone
- Create a new branch with a name that describes your contribution. For example, if your contribution is a bug fix in
fileio.cpp
, your new branch can be namedbugfix/fileio
. You can create and switch to it withgit checkout -b bugfix/fileio
- Make your changes on this new branch.
- Push your changes to your fork.
- Submit a pull request against the
development
branch in MiNAA.
By contributing, you agree that your contributions will be licensed under its MIT License.