Merge pull request #837 from deathbeam/make-names-consistent
Normalize plugin names
This commit is contained in:
@@ -53,7 +53,7 @@ import static net.runelite.client.plugins.attackindicator.AttackStyle.DEFENSIVE_
|
||||
import static net.runelite.client.plugins.attackindicator.AttackStyle.OTHER;
|
||||
|
||||
@PluginDescriptor(
|
||||
name = "Attack indicator"
|
||||
name = "Attack Indicators"
|
||||
)
|
||||
@Slf4j
|
||||
public class AttackIndicatorPlugin extends Plugin
|
||||
|
||||
@@ -30,7 +30,7 @@ import net.runelite.client.config.ConfigItem;
|
||||
|
||||
@ConfigGroup(
|
||||
keyName = "barrows",
|
||||
name = "Barrows Plugin",
|
||||
name = "Barrows Brothers",
|
||||
description = "Configuration for the Barrows plugin"
|
||||
)
|
||||
public interface BarrowsConfig extends Config
|
||||
|
||||
@@ -49,7 +49,7 @@ import net.runelite.client.plugins.PluginDescriptor;
|
||||
import net.runelite.client.ui.overlay.Overlay;
|
||||
|
||||
@PluginDescriptor(
|
||||
name = "Barrows plugin"
|
||||
name = "Barrows Brothers"
|
||||
)
|
||||
public class BarrowsPlugin extends Plugin
|
||||
{
|
||||
|
||||
@@ -30,7 +30,7 @@ import net.runelite.client.config.Config;
|
||||
|
||||
@ConfigGroup(
|
||||
keyName = "boosts",
|
||||
name = "Boosts Info",
|
||||
name = "Boosts Information",
|
||||
description = "Configuration for the Boosts plugin"
|
||||
)
|
||||
public interface BoostsConfig extends Config
|
||||
|
||||
@@ -39,7 +39,7 @@ import net.runelite.client.ui.overlay.Overlay;
|
||||
import net.runelite.client.ui.overlay.infobox.InfoBoxManager;
|
||||
|
||||
@PluginDescriptor(
|
||||
name = "Boosts"
|
||||
name = "Boosts Information"
|
||||
)
|
||||
public class BoostsPlugin extends Plugin
|
||||
{
|
||||
|
||||
@@ -36,7 +36,7 @@ import net.runelite.client.plugins.PluginDescriptor;
|
||||
import net.runelite.client.ui.overlay.infobox.InfoBoxManager;
|
||||
|
||||
@PluginDescriptor(
|
||||
name = "Boss timers"
|
||||
name = "Boss Timers"
|
||||
)
|
||||
@Slf4j
|
||||
public class BossTimersPlugin extends Plugin
|
||||
|
||||
@@ -38,7 +38,7 @@ import net.runelite.client.chat.QueuedMessage;
|
||||
import net.runelite.client.plugins.Plugin;
|
||||
import net.runelite.client.plugins.PluginDescriptor;
|
||||
|
||||
@PluginDescriptor(name = "Chat history")
|
||||
@PluginDescriptor(name = "Chat History")
|
||||
public class ChatHistoryPlugin extends Plugin
|
||||
{
|
||||
private static final String WELCOME_MESSAGE = "Welcome to RuneScape.";
|
||||
|
||||
@@ -56,7 +56,7 @@ import net.runelite.client.plugins.PluginDescriptor;
|
||||
import net.runelite.client.task.Schedule;
|
||||
|
||||
@PluginDescriptor(
|
||||
name = "Clan chat"
|
||||
name = "Clan Chat"
|
||||
)
|
||||
@Slf4j
|
||||
public class ClanChatPlugin extends Plugin
|
||||
|
||||
@@ -38,7 +38,7 @@ import net.runelite.client.plugins.PluginDescriptor;
|
||||
import net.runelite.client.task.Schedule;
|
||||
|
||||
@PluginDescriptor(
|
||||
name = "Clue scroll"
|
||||
name = "Clue Scroll"
|
||||
)
|
||||
public class ClueScrollPlugin extends Plugin
|
||||
{
|
||||
|
||||
@@ -38,7 +38,7 @@ import net.runelite.client.plugins.Plugin;
|
||||
import net.runelite.client.plugins.PluginDescriptor;
|
||||
|
||||
@PluginDescriptor(
|
||||
name = "Combat level"
|
||||
name = "Combat Level"
|
||||
)
|
||||
public class CombatLevelPlugin extends Plugin
|
||||
{
|
||||
|
||||
@@ -36,7 +36,7 @@ import net.runelite.client.ui.NavigationButton;
|
||||
import net.runelite.client.ui.overlay.Overlay;
|
||||
|
||||
@PluginDescriptor(
|
||||
name = "Developer tools",
|
||||
name = "Developer Tools",
|
||||
developerPlugin = true
|
||||
)
|
||||
public class DevToolsPlugin extends Plugin
|
||||
|
||||
@@ -38,7 +38,7 @@ import net.runelite.client.ui.overlay.Overlay;
|
||||
import net.runelite.client.util.QueryRunner;
|
||||
|
||||
@PluginDescriptor(
|
||||
name = "Fight cave"
|
||||
name = "Fight Cave"
|
||||
)
|
||||
public class FightCavePlugin extends Plugin
|
||||
{
|
||||
|
||||
@@ -52,7 +52,7 @@ import net.runelite.client.ui.ClientUI;
|
||||
import net.runelite.client.ui.NavigationButton;
|
||||
|
||||
@PluginDescriptor(
|
||||
name = "Grand Exchange offers"
|
||||
name = "Grand Exchange"
|
||||
)
|
||||
public class GrandExchangePlugin extends Plugin
|
||||
{
|
||||
|
||||
@@ -32,7 +32,7 @@ import net.runelite.client.plugins.PluginDescriptor;
|
||||
import net.runelite.client.ui.overlay.Overlay;
|
||||
|
||||
@PluginDescriptor(
|
||||
name = "Ground items"
|
||||
name = "Ground Items"
|
||||
)
|
||||
public class GroundItemsPlugin extends Plugin
|
||||
{
|
||||
|
||||
@@ -30,7 +30,7 @@ import net.runelite.client.config.ConfigItem;
|
||||
|
||||
@ConfigGroup(
|
||||
keyName = "hiscore",
|
||||
name = "Hiscore",
|
||||
name = "HiScore",
|
||||
description = "Configuration for the hiscore plugin"
|
||||
)
|
||||
public interface HiscoreConfig extends Config
|
||||
|
||||
@@ -41,7 +41,7 @@ import net.runelite.client.ui.ClientUI;
|
||||
import net.runelite.client.ui.NavigationButton;
|
||||
|
||||
@PluginDescriptor(
|
||||
name = "Hiscore",
|
||||
name = "HiScore",
|
||||
loadWhenOutdated = true
|
||||
)
|
||||
public class HiscorePlugin extends Plugin
|
||||
|
||||
@@ -112,7 +112,7 @@ import net.runelite.client.plugins.Plugin;
|
||||
import net.runelite.client.plugins.PluginDescriptor;
|
||||
|
||||
@PluginDescriptor(
|
||||
name = "Idle notifier"
|
||||
name = "Idle Notifier"
|
||||
)
|
||||
public class IdleNotifierPlugin extends Plugin
|
||||
{
|
||||
|
||||
@@ -32,7 +32,7 @@ import net.runelite.client.ui.ClientUI;
|
||||
import net.runelite.client.ui.NavigationButton;
|
||||
|
||||
@PluginDescriptor(
|
||||
name = "Info panel",
|
||||
name = "Info Panel",
|
||||
loadWhenOutdated = true
|
||||
)
|
||||
public class InfoPlugin extends Plugin
|
||||
|
||||
@@ -32,7 +32,7 @@ import net.runelite.client.plugins.PluginDescriptor;
|
||||
import net.runelite.client.ui.overlay.Overlay;
|
||||
|
||||
@PluginDescriptor(
|
||||
name = "Item stat"
|
||||
name = "Item Stats"
|
||||
)
|
||||
public class ItemStatPlugin extends Plugin
|
||||
{
|
||||
|
||||
@@ -30,7 +30,7 @@ import net.runelite.client.plugins.PluginDescriptor;
|
||||
import net.runelite.client.ui.overlay.Overlay;
|
||||
|
||||
@PluginDescriptor(
|
||||
name = "Jewellery count"
|
||||
name = "Jewellery Count"
|
||||
)
|
||||
public class JewelleryCountPlugin extends Plugin
|
||||
{
|
||||
|
||||
@@ -33,7 +33,7 @@ import net.runelite.client.plugins.Plugin;
|
||||
import net.runelite.client.plugins.PluginDescriptor;
|
||||
|
||||
@PluginDescriptor(
|
||||
name = "Low detail",
|
||||
name = "Low Detail",
|
||||
enabledByDefault = false
|
||||
)
|
||||
public class LowMemoryPlugin extends Plugin
|
||||
|
||||
@@ -30,7 +30,7 @@ import net.runelite.client.config.ConfigItem;
|
||||
|
||||
@ConfigGroup(
|
||||
keyName = "motherlode",
|
||||
name = "Motherlode",
|
||||
name = "Motherlode Mine",
|
||||
description = "Configuration for the motherlode plugin"
|
||||
)
|
||||
public interface MotherlodeConfig extends Config
|
||||
|
||||
@@ -63,7 +63,7 @@ import net.runelite.client.task.Schedule;
|
||||
import net.runelite.client.ui.overlay.Overlay;
|
||||
|
||||
@PluginDescriptor(
|
||||
name = "Motherlode",
|
||||
name = "Motherlode Mine",
|
||||
enabledByDefault = false
|
||||
)
|
||||
public class MotherlodePlugin extends Plugin
|
||||
|
||||
@@ -30,7 +30,7 @@ import net.runelite.client.plugins.PluginDescriptor;
|
||||
import net.runelite.client.ui.overlay.Overlay;
|
||||
|
||||
@PluginDescriptor(
|
||||
name = "Mouse highlight"
|
||||
name = "Mouse Tooltips"
|
||||
)
|
||||
public class MouseHighlightPlugin extends Plugin
|
||||
{
|
||||
|
||||
@@ -36,7 +36,7 @@ import net.runelite.client.plugins.PluginDescriptor;
|
||||
import net.runelite.client.ui.overlay.Overlay;
|
||||
|
||||
@PluginDescriptor(
|
||||
name = "Opponent information"
|
||||
name = "Opponent Information"
|
||||
)
|
||||
public class OpponentInfoPlugin extends Plugin
|
||||
{
|
||||
|
||||
@@ -32,7 +32,7 @@ import net.runelite.client.ui.FontManager;
|
||||
import net.runelite.client.ui.overlay.Overlay;
|
||||
|
||||
@PluginDescriptor(
|
||||
name = "Pest control"
|
||||
name = "Pest Control"
|
||||
)
|
||||
public class PestControlPlugin extends Plugin
|
||||
{
|
||||
|
||||
@@ -33,7 +33,7 @@ import net.runelite.client.plugins.PluginDescriptor;
|
||||
import net.runelite.client.ui.overlay.Overlay;
|
||||
|
||||
@PluginDescriptor(
|
||||
name = "Player names"
|
||||
name = "Player Indicators"
|
||||
)
|
||||
public class PlayerIndicatorsPlugin extends Plugin
|
||||
{
|
||||
|
||||
@@ -30,7 +30,7 @@ import net.runelite.client.config.ConfigItem;
|
||||
|
||||
@ConfigGroup(
|
||||
keyName = "poh",
|
||||
name = "Poh",
|
||||
name = "Player-owned House",
|
||||
description = "Configuration for the POH plugin"
|
||||
)
|
||||
public interface PohConfig extends Config
|
||||
|
||||
@@ -54,7 +54,7 @@ import net.runelite.client.plugins.PluginDescriptor;
|
||||
import net.runelite.client.ui.overlay.Overlay;
|
||||
|
||||
@PluginDescriptor(
|
||||
name = "Poh"
|
||||
name = "Player-owned House"
|
||||
)
|
||||
public class PohPlugin extends Plugin
|
||||
{
|
||||
|
||||
@@ -32,7 +32,7 @@ import net.runelite.client.plugins.PluginDescriptor;
|
||||
import net.runelite.client.ui.overlay.Overlay;
|
||||
|
||||
@PluginDescriptor(
|
||||
name = "Prayer flicking"
|
||||
name = "Prayer Flicking"
|
||||
)
|
||||
public class PrayerFlickPlugin extends Plugin
|
||||
{
|
||||
|
||||
@@ -33,7 +33,7 @@ import net.runelite.client.plugins.Plugin;
|
||||
import net.runelite.client.plugins.PluginDescriptor;
|
||||
|
||||
@PluginDescriptor(
|
||||
name = "Puzzle solver"
|
||||
name = "Puzzle Solver"
|
||||
)
|
||||
public class PuzzleSolverPlugin extends Plugin
|
||||
{
|
||||
|
||||
@@ -30,7 +30,7 @@ import net.runelite.client.config.ConfigItem;
|
||||
|
||||
@ConfigGroup(
|
||||
keyName = "raids",
|
||||
name = "Raids",
|
||||
name = "Chambers Of Xeric",
|
||||
description = "Configuration for the raids plugin"
|
||||
)
|
||||
public interface RaidsConfig extends Config
|
||||
|
||||
@@ -69,7 +69,7 @@ import net.runelite.client.ui.overlay.Overlay;
|
||||
import net.runelite.client.ui.overlay.infobox.InfoBoxManager;
|
||||
|
||||
@PluginDescriptor(
|
||||
name = "Raids"
|
||||
name = "Chambers Of Xeric"
|
||||
)
|
||||
@Slf4j
|
||||
public class RaidsPlugin extends Plugin
|
||||
|
||||
@@ -30,7 +30,7 @@ import net.runelite.client.config.ConfigItem;
|
||||
|
||||
@ConfigGroup(
|
||||
keyName = "reportButton",
|
||||
name = "Report Button Utils",
|
||||
name = "Report Button",
|
||||
description = "Configuration for report button"
|
||||
)
|
||||
public interface ReportButtonConfig extends Config
|
||||
|
||||
@@ -46,7 +46,7 @@ import net.runelite.client.plugins.PluginDescriptor;
|
||||
import net.runelite.client.task.Schedule;
|
||||
|
||||
@PluginDescriptor(
|
||||
name = "Report Button Utilities"
|
||||
name = "Report Button"
|
||||
)
|
||||
@Slf4j
|
||||
public class ReportButtonPlugin extends Plugin
|
||||
|
||||
@@ -31,7 +31,7 @@ import net.runelite.client.config.ConfigItem;
|
||||
|
||||
@ConfigGroup(
|
||||
keyName = "runepouch",
|
||||
name = "Runepouch",
|
||||
name = "Rune Pouch",
|
||||
description = "Configuration for the Runepouch plugin"
|
||||
)
|
||||
public interface RunepouchConfig extends Config
|
||||
|
||||
@@ -32,7 +32,7 @@ import net.runelite.client.plugins.PluginDescriptor;
|
||||
import net.runelite.client.ui.overlay.Overlay;
|
||||
|
||||
@PluginDescriptor(
|
||||
name = "Runepouch"
|
||||
name = "Rune Pouch"
|
||||
)
|
||||
public class RunepouchPlugin extends Plugin
|
||||
{
|
||||
|
||||
@@ -43,7 +43,7 @@ import net.runelite.client.task.Schedule;
|
||||
import net.runelite.client.ui.overlay.Overlay;
|
||||
|
||||
@PluginDescriptor(
|
||||
name = "Team capes",
|
||||
name = "Team Capes",
|
||||
enabledByDefault = false
|
||||
)
|
||||
public class TeamCapesPlugin extends Plugin
|
||||
|
||||
@@ -42,7 +42,7 @@ import net.runelite.client.plugins.PluginDescriptor;
|
||||
import net.runelite.client.ui.overlay.Overlay;
|
||||
|
||||
@PluginDescriptor(
|
||||
name = "XP globes"
|
||||
name = "XP Globes"
|
||||
)
|
||||
public class XpGlobesPlugin extends Plugin
|
||||
{
|
||||
|
||||
@@ -55,7 +55,7 @@ import net.runelite.http.api.worlds.WorldType;
|
||||
import net.runelite.http.api.xp.XpClient;
|
||||
|
||||
@PluginDescriptor(
|
||||
name = "XP tracker"
|
||||
name = "XP Tracker"
|
||||
)
|
||||
@Slf4j
|
||||
public class XpTrackerPlugin extends Plugin
|
||||
|
||||
@@ -30,7 +30,7 @@ import net.runelite.client.config.ConfigItem;
|
||||
|
||||
@ConfigGroup(
|
||||
keyName = "zoom",
|
||||
name = "Zoom Unlimiter",
|
||||
name = "Camera Zoom",
|
||||
description = "Configuration for the camera zoom limit"
|
||||
)
|
||||
public interface ZoomConfig extends Config
|
||||
|
||||
@@ -37,7 +37,7 @@ import net.runelite.client.plugins.Plugin;
|
||||
import net.runelite.client.plugins.PluginDescriptor;
|
||||
|
||||
@PluginDescriptor(
|
||||
name = "Camera zoom unlimiter"
|
||||
name = "Camera Zoom"
|
||||
)
|
||||
@Slf4j
|
||||
public class ZoomPlugin extends Plugin
|
||||
|
||||
Reference in New Issue
Block a user