Index: main.cpp =================================================================== diff -u -re49c956894f999f6539b0c404dd1c9b18a76bb4b -rbdaea2a2d3e4828ecdf4b7e969a6b93ac4e2881d --- main.cpp (.../main.cpp) (revision e49c956894f999f6539b0c404dd1c9b18a76bb4b) +++ main.cpp (.../main.cpp) (revision bdaea2a2d3e4828ecdf4b7e969a6b93ac4e2881d) @@ -512,7 +512,7 @@ #ifdef BUILD_FOR_TARGET Storage::FileHandler::write("/home/root/lockdown.log" , errorText, false); #else - Storage::FileHandler::write("/home/denali/lockdown.log" , errorText, false); + Storage::FileHandler::write("/home/leahi/lockdown.log" , errorText, false); #endif if ( ! errorCode ) { QProcess::startDetached( scriptName, { qApp->applicationName() + ":" + QString::number(qApp->applicationPid()) }); Index: sources/gui/qml/pages/settings/SettingsExportLogs.qml =================================================================== diff -u -r0ce9ad2246ce63e9fcb706c0025ccf2a6ee88199 -rbdaea2a2d3e4828ecdf4b7e969a6b93ac4e2881d --- sources/gui/qml/pages/settings/SettingsExportLogs.qml (.../SettingsExportLogs.qml) (revision 0ce9ad2246ce63e9fcb706c0025ccf2a6ee88199) +++ sources/gui/qml/pages/settings/SettingsExportLogs.qml (.../SettingsExportLogs.qml) (revision bdaea2a2d3e4828ecdf4b7e969a6b93ac4e2881d) @@ -64,9 +64,9 @@ property bool isDevice : _GuiView.runOnDevice readonly property string typePathClr : "" readonly property string typePathPrefix : "file://" - readonly property string typePathTxr : typePathPrefix + (isDevice ? "/mnt/data/configurations" : "/home/denali/Desktop/sd-card" ) - readonly property string typePathSrc : typePathPrefix + (isDevice ? "/media/sd-card" : "/home/denali/Desktop/sd-card" ) - readonly property string typePathDst : typePathPrefix + (isDevice ? "/media/usb" : "/home/denali/Desktop/usb-disk") + readonly property string typePathTxr : typePathPrefix + (isDevice ? "/mnt/data/configurations" : "/home/leahi/Desktop/sd-card" ) + readonly property string typePathSrc : typePathPrefix + (isDevice ? "/media/sd-card" : "/home/leahi/Desktop/sd-card" ) + readonly property string typePathDst : typePathPrefix + (isDevice ? "/media/usb" : "/home/leahi/Desktop/usb-disk") readonly property string typeFolderApplication : "/log" readonly property string typeFolderService : "/service" readonly property string typeFolderTreatment : "/treatment" Index: sources/storage/StorageGlobals.cpp =================================================================== diff -u -rad80adbfb49b4a352148f8ce833618a6264f4016 -rbdaea2a2d3e4828ecdf4b7e969a6b93ac4e2881d --- sources/storage/StorageGlobals.cpp (.../StorageGlobals.cpp) (revision ad80adbfb49b4a352148f8ce833618a6264f4016) +++ sources/storage/StorageGlobals.cpp (.../StorageGlobals.cpp) (revision bdaea2a2d3e4828ecdf4b7e969a6b93ac4e2881d) @@ -43,7 +43,7 @@ #ifdef BUILD_FOR_TARGET const char *USB_Mount_Point = "/media/usb/"; #else - const char *USB_Mount_Point = "/home/denali/Desktop/usb-disk/"; + const char *USB_Mount_Point = "/home/leahi/Desktop/usb-disk/"; #endif const char *USB_File_System = "vfat"; @@ -72,7 +72,7 @@ const char *SDCard_Base_Path_Name = "/media/sd-card/"; #else // should not be in the project application folder. [not tracking by git] - const char *SDCard_Base_Path_Name = "/home/denali/Desktop/sd-card/"; + const char *SDCard_Base_Path_Name = "/home/leahi/Desktop/sd-card/"; #endif // Screenshot store folder @@ -87,15 +87,15 @@ #ifdef BUILD_FOR_TARGET return QString(QCoreApplication::applicationDirPath() + "/").toLatin1().constData(); #else - return "/home/denali/Desktop/"; + return "/home/leahi/Desktop/"; #endif } const char *Translations_Path() { #ifdef BUILD_FOR_TARGET return QString(QCoreApplication::applicationDirPath() + "/").toLatin1().constData(); #else - return "/home/denali/Projects/application/resources/"; + return "/home/leahi/Projects/application/resources/"; #endif } @@ -110,8 +110,8 @@ #endif #else // should be in the project application folder. [is tracking by git] - const char *Settings_Path_Init = "/home/denali/Public/luis/application/config/configurations/"; - const char *Settings_Path_Name = "/home/denali/Public/luis/application/config/configurations/"; + const char *Settings_Path_Init = "/home/leahi/Public/luis/application/config/configurations/"; + const char *Settings_Path_Name = "/home/leahi/Public/luis/application/config/configurations/"; #endif const char *Settings_Category_Instructions = "Instructions/Instructions" ; const char *Settings_Category_InstructionsImagesLoc = "%1/Instructions/" ; @@ -142,7 +142,7 @@ #endif #else // on VM it is a temporary file which is not being tracked - const char *CloudSync_Base_Path_Name = "/home/denali/Desktop/CloudSync/"; + const char *CloudSync_Base_Path_Name = "/home/leahi/Desktop/CloudSync/"; #endif #ifdef BUILD_FOR_TARGET @@ -160,7 +160,7 @@ // therefore in manufacturing or update mode we are still running scripts as root. return QCoreApplication::applicationDirPath() + ( ( gEnableManufacturing || gEnableUpdating )? "/scripts/" : "/scripts/"); #else - return "/home/denali/Projects/application/scripts/"; + return "/home/leahi/Projects/application/scripts/"; #endif }