Skip to content

Commit

Permalink
release: version 5.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jdrueckert committed Sep 3, 2022
2 parents beb50fe + 490e22e commit 52e151b
Show file tree
Hide file tree
Showing 421 changed files with 16,032 additions and 2,492 deletions.
8 changes: 6 additions & 2 deletions .github/CONTRIBUTING.md
Expand Up @@ -4,18 +4,22 @@ If you would like to contribute code, documentation, or other assets you can do

*When submitting code, please make every effort to follow existing conventions and style in order to keep the code as readable as possible.*

Read on for an overview and [check the wiki for more details](https://github.com/MovingBlocks/Terasology/wiki). For questions please join us in our [forum](http://forum.terasology.org/forum/) or on `#terasology` (irc.freenode.net).
Read on for an overview and [check the wiki for more details](https://github.com/MovingBlocks/Terasology/wiki).
For questions please join us in our [forum] or [Discord].

## File an Issue

You can report bugs and feature requests to [GitHub Issues](https://github.com/MovingBlocks/Terasology/issues). As mentioned please look for a similar existing issue before submitting a new one.

For finding easy to do issues to start with look at the [Good First Issue](https://github.com/MovingBlocks/Terasology/labels/Good%20First%20Issue) issues.

We prefer questions and support requests be posted in the [forum](http://forum.terasology.org/forum).
We prefer questions and support requests be posted in the [forum] or [Discord].

__Please provide as much information as possible to help us solve problems and answer questions better!__

[forum]: https://forum.terasology.org/forum/
[Discord]: https://discord.gg/Terasology

## PR Title / Commit Message Guidelines

We try to follow the [conventional commits](https://www.conventionalcommits.org/en/v1.0.0-beta.2/) style for commit messages and pull request titles.
Expand Down
16 changes: 16 additions & 0 deletions .github/SECURITY.md
@@ -0,0 +1,16 @@
# Security Policy

## Supported Versions

We only address security issues of the latest full release or the latest release candidate that followed it. Please see our [releases](https://github.com/MovingBlocks/Terasology/releases).

## Reporting a Vulnerability

We value your work and input and want to give you the opportunity to publish your findings as soon as possible.
However, to keep us and our users safe, we want to get at least started on patching the issue before you do so.

This is why, for reporting a vulnerability, we'd appreciate you talking to us directly first by sending an e-mail to the following address:

* terasology@gmail.com

This will give us the opportunity to assess the issue internally and get back to you to discuss how to proceed.
9 changes: 7 additions & 2 deletions .idea/.gitignore

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions .idea/checkstyle-idea.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 9 additions & 0 deletions .idea/codeInsightSettings.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

167 changes: 167 additions & 0 deletions .idea/codeStyles/Project.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions .idea/copyright/profiles_settings.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions .idea/dictionaries/kevint.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions .idea/findbugs-idea.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions .idea/inspectionProfiles/Terasology.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/kotlinc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 4 additions & 3 deletions .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion .idea/runConfigurations/TerasologyPC_for_mac.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 8 additions & 1 deletion Jenkinsfile
Expand Up @@ -54,6 +54,7 @@ pipeline {
gradlew,
gradle/wrapper/*,
templates/build.gradle,
templates/module.logback-test.xml,
config/**,
facades/PC/build/distributions/Terasology.zip,
engine/build/resources/main/org/terasology/engine/version/versionInfo.properties,
Expand All @@ -76,6 +77,9 @@ pipeline {
//
// See https://docs.gradle.org/current/userguide/java_testing.html#test_reporting
junit testResults: '**/build/test-results/unitTest/*.xml'
// Jenkins truncates large test outputs, so archive it as well.
tar file: 'build/unitTest-results.tgz', archive: true, compress: true, overwrite: true,
glob: '**/build/test-results/unitTest/*.xml'
}
}
}
Expand Down Expand Up @@ -134,7 +138,7 @@ pipeline {

recordIssues(skipBlames: true, enabledForFailure: true,
tools: [
spotBugs(pattern: '**/build/reports/spotbugs/main/*.xml', useRankAsPriority: true),
spotBugs(pattern: '**/build/reports/spotbugs/*.xml', useRankAsPriority: true),
pmdParser(pattern: '**/build/reports/pmd/*.xml')
])

Expand Down Expand Up @@ -165,6 +169,9 @@ pipeline {
//
// See https://docs.gradle.org/current/userguide/java_testing.html#test_reporting
junit testResults: '**/build/test-results/integrationTest/*.xml', allowEmptyResults: true
// Jenkins truncates large test outputs, so archive it as well.
tar file: 'build/integrationTest-results.tgz', archive: true, compress: true, overwrite: true,
glob: '**/build/test-results/integrationTest/*.xml'
}
}
}
Expand Down

0 comments on commit 52e151b

Please sign in to comment.