Page MenuHome GnuPG
Feed All Stories

Apr 13 2024

l10n daemon script <scripty@kde.org> committed rMTP2666389fd573: GIT_SILENT Sync po/docbooks with svn (authored by l10n daemon script <scripty@kde.org>).
GIT_SILENT Sync po/docbooks with svn
Apr 13 2024, 5:18 AM
l10n daemon script <scripty@kde.org> committed rLIBKLEO4c4265809bf6: GIT_SILENT Sync po/docbooks with svn (authored by l10n daemon script <scripty@kde.org>).
GIT_SILENT Sync po/docbooks with svn
Apr 13 2024, 5:18 AM
l10n daemon script <scripty@kde.org> committed rKLEOPATRA292121845dbc: GIT_SILENT Sync po/docbooks with svn (authored by l10n daemon script <scripty@kde.org>).
GIT_SILENT Sync po/docbooks with svn
Apr 13 2024, 5:17 AM
l10n daemon script <scripty@kde.org> committed rLIBKLEO18e9bdc53e15: GIT_SILENT Sync po/docbooks with svn (authored by l10n daemon script <scripty@kde.org>).
GIT_SILENT Sync po/docbooks with svn
Apr 13 2024, 3:28 AM
l10n daemon script <scripty@kde.org> committed rMTP989a66ea9d24: GIT_SILENT Sync po/docbooks with svn (authored by l10n daemon script <scripty@kde.org>).
GIT_SILENT Sync po/docbooks with svn
Apr 13 2024, 3:28 AM
l10n daemon script <scripty@kde.org> committed rKLEOPATRA8c4dbc53f0f1: GIT_SILENT Sync po/docbooks with svn (authored by l10n daemon script <scripty@kde.org>).
GIT_SILENT Sync po/docbooks with svn
Apr 13 2024, 3:27 AM

Apr 12 2024

werner committed rE0a39fbefcb55: logging: Add a truncate keyword to log_printhex. (authored by werner).
logging: Add a truncate keyword to log_printhex.
Apr 12 2024, 3:33 PM
mwalle added a comment to T7058: KDF-DO is not properly implemented.

FWIW, I've tested this patch and it works fine with both KDF as a constructed tag and as a primitive tag.

Apr 12 2024, 2:30 PM · scd, gnupg, Bug Report
ebo added a comment to T7086: Kleopatra: wrong protocol certificates not deselected after protocoll switch in notepad.

may be related to https://dev.gnupg.org/T5957#163468

Apr 12 2024, 1:28 PM · gpd5x, kleopatra
TobiasFella committed rKLEOPATRA893a9d09e5ef: Don't use Checkboxes to configure signing and encryption in SignEncryptWidget (authored by TobiasFella).
Don't use Checkboxes to configure signing and encryption in SignEncryptWidget
Apr 12 2024, 1:01 PM
ebo created T7086: Kleopatra: wrong protocol certificates not deselected after protocoll switch in notepad.
Apr 12 2024, 11:34 AM · gpd5x, kleopatra
werner committed rGb48476bbefa7: gpg: Prepare to use the fingerprint as fixed-info for Kyber. (authored by werner).
gpg: Prepare to use the fingerprint as fixed-info for Kyber.
Apr 12 2024, 11:34 AM
werner committed rG6f94fe01a9e1: gpg: Simplify the pk_encrypt function interface. (authored by werner).
gpg: Simplify the pk_encrypt function interface.
Apr 12 2024, 11:34 AM
gniibe added a comment to T7058: KDF-DO is not properly implemented.

I'm considering applying the following patch. With this change, scdaemon will works well with a card implementation which consider F9 (wrongly) as primitive data object, as well as correct card implementation.

