diff --git a/runelite-client/src/main/java/net/runelite/client/RuneLite.java b/runelite-client/src/main/java/net/runelite/client/RuneLite.java index 3dbeea9ed3..b30f5c7315 100644 --- a/runelite-client/src/main/java/net/runelite/client/RuneLite.java +++ b/runelite-client/src/main/java/net/runelite/client/RuneLite.java @@ -283,7 +283,7 @@ protected PasswordAuthentication getPasswordAuthentication() PROFILES_DIR.mkdirs(); - log.info("RuneLite {} (launcher version {}) starting up, args: {}", + log.info("OpenOSRS {} (launcher version {}) starting up, args: {}", RuneLiteProperties.getVersion(), RuneLiteProperties.getLauncherVersion() == null ? "unknown" : RuneLiteProperties.getLauncherVersion(), args.length == 0 ? "none" : String.join(" ", args)); @@ -308,7 +308,7 @@ protected PasswordAuthentication getPasswordAuthentication() { log.error("Failure during startup", e); SwingUtilities.invokeLater(() -> - new FatalErrorDialog("RuneLite has encountered an unexpected error during startup.") + new FatalErrorDialog("OpenOSRS has encountered an unexpected error during startup.") .open()); } finally diff --git a/runelite-client/src/main/java/net/runelite/client/plugins/devtools/InventoryInspector.java b/runelite-client/src/main/java/net/runelite/client/plugins/devtools/InventoryInspector.java index 44b7f141dd..921ad34b68 100644 --- a/runelite-client/src/main/java/net/runelite/client/plugins/devtools/InventoryInspector.java +++ b/runelite-client/src/main/java/net/runelite/client/plugins/devtools/InventoryInspector.java @@ -89,7 +89,7 @@ class InventoryInspector extends JFrame this.deltaPanel = new InventoryDeltaPanel(itemManager); setLayout(new BorderLayout()); - setTitle("RuneLite Inventory Inspector"); + setTitle("OpenOSRS Inventory Inspector"); setIconImage(ClientUI.ICON); setDefaultCloseOperation(JFrame.DO_NOTHING_ON_CLOSE); diff --git a/runelite-client/src/main/java/net/runelite/client/plugins/devtools/ScriptInspector.java b/runelite-client/src/main/java/net/runelite/client/plugins/devtools/ScriptInspector.java index 5956baed72..d0a1692c6c 100644 --- a/runelite-client/src/main/java/net/runelite/client/plugins/devtools/ScriptInspector.java +++ b/runelite-client/src/main/java/net/runelite/client/plugins/devtools/ScriptInspector.java @@ -145,7 +145,7 @@ public String toString() this.client = client; this.configManager = configManager; - setTitle("RuneLite Script Inspector"); + setTitle("OpenOSRS Script Inspector"); setIconImage(ClientUI.ICON); setLayout(new BorderLayout()); diff --git a/runelite-client/src/main/java/net/runelite/client/plugins/devtools/VarInspector.java b/runelite-client/src/main/java/net/runelite/client/plugins/devtools/VarInspector.java index 089a7461d0..bdbf98ad1e 100644 --- a/runelite-client/src/main/java/net/runelite/client/plugins/devtools/VarInspector.java +++ b/runelite-client/src/main/java/net/runelite/client/plugins/devtools/VarInspector.java @@ -112,7 +112,7 @@ private enum VarType this.clientThread = clientThread; this.eventBus = eventBus; - setTitle("RuneLite Var Inspector"); + setTitle("OpenOSRS Var Inspector"); setIconImage(ClientUI.ICON); setLayout(new BorderLayout()); diff --git a/runelite-client/src/main/java/net/runelite/client/plugins/devtools/WidgetInspector.java b/runelite-client/src/main/java/net/runelite/client/plugins/devtools/WidgetInspector.java index 986ebb996a..88ec8358cd 100644 --- a/runelite-client/src/main/java/net/runelite/client/plugins/devtools/WidgetInspector.java +++ b/runelite-client/src/main/java/net/runelite/client/plugins/devtools/WidgetInspector.java @@ -137,7 +137,7 @@ private WidgetInspector( eventBus.register(this); - setTitle("RuneLite Widget Inspector"); + setTitle("OpenOSRS Widget Inspector"); setIconImage(ClientUI.ICON); // Reset highlight on close diff --git a/runelite-client/src/main/java/net/runelite/client/ui/ClientUI.java b/runelite-client/src/main/java/net/runelite/client/ui/ClientUI.java index 4a631166c4..ac1a6280ac 100644 --- a/runelite-client/src/main/java/net/runelite/client/ui/ClientUI.java +++ b/runelite-client/src/main/java/net/runelite/client/ui/ClientUI.java @@ -581,9 +581,9 @@ public void show() if (client != null && !(client instanceof Client)) { SwingUtilities.invokeLater(() -> JOptionPane.showMessageDialog(frame, - "RuneLite has not yet been updated to work with the latest\n" + "OpenOSRS has not yet been updated to work with the latest\n" + "game update, it will work with reduced functionality until then.", - "RuneLite is outdated", INFORMATION_MESSAGE)); + "OpenOSRS is outdated", INFORMATION_MESSAGE)); } } @@ -656,7 +656,7 @@ private void shutdownClient() } } System.exit(0); - }, "RuneLite Shutdown").start(); + }, "OpenOSRS Shutdown").start(); } /** diff --git a/runelite-client/src/main/java/net/runelite/client/ui/FatalErrorDialog.java b/runelite-client/src/main/java/net/runelite/client/ui/FatalErrorDialog.java index 23591f8dcf..b3d66b4e39 100644 --- a/runelite-client/src/main/java/net/runelite/client/ui/FatalErrorDialog.java +++ b/runelite-client/src/main/java/net/runelite/client/ui/FatalErrorDialog.java @@ -81,7 +81,7 @@ public FatalErrorDialog(String message) try { - BufferedImage logo = ImageUtil.loadImageResource(FatalErrorDialog.class, "runelite_transparent.png"); + BufferedImage logo = ImageUtil.loadImageResource(FatalErrorDialog.class, "openosrs_transparent.png"); setIconImage(logo); JLabel runelite = new JLabel(); @@ -202,7 +202,7 @@ public static void showNetErrorWindow(String action, Throwable err) { if (err instanceof VerificationException || err instanceof GeneralSecurityException) { - new FatalErrorDialog("RuneLite was unable to verify the security of its connection to the internet while " + + new FatalErrorDialog("OpenOSRS was unable to verify the security of its connection to the internet while " + action + ". You may have a misbehaving antivirus, internet service provider, a proxy, or an incomplete" + " java installation.") .open(); @@ -211,7 +211,7 @@ public static void showNetErrorWindow(String action, Throwable err) if (err instanceof ConnectException) { - new FatalErrorDialog("RuneLite is unable to connect to a required server while " + action + ". " + + new FatalErrorDialog("OpenOSRS is unable to connect to a required server while " + action + ". " + "Please check your internet connection") .open(); return; @@ -219,7 +219,7 @@ public static void showNetErrorWindow(String action, Throwable err) if (err instanceof UnknownHostException) { - new FatalErrorDialog("RuneLite is unable to resolve the address of a required server while " + action + ". " + + new FatalErrorDialog("OpenOSRS is unable to resolve the address of a required server while " + action + ". " + "Your DNS resolver may be misconfigured, pointing to an inaccurate resolver, or your internet connection may " + "be down. ") .addButton("Change your DNS resolver", () -> LinkBrowser.browse(RuneLiteProperties.getDNSChangeLink())) @@ -227,6 +227,6 @@ public static void showNetErrorWindow(String action, Throwable err) return; } - new FatalErrorDialog("RuneLite encountered a fatal error while " + action + ".").open(); + new FatalErrorDialog("OpenOSRS encountered a fatal error while " + action + ".").open(); } } diff --git a/runelite-client/src/main/java/net/runelite/client/ui/SplashScreen.java b/runelite-client/src/main/java/net/runelite/client/ui/SplashScreen.java index 9c86509080..7f42fb4b29 100644 --- a/runelite-client/src/main/java/net/runelite/client/ui/SplashScreen.java +++ b/runelite-client/src/main/java/net/runelite/client/ui/SplashScreen.java @@ -69,9 +69,9 @@ public class SplashScreen extends JFrame implements ActionListener private SplashScreen() throws IOException { - BufferedImage logo = ImageUtil.loadImageResource(SplashScreen.class, "runelite_transparent.png"); + BufferedImage logo = ImageUtil.loadImageResource(SplashScreen.class, "openosrs_transparent.png"); - setTitle("RuneLite Launcher"); + setTitle("OpenOSRS Launcher"); setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); setUndecorated(true); diff --git a/runelite-client/src/main/resources/net/runelite/client/ui/openosrs_transparent.png b/runelite-client/src/main/resources/net/runelite/client/ui/openosrs_transparent.png new file mode 100644 index 0000000000..2d7f2e15a5 Binary files /dev/null and b/runelite-client/src/main/resources/net/runelite/client/ui/openosrs_transparent.png differ