adapt contributing text

This commit is contained in:
Philippe Teuwen 2022-01-06 00:37:34 +01:00
parent cdfb83075f
commit 8952a1f712
2 changed files with 16 additions and 7 deletions

View file

@ -266,17 +266,26 @@ For these reasons, vague and general filenames (e.g. `util.*`, `global.*`, `misc
License/description header first: License/description header first:
```c ```c
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
// YOUR COPYRIGHT LINE GOES HERE // Copyright (C) Proxmark3 contributors. See AUTHORS.md for details.
// //
// This code is licensed to you under the terms of the GNU GPL, version 2 or, // This program is free software: you can redistribute it and/or modify
// at your option, any later version. See the LICENSE.txt file for the text of // it under the terms of the GNU General Public License as published by
// the license. // the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// See LICENSE.txt for the text of the license.
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
// FILE DESCRIPTION GOES HERE // FILE DESCRIPTION GOES HERE
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
``` ```
If you modify a file in any non-trivial way (add code, etc.), add your copyright
to the top with the current year. To avoid a huge mess of copyright notices in the source files, it has been chosen to keep this generic notice. Don't worry, you still hold the copyright on your respective contributions and date and authorship are tracked by the Git history, as explained in [AUTHORS](AUTHORS.md).
In January 2022, the Git history has recorded 293 different authors.
## Header files ## Header files

View file

@ -234,6 +234,6 @@ The Proxmark3 source code is covered by the following licensing terms, usually r
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details. GNU General Public License for more details.
A copy of the GPLv3 is available in [LICENSE](LICENSE.TXT). A copy of the GPLv3 is available in [LICENSE](LICENSE.txt).
Some dependencies may be under other free licensing terms compatible with the Proxmark3 licensing terms, see their respective description. Some dependencies may be under other free licensing terms compatible with the Proxmark3 licensing terms, see their respective description.