diff options
author | Ingo Klöcker <[email protected]> | 2024-08-06 14:57:14 +0000 |
---|---|---|
committer | Ingo Klöcker <[email protected]> | 2024-08-07 08:53:21 +0000 |
commit | 63822343dfaac8b638ef475d441c4379da3a9804 (patch) | |
tree | a72fc7cdfea56eed20c09aadc1ab31ac755edbcc /NEWS | |
parent | cpp: Add support for setting owner trust and for disabling keys (diff) | |
download | gpgme-63822343dfaac8b638ef475d441c4379da3a9804.tar.gz gpgme-63822343dfaac8b638ef475d441c4379da3a9804.zip |
qt: Support disabling and enabling of keys
* lang/qt/src/Makefile.am: Add new files.
* lang/qt/src/job.cpp (QuickJob): Move definition of constructor and
destructor and inclusion of the moc file to quickjob.cpp.
* lang/qt/src/qgpgmequickjob.cpp (class QGpgMEQuickJobPrivate): New.
(QGpgMEQuickJob::QGpgMEQuickJob): Instantiate private job class.
(set_key_enabled): New.
* lang/qt/src/quickjob.cpp: New.
* lang/qt/src/quickjob.h (class QuickJob): Add member function
startSetKeyEnabled.
* lang/qt/src/quickjob_p.h: New.
* lang/qt/tests/Makefile.am: Add new test for Qt 5 and Qt 6.
* lang/qt/tests/t-disablekey.cpp: New.
--
GnuPG-bug-id: 7239
Diffstat (limited to '')
-rw-r--r-- | NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -38,6 +38,8 @@ Noteworthy changes in version 1.24.0 (unrelease) * qt: Allow appending a detached signature to an existing file. [T6867] + * qt: Add support for enabling and disabling keys. [T7239] + * Interface changes relative to the 1.23.2 release: ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ GPGME_ENCRYPT_FILE NEW. @@ -101,6 +103,7 @@ Noteworthy changes in version 1.24.0 (unrelease) qt: VerifyOpaqueJob::outputFile NEW. qt: ImportJob::setImportOptions NEW. qt: ImportJob::importOptions NEW. + qt: QuickJob::startSetKeyEnabled NEW. Noteworthy changes in version 1.23.2 (2023-11-28) |