Use Bisq instead of bisq

This commit is contained in:
Manfred Karrer 2017-07-11 22:37:44 +02:00
parent e51a1c4372
commit 45720486b2
5 changed files with 5 additions and 5 deletions

View File

@ -60,7 +60,7 @@ public class BisqEnvironment extends StandardEnvironment {
DEFAULT_APP_NAME = defaultAppName;
}
public static String DEFAULT_APP_NAME = "bisq";
public static String DEFAULT_APP_NAME = "Bisq";
public static final String DEFAULT_USER_DATA_DIR = defaultUserDataDir();
public static final String DEFAULT_APP_DATA_DIR = appDataDir(DEFAULT_USER_DATA_DIR, DEFAULT_APP_NAME);

View File

@ -32,7 +32,7 @@ public final class PreferencesPayload implements PersistableEnvelope {
private List<CryptoCurrency> cryptoCurrencies = new ArrayList<>();
private BlockChainExplorer blockChainExplorerMainNet;
private BlockChainExplorer blockChainExplorerTestNet;
private BlockChainExplorer bsqBlockChainExplorer = new BlockChainExplorer("bisq", "https://explorer.bisq.io/tx.html?tx=",
private BlockChainExplorer bsqBlockChainExplorer = new BlockChainExplorer("BSQ", "https://explorer.bisq.io/tx.html?tx=",
"https://explorer.bisq.io/Address.html?addr=");
@Nullable
private String backupDirectory;

View File

@ -122,7 +122,7 @@ public class BisqApp extends Application {
public void start(Stage stage) throws IOException {
BisqApp.primaryStage = stage;
String logPath = Paths.get(bisqEnvironment.getProperty(AppOptionKeys.APP_DATA_DIR_KEY), "bisq").toString();
String logPath = Paths.get(bisqEnvironment.getProperty(AppOptionKeys.APP_DATA_DIR_KEY), "Bisq").toString();
Log.setup(logPath);
log.info("Log files under: " + logPath);
Utilities.printSysInfo();

View File

@ -44,7 +44,7 @@ public class SeedNode {
private final AppSetup appSetup;
public SeedNode() {
String logPath = Paths.get(bisqEnvironment.getProperty(AppOptionKeys.APP_DATA_DIR_KEY), "bisq").toString();
String logPath = Paths.get(bisqEnvironment.getProperty(AppOptionKeys.APP_DATA_DIR_KEY), "Bisq").toString();
Log.setup(logPath);
log.info("Log files under: " + logPath);
Utilities.printSysInfo();

View File

@ -52,7 +52,7 @@ public class Statistics {
private final AppSetup appSetup;
public Statistics() {
String logPath = Paths.get(bisqEnvironment.getProperty(AppOptionKeys.APP_DATA_DIR_KEY), "bisq").toString();
String logPath = Paths.get(bisqEnvironment.getProperty(AppOptionKeys.APP_DATA_DIR_KEY), "Bisq").toString();
Log.setup(logPath);
log.info("Log files under: " + logPath);
Utilities.printSysInfo();