X-Git-Url: https://git.novaco.in/?p=novacoin.git;a=blobdiff_plain;f=src%2Futil.cpp;h=a05a7a516283b17dd96d88669053882ac2a890a8;hp=4e259e4127ed516fdf753dd80d20155573344199;hb=83e34b29071b58d6578b197430d12c55d277a515;hpb=421cfe7910dbb5ef18ed4c2075d84405723b3ddc diff --git a/src/util.cpp b/src/util.cpp index 4e259e4..a05a7a5 100644 --- a/src/util.cpp +++ b/src/util.cpp @@ -1,6 +1,7 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2012 The Bitcoin developers // Copyright (c) 2011-2012 The PPCoin developers +// Copyright (c) 2012-2013 The NovaCoin developers // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. @@ -777,7 +778,7 @@ void FormatException(char* pszMessage, std::exception* pex, const char* pszThrea pszModule[0] = '\0'; GetModuleFileNameA(NULL, pszModule, sizeof(pszModule)); #else - const char* pszModule = "ppcoin"; + const char* pszModule = "novacoin"; #endif if (pex) snprintf(pszMessage, 1000, @@ -852,12 +853,12 @@ boost::filesystem::path GetDefaultDataDir() { namespace fs = boost::filesystem; - // Windows: C:\Documents and Settings\username\Application Data\PPCoin - // Mac: ~/Library/Application Support/PPCoin - // Unix: ~/.ppcoin + // Windows: C:\Documents and Settings\username\Application Data\NovaCoin + // Mac: ~/Library/Application Support/NovaCoin + // Unix: ~/.novacoin #ifdef WIN32 // Windows - return MyGetSpecialFolderPath(CSIDL_APPDATA, true) / "PPCoin"; + return MyGetSpecialFolderPath(CSIDL_APPDATA, true) / "NovaCoin"; #else fs::path pathRet; char* pszHome = getenv("HOME"); @@ -869,10 +870,10 @@ boost::filesystem::path GetDefaultDataDir() // Mac pathRet /= "Library/Application Support"; fs::create_directory(pathRet); - return pathRet / "PPCoin"; + return pathRet / "NovaCoin"; #else // Unix - return pathRet / ".ppcoin"; + return pathRet / ".novacoin"; #endif #endif } @@ -916,7 +917,7 @@ boost::filesystem::path GetConfigFile() { namespace fs = boost::filesystem; - fs::path pathConfigFile(GetArg("-conf", "ppcoin.conf")); + fs::path pathConfigFile(GetArg("-conf", "novacoin.conf")); if (!pathConfigFile.is_complete()) pathConfigFile = GetDataDir(false) / pathConfigFile; return pathConfigFile; } @@ -952,7 +953,7 @@ boost::filesystem::path GetPidFile() { namespace fs = boost::filesystem; - fs::path pathPidFile(GetArg("-pid", "ppcoind.pid")); + fs::path pathPidFile(GetArg("-pid", "novacoind.pid")); if (!pathPidFile.is_complete()) pathPidFile = GetDataDir() / pathPidFile; return pathPidFile; } @@ -1071,10 +1072,10 @@ void AddTimeData(const CNetAddr& ip, int64 nTime) if (!fMatch) { fDone = true; - string strMessage = _("Warning: Please check that your computer's date and time are correct. If your clock is wrong PPCoin will not work properly."); + string strMessage = _("Warning: Please check that your computer's date and time are correct. If your clock is wrong NovaCoin will not work properly."); strMiscWarning = strMessage; printf("*** %s\n", strMessage.c_str()); - ThreadSafeMessageBox(strMessage+" ", string("PPCoin"), wxOK | wxICON_EXCLAMATION); + ThreadSafeMessageBox(strMessage+" ", string("NovaCoin"), wxOK | wxICON_EXCLAMATION); } } } @@ -1122,7 +1123,7 @@ std::string FormatSubVersion(const std::string& name, int nClientVersion, const #ifdef WIN32 boost::filesystem::path static StartupShortcutPath() { - return MyGetSpecialFolderPath(CSIDL_STARTUP, true) / "PPCoin.lnk"; + return MyGetSpecialFolderPath(CSIDL_STARTUP, true) / "NovaCoin.lnk"; } bool GetStartOnSystemStartup() @@ -1203,7 +1204,7 @@ boost::filesystem::path static GetAutostartDir() boost::filesystem::path static GetAutostartFilePath() { - return GetAutostartDir() / "ppcoin.desktop"; + return GetAutostartDir() / "novacoin.desktop"; } bool GetStartOnSystemStartup() @@ -1244,7 +1245,7 @@ bool SetStartOnSystemStartup(bool fAutoStart) // Write a bitcoin.desktop file to the autostart directory: optionFile << "[Desktop Entry]\n"; optionFile << "Type=Application\n"; - optionFile << "Name=PPCoin\n"; + optionFile << "Name=NovaCoin\n"; optionFile << "Exec=" << pszExePath << " -min\n"; optionFile << "Terminal=false\n"; optionFile << "Hidden=false\n";