Use default values for new accounts in settings panel.

Add 'sip' scheme in authentication popup.
This commit is contained in:
Julien Wadel 2022-08-29 11:59:33 +02:00
parent 43d73f8e2f
commit 5b533ebb99
3 changed files with 7 additions and 2 deletions

View file

@ -21,6 +21,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Fixes
- Update SDK to fix a crash on startup due to a test on a removed participant device.
- Use default values for new accounts in settings panel.
### Added
- Add 'sip' scheme in authentication popup.
## 4.4.8 - 2022-07-05
### Fixes

View file

@ -133,7 +133,7 @@ function handleAuthenticationRequested (authInfo, realm, sipAddress, userId) {
window.attachVirtualWindow(Qt.resolvedUrl('Dialogs/AuthenticationRequest.qml'), {
authInfo: authInfo,
realm: realm,
sipAddress: sipAddress,
sipAddress: 'sip:'+sipAddress,
userId: userId,
virtualWindowHash:Qt.md5('Dialogs/AuthenticationRequest.qml'+realm+sipAddress+userId)
})

View file

@ -34,7 +34,7 @@ function initForm (account) {
proxyConfig = account
? account.proxyConfig
: AccountSettingsModel.createProxyConfig()
: AccountSettingsModel.createProxyConfig('create-app-sip-account.rc')
var config = AccountSettingsModel.getProxyConfigDescription(proxyConfig)