Index: sources/gui/qml/pages/settings/SettingsExportLogs.qml =================================================================== diff -u -r80b5e8f1ebb90c03c37d90d90cd2da3bd95d6803 -r3ce24ed375dbcd4072fc1fa9e7522f771811e10a --- sources/gui/qml/pages/settings/SettingsExportLogs.qml (.../SettingsExportLogs.qml) (revision 80b5e8f1ebb90c03c37d90d90cd2da3bd95d6803) +++ sources/gui/qml/pages/settings/SettingsExportLogs.qml (.../SettingsExportLogs.qml) (revision 3ce24ed375dbcd4072fc1fa9e7522f771811e10a) @@ -64,8 +64,9 @@ property bool isDevice : true //false // it has to be true to make it work on the devices. readonly property string typePathClr : "" readonly property string typePathPrefix : "file://" - 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 ? "/var/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 typeFolderApplication : "/log" readonly property string typeFolderService : "/service" readonly property string typeFolderTreatment : "/treatment" @@ -74,7 +75,7 @@ readonly property string typeFolderApplicationDst : typePathDst + typeFolderApplication readonly property string typeFolderServiceSrc : typePathSrc + typeFolderService readonly property string typeFolderServiceDst : typePathDst + typeFolderService - readonly property string typeFolderTreatmentSrc : typePathSrc + typeFolderTreatment + readonly property string typeFolderTreatmentSrc : typePathTxr + typeFolderTreatment readonly property string typeFolderTreatmentDst : typePathDst + typeFolderTreatment readonly property var typeFilterAll : ["*"]