Skip to content

Commit ac62440

Browse files
Release 2.7.1 (#383)
2 parents 76f9059 + f41540e commit ac62440

9 files changed

Lines changed: 34 additions & 31 deletions

File tree

build.gradle.kts

Lines changed: 14 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,15 @@ plugins {
99
}
1010

1111
group = "de.eldoria"
12-
version = "2.7.0"
12+
version = "2.7.1"
1313

14-
var publishModules = setOf("schematicbrushreborn-api",
15-
"schematicbrushreborn-core",
16-
"schematicbrushreborn-paper",
17-
"schematicbrushreborn-paper-legacy",
18-
"schematicbrushreborn-spigot")
14+
var publishModules = setOf(
15+
"schematicbrushreborn-api",
16+
"schematicbrushreborn-core",
17+
"schematicbrushreborn-paper",
18+
"schematicbrushreborn-paper-legacy",
19+
"schematicbrushreborn-spigot"
20+
)
1921

2022
allprojects {
2123
repositories {
@@ -41,7 +43,7 @@ allprojects {
4143
}
4244

4345
java {
44-
toolchain{
46+
toolchain {
4547
languageVersion = JavaLanguageVersion.of(21)
4648
}
4749
withSourcesJar()
@@ -77,7 +79,11 @@ allprojects {
7779
}
7880

7981
publishData {
80-
useInternalEldoNexusRepos()
82+
if (project.name.contains("api")) {
83+
useEldoNexusRepos()
84+
} else {
85+
useInternalEldoNexusRepos()
86+
}
8187
}
8288

8389
tasks {

schematicbrushreborn-core/src/main/java/de/eldoria/schematicbrush/commands/admin/Info.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ public void onCommand(@NotNull CommandSender sender, @NotNull String alias, @Not
3434
+ "<name>Version:<value> " + descr.getVersion() + "\n"
3535
+ "<name>Spigot:<value> https://www.spigotmc.org/resources/98499\n"
3636
+ "<name>Patreon:<value> https://www.patreon.com/eldoriaplugins\n"
37-
+ "<name>Support:<value> https://discord.gg/zRW9Vpu";
37+
+ "<name>Support:<value> https://sbr.discord.eldoria.de";
3838
messageSender().sendMessage(sender, info);
3939
}
4040
}

schematicbrushreborn-core/src/main/java/de/eldoria/schematicbrush/commands/brushpresets/Remove.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ public void onCommand(@NotNull Player player, @NotNull String alias, @NotNull Ar
5353
err -> handleCommandError(player, err)));
5454
}
5555
removal.whenComplete(Futures.whenComplete(
56-
succ -> messageSender().sendMessage(player, "command.brushpresets.remove.removed", Replacement.create("name", name)),
56+
succ -> messageSender().sendMessage(player, "commands.brushPresets.remove.removed", Replacement.create("name", name)),
5757
err -> handleCommandError(player, err)));
5858
}
5959

schematicbrushreborn-core/src/main/resources/messages.properties

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,4 @@
1-
about=
2-
3-
command.brushpresets.remove.removed=
4-
1+
commands.about=
52
commands.admin.migrate.migrationDone=
63
commands.admin.migrate.migrationStarted=
74
commands.admin.migrate.sourceTypeInvalid=
@@ -25,6 +22,7 @@ commands.brush.sessions.weight=
2522
commands.brushPreset.info.global.title=
2623
commands.brushPreset.info.private.title=
2724
commands.brushPresets.descr.changed=
25+
commands.brushPresets.remove.removed=
2826
commands.modify.next.skip=
2927
commands.modify.previous.empty=
3028
commands.modify.previous.previous=

schematicbrushreborn-core/src/main/resources/messages_de_DE.properties

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,4 @@
1-
about=<plugin_name> von <authors>\nVersion: <version>\nSpigot: <website>\nSupport: <discord>
2-
3-
command.brushpresets.remove.removed=Brush <warn><name><default> entfernt.
4-
1+
commands.about=<plugin_name> von <authors>\nVersion: <version>\nSpigot: <website>\nSupport: <discord>
52
commands.admin.migrate.migrationDone=Migration abgeschlossen
63
commands.admin.migrate.migrationStarted=Migration gestartet
74
commands.admin.migrate.sourceTypeInvalid=Quelle <type> ist ungültig.
@@ -12,7 +9,7 @@ commands.admin.restartRendering.done=Rendering neu gestartet.
129
commands.brush.bind.bound=Brush gebunden. Verwendet <value><schematics><default> Schematics in <value><sets><default> Sets.
1310
commands.brush.refresh.refreshFailed=Schematics konnten nicht aktualisiert werden.
1411
commands.brush.refresh.refreshSession=Schematics aktualisiert.
15-
commands.brush.refresh.refreshed=Brush-Schemtics aktualisiert.
12+
commands.brush.refresh.refreshed=Brush-Schematics aktualisiert.
1613
commands.brush.saveBrush.saved=Brush gespeichert.
1714
commands.brush.sessions.addModifiers=Modifikatoren hinzufügen
1815
commands.brush.sessions.addPreset=Vorlage hinzufügen
@@ -21,11 +18,12 @@ commands.brush.sessions.menu=Schematic Brush Menü
2118
commands.brush.sessions.refreshSchematics=Schematics aktualisieren
2219
commands.brush.sessions.saveBrush=Brush speichern
2320
commands.brush.sessions.savePreset=Vorlage speichern
24-
commands.brush.sessions.weight=Die Gewichtung des Sets wenn mehrere Sets verwendet werden.\nEin höherer Wert resultiert in mehr Schematic von diesem Set.
21+
commands.brush.sessions.weight=Die Gewichtung des Sets, wenn mehrere Sets verwendet werden.\nEin höherer Wert resultiert in mehr Schematic von diesem Set.
2522
commands.brushPreset.info.global.title=Globale Voreinstellungen
2623
commands.brushPreset.info.private.title=Private Voreinstellungen
2724
commands.brushPresets.descr.changed=Beschreibung von Brush <value><name><default> geändert!
28-
commands.modify.next.skip=Schemic übersprungen.
25+
commands.brushPresets.remove.removed=Brush <warn><name><default> entfernt.
26+
commands.modify.next.skip=Schematic übersprungen.
2927
commands.modify.previous.empty=Die Historie ist leer
3028
commands.modify.previous.previous=Vorherige Schematic
3129
commands.modify.selection.changed=Schema-Auswahl geändert.
@@ -71,7 +69,7 @@ components.modifier.type.replaceAll.description=Ersetze bestehende Blöcke
7169
components.modifier.type.replaceAll.name=Alles Ersetzen
7270
components.modifier.type.rotation.description=Rotiere die Schematic.
7371
components.modifier.type.rotation.name=Rotation
74-
components.provider.filter.blockFilter.description=Exkludiere Blöcke beim einfügen
72+
components.provider.filter.blockFilter.description=Exkludiere Blöcke beim Einfügen
7573
components.provider.filter.blockFilter.name=Block Filter
7674
components.provider.flip.fixed.description=Ein statischer Spiegel Wert
7775
components.provider.flip.fixed.name=Statisch

schematicbrushreborn-core/src/main/resources/messages_en_US.properties

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,4 @@
1-
about=<plugin_name> by <authors>\nVersion: <version>\nSpigot: <website>\nSupport: <discord>
2-
3-
command.brushpresets.remove.removed=Brush <warn><name><default> removed.
4-
1+
commands.about=<plugin_name> by <authors>\nVersion: <version>\nSpigot: <website>\nSupport: <discord>
52
commands.admin.migrate.migrationDone=Migration done
63
commands.admin.migrate.migrationStarted=Migration started
74
commands.admin.migrate.sourceTypeInvalid=Source type <type> is invalid.
@@ -25,6 +22,7 @@ commands.brush.sessions.weight=The weight of the schematic set when multiple set
2522
commands.brushPreset.info.global.title=Global Presets
2623
commands.brushPreset.info.private.title=Private Presets
2724
commands.brushPresets.descr.changed=Changed description of brush <value><name><default>!
25+
commands.brushPresets.remove.removed=Brush <warn><name><default> removed.
2826
commands.modify.next.skip=Skipped Schematic.
2927
commands.modify.previous.empty=The history is empty
3028
commands.modify.previous.previous=Previous Schematic
@@ -72,7 +70,7 @@ components.modifier.type.replaceAll.name=Replace All
7270
components.modifier.type.rotation.description=Rotate a schematic.
7371
components.modifier.type.rotation.name=Rotation
7472
components.provider.filter.blockFilter.description=Exclude blocks from pasting
75-
components.provider.filter.blockFilter.name=
73+
components.provider.filter.blockFilter.name=Block Filter
7674
components.provider.flip.fixed.description=A fixed flip value
7775
components.provider.flip.fixed.name=Fixed
7876
components.provider.flip.list.description=A list of possible flip values which will be chosen by random

schematicbrushreborn-core/src/main/resources/messages_zh_TW.properties

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
1-
about=%PLUGIN_NAME% by %AUTHORS%\n版本: %VERSION%\nSpigot: %WEBSITE%\nDiscord: %DISCORD%
1+
commands.about=%PLUGIN_NAME% by %AUTHORS%\n版本: %VERSION%\nSpigot: %WEBSITE%\nDiscord: %DISCORD%
2+
23
dialog.accept=同意
34
dialog.add=加入
45
dialog.deny=拒絕
56
dialog.leftClickChange=左鍵點擊更改
67
dialog.remove=刪除
78
dialog.rightClickRemove=右鍵點擊刪除
9+
810
error.invalidArguments=無效的參數. 語法: %SYNTAX%
911
error.invalidBoolean=無效的參數值, %TRUE% 或 %FALSE%
1012
error.invalidCommand=無效的指令
@@ -15,6 +17,7 @@ error.invalidNumber=無效號碼
1517
error.invalidRange=輸入的參數值超出範圍. 最大: %MAX% 最小: %MIN%
1618
error.invalidSender=不能在這裡執行此指令.
1719
error.missingArgument=參數 %INDEX% 已被訪問但不存在.
20+
error.notABrush=這不是原理圖筆刷.
1821
error.notAsConsole=不能用控制臺執行此指令.
1922
error.notAsPlayer=玩家不能執行此指令
2023
error.notOnline=未知玩家. 此玩家不在線上.
@@ -24,6 +27,5 @@ error.permission=你沒有執行此指令的權限. (%PERMISSION%)
2427
error.tooLarge=數字過大. 最大值: %MAX%
2528
error.tooSmall=數字太小. 最小值: %MIN%
2629
error.unkownPlayer=未知玩家. 此玩家沒有玩過本伺服器.
27-
error.unkownWorld=未知玩家. 此玩家沒有玩過本伺服器.
28-
error.notABrush=這不是原理圖筆刷.
2930
error.unkownPreset=預設 %NAME% 不存在.
31+
error.unkownWorld=未知玩家. 此玩家沒有玩過本伺服器.

schematicbrushreborn-paper/build.gradle.kts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ val shadebase = "de.eldoria.schematicbrush.libs."
88
dependencies {
99
implementation(project(":schematicbrushreborn-core"))
1010
bukkitLibrary(libs.bundles.utilities)
11+
bukkitLibrary(libs.bundles.jackson)
1112
bukkitLibrary(libs.adventure.bukkit)
1213
}
1314

settings.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ dependencyResolutionManagement {
3232
library("adventure-bukkit", "net.kyori:adventure-platform-bukkit:4.3.3")
3333
library("adventure-minimessage", "net.kyori:adventure-text-minimessage:4.17.0")
3434
// utilities
35-
version("utilities", "2.1.1")
35+
version("utilities", "2.1.2")
3636
library("eldoutil-plugin", "de.eldoria.util","plugin").versionRef("utilities")
3737
library("eldoutil-jackson", "de.eldoria.util","jackson-configuration").versionRef("utilities")
3838
library("eldoutil-serialization", "de.eldoria.util","legacy-serialization").versionRef("utilities")

0 commit comments

Comments
 (0)