1
0
mirror of https://github.com/QRouland/UTPass.git synced 2025-06-24 22:42:28 +00:00

First draft Rewrite get all key with rnp

This commit is contained in:
2025-01-30 16:25:29 +01:00
parent 2c9d82e0b1
commit 4bec3dcbc9
25 changed files with 558 additions and 122 deletions

View File

@ -29,7 +29,6 @@ Page {
anchors.rightMargin: units.gu(2)
spacing: units.gu(1)
Rectangle {
width: parent.width
height: units.gu(1)

View File

@ -8,6 +8,7 @@ import QtQuick 2.4
Page {
id: infoKeysPage
property list<QtObject> __keys
property QtObject __currentKey
@ -15,7 +16,7 @@ Page {
Pass.getAllGPGKeysSucceed.connect(function(keys_info) {
infoKeysPage.__keys = keys_info;
for (var i = 0; i < keys_info.length; ++i) {
console.debug("is secret " + keys_info[i].isSecret)
console.debug("is secret " + keys_info[i].isSecret);
}
});
Pass.getAllGPGKeysFailed.connect(function(message) {
@ -108,7 +109,6 @@ Page {
userIdsModel.append({
"model": model.modelData.userIds[i]
});
}
}
}