Skip to content

Commit 4961543

Browse files
committed
update javadoc version tags to 1.2.0
1 parent 4d7ffa2 commit 4961543

File tree

13 files changed

+27
-27
lines changed

13 files changed

+27
-27
lines changed

api/src/main/java/com/lunarclient/apollo/ApolloPlatform.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ public interface ApolloPlatform {
4848
* Returns the platform type.
4949
*
5050
* @return the platform type
51-
* @since 1.1.9
51+
* @since 1.2.0
5252
*/
5353
Platform getPlatform();
5454

@@ -105,7 +105,7 @@ enum Kind {
105105
/**
106106
* Represents the platform type.
107107
*
108-
* @since 1.1.9
108+
* @since 1.2.0
109109
*/
110110
enum Platform {
111111
BUKKIT,

api/src/minestom/java/com/lunarclient/apollo/MinestomApollo.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
* Utility class for converting objects to and from their corresponding Minestom
4242
* representations with additional helper methods for easier integration.
4343
*
44-
* @since 1.1.9
44+
* @since 1.2.0
4545
*/
4646
public final class MinestomApollo {
4747

@@ -50,7 +50,7 @@ public final class MinestomApollo {
5050
*
5151
* @param player the player
5252
* @param playerConsumer the operation to be performed
53-
* @since 1.1.9
53+
* @since 1.2.0
5454
*/
5555
public static void runForPlayer(@NonNull Player player, @NonNull Consumer<ApolloPlayer> playerConsumer) {
5656
runForPlayer(player.getUuid(), playerConsumer);
@@ -61,7 +61,7 @@ public static void runForPlayer(@NonNull Player player, @NonNull Consumer<Apollo
6161
*
6262
* @param playerUuid the player
6363
* @param playerConsumer the operation to be performed
64-
* @since 1.1.9
64+
* @since 1.2.0
6565
*/
6666
public static void runForPlayer(@NonNull UUID playerUuid, @NonNull Consumer<ApolloPlayer> playerConsumer) {
6767
Apollo.getPlayerManager().getPlayer(playerUuid).ifPresent(playerConsumer);
@@ -72,7 +72,7 @@ public static void runForPlayer(@NonNull UUID playerUuid, @NonNull Consumer<Apol
7272
*
7373
* @param players the players
7474
* @return the recipients object containing the converted ApolloPlayer objects
75-
* @since 1.1.9
75+
* @since 1.2.0
7676
*/
7777
public static Recipients getRecipientsFrom(@NonNull Collection<Player> players) {
7878
ApolloPlayerManager playerManager = Apollo.getPlayerManager();
@@ -90,7 +90,7 @@ public static Recipients getRecipientsFrom(@NonNull Collection<Player> players)
9090
*
9191
* @param entity the entity
9292
* @return the converted apollo entity object
93-
* @since 1.1.9
93+
* @since 1.2.0
9494
*/
9595
public static ApolloEntity toApolloEntity(@NonNull Entity entity) {
9696
return new ApolloEntity(entity.getEntityId(), entity.getUuid());

common/src/main/java/com/lunarclient/apollo/api/response/VersionResponse.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ public static final class Assets {
9494
* Returns the latest version of apollo {@link String} Minestom download URL.
9595
*
9696
* @return the apollo minestom download url
97-
* @since 1.1.9
97+
* @since 1.2.0
9898
*/
9999
String minestom;
100100

common/src/main/java/com/lunarclient/apollo/command/type/ApolloCommand.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,15 +37,15 @@
3737
* The general Apollo command.
3838
*
3939
* @param <T> the sender type
40-
* @since 1.1.9
40+
* @since 1.2.0
4141
*/
4242
public class ApolloCommand<T> extends AbstractApolloCommand<T> {
4343

4444
/**
4545
* Returns a new instance of the ApolloCommand.
4646
*
4747
* @param textConsumer the consumer for sending messages to the sender
48-
* @since 1.1.9
48+
* @since 1.2.0
4949
*/
5050
protected ApolloCommand(BiConsumer<T, Component> textConsumer) {
5151
super(textConsumer);

common/src/main/java/com/lunarclient/apollo/command/type/LunarClientCommand.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,15 +31,15 @@
3131
* The general Lunar Client command.
3232
*
3333
* @param <T> the sender type
34-
* @since 1.1.9
34+
* @since 1.2.0
3535
*/
3636
public class LunarClientCommand<T> extends AbstractApolloCommand<T> {
3737

3838
/**
3939
* Returns a new instance of the LunarClientCommand.
4040
*
4141
* @param textConsumer the consumer for sending messages to the sender
42-
* @since 1.1.9
42+
* @since 1.2.0
4343
*/
4444
protected LunarClientCommand(BiConsumer<T, Component> textConsumer) {
4545
super(textConsumer);

minestom/src/main/java/com/lunarclient/apollo/ApolloMinestomPlatform.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@
9696
/**
9797
* The Minestom platform plugin.
9898
*
99-
* @since 1.1.9
99+
* @since 1.2.0
100100
*/
101101
public final class ApolloMinestomPlatform implements ApolloPlatform {
102102

@@ -111,7 +111,7 @@ public final class ApolloMinestomPlatform implements ApolloPlatform {
111111
/**
112112
* Constructs the {@link ApolloMinestomPlatform}.
113113
*
114-
* @since 1.1.9
114+
* @since 1.2.0
115115
*/
116116
public ApolloMinestomPlatform() {
117117
this.options = new OptionsImpl(null);
@@ -122,7 +122,7 @@ public ApolloMinestomPlatform() {
122122
/**
123123
* Initialize Apollo for Minestom.
124124
*
125-
* @since 1.1.9
125+
* @since 1.2.0
126126
*/
127127
public static void init() {
128128
if (instance != null) {
@@ -209,7 +209,7 @@ public Options getOptions() {
209209

210210
@Override
211211
public String getApolloVersion() {
212-
return "1.1.9";
212+
return "1.2.0";
213213
}
214214

215215
@Override

minestom/src/main/java/com/lunarclient/apollo/command/MinestomApolloCommand.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,15 +36,15 @@
3636
/**
3737
* The Minestom implementation of the {@link ApolloCommand}.
3838
*
39-
* @since 1.1.9
39+
* @since 1.2.0
4040
*/
4141
public final class MinestomApolloCommand extends ApolloCommand<CommandSender> {
4242

4343
/**
4444
* Returns a new instance of this command.
4545
*
4646
* @return a new command
47-
* @since 1.1.9
47+
* @since 1.2.0
4848
*/
4949
public static Command create() {
5050
MinestomApolloCommand apolloCommand = new MinestomApolloCommand();

minestom/src/main/java/com/lunarclient/apollo/command/MinestomLunarClientCommand.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,15 +38,15 @@
3838
/**
3939
* The general Lunar Client command.
4040
*
41-
* @since 1.1.9
41+
* @since 1.2.0
4242
*/
4343
public final class MinestomLunarClientCommand extends LunarClientCommand<CommandSender> {
4444

4545
/**
4646
* Returns a new instance of this command.
4747
*
4848
* @return a new command
49-
* @since 1.1.9
49+
* @since 1.2.0
5050
*/
5151
public static Command create() {
5252
MinestomLunarClientCommand lunarClientCommand = new MinestomLunarClientCommand();

minestom/src/main/java/com/lunarclient/apollo/listener/ApolloPlayerListener.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,15 +47,15 @@
4747
/**
4848
* Handles registration and un-registration of Apollo players.
4949
*
50-
* @since 1.1.9
50+
* @since 1.2.0
5151
*/
5252
public final class ApolloPlayerListener implements ApolloListener {
5353

5454
/**
5555
* Constructs the {@link ApolloPlayerListener}.
5656
*
5757
* @param node the node
58-
* @since 1.1.9
58+
* @since 1.2.0
5959
*/
6060
public ApolloPlayerListener(EventNode<Event> node) {
6161
EventBus.getBus().register(this);

minestom/src/main/java/com/lunarclient/apollo/listener/ApolloWorldListener.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,15 +45,15 @@
4545
/**
4646
* Handles registration and un-registration of Apollo worlds.
4747
*
48-
* @since 1.1.9
48+
* @since 1.2.0
4949
*/
5050
public final class ApolloWorldListener implements ApolloListener {
5151

5252
/**
5353
* Constructs the {@link ApolloWorldListener}.
5454
*
5555
* @param node the node
56-
* @since 1.1.9
56+
* @since 1.2.0
5757
*/
5858
public ApolloWorldListener(EventNode<Event> node) {
5959
EventBus.getBus().register(this);

0 commit comments

Comments
 (0)