Skip to content

Commit dfa9cbe

Browse files
committed
Prepare for release of 1.3.0
1 parent adea1d7 commit dfa9cbe

14 files changed

Lines changed: 16 additions & 13 deletions

File tree

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ plugins {
88
java.sourceCompatibility = JavaVersion.VERSION_25
99

1010
group = "com.github.SkriptDev"
11-
val projectVersion = "1.2.0"
11+
val projectVersion = "1.3.0"
1212
val hytaleVersion = "2026.02.19-1a311a592"
1313
// You can find Hytale versions on their maven repo:
1414
// https://maven.hytale.com/release/com/hypixel/hytale/Server/maven-metadata.xml

src/main/java/com/github/skriptdev/skript/api/skript/ErrorHandler.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,9 @@ private static void setup() {
6161
Utils.error("A world was accessed on the wrong thread!");
6262
Utils.warn("Consider using 'execute in %world%' section.");
6363
Utils.error("Original error message: %s", message);
64+
for (StackTraceElement stackTraceElement : e.getStackTrace()) {
65+
Utils.error(" - %s", stackTraceElement);
66+
}
6467
}
6568
}
6669
} else if (message.contains("calling a store method from a system")) {

src/main/java/com/github/skriptdev/skript/plugin/elements/effects/player/EffCloseWindows.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ public static void register(SkriptRegistration reg) {
2020
.name("Close Windows")
2121
.description("Close all open windows/pages of a player.")
2222
.examples("close open windows of player")
23-
.since("INSERT VERSION")
23+
.since("1.3.0")
2424
.register();
2525
}
2626

src/main/java/com/github/skriptdev/skript/plugin/elements/effects/player/EffOpenPage.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ public static void register(SkriptRegistration reg) {
2121
.description("Opens a page to the specified players.")
2222
.examples("open page inventory to player",
2323
"open page map to all players")
24-
.since("INSERT VERSION")
24+
.since("1.3.0")
2525
.register();
2626
}
2727

src/main/java/com/github/skriptdev/skript/plugin/elements/effects/server/EffRemoveMapMarker.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ public static void register(SkriptRegistration reg) {
2929
.examples("remove map marker with id \"marker1\" from event-world",
3030
"remove map markers with ids \"marker1\", \"marker2\" from player",
3131
"remove all map markers from world world(\"default\")")
32-
.since("INSERT VERSION")
32+
.since("1.3.0")
3333
.register();
3434
}
3535

src/main/java/com/github/skriptdev/skript/plugin/elements/events/inventory/EvtInventoryMove.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ public static void register(SkriptRegistration reg) {
2929
" - move = Called after an item is moved from one slot to another (fired twice).",
3030
" - pickup = Called when an item is picked up from the inventory (fired once after the item is put down).",
3131
" - place down = Called when an item is placed down in the inventory (fired once).")
32-
.since("INSERT VERSION")
32+
.since("1.3.0")
3333
.setHandledContexts(InventoryMoveContext.class)
3434
.register();
3535

src/main/java/com/github/skriptdev/skript/plugin/elements/events/inventory/EvtItemStackSlotTransaction.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ public static void register(SkriptRegistration reg) {
1919
"inventory item[stack] slot transaction")
2020
.name("Inventory Item Slot Transaction")
2121
.description("Called when there is an inventory transaction involving an ItemStack in a slot.")
22-
.since("INSERT VERSION")
22+
.since("1.3.0")
2323
.setHandledContexts(ItemStackSlotContext.class)
2424
.register();
2525

src/main/java/com/github/skriptdev/skript/plugin/elements/events/inventory/EvtItemStackTransaction.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ public static void register(SkriptRegistration reg) {
2020
reg.newEvent(EvtItemStackTransaction.class, "inventory item[stack] transaction")
2121
.name("Inventory ItemStack Transaction")
2222
.description("Called when there is an inventory transaction involving an ItemStack.")
23-
.since("INSERT VERSION")
23+
.since("1.3.0")
2424
.setHandledContexts(ItemStackTransactionContext.class)
2525
.register();
2626

src/main/java/com/github/skriptdev/skript/plugin/elements/events/inventory/EvtSlotTransaction.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ public static void register(SkriptRegistration reg) {
1717
"inventory item[stack] slot transaction")
1818
.name("Inventory Item Slot Transaction")
1919
.description("Called when there is an inventory transaction involving a slot.")
20-
.since("INSERT VERSION")
20+
.since("1.3.0")
2121
.setHandledContexts(SlotTransactionContext.class)
2222
.register();
2323
}

src/main/java/com/github/skriptdev/skript/plugin/elements/expressions/server/ExprMapMarkerIds.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ public static void register(SkriptRegistration reg) {
2525
.name("Map Marker Ids")
2626
.description("Get the IDs of all map markers of a world or player.")
2727
.examples("set {_ids::*} to map marker ids of player")
28-
.since("INSERT VERSION")
28+
.since("1.3.0")
2929
.register();
3030
}
3131

0 commit comments

Comments
 (0)