Index: sources/gui/qml/pages/MainHome.qml =================================================================== diff -u -r2ef03b2ce51b4dc507f66e9671953a8e0824bde9 -r11c59c2361237f26f084e3fe92eb1f75cf3f40fc --- sources/gui/qml/pages/MainHome.qml (.../MainHome.qml) (revision 2ef03b2ce51b4dc507f66e9671953a8e0824bde9) +++ sources/gui/qml/pages/MainHome.qml (.../MainHome.qml) (revision 11c59c2361237f26f084e3fe92eb1f75cf3f40fc) @@ -55,6 +55,8 @@ TouchRect { id : _createTreatmentRect anchors.horizontalCenter: parent.horizontalCenter text.text: qsTr("CREATE TREATMENT") + visible: ! _GuiView.useLogUnhandledOnly + borderColor: _GuiView.useLogUnhandledOnly ? "red": Colors.borderButton onClicked: createTreatment() } } Index: sources/gui/qml/pages/MainStack.qml =================================================================== diff -u -r6e47dacddee3eb819703dc1ba30386f8272869cb -r11c59c2361237f26f084e3fe92eb1f75cf3f40fc --- sources/gui/qml/pages/MainStack.qml (.../MainStack.qml) (revision 6e47dacddee3eb819703dc1ba30386f8272869cb) +++ sources/gui/qml/pages/MainStack.qml (.../MainStack.qml) (revision 11c59c2361237f26f084e3fe92eb1f75cf3f40fc) @@ -36,7 +36,7 @@ StackItem { id : _root // DEBUG: this property can mostly be used for debugging to get pass the initial screen - property var initialItem: _postModeScreen + property var initialItem: _GuiView.useLogUnhandledOnly ? _mainHome : _postModeScreen property var _startupScreen: ( _GuiView.manufactSetup || _GuiView.updateSetup ) ? _settingsStack : _mainHome @@ -88,7 +88,6 @@ topMargin : 15 horizontalCenter: parent.horizontalCenter } - color : _GuiView.useLogUnhandledOnly ? "red": Colors.highlightProgressBar } WaitDone { id: _hdWaitdone Index: sources/storage/StorageGlobals.cpp =================================================================== diff -u -r721e055ca19c92525a45be953ad1cffdc2d69abb -r11c59c2361237f26f084e3fe92eb1f75cf3f40fc --- sources/storage/StorageGlobals.cpp (.../StorageGlobals.cpp) (revision 721e055ca19c92525a45be953ad1cffdc2d69abb) +++ sources/storage/StorageGlobals.cpp (.../StorageGlobals.cpp) (revision 11c59c2361237f26f084e3fe92eb1f75cf3f40fc) @@ -103,15 +103,15 @@ //WARNING: This has to match with the crypt_setup.sh #ifdef LEAHI_DIGI_BOARD const char *Settings_Path_Init = "/opt/leahi/configurations/"; // this is the manufacturing or update setup and the user is root. - const char *Settings_Path_Name = "/mnt/data/configurations/"; + const char *Settings_Path_Name = "/opt/leahi/configurations/"; //FIXME: revert back when cybersecurity implemeted "/mnt/data/configurations/"; #else const char *Settings_Path_Init = "/home/root/.config/"; // this is the manufacturing or update setup and the user is root. const char *Settings_Path_Name = "/var/configurations/"; #endif #else // should be in the project application folder. [is tracking by git] - const char *Settings_Path_Init = "/home/denali/Projects/application/resources/settings/"; - const char *Settings_Path_Name = "/home/denali/Projects/application/resources/settings/"; + const char *Settings_Path_Init = "/home/denali/Projects/application/resources/settings/configurations/"; + const char *Settings_Path_Name = "/home/denali/Projects/application/resources/settings/configurations/"; #endif const char *Settings_Category_Instructions = "Instructions/Instructions" ; const char *Settings_Category_InstructionsImagesLoc = "%1/Instructions/" ;