Skip to content

Latest commit

 

History

History
46 lines (37 loc) · 2.04 KB

CONTRIBUTING.md

File metadata and controls

46 lines (37 loc) · 2.04 KB

Bug reports, feature requests or code contributions are always very welcome. To make things easier, here are a few tips:

Reporting bugs, requesting features

  • Best way to report bugs and request new features is to use GitHub issues, but you can contact me also any other way.

Code contribution

  • Building and installing Magnum is described in the documentation.

  • Follow the project coding guidelines. In short -- try to match style of the surrounding code and avoid any trailing whitespace. When in doubt, consult coding guidelines, which are available also online.

  • Best way to contribute is by using GitHub pull requests -- fork the repository and make pull request from feature branch. You can also send patches via e-mail or contact me any other way.

  • All your code will be released under license of the project (see COPYING file for details), so make sure you and your collaborators (or employers) have no problems with it. If you create new files, don't forget to add license header (verbatim copied from other files) and don't forget to add yourself to license header of files you added or significantly modified, for example:

    /*
        This file is part of Magnum.
    
        Copyright © 2010, 2011, 2012, 2013, 2014, 2015
                  Vladimír Vondruš <mosra@centrum.cz>
        Copyright © YEAR YOUR_NAME <your@mail.com>
    
        Permission is hereby granted, free of charge, to any person obtaining a
        ...
    

Contact