Update uiLocalServers, autoUpdateRepos and bump to v1.2.1

This commit is contained in:
catbref 2020-06-30 15:41:53 +01:00
parent 984e8b5227
commit d8c5e557d8
2 changed files with 5 additions and 3 deletions

View File

@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.qortal</groupId>
<artifactId>qortal</artifactId>
<version>1.2.0</version>
<version>1.2.1</version>
<packaging>jar</packaging>
<properties>
<bitcoinj.version>0.15.5</bitcoinj.version>

View File

@ -47,7 +47,7 @@ public class Settings {
// UI servers
private int uiPort = 12388;
private String[] uiLocalServers = new String[] {
"localhost", "172.24.1.1", "qor.tal"
"localhost", "127.0.0.1", "172.24.1.1", "qor.tal"
};
private String[] uiRemoteServers = new String[] {
"node1.qortal.org", "node2.qortal.org", "node3.qortal.org", "node4.qortal.org", "node5.qortal.org",
@ -106,7 +106,9 @@ public class Settings {
// Auto-update sources
private String[] autoUpdateRepos = new String[] {
"https://github.com/QORT/qortal/raw/%s/qortal.update",
"https://raw.githubusercontent.com@151.101.16.133/QORT/qortal/%s/qortal.update"
"https://raw.githubusercontent.com@151.101.16.133/QORT/qortal/%s/qortal.update",
"https://github.com/Qortal/qortal/raw/%s/qortal.update",
"https://raw.githubusercontent.com@151.101.16.133/Qortal/qortal/%s/qortal.update"
};
/** Array of NTP server hostnames. */