mirror of
https://github.com/Qortal/qortal.git
synced 2025-03-14 11:32:32 +00:00
Rename some "qora" references to "qortal"
Examples: qora.org to qortal.org qora-core.jar to qortal.jar qora-core.exe to qortal.exe etc.
This commit is contained in:
parent
238487ea98
commit
2e47019021
@ -32,7 +32,7 @@ public class ApplyUpdate {
|
||||
private static final Logger LOGGER = LogManager.getLogger(ApplyUpdate.class);
|
||||
private static final String JAR_FILENAME = AutoUpdate.JAR_FILENAME;
|
||||
private static final String NEW_JAR_FILENAME = AutoUpdate.NEW_JAR_FILENAME;
|
||||
private static final String WINDOWS_EXE_LAUNCHER = "qora-core.exe";
|
||||
private static final String WINDOWS_EXE_LAUNCHER = "qortal.exe";
|
||||
|
||||
private static final long CHECK_INTERVAL = 5 * 1000L; // ms
|
||||
private static final int MAX_ATTEMPTS = 5;
|
||||
|
@ -416,7 +416,7 @@ public class AdminResource {
|
||||
content = @Content(
|
||||
mediaType = MediaType.TEXT_PLAIN,
|
||||
schema = @Schema(
|
||||
type = "string", example = "node2.qora.org"
|
||||
type = "string", example = "node2.qortal.org"
|
||||
)
|
||||
)
|
||||
),
|
||||
|
@ -35,7 +35,7 @@ import com.google.common.hash.HashCode;
|
||||
|
||||
public class AutoUpdate extends Thread {
|
||||
|
||||
public static final String JAR_FILENAME = "qora-core.jar";
|
||||
public static final String JAR_FILENAME = "qortal.jar";
|
||||
public static final String NEW_JAR_FILENAME = "new-" + JAR_FILENAME;
|
||||
|
||||
private static final Logger LOGGER = LogManager.getLogger(AutoUpdate.class);
|
||||
|
@ -49,7 +49,7 @@ public class SplashFrame {
|
||||
this.splashDialog.setIconImages(icons);
|
||||
|
||||
this.splashDialog.setDefaultCloseOperation(JDialog.DO_NOTHING_ON_CLOSE);
|
||||
this.splashDialog.setTitle("qora-core");
|
||||
this.splashDialog.setTitle("qortal");
|
||||
this.splashDialog.setContentPane(new SplashPanel());
|
||||
|
||||
this.splashDialog.setUndecorated(true);
|
||||
|
@ -58,7 +58,7 @@ public class SysTray {
|
||||
this.popupMenu = createJPopupMenu();
|
||||
|
||||
// Build TrayIcon without AWT PopupMenu (which doesn't support Unicode)...
|
||||
this.trayIcon = new TrayIcon(Gui.loadImage("icons/icon32.png"), "qora-core", null);
|
||||
this.trayIcon = new TrayIcon(Gui.loadImage("icons/icon32.png"), "qortal", null);
|
||||
// ...and attach mouse listener instead so we can use JPopupMenu (which does support Unicode)
|
||||
this.trayIcon.addMouseListener(new MouseAdapter() {
|
||||
@Override
|
||||
|
@ -95,8 +95,8 @@ public class Settings {
|
||||
|
||||
// Auto-update sources
|
||||
private String[] autoUpdateRepos = new String[] {
|
||||
"https://github.com/QORT/qortal/raw/%s/qora-core.jar",
|
||||
"https://raw.githubusercontent.com@151.101.16.133/QORT/qortal/%s/qora-core.jar"
|
||||
"https://github.com/QORT/qortal/raw/%s/qortal.jar",
|
||||
"https://raw.githubusercontent.com@151.101.16.133/QORT/qortal/%s/qortal.jar"
|
||||
};
|
||||
|
||||
/** Array of NTP server hostnames. */
|
||||
|
Loading…
x
Reference in New Issue
Block a user