mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2026-01-14 06:51:09 -05:00
CLI Improvements
* Fix #6001 - only use `--notes` in Add/Edit commands to prevent clash with password generator option `-n`. * Fix #6119 - Send Unicode to clip command; Windows only understands UTF-16 encoding. * Fix #6128 - `clip` command will default to clearing the clipboard after 10 seconds. To disable clearing set timeout to 0.
This commit is contained in:
parent
be3e77d721
commit
8a7be101e4
6 changed files with 52 additions and 47 deletions
|
|
@ -30,10 +30,8 @@ const QCommandLineOption Add::UsernameOption = QCommandLineOption(QStringList()
|
|||
const QCommandLineOption Add::UrlOption =
|
||||
QCommandLineOption(QStringList() << "url", QObject::tr("URL for the entry."), QObject::tr("URL"));
|
||||
|
||||
const QCommandLineOption Add::NotesOption = QCommandLineOption(QStringList() << "n"
|
||||
<< "notes",
|
||||
QObject::tr("Notes for the entry."),
|
||||
QObject::tr("Notes"));
|
||||
const QCommandLineOption Add::NotesOption =
|
||||
QCommandLineOption(QStringList() << "notes", QObject::tr("Notes for the entry."), QObject::tr("Notes"));
|
||||
|
||||
const QCommandLineOption Add::PasswordPromptOption =
|
||||
QCommandLineOption(QStringList() << "p"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue