Skip to content

Commit 8439bf0

Browse files
committed
Release v1.5.0
1 parent 07c1118 commit 8439bf0

File tree

5 files changed

+86
-7
lines changed

5 files changed

+86
-7
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ EternalCore is your ultimate companion for enhancing your Minecraft server exper
1717

1818
## :information_source: Information
1919

20-
- EternalCore fully supports Minecraft's latest minor versions starting from each major version, starting from 1.17 onward, e.g. `1.17.1`, `1.18.2`, `1.19.4`, `1.20.6`, `1.21.1`.
21-
- Requires **Java 17 or later** to work properly. For older versions of Java, this may affect the functionality of the plugin.
20+
- EternalCore fully supports Minecraft's latest minor versions starting from each major version, starting from 1.17 onward, e.g. `1.17.1`, `1.18.2`, `1.19.4`, `1.20.6`, `1.21.4`.
21+
- Requires **Java 21 or later** to work properly. For older versions of Java, this may affect the functionality of the plugin.
2222
- If you have any questions, perhaps you will find a solution to them in our [documentation](https://docs.eternalcode.pl/eternalcore/introduction.html), you can also ask us about it on [discord](https://discord.gg/FQ7jmGBd6c).
2323

2424
## :hammer_and_wrench: Development Builds
@@ -80,15 +80,15 @@ For Maven projects use:
8080

8181
For Gradle projects use:
8282
```kts
83-
compileOnly("com.eternalcode:eternalcore-api:1.4.0")
83+
compileOnly("com.eternalcode:eternalcore-api:1.5.0")
8484
```
8585

8686
For Maven projects use:
8787
```xml
8888
<dependency>
8989
<groupId>com.eternalcode</groupId>
9090
<artifactId>eternalcore-api</artifactId>
91-
<version>1.4.0</version>
91+
<version>1.5.0</version>
9292
<scope>provided</scope>
9393
</dependency>
9494
```
@@ -97,7 +97,7 @@ For Maven projects use:
9797

9898
## :building_construction: Building
9999

100-
To build EternalCore, follow these steps (Make sure you have **JDK 17 or higher**):
100+
To build EternalCore, follow these steps (Make sure you have **JDK 21 or higher**):
101101

102102
```shell
103103
./gradlew clean eternalcore-plugin:shadowJar

buildSrc/src/main/kotlin/eternalcode-java.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ plugins {
44
}
55

66
group = "com.eternalcode"
7-
version = "1.4.0"
7+
version = "1.5.0"
88

99
checkstyle {
1010
toolVersion = "10.21.1"

buildSrc/src/main/kotlin/eternalcore-publish.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ plugins {
44
}
55

66
group = "com.eternalcode"
7-
version = "1.4.0"
7+
version = "1.5.0"
88

99
java {
1010
withSourcesJar()

raw_commands_docs.json

Lines changed: 65 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,71 @@
3838
"\u003ctype\u003e \u003cmessage\u003e"
3939
]
4040
},
41+
{
42+
"name": "alert-queue add",
43+
"aliases": [],
44+
"permissions": [
45+
"eternalcore.alert.queue"
46+
],
47+
"descriptions": [
48+
"Adds alert to the queue with specified notice type and messages"
49+
],
50+
"arguments": [
51+
"\u003ctype\u003e \u003cmessage\u003e"
52+
]
53+
},
54+
{
55+
"name": "alert-queue clear",
56+
"aliases": [],
57+
"permissions": [
58+
"eternalcore.alert.queue"
59+
],
60+
"descriptions": [
61+
"Clears all alerts from the queue"
62+
],
63+
"arguments": [
64+
""
65+
]
66+
},
67+
{
68+
"name": "alert-queue remove",
69+
"aliases": [],
70+
"permissions": [
71+
"eternalcore.alert.queue"
72+
],
73+
"descriptions": [
74+
"Removes all alerts of the given type from the queue"
75+
],
76+
"arguments": [
77+
"\u003ctype\u003e all"
78+
]
79+
},
80+
{
81+
"name": "alert-queue remove",
82+
"aliases": [],
83+
"permissions": [
84+
"eternalcore.alert.queue"
85+
],
86+
"descriptions": [
87+
"Removes a latest alert of the given type from the queue"
88+
],
89+
"arguments": [
90+
"\u003ctype\u003e latest"
91+
]
92+
},
93+
{
94+
"name": "alert-queue send",
95+
"aliases": [],
96+
"permissions": [
97+
"eternalcore.alert.queue"
98+
],
99+
"descriptions": [
100+
"Sends all alerts from the queue"
101+
],
102+
"arguments": [
103+
""
104+
]
105+
},
41106
{
42107
"name": "anvil ",
43108
"aliases": [],

raw_features_docs.json

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -174,6 +174,20 @@
174174
"Sends a message to the player when a new plugin update is available after joining the server."
175175
]
176176
},
177+
{
178+
"name": "Vanish tabulation",
179+
"permissions": [],
180+
"descriptions": [
181+
"EternalCore prevents non-admin players from seeing vanished players in the commands like /tpa. To re-enable this feature for specific players, grant them the eternalcore.vanish.tabulation.see permission."
182+
]
183+
},
184+
{
185+
"name": "Vanish tabulation",
186+
"permissions": [],
187+
"descriptions": [
188+
"EternalCore prevents non-admin players from seeing vanished players in the commands like /tpa. To re-enable this feature for specific players, grant them the eternalcore.vanish.tabulation.see permission."
189+
]
190+
},
177191
{
178192
"name": "Warp System",
179193
"permissions": [],

0 commit comments

Comments
 (0)