1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020
|
2012-05-01: 2.19
- New generic CSV importer (now supports multi-line fields, '\'
as escape character, field & record separators and the text
qualifier can be specified, white space characters can be
removed from the beginning/end of fields, the fields and
their order can be defined, supported fields now are group
name & standard fields like e.g. title & custom strings &
times & ignore column, the first row can be ignored, KeePass
initially tries to guess the fields and their order based on
the first row)
- Native master key transformations are now computed in two
threads on 64-bit systems, too; on dual/multi core processors
this results in almost twice the performance as before (by
doubling the amount of rounds you'll get the same waiting
time as in 2.18, but the protection against dictionary and
guessing attacks is doubled)
- New XML configuration and translation deserializer to improve
the startup performance
- Added option to require a password repetition only when
hiding using asterisks is enabled (enabled by default)
- Entry attachments can now be renamed using in-place label
editing (click on an already selected item to show an edit
box)
- Empty entry attachments can now be created using 'Attach' ->
'Create Empty Attachment'
- Sizes of entry attachments are now shown in a column of the
attachments list in the entry editing dialog
- Added {ENV_PROGRAMFILES_X86} placeholder (this is
%ProgramFiles(x86)%, if it exists, otherwise %ProgramFiles%)
- Added auto-type option 'An entry matches if one of its tags
is contained in the target window title'
- URLs in HTML exports are now linkified
- Import modules may now specify multiple default/equivalent
file extensions (like e.g. 'htm' and 'html')
- Added support for reading texts encoded using UTF-32 Big
Endian
- Enhanced text encoding detection (now detects UTF-32 LE/BE
and UTF-16 LE/BE by zeros, improved UTF-8 detection, ...)
- Added zoom function for images in internal data viewer
- Drop-down image buttons in the entry editing dialog are now
marked using small black triangle overlays
- Added support for loading key files from URLs
- Controls in the options dialog are now disabled when the
options are enforced (using an enforced configuration file)
- If KeePass is started with the '-debug' command line option,
KeePass now shows a developer-friendly error message when
opening a database file fails
- Added 'Wait for exit' property in the 'Execute command line /
URL' trigger action
- The 'File exists' trigger condition now also supports URLs
- Added two file closing trigger events (one raised before and
one after saving the database file)
- Plugins: added file closing events
- Plugins: added events (AutoType.Sequence*) that allow plugins
to provide auto-type sequence suggestions
- Added workaround to support loading data from version
information files even when they have incorrectly been
decompressed by a web filter
- Added workarounds for '', '|' and '' .NET SendKeys issues
- Added workaround for topmost window .NET/Windows issue (the
'Always on Top' option now works even when switching to a
different window while KeePass is starting up)
- Added workaround for Mono dialog event ordering bug
- Added workaround for Mono clipboard bugs on Mac OS X
- KPScript: added 'MoveEntry', 'GetEntryString' and 'GenPw'
commands
- KPScript: added '-refx-UUID' and '-refx-Tags' entry
identification parameters
- When only deleting history entries (without changing any data
field of an entry), no backup entry is created anymore
- Unified text encoding handling for internal data viewer and
editor, generic CSV importer and text encoding selection
dialog
- Improved font sizing in HTML exports/printouts
- Improved encoding of group names in HTML exports/printouts
- If an entry doesn't expire, 'Never expires' is now shown in
the 'Expiry Time' column in HTML exports/printouts
- The expiry edit control now accepts incomplete edits and the
'Expires' checkbox is checked immediately
- The time component of the default expiry suggestion is now
00:00:00
- The last selected/focused item in the attachments list of the
entry editing dialog is now selected/focused after editing an
attachment
- Improved field to standard field mapping function
- Enhanced RoboForm importer to concatenate values of fields
with conflicting names
- Updated Spamex.com importer
- Removed KeePass 1.x CSV importer; users should use the new
generic CSV importer (which can import more data than the old
specialized 1.x CSV importer)
- When trying to open another database while a dialog is
displayed, KeePass now just brings itself to the foreground
without attempting to open the second database
- More list views use the Vista Explorer style
- Modifier keys without another key aren't registered as global
hot key anymore
- Improved default suggestions for custom sequences in the
auto-type sequence editing dialog
- Improved default focus in the auto-type sequence editing
dialog
- Added {C:Comment} placeholder in the auto-type sequence
editing dialog
- On Unix-like systems, the {GOOGLECHROME} placeholder now
first searches for Google Chrome and then (if not found) for
Chromium
- Versions displayed in the update checking dialog now consist
of at least two components
- Added '@' and '`' to the printable 7-bit ASCII character set
- Merged simple and extended special character spaces to one
special character space
- Reduced control character space from 60 to 32
- The first sample entry's URL now points to the KeePass
website
- Improved key transformation delay calculation
- Improved key file loading performance
- The main menu now isn't a tab stop anymore
- Some configuration nodes are now allocated only on demand
- Improved UI update when moving/copying entries to the
currently active group or a subgroup of it using drag&drop
- Improved behavior when closing an inactive database having
unsaved changes
- Changed versioning scheme in file version information blocks
from digit- to component-based
- Development snapshots don't ask anymore whether to enable the
automatic update check (only stable releases do)
- Improved PLGX cache directory naming
- The PLGX cache directory by default is now located in the
local application data folder instead of the roaming one
- Improved support for PLGX plugins that are using LINQ
- Various UI improvements
- Various code optimizations
- Minor other improvements
- Fixed sorting of items in the most recently used files list
- Fixed tab order in the 'Advanced' tab of the entry editing
dialog
2012-01-05: 2.18
- The update check now also checks for plugin updates (if
plugin developers provide version information files)
- When starting KeePass 2.18 for the first time, it asks
whether to enable the automatic update check or not (if not
enabled already)
- When closing the entry editing dialog by closing the window
(using [X], Esc, ...) and there are unsaved changes, KeePass
now asks whether to save or discard the changes; only when
explicitly clicking the 'Cancel' button, KeePass doesn't
prompt
- When not hiding passwords using asterisks, they don't need to
be repeated anymore
- Password repetition boxes now provide instant visual feedback
whether the password has been repeated correctly (if
incorrect, the background color is changed to light red)
- When clicking an '***' button to change the visibility of the
entered password, KeePass now automatically transfers the
input focus into the password box
- Visibility of columns in the auto-type entry selection dialog
can now be customized using the new 'Options' button
- Added auto-type option 'An entry matches if the host
component of its URL is contained in the target window title'
- Added shortcut keys: Ctrl+Shift+O for 'Open URL',
Ctrl+Shift+U for copying URLs to the clipboard, Ctrl+I for
'Add Entry', Ctrl+R for synchronizing with a file,
Ctrl+Shift+R for synchronizing with a URL
- Ensuring same keyboard layouts during auto-type is now
optional (option enabled by default)
- Plain text KDB4 XML exports now store the memory protection
flag of strings in an attribute 'ProtectInMemory'
- Added option to use database lock files (intended for storage
providers that don't lock files while writing to them, like
e.g. some FTP servers); the option is turned off by default
(and especially for local files and files on a network share
it's recommended to leave it turned off)
- Added UIFlags bit for disabling the controls to specify after
how many days the master key should/must be changed
- Added support for in-memory protecting strings that are
longer than 65536 characters
- Added workaround for '@' .NET SendKeys issue
- .NET 4.0 is now preferred, if installed
- PLGX plugins are now preferably compiled using the .NET 4.0
compiler, if KeePass is currently running under the 4.0 CLR
- Automatic update checks are now performed at maximum once per
day (you can still check manually as often as you wish)
- Auto-Type: entry titles and URLs are now Spr-compiled before
being compared with the target window title
- Decoupled the options 'Show expired entries' and 'Show
entries that will expire soon'
- Specifying the data hiding setting (using asterisks) in the
column configuration dialog is now done using a checkbox
- The entry view now preferably uses the hiding settings
(asterisks) of the entry list columns
- Improved entry expiry date calculation
- Enhanced Password Agent importer to support version 2.6.2
- Enhanced SplashID importer to import last modification dates
- Improved locating of system executables
- Password generator profiles are now sorted by name
- Separated built-in and user-defined password generator
profiles (built-in profiles aren't stored in the
configuration file anymore)
- Improved naming of shortcut keys, and shortcut keys are now
displayed in tooltips
- Internal window manager can now close windows opened in other
threads
- Improved entry touching when closing the entry editing dialog
by closing the window (using [X], Esc, ...)
- Improved behavior when entering an invalid URL in the 'Open
URL' dialog
- Improved workaround for Mono tab bar height bug
- ShInstUtil: improved Native Image Generator version detection
- Unified in-memory protection
- In-memory protection performance improvements
- Developers: in-memory protected objects are now immutable and
thread-safe
- Various UI text improvements
- Various code optimizations
- Minor other improvements
- The cached/temporary custom icons image list is now updated
correctly after running the 'Delete unused custom icons'
command
2011-10-19: 2.17
- Multiple auto-type sequences can now be defined for a window
in one entry
- The auto-type entry selection dialog now displays the
sequence that will be typed
- The auto-type entry selection dialog is now resizable;
KeePass remembers the dialog's position, size and the list
view column widths
- Added auto-type option 'An entry matches if its URL is
contained in the target window title'
- Added two options to show dereferenced data in the main entry
list (synchronously or asynchronously)
- Dereferenced data fields are now shown in the entry view of
the main window and the auto-type entry selection dialog
(additionally to the references)
- Field references in the entry view are now clickable; when
clicking one, KeePass jumps to the data source entry
- Added option in the 'Find' dialog to search in dereferenced
data fields
- Added option to search in dereferenced data fields when
performing a quick search (toolbar in main window)
- The 'Find' dialog now shows a status dialog while searching
for entries
- The main window now shows a status bar and the UI is disabled
while performing a quick search
- Added context menu commands to open the URL of an entry in a
specific browser
- Added {SAFARI} browser path placeholder
- Added {C:...} comment placeholder
- Added entry duplication options dialog (appending "- Copy" to
entry titles, and/or replacing user names and passwords by
field references to the original entries)
- Added option to focus the quick search box when restoring
from taskbar (disabled by default)
- Added tray context menu command to show the options dialog
- Source fields are now compiled before using them in a
{PICKCHARS} dialog
- Added 'Copy Link' rich text box context menu command
- Before printing, the data/format dialog now shows a print
dialog, in which the printer can be selected
- Added application policy to ask for the current master key
before printing
- Added support for importing Passphrase Keeper 2.50 HTML files
(in addition to the already supported 2.70 format)
- KeePass now removes zone identifiers from itself, ShInstUtil
and the CHM help file
- Listing currently opened windows works under Unix-like
systems now, too
- Alternating item background colors are now also supported in
list views with item groups
- IOConnection now supports reading from data URIs (RFC 2397)
- Group headers are now skipped when navigating in single
selection list views using the arrow keys
- Added detection support for the following web browsers on
Unix-like systems: Firefox, Opera, Chromium, Epiphany, Arora,
Galeon and Konqueror
- Added documentation of the synchronization feature
- Key provider plugins can now declare that they're compatible
with the secure desktop mode, and a new property in the query
context specifies whether the user currently is on the secure
desktop
- Added workaround for a list view sorting bug under Windows XP
- Added workaround for a .NET bug where a cached window state
gets out of sync with the real window state
- Added workaround for a Mono WebRequest bug affecting WebDAV
support
- Items in the auto-type entry selection dialog can now be
selected using a single click
- When performing global auto-type, the Spr engine now uses the
entry container database instead of the current database as
data source
- The generated passwords list in the password generator dialog
now uses the password font (monospace by default)
- The last modification time of an entry is now updated when a
new password is generated using the {NEWPASSWORD} placeholder
- The overlay icon for the taskbar button (on Windows 7) is now
restored when Windows Explorer crashes and when starting in
minimized and locked mode
- Improved opening of CHM help file
- The buttons in file save dialogs now have accelerator keys
- Separated URL scheme overrides into built-in and custom ones
- Improved tray command state updating
- The default tray command is now rendered using a bold font
- The main window is now disabled while searching and removing
duplicate entries
- Improved banner handling/updating in resizable dialogs
- The 'Ctrl+U' shortcut hint is now moved either to the open or
to the copy command, depending on whether the option 'Copy
URLs to clipboard instead of opening them' is enabled or not
- Improved command availability updating of rich text context
menus
- Quick searches are now invoked asynchronously
- Improved quick search performance
- The option to minimize the main window after locking the
KeePass workspace is now enabled by default
- When performing auto-type, newline characters are now
converted to Enter keypresses
- Auto-type on Unix-like systems: improved sending of backslash
characters
- On Unix-like systems, the default delay between auto-typed
keystrokes is now 3 ms
- Spr engine performance improvements
- Changing the in-memory protection state of a custom entry
string is now treated as a database change
- Some options in the options dialog are now linked (e.g. the
option 'Automatically search key files also on removable
media' can only be enabled when 'Automatically search key
files' is enabled)
- Most items with default values aren't written to the
configuration file anymore (resulting in a smaller file and
making it possible to change defaults in future versions)
- Path separators in the configuration file are now updated for
the current operating system
- Improved 'xdotool' version detection
- Improved IO response handling when deleting/renaming files
- Various UI text improvements
- Various code optimizations
- Minor other improvements
- Status bar text is now correctly updated to 'Ready' after an
unsuccessful/cancelled database opening attempt
- Password generation based on patterns: escaped curly brackets
are now parsed correctly
2011-07-12: 2.16
- When searching for a string containing a whitespace
character, KeePass now splits the terms and reports all
entries containing all of the terms (e.g. when you search for
"Forum KeePass" without the quotes, all entries containing
both "Forum" and "KeePass" are reported); the order of the
terms is arbitrary; if you want to search for a term
containing whitespace, enclose the term in quotes
- When searching for a term starting with a minus ('-'), all
entries that do not contain the term are reported (e.g. when
you search for "Forum -KeePass" without the quotes, all
entries containing "Forum" but not "KeePass" are reported)
- Added dialog in the options to specify a web proxy (none,
system or manual) and user name and password for it
- Added option to always exit instead of locking the workspace
- Added option to play the UAC sound when switching to a secure
desktop (enabled by default)
- Added filter box in the field references creation dialog
- Added command to delete duplicate entries (entries are
considered to be equal when their strings and attachments are
the same, all other data is ignored; if one of two equal
entries is in the recycle bin, it is deleted preferably;
otherwise the decision is based on the last modification
time)
- Added command to delete empty groups
- Added command to delete unused custom icons
- For Unix-like systems: new file-based IPC broadcast mechanism
(supporting multiple endpoints)
- For Unix-like systems: added file-based global mutex
mechanism
- Auto-type on Unix-like systems: added support for sending
square brackets and apostrophes
- Two-channel auto-type obfuscation is now supported on
Unix-like systems, too
- Web access on Unix-like systems: added workarounds for non-
implemented cache policy and credentials requirement
- Added context menu command to empty the recycle bin (without
deleting the recycle bin group)
- On Windows Vista and higher, when trying to delete a group,
the confirmation dialog now shows a short summary of the
subgroups and entries that will be deleted, too
- In the auto-type target window drop-down combobox, icons are
now shown left of the window names
- Added {CLEARFIELD} auto-type command (to clear the contents
of single-line edit controls)
- Added support for importing Sticky Password 5.0 XML files
(formatted memos are imported as RTF file attachments, which
you can edit using the internal KeePass editor; e.g. right-
click on the entry in the main window and go 'Attachments' ->
'Edit Notes.rtf' or click on the attachment in the entry view
at the bottom of the main window; see 'How to store and work
with large amounts of formatted text?' in the FAQ)
- Added support for importing Kaspersky Password Manager 5.0
XML files (formatted memos are imported the same as by the
Sticky Password importer, see above)
- Password Depot importer: added support for more fields (new
time fields and usage count), time fields can be imported
using the stored format specifier, vertical tabulators are
removed, improved import of information cards, and auto-type
sequences are converted now
- Added ability to export links into the root directory of
Windows/IE favorites
- Windows/IE favorites export: added configuration items to
specify a prefix and a suffix for exported links/files
- In the entry editing dialog, KeePass now opens an attachment
either in the internal editor or in the internal viewer,
depending on whether the format is supported by the editor
- When creating a new database, KeePass now automatically
creates a second sample entry, which is configured for the
test form in the online help center
- Added configuration option to disable the 'Options',
'Plugins' and/or 'Triggers' menu items
- Added workaround for Mono tab bar height bug
- Added workaround for Mono FTP bug
- Added workaround for Mono CryptoStream bug
- Added workaround for a Mono bug related to focusing list view
items
- Added shell script to prepare the sources for MonoDevelop
- Translations can now also be loaded from the KeePass
application data directory
- TrlUtil: added support for ellipses as alternative to 3 dots
- KPScript: added 'DetachBins' command to save all entry
attachments (into the directory of the database) and remove
them from the database
- After performing a quick-find, the search text is now
selected
- Improved quick-find deselection performance
- On Unix-like systems, command line parameters prefixed with a
'/' are now treated as absolute file paths instead of options
- Improved IPC support on Unix-like systems
- Locked databases can now be dismissed using the close command
- Invalid target windows (like the taskbar, own KeePass
windows, etc.) are not shown in the auto-type target window
drop-down combobox anymore
- Newly created entries are now selected and focused
- The entry list is now focused when duplicating and selecting
all entries
- If KeePass is blocked from showing a dialog on the secure
desktop, KeePass now shows the dialog on the normal desktop
- Improved dialog initialization on the secure desktop
- The current status is now shown while exporting Windows/IE
favorites
- Windows/IE favorites export: improved naming of containing
folder when exporting selected entries only
- Windows/IE favorites export: if a group doesn't contain any
exportable entry, no directory is created for this group
anymore
- Improved data editor window position/size remembering
- Key modifiers of shortcut key strings are translated now
- Shortcut keys of group and entry commands are now also shown
in the main menu
- When no template entries are specified/found, this is now
indicated in the 'Add Entry' toolbar drop-down menu
- When deleting a group, its subgroups and entries are now
added correctly to the list of deleted objects
- Font handling improvements
- Improved lock timeout updating when a dialog is displayed
- Improved export error handling
- Improved FIPS compliance problems self-test (error message
immediately at start), and specified configuration option to
prevent .NET from enforcing FIPS policy
- Various code optimizations
- Minor other improvements
- Last modification time is now updated when restoring an older
version of an entry
- When duplicating an entry, the UUIDs of history items are now
changed, too
2011-04-10: 2.15
- Added option to show the master key dialog on a secure
desktop (similar to Windows' UAC; almost no keylogger works
on a secure desktop; the option is disabled by default for
compatibility reasons)
- Added option to limit the number of history items per entry
(the default is 10)
- Added option to limit the history size per entry (the default
is 6 MB)
- Added {PICKCHARS} placeholder, which shows a dialog to pick
certain characters from an entry string; various options like
specifying the number of characters to pick and conversion to
down arrow keypresses are supported; see the one page long
documentation on the auto-type help page; the less powerful
{PICKPASSWORDCHARS} is now obsolete (but still supported for
backward compatibility)
- The character picking dialog now remembers and restores its
last position and size
- KDBX file format: attachments are now stored in a pool within
the file and entries reference these items; this reduces the
file size a lot when there are history items of entries
having attachments
- KDBX file format: attachments are now compressed (if the
compression option is enabled) before being Base64-encoded,
compressed and encrypted; this results in a smaller file,
because the compression algorithm works better on the raw
data than on its encoded form
- PLGX plugins can now be loaded on Unix-like systems, too
- Added option to specify a database color; by specifying a
color, the main window icon and the tray icon are recolored
and the database tab (shown when multiple databases are
opened in one window) gets a colored rectangle icon
- New rich text builder, which supports using multiple
languages in one text (e.g. different Chinese variants)
- Added 'Sort By' popup menu in the 'View' menu
- Added context menu commands to sort subgroups of a group
- Added option to clear master key command line parameters
after using them once (enabled by default)
- Added application policies to ask for the current master key
before changing the master key and/or exporting
- Added option to also unhide source characters when unhiding
the selected characters in the character picking dialog
- Added ability to export custom icons
- Added 'String' trigger condition
- Added support for importing DataViz Passwords Plus 1.007 CSV
files
- Enhanced 1Password Pro importer to also support 1PW CSV files
- Enhanced FlexWallet importer to also support version 2006 XML
files (in addition to version 1.7 XML files)
- Enabled auto-suggest for editable drop-down combo boxes (and
auto-append where it makes sense)
- Pressing Ctrl+Enter in the rich text boxes of the entry
dialog and the custom string dialog now closes with OK (if
possible)
- Added option to cancel auto-type when the target window
changes
- Auto-type on Unix-like systems: added support for key
modifiers
- Added '--saveplgxcr' command line option to save compiler
results in case the compilation of a PLGX plugin fails
- Added workaround for % .NET SendKeys issue
- Added workaround for Mono bug 620618 in the main entry list
- Improved key file suggestion performance
- When the master key change application policy is disabled and
the master key expires (forced change), KeePass now shows the
two information dialogs only once per opening
- After removing the password column, hiding behind asterisks
is suggested by default now when showing the column again
- TAN entries now expire on auto-type, if the option for
expiring TANs on use is enabled
- Auto-type now sends acute and grave accents as separate
characters
- Auto-type now explicitly skips the taskbar window when
searching for the target window
- Multiple lines are now separated in the entry list and in the
custom string list of the entry dialog by a space
- RoboForm importer: improved multiline value support
- Improved UNC path support
- Improved entry list refresh performance
- Improved UI state update performance
- Entry list context menus are now configured instantly
- Inapplicable group commands are now disabled
- Improved control focusing
- Improved clipboard handling
- Copying and pasting whole entries is now also supported on
Windows 98 and ME
- Improved releasing of dialog resources
- Improved keys/placeholders box in auto-type editing dialog
- Improved user-friendliness in UAC dialogs
- Tooltips of the tab close button and the password repeat box
can be translated now
- Improved help (moved placeholders to separate page, ...)
- KeePassLibSD now uses the SHA-256 implementation of Bouncy
Castle
- Upgraded installer
- Various code optimizations
- Minor other improvements
- Window titles are now trimmed, such that auto-type also works
with windows whose titles have leading or trailing whitespace
characters
- Detection of XSL files works under Linux / Mac OS X now, too
2011-01-02: 2.14
- Added option to lock after some time of global user
inactivity
- Added option to lock when the remote control status changes
- Auto-type on Unix-like systems: added special key code
support (translation to X KeySyms) and support for {DELAY X}
and {DELAY=X}
- Added window activation support on Unix-like systems
- Auto-type on Windows: added {VKEY X} special key code (sends
virtual key X)
- Added support for importing DataVault 4.7 CSV files
- Added support for importing Revelation 0.4 XML files
- Added 'Auto-Type - Without Context' application policy to
disable the 'Perform Auto-Type' command (Ctrl+V), but still
leave global auto-type available
- Added option to collapse newly-created recycle bin tree nodes
- Added 'Size' column in the history list of the entry dialog
- Added trigger action to remove custom toolbar buttons
- Added kdbx:// URL scheme overrides (for Windows and Unix-like
systems; disabled by default)
- Added KeePass.exe.config file to redirect old assemblies to
the latest one, and explicitly declare .NET 4.0 runtime
support
- Added documentation for the '-pw-enc' command line parameter,
the {PASSWORD_ENC} placeholder and URL overrides
- Added workaround for ^/& .NET SendKeys issue
- New locking timer (using a timeout instead of a countdown)
- Improved locking when the Windows session is being ended or
switched
- Improved multi-database locking
- Separated the options for locking when the computer is locked
and the computer is about to be suspended
- {FIREFOX} placeholder: added support for registry-redirected
32-bit Firefox installations on 64-bit Windows systems
- File transactions: the NTFS/EFS encryption flag is now also
preserved when the containing directory isn't encrypted
- The IPC channel name on Unix-like systems is now dependent on
the current user and machine name
- KeePass now selects the parent group after deleting a group
- Entries are now marked as modified when mass-changing their
colors or icons
- Key states are now queried on interrupt level
- A {DELAY=X} global delay now affects all characters of a
keystroke sequence when TCATO is enabled, too
- Improved dialog closing when exiting automatically
- Plugin-provided entry list columns can now be right-aligned
at KeePass startup already
- Removed KDBX DOM code
- Installer: the KeePass start menu shortcut is now created
directly in the programs folder; the other shortcuts have
been removed (use the Control Panel for uninstalling and the
'Help' menu in KeePass to access the help)
- Various code optimizations
- Minor other improvements
- Quotes in parameters for the 'Execute command line / URL'
trigger action are now escaped correctly
- Auto-type on Unix-like systems: window filters without
wildcards now match correctly
2010-09-06: 2.13
- Password quality estimation algorithm: added check for about
1500 most common passwords (these are rated down to 1/8th of
their statistical rating; Bloom filter-based implementation)
- Global auto-type (using a system-wide hot key) is now
possible on Unix-like systems (see the documentation for
setup instructions, section 'Installation / Portability' in
the 'KeePass 2.x' group; thanks to Jordan Sissel for
enhancing 'xdotool')
- Added IPC functionality for Unix-like systems
- Added possibility to write export plugins that don't require
an output file
- Tag lists are sorted alphabetically now
- Password text boxes now use a monospace font by default
- Added option to select a different font for password text
boxes (menu 'Tools' -> 'Options' -> tab 'Interface')
- Added support for importing Password Prompter 1.2 DAT files
- Added ability to export to Windows/IE favorites
- Added ability to specify IO credentials in the 'Synchronize'
trigger action
- Added ability to specify IO credentials and a master key in
the 'Open database file' trigger action
- If IO credentials are stored, they are now obfuscated
- Custom colors in the Windows color selection dialog are now
remembered
- Added high resolution version of the KeePass application icon
- Improved lock overlay icon (higher resolution)
- PLGX loader: added support for unversioned KeePass assembly
references
- Added workaround to avoid alpha transparency corruption when
adding images to an image list
- Improved image list generation performance
- Added workaround to display the lock overlay icon when having
enabled the option to start minimized and locked
- Improved group and entries deletion confirmation dialogs
(with preview; only Windows Vista and higher)
- The password character picking dialog now offers the raw
password characters instead of an auto-type encoded sequence
- PINs importer: improved importing of expiry dates
- Some button icons are now resized to 16x15 when the 16x16
icon is too large
- Renamed character repetition option in the password generator
for improved clarity
- Improved workspace locking
- Locking timer is now thread-safe
- Added code to prevent loading libraries from the current
working directory (to avoid binary planting attacks)
- Removed Tomboy references (on Unix-like systems)
- Various code optimizations
- Minor other improvements
- {NEWPASSWORD} placeholder: special characters in generated
passwords are now transformed correctly based on context
(auto-type, command line, etc.)
2010-07-09: 2.12
- Auto-type window definitions in custom window-sequence pairs
are now Spr-compiled (i.e. placeholders, environment
variables, etc. can be used)
- Global auto-type delay: added support for multi-modified keys
and special keys
- Added 'New Database' application policy flag
- Added 'Copy Whole Entries' application policy flag
- Multi-monitor support: at startup, KeePass now ensures that
the main window's normal area at least partially overlaps the
virtual screen rectangle of at least one monitor
- RoboForm importer: URLs without protocol prefix are now
prefixed automatically (HTTP)
- Entry-dependent placeholders can now be used in most trigger
events, conditions and actions (the currently focused entry
is used)
- Auto-type on Unix-like systems: KeePass now shows an
informative error message when trying to invoke auto-type
without having installed the 'xdotool' package
- New column engine: drag&dropping hidden fields works as
expected again (the field data is transferred, not asterisks)
- Improved restoration of a maximized main window
- Improved error message when trying to import/export data
from/to a KDB file on a non-Windows operating system
- Minor other improvements
2010-07-03: 2.11
- Added entry tags (you can assign tags to entries in the entry
editing window or by using the 'Selected Entries' context
menu; to list all entries having a specific tag, choose the
tag either in the 'Edit' main menu or in the 'Show Entries'
toolbar drop-down button)
- Completely new entry list column engine; the columns are
dynamic now, custom entry strings can be shown in the list,
to configure go 'View' -> 'Configure Columns...'; the column
engine is also extensible now, i.e. plugins can provide new
columns
- Added 'Size' entry list column (shows the approximate memory
required for the entry)
- Added 'History (Count)' entry list column (double-clicking a
cell of this column opens the entry editing window and
automatically switches to the 'History' tab)
- Added 'Expiry Time (Date Only)' entry list column
- Added options to specify the number of days until the master
key of a database is recommended to and/or must be changed
- Added support for exporting selected entries to KDB
- Added 'FileSaveAsDirectory' configuration key to specify the
default directory for 'Save As' database file dialogs
- Double-clicking a history entry in the entry editing dialog
now opens/views the entry
- It's now possible to tab from menus and toolbars to dialog
controls
- Added option to turn off hiding in-memory protected custom
strings using asterisks in the entry view
- Added workaround for FTP servers sending a 550 error after
opening and closing a file without downloading data
- Added 'Unhide Passwords' application policy flag
- Password Depot importer: some icons are converted now
- {GOOGLECHROME} placeholder: updated detection code to also
support the latest versions of Chrome
- The main window now uses the shell font by default
- On Windows Vista and higher, Explorer-themed tree and list
views are now used in the main window
- On Windows 7 and higher, the main window peek preview is now
disabled when the KeePass workspace is locked
- Installer: added option to optimize the on-demand start-up
performance of KeePass
- TrlUtil: added 3 dots string validation
- Improved entry list item selection performance (defer UI
state update on selection change burst)
- Improved special key code conversion in KDB importer
- Icon picker dialog now has a 'Close' button
- When sorting is enabled, the entry list view now doesn't get
destroyed anymore when trying to move entries
- Main window is now brought to the foreground when untraying
- Removed grid lines option
- Reduced size of MSI file
- Various performance improvements
- Various code optimizations
- Minor other improvements
- No file path is requested anymore when double-clicking an
import source that doesn't require a file
2010-03-05: 2.10
- Translation system: added support for right-to-left scripts
- Added {HMACOTP} placeholder to generate HMAC-based one-time
passwords as specified in RFC 4226 (the shared secret is the
UTF-8 representation of the value of the 'HmacOtp-Secret'
custom entry string field, and the counter is stored in
decimal form in the 'HmacOtp-Counter' field)
- On Windows 7, KeePass now shows a 'locked' overlay icon on
the taskbar button when the database is locked
- On Windows 7, the database loading/saving progress is now
shown on the taskbar button
- Added option to disable automatic searching for key files
- Added KDBX database repair functionality (in File -> Import)
- Added support for expired root groups
- Added global delay support for shifted special keys
- Added 'Change Master Key' application policy flag
- Added 'Edit Triggers' application policy flag
- Added trigger action to activate a database (select tab)
- Added configuration options to allow enforcing states
(enabled, disabled, checked, unchecked) of key source
controls in the master key creation and prompt dialogs
(see 'Composite Master Key' documentation page)
- Added option to disable the 'Save' command (instead of
graying it out) if the database hasn't been modified
- Added support for importing KeePassX 0.4.1 XML files
- Added support for importing Handy Safe 5.12 TXT files
- Added support for importing Handy Safe Pro 1.2 XML files
- Added support for importing ZDNet's Password Pro 3.1.4 TXT
files
- Added dialog for selecting the encoding of text files to be
attached to an entry
- Added option to search for passwords in quick finds (disabled
by default)
- Added Ctrl+S shortcut in the internal data editor
- Internal data editor window can now be maximized
- Document tabs can now be closed by middle-clicking on them
- Most strings in the trigger system are now Spr-compiled (i.e.
placeholders, environment variables, etc. can be used)
- Added '--lock-all' and '--unlock-all' command line options to
lock/unlock the workspaces of all other KeePass instances
- Added 'pw-enc' command line option and {PASSWORD_ENC}
placeholder
- Added preliminary auto-type support for Linux (right-click on
an entry and select 'Perform Auto-Type'; the 'xdotool'
package is required)
- Added option to enforce using the system font when running
under KDE and Gnome (option enabled by default)
- HTML exports are now XHTML 1.0 compliant
- Printing: added option to sort entries
- Printing: group names are now shown as headings
- KPScript: added '-CreateBackup' option for the EditEntry
command (to create backups of entries before modifying them)
- The PLGX plugin cache root path can now be specified in the
configuration file (Application/PluginCachePath)
- Plugin developers: added ability to write entropy providers
that can update the internal pool of the cryptographically
strong random number generator
- Plugin developers: added some public PwEntryForm properties,
events and methods
- Plugin developers: added entry template events
- Plugin developers: added group and entry touching events
- Plugin developers: added main window focus changing event
- Plugin developers: added support for writing format providers
for the internal attachments viewer
- Expired icons of groups are non-permanent now
- Improved search performance and in-memory protection
compatibility
- The SendKeys class now always uses the SendInput method (not
JournalHook anymore)
- Improved auto-type delay handling
- Two-channel auto-type obfuscation: added support for default
delays
- The default auto-type delay is now 10 ms
- Improved top-most window auto-type support
- Improved high DPI support (text rendering, banners, ...)
- Temporary file transaction files are now deleted before
writing to them
- Broadcasted file IPC notification messages do not wait
infinitely for hanging applications anymore
- On Windows XP and higher, KeePass now uses alpha-transparent
icons in the main entry list
- In the entry editing dialog, when moving a custom string to a
standard field, the string is now appended to the field
(instead of overwriting the previous contents of the field)
- Improved UTF-8 encoding (don't emit byte order marks)
- Improved field to standard field mapping function
- HTML exports do not contain byte-order marks anymore
- For improved clarity, some controls are now renamed/changed
dynamically when using the password generator without having
a database open
- Improved auto-type definition conversion for KDB exports
- Standard field placeholders are now correctly removed when
auto-typing, if the standard field doesn't exist
- Improved icon picker cancel blocking when removing an icon
- The default workspace locking time is now 300 seconds (but
the option is still disabled by default)
- Modern task dialogs are now displayed on 64-bit Windows
systems, too
- Improved file corruption error messages
- Improved entry attachments renaming method
- Double-clicking an attachment in the entry editing dialog now
opens it in the internal viewer (the internal editor can only
be invoked in the main window)
- When attachments are edited using the internal editor, the
entry's last modification time is now updated
- Improved plugin loading (detect PLGX cache files)
- If the application policy disallows clipboard operations,
KeePass doesn't unnecessarily decrypt sensitive data anymore
- Added tooltip for the 'View' toolbar drop-down button
- Improved menu accelerator and shortcut keys
- Upgraded installer
- Installer: various minor improvements
- Various performance improvements
- Various code optimizations
- Minor other improvements
- No exception is thrown anymore when lowering the clipboard
auto-clear time in the options below the value of a currently
running clearing countdown
- The 'Show expired entries' functionality now also works when
there's exactly one matching entry
2009-09-12: 2.09
- Added option to use file transactions when writing databases
(enabled by default; writing to a temporary file and
replacing the actual file afterwards avoids data loss when
KeePass is prevented from saving the database completely)
- Added PLGX plugin file format
- Enhanced database synchronization by structure merging
(relocation/moving and reordering groups and entries)
- Added synchronization 'Recent Files' list (in 'File' menu)
- Synchronization / import: added merging of entry histories
- Synchronization / import: backups of current entries are
created automatically, if their data would be lost in the
merging process
- Database name, description, default user name, entry
templates group and the recycle bin settings are now
synchronized
- Added {NEWPASSWORD} placeholder, which generates a new
password for the current entry, based on the "Automatically
generated passwords for new entries" generator profile; this
placeholder is replaced once in an auto-type process, i.e.
for a typical 'Old Password'-'New Password'-'Repeat New
Password' dialog you can use
{PASSWORD}{TAB}{NEWPASSWORD}{TAB}{NEWPASSWORD}{ENTER}
- Added scheme-specific URL overrides (this way you can for
example tell KeePass to open all http- and https-URLs with
Firefox or Opera instead of the system default browser; PuTTY
is set as handler for ssh-URLs by default; see Options ->
Integration)
- Added option to drop to the background when copying data to
the clipboard
- Added option to use alternating item background colors in the
main entry list (option enabled by default)
- The Ctrl+E shortcut key now jumps to the quick search box
- Added auto-type sequence conversion routine to convert key
codes between 1.x and 2.x format
- Added workaround for internal queue issue in SendKeys.Flush
- Added more simple clipboard backup routine to workaround
clipboard issues when special formats are present
- Added native clipboard clearing method to avoid empty data
objects being left in the clipboard
- Added import support for custom icons
- Added {GOOGLECHROME} placeholder, which is replaced by the
executable path of Google Chrome, if installed
- Added {URL:RMVSCM} placeholder, which inserts the URL of the
current entry without the scheme specifier
- Added ability to search for UUIDs and group names
- Toolbar searches now also search in UUIDs and group names
- Added {DELAY=X} placeholder to specify a default delay of X
milliseconds between standard keypresses in this sequence
- Added option to disable verifying written database files
- Attachment names in the entry view are now clickable (to open
the attachments in the internal editor or viewer)
- Added Unicode support in entry details view
- Added option to render menus and toolbars with gradient
backgrounds (enabled by default)
- MRU lists now have numeric access keys
- Added '--entry-url-open' command line option (specify the
UUID of the entry as '--uuid:' command line parameter)
- Added 'Application initialized' trigger event
- Added 'User interface state updated' trigger event
- Added host reachability trigger condition
- Added 'Active database has unsaved changes' trigger condition
- Added 'Save active database' trigger action
- Added database file synchronization trigger action
- Added database file export trigger action
- KeePass now restores the last view when opening databases
- Added system-wide hot key to execute auto-type for the
currently selected entry (configurable in the options)
- Added option to disable auto-type entry matching based on
title (by default an entry matches if its title is contained
in the target window title)
- Added option to disable marking TAN entries as expired when
using them
- Added option to focus the quick search box when restoring
from tray (disabled by default)
- Added entry context menu commands to sort by UUID and
file attachments
- Custom string fields are now appended to the notes when
exporting to KeePass 1.x KDB files
- Enforced configuration files are now item-based (items not
defined in the enforced configuration file are now loaded
from the global/local configuration files instead of being
set to defaults)
- File transactions are used when writing configuration files
- KPScript: added 'ChangeMasterKey' command
- ShInstUtil: added check for the presence of .NET
- TrlUtil: added command under 'Import' that loads 2.x LNGX
files without checking base hashes
- TrlUtil: added control docking support
- Plugin developers: added static window addition and removal
events to the GlobalWindowManager class
- Plugin developers: added ability to write custom dialog
banner generators (CustomGenerator of BannerFactory)
- Plugin developers: the IOConnectionInfo of the database is
now accessible through the key provider query context
- Plugin developers: added static auto-type filter events
(plugins can provide own placeholders, do sequence
customizations like inserting delays, and provide alternative
key sending methods)
- Plugin developers: added UIStateUpdated main window event
- Simple text boxes now convert rich text immediately
- Improved entry change detection (avoid unnecessary backups
when closing the entry dialog with [OK] but without any
changes; detect by content instead of change events)
- Header in entry selection dialog is now non-clickable
- Entry list header now uses native sorting icons
- Key providers are now remembered separately from key files
- The main window is now the owner of the import method dialog
- The global URL override is now also applied for main entry
URLs in the entry details view
- Improved grouping behavior when disabling entry sorting
- Improved field mapping in RoboForm import
- Root groups now support custom icons
- In the entry dialog, string values are now copied to the
clipboard instead of asterisks
- Improved import/synchronization status dialog
- Improved import/synchronization error message dialogs
- Entry history items are now identified by the last
modification time instead of last access time
- The trigger system can now be accessed directly through
'Tools' -> 'Triggers...', not the options anymore
- Changed order of commands in the 'Tools' menu
- Improved auto-type target window validity checking
- Ctrl-V does not make the main window lose the focus anymore
if auto-type is disabled for the currently selected entry
- When restoring from tray, the main window is now brought to
the foreground
- Double-clicking an icon in the icon picker dialog now chooses
the icon and closes the dialog
- When adding a custom icon to the database, the new icon is
selected automatically
- When opening a database by running KeePass.exe with the
database file path as parameter (and single instance option
enabled), the existing KeePass instance will not prompt for
keys of previously locked databases anymore when restoring
(they are just left in locked state)
- Unlocking routine doesn't display multiple dialogs anymore
- Improved shortcut key handling in main window
- Master key change success message now has a distinguishable
window title
- Improved start position and focus of the URL dialog
- Improved layout in options dialog
- Improved UUID and UI updates when removing custom icons
- Improved window deconstruction when closing with [X]
- Improved user activity detection
- Improved state updating of sorting context menu commands
- Improved sorting by UUIDs
- Improved naming of options to clarify their meaning
- Converted ShInstUtil to a native application (in order to be
able to show a warning in case .NET is not installed)
- Plugins: improved IOConnection to allow using registered
custom WebRequest descendants (WebRequest.RegisterPrefix)
- TrlUtil: improved XML comments generation
- Various code optimizations
- Minor other improvements
- Password profile derivation function doesn't incorrectly
always add standard character ranges anymore
- In-memory protection for the title field of new entries can
be enabled now
2009-07-05: 2.08
- Key transformation library: KeePass can now use Windows'
CNG/BCrypt API for key transformations (about 50% faster than
the KeePass built-in key transformation code; by increasing
the amount of rounds by 50%, you'll get the same waiting time
as in 2.07, but the protection against dictionary and
guessing attacks is raised by a factor of 1.5; only Windows
Vista and higher)
- Added support for sending keystrokes (auto-type) to windows
that are using different keyboard layouts
- Added option to remember key file paths (enabled by default)
- Added internal editor for text files (text only and RTF
formatted text; editor can edit entry attachments)
- Internal data viewer: added support for showing rich text
(text with formatting)
- Added inheritable group settings for disabling auto-type and
searching for all entries in this group (see tab 'Behavior');
for new recycle bins, both properties are set to disabled
- Added new placeholders: {DB_PATH}, {DB_DIR}, {DB_NAME},
{DB_BASENAME}, {DB_EXT}, {ENV_DIRSEP}, {DT_SIMPLE},
{DT_YEAR}, {DT_MONTH}, {DT_DAY}, {DT_HOUR}, {DT_MINUTE},
{DT_SECOND}, {DT_UTC_SIMPLE}, {DT_UTC_YEAR}, {DT_UTC_MONTH},
{DT_UTC_DAY}, {DT_UTC_HOUR}, {DT_UTC_MINUTE}, {DT_UTC_SECOND}
- The password character picking dialog now supports pre-
defining the number of characters to pick; append :k in the
placeholder to specify a length of k (for example,
{PICKPASSWORDCHARS3:5} would be a placeholder with ID 3 and
would pick 5 characters from the password); advantage: when
having picked k characters, the dialog closes automatically,
i.e. saves you to click [OK]
- IDs in {PICKPASSWORDCHARSn} do not need to be consecutive
anymore
- The password character picking dialog now first dereferences
passwords (i.e. placeholders can be used here, too)
- Added '-minimize' command line option
- Added '-iousername', '-iopassword' and '-iocredfromrecent'
command line options
- Added '--auto-type' command line option
- Added support for importing FlexWallet 1.7 XML files
- Added option to disable protecting the clipboard using the
CF_CLIPBOARD_VIEWER_IGNORE clipboard format
- Added support for WebDAV URLs (thanks to Ryan Press)
- Added shortcut keys in master key prompt dialog
- Added entry templates functionality (first specify an entry
templates group in the database settings dialog, then use the
'Add Entry' toolbar drop-down button)
- Added AceCustomConfig class (accessible through host
interface), that allows plugins to store their configuration
data in the KeePass configuration file
- Added ability for plugins to store custom data in KDBX
database files (PwDatabase.CustomData)
- Added interface for custom password generation algorithm
plugins
- URLs in the entry preview window are now always clickable
(especially including cmd:// URLs)
- Added option to copy URLs to the clipboard instead of opening
them (Options -> Interface, turned off by default)
- Added option to automatically resize entry list columns when
resizing the main window (turned off by default)
- Added 'Sync' command in KPScript scripting tool
- Added FIPS compliance problems self-test (see FAQ for details
about FIPS compliance)
- Added Rijndael/AES block size validation and configuration
- Added NotifyIcon workaround for Mono under Mac OS X
- Added confirmation box for empty master passwords
- Added radio buttons in auto-type sequence editing dialog to
choose between the default entry sequence and a custom one
- Added hint that group notes are shown in group tooltips
- Added test for KeePass 1.x plugins and an appropriate error
message
- Added interface for writing master password requirements
validation plugins
- Key provider plugin API: enhanced key query method by a
context information object
- Key provider plugin API: added 'DirectKey' property to key
provider base class that allows returning keys that are
directly written to the user key data stream
- Key provider plugin API: added support for exclusive plugins
- The '-keyfile' command line option now supports selecting key
providers (plugins)
- Auto-Type: added option to send an Alt keypress when only the
Alt modifier is active (option enabled by default)
- Added warning when trying to use only Alt or Alt-Shift as
global hot key modifier
- TrlUtil: added search functionality and toolbar
- TrlUtil: version is now shown in the window title
- Improved database file versioning and changed KDBX file
signature in order to prevent older versions from corrupting
newer files
- ShInstUtil now first tries to uninstall a previous native
image before creating a new one
- Improved file corruption error messages (instead of index out
of array bounds exception text, ...)
- The 'Open in Browser' command now opens all selected entries
instead of just the focused one
- Data-editing commands in the 'Tools' menu in the entry dialog
are now disabled when being in history viewing mode
- Right arrow key now works correctly in group tree view
- Entry list is now updated when selecting a group by pressing
a A-Z, 0-9 or numpad key
- Improved entry list performance and sorting behavior
- Improved splitter distance remembering
- Improved self-tests (KeePass now correctly terminates when a
self-test fails)
- The attachment column in the main window now shows the names
of the attached files instead of the attachments count
- Double-clicking an attachment field in the main window now
edits (if possible) or shows the first attachment of the
entry
- Group modification times are now updated after editing groups
- Improved scrolling of the entry list in item grouping mode
- Changed history view to show last modification times, titles
and user names of history entries
- KeePass now also automatically prompts to unlock when
restoring to a maximized window
- Improved file system root directory support
- Improved generic CSV importer preview performance
- When saving a file, its path is not remembered anymore, if
the option for opening the recently used file at startup is
disabled
- Improved auto-type input blocking
- Instead of a blank text, the entry dialog now shows
"(Default)" if the default auto-type sequence is used in a
window-sequence association
- Most broadcasted Windows messages do not wait for hanging
applications anymore
- Improved main window hiding at startup when the options to
minimize after opening a database and to tray are enabled
- Default tray action is now dependent on mouse button
- New entries can now inherit custom icons from their parent
groups
- Improved maximized state handling when exiting while the main
window is minimized
- Improved state updating in key creation form
- Improved MRU list updating performance
- Improved plugin incompatibility error message
- Deprecated {DOCDIR}, use {DB_DIR} instead ({DOCDIR} is still
supported for backward compatibility though)
- Last modification times of TAN entries are now updated
- F12 cannot be registered as global hot key anymore, because
it is reserved for kernel-mode / JIT debuggers
- Improved auto-type statement conversion routine in KeePass
1.x KDB file importer
- Improved column width calculation in file/data format dialog
- Improved synchronization status bar messages
- TrlUtil: base hash for forms is now computed using the form's
client rectangle instead of its window size
- Various code optimizations
- Minor other improvements
- Recycle bin is now cleared correctly when clearing the
database
2009-03-14: 2.07 Beta
- Added powerful trigger system (when events occur, check some
conditions and execute a list of actions; see options dialog
in 'Advanced'; more events / conditions / actions can be
added later based on user requests, and can also be provided
by plugins)
- Native master key transformations (rounds) are now computed
by the native KeePassLibC support library (which contains the
new, highly optimized transformation code used by KeePass
1.15, in two threads); on dual/multi core processors this
results in almost triple the performance as before (by
tripling the amount of rounds you'll get the same waiting
time as in 2.06, but the protection against dictionary and
guessing attacks is tripled)
- Added recycle bin (enabled by default, it can be disabled in
the database settings dialog)
- Added Salsa20 stream cipher for CryptoRandomStream (this
algorithm is not only more secure than ArcFour, but also
achieves a higher performance; CryptoRandomStream defaults to
Salsa20 now; port developers: KeePass uses Salsa20 for the
inner random stream in KDBX files)
- KeePass is now storing file paths (last used file, MRU list)
in relative form in the configuration file
- Added support for importing 1Password Pro CSV files
- Added support for importing KeePass 1.x XML files
- Windows XP and higher: added support for double-buffering in
all list views (including entry lists)
- Windows Vista and higher: added support for alpha-blended
marquee selection in all list views (including entry lists)
- Added 'EditEntry', 'DeleteEntry', 'AddEntries' and
'DeleteAllEntries' commands in KPScript scripting tool
- Added support for importing special ICO files
- Added option to exit instead of locking the workspace after
the specified time of inactivity
- Added option to minimize the main window after locking the
KeePass workspace
- Added option to minimize the main window after opening a
database
- Added support for exporting to KDBX files
- Added command to remove deleted objects information
- TrlUtil now checks for duplicate accelerator keys in dialogs
- Added controls in the entry editing dialog to specify a
custom text foreground color for entries
- KeePass now retrieves the default auto-type sequence from
parent groups when adding new entries
- The password character picking dialog can now be invoked
multiple times when auto-typing (use {PICKPASSWORDCHARS},
{PICKPASSWORDCHARS2}, {PICKPASSWORDCHARS3}, etc.)
- Added '-set-urloverride', '-clear-urloverride' and
'-get-urloverride' command line options
- Added '-set-translation' command line option
- Added option to print custom string fields in details mode
- Various entry listings now support custom foreground and
background colors for entry items
- Added 'click through' behavior for menus and toolbars
- File association methods are now UAC aware
- User interface is now blocked while saving to a file (in
order to prevent accidental user actions that might interfere
with the saving process)
- Improved native modifier keys handling on 64-bit systems
- Improved application startup performance
- Added image list processing workaround for Windows 7
- OK button is now reenabled after manually activating the key
file checkbox and selecting a file in the master key dialog
- The master key dialog now appears in the task bar
- When KeePass is minimized to tray and locked, pressing the
global auto-type hot key doesn't restore the main window
anymore
- The installer now by default installs KeePass 1.x and 2.x
into separate directories in the program files folder
- The optional autorun registry keys of KeePass 1.x and 2.x do
not collide anymore
- File type association identifiers of KeePass 1.x and 2.x do
not collide anymore
- File MRU list now uses case-insensitive comparisons
- Improved preview updates in Print and Data Viewer dialogs
- Message service provider is thread safe now
- Threading safety improvements in KPScript scripting plugin
- Improved control state updates in password generator dialog
- Improved master password validation in 'New Database' dialog
- Times are now stored as UTC in KDBX files (ISO 8601 format)
- Last access time fields are now updated when auto-typing,
copying fields to the clipboard and drag&drop operations
- KPScript scripting tool now supports in-memory protection
- Database is not marked as modified anymore when closing the
import dialog with Cancel
- Added asterisks in application policy editing dialog to make
clearer that changing the policy requires a KeePass restart
- Double-clicking a format in the import/export dialog now
automatically shows the file browsing dialog
- Improved permanent entry deletion confirmation prompt
- Improved font objects handling
- Expired groups are now rendered using a striked out font
- Improved auto-type statement conversion routine in KeePass
1.x KDB file importer
- Clipboard clearing countdown is not started anymore when
copying data fails (e.g. policy disabled)
- Improved synchronization with URLs
- The database maintenance dialog now only marks the database
as modified when it actually has removed something
- KeePass now broadcasts a shell notification after changing
the KDBX file association
- Improved warning message when trying to directly open KeePass
1.x KDB files
- Improved Linux / Mac OS X compatibility
- Improved MSI package (removed unnecessary dependency)
- TrlUtil: improved NumericUpDown and RichTextBox handling
- Installer now checks for minimum operating system version
- Installer: file association is now a task, not a component
- Installer: various other improvements
- Various code optimizations
- Minor other improvements
- When cloning a group tree using drag&drop, KeePass now
assigns correct parent group references to cloned groups and
entries
- Fixed crash when clicking 'Cancel' in the settings dialog
when creating a new database
2008-11-01: 2.06 Beta
- Translation system is now complete (translations to various
languages will be published on the KeePass translations page
when translators finish them)
- When saving the database, KeePass now first checks whether
the file on disk/server has been modified since it was loaded
and if so, asks the user whether to synchronize with the
changed file instead of overwriting it (i.e. multiple users
can now use a shared database on a network drive)
- Database files are now verified (read and hashed) after
writing them to disk (in order to prevent data loss caused by
damaged/broken devices and/or file systems)
- Completely new auto-type/URL placeholder replacement and
field reference engine
- On Windows Vista, some of the message boxes are now displayed
as modern task dialogs
- KeePass is now also available as MSI package
- Accessibility: added advanced option to optimize the user
interface for screen readers (only enable this option if
you're really using a screen reader)
- Added standard client icons: Tux, feather, apple, generic
Wiki icon, '$', certificate and BlackBerry
- Secure edit controls in the master key and entry dialogs now
accept text drops
- Added ability to store notes for each group (see 'Notes' tab
in the group editing window), these notes are shown in the
tooltip of the group in the group tree of the main window
- Group names in the entry details view are now clickable;
click it to jump to the group of the entry (especially useful
for jumping from search results to the real group of an
entry)
- Added 'GROUPPATH', 'DELAY' and 'PICKPASSWORDCHARS' special
placeholders to auto-type sequence editing dialog
- Wildcards (*) may now also appear in the middle of auto-type
target window filters
- For auto-type target window filters, regular expressions are
now supported (enclose in //)
- KeePass now shows an explicit file corruption warning message
when saving to a file fails
- Added option to prepend a special auto-type initialization
sequence for Internet Explorer and Maxthon windows to fix a
focus issue (option enabled by default)
- Added ability to specify a minimum length and minimum
estimated quality that master passwords must have (see help
file -> Features -> Composite Master Key; for admins)
- Added field reference creation dialog (accessible through
the 'Tools' menu in the entry editing dialog)
- Field references are dereferenced when copying data to the
clipboard
- Entry field references are now dereferenced in drag&drop
operations
- KeePass now follows field references in indirect auto-type
sequence paths
- Added internal field reference cache (highly improves
performance of multiple-cyclic/recursive field references)
- Added managed system power mode change handler
- Added "Lock Workspace" tray context menu command
- Moved all export commands into a new export dialog
- Added context menu command to export the selected group only
- Added context menu command to export selected entries only
- Added support for importing Password Memory 2008 XML files
- Added support for importing Password Keeper 7.0 CSV files
- Added support for importing Passphrase Keeper 2.70 HTML files
- Added support for importing data from PassKeeper 1.2
- Added support for importing Mozilla bookmarks JSON files
(Firefox 3 bookmark files)
- Added support for exporting to KeePass 1.x CSV files
- Added XSL transformation file to export passwords only
(useful for generating and exporting password lists)
- Added support for writing databases to hidden files
- When passing '/?', '--help' or similar on the command line,
KeePass will now open the command line help
- When single instance mode is enabled and a second instance is
started with command line parameters, these parameters are
now sent to the already open KeePass instance
- KeePass now ships with a compiled XML serializer library,
which highly improves startup performance
- Added support for Uniform Naming Convention (UNC) paths
(Windows) in the URL field (without cmd:// prefix)
- Added option to exclude expired entries in the 'Find' dialog
- Added option to exclude expired entries in quick searches
(toolbar; disabled by default)
- The box to enter the name of a custom string field is now a
combobox that suggests previously-used names in its drop-down
list
- Added Shift, Control and Alt key modifiers to placeholder
overview in the auto-type sequence editing dialog
- Added support for 64 byte key files which don't contain hex
keys
- Added Ctrl-Shift-F accelerator for the 'Find in this Group'
context menu command (group tree must have the focus)
- Added export ability to KPScript plugin
- Ctrl-Tab now also works in the password list, groups tree and
entry details view
- Added multi-user documentation
- Plugin developers: DocumentManagerEx now has an
ActiveDocumentSelected event
- Plugin developers: instead of manually setting the parent
group property and adding an object to a group, use the new
AddEntry / AddGroup methods of PwGroup (can take ownership)
- Plugins can now add new export file formats (in addition to
import formats)
- Plugins: added static message service event
- When using the installation package and Windows Vista,
settings are now stored in the user's profile directory
(instead of Virtual Store; like on Windows XP and earlier)
- Accessibility: multi-line edit controls do not accept tabs
anymore (i.e. tab jumps to the next dialog control), and
inserting a new line doesn't require pressing Ctrl anymore
- When moving entries, KeePass doesn't switch to the target
group anymore
- When deleting entries from the search results, the entry list
is not cleared anymore
- Improved entry duplication method (now also works correctly
in search results list and grouped list views)
- A more useful error message is shown when checking for
updates fails
- Improved formats sorting in the import dialog
- The 'Limit to single instance' option is now turned on by
default (multiple databases are opened in tabs)
- Removed 'sort up', 'sort down' and empty client icons
- Improved program termination code (common clean-up)
- Improved error message that is shown when reading/writing the
protected user key fails
- The key file selection dialog now by default shows all files
- Plugins: improved event handlers (now using generic delegate)
- Implemented several workarounds for Mono (1.9.1+)
- Added conformance level specification for XSL transformations
(in order to improve non-XML text exports using XSLT)
- Improved key state toggling for auto-type on 64-bit systems
- Removed several unnecessary .NET assembly dependencies
- Threading safety improvements
- Highly improved entry context menu performance when many
entries are selected
- Entry selection performance improvements in main window
- Improved entries list view performance (state caching)
- List view group assignment improvements (to avoid splitting)
- Removed tab stops from quality progress bars
- After moving entries to a different group, the original group
is selected instead of the target group
- Layout and text improvements in the master key creation form
- Text in the URL field is now shown in blue (if it's black in
the standard theme)
- Improved auto-type tab in entry dialog (default sequence)
- Improved AES/Rijndael cipher engine initialization
- Improved build scripts
- Various code optimizations
- Minor other improvements
- Installer: changed AppId to allow parallel installation of
KeePass 1.x and 2.x
- Minor other installer improvements
- The 'View' -> 'Show Columns' -> 'Last Access Time' menu
command now works correctly
- The 'Clipboard' -> 'Paste Entries' menu command now assigns
correct group references to pasted entries
2008-04-08: 2.05 Alpha
- Added placeholders for referencing fields of other entries
(dereferenced when starting URLs and performing auto-type,
see the auto-type placeholders documentation)
- Added natural sorting (when sorting the entry list, KeePass
now performs a human-like comparison instead of a simple
lexicographical one; this sorts entries with numbers more
logically)
- Added support for importing RoboForm passcards (HTML)
- Added {DELAY X} auto-type command (to delay X milliseconds)
- Added {GROUPPATH} placeholder (will be replaced by the group
hierarchy path to the entry; groups are separated by dots)
- When saving databases to removable media, KeePass now tries
to lock and unlock the volume, which effectively flushes all
system caches related to this drive (this prevents data loss
caused by removing USB sticks without correctly unmounting in
Windows first; but it only works when no other program is
using the drive)
- Added pattern placeholder 's' to generate special characters
of the printable 7-bit ASCII character set
- A " - Copy" suffix is now appended to duplicated entries
- After duplicating entries, the new entries are selected
- The list view item sorter now supports dates/times, i.e.
sorting based on entry times is logically now, not
lexicographically
- Added GUI option to focus the entry list after a successful
quick search (toolbar; disabled by default)
- Several entry context menu commands are now only enabled if
applicable (if the user name field of an entry is empty, the
'Copy User Name' command is disabled, etc.)
- Added a 'Tools' button menu in the entry editing dialog
- Tools button menu: Added command to select an application for
the URL field (will be prefixed with cmd://)
- Tools button menu: Added command to select a document for the
URL field (will be prefixed with cmd://)
- Added password generator option to exclude/omit
user-specified characters in generated passwords
- Added clearification paragraph in master key creation dialog
about using the Windows user account as source (backup, ...)
- Added menu command to synchronize with an URL (database
stored on a server)
- KeePass is now checking the network connection immediately
when trying to close the URL dialog
- Added file closed event arguments (IO connection info)
- Added "file created" event for plugins
- The document manager is now accessible by plugins
- Improved field to standard field mapping function
- KeePass now locks when the system is suspending (if the
option for locking on locking Windows or switching user is
enabled)
- All documents are now locked when the session is ended or the
user is switched (if the option for this is enabled)
- Moving a group into one of its child groups does not make the
group vanish anymore
- Auto-type validator now supports "{{}" and "{}}" sequences
(i.e. auto-type can send '{' and '}' characters)
- Undo buffers of secure edit controls are now cleared
correctly
- Disabling sorting does not clear search results anymore
- Entry editing dialog: Return and Esc work correctly now
- Column sort order indicators are now rendered using text
instead of images (improves Windows Vista compatibility)
- Splitter positions are now saved correctly when exiting after
minimizing the main window to tray
- Added handler code for some more unsupported image file
format features (when importing special ICO files)
- Translation system is now about 75% complete
- KeePass is now developed using Visual Studio 2008
- Minor UI improvements
- Minor Windows installer improvements
- The CSV importer does not crash anymore when clicking Cancel
while trying to import entries into an empty folder
- IO connection credentials saving works correctly now
- Fixed duplicate accelerator keys in the entry context menu
- Help button in master key creation dialog now works correctly
2008-01-06: 2.04 Alpha
- Added key provider API (it now is very easy to write a plugin
that provides additional key methods, like locking to USB
device ID, certificates, smart cards, ... see the developers
section in the online KeePass help center)
- Added option to show entries of sub-groups in the entry list
of a group (see 'View' -> 'Show Entries of Sub-Groups')
- Added XML valid characters filter (to prevent XML document
corruption by ASCII/DOS control characters)
- Added context menu command to print selected entries only
- Added option to disallow repeating characters in generated
passwords (both character set-based and pattern-based)
- Moved security-reducing / dangerous password generator
options to a separate 'Advanced' tab page (if you enable a
security-reducing option, an exclamation mark (!) is
appended to the 'Advanced' tab text)
- Added 'Get more languages' button to the translations dialog
- Added textual cue for the quick-search edit control
- The TAN wizard now shows the name of the group into which the
TANs will be imported
- Improved random number generator (it now additionally
collects system entropy manually and hashes it with random
numbers provided by the system's default CSP and a counter)
- For determining the default text in the 'Override default
sequence' edit box in the 'Edit Entry' window, KeePass now
recursively traverses up the group tree
- Last entry list sorting mode (column, ascending / descending)
is now remembered and restored
- First item in the auto-type entry selection window is now
focused (allowing to immediately navigate using the keyboard)
- Text in secure edit controls is now selected when the control
gets the focus the first time
- For TAN entries, only a command 'Copy TAN' is now shown in
the context menu, others (that don't apply) are invisible
- Regular expressions are validated before they are matched
- KeePass now checks the auto-type string for invalid entry
field references before sending it
- The clipboard auto-clear information message is now shown in
the status bar instead of the tray balloon tooltip
- Matching entries are shown only once in the search results
list, even when multiple fields match the search text
- First item of search results is selected automatically, if no
other item is already selected (selection restoration)
- Entries with empty titles do not match all windows any more
- Improved high DPI support in entry window
- When having enabled the option to automatically lock the
workspace after some time and saving a file fails, KeePass
will prompt again after the specified amount of time instead
of 1 second
- KeePass now suggests the current file name as name for new
files (save as, save as copy)
- The password generator profile combo box can now show more
profiles in the list without scrolling
- Improved native methods exception handling (Mono)
- Updated CHM documentation file
- TAN wizard now assigns correct indices to TANs after new line
characters
- Copying KeePass entries to the clipboard now works together
with the CF_CLIPBOARD_VIEWER_IGNORE clipboard format
- KeePass now uses the correct client icons image list
immediately after adding a custom icon to the database
- Fixed 'generic error in GDI+' when trying to import a 16x16
icon (thanks to 'stroebele' for the patch)
- File close button in the toolbar (multiple files) works now
- Fixed minor bug in provider registration of cipher pool
2007-10-11: 2.03 Alpha
- Added multi-document support (tabbed interface when multiple
files are opened)
- KeePass 2.x now runs on Windows 98 / ME, too! (with .NET 2.0)
- Added option to permute passwords generated using a pattern
(this allows generating passwords that follow complex rules)
- Added option to start minimized and locked
- Added support for importing Passwort.Tresor XML files
- Added support for importing SplashID CSV files
- Added '--exit-all' command line parameter; call KeePass.exe
with this parameter to close all other open KeePass instances
(if you do not wish to see the 'Save?' confirmation dialog,
enable the 'Automatically save database on exit' option)
- Added support for CF_CLIPBOARD_VIEWER_IGNORE clipboard format
(clipboard viewers/extenders compliant with this format
ignore data copied by KeePass)
- Added support for synchronizing with multiple other databases
(select multiple files in the file selection dialog)
- Added ability to specify custom character sets in password
generation patterns
- Added pattern placeholder 'S' to generate printable 7-bit
ASCII characters
- Added pattern placeholder 'b' to generate brackets
- Added support for starting very long command lines
- Entry UUID is now shown on the 'Properties' tab page
- Added Spanish language for installer
- KeePass now creates a mutex in the global name space
- Added menu command to save a copy of the current database
- The database name is now shown in the title of the 'Enter
Password' window
- Added "Exit" command to tray icon context menu
- Pressing the 'Enter' key in the password list now opens the
currently selected entry for editing
- Added '-GroupName:' parameter for 'AddEntry' command in the
KPScript KeePass scripting tool (see plugins web page)
- Added URL example in 'Open URL' dialog
- Added support for plugin namespaces with dots (nested)
- Added ability to specify the characters a TAN can consist of
- '-' is now treated as TAN character by default, not as
separator any more
- Added ability to search using a regular expression
- Notes in the entry list are now CR/LF-filtered
- Added {PICKPASSWORDCHARS} placeholder, KeePass will show a
dialog which allows you to pick certain characters
- The password generator dialog is now shown in the Windows
taskbar if the main window is minimized to tray
- Caps lock is now disabled before auto-typing
- Improved installer (added start menu link to the CHM help
file, mutex checking at uninstallation, version information
block, ...)
- Plugin architecture: added cancellable default entry action
event handler
- Added support for subitem infotips in various list controls
- Group name is now shown in the 'Find' dialog (if not root)
- Pressing the 'Insert' key in the password list now opens the
'Add Entry' dialog
- Last search settings are now remembered (except search text)
- The column order in the main window is now remembered
- Pressing F2 in the groups tree now initiates editing the name
of the currently selected group
- Pressing F2 in the password list now opens the editing dialog
- The 'About' dialog is now automatically closed when clicking
an hyperlink
- Entries generated by 'Tools' - 'Password Generator' are now
highlighted in the main window (visible and selected)
- Extended auto-close functionality to some more dialogs
- Protected user key is now stored in the application data
directory instead of the registry (when upgrading from 2.02,
first change the master key so it doesn't use the user
account credentials option!)
- Improved configuration file format (now using XML
serialization, allowing serialization of complex structures)
- Improved configuration saving/loading (avoid file system
virtualization on Windows Vista when using the installer,
improved out of the box support for installation by admin /
usage by user, better limited user account handling, ...)
- Improved password generator profile management (UI)
- Improved password generator character set definition
- Custom icons can be deleted from the database now
- Changed password pattern placeholders to support ANSI
- Removed plugin projects from core distribution (plugin source
codes will be available separately, like in 1.x)
- Window position and size is saved now when exiting KeePass
while minimized
- Splitter positions are restored correctly now when the main
window is maximized
- Password list refreshes now restore the previous view
(including selected and focused items, ...)
- Improved session ending handler
- Improved help menu
- Added more JPEG extensions in the icon dialog (JFIF/JFI/JIF)
- Navigation through the group tree using the keyboard is now
possible (entries list is updated)
- Options dialog now remembers the last opened tab page
- Synchronization: deletion information is merged correctly now
- Improved importing status dialog
- Improved search results presentation
- Title field is now the first control in the focus cycle of
the entry dialog
- The auto-type entry selection dialog now also shows custom /
imported icons
- The quick-find box now has the focus after opening a database
- The main window title now shows 'File - KeePass Password
Safe' instead of 'KeePass Password Safe [File]'; improved
tooltip text for tray icon
- The 'Save Attachments' context menu command is disabled now
if the currently selected entry doesn't have any attachments
- A more useful error message is shown when trying to import an
unsupported image format
- Replaced 'Search All Fields' by an additional 'Other' option
- Expired/used TAN entries are not shown in the expired entries
dialog any more
- UI now mostly follows the Windows Vista UI text guidelines
- Improved UI behavior in options dialog
- Improved text in password generator preview window
- After activating a language, the restart dialog is only shown
if the selected language is different from the current one
- Online help browser is now started in a separate thread
- Value field in 'Edit String' window now accepts 'Return' key
- The name prompt in the 'Edit String' window now initially
shows a prompt instead of an invalid field name warning
- Expired entries are now also shown when unlocking the
database
- Expired entries are not shown any more in the auto-type entry
selection dialog
- Various dialogs: Return and Esc work correctly now
- Improved key handling in password list
- Updated SharpZipLib component in KeePassLibSD
- Updated CHM documentation file
- Deleting custom string fields of entries works correctly now
- Fixed a small bug in the password list view restoration
routines (the item above the previous top one was visible)
- KeePass doesn't prevent Windows from shutting down any more
when the 'Close button minimizes window' option is enabled
- The "Application Policy Help" link in the options dialog
works now
- KeePass doesn't crash any more when viewing an history entry
that has a custom/imported icon
- Icon in group editing dialog is now initialized correctly
- Last TAN is not ignored any more by the TAN wizard
- Other minor features and bugfixes
2007-04-11: 2.02 Alpha
- Added "Two-Channel Auto-Type Obfuscation" feature, which
makes auto-type resistant against keyloggers; this is an opt-
in feature, see the documentation
- Added KDBX data integrity verification (partial content
hashes); note: this is a breaking change to the KDBX format
- Added internal data viewer to display attachments (text
files, images, and web documents); see the new 'View' button
in the 'Edit Entry' window and the new dynamic entry context
menu popup 'Show In Internal Viewer'
- External images can now be imported and used as entry icons
- Added KeePassLibC and KeePassNtv 64-bit compatibility
- Added Spamex.com import support
- Added KeePass CSV 1.x import support
- When adding a group, users are immediately prompted for a
name (like Windows Explorer does when creating new folders)
- Added prompts for various text boxes
- The installer's version is now set to the KeePass version
- The key prompt dialog now shows an 'Exit' button when
unlocking a database
- Added F1 menu shortcut for opening the help file/page
- URL override is now displayed in the entry view
- Added ability to check if the composite key is valid
immdiately after starting to decrypt the file
- Added ability to move groups on the same level (up / down),
use either the context menu or the Alt+... shortcuts
- The database isn't marked as modified any more when closing
the 'Edit Entry' dialog with OK but without modifying
anything
- Added version information for native transformations library
- Local file name isn't displayed any more in URL dialog
- Improved path clipping (tray text, ...)
- Improved data field retrieval in SPM 2007 import module
- Improved attachments display/handling in 'Edit Entry' dialog
- Improved entry context menu (added some keyboard shortcut
indicators, updated icons, ...)
- Improved performance of secure password edit controls
- Clearified auto-type documentation
- Installer uses best compression now
- Improved auto-type state handling
- In-memory protected custom strings are hidden by asterisks
in the entry details window now
- Improved entropy collection dialog
- Updated import/export documentation
- Added delete shortcut key for deleting groups
- Instead of showing the number of attachments in the entry
view, the actual attachment names are shown now
- Improved asterisks hiding behavior in entry view
- New entries now by default inherit the icon of their parent
groups, except if it's a folder-like icon
- Updated AES code in native library
- Improved native library detection and configuration
- Improved entry/group dragging behavior (window updates, ...)
- A more useful error message is shown when you try to export
to a KDB3 file without having KeePassLibC installed
- Configuration class supports DLL assemblies
- KeePass doesn't create an empty directory in the application
data path any more, if the global config file is writable
- Clipboard isn't cleared any more at exit if it doesn't
contain data copied by KeePass
- Empty auto-type sequences in custom window-sequence pairs now
map to the inherited ones or default overrides, if specified
- Cleaned up notify tray resources
- Improved help menu
- A *lot* code quality improvements
- ShInstUtil doesn't crash any more when called without any
parameter
- Auto-type now sends modifier keys (+ for Shift, % for Alt,
...) and character groups correctly
- Fixed alpha transparency multi-shadow bug in groups list
- Overwrite confirmation now isn't displayed twice any more
when saving an attachment from the 'Edit Entry' window
- User interface state is updated after 'Select All' command
- Auto-Type warnings are now shown correctly
- Fixed auto-type definition in sample entry (when creating a
new database)
- The global auto-type hot key now also works when KeePass is
locked and minimized to tray
- Fixed bug in initialization of Random class (KeePass could
have crashed 1 time in 2^32 starts)
2007-03-23: 2.01 Alpha
- Improved auto-type engine (releases and restores modifier
keys, improved focusing, etc.)
- Implemented update-checking functionality
- Added KPScript plugin (see source code package) for scripting
(details about it can be found in the online help center)
- Added Whisper 32 1.16 import support
- Added Steganos Password Manager 2007 import support
- Search results now show the full path of the container group
- Entry windows (main password list, auto-type entry selection
dialog, etc.) now show item tooltips when hovering over them
- Added window box drop-down hint in the auto-type item dialog
- Database maintenance history days setting is now remembered
- Improved main window update after importing a file
- Improved command line handling
- If opening/starting external files fails, helpful messages
are displayed now
- Completely new exception handling mechanism in the Kdb4File
class (allows to show more detailed messages)
- New message service class (KeePassLib.Utility.MessageService)
- Added option to disable remembering the password hiding
setting in the 'Edit Entry' window
- Added menu shortcuts for opening the current entry URL
(Ctrl+U) and performing current entry auto-type (Ctrl+V)
- Changed file extension to KDBX
- Password generation profiles are now saved when the dialog is
closed with 'Close'/'Cancel'
- Entry URL overrides now precede the global URL override
- Standard password generation profiles are now included in the
executable file
- Restructured plugin architecture, it's much clearer now
(abstract base class, assembly-internal manager class, ...)
- Only non-empty strings are now displayed in the entry view
- Current working directory is set to the KeePass application
directory before executing external files/URLs
- Changed fields shown in the auto-type entry selection dialog:
title, user name and URL are displayed instead of title, user
name and password
- Clearified clipboard commands in context menus
- Help buttons now open the correct topics in the CHM
- Fixed name in the installer script
- Workspace is not locked any more if a window is open (this
prevents data loss)
- The 'Find' toolbar button works now
- The OK button in the Import dialog is now enabled when you
manually enter a path into the file text box
- Fixed entry list focus bug
- Fixed menu focus bug
- The 'Copy Custom String' menu item doesn't disappear any more
- Fixed enabled/disabled state of auto-type menu command
2007-03-17: 2.00 Alpha
- Strings containing quotes are now passed correctly over the
command-line
- Created small help file with links to online resources
- Rewrote cipher engines pool
- Restructured KeePassLib
- Added dialog for browser selection
- Added option to disable searching for key files on removable
media
- Improved KDB3 support (especially added support for empty
times as created by the KeePass Toolbar for example)
- Added confirmations for deleting entries and groups
- Fixed a lot of bugs and inconsistencies; added features
- Fixed a bug in the 'Start KeePass at Windows startup'
registration method
- Added custom split container control to avoid focus problems
- Clipboard is only cleared if it contains KeePass data
- New system for configuration defaults
- A LOT of other features, bugfixes, ...
... (a lot of versions here) ...
2006-10-07: 2.00 Pre-Alpha 29
- Various small additions and bugfixes
2006-10-06: 2.00 Pre-Alpha 28
- Implemented entry data drag-n-drop for main entry list
- Implemented URL overriding
- Added {} repeat operator in password generator
- Added database maintenance dialog (deleting history entries)
- Custom entry strings are now shown in the entry preview
- Added alternative window layout: side by side
- A lot of other features and bugfixes
... (some versions here) ...
2006-09-17: 2.00 Pre-Alpha 25
- Fixed exception that occured when WTS notifications are
unavailable
2006-09-16: 2.00 Pre-Alpha 24
- Implemented quality progress bars (gradient bars)
- Added special key codes into placeholder insertion field in
the 'Edit AutoType' dialog
- Currently opened windows are listed in the 'Edit AutoType'
dialog
- Entries can be copied/pasted to/from Windows clipboard
- Added {APPDIR}, {DOCDIR} and {GROUP} codes
- Foreground and background colors can be assigned to entries
- Expired entries are displayed using a striked-out font
- Password generator supports profiles now
- Password generator supports patterns now
- VariousImport: Added support for Password Exporter XML files
- A _lot_ of other features and bugfixes
2006-09-07: 2.00 Pre-Alpha 23
- Internal release
2006-09-07: 2.00 Pre-Alpha 22
- Improved password quality estimation
- Implemented secure edit controls (in key creation dialog, key
prompt dialog and entry editing dialog)
2006-09-05: 2.00 Pre-Alpha 21
- Removed BZip2 compression
- Added font selection for main window lists
- Added file association creation/removal buttons in the
options dialog
- Installer supports associating KDB files with KeePass
- Added option to run KeePass at Windows startup (for current
user; see Options dialog, Integration page)
- Added default tray action (sending/restoring to/from tray)
- Added single-click option for default tray action
- Added option to automatically open last used database on
KeePass startup (see Options dialog, Advanced page)
- Added option to automatically save the current database on
exit and workspace locking (Options dialog, Advanced page)
- Implemented system-wide KeePass application messages
- Added 'Limit to single instance' option
- Added option to check for update at KeePass startup
- Added options to show expired entries and entries that will
expire soon after opening a database
- Added option to generate random passwords for new entries
- Links in the entry view are clickable now
- Links in the notes field of the entry dialog are clickable
now
- Fixed context menu auto-type command (inheriting defaults)
- Improved entry list state updating performance
- Classic databases are listed in the main MRU list, prefixed
with '[Classic]'
- Other features and bugfixes
2006-09-03: 2.00 Pre-Alpha 20
- First testing release
... (a lot of versions here) ...
2006-03-21: 2.00 Pre-Alpha 0
- Project started
|