Improve Documentation Again
All checks were successful
ModUpdater/pipeline/head This commit looks good
All checks were successful
ModUpdater/pipeline/head This commit looks good
This commit is contained in:
parent
9c9f759ab5
commit
c3c2b47b67
17
README.md
17
README.md
@ -58,16 +58,17 @@ Replace:
|
|||||||
```gradle
|
```gradle
|
||||||
version = project.mod_version
|
version = project.mod_version
|
||||||
```
|
```
|
||||||
with your preferred format's code from the table below:
|
with:
|
||||||
|
```gradle
|
||||||
|
version = "${project.mod_version}+${project.minecraft_version}"
|
||||||
|
```
|
||||||
|
|
||||||
| Format | Example | Code |
|
If you prefer hyphens you can also use:
|
||||||
| --- | --- | --- |
|
```gradle
|
||||||
| ```<VERSION>+<MC-VERSION>``` (recommended) | ```thing-1.0.0+1.16.1.jar``` | ```version = "${project.mod_version}+${project.minecraft_version}"``` |
|
version = "${project.mod_version}-${project.minecraft_version}"
|
||||||
| ```<VERSION>-<MC-VERSION>``` | ```thing-1.0.0-1.16.1.jar``` | ```version = "${project.mod_version}-${project.minecraft_version}"``` |
|
```
|
||||||
| ```<VERSION>+<MC-MAJOR>``` | ```thing-1.0.0-1.16.jar``` | ```version = "${project.mod_version}+${project.minecraft_major_version}"``` |
|
|
||||||
| ```<VERSION>-<MC-MAJOR>``` | ```thing-1.0.0-1.16.jar``` | ```version = "${project.mod_version}-${project.minecraft_major_version}"``` |
|
|
||||||
|
|
||||||
When using a format using the Minecraft major version (specified as ```<MC-MAJOR>```), ```minecraft_mjaor_version``` must be specified in ```gradle.properties```, for instance ```minecraft_major_version = 1.16```.
|
You can also just use the major version of Minecraft instead of the full version (like ```1.16``` instead of ```1.16.1``` or ```20w20a```).
|
||||||
|
|
||||||
## Changelog
|
## Changelog
|
||||||
[View Changelog](CHANGELOG.md)
|
[View Changelog](CHANGELOG.md)
|
||||||
|
Reference in New Issue
Block a user