Skip to content

Commit 872f763

Browse files
committed
Bump version
1 parent fb30751 commit 872f763

File tree

3 files changed

+11
-8
lines changed

3 files changed

+11
-8
lines changed

README.md

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<img src="https://imgur.com/x3tR7jb.png" alt="logo" width="200">
44

5-
[![GitHub tag (latest by date)](https://img.shields.io/github/v/tag/TheJoCraftNET/MapEngine?style=flat-square)](#)
5+
[![GitHub tag (latest by date)](https://img.shields.io/github/v/tag/MinceraftMC/MapEngine?style=flat-square)](#)
66
[![AGPLv3 License](https://img.shields.io/badge/License-AGPL%20v3-yellow.svg?style=flat-square)](https://opensource.org/license/agpl-v3/)
77
[![Status Beta](https://img.shields.io/badge/Status-Beta-orange?style=flat-square)](#)
88

@@ -55,6 +55,8 @@ A hosted version of the javadoc can be found [here](https://mapengine.finndohrma
5555

5656
| Server Version | Supported |
5757
|----------------|-----------|
58+
| Paper 1.21.11 | ✔️ |
59+
| Paper 1.21.10 | ✔️ |
5860
| Paper 1.21.9 | ✔️ |
5961
| Paper 1.21.8 | ✔️ |
6062
| Paper 1.21.7 | ✔️ |
@@ -92,7 +94,7 @@ A hosted version of the javadoc can be found [here](https://mapengine.finndohrma
9294
<dependency>
9395
<groupId>de.pianoman911</groupId>
9496
<artifactId>mapengine-api</artifactId>
95-
<version>1.8.10</version>
97+
<version>1.8.11</version>
9698
<scope>provided</scope>
9799
</dependency>
98100
</dependencies>
@@ -113,7 +115,7 @@ repositories {
113115
}
114116
115117
dependencies {
116-
compileOnly 'de.pianoman911:mapengine-api:1.8.10'
118+
compileOnly 'de.pianoman911:mapengine-api:1.8.11'
117119
}
118120
```
119121

@@ -130,7 +132,7 @@ repositories {
130132
}
131133

132134
dependencies {
133-
compileOnly("de.pianoman911:mapengine-api:1.8.10")
135+
compileOnly("de.pianoman911:mapengine-api:1.8.11")
134136
}
135137
```
136138

@@ -177,11 +179,11 @@ public class Bar {
177179
```
178180

179181
More detailed examples can be found in
180-
the [TheJoCraftNET/MapEngineExamples](https://github.com/TheJoCraftNET/MapEngineExamples) repository.
182+
the [MinceraftMC/MapEngineExamples](https://github.com/MinceraftMC/MapEngineExamples) repository.
181183

182184
## Building
183185

184-
1. Clone the project (`git clone https://github.com/TheJoCraftNET/MapEngine.git`)
186+
1. Clone the project (`git clone https://github.com/MinceraftMC/MapEngine.git`)
185187
2. Go to the cloned directory (`cd MapEngine`)
186188
3. Build the Jar (`./gradlew build` on Linux/MacOS, `gradlew build` on Windows)
187189

build.gradle.kts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ allprojects {
1313
apply(plugin = "maven-publish")
1414

1515
group = "de.pianoman911"
16-
version = "1.8.10"
16+
version = "1.8.11"
1717

1818
repositories {
1919
maven("https://repo.minceraft.dev/public/")
@@ -31,6 +31,7 @@ allprojects {
3131

3232
java {
3333
withSourcesJar()
34+
withJavadocJar()
3435
toolchain.languageVersion.set(JavaLanguageVersion.of(21))
3536

3637
sourceCompatibility = JavaVersion.VERSION_17

plugin/src/main/java/de/pianoman911/mapengine/core/updater/MapEngineUpdater.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ public final class MapEngineUpdater implements Listener {
3838
.append(Component.text("MapEngine", NamedTextColor.GOLD))
3939
.append(Component.text(']', NamedTextColor.GRAY))
4040
.appendSpace().build();
41-
private static final String GITHUB_REPO = "TheJoCraftNET/MapEngine";
41+
private static final String GITHUB_REPO = "MinceraftMC/MapEngine";
4242

4343
private final Set<UUID> notifiedPlayers = new HashSet<>();
4444
private final Plugin plugin;

0 commit comments

Comments
 (0)