Skip to content

Commit 70aa4d8

Browse files
committed
Bumped version.
Fixed typos in documentation. Signed-off-by: Pavel Erokhin (MairwunNx) <MairwunNx@gmail.com>
1 parent 25e9daa commit 70aa4d8

File tree

6 files changed

+21
-20
lines changed

6 files changed

+21
-20
lines changed

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
> ## CoreAPI for Project Essentials mods.
77
8-
#### ❗ Compatibility with forge `28.0.X` version.
8+
#### ❗ Compatibility with forge version `28.0.X` and `28.1.X`.
99

1010
## 🧐 Install using Gradle (for developers):
1111
> ##### If your project uses Gradle as Build Tool, then use the code below to add dependencies:
@@ -19,7 +19,7 @@ dependencies {
1919
compile(
2020
group: "com.github.projectessentials",
2121
name: "ProjectEssentials-Core",
22-
version: "v1.14.4-1.0.2.0"
22+
version: "v1.14.4-1.0.3.0"
2323
)
2424
}
2525
```
@@ -38,11 +38,11 @@ dependencies {
3838
<dependency>
3939
<groupId>com.github.projectessentials</groupId>
4040
<artifactId>ProjectEssentials-Core</artifactId>
41-
<version>v1.14.4-1.0.2.0</version>
41+
<version>v1.14.4-1.0.3.0</version>
4242
</dependency>
4343
```
4444

45-
## 🎮 Installation instruction (for playing):
45+
## 🎮 Installation instructions (for playing):
4646
> ##### Just move Project Essentials Core-1.14.4-1.X.X.X.jar to mods directory:
4747
4848
```
@@ -57,13 +57,13 @@ dependencies {
5757

5858
```
5959
Additional information:
60-
- kotlin-std lib version: 1.3.50
61-
- kotlinx serialization version: 0.12.0
60+
- kotlin-std lib version: 1.3.60
61+
- kotlinx serialization version: 0.14.0
6262
- target jvm version: 1.8
6363
```
6464

6565
### After you got the dependencies and the library itself:
6666

67-
# [getting started with read the documentation](./documentation/in-using.md)
67+
# [Read the documentation to get started!](./documentation/in-using.md)
6868

6969
> ## Made with 💕 by [MairwunNx](https://mairwunnx.github.io/)

documentation/in-using.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
> ## Documentation for basically using CoreAPI.
1+
> ## Documentation for basic use of the CoreAPI.
22
3-
## 1. For playing and running minecraft:
3+
## 1. For playing and running Minecraft:
44

55
#### 1.1 Download Core API mod module.
66

7-
Visit **Core API** repository on github, visit **releases** tab and download `.jar` files of latest _pre-release_ / release (**recommended**)
7+
Visit **Core API** repository on github, visit **releases** tab and download the `.jar` files of latest _pre-release_ / release (**recommended**)
88

99
Releases page: https://github.com/ProjectEssentials/ProjectEssentials-Core/releases
1010

@@ -28,13 +28,13 @@ Place your mods and Core API mods according to the structure above.
2828

2929
Run the game, check the number of mods, if the list of mods contains `Project Essentials Core` mod, then the mod has successfully passed the initialization of the modification.
3030

31-
## 2. For developing and developers:
31+
## 2. For developers:
3232

3333
### 2.1 Getting started with installing.
3434

3535
To get the Core API source for development and interactions with the rights of players, you need to get the dependencies and get the documentation to view it in your IDE.
3636

37-
Installation documentation is located in the readme file or just follow the link: https://github.com/ProjectEssentials/ProjectEssentials-Core#-install-using-gradle
37+
Installation documentation is located in the readme file (or just follow the link): https://github.com/ProjectEssentials/ProjectEssentials-Core#-install-using-gradle
3838

3939
### 2.2 API usage.
4040

@@ -153,6 +153,6 @@ ModPathHelper.MOD_CONFIG_FOLDER
153153
- description: Project Essentials mod config folder.
154154
```
155155

156-
## These are all API methods, I think you understand that everything is very simple.
156+
## These are all API methods, I hope you find everything simple to use.
157157

158-
### For all questions, be sure to write issues!
158+
### If you have any questions or encounter a problem, be sure to open an issue!

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ project_jvm_version_target=1.8
1616
kotlin_version=1.3.61
1717
kotlinx_serialization_version=0.14.0
1818
dokka_version=0.10.0
19-
module_version=1.14.4-1.0.2.0
19+
module_version=1.14.4-1.0.3.0
2020
module_name=Project Essentials Core
2121
module_id=project_essentials_core
2222
module_vendor=MairwunNx (Pavel Erokhin)

src/main/kotlin/com/mairwunnx/projectessentialscore/EntryPoint.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import net.minecraftforge.fml.common.Mod
77
internal class EntryPoint : EssBase() {
88
init {
99
modInstance = this
10-
modVersion = "1.14.4-1.0.2.0"
10+
modVersion = "1.14.4-1.0.3.0"
1111
logBaseInfo()
1212
validateForgeVersion()
1313
}

src/main/resources/META-INF/mods.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ issueTrackerURL="https://github.com/ProjectEssentials/ProjectEssentials-Core/iss
44

55
[[mods]]
66
modId="project_essentials_core"
7-
version="1.14.4-1.0.2.0"
7+
version="1.14.4-1.0.3.0"
88
displayName="Project Essentials Core"
99
updateJSONURL="https://raw.githubusercontent.com/ProjectEssentials/ProjectEssentials-Core/MC-1.14.4/update.json"
1010
displayURL="https://github.com/ProjectEssentials/ProjectEssentials-Core"

update.json

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
{
2-
"homepage": "https://github.com/ProjectEssentials/ProjectEssentials-Core/releases/tag/v1.14.4-1.0.2.0",
2+
"homepage": "https://github.com/ProjectEssentials/ProjectEssentials-Core/releases/tag/v1.14.4-1.0.3.0",
33
"1.14.4": {
4+
"1.14.4-1.0.3.0": " - Bumped kotlin, kotlinx serialization and forge version.\n - Improved build script.\n - Bumped dokka version. \n - Added compatibility with forge 28.1.X. \n - Improved logging on mod startup and on forge version incompatibility.",
45
"1.14.4-1.0.2.0": " - Fixed crash while dependency using CoreAPI."
56
},
67
"promos": {
7-
"1.14.4-latest": "1.14.4-1.0.2.0",
8-
"1.14.4-recommended": "1.14.4-1.0.2.0"
8+
"1.14.4-latest": "1.14.4-1.0.3.0",
9+
"1.14.4-recommended": "1.14.4-1.0.3.0"
910
}
1011
}

0 commit comments

Comments
 (0)