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:
catbref 2019-11-21 09:38:41 +00:00
parent 238487ea98
commit 2e47019021
6 changed files with 7 additions and 7 deletions

View File

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

View File

@ -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"
)
)
),

View File

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

View File

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

View File

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

View File

@ -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. */