Skip to content

Commit

Permalink
Prepare for release
Browse files Browse the repository at this point in the history
  • Loading branch information
FranKusmiruk committed May 23, 2021
1 parent 8ff8957 commit c3583ca
Show file tree
Hide file tree
Showing 9 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
groupid=ch.njol
name=skript
version=2.5.3
version=2.6-alpha1
jarName=Skript.jar
testEnv=paper-1.16.3
testEnv=paper-1.16.5
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
"if plugin \"WorldGuard\" is not enabled:",
"if plugins \"Essentials\" and \"Vault\" are enabled:",
"if plugin \"MyBrokenPlugin\" is disabled:"})
@Since("INSERT VERSION")
@Since("2.6")
public class CondIsPluginEnabled extends Condition {

static {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
"",
"# Example 2",
"\"sometext\" is a skript command"})
@Since("INSERT VERSION")
@Since("2.6")
public class CondIsSkriptCommand extends PropertyCondition<String> {

static {
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/ch/njol/skript/effects/EffBroadcast.java
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
"message to all players instead of broadcasting it."})
@Examples({"broadcast \"Welcome %player% to the server!\"",
"broadcast \"Woah! It's a message!\""})
@Since("1.0, INSERT VERSION (broadcasting objects)")
@Since("1.0, 2.6 (broadcasting objects)")
public class EffBroadcast extends Effect {

static {
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/ch/njol/skript/effects/EffMessage.java
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
"\tcancel event",
"\tsend \"[%player%] >> %message%\" to all players from player"})
@RequiredPlugins("Minecraft 1.16.4+ for optional sender")
@Since("1.0, 2.2-dev26 (advanced features), 2.5.2 (optional sender), INSERT VERSION (sending objects)")
@Since("1.0, 2.2-dev26 (advanced features), 2.5.2 (optional sender), 2.6 (sending objects)")
public class EffMessage extends Effect {

private static final boolean SUPPORTS_SENDER = Skript.classExists("org.bukkit.command.CommandSender$Spigot") &&
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/ch/njol/skript/events/EvtMove.java
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ public class EvtMove extends SkriptEvent {
"\tif event-entity is not in world \"world\":",
"\t\tkill event-entity")
.requiredPlugins("Paper 1.16.5+ (entity move)")
.since("INSERT VERSION");
.since("2.6");
}

private EntityData<?> type;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
@Description("Returns all registered commands or all script commands.")
@Examples({"send \"Number of all commands: %size of all commands%\"",
"send \"Number of all script commands: %size of all script commands%\""})
@Since("INSERT VERSION")
@Since("2.6")
public class ExprAllCommands extends SimpleExpression<String> {

static {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
"permission of command \"/op\"",
"command \"op\"'s permission message",
"command \"sk\"'s plugin owner"})
@Since("INSERT VERSION")
@Since("2.6")
public class ExprCommandInfo extends SimpleExpression<String> {

private enum InfoType {
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/ch/njol/skript/expressions/ExprPlain.java
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
@Description("A plain item is an item with no modifications. It can be used to convert items to their default state or to match with other default items.")
@Examples({"if the player's tool is a plain diamond: # check if player's tool has no modifications",
"\tsend \"You are holding a plain diamond!\""})
@Since("INSERT VERSION")
@Since("2.6")
public class ExprPlain extends SimpleExpression<ItemType> {

@SuppressWarnings("null")
Expand Down

0 comments on commit c3583ca

Please sign in to comment.