Skip to content

Commit 8ba0e35

Browse files
authored
Bump to 1.1.6 (#182)
1 parent 1efad54 commit 8ba0e35

File tree

11 files changed

+22
-22
lines changed

11 files changed

+22
-22
lines changed

api/src/main/java/com/lunarclient/apollo/event/player/ApolloPlayerHandshakeEvent.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ public class ApolloPlayerHandshakeEvent implements Event {
7676
* The {@link TebexEmbeddedCheckoutSupport} type.
7777
*
7878
* @return the Tebex checkout support type
79-
* @since 1.1.5
79+
* @since 1.1.6
8080
*/
8181
TebexEmbeddedCheckoutSupport tebexEmbeddedCheckoutSupport;
8282

api/src/main/java/com/lunarclient/apollo/module/tebex/TebexEmbeddedCheckoutSupport.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,28 +26,28 @@
2626
/**
2727
* Represents an embedded checkout support type.
2828
*
29-
* @since 1.1.5
29+
* @since 1.1.6
3030
*/
3131
public enum TebexEmbeddedCheckoutSupport {
3232

3333
/**
3434
* External checkout is supported as a game overlay.
3535
*
36-
* @since 1.1.5
36+
* @since 1.1.6
3737
*/
3838
OVERLAY,
3939

4040
/**
4141
* Embedded checkout is supported in an external window.
4242
*
43-
* @since 1.1.5
43+
* @since 1.1.6
4444
*/
4545
WINDOW,
4646

4747
/**
4848
* The checkout is not supported.
4949
*
50-
* @since 1.1.5
50+
* @since 1.1.6
5151
*/
5252
UNSUPPORTED
5353

api/src/main/java/com/lunarclient/apollo/module/tebex/TebexModule.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
/**
3232
* Represents the tebex module.
3333
*
34-
* @since 1.1.5
34+
* @since 1.1.6
3535
*/
3636
@ApiStatus.NonExtendable
3737
@ModuleDefinition(id = "tebex", name = "Tebex")
@@ -42,7 +42,7 @@ public abstract class TebexModule extends ApolloModule {
4242
*
4343
* @param recipients the recipients that are receiving the packet
4444
* @param basketIdent the tebex basket ident
45-
* @since 1.1.5
45+
* @since 1.1.6
4646
*/
4747
public abstract void displayTebexEmbeddedCheckout(Recipients recipients, String basketIdent);
4848

@@ -53,7 +53,7 @@ public abstract class TebexModule extends ApolloModule {
5353
* @param recipients the recipients that are receiving the packet
5454
* @param basketIdent the tebex basket ident
5555
* @param locale the locale
56-
* @since 1.1.5
56+
* @since 1.1.6
5757
*/
5858
public abstract void displayTebexEmbeddedCheckout(Recipients recipients, String basketIdent, String locale);
5959

api/src/main/java/com/lunarclient/apollo/player/ApolloPlayer.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -116,31 +116,31 @@ default boolean hasPermission(Options options, Option<String, ?, ?> option) {
116116
* Returns the {@link MinecraftVersion} the player is running.
117117
*
118118
* @return the minecraft version
119-
* @since 1.1.5
119+
* @since 1.1.6
120120
*/
121121
@Nullable MinecraftVersion getMinecraftVersion();
122122

123123
/**
124124
* Returns the {@link LunarClientVersion} the player is running.
125125
*
126126
* @return the lunar client version
127-
* @since 1.1.5
127+
* @since 1.1.6
128128
*/
129129
@Nullable LunarClientVersion getLunarClientVersion();
130130

131131
/**
132132
* Returns a {@link List} of {@link LunarClientMod} the player has installed.
133133
*
134134
* @return the installed mods
135-
* @since 1.1.5
135+
* @since 1.1.6
136136
*/
137137
@Nullable List<LunarClientMod> getInstalledMods();
138138

139139
/**
140140
* Returns the {@link TebexEmbeddedCheckoutSupport} type.
141141
*
142142
* @return the Tebex checkout support type
143-
* @since 1.1.5
143+
* @since 1.1.6
144144
*/
145145
@Nullable TebexEmbeddedCheckoutSupport getTebexEmbeddedCheckoutSupport();
146146

bukkit-example/src/main/resources/plugin.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: Apollo-Example
22
main: com.lunarclient.apollo.example.ApolloExamplePlugin
3-
version: 1.1.5
3+
version: 1.1.6
44
author: Moonsworth
55
softdepend: [ Apollo-Bukkit ]
66
api-version: 1.13

bukkit/src/platform-loader/resources/plugin.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: Apollo-Bukkit
22
main: com.lunarclient.apollo.loader.BukkitPlatformLoader
3-
version: 1.1.5
3+
version: 1.1.6
44
author: Moonsworth
55
api-version: 1.13
66
soft-depend: [LunarClient-API]
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
name: Apollo-Bungee
22
main: com.lunarclient.apollo.loader.BungeePlatformLoader
3-
version: 1.1.5
3+
version: 1.1.6
44
author: Moonsworth

common/src/main/java/com/lunarclient/apollo/module/tebex/TebexModuleImpl.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
/**
3232
* Provides the tebex module.
3333
*
34-
* @since 1.1.5
34+
* @since 1.1.6
3535
*/
3636
public final class TebexModuleImpl extends TebexModule {
3737

deploy.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Deploy apollo to the test server
22
set -e
33
./gradlew clean build
4-
scp bukkit/build/libs/apollo-bukkit-1.1.6-SNAPSHOT.jar [email protected]:/home/ubuntu/apollo/plugins/
5-
scp bukkit-example/build/libs/apollo-bukkit-example-1.1.6-SNAPSHOT.jar [email protected]:/home/ubuntu/apollo/plugins/
6-
scp bukkit/build/libs/apollo-bukkit-1.1.6-SNAPSHOT.jar [email protected]:/home/ubuntu/lctest/plugins/
7-
scp bukkit-example/build/libs/apollo-bukkit-example-1.1.6-SNAPSHOT.jar [email protected]:/home/ubuntu/lctest/plugins/
4+
scp bukkit/build/libs/apollo-bukkit-1.1.6.jar [email protected]:/home/ubuntu/apollo/plugins/
5+
scp bukkit-example/build/libs/apollo-bukkit-example-1.1.6.jar [email protected]:/home/ubuntu/apollo/plugins/
6+
scp bukkit/build/libs/apollo-bukkit-1.1.6.jar [email protected]:/home/ubuntu/lctest/plugins/
7+
scp bukkit-example/build/libs/apollo-bukkit-example-1.1.6.jar [email protected]:/home/ubuntu/lctest/plugins/

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
group=com.lunarclient
2-
version=1.1.6-SNAPSHOT
2+
version=1.1.6
33
description=The API for interacting with Lunar Client players.
44

55
org.gradle.parallel=true

0 commit comments

Comments
 (0)