Skip to content

Latest commit

 

History

History
45 lines (33 loc) · 1.3 KB

MARKERS.md

File metadata and controls

45 lines (33 loc) · 1.3 KB

A quick summary of how to mark code files in this repository

CSharp

All C# code contributed after 1 July, 2024 23:00:00 UTC should contain the following header:

/*
 * New Frontiers - This file is licensed under AGPLv3
 * Copyright (c) [Year] New Frontiers Contributors
 * See AGPLv3.txt for details.
 */

For any changes within MIT licensed(upstream) files, the following marker should be used at the start of the modification

/* New Frontiers - [Title of changes] - [Description of changes]
This code is licensed under AGPLv3. See AGPLv3.txt */
yourCodeHere();
// End of modified code

Yaml

All Yaml files contributed after 1 July, 2024 23:00:00 UTC should contain the following header:

# New Frontiers - This file is licensed under AGPLv3
# Copyright (c) [Year] New Frontiers Contributors
# See AGPLv3.txt for details.

For any changes within MIT licensed(upstream) files, the following marker should be used at the start of the modification

# New Frontiers - [Title of changes] - [Description of changes]
# This code is licensed under AGPLv3. See LICENSE
modifiedYaml: "Goes Here"
# End of modified code

Note

Both Space Wizards and Nyanotrasen code is licensed under MIT, and any changes made to their code should be marked as AGPLv3 with the above markers.