mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-05 05:27:39 +03:00
Add --username option to Clip command. (#3947)
* make Clip accept an attribute name This allows users to copy arbitrary attributes (e.g. username, notes, URL) to the clipboard in addition to the password and TOTP values. * update Clip manpage * Add findAttributes to CLI utils * Use case-insensitive search in Show command. * Use case-insensitive search in Clip command. Co-authored-by: louib <L0U13@protonmail.com>
This commit is contained in:
parent
06e0f38523
commit
71a39c37ec
8 changed files with 135 additions and 26 deletions
|
@ -331,4 +331,21 @@ namespace Utils
|
|||
return result;
|
||||
}
|
||||
|
||||
QStringList findAttributes(const EntryAttributes& attributes, const QString& name)
|
||||
{
|
||||
QStringList result;
|
||||
if (attributes.hasKey(name)) {
|
||||
result.append(name);
|
||||
return result;
|
||||
}
|
||||
|
||||
for (const QString& key : attributes.keys()) {
|
||||
if (key.compare(name, Qt::CaseSensitivity::CaseInsensitive) == 0) {
|
||||
result.append(key);
|
||||
}
|
||||
}
|
||||
|
||||
return result;
|
||||
}
|
||||
|
||||
} // namespace Utils
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue