From 0040c078b2f2a111c304c90a7d9226cdff5acbc0 Mon Sep 17 00:00:00 2001 From: Julien Wadel Date: Mon, 17 Feb 2020 13:57:59 +0100 Subject: [PATCH] Change placeholder --- README.md | 4 ++++ build_all_linux.sh | 2 +- ui/views/App/Settings/Dialogs/SettingsSipAccountsEdit.qml | 8 ++++---- 3 files changed, 9 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index bb2c0b7b4..df0e64e10 100644 --- a/README.md +++ b/README.md @@ -161,4 +161,8 @@ If you want you can contribute at: https://www.transifex.com/belledonne-communic Launch the application with `--verbose` parameter to get full logs and send it with your request. +On some OS (like Fedora 22 and later), they disable Qt debug output by default. To get full output, you need to create `~/.config/QtProject/qtlogging.ini` and add : + [Rules] + *.debug=true + qt.*.debug=false diff --git a/build_all_linux.sh b/build_all_linux.sh index 2bebceec5..bcd7eb351 100755 --- a/build_all_linux.sh +++ b/build_all_linux.sh @@ -38,7 +38,7 @@ mkdir -p build-desktop #SDK building cd build-desktop #cmake .. -DLINPHONESDK_PLATFORM=Desktop -DCMAKE_BUILD_TYPE=RelWithDebInfo -DENABLE_VPX=YES -DENABLE_GPL_THIRD_PARTIES=YES -DENABLE_NON_FREE_CODECS=YES -DENABLE_AMRNB=YES -DENABLE_AMRWB=YES -DENABLE_G729=YES -DENABLE_GSM=YES -DENABLE_ILBC=YES -DENABLE_ISAC=YES -DENABLE_SILK=YES -DENABLE_SPEEX=YES -DENABLE_H263=YES -DENABLE_H263P=YES -DENABLE_MPEG4=YES -DENABLE_OPENH264=YES -DENABLE_FFMPEG=YES -DENABLE_VIDEO=YES -DENABLE_GL=YES -DENABLE_OPUS=NO -cmake .. -DCMAKE_BUILD_TYPE=RelWithDebInfo +cmake .. -DCMAKE_BUILD_TYPE=RelWithDebInfo -DENABLE_OPUS=NO cmake --build . --target sdk --config RelWithDebInfo --parallel 10 #MiniZip Building diff --git a/ui/views/App/Settings/Dialogs/SettingsSipAccountsEdit.qml b/ui/views/App/Settings/Dialogs/SettingsSipAccountsEdit.qml index 3db9a4a68..4c18a9e6d 100644 --- a/ui/views/App/Settings/Dialogs/SettingsSipAccountsEdit.qml +++ b/ui/views/App/Settings/Dialogs/SettingsSipAccountsEdit.qml @@ -58,7 +58,7 @@ DialogPlus { TextField { id: sipAddress - placeholderText: 'sip:name@sip.linphone.org' + placeholderText: 'sip:name@sip.example.net' error: dialog._sipAddressOk ? '' : qsTr('invalidSipAddress') @@ -74,8 +74,8 @@ DialogPlus { TextField { id: serverAddress - placeholderText: 'sip:sip.linphone.org' - error: dialog._serverAddressOk ? '' : qsTr('invalidServerAddress') + placeholderText: 'sip:sip.example.net' + error: dialog._serverAddressOk ? '' : qsTr('invalidServerAddress') onActiveFocusChanged: if(!activeFocus && dialog._serverAddressOk) Logic.handleTransportChanged(transport.model[transport.currentIndex]) onTextChanged: Logic.handleServerAddressChanged(text) Keys.onReturnPressed: nextItemInFocusChain().forceActiveFocus() @@ -210,7 +210,7 @@ DialogPlus { TextField { id: stunServer - placeholderText: 'stun.linphone.org' + placeholderText: 'stun.example.net' readOnly: !iceEnabled.checked Keys.onReturnPressed: nextItemInFocusChain().forceActiveFocus()