keepassxc/src/cli
Carlo Teubner 88b76244cf
Fix all Qt 5.15 deprecation warnings (#7783)
* Deprecated qSort() -> std::sort()
* Replace QDateTime::toString(Qt::DefaultLocaleShortDate) with Clock::toString()
* Replace QDateTime::toString(Qt::SystemLocaleShortDate) with QLocale::system().toString(..., QLocale::ShortFormat)
* Use QDateTime::startOfDay() instead of QDate(QDateTime) 
  Note: QDateTime::startOfDay() is only available in Qt 5.14, we need to guard it
* Replace QString::SkipEmptyParts with Qt::SkipEmptyParts
  Note: Its designated replacement, Qt::SplitBehavior, was only added in Qt 5.14.
* Don't call deprecated QFlags(nullptr) constructor
* QSet::{toList->values}
* Replace QList::toSet, QSet::fromList with Tools::asSet()
* QHash::insertMulti -> QMultiHash::insert
* QProcess::startDetached: non-deprecated overload
* QProcess::{pid->processId}
* QPainter::{HighQuality->}Antialiasing
* QPalette::{background->window}()
* Use Qt::{Background,Foreground}Role
* endl -> Qt::endl, flush -> Qt::flush
* Make YubiKey::s_interfaceMutex non-recursive
* OpenSSHKeyGenDialog: use non-deprecated QComboBox::sizeAdjustPolicy setting
2024-06-22 07:22:44 -04:00
..
Add.cpp Fix all Qt 5.15 deprecation warnings (#7783) 2024-06-22 07:22:44 -04:00
Add.h Cleanup CLI includes across all components 2021-04-25 07:38:21 -04:00
AddGroup.cpp Fix all Qt 5.15 deprecation warnings (#7783) 2024-06-22 07:22:44 -04:00
AddGroup.h clang-tidy: use override 2022-05-01 16:01:31 -04:00
Analyze.cpp Fix all Qt 5.15 deprecation warnings (#7783) 2024-06-22 07:22:44 -04:00
Analyze.h Cleanup CLI includes across all components 2021-04-25 07:38:21 -04:00
AttachmentExport.cpp Fix all Qt 5.15 deprecation warnings (#7783) 2024-06-22 07:22:44 -04:00
AttachmentExport.h CLI: Add commands to handle attachments 2021-11-07 17:27:16 -05:00
AttachmentImport.cpp Fix all Qt 5.15 deprecation warnings (#7783) 2024-06-22 07:22:44 -04:00
AttachmentImport.h CLI: Add commands to handle attachments 2021-11-07 17:27:16 -05:00
AttachmentRemove.cpp Fix all Qt 5.15 deprecation warnings (#7783) 2024-06-22 07:22:44 -04:00
AttachmentRemove.h CLI: Add commands to handle attachments 2021-11-07 17:27:16 -05:00
Clip.cpp Fix all Qt 5.15 deprecation warnings (#7783) 2024-06-22 07:22:44 -04:00
Clip.h Add a best option to CLI command clip (#4489) 2020-08-31 23:06:27 -04:00
Close.cpp Cleanup CLI includes across all components 2021-04-25 07:38:21 -04:00
Close.h Optimize includes across code base 2021-07-13 22:08:33 -04:00
CMakeLists.txt Fix broken build when using system zxcvbn (#10717) 2024-05-27 15:11:34 -04:00
Command.cpp clang-tidy: use = default (#7999) 2023-01-29 15:47:13 -05:00
Command.h Optimize includes across code base 2021-07-13 22:08:33 -04:00
DatabaseCommand.cpp Optimize includes across code base 2021-07-13 22:08:33 -04:00
DatabaseCommand.h Cleanup CLI includes across all components 2021-04-25 07:38:21 -04:00
DatabaseCreate.cpp Fix all Qt 5.15 deprecation warnings (#7783) 2024-06-22 07:22:44 -04:00
DatabaseCreate.h [CLI] Add a db-edit command (#8400) 2022-10-05 07:30:15 -04:00
DatabaseEdit.cpp Fix all Qt 5.15 deprecation warnings (#7783) 2024-06-22 07:22:44 -04:00
DatabaseEdit.h [CLI] Add a db-edit command (#8400) 2022-10-05 07:30:15 -04:00
DatabaseInfo.cpp Fix all Qt 5.15 deprecation warnings (#7783) 2024-06-22 07:22:44 -04:00
DatabaseInfo.h [CLI] Add a db-edit command (#8400) 2022-10-05 07:30:15 -04:00
Diceware.cpp Fix all Qt 5.15 deprecation warnings (#7783) 2024-06-22 07:22:44 -04:00
Diceware.h Clean up code (#3431) 2019-08-19 21:19:32 +02:00
Edit.cpp Fix all Qt 5.15 deprecation warnings (#7783) 2024-06-22 07:22:44 -04:00
Edit.h Clean up code (#3431) 2019-08-19 21:19:32 +02:00
Estimate.cpp Fix all Qt 5.15 deprecation warnings (#7783) 2024-06-22 07:22:44 -04:00
Estimate.h Clean up code (#3431) 2019-08-19 21:19:32 +02:00
Exit.cpp Cleanup CLI includes across all components 2021-04-25 07:38:21 -04:00
Exit.h Optimize includes across code base 2021-07-13 22:08:33 -04:00
Export.cpp Fix all Qt 5.15 deprecation warnings (#7783) 2024-06-22 07:22:44 -04:00
Export.h CLI: Export database as CSV 2019-09-22 12:42:53 -04:00
Generate.cpp Fix all Qt 5.15 deprecation warnings (#7783) 2024-06-22 07:22:44 -04:00
Generate.h Add -i/--include option to "generate" CLI command. (#7112) 2021-12-07 23:40:09 -05:00
Help.cpp Cleanup CLI includes across all components 2021-04-25 07:38:21 -04:00
Help.h CLI: Add interactive session mode command open 2019-09-28 11:24:42 -04:00
Import.cpp Fix all Qt 5.15 deprecation warnings (#7783) 2024-06-22 07:22:44 -04:00
Import.h CLI: Add Import XML command (#3572) 2019-10-15 22:10:45 -04:00
keepassxc-cli.cpp Fix all Qt 5.15 deprecation warnings (#7783) 2024-06-22 07:22:44 -04:00
keepassxc-cli.exe.manifest CLI: Add Unicode support on Windows (#8618) 2022-10-29 08:07:31 -04:00
List.cpp Fix all Qt 5.15 deprecation warnings (#7783) 2024-06-22 07:22:44 -04:00
List.h Clean up code (#3431) 2019-08-19 21:19:32 +02:00
Merge.cpp Fix all Qt 5.15 deprecation warnings (#7783) 2024-06-22 07:22:44 -04:00
Merge.h CLI: Add Yubikey unlock support 2019-09-22 18:11:40 -04:00
Move.cpp Fix all Qt 5.15 deprecation warnings (#7783) 2024-06-22 07:22:44 -04:00
Move.h clang-tidy: use override 2022-05-01 16:01:31 -04:00
Open.cpp Optimize includes across code base 2021-07-13 22:08:33 -04:00
Open.h CLI: Add interactive session mode command open 2019-09-28 11:24:42 -04:00
Remove.cpp Fix all Qt 5.15 deprecation warnings (#7783) 2024-06-22 07:22:44 -04:00
Remove.h clang-tidy: use override 2022-05-01 16:01:31 -04:00
RemoveGroup.cpp Fix all Qt 5.15 deprecation warnings (#7783) 2024-06-22 07:22:44 -04:00
RemoveGroup.h clang-tidy: use override 2022-05-01 16:01:31 -04:00
Search.cpp Fix all Qt 5.15 deprecation warnings (#7783) 2024-06-22 07:22:44 -04:00
Search.h CLI: Replace locate command with search 2021-08-22 19:23:16 -04:00
Show.cpp Fix all Qt 5.15 deprecation warnings (#7783) 2024-06-22 07:22:44 -04:00
Show.h [CLI] Add Option to show all attributes (Show command) (#8256) 2022-08-20 22:38:58 -04:00
TextStream.cpp Add support for Microsoft Visual Studio buildchain 2021-09-19 17:16:45 -04:00
TextStream.h CLI: Fix XML encoding when export database 2020-01-29 20:51:53 -05:00
Utils.cpp Fix all Qt 5.15 deprecation warnings (#7783) 2024-06-22 07:22:44 -04:00
Utils.h Adding top-level fields to CLI commands 2022-08-20 18:31:30 -04:00