Added action "Copy URL to Clipboard" (closes #1944021)
Fixed: Unnamed Database saved as ".kdb" (closes #2109972, #2118340) Fixed: Date of Modification isn't updated (closes #2108658, #2121768) Fixed and improved the initialization of the fallback random number source (closes #2091784) Don't clear clipboard if "Clear clipboard after" is set to 0 Try to clear Klipper history when clearing clipboard git-svn-id: https://svn.code.sf.net/p/keepassx/code/trunk@220 b624d157-de02-0410-bad0-e51aec6abb33
This commit is contained in:
@@ -45,11 +45,11 @@ AboutDialog::AboutDialog(QWidget* parent):QDialog(parent)
|
||||
str+="<div style='margin-left:10px;'>";
|
||||
str+="<u>Tarek Saidi</u><br>"+tr("Developer, Project Admin")+"<br>tarek_saidi@users.sf.net<br>";
|
||||
str+="<br>";
|
||||
str+="<u>Felix Geyer</u><br>"+tr("Developer, Project Admin")+"<br>sniperbeamer@users.sf.net<br>";
|
||||
str+="<br>";
|
||||
str+="<u>Eugen Gorschenin</u><br>"+tr("Web Designer")+"<br>geugen@users.sf.de<br>";
|
||||
str+="<br>";
|
||||
str+="<u>Juan J González Cárdenas [Jota Jota]</u><br>"+tr("Developer")+"<br>myxelf@users.sf.net<br>";
|
||||
str+="<br>";
|
||||
str+="<u>Felix Geyer</u><br>"+tr("Developer")+"<br>sniperbeamer@users.sf.net<br>";
|
||||
str+="</div><br><div style='margin-left:0px;'>";
|
||||
str+="<b>"+tr("Thanks To")+"</b><br>";
|
||||
str+="</div><div style='margin-left:10px;'>";
|
||||
|
||||
@@ -210,7 +210,7 @@ void PasswordDialog::OnOK(){
|
||||
return;
|
||||
}
|
||||
|
||||
if(Check_KeyFile->isChecked()){
|
||||
if(Check_KeyFile->isChecked()){
|
||||
/* Check wether key path exists and is readable */
|
||||
QFileInfo fileinfo(KeyFile);
|
||||
if(!fileinfo.exists()){
|
||||
@@ -278,7 +278,7 @@ void PasswordDialog::OnOK(){
|
||||
}
|
||||
else if(Check_Password->isChecked()){
|
||||
config->setLastKeyType(PASSWORD);
|
||||
config->setLastKeyLocation(QString());
|
||||
config->setLastKeyLocation(QString());
|
||||
}
|
||||
else if(Check_KeyFile->isChecked()){
|
||||
config->setLastKeyType(PASSWORD);
|
||||
|
||||
Reference in New Issue
Block a user