From 520f686006d302749c0f2f6821640f75c598f251 Mon Sep 17 00:00:00 2001 From: Adam Date: Tue, 30 Mar 2021 16:23:38 -0400 Subject: [PATCH 01/12] api: add getters for actor anim and spotanim frame --- .../src/main/java/net/runelite/api/Actor.java | 47 +++++++++++++++---- 1 file changed, 39 insertions(+), 8 deletions(-) diff --git a/runelite-api/src/main/java/net/runelite/api/Actor.java b/runelite-api/src/main/java/net/runelite/api/Actor.java index 9547290d04..e9773523c7 100644 --- a/runelite-api/src/main/java/net/runelite/api/Actor.java +++ b/runelite-api/src/main/java/net/runelite/api/Actor.java @@ -208,25 +208,56 @@ public interface Actor extends Renderable void setAnimation(int animation); /** - * Sets the frame of the animation the actor is performing. + * Get the frame of the animation the actor is performing * - * @param actionFrame the animation frame + * @return the frame */ - @VisibleForDevtools - void setActionFrame(int actionFrame); + int getAnimationFrame(); /** - * Gets the graphic that is currently on the player. + * Sets the frame of the animation the actor is performing. * - * @return the graphic of the actor + * @param frame the animation frame + * @deprecated use setAnimationFrame + */ + @Deprecated + void setActionFrame(int frame); + + /** + * Sets the frame of the animation the actor is performing. + * + * @param frame the animation frame + */ + void setAnimationFrame(int frame); + + /** + * Get the graphic/spotanim that is currently on the actor. + * + * @return the spotanim of the actor * @see GraphicID */ int getGraphic(); - @VisibleForDevtools + /** + * Set the graphic/spotanim that is currently on the actor. + * + * @param graphic The spotanim id + * @see GraphicID + */ void setGraphic(int graphic); - @VisibleForDevtools + /** + * Get the frame of the currently playing spotanim + * + * @return + */ + int getSpotAnimFrame(); + + /** + * Set the frame of the currently playing spotanim + * + * @param spotAnimFrame + */ void setSpotAnimFrame(int spotAnimFrame); /** From 4cd7996c434ebd13635b5968da0421a905329327 Mon Sep 17 00:00:00 2001 From: Adam Date: Tue, 30 Mar 2021 16:26:58 -0400 Subject: [PATCH 02/12] devtools: use setAnimationFrame --- .../net/runelite/client/plugins/devtools/DevToolsPlugin.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runelite-client/src/main/java/net/runelite/client/plugins/devtools/DevToolsPlugin.java b/runelite-client/src/main/java/net/runelite/client/plugins/devtools/DevToolsPlugin.java index b690f54e71..e063da77e1 100644 --- a/runelite-client/src/main/java/net/runelite/client/plugins/devtools/DevToolsPlugin.java +++ b/runelite-client/src/main/java/net/runelite/client/plugins/devtools/DevToolsPlugin.java @@ -345,7 +345,7 @@ public class DevToolsPlugin extends Plugin int id = Integer.parseInt(args[0]); Player localPlayer = client.getLocalPlayer(); localPlayer.setAnimation(id); - localPlayer.setActionFrame(0); + localPlayer.setAnimationFrame(0); break; } case "gfx": From 84de90eb26a9c4d2523b500cab8216eaa29538db Mon Sep 17 00:00:00 2001 From: Adam Date: Fri, 2 Apr 2021 13:57:38 -0400 Subject: [PATCH 03/12] comp.cl: remove unused to_screen.cl import This file never existed, but the template processor just replaces this with an empty string --- .../src/main/resources/net/runelite/client/plugins/gpu/comp.cl | 1 - 1 file changed, 1 deletion(-) diff --git a/runelite-client/src/main/resources/net/runelite/client/plugins/gpu/comp.cl b/runelite-client/src/main/resources/net/runelite/client/plugins/gpu/comp.cl index 1212123f25..3ae25776e8 100644 --- a/runelite-client/src/main/resources/net/runelite/client/plugins/gpu/comp.cl +++ b/runelite-client/src/main/resources/net/runelite/client/plugins/gpu/comp.cl @@ -26,7 +26,6 @@ #include FACE_COUNT #include cl_types.cl -#include to_screen.cl #include common.cl #include priority_render.cl From e70a92d9770d1f781c2e3b4de635aa87b9222c08 Mon Sep 17 00:00:00 2001 From: Adam Date: Fri, 2 Apr 2021 21:43:55 -0400 Subject: [PATCH 04/12] Update build for jdk 16 Also update mapstruct for good measure, since I had to add the lombok mapstruct binding --- http-service/pom.xml | 14 ++++++++++++-- pom.xml | 4 ++-- 2 files changed, 14 insertions(+), 4 deletions(-) diff --git a/http-service/pom.xml b/http-service/pom.xml index e3f8717488..ed2672ced9 100644 --- a/http-service/pom.xml +++ b/http-service/pom.xml @@ -37,7 +37,7 @@ 1.5.6.RELEASE - 1.2.0.Final + 1.4.2.Final @@ -62,7 +62,7 @@ org.mapstruct - mapstruct-jdk8 + mapstruct ${mapstruct.version} @@ -173,6 +173,11 @@ mapstruct-processor ${mapstruct.version} + + org.projectlombok + lombok-mapstruct-binding + 0.2.0 + org.projectlombok lombok @@ -181,6 +186,11 @@ + + org.apache.maven.plugins + maven-war-plugin + 3.3.1 + org.springframework.boot spring-boot-maven-plugin diff --git a/pom.xml b/pom.xml index d17abee198..ea9d749d62 100644 --- a/pom.xml +++ b/pom.xml @@ -39,7 +39,7 @@ UTF-8 1.8 8 - 1.18.4 + 1.18.20 true true @@ -208,7 +208,7 @@ org.projectlombok lombok-maven-plugin - 1.18.16.0 + 1.18.20.0 From faa1ef6e2f1932b0966b6879100c07823e171d3d Mon Sep 17 00:00:00 2001 From: Robert <42982719+Zytion@users.noreply.github.com> Date: Sun, 4 Apr 2021 23:56:47 -0400 Subject: [PATCH 05/12] chat colors: add color option for player's own name --- .../client/chat/ChatMessageManager.java | 9 ++++++--- .../client/config/ChatColorConfig.java | 18 ++++++++++++++++++ 2 files changed, 24 insertions(+), 3 deletions(-) diff --git a/runelite-client/src/main/java/net/runelite/client/chat/ChatMessageManager.java b/runelite-client/src/main/java/net/runelite/client/chat/ChatMessageManager.java index 50e6fefbb0..bc3cfc96e7 100644 --- a/runelite-client/src/main/java/net/runelite/client/chat/ChatMessageManager.java +++ b/runelite-client/src/main/java/net/runelite/client/chat/ChatMessageManager.java @@ -131,13 +131,16 @@ public class ChatMessageManager case MODCHAT: { String sanitizedUsername = Text.removeTags(chatMessage.getName()); - boolean isFriend = client.isFriended(sanitizedUsername, true) && !client.getLocalPlayer().getName().equals(sanitizedUsername); - if (isFriend) + if (client.getLocalPlayer().getName().equals(sanitizedUsername)) + { + usernameColor = isChatboxTransparent ? chatColorConfig.transparentPlayerUsername() : chatColorConfig.opaquePlayerUsername(); + } + else if (client.isFriended(sanitizedUsername, true)) { usernameColor = isChatboxTransparent ? chatColorConfig.transparentPublicFriendUsernames() : chatColorConfig.opaquePublicFriendUsernames(); } - if (usernameColor == null) + else { usernameColor = isChatboxTransparent ? chatColorConfig.transparentUsername() : chatColorConfig.opaqueUsername(); } diff --git a/runelite-client/src/main/java/net/runelite/client/config/ChatColorConfig.java b/runelite-client/src/main/java/net/runelite/client/config/ChatColorConfig.java index a6757a382a..30666249eb 100644 --- a/runelite-client/src/main/java/net/runelite/client/config/ChatColorConfig.java +++ b/runelite-client/src/main/java/net/runelite/client/config/ChatColorConfig.java @@ -313,6 +313,15 @@ public interface ChatColorConfig extends Config ) Color opaquePublicFriendUsernames(); + @ConfigItem( + position = 28, + keyName = "opaquePlayerUsername", + name = "Your username", + description = "Color of your username", + section = opaqueSection + ) + Color opaquePlayerUsername(); + @ConfigItem( position = 51, keyName = "transparentPublicChat", @@ -579,4 +588,13 @@ public interface ChatColorConfig extends Config section = transparentSection ) Color transparentPublicFriendUsernames(); + + @ConfigItem( + position = 78, + keyName = "transparentPlayerUsername", + name = "Your username (transparent)", + description = "Color of your username (transparent)", + section = transparentSection + ) + Color transparentPlayerUsername(); } From 3691c068999a3d6b175ed4d833c8c8f5f0d08dd3 Mon Sep 17 00:00:00 2001 From: RuneLite Cache-Code Autoupdater Date: Tue, 6 Apr 2021 18:10:03 -0600 Subject: [PATCH 06/12] Update Item variations to 2021-4-7 --- .../src/main/resources/item_variations.json | 32 +++++++++++++++++++ 1 file changed, 32 insertions(+) diff --git a/runelite-client/src/main/resources/item_variations.json b/runelite-client/src/main/resources/item_variations.json index bb3f648a28..3a4fd012f4 100644 --- a/runelite-client/src/main/resources/item_variations.json +++ b/runelite-client/src/main/resources/item_variations.json @@ -6834,6 +6834,34 @@ 10857, 24792 ], + "tea flask": [ + 10859, + 25617 + ], + "plain satchel": [ + 10877, + 25618 + ], + "green satchel": [ + 10878, + 25619 + ], + "red satchel": [ + 10879, + 25620 + ], + "black satchel": [ + 10880, + 25621 + ], + "gold satchel": [ + 10881, + 25622 + ], + "rune satchel": [ + 10882, + 25623 + ], "keg": [ 10885, 10898 @@ -7989,6 +8017,10 @@ 13269, 13271 ], + "unsired": [ + 13273, + 25624 + ], "max cape": [ 13280, 13342 From 6120fcc6f2c61f4701f3c3c22cc2e460b98b4b11 Mon Sep 17 00:00:00 2001 From: RuneLite Cache-Code Autoupdater Date: Tue, 6 Apr 2021 18:10:03 -0600 Subject: [PATCH 07/12] Update Item IDs to 2021-4-7 --- .../src/main/java/net/runelite/api/ItemID.java | 12 ++++++++++++ .../src/main/java/net/runelite/api/NullItemID.java | 2 ++ 2 files changed, 14 insertions(+) diff --git a/runelite-api/src/main/java/net/runelite/api/ItemID.java b/runelite-api/src/main/java/net/runelite/api/ItemID.java index 0ca3375dae..a2bb9978a6 100644 --- a/runelite-api/src/main/java/net/runelite/api/ItemID.java +++ b/runelite-api/src/main/java/net/runelite/api/ItemID.java @@ -11806,5 +11806,17 @@ public final class ItemID public static final int GREGGS_IOU = 25608; public static final int PASTEL_FLOWERS = 25609; public static final int THICK_DYE = 25610; + public static final int STASH_CHART = 25611; + public static final int STASH_BLUEPRINT = 25612; + public static final int BABY_MOLERAT = 25613; + public static final int LARGE_WATER_CONTAINER = 25615; + public static final int TEA_FLASK_25617 = 25617; + public static final int PLAIN_SATCHEL_25618 = 25618; + public static final int GREEN_SATCHEL_25619 = 25619; + public static final int RED_SATCHEL_25620 = 25620; + public static final int BLACK_SATCHEL_25621 = 25621; + public static final int GOLD_SATCHEL_25622 = 25622; + public static final int RUNE_SATCHEL_25623 = 25623; + public static final int UNSIRED_25624 = 25624; /* This file is automatically generated. Do not edit. */ } diff --git a/runelite-api/src/main/java/net/runelite/api/NullItemID.java b/runelite-api/src/main/java/net/runelite/api/NullItemID.java index 18a18e8979..107539aae9 100644 --- a/runelite-api/src/main/java/net/runelite/api/NullItemID.java +++ b/runelite-api/src/main/java/net/runelite/api/NullItemID.java @@ -13594,5 +13594,7 @@ public final class NullItemID public static final int NULL_25603 = 25603; public static final int NULL_25605 = 25605; public static final int NULL_25607 = 25607; + public static final int NULL_25614 = 25614; + public static final int NULL_25616 = 25616; /* This file is automatically generated. Do not edit. */ } From 5813b67c59bf4cd0ab143462d21fc3a261faddec Mon Sep 17 00:00:00 2001 From: RuneLite Cache-Code Autoupdater Date: Tue, 6 Apr 2021 18:10:03 -0600 Subject: [PATCH 08/12] Update Scripts to 2021-4-7 --- .../src/main/scripts/CommandScript.hash | 2 +- .../src/main/scripts/CommandScript.rs2asm | 57 +++++++++++-------- 2 files changed, 34 insertions(+), 25 deletions(-) diff --git a/runelite-client/src/main/scripts/CommandScript.hash b/runelite-client/src/main/scripts/CommandScript.hash index 30e32c0402..83ad002c3b 100644 --- a/runelite-client/src/main/scripts/CommandScript.hash +++ b/runelite-client/src/main/scripts/CommandScript.hash @@ -1 +1 @@ -9D8074ED6B6D8171CFC3A5C8F710FC94483DB601AF739E462AB20A6E5C97ACE7 \ No newline at end of file +49F71301DDB45F2010BA8EFCA9D32D08C2CEF0A5F4F441A1CC1F1FE2CCFD7C36 \ No newline at end of file diff --git a/runelite-client/src/main/scripts/CommandScript.rs2asm b/runelite-client/src/main/scripts/CommandScript.rs2asm index 3e568fe0a2..8616a625be 100644 --- a/runelite-client/src/main/scripts/CommandScript.rs2asm +++ b/runelite-client/src/main/scripts/CommandScript.rs2asm @@ -248,7 +248,7 @@ LABEL189: sconst "" set_varc_string 335 LABEL193: - jump LABEL262 + jump LABEL269 LABEL194: iload 0 iconst 104 @@ -262,7 +262,7 @@ LABEL198: LABEL202: invoke 75 LABEL203: - jump LABEL262 + jump LABEL269 LABEL204: iload 0 iconst 105 @@ -276,36 +276,45 @@ LABEL208: LABEL212: invoke 76 LABEL213: - jump LABEL262 + jump LABEL269 LABEL214: iload 0 iconst 80 if_icmpeq LABEL218 - jump LABEL256 + jump LABEL263 LABEL218: + iconst 40697935 + iconst 1 + cc_find + iconst 1 + if_icmpeq LABEL224 + jump LABEL225 +LABEL224: + return +LABEL225: get_varc_string 356 string_length iconst 0 - if_icmpgt LABEL223 - jump LABEL243 -LABEL223: + if_icmpgt LABEL230 + jump LABEL250 +LABEL230: get_varc_string 356 friend_test iconst 1 - if_icmpeq LABEL228 - jump LABEL231 -LABEL228: + if_icmpeq LABEL235 + jump LABEL238 +LABEL235: get_varc_string 356 invoke 107 return -LABEL231: +LABEL238: get_varc_int 60 clientclock - if_icmpgt LABEL235 - jump LABEL236 -LABEL235: + if_icmpgt LABEL242 + jump LABEL243 +LABEL242: return -LABEL236: +LABEL243: clientclock iconst 50 add @@ -313,14 +322,14 @@ LABEL236: sconst "That player was not found on your Friends list." mes return -LABEL243: +LABEL250: get_varc_int 60 clientclock - if_icmpgt LABEL247 - jump LABEL248 -LABEL247: + if_icmpgt LABEL254 + jump LABEL255 +LABEL254: return -LABEL248: +LABEL255: clientclock iconst 50 add @@ -328,8 +337,8 @@ LABEL248: sconst "You haven't received any messages to which you can reply." mes return - jump LABEL262 -LABEL256: + jump LABEL269 +LABEL263: get_varc_string 335 iconst 0 iload 0 @@ -341,9 +350,9 @@ LABEL256: runelite_callback ; if_icmpeq SKIPSETVARC ; skip setting varc with input set_varc_string 335 - jump LABEL262 ; jump over SKIPSETVARC + jump LABEL269 ; jump over SKIPSETVARC SKIPSETVARC: pop_string ; pop message -LABEL262: +LABEL269: invoke 223 return From eb1cf3d70eb2ff3816c82892e58608192c9860da Mon Sep 17 00:00:00 2001 From: RuneLite Cache-Code Autoupdater Date: Tue, 6 Apr 2021 18:10:03 -0600 Subject: [PATCH 09/12] Update Object IDs to 2021-4-7 --- runelite-api/src/main/java/net/runelite/api/NullObjectID.java | 1 + runelite-api/src/main/java/net/runelite/api/ObjectID.java | 4 ++++ 2 files changed, 5 insertions(+) diff --git a/runelite-api/src/main/java/net/runelite/api/NullObjectID.java b/runelite-api/src/main/java/net/runelite/api/NullObjectID.java index eb004776eb..2d3e5d5300 100644 --- a/runelite-api/src/main/java/net/runelite/api/NullObjectID.java +++ b/runelite-api/src/main/java/net/runelite/api/NullObjectID.java @@ -20218,5 +20218,6 @@ public final class NullObjectID public static final int NULL_41431 = 41431; public static final int NULL_41432 = 41432; public static final int NULL_41433 = 41433; + public static final int NULL_41437 = 41437; /* This file is automatically generated. Do not edit. */ } diff --git a/runelite-api/src/main/java/net/runelite/api/ObjectID.java b/runelite-api/src/main/java/net/runelite/api/ObjectID.java index 9faf893168..f1795d64cc 100644 --- a/runelite-api/src/main/java/net/runelite/api/ObjectID.java +++ b/runelite-api/src/main/java/net/runelite/api/ObjectID.java @@ -21202,5 +21202,9 @@ public final class ObjectID public static final int EASTER_EGGS = 41370; public static final int BASKET_41371 = 41371; public static final int POST_41373 = 41373; + public static final int STASH_CHART = 41434; + public static final int REWARDS_CHEST_41435 = 41435; + public static final int REWARDS_CHEST_41436 = 41436; + public static final int STILE_41438 = 41438; /* This file is automatically generated. Do not edit. */ } From a982fb8b00072cb119268e96a0a32e20d3d86f3f Mon Sep 17 00:00:00 2001 From: RuneLite Cache-Code Autoupdater Date: Tue, 6 Apr 2021 18:10:03 -0600 Subject: [PATCH 10/12] Update NPC IDs to 2021-4-7 --- runelite-api/src/main/java/net/runelite/api/NpcID.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/runelite-api/src/main/java/net/runelite/api/NpcID.java b/runelite-api/src/main/java/net/runelite/api/NpcID.java index b198db9fb5..f87f3478b2 100644 --- a/runelite-api/src/main/java/net/runelite/api/NpcID.java +++ b/runelite-api/src/main/java/net/runelite/api/NpcID.java @@ -9004,5 +9004,7 @@ public final class NpcID public static final int GREGG_10643 = 10643; public static final int CAT_10644 = 10644; public static final int AGGIE_10645 = 10645; + public static final int BABY_MOLERAT = 10650; + public static final int BABY_MOLERAT_10651 = 10651; /* This file is automatically generated. Do not edit. */ } From 59fe1885ab78d8785d6cf6e0b2dd64d2409b4224 Mon Sep 17 00:00:00 2001 From: Runelite auto updater Date: Wed, 7 Apr 2021 10:54:58 +0000 Subject: [PATCH 11/12] Release 1.7.4 --- cache-client/pom.xml | 2 +- cache-updater/pom.xml | 2 +- cache/pom.xml | 2 +- http-api/pom.xml | 2 +- http-service/pom.xml | 2 +- pom.xml | 4 ++-- runelite-api/pom.xml | 2 +- runelite-client/pom.xml | 2 +- runelite-jshell/pom.xml | 2 +- runelite-script-assembler-plugin/pom.xml | 2 +- 10 files changed, 11 insertions(+), 11 deletions(-) diff --git a/cache-client/pom.xml b/cache-client/pom.xml index 1ee8aff644..9b4431ba52 100644 --- a/cache-client/pom.xml +++ b/cache-client/pom.xml @@ -29,7 +29,7 @@ net.runelite runelite-parent - 1.7.4-SNAPSHOT + 1.7.4 cache-client diff --git a/cache-updater/pom.xml b/cache-updater/pom.xml index b97be7dc62..254eae366e 100644 --- a/cache-updater/pom.xml +++ b/cache-updater/pom.xml @@ -28,7 +28,7 @@ net.runelite runelite-parent - 1.7.4-SNAPSHOT + 1.7.4 Cache Updater diff --git a/cache/pom.xml b/cache/pom.xml index d0cffe6c80..71407c454d 100644 --- a/cache/pom.xml +++ b/cache/pom.xml @@ -29,7 +29,7 @@ net.runelite runelite-parent - 1.7.4-SNAPSHOT + 1.7.4 cache diff --git a/http-api/pom.xml b/http-api/pom.xml index 2a893165f4..5ecd073af4 100644 --- a/http-api/pom.xml +++ b/http-api/pom.xml @@ -28,7 +28,7 @@ net.runelite runelite-parent - 1.7.4-SNAPSHOT + 1.7.4 Web API diff --git a/http-service/pom.xml b/http-service/pom.xml index ed2672ced9..d1ecb60c06 100644 --- a/http-service/pom.xml +++ b/http-service/pom.xml @@ -28,7 +28,7 @@ net.runelite runelite-parent - 1.7.4-SNAPSHOT + 1.7.4 Web Service diff --git a/pom.xml b/pom.xml index ea9d749d62..9d7b5e5307 100644 --- a/pom.xml +++ b/pom.xml @@ -28,7 +28,7 @@ net.runelite runelite-parent - 1.7.4-SNAPSHOT + 1.7.4 pom RuneLite @@ -61,7 +61,7 @@ https://github.com/runelite/runelite scm:git:git://github.com/runelite/runelite scm:git:git@github.com:runelite/runelite - HEAD + runelite-parent-1.7.4 diff --git a/runelite-api/pom.xml b/runelite-api/pom.xml index 3fa787362a..ff9c8c95d3 100644 --- a/runelite-api/pom.xml +++ b/runelite-api/pom.xml @@ -29,7 +29,7 @@ net.runelite runelite-parent - 1.7.4-SNAPSHOT + 1.7.4 runelite-api diff --git a/runelite-client/pom.xml b/runelite-client/pom.xml index eb8513f311..1aeefb0881 100644 --- a/runelite-client/pom.xml +++ b/runelite-client/pom.xml @@ -29,7 +29,7 @@ net.runelite runelite-parent - 1.7.4-SNAPSHOT + 1.7.4 client diff --git a/runelite-jshell/pom.xml b/runelite-jshell/pom.xml index 41d2c7d8a2..35fd9b738c 100644 --- a/runelite-jshell/pom.xml +++ b/runelite-jshell/pom.xml @@ -30,7 +30,7 @@ net.runelite runelite-parent - 1.7.4-SNAPSHOT + 1.7.4 jshell diff --git a/runelite-script-assembler-plugin/pom.xml b/runelite-script-assembler-plugin/pom.xml index 39f1a89827..74644de199 100644 --- a/runelite-script-assembler-plugin/pom.xml +++ b/runelite-script-assembler-plugin/pom.xml @@ -29,7 +29,7 @@ net.runelite runelite-parent - 1.7.4-SNAPSHOT + 1.7.4 script-assembler-plugin From a14e864e35d2529f059613be97ef6dbebb05a361 Mon Sep 17 00:00:00 2001 From: Runelite auto updater Date: Wed, 7 Apr 2021 10:55:06 +0000 Subject: [PATCH 12/12] Bump for 1.7.5-SNAPSHOT --- cache-client/pom.xml | 2 +- cache-updater/pom.xml | 2 +- cache/pom.xml | 2 +- http-api/pom.xml | 2 +- http-service/pom.xml | 2 +- pom.xml | 4 ++-- runelite-api/pom.xml | 2 +- runelite-client/pom.xml | 2 +- runelite-jshell/pom.xml | 2 +- runelite-script-assembler-plugin/pom.xml | 2 +- 10 files changed, 11 insertions(+), 11 deletions(-) diff --git a/cache-client/pom.xml b/cache-client/pom.xml index 9b4431ba52..eedb0d309f 100644 --- a/cache-client/pom.xml +++ b/cache-client/pom.xml @@ -29,7 +29,7 @@ net.runelite runelite-parent - 1.7.4 + 1.7.5-SNAPSHOT cache-client diff --git a/cache-updater/pom.xml b/cache-updater/pom.xml index 254eae366e..7968434d05 100644 --- a/cache-updater/pom.xml +++ b/cache-updater/pom.xml @@ -28,7 +28,7 @@ net.runelite runelite-parent - 1.7.4 + 1.7.5-SNAPSHOT Cache Updater diff --git a/cache/pom.xml b/cache/pom.xml index 71407c454d..26adc25771 100644 --- a/cache/pom.xml +++ b/cache/pom.xml @@ -29,7 +29,7 @@ net.runelite runelite-parent - 1.7.4 + 1.7.5-SNAPSHOT cache diff --git a/http-api/pom.xml b/http-api/pom.xml index 5ecd073af4..a7f265f235 100644 --- a/http-api/pom.xml +++ b/http-api/pom.xml @@ -28,7 +28,7 @@ net.runelite runelite-parent - 1.7.4 + 1.7.5-SNAPSHOT Web API diff --git a/http-service/pom.xml b/http-service/pom.xml index d1ecb60c06..9d30e22143 100644 --- a/http-service/pom.xml +++ b/http-service/pom.xml @@ -28,7 +28,7 @@ net.runelite runelite-parent - 1.7.4 + 1.7.5-SNAPSHOT Web Service diff --git a/pom.xml b/pom.xml index 9d7b5e5307..20555d92c1 100644 --- a/pom.xml +++ b/pom.xml @@ -28,7 +28,7 @@ net.runelite runelite-parent - 1.7.4 + 1.7.5-SNAPSHOT pom RuneLite @@ -61,7 +61,7 @@ https://github.com/runelite/runelite scm:git:git://github.com/runelite/runelite scm:git:git@github.com:runelite/runelite - runelite-parent-1.7.4 + HEAD diff --git a/runelite-api/pom.xml b/runelite-api/pom.xml index ff9c8c95d3..e29d57fe0f 100644 --- a/runelite-api/pom.xml +++ b/runelite-api/pom.xml @@ -29,7 +29,7 @@ net.runelite runelite-parent - 1.7.4 + 1.7.5-SNAPSHOT runelite-api diff --git a/runelite-client/pom.xml b/runelite-client/pom.xml index 1aeefb0881..689210036b 100644 --- a/runelite-client/pom.xml +++ b/runelite-client/pom.xml @@ -29,7 +29,7 @@ net.runelite runelite-parent - 1.7.4 + 1.7.5-SNAPSHOT client diff --git a/runelite-jshell/pom.xml b/runelite-jshell/pom.xml index 35fd9b738c..f369ed55d4 100644 --- a/runelite-jshell/pom.xml +++ b/runelite-jshell/pom.xml @@ -30,7 +30,7 @@ net.runelite runelite-parent - 1.7.4 + 1.7.5-SNAPSHOT jshell diff --git a/runelite-script-assembler-plugin/pom.xml b/runelite-script-assembler-plugin/pom.xml index 74644de199..d5b90c9663 100644 --- a/runelite-script-assembler-plugin/pom.xml +++ b/runelite-script-assembler-plugin/pom.xml @@ -29,7 +29,7 @@ net.runelite runelite-parent - 1.7.4 + 1.7.5-SNAPSHOT script-assembler-plugin