diff options
Diffstat (limited to 'src/main')
| -rw-r--r-- | src/main/Logger.cpp | 8 | ||||
| -rw-r--r-- | src/main/main.cpp | 10 |
2 files changed, 9 insertions, 9 deletions
diff --git a/src/main/Logger.cpp b/src/main/Logger.cpp index 8fa98979..56091f42 100644 --- a/src/main/Logger.cpp +++ b/src/main/Logger.cpp @@ -42,15 +42,15 @@ #include "qt/TailsOS.h" // default log path by OS (should be writable) -static const QString defaultLogName = "monero-wallet-gui.log"; +static const QString defaultLogName = "monzero-wallet-gui.log"; #if defined(Q_OS_IOS) //AppDataLocation = "<APPROOT>/Library/Application Support" static const QString osPath = QStandardPaths::standardLocations(QStandardPaths::AppDataLocation).at(0); - static const QString appFolder = "monero-wallet-gui"; + static const QString appFolder = "monzero-wallet-gui"; #elif defined(Q_OS_WIN) //AppDataLocation = "C:/Users/<USER>/AppData/Roaming/<APPNAME>" static const QString osPath = QStandardPaths::standardLocations(QStandardPaths::AppDataLocation).at(0); - static const QString appFolder = "monero-wallet-gui"; + static const QString appFolder = "monzero-wallet-gui"; #elif defined(Q_OS_ANDROID) //AppDataLocation = "<USER>/<APPNAME>/files" static const QString osPath = QStandardPaths::standardLocations(QStandardPaths::AppDataLocation).at(1); @@ -123,7 +123,7 @@ Logger::Logger(QCoreApplication &parent, QString userDefinedLogFilePath) void Logger::resetLogFilePath(bool portable) { m_logFilePath = QDir::toNativeSeparators(getLogPath(m_userDefinedLogFilePath, portable)); - Monero::Wallet::init(m_applicationFilePath.c_str(), "monero-wallet-gui", m_logFilePath.toStdString(), true); + Monero::Wallet::init(m_applicationFilePath.c_str(), "monzero-wallet-gui", m_logFilePath.toStdString(), true); qWarning() << "Logging to" << m_logFilePath; emit logFilePathChanged(); } diff --git a/src/main/main.cpp b/src/main/main.cpp index cad6dded..23bc1c46 100644 --- a/src/main/main.cpp +++ b/src/main/main.cpp @@ -229,10 +229,10 @@ int main(int argc, char *argv[]) } #endif - app.setApplicationName("monero-core"); + app.setApplicationName("monzero-core"); app.setDesktopFileName("org.getmonero.Monero"); - app.setOrganizationDomain("getmonero.org"); - app.setOrganizationName("monero-project"); + app.setOrganizationDomain("monzero.org"); + app.setOrganizationName("monzero-project"); // Ask to enable Tails OS persistence mode, it affects: // - Log file location @@ -385,7 +385,7 @@ Verify update binary using 'shasum'-compatible (SHA256 algo) output signed by tw qmlRegisterType<WalletManager>("moneroComponents.WalletManager", 1, 0, "WalletManager"); // Temporary Qt.labs.settings replacement - qmlRegisterType<MoneroSettings>("moneroComponents.Settings", 1, 0, "MoneroSettings"); + qmlRegisterType<MoneroSettings>("moneroComponents.Settings", 1, 0, "MonzeroSettings"); qmlRegisterUncreatableType<Wallet>("moneroComponents.Wallet", 1, 0, "Wallet", "Wallet can't be instantiated directly"); @@ -504,7 +504,7 @@ Verify update binary using 'shasum'-compatible (SHA256 algo) output signed by tw if (accountName.isEmpty()) accountName = qgetenv("USERNAME"); // Windows if (accountName.isEmpty()) - accountName = "My monero Account"; + accountName = "My Monzero Account"; engine.rootContext()->setContextProperty("defaultAccountName", accountName); engine.rootContext()->setContextProperty("homePath", QDir::homePath()); |
