diff --git a/api/src/main/java/com/lunarclient/apollo/event/player/ApolloPlayerHandshakeEvent.java b/api/src/main/java/com/lunarclient/apollo/event/player/ApolloPlayerHandshakeEvent.java index 313d2107..43061554 100644 --- a/api/src/main/java/com/lunarclient/apollo/event/player/ApolloPlayerHandshakeEvent.java +++ b/api/src/main/java/com/lunarclient/apollo/event/player/ApolloPlayerHandshakeEvent.java @@ -76,7 +76,7 @@ public class ApolloPlayerHandshakeEvent implements Event { * The {@link TebexEmbeddedCheckoutSupport} type. * * @return the Tebex checkout support type - * @since 1.1.5 + * @since 1.1.6 */ TebexEmbeddedCheckoutSupport tebexEmbeddedCheckoutSupport; diff --git a/api/src/main/java/com/lunarclient/apollo/module/tebex/TebexEmbeddedCheckoutSupport.java b/api/src/main/java/com/lunarclient/apollo/module/tebex/TebexEmbeddedCheckoutSupport.java index 99b7fe1e..7b8ab72e 100644 --- a/api/src/main/java/com/lunarclient/apollo/module/tebex/TebexEmbeddedCheckoutSupport.java +++ b/api/src/main/java/com/lunarclient/apollo/module/tebex/TebexEmbeddedCheckoutSupport.java @@ -26,28 +26,28 @@ /** * Represents an embedded checkout support type. * - * @since 1.1.5 + * @since 1.1.6 */ public enum TebexEmbeddedCheckoutSupport { /** * External checkout is supported as a game overlay. * - * @since 1.1.5 + * @since 1.1.6 */ OVERLAY, /** * Embedded checkout is supported in an external window. * - * @since 1.1.5 + * @since 1.1.6 */ WINDOW, /** * The checkout is not supported. * - * @since 1.1.5 + * @since 1.1.6 */ UNSUPPORTED diff --git a/api/src/main/java/com/lunarclient/apollo/module/tebex/TebexModule.java b/api/src/main/java/com/lunarclient/apollo/module/tebex/TebexModule.java index 9f858e57..48b90d36 100644 --- a/api/src/main/java/com/lunarclient/apollo/module/tebex/TebexModule.java +++ b/api/src/main/java/com/lunarclient/apollo/module/tebex/TebexModule.java @@ -31,7 +31,7 @@ /** * Represents the tebex module. * - * @since 1.1.5 + * @since 1.1.6 */ @ApiStatus.NonExtendable @ModuleDefinition(id = "tebex", name = "Tebex") @@ -42,7 +42,7 @@ public abstract class TebexModule extends ApolloModule { * * @param recipients the recipients that are receiving the packet * @param basketIdent the tebex basket ident - * @since 1.1.5 + * @since 1.1.6 */ public abstract void displayTebexEmbeddedCheckout(Recipients recipients, String basketIdent); @@ -53,7 +53,7 @@ public abstract class TebexModule extends ApolloModule { * @param recipients the recipients that are receiving the packet * @param basketIdent the tebex basket ident * @param locale the locale - * @since 1.1.5 + * @since 1.1.6 */ public abstract void displayTebexEmbeddedCheckout(Recipients recipients, String basketIdent, String locale); diff --git a/api/src/main/java/com/lunarclient/apollo/player/ApolloPlayer.java b/api/src/main/java/com/lunarclient/apollo/player/ApolloPlayer.java index 63f8bf9f..3ed20bd5 100644 --- a/api/src/main/java/com/lunarclient/apollo/player/ApolloPlayer.java +++ b/api/src/main/java/com/lunarclient/apollo/player/ApolloPlayer.java @@ -116,7 +116,7 @@ default boolean hasPermission(Options options, Option option) { * Returns the {@link MinecraftVersion} the player is running. * * @return the minecraft version - * @since 1.1.5 + * @since 1.1.6 */ @Nullable MinecraftVersion getMinecraftVersion(); @@ -124,7 +124,7 @@ default boolean hasPermission(Options options, Option option) { * Returns the {@link LunarClientVersion} the player is running. * * @return the lunar client version - * @since 1.1.5 + * @since 1.1.6 */ @Nullable LunarClientVersion getLunarClientVersion(); @@ -132,7 +132,7 @@ default boolean hasPermission(Options options, Option option) { * Returns a {@link List} of {@link LunarClientMod} the player has installed. * * @return the installed mods - * @since 1.1.5 + * @since 1.1.6 */ @Nullable List getInstalledMods(); @@ -140,7 +140,7 @@ default boolean hasPermission(Options options, Option option) { * Returns the {@link TebexEmbeddedCheckoutSupport} type. * * @return the Tebex checkout support type - * @since 1.1.5 + * @since 1.1.6 */ @Nullable TebexEmbeddedCheckoutSupport getTebexEmbeddedCheckoutSupport(); diff --git a/bukkit-example/src/main/resources/plugin.yml b/bukkit-example/src/main/resources/plugin.yml index bd7a701f..9daf502d 100644 --- a/bukkit-example/src/main/resources/plugin.yml +++ b/bukkit-example/src/main/resources/plugin.yml @@ -1,6 +1,6 @@ name: Apollo-Example main: com.lunarclient.apollo.example.ApolloExamplePlugin -version: 1.1.5 +version: 1.1.6 author: Moonsworth softdepend: [ Apollo-Bukkit ] api-version: 1.13 diff --git a/bukkit/src/platform-loader/resources/plugin.yml b/bukkit/src/platform-loader/resources/plugin.yml index 22314fbe..50226f2c 100644 --- a/bukkit/src/platform-loader/resources/plugin.yml +++ b/bukkit/src/platform-loader/resources/plugin.yml @@ -1,6 +1,6 @@ name: Apollo-Bukkit main: com.lunarclient.apollo.loader.BukkitPlatformLoader -version: 1.1.5 +version: 1.1.6 author: Moonsworth api-version: 1.13 soft-depend: [LunarClient-API] diff --git a/bungee/src/platform-loader/resources/plugin.yml b/bungee/src/platform-loader/resources/plugin.yml index c4a254dc..468d6693 100644 --- a/bungee/src/platform-loader/resources/plugin.yml +++ b/bungee/src/platform-loader/resources/plugin.yml @@ -1,4 +1,4 @@ name: Apollo-Bungee main: com.lunarclient.apollo.loader.BungeePlatformLoader -version: 1.1.5 +version: 1.1.6 author: Moonsworth diff --git a/common/src/main/java/com/lunarclient/apollo/module/tebex/TebexModuleImpl.java b/common/src/main/java/com/lunarclient/apollo/module/tebex/TebexModuleImpl.java index 176722de..902773b8 100644 --- a/common/src/main/java/com/lunarclient/apollo/module/tebex/TebexModuleImpl.java +++ b/common/src/main/java/com/lunarclient/apollo/module/tebex/TebexModuleImpl.java @@ -31,7 +31,7 @@ /** * Provides the tebex module. * - * @since 1.1.5 + * @since 1.1.6 */ public final class TebexModuleImpl extends TebexModule { diff --git a/deploy.sh b/deploy.sh index 2dec2d30..78f0ec25 100755 --- a/deploy.sh +++ b/deploy.sh @@ -1,7 +1,7 @@ # Deploy apollo to the test server set -e ./gradlew clean build -scp bukkit/build/libs/apollo-bukkit-1.1.6-SNAPSHOT.jar ubuntu@147.135.8.94:/home/ubuntu/apollo/plugins/ -scp bukkit-example/build/libs/apollo-bukkit-example-1.1.6-SNAPSHOT.jar ubuntu@147.135.8.94:/home/ubuntu/apollo/plugins/ -scp bukkit/build/libs/apollo-bukkit-1.1.6-SNAPSHOT.jar ubuntu@147.135.8.94:/home/ubuntu/lctest/plugins/ -scp bukkit-example/build/libs/apollo-bukkit-example-1.1.6-SNAPSHOT.jar ubuntu@147.135.8.94:/home/ubuntu/lctest/plugins/ +scp bukkit/build/libs/apollo-bukkit-1.1.6.jar ubuntu@147.135.8.94:/home/ubuntu/apollo/plugins/ +scp bukkit-example/build/libs/apollo-bukkit-example-1.1.6.jar ubuntu@147.135.8.94:/home/ubuntu/apollo/plugins/ +scp bukkit/build/libs/apollo-bukkit-1.1.6.jar ubuntu@147.135.8.94:/home/ubuntu/lctest/plugins/ +scp bukkit-example/build/libs/apollo-bukkit-example-1.1.6.jar ubuntu@147.135.8.94:/home/ubuntu/lctest/plugins/ diff --git a/gradle.properties b/gradle.properties index 869982c0..e650d1e5 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,5 +1,5 @@ group=com.lunarclient -version=1.1.6-SNAPSHOT +version=1.1.6 description=The API for interacting with Lunar Client players. org.gradle.parallel=true diff --git a/velocity/src/main/java/com/lunarclient/apollo/ApolloVelocityPlatform.java b/velocity/src/main/java/com/lunarclient/apollo/ApolloVelocityPlatform.java index f18f0663..4c643033 100644 --- a/velocity/src/main/java/com/lunarclient/apollo/ApolloVelocityPlatform.java +++ b/velocity/src/main/java/com/lunarclient/apollo/ApolloVelocityPlatform.java @@ -94,7 +94,7 @@ @Plugin( id = "apollo", name = "Apollo-Velocity", - version = "1.1.5", + version = "1.1.6", url = "https://moonsworth.com", description = "Implementation of Apollo for Velocity", authors = {"Moonsworth"}