diff options
author | nils <nils@34ebc366-c3a9-4b3c-9f84-69acf7962910> | 2013-02-05 22:32:48 +0000 |
---|---|---|
committer | nils <nils@34ebc366-c3a9-4b3c-9f84-69acf7962910> | 2013-02-05 22:32:48 +0000 |
commit | 3ec228fd8663d575d8bb26eb3f22b3a560a3d15d (patch) | |
tree | 66fbe691ad13a98e935bb11321c7beb1247b35b3 | |
parent | updated TODO (diff) | |
download | gpg4usb-3ec228fd8663d575d8bb26eb3f22b3a560a3d15d.tar.gz gpg4usb-3ec228fd8663d575d8bb26eb3f22b3a560a3d15d.zip |
updated TODO and minor beautifying in settings dialog
git-svn-id: http://cpunk.de/svn/src/gpg4usb/trunk@1008 34ebc366-c3a9-4b3c-9f84-69acf7962910
-rw-r--r-- | TODO | 2 | ||||
-rwxr-xr-x | settingsdialog.cpp | 3 |
2 files changed, 4 insertions, 1 deletions
@@ -5,6 +5,7 @@ Release 0.4 - replace gpgme with kgpg (lots of work and trouble!!!) - Refresh key from keyserver [DONE] - add encrypt to self functionality [DONE] + - add automatic restart if key changed - add find action in textedit [DONE] - BUG: hit strg+f, then hit escape -> text not editable anymore, same with not found expression - When search previous, text should be searched from end again, if no hit is found @@ -18,6 +19,7 @@ Release 0.4 - exclude translators list from about dialog [DONE] - change docu on file de- and encryption - add possibility to set alternative relative path to keydb [DONE] + - on startup check, if keydb path exists, if keydb path isn't default - add possibility for creation of RSA keys [DONE] - add posibility to add keyserver in settings [DONE] - add posibility to remove keyserver in settings [DONE] diff --git a/settingsdialog.cpp b/settingsdialog.cpp index 065e31f..690d9d2 100755 --- a/settingsdialog.cpp +++ b/settingsdialog.cpp @@ -176,8 +176,9 @@ GeneralTab::GeneralTab(GpgME::GpgContext *ctx,QWidget *parent) } connect(ownKeySelectBox,SIGNAL(currentIndexChanged(int)),this,SLOT(slotOwnKeyIdChanged())); - ownKeyBoxLayout->addWidget(new QLabel(tr("All messages are additionaly encrypted to the following key:"))); + ownKeyBoxLayout->addWidget(new QLabel(tr("Encrypt all messages additionally to the chosen key:"))); ownKeyBoxLayout->addWidget(ownKeySelectBox); + ownKeyBoxLayout->addWidget(new QLabel(tr("<b>NOTE: </b> Gpg4usb will restart automatically if you change the own key!"))); /***************************************** |