This commit is contained in:
Kyle
2021-02-27 15:37:15 +00:00
parent e54050ba1c
commit 916a6a5794
9 changed files with 16 additions and 16 deletions

View File

@@ -283,7 +283,7 @@ public class RuneLite
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 @@ public class RuneLite
{
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

View File

@@ -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);

View File

@@ -145,7 +145,7 @@ public class ScriptInspector extends JFrame
this.client = client;
this.configManager = configManager;
setTitle("RuneLite Script Inspector");
setTitle("OpenOSRS Script Inspector");
setIconImage(ClientUI.ICON);
setLayout(new BorderLayout());

View File

@@ -112,7 +112,7 @@ class VarInspector extends JFrame
this.clientThread = clientThread;
this.eventBus = eventBus;
setTitle("RuneLite Var Inspector");
setTitle("OpenOSRS Var Inspector");
setIconImage(ClientUI.ICON);
setLayout(new BorderLayout());

View File

@@ -137,7 +137,7 @@ class WidgetInspector extends JFrame
eventBus.register(this);
setTitle("RuneLite Widget Inspector");
setTitle("OpenOSRS Widget Inspector");
setIconImage(ClientUI.ICON);
// Reset highlight on close

View File

@@ -581,9 +581,9 @@ public class ClientUI
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 @@ public class ClientUI
}
}
System.exit(0);
}, "RuneLite Shutdown").start();
}, "OpenOSRS Shutdown").start();
}
/**

View File

@@ -81,7 +81,7 @@ public class FatalErrorDialog extends JDialog
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 class FatalErrorDialog extends JDialog
{
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 class FatalErrorDialog extends JDialog
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 class FatalErrorDialog extends JDialog
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 class FatalErrorDialog extends JDialog
return;
}
new FatalErrorDialog("RuneLite encountered a fatal error while " + action + ".").open();
new FatalErrorDialog("OpenOSRS encountered a fatal error while " + action + ".").open();
}
}

View File

@@ -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);

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB