Skip to content

Commit 840b23a

Browse files
committed
Prepare for release of 1.5.0
1 parent e4fcaaa commit 840b23a

10 files changed

Lines changed: 18 additions & 8 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.4.0"
11+
val projectVersion = "1.5.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/plugin/elements/conditions/ref/CondCanBePickedUp.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ public static void register(SkriptRegistration reg) {
2323
.description("Check if a ref can be picked up.",
2424
"This generally refers to dropped items.",
2525
"This can be set, preventing items from being picked up.")
26-
.since("INSERT VERSION")
26+
.since("1.5.0")
2727
.register();
2828
}
2929

src/main/java/com/github/skriptdev/skript/plugin/elements/effects/entity/EffPlayAnimation.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ public static void register(SkriptRegistration reg) {
2828
.examples("play animation \"Death\" on player",
2929
"play action animation \"Eat\" on target entity of player",
3030
"play movement animation \"Jump\" on player")
31-
.since("INSERT VERSION")
31+
.since("1.5.0")
3232
.register();
3333
}
3434

src/main/java/com/github/skriptdev/skript/plugin/elements/expressions/entity/ExprEntityAnimations.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ public static void register(SkriptRegistration reg) {
2424
.name("Entity Animations")
2525
.description("Get the animations of an Entity/Ref.",
2626
"If using Entity/Ref this will return the possible animations of their current model component.")
27-
.since("INSERT VERSION")
27+
.since("1.5.0")
2828
.register();
2929
}
3030

src/main/java/com/github/skriptdev/skript/plugin/elements/expressions/entity/ExprEntityBoundingBox.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ public static void register(SkriptRegistration reg) {
2424
"Changes may not be persistent on some objects, such as dropped items.")
2525
.examples("set {_box} to entity bounding box of {_e}",
2626
"set entity bounding box of {_e} to box(0, 0, 0, 1, 1, 1)")
27-
.since("INSERT VERSION")
27+
.since("1.5.0")
2828
.register();
2929
}
3030

src/main/java/com/github/skriptdev/skript/plugin/elements/expressions/entity/ExprEntityFallDistance.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ public static void register(SkriptRegistration reg) {
2323
"add 1 to fall distance of player",
2424
"remove 10 from fall distance of {_e}",
2525
"clear fall distance of player")
26+
.since("1.5.0")
2627
.register();
2728
}
2829

src/main/java/com/github/skriptdev/skript/plugin/elements/functions/DefaultFunctions.java

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ private static void itemFunctions(SkriptRegistration reg) {
170170
})
171171
.name("ItemContainer")
172172
.description("Create a new ItemContainer with the given capacity.")
173-
.since("INSERT VERSRION")
173+
.since("1.5.0")
174174
.register();
175175
}
176176

@@ -230,6 +230,9 @@ private static void positionFunctions(SkriptRegistration reg) {
230230
return new Box(x1.doubleValue(), y1.doubleValue(), z1.doubleValue(),
231231
x2.doubleValue(), y2.doubleValue(), z2.doubleValue());
232232
})
233+
.name("Box")
234+
.description("Creates a box with the given dimensions.")
235+
.since("1.5.0")
233236
.register();
234237
reg.newJavaFunction("location", Location.class, true)
235238
.parameter("x", Number.class)

src/main/java/com/github/skriptdev/skript/plugin/elements/sections/entity/SecSpawnDisplay.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ public static void register(SkriptRegistration reg) {
3232
.examples("spawn display item ingredient_poop at {_loc}:",
3333
"\tset {_e} to event-ref",
3434
"\tset scale of {_e} to 10")
35-
.since("INSERT VERSION")
35+
.since("1.5.0")
3636
.register();
3737
}
3838

src/main/java/com/github/skriptdev/skript/plugin/elements/types/TypesEntity.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ static void register(SkriptRegistration reg) {
6161
reg.newEnumType(AnimationSlot.class, "animationslot", "animationSlot@s")
6262
.name("Animation Slot")
6363
.description("Represents the slot for an animation to be played on an entity.")
64-
.since("INSERT VERSION")
64+
.since("1.5.0")
6565
.register();
6666
reg.newEnumType(Attitude.class, "attitude", "attitude@s")
6767
.name("Attitude")

src/main/java/com/github/skriptdev/skript/plugin/elements/types/TypesServer.java

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,14 @@ static void register(SkriptRegistration registration) {
3737
.since("1.0.0")
3838
.register();
3939
registration.newType(BoundingBox.class, "boundingbox", "boundingBox@es")
40+
.name("Bounding Box")
41+
.description("Represents the bounding box component of a reference.")
42+
.since("1.5.0")
4043
.register();
4144
registration.newType(Box.class, "box", "box@es")
45+
.name("Box")
46+
.description("Represents a 3D box with dimensions.")
47+
.since("1.5.0")
4248
.register();
4349
registration.newType(CommandSender.class, "commandsender", "commandSender@s")
4450
.name("Command Sender")

0 commit comments

Comments
 (0)