Skip to content

Commit f95e3bb

Browse files
committed
Update version tags to 1.2.5
1 parent c5f9c3c commit f95e3bb

6 files changed

Lines changed: 25 additions & 25 deletions

File tree

api/src/main/java/com/lunarclient/apollo/common/icon/ResourceLocationIcon.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
/**
3030
* Represents a resource location icon.
3131
*
32-
* @since 1.2.4
32+
* @since 1.2.5
3333
*/
3434
@Getter
3535
@Builder
@@ -41,7 +41,7 @@ public final class ResourceLocationIcon extends Icon {
4141
* <p>Represents a path to an icon that will appear for the player.</p>
4242
*
4343
* @return the icon resource location
44-
* @since 1.2.4
44+
* @since 1.2.5
4545
*/
4646
String resourceLocation;
4747

api/src/main/java/com/lunarclient/apollo/module/serverlink/ServerLink.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
/**
3131
* Represents a link entry displayed in the Server Links menu.
3232
*
33-
* @since 1.2.4
33+
* @since 1.2.5
3434
*/
3535
@Getter
3636
@Builder
@@ -40,23 +40,23 @@ public final class ServerLink {
4040
* Returns the server link {@link String} id.
4141
*
4242
* @return the server link id
43-
* @since 1.2.4
43+
* @since 1.2.5
4444
*/
4545
String id;
4646

4747
/**
4848
* Returns the server link {@link Component} display name.
4949
*
5050
* @return the server link display name
51-
* @since 1.2.4
51+
* @since 1.2.5
5252
*/
5353
Component displayName;
5454

5555
/**
5656
* Returns the server link {@link String} url.
5757
*
5858
* @return the server link url
59-
* @since 1.2.4
59+
* @since 1.2.5
6060
*/
6161
String url;
6262

api/src/main/java/com/lunarclient/apollo/module/serverlink/ServerLinkModule.java

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
* <p>This module provides support for the Server Links feature introduced in
3737
* Minecraft 1.21.0, with compatibility extending down to version 1.7.</p>
3838
*
39-
* @since 1.2.4
39+
* @since 1.2.5
4040
*/
4141
@ApiStatus.NonExtendable
4242
@ModuleDefinition(id = "server_link", name = "Server Link")
@@ -60,7 +60,7 @@ public abstract class ServerLinkModule extends ApolloModule {
6060
*
6161
* @param recipients the recipients that are receiving the packet
6262
* @param icon the resource location icon
63-
* @since 1.2.4
63+
* @since 1.2.5
6464
*/
6565
public abstract void overrideServerLinkResource(Recipients recipients, ResourceLocationIcon icon);
6666

@@ -70,7 +70,7 @@ public abstract class ServerLinkModule extends ApolloModule {
7070
* <p>Reverts back to displaying the default menu title.</p>
7171
*
7272
* @param recipients the recipients that are receiving the packet
73-
* @since 1.2.4
73+
* @since 1.2.5
7474
*/
7575
public abstract void resetServerLinkResource(Recipients recipients);
7676

@@ -79,7 +79,7 @@ public abstract class ServerLinkModule extends ApolloModule {
7979
*
8080
* @param recipients the recipients that are receiving the packet
8181
* @param serverLink the server link
82-
* @since 1.2.4
82+
* @since 1.2.5
8383
*/
8484
public abstract void addServerLink(Recipients recipients, ServerLink serverLink);
8585

@@ -88,7 +88,7 @@ public abstract class ServerLinkModule extends ApolloModule {
8888
*
8989
* @param recipients the recipients that are receiving the packet
9090
* @param serverLinks the server links
91-
* @since 1.2.4
91+
* @since 1.2.5
9292
*/
9393
public abstract void addServerLink(Recipients recipients, List<ServerLink> serverLinks);
9494

@@ -97,7 +97,7 @@ public abstract class ServerLinkModule extends ApolloModule {
9797
*
9898
* @param recipients the recipients that are receiving the packet
9999
* @param serverLinkId the server link id
100-
* @since 1.2.4
100+
* @since 1.2.5
101101
*/
102102
public abstract void removeServerLink(Recipients recipients, String serverLinkId);
103103

@@ -106,7 +106,7 @@ public abstract class ServerLinkModule extends ApolloModule {
106106
*
107107
* @param recipients the recipients that are receiving the packet
108108
* @param serverLink the server link
109-
* @since 1.2.4
109+
* @since 1.2.5
110110
*/
111111
public abstract void removeServerLink(Recipients recipients, ServerLink serverLink);
112112

@@ -115,15 +115,15 @@ public abstract class ServerLinkModule extends ApolloModule {
115115
*
116116
* @param recipients the recipients that are receiving the packet
117117
* @param serverLinkIds the server link ids
118-
* @since 1.2.4
118+
* @since 1.2.5
119119
*/
120120
public abstract void removeServerLink(Recipients recipients, List<String> serverLinkIds);
121121

122122
/**
123123
* Resets all {@link ServerLink}s for the {@link Recipients}.
124124
*
125125
* @param recipients the recipients that are receiving the packet
126-
* @since 1.2.4
126+
* @since 1.2.5
127127
*/
128128
public abstract void resetServerLinks(Recipients recipients);
129129

common/src/main/java/com/lunarclient/apollo/module/serverlink/ServerLinkModuleImpl.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
/**
4242
* Provides the server link module.
4343
*
44-
* @since 1.2.4
44+
* @since 1.2.5
4545
*/
4646
public final class ServerLinkModuleImpl extends ServerLinkModule {
4747

common/src/main/java/com/lunarclient/apollo/network/NetworkTypes.java

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -527,7 +527,7 @@ public static Icon fromProtobuf(com.lunarclient.apollo.common.v1.Icon icon) {
527527
*
528528
* @param icon the item stack icon
529529
* @return the proto item stack icon message
530-
* @since 1.2.4
530+
* @since 1.2.5
531531
*/
532532
public static com.lunarclient.apollo.common.v1.ItemStackIcon toProtobuf(ItemStackIcon icon) {
533533
com.lunarclient.apollo.common.v1.ItemStackIcon.Builder builder = com.lunarclient.apollo.common.v1.ItemStackIcon.newBuilder()
@@ -547,7 +547,7 @@ public static com.lunarclient.apollo.common.v1.ItemStackIcon toProtobuf(ItemStac
547547
*
548548
* @param icon the item stack icon message
549549
* @return the item stack icon
550-
* @since 1.2.4
550+
* @since 1.2.5
551551
*/
552552
public static ItemStackIcon fromProtobuf(com.lunarclient.apollo.common.v1.ItemStackIcon icon) {
553553
return ItemStackIcon.builder()
@@ -563,7 +563,7 @@ public static ItemStackIcon fromProtobuf(com.lunarclient.apollo.common.v1.ItemSt
563563
*
564564
* @param icon the resource location icon
565565
* @return the proto resource location icon message
566-
* @since 1.2.4
566+
* @since 1.2.5
567567
*/
568568
public static com.lunarclient.apollo.common.v1.ResourceLocationIcon toProtobuf(ResourceLocationIcon icon) {
569569
return com.lunarclient.apollo.common.v1.ResourceLocationIcon.newBuilder()
@@ -577,7 +577,7 @@ public static com.lunarclient.apollo.common.v1.ResourceLocationIcon toProtobuf(R
577577
*
578578
* @param icon the resource location icon message
579579
* @return the resource location icon
580-
* @since 1.2.4
580+
* @since 1.2.5
581581
*/
582582
public static ResourceLocationIcon fromProtobuf(com.lunarclient.apollo.common.v1.ResourceLocationIcon icon) {
583583
return ResourceLocationIcon.builder()
@@ -591,7 +591,7 @@ public static ResourceLocationIcon fromProtobuf(com.lunarclient.apollo.common.v1
591591
*
592592
* @param icon the simple resource location icon
593593
* @return the proto simple resource location icon message
594-
* @since 1.2.4
594+
* @since 1.2.5
595595
*/
596596
public static com.lunarclient.apollo.common.v1.SimpleResourceLocationIcon toProtobuf(SimpleResourceLocationIcon icon) {
597597
return com.lunarclient.apollo.common.v1.SimpleResourceLocationIcon.newBuilder()
@@ -606,7 +606,7 @@ public static com.lunarclient.apollo.common.v1.SimpleResourceLocationIcon toProt
606606
*
607607
* @param icon the simple resource location icon message
608608
* @return the simple resource location icon
609-
* @since 1.2.4
609+
* @since 1.2.5
610610
*/
611611
public static SimpleResourceLocationIcon fromProtobuf(com.lunarclient.apollo.common.v1.SimpleResourceLocationIcon icon) {
612612
return SimpleResourceLocationIcon.builder()
@@ -621,7 +621,7 @@ public static SimpleResourceLocationIcon fromProtobuf(com.lunarclient.apollo.com
621621
*
622622
* @param icon the advanced resource location icon
623623
* @return the proto advanced resource location icon message
624-
* @since 1.2.4
624+
* @since 1.2.5
625625
*/
626626
public static com.lunarclient.apollo.common.v1.AdvancedResourceLocationIcon toProtobuf(AdvancedResourceLocationIcon icon) {
627627
return com.lunarclient.apollo.common.v1.AdvancedResourceLocationIcon.newBuilder()
@@ -641,7 +641,7 @@ public static com.lunarclient.apollo.common.v1.AdvancedResourceLocationIcon toPr
641641
*
642642
* @param icon the advanced resource location icon message
643643
* @return the advanced resource location icon
644-
* @since 1.2.4
644+
* @since 1.2.5
645645
*/
646646
public static AdvancedResourceLocationIcon fromProtobuf(com.lunarclient.apollo.common.v1.AdvancedResourceLocationIcon icon) {
647647
return AdvancedResourceLocationIcon.builder()

docs/developers/utilities/icons.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ public class ResourceLocationIcon extends Icon {
7878
* <p>Represents a path to an icon that will appear for the player.</p>
7979
*
8080
* @return the icon resource location
81-
* @since 1.2.4
81+
* @since 1.2.5
8282
*/
8383
String resourceLocation;
8484

0 commit comments

Comments
 (0)