Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump to 1.1.6 #182

Merged
merged 1 commit into from
Oct 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
/**
* Represents the tebex module.
*
* @since 1.1.5
* @since 1.1.6
*/
@ApiStatus.NonExtendable
@ModuleDefinition(id = "tebex", name = "Tebex")
Expand All @@ -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);

Expand All @@ -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);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -116,31 +116,31 @@ default boolean hasPermission(Options options, Option<String, ?, ?> option) {
* Returns the {@link MinecraftVersion} the player is running.
*
* @return the minecraft version
* @since 1.1.5
* @since 1.1.6
*/
@Nullable MinecraftVersion getMinecraftVersion();

/**
* Returns the {@link LunarClientVersion} the player is running.
*
* @return the lunar client version
* @since 1.1.5
* @since 1.1.6
*/
@Nullable LunarClientVersion getLunarClientVersion();

/**
* 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<LunarClientMod> getInstalledMods();

/**
* Returns the {@link TebexEmbeddedCheckoutSupport} type.
*
* @return the Tebex checkout support type
* @since 1.1.5
* @since 1.1.6
*/
@Nullable TebexEmbeddedCheckoutSupport getTebexEmbeddedCheckoutSupport();

Expand Down
2 changes: 1 addition & 1 deletion bukkit-example/src/main/resources/plugin.yml
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion bukkit/src/platform-loader/resources/plugin.yml
Original file line number Diff line number Diff line change
@@ -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]
Expand Down
2 changes: 1 addition & 1 deletion bungee/src/platform-loader/resources/plugin.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Apollo-Bungee
main: com.lunarclient.apollo.loader.BungeePlatformLoader
version: 1.1.5
version: 1.1.6
author: Moonsworth
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
/**
* Provides the tebex module.
*
* @since 1.1.5
* @since 1.1.6
*/
public final class TebexModuleImpl extends TebexModule {

Expand Down
8 changes: 4 additions & 4 deletions deploy.sh
Original file line number Diff line number Diff line change
@@ -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 [email protected]:/home/ubuntu/apollo/plugins/
scp bukkit-example/build/libs/apollo-bukkit-example-1.1.6-SNAPSHOT.jar [email protected]:/home/ubuntu/apollo/plugins/
scp bukkit/build/libs/apollo-bukkit-1.1.6-SNAPSHOT.jar [email protected]:/home/ubuntu/lctest/plugins/
scp bukkit-example/build/libs/apollo-bukkit-example-1.1.6-SNAPSHOT.jar [email protected]:/home/ubuntu/lctest/plugins/
scp bukkit/build/libs/apollo-bukkit-1.1.6.jar [email protected]:/home/ubuntu/apollo/plugins/
scp bukkit-example/build/libs/apollo-bukkit-example-1.1.6.jar [email protected]:/home/ubuntu/apollo/plugins/
scp bukkit/build/libs/apollo-bukkit-1.1.6.jar [email protected]:/home/ubuntu/lctest/plugins/
scp bukkit-example/build/libs/apollo-bukkit-example-1.1.6.jar [email protected]:/home/ubuntu/lctest/plugins/
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -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
Original file line number Diff line number Diff line change
Expand Up @@ -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"}
Expand Down
Loading