-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9053d1d
commit c7571ea
Showing
3 changed files
with
119 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# Legal Info | ||
|
||
## Copyright | ||
|
||
The Authors retain all copyright to their respective work here submitted. | ||
|
||
## Code license | ||
|
||
Content contributed to this repository after commit 87c70a89a67d0521a56388e6b1c3f2cb947943e4 is licensed under the GNU Affero General Public License version 3.0 unless otherwise stated. See [LICENSE-AGPLv3](https://github.com/Simple-Station/Parkstation-Friendly-Chainsaw/blob/master/LICENSE-AGPLv3.txt). | ||
|
||
Content contributed to this repository before commit 87c70a89a67d0521a56388e6b1c3f2cb947943e4 is licensed under the MIT license unless otherwise stated. See [LICENSE-MIT](https://github.com/Simple-Station/Parkstation-Friendly-Chainsaw/blob/master/LICENSE-MIT.txt). | ||
|
||
[87c70a89a67d0521a56388e6b1c3f2cb947943e4](https://github.com/Simple-Station/Parkstation-Friendly-Chainsaw/commit/87c70a89a67d0521a56388e6b1c3f2cb947943e4) was pushed on February 17th 2024 at 21:48 UTC | ||
|
||
## Warranty | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS | ||
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR | ||
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER | ||
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN | ||
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
# Guide to Codebase Change Markers | ||
|
||
Whenever you change a file not owned by this codebase you need to clarify which portions have been changed. If the markers described below don't have a description for the file type you're working with, don't add a marker yet and ask a reviewer if you need one and how it should be done. | ||
|
||
The following is the formatting for annotations per language type: | ||
|
||
|
||
### C# | ||
|
||
Single line changes: | ||
|
||
```csharp | ||
<Rest of the unchanged file above...> | ||
[Your code here. This can be entirely original or modified from the original file] // Parkstation-[TitleOfFeature] - Optional clarification of why this change was done | ||
<Rest of the unchanged file below...> | ||
``` | ||
|
||
Multiple line changes: | ||
|
||
```csharp | ||
<Rest of the unchanged file above...> | ||
// Parkstation-[TitleOfFeature]-Start - Optional clarification of why this change was done | ||
[Your code here. This can be entirely original or modified from the original file] | ||
// Parkstation-[TitleOfFeature]-End | ||
<Rest of the unchanged file below...> | ||
``` | ||
|
||
|
||
### XAML | ||
|
||
Any amount of lines changed: | ||
|
||
```xaml | ||
<Rest of the unchanged file above...> | ||
<!-- Parkstation-[TitleOfFeature]-Start - Optional clarification of why this change was done --> | ||
[Your code here. This can be entirely original, or modified from the original file] | ||
<!-- Parkstation-[TitleOfFeature]-End --> | ||
<Rest of the unchanged file below...> | ||
``` | ||
|
||
|
||
|
||
### YML | ||
|
||
Single line changes: | ||
|
||
```yml | ||
<Rest of the unchanged file above...> | ||
[Your code here. This can be entirely original, or modified from the original file] # Parkstation-[TitleOfFeature] - Optional clarification of why this change was done | ||
<Rest of the unchanged file below...> | ||
``` | ||
|
||
Multiple line changes: | ||
|
||
```yml | ||
<Rest of the unchanged file above...> | ||
# Parkstation-[TitleOfFeature]-Start - Optional clarification of why this change was done | ||
[Your code here. This can be entirely original, or modified from the original file] | ||
# Parkstation-[TitleOfFeature]-End | ||
<Rest of the unchanged file below...> | ||
``` | ||
|
||
|
||
### Never Needed | ||
|
||
- MD | ||
- TXT | ||
- XML | ||
- JSON | ||
- RGA (Robust Generic Attribution, specifies asset licenses) | ||
- PNG (Licensed differently) | ||
- OGG (Licensed differently) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters