aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/at/hannibal2/skyhanni/config/features
diff options
context:
space:
mode:
authorhannibal2 <24389977+hannibal002@users.noreply.github.com>2024-07-28 10:00:59 +0200
committerGitHub <noreply@github.com>2024-07-28 10:00:59 +0200
commitb2082d1d6008d943ffa2269cbdddb1b4fc72b8ce (patch)
tree26806bedd65409c2a00b2ad6fef18ed4dd2dee29 /src/main/java/at/hannibal2/skyhanni/config/features
parenta4ba470eabdea05c3e2770ce56cd3ec9e0687efc (diff)
downloadskyhanni-b2082d1d6008d943ffa2269cbdddb1b4fc72b8ce.tar.gz
skyhanni-b2082d1d6008d943ffa2269cbdddb1b4fc72b8ce.tar.bz2
skyhanni-b2082d1d6008d943ffa2269cbdddb1b4fc72b8ce.zip
Backend: Change colour (UK) to color (US) (#2258)
Co-authored-by: hannibal2 <24389977+hannibal00212@users.noreply.github.com>
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config/features')
-rw-r--r--src/main/java/at/hannibal2/skyhanni/config/features/crimsonisle/MatriarchHelperConfig.java4
-rw-r--r--src/main/java/at/hannibal2/skyhanni/config/features/gui/TextBoxConfig.java2
-rw-r--r--src/main/java/at/hannibal2/skyhanni/config/features/inventory/AuctionHousePriceComparisonConfig.java12
-rw-r--r--src/main/java/at/hannibal2/skyhanni/config/features/inventory/chocolatefactory/ChocolateFactoryConfig.java2
-rw-r--r--src/main/java/at/hannibal2/skyhanni/config/features/mining/TunnelMapsConfig.java6
-rw-r--r--src/main/java/at/hannibal2/skyhanni/config/features/rift/area/dreadfarm/VoltCruxConfig.java1
-rw-r--r--src/main/java/at/hannibal2/skyhanni/config/features/rift/area/westvillage/KloonHackingConfig.java1
7 files changed, 16 insertions, 12 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/crimsonisle/MatriarchHelperConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/crimsonisle/MatriarchHelperConfig.java
index 198ec8b82..c88eea57d 100644
--- a/src/main/java/at/hannibal2/skyhanni/config/features/crimsonisle/MatriarchHelperConfig.java
+++ b/src/main/java/at/hannibal2/skyhanni/config/features/crimsonisle/MatriarchHelperConfig.java
@@ -20,7 +20,7 @@ public class MatriarchHelperConfig {
public boolean highlight = true;
@Expose
- @ConfigOption(name = "Highlight Color", desc = "Colour the pearls are highlighted in.")
+ @ConfigOption(name = "Highlight Color", desc = "Color the pearls are highlighted in.")
@ConfigEditorColour
public String highlightColor = "0:114:126:255:41";
@@ -30,7 +30,7 @@ public class MatriarchHelperConfig {
public boolean line = true;
@Expose
- @ConfigOption(name = "Line Color", desc = "Colour of the line.")
+ @ConfigOption(name = "Line Color", desc = "Color of the line.")
@ConfigEditorColour
public String lineColor = "0:230:163:38:255";
}
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/gui/TextBoxConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/gui/TextBoxConfig.java
index 808cb66f6..6efd9edd9 100644
--- a/src/main/java/at/hannibal2/skyhanni/config/features/gui/TextBoxConfig.java
+++ b/src/main/java/at/hannibal2/skyhanni/config/features/gui/TextBoxConfig.java
@@ -22,7 +22,7 @@ public class TextBoxConfig {
@Expose
@ConfigOption(name = "Text", desc = "Enter text you want to display here.\n" +
- "§eUse '&' as the colour code character.\n" +
+ "§eUse '&' as the color code character.\n" +
"§eUse '\\n' as the line break character.")
@ConfigEditorText
public Property<String> text = Property.of("&aYour Text Here\\n&bYour new line here");
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/inventory/AuctionHousePriceComparisonConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/inventory/AuctionHousePriceComparisonConfig.java
index a9300fab9..41c3b3b18 100644
--- a/src/main/java/at/hannibal2/skyhanni/config/features/inventory/AuctionHousePriceComparisonConfig.java
+++ b/src/main/java/at/hannibal2/skyhanni/config/features/inventory/AuctionHousePriceComparisonConfig.java
@@ -20,22 +20,22 @@ public class AuctionHousePriceComparisonConfig {
public boolean enabled = false;
@Expose
- @ConfigOption(name = "Good Colour", desc = "What colour to highlight good value items with.")
+ @ConfigOption(name = "Good Color", desc = "What color to highlight good value items with.")
@ConfigEditorColour
- public String good = LorenzColor.GREEN.toConfigColour();
+ public String good = LorenzColor.GREEN.toConfigColor();
@Expose
- @ConfigOption(name = "Very Good Colour", desc = "What colour to highlight very good value items with.")
+ @ConfigOption(name = "Very Good Color", desc = "What color to highlight very good value items with.")
@ConfigEditorColour
public String veryGood = "0:255:0:139:0";
@Expose
- @ConfigOption(name = "Bad Colour", desc = "What colour to highlight bad items with.")
+ @ConfigOption(name = "Bad Color", desc = "What color to highlight bad items with.")
@ConfigEditorColour
- public String bad = LorenzColor.YELLOW.toConfigColour();
+ public String bad = LorenzColor.YELLOW.toConfigColor();
@Expose
- @ConfigOption(name = "Very Bad Colour", desc = "What colour to highlight very bad items with.")
+ @ConfigOption(name = "Very Bad Color", desc = "What color to highlight very bad items with.")
@ConfigEditorColour
public String veryBad = "0:255:225:43:30";
}
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/inventory/chocolatefactory/ChocolateFactoryConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/inventory/chocolatefactory/ChocolateFactoryConfig.java
index 39758745a..c381444df 100644
--- a/src/main/java/at/hannibal2/skyhanni/config/features/inventory/chocolatefactory/ChocolateFactoryConfig.java
+++ b/src/main/java/at/hannibal2/skyhanni/config/features/inventory/chocolatefactory/ChocolateFactoryConfig.java
@@ -62,7 +62,7 @@ public class ChocolateFactoryConfig {
@Expose
@ConfigOption(name = "Highlight Upgrades", desc = "Highlight any upgrades that you can afford.\n" +
- "The upgrade with a star is the most optimal and the lightest colour of green is the most optimal you can afford.")
+ "The upgrade with a star is the most optimal and the lightest color of green is the most optimal you can afford.")
@ConfigEditorBoolean
public boolean highlightUpgrades = true;
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/mining/TunnelMapsConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/mining/TunnelMapsConfig.java
index 5ff38b346..bab2f47ff 100644
--- a/src/main/java/at/hannibal2/skyhanni/config/features/mining/TunnelMapsConfig.java
+++ b/src/main/java/at/hannibal2/skyhanni/config/features/mining/TunnelMapsConfig.java
@@ -50,13 +50,15 @@ public class TunnelMapsConfig {
public boolean leftClickPigeon = true;
@Expose
- @ConfigOption(name = "Dynamic Path Colour", desc = "Instead of the selected color use the color of the target as line colour.")
+ @ConfigOption(name = "Dynamic Path Color", desc = "Instead of the selected color use the color of the target as line color.")
@ConfigEditorBoolean
+ // TODO rename to dynamicPathColor
public boolean dynamicPathColour = true;
@Expose
- @ConfigOption(name = "Path Colour", desc = "The colour for the paths, if the dynamic colour option is turned off.")
+ @ConfigOption(name = "Path Color", desc = "The color for the paths, if the dynamic color option is turned off.")
@ConfigEditorColour
+ // TODO rename to pathColor
public String pathColour = "0:255:0:255:0";
@Expose
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/rift/area/dreadfarm/VoltCruxConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/rift/area/dreadfarm/VoltCruxConfig.java
index 6a5e1a0f1..0a1ae63e9 100644
--- a/src/main/java/at/hannibal2/skyhanni/config/features/rift/area/dreadfarm/VoltCruxConfig.java
+++ b/src/main/java/at/hannibal2/skyhanni/config/features/rift/area/dreadfarm/VoltCruxConfig.java
@@ -23,6 +23,7 @@ public class VoltCruxConfig {
@Expose
@ConfigOption(name = "Volt Range Highlighter Color", desc = "In which color should the Volt range be highlighted?")
@ConfigEditorColour
+ // TODO rename to voltColor
public String voltColour = "0:60:0:0:255";
@Expose
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/rift/area/westvillage/KloonHackingConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/rift/area/westvillage/KloonHackingConfig.java
index 01a627137..57fdad599 100644
--- a/src/main/java/at/hannibal2/skyhanni/config/features/rift/area/westvillage/KloonHackingConfig.java
+++ b/src/main/java/at/hannibal2/skyhanni/config/features/rift/area/westvillage/KloonHackingConfig.java
@@ -17,6 +17,7 @@ public class KloonHackingConfig {
@ConfigOption(name = "Color Guide", desc = "Show which color to pick.")
@ConfigEditorBoolean
@FeatureToggle
+ // TODO rename to color
public boolean colour = true;
@Expose