Bumped version number to 0.3.2
Updated changelog Renamed translations to keepassx-* Added myself to the about dialog git-svn-id: https://svn.code.sf.net/p/keepassx/code/trunk@203 b624d157-de02-0410-bad0-e51aec6abb33
This commit is contained in:
parent
cfcbe82138
commit
a018fee162
18
changelog
18
changelog
|
@ -1,3 +1,21 @@
|
|||
---------------
|
||||
0.3.2
|
||||
---------------
|
||||
- add default groups when creating a database
|
||||
- improved the auto-type dialog (keyboard only usage, visual selection feedback)
|
||||
- fixed password encoding problem (Bug #1687864)
|
||||
- fixed sorting of date columns (Bugs #1861726, #1922311)
|
||||
- fixed problem when restoring window after auto-type (Bug #1978861)
|
||||
- don't use entries in 'Backup' group for global auto-type (Bug #1915664)
|
||||
- hide contents of search field while database is locked (Bug #1923554)
|
||||
- added missing menu accelerators
|
||||
- automatically try to unlock db when global auto-type key has been pressed
|
||||
- master key transformations (rounds) are now computed in two threads (from KeePass 1.11)
|
||||
- added ability to measure the number of rounds that can be calculated in 1 second
|
||||
- increase and randomize the default key transformation number
|
||||
- print help if parsing the arguments fails
|
||||
- disable precompiled header on FreeBSD by default to fix compilation error (Bug #1943446)
|
||||
|
||||
---------------
|
||||
0.3.1
|
||||
---------------
|
||||
|
|
|
@ -1543,9 +1543,10 @@ void Kdb3Database::create(){
|
|||
RootGroup.Parent=NULL;
|
||||
RootGroup.Handle=NULL;
|
||||
Algorithm=Rijndael_Cipher;
|
||||
quint8 ran;
|
||||
randomize(&ran,1);
|
||||
KeyTransfRounds=10000 + 3*ran;
|
||||
quint16 ran;
|
||||
randomize(&ran,2);
|
||||
ran &= 0x03FF; // only use 10 bits -> max 1024
|
||||
KeyTransfRounds=10000 + ran;
|
||||
KeyError=false;
|
||||
}
|
||||
|
||||
|
|
|
@ -48,6 +48,8 @@ AboutDialog::AboutDialog(QWidget* parent):QDialog(parent)
|
|||
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;'>";
|
||||
|
|
|
@ -110,10 +110,13 @@ PasswordDialog::PasswordDialog(QWidget* parent,DlgMode mode,DlgFlags flags,const
|
|||
// Button Color
|
||||
QPalette palette=Button_Bookmarks->palette();
|
||||
palette.setColor(QPalette::Active,QPalette::Button,config->bannerColor1());
|
||||
palette.setColor(QPalette::Inactive,QPalette::Button,config->bannerColor1());
|
||||
palette.setColor(QPalette::Active,QPalette::Window,config->bannerColor2());
|
||||
palette.setColor(QPalette::Inactive,QPalette::Window,config->bannerColor2());
|
||||
Button_Bookmarks->setPalette(palette);
|
||||
palette=Label_Bookmark->palette();
|
||||
palette.setColor(QPalette::Active,QPalette::WindowText,config->bannerTextColor());
|
||||
palette.setColor(QPalette::Inactive,QPalette::WindowText,config->bannerTextColor());
|
||||
Label_Bookmark->setPalette(palette);
|
||||
// Create menu and add "last file" menu entry
|
||||
QMenu* BookmarkMenu=new QMenu(this);
|
||||
|
|
|
@ -26,7 +26,7 @@
|
|||
#define APP_CODE_NAME "keepassx"
|
||||
#define APP_SHORT_FUNC "Password Manager"
|
||||
#define APP_LONG_FUNC "Cross Platform Password Manager"
|
||||
#define APP_VERSION "0.3.1"
|
||||
#define APP_VERSION "0.3.2"
|
||||
|
||||
#define BUILTIN_ICONS 65
|
||||
|
||||
|
|
14
src/src.pro
14
src/src.pro
|
@ -140,13 +140,13 @@ FORMS += forms/EditGroupDlg.ui \
|
|||
forms/AddBookmarkDlg.ui \
|
||||
forms/ManageBookmarksDlg.ui
|
||||
|
||||
TRANSLATIONS += translations/keepass-de_DE.ts \
|
||||
translations/keepass-ru_RU.ts \
|
||||
translations/keepass-es_ES.ts \
|
||||
translations/keepass-fr_FR.ts \
|
||||
translations/keepass-cs_CZ.ts \
|
||||
translations/keepass-ja_JP.ts \
|
||||
translations/keepass-xx_XX.ts
|
||||
TRANSLATIONS += translations/keepassx-de_DE.ts \
|
||||
translations/keepassx-ru_RU.ts \
|
||||
translations/keepassx-es_ES.ts \
|
||||
translations/keepassx-fr_FR.ts \
|
||||
translations/keepassx-cs_CZ.ts \
|
||||
translations/keepassx-ja_JP.ts \
|
||||
translations/keepassx-xx_XX.ts
|
||||
|
||||
HEADERS += lib/UrlLabel.h \
|
||||
mainwindow.h \
|
||||
|
|
Loading…
Reference in New Issue