Changed: Under Linux, it's recommended to put user application data in ~/.local/share

--HG--
branch : develop
feature/pipeline-tools
kervala 9 years ago
parent 7e488219a7
commit a8fac8f8e9

@ -1784,7 +1784,9 @@ std::string CPath::getApplicationDirectory(const std::string &appName, bool loca
std::string CFileContainer::getApplicationDirectory(const std::string &appName, bool local) std::string CFileContainer::getApplicationDirectory(const std::string &appName, bool local)
{ {
static std::string appPaths[2]; static std::string appPaths[2];
std::string &appPath = appPaths[local ? 1 : 0]; std::string &appPath = appPaths[local ? 1 : 0];
if (appPath.empty()) if (appPath.empty())
{ {
#ifdef NL_OS_WINDOWS #ifdef NL_OS_WINDOWS
@ -1800,26 +1802,21 @@ std::string CFileContainer::getApplicationDirectory(const std::string &appName,
SHGetSpecialFolderPathW(NULL, buffer, CSIDL_APPDATA, TRUE); SHGetSpecialFolderPathW(NULL, buffer, CSIDL_APPDATA, TRUE);
} }
appPath = CPath::standardizePath(wideToUtf8(buffer)); appPath = CPath::standardizePath(wideToUtf8(buffer));
#elif defined(NL_OS_MAC)
appPath = CPath::standardizePath(getenv("HOME"));
appPath += "/Library/Application Support/";
#else #else
appPath = CPath::standardizePath(getenv("HOME")); // get user home directory from HOME environment variable
#endif const char* homePath = getenv("HOME");
} appPath = CPath::standardizePath(homePath ? homePath : ".");
std::string path = appPath; #if defined(NL_OS_MAC)
#ifdef NL_OS_WINDOWS appPath += "Library/Application Support/";
if (!appName.empty())
path = CPath::standardizePath(path + appName);
#elif defined(NL_OS_MAC)
path = CPath::standardizePath(path + appName);
#else #else
if (!appName.empty()) // recommended for applications data that are owned by user
path = CPath::standardizePath(path + "." + toLower(appName)); appPath += ".local/share/";
#endif
#endif #endif
}
return path; return CPath::standardizePath(appPath + appName);
} }
std::string CPath::getTemporaryDirectory() std::string CPath::getTemporaryDirectory()

Loading…
Cancel
Save