Fix typos

This commit is contained in:
rubenwardy 2020-06-03 18:28:08 +01:00
parent 749e7c6cd0
commit c99a2a554b
2 changed files with 11 additions and 3 deletions

@ -26,9 +26,9 @@ ContentDB understands the following information:
* `description` - A short description to show in the client. * `description` - A short description to show in the client.
* `depends` - Comma-separated hard dependencies. * `depends` - Comma-separated hard dependencies.
* `optional_depends` - Comma-separated hard dependencies. * `optional_depends` - Comma-separated soft dependencies.
* `min_minetest_version` - The minimum Minetest version this runs on.
* `min_minetest_version` - The minimum Minetest version this runs on. * `min_minetest_version` - The minimum Minetest version this runs on.
* `max_minetest_version` - The maximum Minetest version this runs on.
and for mods only: and for mods only:
@ -36,6 +36,11 @@ and for mods only:
## Controlling Release Creation ## Controlling Release Creation
### Git Releases and Submodules
ContentDB can automatically create releases from a git repository.
It will include submodules in the resulting archive.
### Automatic Release Creation ### Automatic Release Creation
The preferred way is to use [webhooks from GitLab or GitHub](/help/release_webhooks/). The preferred way is to use [webhooks from GitLab or GitHub](/help/release_webhooks/).
@ -52,7 +57,8 @@ This happens when you create a release via the ContentDB web interface, the
### Excluding files ### Excluding files
You can exclude files from a release by using [gitattributes](https://git-scm.com/docs/gitattributes): When using git to create releases,
you can exclude files from a release by using [gitattributes](https://git-scm.com/docs/gitattributes):
.* export-ignore .* export-ignore

@ -73,3 +73,5 @@ The process is as follows:
Eg: Eg:
min_minetest_version = 5.0 min_minetest_version = 5.0
Also see [Package Configuration and Releases Guide](/help/package_config/).