Fixes and improvements (#617)

This commit is contained in:
Ken Van Hoeylandt
2026-08-20 17:22:01 +02:00
committed by GitHub
parent b03759a111
commit 0ff1627385
38 changed files with 309 additions and 342 deletions
+4 -4
View File
@@ -51,7 +51,7 @@ std::string getUserDataRootPath() {
#endif
}
std::string getUserDataPath() {
std::string getDataPath() {
#ifdef ESP_PLATFORM
return getUserDataRootPath() + "/tactility";
#else
@@ -60,15 +60,15 @@ std::string getUserDataPath() {
}
std::string getTempPath() {
return getUserDataPath() + "/tmp";
return getDataPath() + "/tmp";
}
std::string getAppInstallPath() {
return getUserDataPath() + "/app";
return getDataPath() + "/app";
}
std::string getUserHomePath() {
return getUserDataPath() + "/user";
return getDataPath() + "/user";
}
std::string getAppInstallPath(const std::string& appId) {