We are keen for developers to contribute to open source projects to keep them great! Whilst every effort is made to provide features that will assist a wide range of development cases, it is inevitable that we will not cater for all situations. Therefore, if you feel that your custom solution is very general and would assist other developers then by all means, we would love to review your contribution. There are, however, a few guidelines that we need contributors to follow, so that we can have a chance of keeping on top things.
- Make sure you have a GitHub account
- Create a new issue on the GitHub repository, providing one does not already exist
- Clearly describe the issue including steps to reproduce when it is a bug
- Make sure you fill in the earliest version that you know has the issue
- Fork the repository on GitHub
- Create a topic branch from where you want to base your work
- This is usually the master branch
- Only target release branches if you are certain your fix must be on that branch
- Name branches with the type of issue you are fixing;
feat
,chore
,docs
- Please avoid working directly on the master branch
- Make commits of logical units
- Make sure your commit messages are in the proper format
All pull request commit messages are automatically checked using GitCop - this will inform you if there are any issues with your commit message and give you an opportunity to rectify any issues.
The commit message lines should never exceed 72 lines and should be entered in the following format:
<type>(<scope>): <subject>
<BLANK LINE>
<body>
<BLANK LINE>
The type must be one of the folowing:
- feat: A new feature
- fix: A bug fix
- docs: Documentation only changes
- refactor: A code change that neither fixes a bug or adds a feature
- perf: A code change that improves performance
- test: Adding missing tests
- chore: Changes to the build process or auxiliary tools and libraries such as documentation generation
The scope could be anything specifiyng the place of the commit change, such as, Controller
, Interaction
, Locomotion
, etc...
The subject contains succinct description of the change:
- use the imperative, present tense: "change" not "changed" nor "changes"
- don't capitalize first letter, unless naming something, such as
Bootstrap
- no dot (.) at the end of the subject line
Just as in the subject, use the imperative, present tense: "change" not "changed" nor "changes" The body should include the motivation for the change and contrast this with previous behavior. References to previous commit hashes is actively encouraged if they are relevant.
- Push your changes to your topic branch in your repository
- Submit a pull request to the repository
thestonefox/SteamVR_Unity_Plugin
- The core team will aim to look at the pull request as soon as possible and provide feedback where required