From 3701a57606a06e08fc42cfa1272a788dcca529eb Mon Sep 17 00:00:00 2001 From: Gustavo Rodrigues Date: Mon, 29 Jul 2019 17:00:52 -0300 Subject: [PATCH 1/8] xpglobes: add configs for globe tooltips Co-authored-by: Adam --- .../plugins/xpglobes/XpGlobesConfig.java | 51 ++++++++++++++--- .../plugins/xpglobes/XpGlobesOverlay.java | 55 +++++++++++-------- 2 files changed, 74 insertions(+), 32 deletions(-) diff --git a/runelite-client/src/main/java/net/runelite/client/plugins/xpglobes/XpGlobesConfig.java b/runelite-client/src/main/java/net/runelite/client/plugins/xpglobes/XpGlobesConfig.java index eab7c91c30..8e5f08b03b 100644 --- a/runelite-client/src/main/java/net/runelite/client/plugins/xpglobes/XpGlobesConfig.java +++ b/runelite-client/src/main/java/net/runelite/client/plugins/xpglobes/XpGlobesConfig.java @@ -44,11 +44,44 @@ public interface XpGlobesConfig extends Config return true; } + @ConfigItem( + keyName = "showXpLeft", + name = "Show XP Left", + description = "Shows XP Left inside the globe tooltip box", + position = 1 + ) + default boolean showXpLeft() + { + return true; + } + + @ConfigItem( + keyName = "showActionsLeft", + name = "Show actions left", + description = "Shows the number of actions left inside the globe tooltip box", + position = 2 + ) + default boolean showActionsLeft() + { + return true; + } + + @ConfigItem( + keyName = "showXpHour", + name = "Show XP/hr", + description = "Shows XP per hour inside the globe tooltip box", + position = 3 + ) + default boolean showXpHour() + { + return true; + } + @ConfigItem( keyName = "hideMaxed", name = "Hide maxed skills", - description = "Stop globes from showing up for level 99 skills ", - position = 1 + description = "Stop globes from showing up for level 99 skills", + position = 4 ) default boolean hideMaxed() { @@ -59,7 +92,7 @@ public interface XpGlobesConfig extends Config keyName = "enableCustomArcColor", name = "Enable custom arc color", description = "Enables the custom coloring of the globe's arc instead of using the skill's default color.", - position = 2 + position = 5 ) default boolean enableCustomArcColor() { @@ -71,7 +104,7 @@ public interface XpGlobesConfig extends Config keyName = "Progress arc color", name = "Progress arc color", description = "Change the color of the progress arc in the xp orb", - position = 3 + position = 6 ) default Color progressArcColor() { @@ -83,7 +116,7 @@ public interface XpGlobesConfig extends Config keyName = "Progress orb outline color", name = "Progress orb outline color", description = "Change the color of the progress orb outline", - position = 4 + position = 7 ) default Color progressOrbOutLineColor() { @@ -95,7 +128,7 @@ public interface XpGlobesConfig extends Config keyName = "Progress orb background color", name = "Progress orb background color", description = "Change the color of the progress orb background", - position = 5 + position = 8 ) default Color progressOrbBackgroundColor() { @@ -106,7 +139,7 @@ public interface XpGlobesConfig extends Config keyName = "Progress arc width", name = "Progress arc width", description = "Change the stroke width of the progress arc", - position = 6 + position = 9 ) default int progressArcStrokeWidth() { @@ -117,7 +150,7 @@ public interface XpGlobesConfig extends Config keyName = "Orb size", name = "Size of orbs", description = "Change the size of the xp orbs", - position = 7 + position = 10 ) default int xpOrbSize() { @@ -128,7 +161,7 @@ public interface XpGlobesConfig extends Config keyName = "Orb duration", name = "Duration of orbs", description = "Change the duration the xp orbs are visible", - position = 8 + position = 11 ) default int xpOrbDuration() { diff --git a/runelite-client/src/main/java/net/runelite/client/plugins/xpglobes/XpGlobesOverlay.java b/runelite-client/src/main/java/net/runelite/client/plugins/xpglobes/XpGlobesOverlay.java index 1b487ebe5c..6b5b23b349 100644 --- a/runelite-client/src/main/java/net/runelite/client/plugins/xpglobes/XpGlobesOverlay.java +++ b/runelite-client/src/main/java/net/runelite/client/plugins/xpglobes/XpGlobesOverlay.java @@ -263,34 +263,43 @@ public class XpGlobesOverlay extends Overlay { XpActionType xpActionType = xpTrackerService.getActionType(mouseOverSkill.getSkill()); - int actionsLeft = xpTrackerService.getActionsLeft(mouseOverSkill.getSkill()); - if (actionsLeft != Integer.MAX_VALUE) + if (config.showActionsLeft()) { - String actionsLeftString = decimalFormat.format(actionsLeft); - xpTooltip.getChildren().add(LineComponent.builder() - .left(xpActionType.getLabel() + " left:") - .leftColor(Color.ORANGE) - .right(actionsLeftString) - .build()); + int actionsLeft = xpTrackerService.getActionsLeft(mouseOverSkill.getSkill()); + if (actionsLeft != Integer.MAX_VALUE) + { + String actionsLeftString = decimalFormat.format(actionsLeft); + xpTooltip.getChildren().add(LineComponent.builder() + .left(xpActionType.getLabel() + " left:") + .leftColor(Color.ORANGE) + .right(actionsLeftString) + .build()); + } } - int xpLeft = goalXp - mouseOverSkill.getCurrentXp(); - String skillXpToLvl = decimalFormat.format(xpLeft); - xpTooltip.getChildren().add(LineComponent.builder() - .left("XP left:") - .leftColor(Color.ORANGE) - .right(skillXpToLvl) - .build()); - - int xpHr = xpTrackerService.getXpHr(mouseOverSkill.getSkill()); - if (xpHr != 0) + if (config.showXpLeft()) { - String xpHrString = decimalFormat.format(xpHr); + int xpLeft = goalXp - mouseOverSkill.getCurrentXp(); + String skillXpToLvl = decimalFormat.format(xpLeft); xpTooltip.getChildren().add(LineComponent.builder() - .left("XP per hour:") - .leftColor(Color.ORANGE) - .right(xpHrString) - .build()); + .left("XP left:") + .leftColor(Color.ORANGE) + .right(skillXpToLvl) + .build()); + } + + if (config.showXpHour()) + { + int xpHr = xpTrackerService.getXpHr(mouseOverSkill.getSkill()); + if (xpHr != 0) + { + String xpHrString = decimalFormat.format(xpHr); + xpTooltip.getChildren().add(LineComponent.builder() + .left("XP per hour:") + .leftColor(Color.ORANGE) + .right(xpHrString) + .build()); + } } } From 106e56950bc5cf0917ca5b8c168cc2a585ebc996 Mon Sep 17 00:00:00 2001 From: RuneLite Cache-Code Autoupdater Date: Thu, 12 Sep 2019 10:55:20 +0000 Subject: [PATCH 2/8] Update Item IDs to 2019-09-12-rev182 --- .../src/main/java/net/runelite/api/ItemID.java | 18 +++++++++++++++++- .../main/java/net/runelite/api/NullItemID.java | 10 ++++++++++ 2 files changed, 27 insertions(+), 1 deletion(-) 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 12a5fba242..ce64f4e9df 100644 --- a/runelite-api/src/main/java/net/runelite/api/ItemID.java +++ b/runelite-api/src/main/java/net/runelite/api/ItemID.java @@ -6062,7 +6062,7 @@ public final class ItemID public static final int MAGIC_HOOD = 9764; public static final int RUNECRAFT_CAPE = 9765; public static final int RUNECRAFT_CAPET = 9766; - public static final int RUNECRAFTING_HOOD = 9767; + public static final int RUNECRAFT_HOOD = 9767; public static final int HITPOINTS_CAPE = 9768; public static final int HITPOINTS_CAPET = 9769; public static final int HITPOINTS_HOOD = 9770; @@ -11250,5 +11250,21 @@ public final class ItemID public static final int AVAS_ASSEMBLER_L = 24222; public static final int FIRE_CAPE_L = 24223; public static final int INFERNAL_CAPE_L = 24224; + public static final int GRANITE_MAUL_24225 = 24225; + public static final int GRANITE_MAUL_24227 = 24227; + public static final int ORNATE_MAUL_HANDLE = 24229; + public static final int IMBUED_SARADOMIN_MAX_CAPE_L = 24232; + public static final int IMBUED_ZAMORAK_MAX_CAPE_L = 24233; + public static final int IMBUED_GUTHIX_MAX_CAPE_L = 24234; + public static final int HOUSE_ADVERTISEMENT = 24235; + public static final int IMBUED_SARADOMIN_CAPE_BROKEN = 24236; + public static final int IMBUED_SARADOMIN_MAX_CAPE_BROKEN = 24238; + public static final int IMBUED_GUTHIX_CAPE_BROKEN = 24240; + public static final int IMBUED_GUTHIX_MAX_CAPE_BROKEN = 24242; + public static final int IMBUED_ZAMORAK_CAPE_BROKEN = 24244; + public static final int IMBUED_ZAMORAK_MAX_CAPE_BROKEN = 24246; + public static final int IMBUED_SARADOMIN_CAPE_L = 24248; + public static final int IMBUED_GUTHIX_CAPE_L = 24249; + public static final int IMBUED_ZAMORAK_CAPE_L = 24250; /* 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 bc40852b80..37fd8789e1 100644 --- a/runelite-api/src/main/java/net/runelite/api/NullItemID.java +++ b/runelite-api/src/main/java/net/runelite/api/NullItemID.java @@ -12764,5 +12764,15 @@ public final class NullItemID public static final int NULL_24218 = 24218; public static final int NULL_24220 = 24220; public static final int NULL_24221 = 24221; + public static final int NULL_24226 = 24226; + public static final int NULL_24228 = 24228; + public static final int NULL_24230 = 24230; + public static final int NULL_24231 = 24231; + public static final int NULL_24237 = 24237; + public static final int NULL_24239 = 24239; + public static final int NULL_24241 = 24241; + public static final int NULL_24243 = 24243; + public static final int NULL_24245 = 24245; + public static final int NULL_24247 = 24247; /* This file is automatically generated. Do not edit. */ } From 4d4a4e064f89e3f82c745516ec924a560614f870 Mon Sep 17 00:00:00 2001 From: RuneLite Cache-Code Autoupdater Date: Thu, 12 Sep 2019 10:55:20 +0000 Subject: [PATCH 3/8] Update Item variations to 2019-09-12-rev182 --- .../src/main/resources/item_variations.json | 31 ++++++++++++++++--- 1 file changed, 27 insertions(+), 4 deletions(-) diff --git a/runelite-client/src/main/resources/item_variations.json b/runelite-client/src/main/resources/item_variations.json index ac07609024..5e7a83c567 100644 --- a/runelite-client/src/main/resources/item_variations.json +++ b/runelite-client/src/main/resources/item_variations.json @@ -3580,7 +3580,9 @@ "granite maul": [ 4153, 12848, - 20557 + 20557, + 24225, + 24227 ], "leafbladed spear": [ 4158, @@ -8951,17 +8953,38 @@ 21739, 21752 ], + "imbued saradomin max cape": [ + 21776, + 24232, + 24238 + ], + "imbued zamorak max cape": [ + 21780, + 24233, + 24246 + ], + "imbued guthix max cape": [ + 21784, + 24234, + 24242 + ], "imbued saradomin cape": [ 21791, - 23607 + 23607, + 24236, + 24248 ], "imbued guthix cape": [ 21793, - 23603 + 23603, + 24240, + 24249 ], "imbued zamorak cape": [ 21795, - 23605 + 23605, + 24244, + 24250 ], "bracelet of ethereum": [ 21816, From 1a03e5fc67db697060785db5987e4f81de33ed65 Mon Sep 17 00:00:00 2001 From: RuneLite Cache-Code Autoupdater Date: Thu, 12 Sep 2019 10:55:21 +0000 Subject: [PATCH 4/8] Update Object IDs to 2019-09-12-rev182 --- .../src/main/java/net/runelite/api/ObjectID.java | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) 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 d8956d64dc..983425b442 100644 --- a/runelite-api/src/main/java/net/runelite/api/ObjectID.java +++ b/runelite-api/src/main/java/net/runelite/api/ObjectID.java @@ -15295,7 +15295,7 @@ public final class ObjectID public static final int SHRINE = 29088; public static final int LADDER_29089 = 29089; public static final int MYSTERIOUS_RUINS_29090 = 29090; - public static final int VENDING_SHRINE = 29091; + public static final int HOUSE_ADVERTISEMENT = 29091; public static final int LADDER_29092 = 29092; public static final int MYSTERIOUS_RUINS_29094 = 29094; public static final int MYSTERIOUS_RUINS_29095 = 29095; @@ -19354,5 +19354,12 @@ public final class ObjectID public static final int NOTICEBOARD_37381 = 37381; public static final int SUPPLY_CHEST = 37382; public static final int SUPPLY_CHEST_37383 = 37383; + public static final int HOUSE_ADVERTISEMENT_37384 = 37384; + public static final int HOUSE_ADVERTISEMENT_37385 = 37385; + public static final int HOUSE_ADVERTISEMENT_37386 = 37386; + public static final int HOUSE_ADVERTISEMENT_37387 = 37387; + public static final int HOUSE_ADVERTISEMENT_37388 = 37388; + public static final int HOUSE_ADVERTISEMENT_37389 = 37389; + public static final int HOUSE_ADVERTISEMENT_37390 = 37390; /* This file is automatically generated. Do not edit. */ } From e58098f729e8a6ae4f7c25b6ad0b97a20a6a7d67 Mon Sep 17 00:00:00 2001 From: RuneLite Cache-Code Autoupdater Date: Thu, 12 Sep 2019 10:55:21 +0000 Subject: [PATCH 5/8] Update NPC IDs to 2019-09-12-rev182 --- runelite-api/src/main/java/net/runelite/api/NpcID.java | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) 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 389eb593a9..180725881d 100644 --- a/runelite-api/src/main/java/net/runelite/api/NpcID.java +++ b/runelite-api/src/main/java/net/runelite/api/NpcID.java @@ -2611,9 +2611,6 @@ public final class NpcID public static final int COMBAT_STONE_2776 = 2776; public static final int COMBAT_STONE_2777 = 2777; public static final int COMBAT_STONE_2778 = 2778; - public static final int TOY_SOLDIER = 2779; - public static final int TOY_DOLL = 2780; - public static final int TOY_MOUSE = 2781; public static final int CLOCKWORK_CAT_2782 = 2782; public static final int HIRKO = 2783; public static final int HOLOY = 2784; @@ -3422,6 +3419,7 @@ public final class NpcID public static final int SEAMAN_THRESNOR = 3646; public static final int LUTHAS = 3647; public static final int CUSTOMS_OFFICER = 3648; + public static final int TOY_SOLDIER = 3649; public static final int GARDENER_3651 = 3651; public static final int MAN_3652 = 3652; public static final int LUMBERJACK_LEIF = 3653; @@ -8277,5 +8275,11 @@ public final class NpcID public static final int ARIANWYN_9248 = 9248; public static final int ESSYLLT_9249 = 9249; public static final int CAPTAIN_BARNABY_9250 = 9250; + public static final int TOY_SOLDIER_9251 = 9251; + public static final int TOY_DOLL = 9252; + public static final int TOY_DOLL_9253 = 9253; + public static final int TOY_MOUSE = 9254; + public static final int TOY_MOUSE_9255 = 9255; + public static final int PENGUIN_SUIT_9257 = 9257; /* This file is automatically generated. Do not edit. */ } From 98503fd3efa30f303ddfa160e4c74bfc099897f6 Mon Sep 17 00:00:00 2001 From: Runelite auto updater Date: Thu, 12 Sep 2019 11:03:36 +0000 Subject: [PATCH 6/8] Update 183 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index b9b9bd3a35..3d3201cb4c 100644 --- a/pom.xml +++ b/pom.xml @@ -43,7 +43,7 @@ true true - 182 + 183 From aa7e8f2b6b9b0684a0a823267498c6054df8713a Mon Sep 17 00:00:00 2001 From: Runelite auto updater Date: Thu, 12 Sep 2019 11:40:55 +0000 Subject: [PATCH 7/8] [maven-release-plugin] prepare release runelite-parent-1.5.33 --- 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 ++-- protocol-api/pom.xml | 2 +- protocol/pom.xml | 2 +- runelite-api/pom.xml | 2 +- runelite-client/pom.xml | 2 +- runelite-script-assembler-plugin/pom.xml | 2 +- 11 files changed, 12 insertions(+), 12 deletions(-) diff --git a/cache-client/pom.xml b/cache-client/pom.xml index 46a2e25f55..e170c1d1d1 100644 --- a/cache-client/pom.xml +++ b/cache-client/pom.xml @@ -29,7 +29,7 @@ net.runelite runelite-parent - 1.5.33-SNAPSHOT + 1.5.33 cache-client diff --git a/cache-updater/pom.xml b/cache-updater/pom.xml index 32727569c0..6d4e91cd74 100644 --- a/cache-updater/pom.xml +++ b/cache-updater/pom.xml @@ -28,7 +28,7 @@ net.runelite runelite-parent - 1.5.33-SNAPSHOT + 1.5.33 Cache Updater diff --git a/cache/pom.xml b/cache/pom.xml index 413f3522eb..65f579b22e 100644 --- a/cache/pom.xml +++ b/cache/pom.xml @@ -29,7 +29,7 @@ net.runelite runelite-parent - 1.5.33-SNAPSHOT + 1.5.33 cache diff --git a/http-api/pom.xml b/http-api/pom.xml index a5c160c1a3..9d4c154df5 100644 --- a/http-api/pom.xml +++ b/http-api/pom.xml @@ -28,7 +28,7 @@ net.runelite runelite-parent - 1.5.33-SNAPSHOT + 1.5.33 Web API diff --git a/http-service/pom.xml b/http-service/pom.xml index c354f8fc2d..638601630a 100644 --- a/http-service/pom.xml +++ b/http-service/pom.xml @@ -28,7 +28,7 @@ net.runelite runelite-parent - 1.5.33-SNAPSHOT + 1.5.33 Web Service diff --git a/pom.xml b/pom.xml index 3d3201cb4c..3beecba9c0 100644 --- a/pom.xml +++ b/pom.xml @@ -28,7 +28,7 @@ net.runelite runelite-parent - 1.5.33-SNAPSHOT + 1.5.33 pom RuneLite @@ -59,7 +59,7 @@ https://github.com/runelite/runelite scm:git:git://github.com/runelite/runelite scm:git:git@github.com:runelite/runelite - HEAD + runelite-parent-1.5.33 diff --git a/protocol-api/pom.xml b/protocol-api/pom.xml index e01df76fac..540267234d 100644 --- a/protocol-api/pom.xml +++ b/protocol-api/pom.xml @@ -29,7 +29,7 @@ net.runelite runelite-parent - 1.5.33-SNAPSHOT + 1.5.33 protocol-api diff --git a/protocol/pom.xml b/protocol/pom.xml index 0499997e8e..594d4f4ad4 100644 --- a/protocol/pom.xml +++ b/protocol/pom.xml @@ -29,7 +29,7 @@ net.runelite runelite-parent - 1.5.33-SNAPSHOT + 1.5.33 protocol diff --git a/runelite-api/pom.xml b/runelite-api/pom.xml index ce09f91dfe..48c5a41aa6 100644 --- a/runelite-api/pom.xml +++ b/runelite-api/pom.xml @@ -29,7 +29,7 @@ net.runelite runelite-parent - 1.5.33-SNAPSHOT + 1.5.33 runelite-api diff --git a/runelite-client/pom.xml b/runelite-client/pom.xml index fdd53a4c84..6b7c707c81 100644 --- a/runelite-client/pom.xml +++ b/runelite-client/pom.xml @@ -29,7 +29,7 @@ net.runelite runelite-parent - 1.5.33-SNAPSHOT + 1.5.33 client diff --git a/runelite-script-assembler-plugin/pom.xml b/runelite-script-assembler-plugin/pom.xml index aa5aeb76df..b57b4679ff 100644 --- a/runelite-script-assembler-plugin/pom.xml +++ b/runelite-script-assembler-plugin/pom.xml @@ -29,7 +29,7 @@ net.runelite runelite-parent - 1.5.33-SNAPSHOT + 1.5.33 script-assembler-plugin From cfef5ad30c997fc179adc85c142511d488e577a3 Mon Sep 17 00:00:00 2001 From: Runelite auto updater Date: Thu, 12 Sep 2019 11:41:01 +0000 Subject: [PATCH 8/8] [maven-release-plugin] prepare for next development iteration --- 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 ++-- protocol-api/pom.xml | 2 +- protocol/pom.xml | 2 +- runelite-api/pom.xml | 2 +- runelite-client/pom.xml | 2 +- runelite-script-assembler-plugin/pom.xml | 2 +- 11 files changed, 12 insertions(+), 12 deletions(-) diff --git a/cache-client/pom.xml b/cache-client/pom.xml index e170c1d1d1..0975d9574e 100644 --- a/cache-client/pom.xml +++ b/cache-client/pom.xml @@ -29,7 +29,7 @@ net.runelite runelite-parent - 1.5.33 + 1.5.34-SNAPSHOT cache-client diff --git a/cache-updater/pom.xml b/cache-updater/pom.xml index 6d4e91cd74..ac9f061f94 100644 --- a/cache-updater/pom.xml +++ b/cache-updater/pom.xml @@ -28,7 +28,7 @@ net.runelite runelite-parent - 1.5.33 + 1.5.34-SNAPSHOT Cache Updater diff --git a/cache/pom.xml b/cache/pom.xml index 65f579b22e..51686ecba3 100644 --- a/cache/pom.xml +++ b/cache/pom.xml @@ -29,7 +29,7 @@ net.runelite runelite-parent - 1.5.33 + 1.5.34-SNAPSHOT cache diff --git a/http-api/pom.xml b/http-api/pom.xml index 9d4c154df5..fe6dbf04b5 100644 --- a/http-api/pom.xml +++ b/http-api/pom.xml @@ -28,7 +28,7 @@ net.runelite runelite-parent - 1.5.33 + 1.5.34-SNAPSHOT Web API diff --git a/http-service/pom.xml b/http-service/pom.xml index 638601630a..394944917a 100644 --- a/http-service/pom.xml +++ b/http-service/pom.xml @@ -28,7 +28,7 @@ net.runelite runelite-parent - 1.5.33 + 1.5.34-SNAPSHOT Web Service diff --git a/pom.xml b/pom.xml index 3beecba9c0..3ac957076d 100644 --- a/pom.xml +++ b/pom.xml @@ -28,7 +28,7 @@ net.runelite runelite-parent - 1.5.33 + 1.5.34-SNAPSHOT pom RuneLite @@ -59,7 +59,7 @@ https://github.com/runelite/runelite scm:git:git://github.com/runelite/runelite scm:git:git@github.com:runelite/runelite - runelite-parent-1.5.33 + HEAD diff --git a/protocol-api/pom.xml b/protocol-api/pom.xml index 540267234d..753d6cd5a5 100644 --- a/protocol-api/pom.xml +++ b/protocol-api/pom.xml @@ -29,7 +29,7 @@ net.runelite runelite-parent - 1.5.33 + 1.5.34-SNAPSHOT protocol-api diff --git a/protocol/pom.xml b/protocol/pom.xml index 594d4f4ad4..d3e17b01d9 100644 --- a/protocol/pom.xml +++ b/protocol/pom.xml @@ -29,7 +29,7 @@ net.runelite runelite-parent - 1.5.33 + 1.5.34-SNAPSHOT protocol diff --git a/runelite-api/pom.xml b/runelite-api/pom.xml index 48c5a41aa6..f09c046a63 100644 --- a/runelite-api/pom.xml +++ b/runelite-api/pom.xml @@ -29,7 +29,7 @@ net.runelite runelite-parent - 1.5.33 + 1.5.34-SNAPSHOT runelite-api diff --git a/runelite-client/pom.xml b/runelite-client/pom.xml index 6b7c707c81..11fa7d6638 100644 --- a/runelite-client/pom.xml +++ b/runelite-client/pom.xml @@ -29,7 +29,7 @@ net.runelite runelite-parent - 1.5.33 + 1.5.34-SNAPSHOT client diff --git a/runelite-script-assembler-plugin/pom.xml b/runelite-script-assembler-plugin/pom.xml index b57b4679ff..9193373951 100644 --- a/runelite-script-assembler-plugin/pom.xml +++ b/runelite-script-assembler-plugin/pom.xml @@ -29,7 +29,7 @@ net.runelite runelite-parent - 1.5.33 + 1.5.34-SNAPSHOT script-assembler-plugin