aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--TODO27
-rw-r--r--keyimportdetaildialog.cpp2
2 files changed, 22 insertions, 7 deletions
diff --git a/TODO b/TODO
index ac7cd12..5f364cf 100644
--- a/TODO
+++ b/TODO
@@ -7,18 +7,24 @@ Release 0.3.2
- show keyrings (files with .gpg) in import from file dialog too [DONE]
- dropdown from menubar instead of dialog for import [DONE]
- add file operation toolbar (open, save, new) (per default off) [DONE]
+- strike out revoked keys in keylist and add warning to keydetails [DONE]
- put quote and double line break removale to "special edit" operation toolbar (icons for double linebreaks missing) [DONE]
-- Wizard on first start (Create Key, Import from older gpg4usb, import from gnupg)
-- option in settingsdialog for enabling steganographic operations
- - minimal steganography option: remove or add pgp-headers on demand
+- Wizard on first start (Create Key, Import from keys older gpg4usb, import from gnupg) [DONE]
+ - import conf from old gpg4usb
+ - remember GNUPGHOME in main.cpp
+- emit keydbchanged from GPGcontext::importKey (?)
+- show import details at all places
+- option in settingsdialog for enabling steganographic operations [DONE]
+ - minimal steganography option: remove or add pgp-headers on demand [DONE]
+ - Add advanced tab to settings dialog
- investigate in embedding a steganography tool
http://steghide.sourceforge.net/
http://www.outguess.org/
- update gpgme-library
- understandable message if no matching private key found for decryption (no data error)
-- investigate in adding a offline help system
-- strike out revoked keys in keylist and add warning to keydetails [DONE]
-- keyimport dialog should show reason for strike out
+- investigate in adding a offline help system [DONE]
+ - have a look on the format
+- keyimport from keyserver dialog should show reason for strike out
- key import should be more verbose: [DONE]
- show message, which keys are imported [DONE]
- if import failed, because no key was found [DONE]
@@ -27,9 +33,16 @@ Release 0.3.2
- show message, when key export is successful (statusbar)
- dropdown from menubar instead of dialog for file-cryption (files->encrypt,decrypt)
- encrypt and sign, decrypt and verify (?)
-
+- Zoom In/Out
+- Add buttonto copy fingerprint to clipboard in details dialog
+ - remove whitespaces on copy
+- Change "remove double line breaks" to "remove spacing"
+ - icon from "line spacing icon"
+- Change file encryption to single dialog for en- and decryption
+- Add default key functionality
BUGS:
- import key toolbar dropdown shows text, even if only icon should be shown
+- investigate special characters in passphrase in windows
Release 0.3.3
- create revocation file on key generation
diff --git a/keyimportdetaildialog.cpp b/keyimportdetaildialog.cpp
index 4834852..995a4f0 100644
--- a/keyimportdetaildialog.cpp
+++ b/keyimportdetaildialog.cpp
@@ -103,6 +103,8 @@ void KeyImportDetailDialog::createKeysTable()
QStringList headerLabels;
headerLabels << tr("Name") << tr("Email") << tr("KeyID") << tr("Status");
keysTable->horizontalHeader()->setResizeMode(0, QHeaderView::ResizeToContents);
+ keysTable->horizontalHeader()->setStretchLastSection(true);
+
keysTable->verticalHeader()->hide();
keysTable->setHorizontalHeaderLabels(headerLabels);
int row = 0;