Index: sources/gui/qml/pages/settings/SettingsDeviceRegistration.qml =================================================================== diff -u -r934354462a353ff5e7fc2ddfe6f3a8f0121a8f3f -r1452ba11bbd936e230f93138423d6feb3e77d129 --- sources/gui/qml/pages/settings/SettingsDeviceRegistration.qml (.../SettingsDeviceRegistration.qml) (revision 934354462a353ff5e7fc2ddfe6f3a8f0121a8f3f) +++ sources/gui/qml/pages/settings/SettingsDeviceRegistration.qml (.../SettingsDeviceRegistration.qml) (revision 1452ba11bbd936e230f93138423d6feb3e77d129) @@ -98,7 +98,7 @@ TextEntry { id : _ipAddress_wlan0 textInput.clip : true hasCursor : false - textInput.text : "" // vNetwork.wirelessIP // ===================== Device Controller: FIXME + textInput.text : vDevice.ssid !== "" && vDevice.ipAddress !== "" ? vDevice.ipAddress : "" textInput.horizontalAlignment: Text.AlignLeft label.text : qsTr("Wireless") separator.text : _root.separatorText Index: sources/storage/StorageGlobals.cpp =================================================================== diff -u -rad80adbfb49b4a352148f8ce833618a6264f4016 -r1452ba11bbd936e230f93138423d6feb3e77d129 --- sources/storage/StorageGlobals.cpp (.../StorageGlobals.cpp) (revision ad80adbfb49b4a352148f8ce833618a6264f4016) +++ sources/storage/StorageGlobals.cpp (.../StorageGlobals.cpp) (revision 1452ba11bbd936e230f93138423d6feb3e77d129) @@ -135,11 +135,7 @@ // CloudSync credentials #ifdef BUILD_FOR_TARGET - #ifdef LEAHI_DIGI_BOARD - const char *CloudSync_Base_Path_Name = gUseRootHome ? "/home/root/.cloudSync/" : "/mnt/data/configurations/CloudSync/"; - #else - const char *CloudSync_Base_Path_Name = gUseRootHome ? "/home/root/.cloudSync/" : "/var/configurations/CloudSync/"; - #endif + const char *CloudSync_Base_Path_Name = gUseRootHome ? "/home/root/.cloudSync/" : "/var/configurations/CloudSync/"; #else // on VM it is a temporary file which is not being tracked const char *CloudSync_Base_Path_Name = "/home/denali/Desktop/CloudSync/";