diff --git a/scd/app-openpgp.c b/scd/app-openpgp.c
index 26ac91ea2..09223ce33 100644
--- a/scd/app-openpgp.c
+++ b/scd/app-openpgp.c
@@ -410,6 +410,10 @@ get_cached_data (app_t app, int tag,
   size_t len;
   struct cache_s *c;
   int exmode;
+  int do_constructed = 0;
+
+  if ((tag < 0x0100 && (tag & 0x20)) || (tag >= 0x0100 && (tag & 0x2000)))
+    do_constructed = 1;
Apr 12 2024, 9:01 AM · scd, gnupg, Bug Report
gniibe added a comment to T7085: libgcrypt: New functions to support waiting time.

API which does not require allocation internally would be better. In this case, it is allocated on stack by the caller.

Apr 12 2024, 8:07 AM · libgcrypt
l10n daemon script <scripty@kde.org> committed rMTP6069e74ba2d9: GIT_SILENT Sync po/docbooks with svn (authored by l10n daemon script <scripty@kde.org>).
GIT_SILENT Sync po/docbooks with svn
Apr 12 2024, 5:16 AM
l10n daemon script <scripty@kde.org> committed rLIBKLEOc32f635aae8a: GIT_SILENT Sync po/docbooks with svn (authored by l10n daemon script <scripty@kde.org>).
GIT_SILENT Sync po/docbooks with svn
Apr 12 2024, 5:16 AM
l10n daemon script <scripty@kde.org> committed rKLEOPATRAd92fdadc1c66: GIT_SILENT Sync po/docbooks with svn (authored by l10n daemon script <scripty@kde.org>).
GIT_SILENT Sync po/docbooks with svn
Apr 12 2024, 5:16 AM
gniibe added a comment to T7085: libgcrypt: New functions to support waiting time.

I mean, something like this (for GNU/Linux):

diff --git a/src/misc.c b/src/misc.c
index 4db2d9a4..74864334 100644
--- a/src/misc.c
+++ b/src/misc.c
@@ -577,3 +577,80 @@ _gcry_divide_by_zero (void)
     gpg_err_set_errno (EDOM);
     _gcry_fatal_error (gpg_err_code_from_errno (errno), "divide by zero");
 }
+
+#ifdef HAVE_CLOCK_GETTIME
+#include <time.h>
+# if defined(CLOCK_THREAD_CPUTIME_ID) && defined(CLOCK_TAI)
+struct gcry_timedwait
+{
+  struct timespec ts;
+};
+
+typedef struct gcry_timedwait *gcry_timedwait_t;
+
+gcry_err_code_t
+_gcry_timedwait_new (gcry_timedwait_t *r_tw, unsigned int flags)
+{
+  gcry_err_code_t err;
+  gcry_timedwait_t tw;
+
+  *r_tw = NULL;
+
+  /* Possibly, it would be good to be able to select the wall clock.
+   * For now, it's CPU time by the thread.  */
+  if (flags != 0)
+    return GPG_ERR_INV_ARG;
+
+  tw = xtrymalloc (sizeof (gcry_timedwait_t));
+  if (!tw)
+    return gpg_err_code_from_syserror ();
+
+  if (clock_gettime (CLOCK_THREAD_CPUTIME_ID, &tw->ts) < 0)
+    {
+      err = gpg_err_code_from_syserror ();
+      xfree (tw);
+      return err;
+    }
+
+  *r_tw = tw;
+  return 0;
+}
+
+gcry_err_code_t
+_gcry_timedwait_release (gcry_timedwait_t tw, struct timespec ts_r)
+{
+  gcry_err_code_t err;
+  struct timespec ts;
+  u32 negative;
+
+  if (clock_gettime (CLOCK_THREAD_CPUTIME_ID, &ts) < 0)
+    {
+      err = gpg_err_code_from_syserror ();
+      xfree (tw);
+      return err;
+    }
+
+  ts.tv_sec -= tw->ts.tv_sec;
+  ts.tv_nsec -= tw->ts.tv_nsec;
+  negative = ((u32)ts.tv_nsec) >> 31;
+  ts.tv_sec -= negative;
+  ts.tv_nsec += (1000000000 * negative);
+
+  xfree (tw);
+
+  ts_r.tv_sec -= ts.tv_sec;
+  ts_r.tv_nsec -= ts.tv_nsec;
+  negative = ((u32)ts_r.tv_nsec) >> 31;
+  ts_r.tv_sec -= negative;
+  ts_r.tv_nsec += (1000000000 * negative);
+
+  if (ts_r.tv_sec < 0)
+    return GPG_ERR_TIME_CONFLICT;
+
+  if (clock_nanosleep (CLOCK_TAI, 0, &ts_r, &ts_r))
+    return gpg_err_code_from_syserror ();
+
+  return 0;
+}
+# endif
+#endif
Apr 12 2024, 5:07 AM · libgcrypt
gniibe triaged T7085: libgcrypt: New functions to support waiting time as Wishlist priority.
Apr 12 2024, 5:04 AM · libgcrypt
l10n daemon script <scripty@kde.org> committed rLIBKLEO149b64ac9867: GIT_SILENT Sync po/docbooks with svn (authored by l10n daemon script <scripty@kde.org>).
GIT_SILENT Sync po/docbooks with svn
Apr 12 2024, 3:26 AM
l10n daemon script <scripty@kde.org> committed rMTPfc08c7e1c8ba: GIT_SILENT Sync po/docbooks with svn (authored by l10n daemon script <scripty@kde.org>).
GIT_SILENT Sync po/docbooks with svn
Apr 12 2024, 3:25 AM
l10n daemon script <scripty@kde.org> committed rKLEOPATRA171a89269178: GIT_SILENT Sync po/docbooks with svn (authored by l10n daemon script <scripty@kde.org>).
GIT_SILENT Sync po/docbooks with svn
Apr 12 2024, 3:24 AM

Apr 11 2024

mlaurent committed rMTP8de22bb64ae4: GIT_SILENT: It compiles fine without deprecated methods (authored by mlaurent).
GIT_SILENT: It compiles fine without deprecated methods
Apr 11 2024, 8:39 PM
mlaurent committed rKLEOPATRAd8786d87c5d6: GIT_SILENT: It compiles fine without deprecated methods (authored by mlaurent).
GIT_SILENT: It compiles fine without deprecated methods
Apr 11 2024, 8:37 PM
werner moved T6575: gpgtar: General Error is emitted instead of more specific error codes from WiP to gpgme 1.23.x on the gpgme board.
Apr 11 2024, 4:23 PM · gpgme (gpgme 1.23.x), vsd32 (vsd-3.2.0), Restricted Project
werner lowered the priority of T7084: gpgme sometimes keeps on polling from Normal to Low.
Apr 11 2024, 4:22 PM · gpgme
werner closed T6575: gpgtar: General Error is emitted instead of more specific error codes as Resolved.
Apr 11 2024, 4:21 PM · gpgme (gpgme 1.23.x), vsd32 (vsd-3.2.0), Restricted Project
werner triaged T7084: gpgme sometimes keeps on polling as Normal priority.
Apr 11 2024, 4:20 PM · gpgme
werner committed rG61717fb0a775: agent: Add more diagnostics to PQC decryption. (authored by werner).
agent: Add more diagnostics to PQC decryption.
Apr 11 2024, 4:01 PM
werner committed rG813f8d1b8e4b: gpg: Changed internal data format for Kyber. (authored by werner).
gpg: Changed internal data format for Kyber.
Apr 11 2024, 4:01 PM
werner added a comment to T6815: PQC encryption for GnuPG.

Wit the test keys posted in T7014 it is now possible to decrypt the sample data. The test data has been slightly adjusted for the new format; see

for a hex dump and for the binary version.

Apr 11 2024, 4:00 PM · gnupg26, OpenPGP, PQC, gnupg
bernhard added a comment to T7081: Kmail 6: configuration trouble.

This is a KDE bug and not really appropriate for this tracker.

Apr 11 2024, 3:29 PM · KMail
ebo added a comment to T7078: Kleopatra: Add automatic offer of revocation certificate export to the revocation process.

Alexander suggested that we could avoid another window by putting check boxes in the revocation window for automatically uploading to the configured keyserver and creating a public key export with the revocation. That could then be configurable via the registry on windows, so that companies could adapt that according to their SOP.

Apr 11 2024, 3:22 PM · vsd33, Restricted Project, kleopatra
aheinecke added a comment to T6813: GpgOL: Key generation window does not close.
In T6813#184976, @ebo wrote:

Works on Gpg4win 4.3.1, too.

But noticed an inconsistency for the key creation via GpgOL: Contrary to the behavior for key creation in Kleopatra in Gpg4win, you are asked for a password for the new key.

Apr 11 2024, 3:11 PM · vsd32 (vsd-3.2.0), gpgol, libkleo, Restricted Project
ebo closed T6813: GpgOL: Key generation window does not close as Resolved.
Apr 11 2024, 2:39 PM · vsd32 (vsd-3.2.0), gpgol, libkleo, Restricted Project
ebo moved T6813: GpgOL: Key generation window does not close from Restricted Project Column to Restricted Project Column on the Restricted Project board.
Apr 11 2024, 2:39 PM · vsd32 (vsd-3.2.0), gpgol, libkleo, Restricted Project
ebo added a comment to T6813: GpgOL: Key generation window does not close.

Works on Gpg4win 4.3.1, too.

Apr 11 2024, 2:33 PM · vsd32 (vsd-3.2.0), gpgol, libkleo, Restricted Project
mlaurent committed rLIBKLEO827e67a1209d: Use QT_REQUIRED_VERSION (authored by mlaurent).
Use QT_REQUIRED_VERSION
Apr 11 2024, 1:34 PM
TobiasFella moved T6299: Kleopatra: Updating key does results in "not changed" instead of "not found" from Restricted Project Column to Restricted Project Column on the Restricted Project board.
Apr 11 2024, 1:15 PM · kleopatra, Restricted Project
TobiasFella claimed T6299: Kleopatra: Updating key does results in "not changed" instead of "not found".
Apr 11 2024, 1:15 PM · kleopatra, Restricted Project
TobiasFella added a reverting change for rKLEOPATRAe96e8ae65345: Remove UI for adding a reason: rKLEOPATRA851a518c2dcb: Revert "Remove UI for adding a reason".
Apr 11 2024, 12:10 PM
TobiasFella committed rKLEOPATRA851a518c2dcb: Revert "Remove UI for adding a reason" (authored by TobiasFella).
Revert "Remove UI for adding a reason"
Apr 11 2024, 12:10 PM
TobiasFella committed rKLEOPATRAa8675e49fec7: Change some strings (authored by TobiasFella).
Change some strings
Apr 11 2024, 12:10 PM
TobiasFella committed rKLEOPATRA2f182c45ee85: Show nicer error messages when refreshing a key and (authored by TobiasFella).
Show nicer error messages when refreshing a key and
Apr 11 2024, 11:49 AM
werner added a parent task for T7083: Show revocation reasons also with a standard -k listing: T7078: Kleopatra: Add automatic offer of revocation certificate export to the revocation process.
Apr 11 2024, 11:42 AM · OpenPGP, Feature Request, gnupg26
werner added a subtask for T7078: Kleopatra: Add automatic offer of revocation certificate export to the revocation process: T7083: Show revocation reasons also with a standard -k listing.
Apr 11 2024, 11:42 AM · vsd33, Restricted Project, kleopatra
werner triaged T7083: Show revocation reasons also with a standard -k listing as Normal priority.
Apr 11 2024, 11:41 AM · OpenPGP, Feature Request, gnupg26
ebo added a comment to T7078: Kleopatra: Add automatic offer of revocation certificate export to the revocation process.

That said I think we should then strive to use only one "next" window.

Apr 11 2024, 11:36 AM · vsd33, Restricted Project, kleopatra
werner committed rG869d1df270c0: indent: Re-indent a function (authored by werner).
indent: Re-indent a function
Apr 11 2024, 11:33 AM
werner added a comment to T7078: Kleopatra: Add automatic offer of revocation certificate export to the revocation process.

Revocations are an exceptional task and rarely needed. In this case ("help, help , my key is compromised, what shall I do now?") an extra dialog to help the user is imho appropriate. This different for the key generation process, becuase this needs to be done by every user at least once and thus should be UI-wise as simple as possible.

Apr 11 2024, 11:15 AM · vsd33, Restricted Project, kleopatra
werner triaged T7081: Kmail 6: configuration trouble as Low priority.

This is a KDE bug and not really appropriate for this tracker.

Apr 11 2024, 10:34 AM · KMail
werner placed T7081: Kmail 6: configuration trouble up for grabs.
Apr 11 2024, 10:32 AM · KMail
TobiasFella committed rKLEOPATRAe96e8ae65345: Remove UI for adding a reason (authored by TobiasFella).
Remove UI for adding a reason
Apr 11 2024, 9:52 AM
TobiasFella committed rKLEOPATRAc6d03be1b9d1: Use active form (authored by TobiasFella).
Use active form
Apr 11 2024, 9:52 AM
TobiasFella committed rKLEOPATRAf01e0342913f: Add more spacing (authored by TobiasFella).
Add more spacing
Apr 11 2024, 9:52 AM
TobiasFella committed rKLEOPATRA114be49a50c7: Improve text (authored by TobiasFella).
Improve text
Apr 11 2024, 9:52 AM
TobiasFella committed rKLEOPATRA033e839bcaa3: Make groupboxes frameless (authored by TobiasFella).
Make groupboxes frameless
Apr 11 2024, 9:52 AM
TobiasFella committed rKLEOPATRA7c99911e038a: Indent certificate (authored by TobiasFella).
Indent certificate
Apr 11 2024, 9:52 AM
TobiasFella committed rKLEOPATRA9abb4d4f5a62: Improve revocation dialog (authored by TobiasFella).
Improve revocation dialog
Apr 11 2024, 9:52 AM
TobiasFella committed rKLEOPATRA4a3990f2bde9: Use strong emphasis (authored by TobiasFella).
Use strong emphasis
Apr 11 2024, 9:52 AM
TobiasFella committed rKLEOPATRAf6998e7f40cf: Make sure that users can't attempt to create a certificate expiring today (authored by TobiasFella).
Make sure that users can't attempt to create a certificate expiring today
Apr 11 2024, 9:16 AM
gniibe committed rG172d53d63689: agent: Fix PQC decryption. (authored by gniibe).
agent: Fix PQC decryption.
Apr 11 2024, 8:30 AM
gniibe committed rGf2fd4f1a9eaf: agent: Rename the function using the word "composite" (authored by gniibe).
agent: Rename the function using the word "composite"
Apr 11 2024, 8:30 AM
werner committed rG6737e07a9b04: doc: Move keyformat.txt to here. (authored by werner).
doc: Move keyformat.txt to here.
Apr 11 2024, 8:27 AM
gniibe added a comment to T7014: agent: Enhancement of PKDECRYPT for KEM interface.

I had wrong interpretation about symmetric cipher algorithm identifier in the draft. It specifies symmetric cipher for the following Symmetrically Encrypted Data Packet (I was wrongly interpret as if it were specifying algo for AES keywrap).

Apr 11 2024, 8:21 AM · gnupg26, gpgagent, Feature Request
werner committed rG87025e5da6c4: doc: Fix a few typos in agent/keyformat.txt (authored by Todd Zullinger via Gnupg-devel <gnupg-devel@gnupg.org>).
doc: Fix a few typos in agent/keyformat.txt
Apr 11 2024, 8:18 AM
werner committed rG84ddb24e30c5: gpg: Make Kyber creation more flexible. (authored by werner).
gpg: Make Kyber creation more flexible.
Apr 11 2024, 8:18 AM
l10n daemon script <scripty@kde.org> committed rMTP44a925b60517: GIT_SILENT Sync po/docbooks with svn (authored by l10n daemon script <scripty@kde.org>).
GIT_SILENT Sync po/docbooks with svn
Apr 11 2024, 5:17 AM
l10n daemon script <scripty@kde.org> committed rLIBKLEO2bc147b56b51: GIT_SILENT Sync po/docbooks with svn (authored by l10n daemon script <scripty@kde.org>).
GIT_SILENT Sync po/docbooks with svn
Apr 11 2024, 5:17 AM
l10n daemon script <scripty@kde.org> committed rKLEOPATRAadac1bffbd24: GIT_SILENT Sync po/docbooks with svn (authored by l10n daemon script <scripty@kde.org>).
GIT_SILENT Sync po/docbooks with svn
Apr 11 2024, 5:17 AM
l10n daemon script <scripty@kde.org> committed rMTPe2c3cfef93bb: GIT_SILENT Sync po/docbooks with svn (authored by l10n daemon script <scripty@kde.org>).
GIT_SILENT Sync po/docbooks with svn
Apr 11 2024, 3:27 AM
l10n daemon script <scripty@kde.org> committed rLIBKLEO9184bb92778f: GIT_SILENT Sync po/docbooks with svn (authored by l10n daemon script <scripty@kde.org>).
GIT_SILENT Sync po/docbooks with svn
Apr 11 2024, 3:26 AM
l10n daemon script <scripty@kde.org> committed rKLEOPATRAb7391c749a9f: GIT_SILENT Sync po/docbooks with svn (authored by l10n daemon script <scripty@kde.org>).
GIT_SILENT Sync po/docbooks with svn
Apr 11 2024, 3:25 AM

Apr 10 2024

bryonbaker added a comment to T7074: gpg fails with error if you delete the ~/.gnupg directory.

@werner I- think you were a bit quick on the trigger to shut this down.
I had rebooted the machine in between attempts. So your analysis is actually not correct.
Basically you have an issue that something in gpg is using something in a locale that is not installed. I pretty much proved that.
Anywho, I'll leave it to you to work out if you want to bother investigating it further.

Apr 10 2024, 10:58 PM · Support, gnupg
TobiasFella committed rKLEOPATRA024d38f86c40: Remove UI for adding a reason (authored by TobiasFella).
Remove UI for adding a reason
Apr 10 2024, 5:07 PM
TobiasFella moved T6091: Kleopatra: "Cancel" in the password dialog of "Print secret key" has no effect from Restricted Project Column to Restricted Project Column on the Restricted Project board.
Apr 10 2024, 4:49 PM · vsd33 (vsd-3.3.0), kleopatra, Restricted Project
TobiasFella claimed T6091: Kleopatra: "Cancel" in the password dialog of "Print secret key" has no effect.
Apr 10 2024, 4:49 PM · vsd33 (vsd-3.3.0), kleopatra, Restricted Project
TobiasFella committed rKLEOPATRAb4b995d59e3c: Port paperkey command away from GnuPGProcessCommand (authored by TobiasFella).
Port paperkey command away from GnuPGProcessCommand
Apr 10 2024, 4:48 PM
ikloecker added a comment to T6527: Kleopatra: remove "Today" from the choice of expiry dates for key generation.

"Today" was already removed together with other changes for T6621: Kleopatra: Remove "in n days/weeks/months/years" input from Change Validity Period dialog.

Apr 10 2024, 3:55 PM · vsd33 (vsd-3.3.0), Restricted Project, Feature Request, kleopatra
TobiasFella claimed T6527: Kleopatra: remove "Today" from the choice of expiry dates for key generation.
Apr 10 2024, 3:04 PM · vsd33 (vsd-3.3.0), Restricted Project, Feature Request, kleopatra
TobiasFella committed rKLEOPATRAfcf9eb93f495: Make sure that users can't attempt to create a certificate expiring today (authored by TobiasFella).
Make sure that users can't attempt to create a certificate expiring today
Apr 10 2024, 3:04 PM
ikloecker added a comment to T7078: Kleopatra: Add automatic offer of revocation certificate export to the revocation process.

I just want to point out that we have explicitly decided to remove confronting the user with five different "What next" options in the certificate creation workflow. One reason is that the choice overwhelms the users because some think they need to do everything. Another reason is that many options were completely wrong for some of our customers. Such workflows are much better documented in company-specific SOPs (standard operation procedures).

Apr 10 2024, 2:42 PM · vsd33, Restricted Project, kleopatra
TobiasFella moved T6629: Kleopatra: Remove tooltip signature class from Restricted Project Column to Restricted Project Column on the Restricted Project board.
Apr 10 2024, 2:36 PM · vsd33 (vsd-3.3.0), Restricted Project, kleopatra
TobiasFella committed rLIBKLEOf5b3ff896fbb: Remove signature class tooltip (authored by TobiasFella).
Remove signature class tooltip
Apr 10 2024, 2:36 PM
TobiasFella claimed T6629: Kleopatra: Remove tooltip signature class.
Apr 10 2024, 2:36 PM · vsd33 (vsd-3.3.0), Restricted Project, kleopatra
TobiasFella moved T7078: Kleopatra: Add automatic offer of revocation certificate export to the revocation process from Restricted Project Column to Restricted Project Column on the Restricted Project board.
Apr 10 2024, 2:12 PM · vsd33, Restricted Project, kleopatra
TobiasFella claimed T7078: Kleopatra: Add automatic offer of revocation certificate export to the revocation process.
Apr 10 2024, 2:11 PM · vsd33, Restricted Project, kleopatra
TobiasFella committed rKLEOPATRA56f6b5ba6479: Ask the user to publish and/or export the certificate after revocation (authored by TobiasFella).
Ask the user to publish and/or export the certificate after revocation
Apr 10 2024, 2:09 PM
ikloecker changed the status of T7082: Kleopatra: Improve initial column layout in smart card views from Open to Testing.

Fixed. This improves the first impression when users use the first smart card with Kleopatra.

Apr 10 2024, 12:54 PM · vsd33 (vsd-3.3.0), Restricted Project, kleopatra
ikloecker committed rKLEOPATRA6b85d4fa4480: Delay initialization of column sizes until model contains keys (authored by ikloecker).
Delay initialization of column sizes until model contains keys
Apr 10 2024, 12:47 PM
ikloecker committed rKLEOPATRA6745c9d3794e: Remove automatic column resize on show/hide column (authored by ikloecker).
Remove automatic column resize on show/hide column
Apr 10 2024, 12:47 PM
ikloecker triaged T7082: Kleopatra: Improve initial column layout in smart card views as Normal priority.
Apr 10 2024, 11:49 AM · vsd33 (vsd-3.3.0), Restricted Project, kleopatra
TobiasFella committed rKLEOPATRA80884e45b75c: Add more spacing (authored by TobiasFella).
Add more spacing
Apr 10 2024, 11:22 AM
TobiasFella committed rKLEOPATRAf73092abc8f4: Add more spacing (authored by TobiasFella).
Add more spacing
Apr 10 2024, 11:20 AM
TobiasFella moved T7076: Kleopatra: Improvements in the "Revoke Key" window from Restricted Project Column to Restricted Project Column on the Restricted Project board.
Apr 10 2024, 10:32 AM · vsd33, kleopatra, Restricted Project
TobiasFella closed D599: core: Add environment variable for enabling secret storage integration on KDE.
Apr 10 2024, 10:32 AM
TobiasFella committed rP23753cfb03c6: core: Add environment variable for enabling secret storage integration on KDE (authored by TobiasFella).
core: Add environment variable for enabling secret storage integration on KDE
Apr 10 2024, 10:31 AM
svuorela committed rGPGPASS15266d5359c9: Make 'additional notes' just be notes (authored by svuorela).
Make 'additional notes' just be notes
Apr 10 2024, 10:25 AM
svuorela committed rGPGPASS1f3c6ac5c973: Remove 'hide content'; it's a bit too effective (authored by svuorela).
Remove 'hide content'; it's a bit too effective
Apr 10 2024, 10:21 AM