mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-07-22 14:10:54 -04:00
Qml app improved trusted nodes exchange
AddTrustedNode.qml support for plain certificate and node link import/export Move clipboard wrapper to it's own singleton ClipboardWrapper.qml with improved clipboard API
This commit is contained in:
parent
5c1ad36d2b
commit
7b070e482d
9 changed files with 141 additions and 62 deletions
|
@ -57,7 +57,7 @@ Item
|
|||
rsApi.request(
|
||||
"/control/create_location/",
|
||||
JSON.stringify(jsonData))
|
||||
mainWindow.pgp_name = login
|
||||
mainWindow.user_name = login
|
||||
locationView.state = "selectLocation"
|
||||
bottomButton.enabled = false
|
||||
bottomButton.text = "Creating profile..."
|
||||
|
@ -95,7 +95,7 @@ Item
|
|||
// There is only one location so we can jump selecting location
|
||||
var location = jsonData[0]
|
||||
loginView.login = location.name
|
||||
mainWindow.pgp_name = location.name
|
||||
mainWindow.user_name = location.name
|
||||
locationView.sslid = location.peer_id
|
||||
locationView.state = "login"
|
||||
}
|
||||
|
@ -136,7 +136,7 @@ Item
|
|||
loginView.login = text
|
||||
locationView.sslid = model.id
|
||||
locationView.state = "login"
|
||||
mainWindow.pgp_name = model.name
|
||||
mainWindow.user_name = model.name
|
||||
}
|
||||
}
|
||||
visible: false
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue