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 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092
|
2011-01-02 Rafael Ostertag <rafi@guengel.ch>
* [r3525] po/de.po, po/yapet.pot: Updated.
* [r3522] po/de.po, po/yapet.pot: Updated.
* [r3521] NEWS, configure.ac: Bumped version
* [r3520] yapet/passwordrecord.cc: More specific about friend class
* [r3519] yapet/mainwindow.cc: More specific about friend class
* [r3518] support/makesolpackages: Unified build procedure for
solaris packages.
* [r3517] yapet/main.cc: timeout will be initialized in future.
* [r3516] ui/colors.cc: Set attributes for hidden text to the same
as with focuse, since it does not work without colors.
* [r3515] yapet/mainwindow.h: More specific about friend class
* [r3514] yapet/passwordrecord.h: More specific about friend class
* [r3513] ui/curswa.h: Fixed memory allocation bug preventing YAPET
running with CURSES.
2010-12-31 Rafael Ostertag <rafi@guengel.ch>
* [r3483] Makefile.cvs: ChangeLog now shows revisions.
* [r3481] LICENSE, TODO: Updated
* [r3480] BUGS: Updated
* [r3479] NEWS: Updated
2010-12-30 Rafael Ostertag <rafi@guengel.ch>
* [r3477] doc/Doxyfile.in, doc/README.sgml.in, doc/bugreport.sgml,
doc/license.sgml, doc/supportedplatforms.sgml: Updated.
* [r3476] ui/checkboxgroup.cc: Whitespace cleanup.
* [r3475] yapet/passwordrecord.cc, yapet/passwordrecord.h: Resize
is now better handled and won't lead to SEGV. Some quirks still
exist.
* [r3474] ui/inputwidget.h: Added asserts to constructors/operators
not to be called.
* [r3473] ui/colors.cc: Updated.
* [r3472] po/POTFILES.in, po/de.po, po/yapet.pot: Updated.
* [r3471] support/buildenv.gcc_GUENGEL,
support/buildenv.solstudio_CURSES,
support/buildenv.solstudio_GUENGEL,
support/buildenv.solstudio_XCURSES: Some scripts added.
* [r3470] ui/inputwidget.cc: Check whether character is printable
added to processInput().
* [r3469] configure.ac: Added checks for functions.
* [r3468] yapet/passwordrecord.cc: Fixed ifdef. Included signal.h.
* [r3467] yapet/lockscreen.cc, yapet/lockscreen.h,
yapet/mainwindow.cc, yapet/mainwindow.h, yapet/passwordrecord.cc,
yapet/passwordrecord.h: Screen will be locked with password
record open.
* [r3466] yapet/Makefile.am, yapet/lockscreen.cc,
yapet/lockscreen.h, yapet/mainwindow.cc, yapet/mainwindow.h:
Locking the screen is now handled by a dedicated class.
* [r3465] ui/listwidget.h: Fixed variable declaration.
* [r3464] ui/curswa.h: Some more changes to make it compile under
NetBSD.
* [r3463] ui/checkboxgroup.cc: replaced true by TRUE when calling
keypad().
* [r3462] configure.ac, ui/button.cc, ui/checkboxgroup.cc,
ui/curswa.h, ui/inputwidget.cc, ui/listwidget.h: Changes to made
it compile under NetBSD.
* [r3461] yapet/mainwindow.cc, yapet/mainwindow.h: Added patch for
fixing bug #46 : YAPET allows by-passing lock screen on Solaris
when linked against libcurses.
* [r3460] ui/inputwidget.cc, ui/inputwidget.h: Support for
displaying passwords hidden
* [r3459] csv2yapet, doc, intl, intl/plural.c, po, tests: svn
properties changed
* [r3458] yapet/passwordrecord.cc: Display password hidden when
read-only.
* [r3457] yapet/passwordrecord.h: Commented method
2010-12-29 Rafael Ostertag <rafi@guengel.ch>
* [r3455] ui/colors.cc, ui/colors.h: Added color for hidding text.
* [r3454] ui/curswa.h: wrapper functions zero memory out before
freeing.
2010-12-28 Rafael Ostertag <rafi@guengel.ch>
* [r3450] crypt/file.cc: Implemented preformance suggestion of
cppcheck.
* [r3449] ui/inputwidget.cc: Screen should not flicker anymore when
typing.
2010-09-19 Rafael Ostertag <rafi@guengel.ch>
* [r3372] doc/copyright.sgml: Updated copyright.
* [r3368] ui/colors.h: Comment.
* [r3367] Makefile.cvs: BINDIR for solaris.
* [r3366] BUGS: Updated.
* [r3365] doc/README.Cygwin.sgml.in: updated.
* [r3364] ui/colors.h: Made it compile under cygwin.
* [r3363] doc/README.Cygwin.sgml.in: updated.
* [r3362] doc/README.Cygwin.sgml.in: updated.
* [r3361] doc/README.sgml.in: Updated.
* [r3360] doc/supportedplatforms.sgml: updated.
2010-09-18 Rafael Ostertag <rafi@guengel.ch>
* [r3359] po/de.po, po/yapet.pot: Updated
* [r3358] NEWS: Updated.
* [r3357] doc/yapet.sgml.in: Documented the config file option for
the lock screen password input timeout. Fixed some typos. Some
rephrasing.
* [r3356] yapet/cfg.cc, yapet/cfg.h, yapet/cfgfile.cc,
yapet/cfgfile.h, yapet/globals.cc, yapet/globals.h,
yapet/main.cc, yapet/mainwindow.cc: Added support for configuring
the password input timeout of the lock screen.
* [r3355] yapet/passwordrecord.cc: Silenced compiler warnings.
* [r3354] ui/inputwidget.cc: Silenced compiler warnings.
2010-09-17 Rafael Ostertag <rafi@guengel.ch>
* [r3353] po/yapet.pot: Updated.
* [r3352] doc/yapet.sgml.in: added bug.
* [r3351] crypt/file.cc, ui/curswa.h: Finally fixed bug #25.
* [r3350] yapet/passworddialog.cc, yapet/passworddialog.h: Compiles
now under gcc.
* [r3349] po/de.po: Some minor changes.
* [r3348] crypt/file.cc, ui/curswa.h: Tried to really fix bug #25,
thus it has been reopened.
* [r3347] NEWS: Updated.
* [r3346] yapet/cfg.cc, yapet/cfg.h, yapet/cfgfile.cc,
yapet/cfgfile.h, yapet/globals.cc, yapet/globals.h,
yapet/main.cc, yapet/mainwindow.cc: Whether or not yapet can be
quit from the locked screen can be configured in the config file.
* [r3345] yapet/mainwindow.cc, yapet/passworddialog.cc,
yapet/passworddialog.h: Fixed bug #29
(http://bugs.guengel.ch/show_bug.cgi?id=29)
* [r3344] csv2yapet/csvimport.cc, csv2yapet/csvimport.h,
csv2yapet/main.cc: Updated copyright notice.
* [r3343] ui/intinwidget.cc, ui/intinwidget.h, yapet/cfg.cc,
yapet/cfg.h, yapet/consts.cc, yapet/consts.h, yapet/globals.cc,
yapet/globals.h, yapet/pwgen/charpool.cc, yapet/pwgen/charpool.h,
yapet/pwgen/pwgen.cc, yapet/pwgen/pwgen.h,
yapet/pwgen/pwgenexception.h, yapet/pwgen/rng.cc,
yapet/pwgen/rng.h, yapet/pwgendialog.cc, yapet/pwgendialog.h:
Updated Copyright notice.
* [r3342] crypt/bdbuffer.cc, crypt/bdbuffer.h, crypt/crypt.cc,
crypt/crypt.h, crypt/file.cc, crypt/file.h, crypt/key.cc,
crypt/key.h, crypt/partdec.cc, crypt/partdec.h, crypt/record.h,
crypt/structs.h, crypt/yapetexception.h, ui/basewindow.cc,
ui/basewindow.h, ui/button.cc, ui/button.h, ui/checkboxgroup.cc,
ui/checkboxgroup.h, ui/colors.cc, ui/colors.h, ui/curswa.h,
ui/dialogbox.cc, ui/dialogbox.h, ui/inputwidget.cc,
ui/inputwidget.h, ui/listwidget.h, ui/messagebox.cc,
ui/messagebox.h, ui/misc.cc, ui/misc.h, ui/passwordwidget.cc,
ui/passwordwidget.h, ui/secstring.h, ui/uiexception.h,
yapet/cfgfile.cc, yapet/cfgfile.h, yapet/fileopen.cc,
yapet/fileopen.h, yapet/main.cc, yapet/mainwindow.cc,
yapet/mainwindow.h, yapet/passworddialog.cc,
yapet/passworddialog.h, yapet/passwordrecord.cc,
yapet/passwordrecord.h, yapet/searchdialog.cc,
yapet/searchdialog.h, yapet/statusbar.cc, yapet/statusbar.h:
Updated copyright notice.
* [r3341] configure.ac: Added checks for siglongjmp/sigsetjmp et
al.
* [r3340] yapet/mainwindow.cc, yapet/passworddialog.cc,
yapet/passworddialog.h: Fixed bug #27
(http://bugs.guengel.ch/show_bug.cgi?id=27).
* [r3339] yapet/mainwindow.cc: fixed bug #28
(http://bugs.guengel.ch/show_bug.cgi?id=28).
* [r3338] ui/passwordwidget.cc, ui/passwordwidget.h: Arrow keys are
not recognized anymore by passwordwidget.
* [r3337] ui/inputwidget.cc: Removed blank line.
* [r3336] po/de.po, po/yapet.pot: Added translations.
* [r3335] po/POTFILES.in: Removed roinwidget.*
* [r3334] ui/inputwidget.h: Made it compile under gcc45 +
* [r3333] ui/curswa.h, ui/inputwidget.cc, yapet/mainwindow.cc,
yapet/passwordrecord.cc, yapet/passwordrecord.h: Fixed bug #31
(http://bugs.guengel.ch/show_bug.cgi?id=31).
* [r3332] configure.ac: bumped version number to 0.7.
* [r3331] ui/curswa.h: Added key for CTRL-E. May be there is
already a definition, but i didn't find it...
* [r3330] ui/button.cc, ui/button.h: Support for read-only buttons
added.
* [r3329] ui/inputwidget.cc, ui/inputwidget.h: Fixed a SIGSEGV
introduced by removing the explicit read-only widget.
* [r3328] yapet/pwgendialog.cc, yapet/pwgendialog.h: Adopted to the
changes of the read-only widget.
* [r3327] ui/Makefile.am, ui/inputwidget.cc, ui/inputwidget.h,
ui/intinwidget.cc, ui/intinwidget.h, ui/roinwidget.cc,
ui/roinwidget.h: Explicit read-only widget has been removed. The
input widget now has a flag for setting read-only mode.
* [r3326] po/yapet.pot: Added translation.
* [r3325] ui/basewindow.cc: gettextized string.
* [r3324] po/de.po: Added translation.
* [r3323] po/POTFILES.in: added ui/basewindow.cc.
* [r3322] yapet/pwgendialog.cc: Fixed bug #16
(http://bugs.guengel.ch/show_bug.cgi?id=16).
* [r3321] yapet/pwgendialog.h: Renamed createWindows() to
createWindow().
* [r3320] yapet/pwgendialog.cc: Renamed createWindows() to
createWindow().
* [r3319] crypt/file.cc, ui/curswa.h: Fixed bug #25
(http://bugs.guengel.ch/show_bug.cgi?id=25).
* [r3318] ui/basewindow.cc, ui/basewindow.h, yapet/main.cc: Fixed
bug #30 (http://bugs.guengel.ch/show_bug.cgi?id=30).
2010-09-16 Rafael Ostertag <rafi@guengel.ch>
* [r3317] Makefile.cvs: Introduced BINDIR variable.
* [r3316] doc/Makefile.am: Fixed typo in comment.
2010-06-29 Rafael Ostertag <rafi@guengel.ch>
* [r3255] configure.ac: Use default values for AC_PROG_(CC|CXX).
2010-06-23 Rafael Ostertag <rafi@guengel.ch>
* [r3254] po/de.po, po/yapet.pot, yapet/pwgen/pwgenexception.h:
Patch for bug #33 (http://bugs.guengel.ch/show_bug.cgi?id=33)
applied. Source compiles now under gcc 4.5/4.6.
2009-09-05 Rafael Ostertag <rafi@guengel.ch>
* [r2925] disttest, support/disttest, support/disttest/disttest:
Moved to support.
2009-09-04 Rafael Ostertag <rafi@guengel.ch>
* [r2921] yapet/pwgen/rng.cc: Added patch for fixing bug #26
(http://bugs.guengel.ch/show_bug.cgi?id=26)
* [r2920] disttest/disttest: fixed make target.
* [r2919] disttest/disttest: Added more make targets.
* [r2916] po/ChangeLog: Updated.
* [r2909] tests/rng1.cc: fixed typo.
* [r2908] support/Makefile: Creates the html files used on the
website.
* [r2907] support: Directory holding stuff making my life easier.
* [r2904] doc/DESIGN.sgml.in, doc/INSTALL.sgml.in,
doc/README.Cygwin.sgml.in, doc/README.sgml.in, doc/caution.sgml,
doc/csv2yapet.sgml.in, doc/license.sgml, doc/pwrecord.sgml,
doc/yapet.sgml.in: Spell check and other edits.
* [r2903] doc/Makefile.am: Put $(htmldoc_DATA) and
$(dist_man1_MANS) back to dist-hook rule.
2009-09-03 Rafael Ostertag <rafi@guengel.ch>
* [r2902] doc/INSTALL.sgml.in: Updated.
* [r2901] .: Modified svn:ignore keyword.
* [r2900] doc/yapet.sgml.in: Added description of the (V: 1) / (V:
2) displayed in yapet.
* [r2899] doc/DESIGN.sgml.in: Added description of changes in
header in version 0.6.
* [r2898] doc/README.sgml.in: Added "Important Changes" section.
Added description of changes in 0.6 in "Important Changes"
section.
* [r2897] doc/Makefile.am: Implemented the use of w3m for creating
text files if available due to the use of tables in the source
html files.
* [r2896] configure.ac: Added check for w3m, which is used for
creating text files from html files containing tables.
* [r2895] THANKS: Removed empty line.
* [r2894] NEWS: Updated.
* [r2892] Makefile.am: Added TANKS file to EXTRA_DIST.
* [r2891] THANKS: Wrote THANKS.
* [r2890] yapet/main.cc: fixed spelling.
* [r2889] doc/supportedplatforms.sgml: be more specific.
* [r2888] configure.ac: Removed EVP function checks which failed
because the functions were macros.
* [r2887] tests/Makefile.am: Added custom silent rules
* [r2886] doc/Makefile.am: Added custom silent rules
* [r2885] config.guess, config.sub: Does not belong into
repository.
* [r2884] Makefile.am, configure.ac: Tweaked.
2009-09-02 Rafael Ostertag <rafi@guengel.ch>
* [r2882] Makefile.am: enable asserts in distcheck.
* [r2881] po/yapet.pot: Line numbers updated.
* [r2880] po/de.po: removed obsolete entry.
2009-09-01 Rafael Ostertag <rafi@guengel.ch>
* [r2879] doc/Makefile.am: Tweaked.
* [r2878] doc/yapet.sgml.in: updated with instructions for
pwgen_rng configuration file option.
* [r2877] configure.ac: Version bumped to 0.6.
* [r2876] NEWS: Updated.
* [r2875] po/yapet.pot: Updated.
* [r2874] po/de.po: Updated.
* [r2873] tests/cfgfile1.cc: Added tests for pwgen_rng option.
* [r2872] yapet/pwgen/pwgen.cc: Added static_cast to silence
compiler warnings.
* [r2871] tests/cfgfile2.rc: updated in order to test pwgen_rng
option.
* [r2870] yapet/main.cc: Added code for handling pwgen_rng
configuration file option.
* [r2869] yapet/cfg.cc, yapet/cfg.h, yapet/cfgfile.cc,
yapet/cfgfile.h, yapet/globals.cc, yapet/globals.h: Added code
for handling pwgen_rng configuration file option.
* [r2868] yapet/pwgendialog.cc: rephrased comment.
* [r2867] yapet/pwgen/rng.cc, yapet/pwgen/rng.h: Moved int
rng_available, check_availability() into static scope. Added new
static method getAvailableRNGs().
* [r2866] tests/pwgen1.cc: Added code to test the switch of
Character Pools and RNG.
* [r2865] yapet/pwgen/pwgen.cc, yapet/pwgen/pwgen.h: New method
setNewRNG() introduced. Made changes to 'dynamically' switch to a
different RNG.
* [r2864] yapet/pwgendialog.h: removed unused declarations.
* [r2863] tests/rng1.cc: rephrased message showed when skipping
/dev/random.
* [r2862] yapet/main.cc: Fixed description of --help output.
* [r2861] tests/Makefile.am, tests/foreign.cc: Finished foreign
tests.
* [r2860] configure.ac: Some tweaks. More SSL functions are checked
for existence.
* [r2859] tests/f64be0.5.pet.in, tests/f64be0.6.pet.in: Replaced
with proper version.
* [r2858] tests/f32be0.5.pet.in: Updated with proper version.
* [r2857] tests/f32be0.6.pet.in: Added test file for 32bit big
endian version 0.6.
* [r2856] tests/f64le0.6.pet.in: A proper version now.
* [r2855] tests/f64le0.6.pet.in: Added 64 bit little endian version
0.6 test file.
* [r2854] tests/f64le0.5.pet.in: Updated f64le0.5.pet.in with a
version that is surely from a 64bit little endian machine.
* [r2853] yapet/main.cc: Added output showing the architecture
(32/64bits, little/big endian).
* [r2852] configure.ac: Added check for sizeof(int*) in order to
find out architecture.
* [r2851] tests/f32le0.6.pet.in: Test file for 32bit little endian
version 0.6.
* [r2850] crypt/crypt.h: Fixed memory leak in decrypt(); leak
occurred only when exception was thrown from Record<T>.
* [r2849] crypt/file.cc: Removed empty line.
* [r2848] crypt/file.cc: Implemented readHeader() which returns the
decrypted 32/64bit header; the method serves as common code base
for other methods requiering the decrypted file header. Updated
validateKey(), getMasterPWSet(), and getFileVersion() in order to
use the new readHeader() method.
* [r2847] tests/f64be0.6.pet.in: Added 64bit big endian version 0.6
test file.
* [r2846] yapet/pwgen/rng.cc: #include'd string.h used for
strerror().
* [r2845] tests/bdbuffer.cc, tests/cfgfile1.cc, tests/charpool1.cc,
tests/charpool2.cc, tests/corrupt.cc, tests/enc.cc,
tests/endianess.cc, tests/file.cc, tests/file2.cc,
tests/file3.cc, tests/file4.cc, tests/file5.cc, tests/foreign.cc,
tests/import1.cc, tests/import10.cc, tests/import11.cc,
tests/import12.cc, tests/import13.cc, tests/import14.cc,
tests/import2.cc, tests/import3.cc, tests/import4.cc,
tests/import5.cc, tests/import6.cc, tests/import7.cc,
tests/import8.cc, tests/import9.cc, tests/key.cc,
tests/partdec.cc, tests/pwgen1.cc, tests/record.cc,
tests/rng1.cc: Silencing of tests is now done doing dup2() to
STDOUT_FILENO using the fd from opening /dev/null.
* [r2844] tests/Makefile.am: Moved DISTCLEANFILES to CLEANFILES.
Remove rm -rf foreign.pet corrupt.pet from clean-local target.
* [r2843] crypt/file.h: readHeader() has to be const.
* [r2842] crypt/file.h: updated the method declaration for
readHeader(const Key& key, Record<FileHeader_32>** ptr32,
Record<FileHeader_64>** ptr64) in order to match the definition.
* [r2841] crypt/file.h: updated comment. Added declaration for new
method readHeader(const Key& key, FileHeader_32** ptr32,
FileHeader_64** ptr64) which is introduced to give a common code
base for reading and decrypting the file header.
* [r2840] crypt/yapetexception.h: Added new exception number
NULLPOINTER.
* [r2839] crypt/file.h: removed unused unions.
* [r2838] tests/f32be0.5.pet.in, tests/f64be0.5.pet.in,
tests/f64le0.5.pet.in: Removed svn:keywords property.
* [r2837] tests/f32le0.5.pet.in: Re-added file.
* [r2836] tests/f32le0.5.pet.in: Removed file due to corruption
2009-08-31 Rafael Ostertag <rafi@guengel.ch>
* [r2834] tests/tests.h: Removed commented-out code.
* [r2833] tests/Makefile.am: Added more files to DISTCLEANFILES.
Implicit rule for .pet.in files added.
* [r2832] tests/bdbuffer.cc, tests/cfgfile1.cc, tests/charpool1.cc,
tests/charpool2.cc, tests/corrupt.cc, tests/enc.cc,
tests/foreign.cc, tests/import1.cc, tests/import10.cc,
tests/import11.cc, tests/import12.cc, tests/import13.cc,
tests/import14.cc, tests/import2.cc, tests/import3.cc,
tests/import4.cc, tests/import5.cc, tests/import6.cc,
tests/import7.cc, tests/import8.cc, tests/import9.cc,
tests/key.cc, tests/partdec.cc, tests/pwgen1.cc, tests/record.cc,
tests/rng1.cc: Added code to conditionally silence tests (unless
TESTS_VERBOSE is #define'd).
* [r2831] tests/endianess.cc: New tests added for checking endian
conversion functions.
* [r2830] tests/file.cc, tests/file2.cc, tests/file3.cc,
tests/file4.cc, tests/file5.cc: Added code to conditionally
silence tests (unless TESTS_VERBOSE is #define'd). Assert()s
added in order to make sure the files created are version 2.
* [r2829] crypt/file.cc: Make File class read headers created on
32/64 bit archs. New headers are written always using a 64bit
data type storing when password was set. New method
getFileVersion() implemented. Updated getMasterPWSet(),
writeHeader(), lastModified(), initFile() in order to handle the
two different header structs.
* [r2828] crypt/file.h: Improved function for handling reading and
writing big endian values to disk (template function now). Big
endian conversion function now in header file. Updated comments.
Added declaration for new method getFileVersion(). Updated types
related to time when pw was set.
* [r2827] crypt/structs.h: Added a new enum FILE_VERSION. Added
anonymous enums for header sizes. There are two header structs
now, one using int32_t the other int64_t for storing the time the
password was set.
* [r2826] crypt/record.h: Record::operator=(const BDBuffer& bdb)
now also checks for BDBuffer::size() greater than the size of the
Record type <T>. Exceptions will now have set the exception
number if buffer is too small/big.
* [r2825] crypt/yapetexception.h: Added additional information
(EXNUM) to YAPETException. Mainly due to change of the file
version.
* [r2824] yapet/mainwindow.cc: Added code to handle the new return
type of File::getMasterPWSet(). Added code for displaying the
file version of the loaded file.
* [r2823] yapet/pwgendialog.cc: Added YAPET::PWGEN::AUTO in switch
statement in order to silence compiler.
* [r2822] yapet/pwgen/charpool.cc: Removed unused variable and
comment.
* [r2821] yapet/pwgen/pwgen.cc: Added static casts in order to
silence compiler.
* [r2820] ui/intinwidget.h: Return value of getDigitsForType() is
statically cast to int in order to silence compiler.
* [r2819] doc/Doxyfile.in: Enabled DOT, call and caller graphs.
* [r2818] tests/f32le0.5.pet.in: Re-added file.
* [r2817] doc/Makefile.am: fixed bug #22
(http://bugs.guengel.ch/show_bug.cgi?id=22).
* [r2816] configure.ac: Removed check for unsigned long long.
Reordered checks.
* [r2815] configure.ac: AC_TYPE_UINT64_T changed to
AC_TYPE_INT64_T.
* [r2814] yapet/pwgen/rng.cc: The default rng used when AUTO is
specified is now /dev/urandom.
* [r2813] tests/endianess.test: Test file holding uint[16|32|64]_t
values in big endian order.
* [r2812] tests/Makefile.am: Added specific test files in
EXTRA_DIST. Added one new test for testing endianess conversion.
* [r2811] tests/testpaths.h.in: Added some more paths.
* [r2810] configure.ac: Added 64bits type checks.
* [r2809] tests/foreign.pet.in: removed since we need more specific
test files.
* [r2808] tests/f32be0.5.pet.in, tests/f32le0.5.pet.in,
tests/f64be0.5.pet.in, tests/f64le0.5.pet.in: Added test files
for pre 0.6 versions.
* [r2807] configure.ac: bumped version to 0.6alpha1.
2009-08-25 Rafael Ostertag <rafi@guengel.ch>
* [r2796] yapet/pwgen/rng.cc: Fixed in RNG::devrandom() what patch
http://bugs.guengel.ch/attachment.cgi?id=8 breaks: Handling of
pointer arithmetic is only done if no error occurs, not even
EAGAIN or EINTR.
* [r2795] yapet/pwgen/rng.cc: Added patch
(http://bugs.guengel.ch/attachment.cgi?id=8) included in bug
report #19 (http://bugs.guengel.ch/show_bug.cgi?id=19) which does
only abort read from /dev/[u]random in case of an error != EAGAIN
&& != EINTR. If too few bytes are read, it will now try again.
* [r2794] tests/rng1.cc: Added patch
(http://bugs.guengel.ch/attachment.cgi?id=8) included in bug
report # (http://bugs.guengel.ch/show_bug.cgi?id=19) which
prevents using /dev/random in order to avoid wasting entropy pool
(on lx systems) unless in compiling in debug mode.
2009-08-22 Rafael Ostertag <rafi@guengel.ch>
* [r2777] AUTHORS: Edits.
* [r2776] TODO: Updated.
* [r2775] BUGS: Edits.
* [r2774] NEWS: Updates and edits.
* [r2773] doc/yapet.sgml.in: Some more alterations and
improvements.
* [r2772] doc/README.sgml.in, doc/yapet.sgml.in: Some edits. Thanks
to Anic Ostertag <anic@guengel.ch>
2009-08-21 Rafael Ostertag <rafi@guengel.ch>
* [r2771] yapet/pwgendialog.cc: Test for oversized password length
was broken; replaced Config::getDefPWLength() by
Consts::getMaxPWLength().
* [r2770] ui/colors.cc: Added additional compile time color scheme.
* [r2769] po/yapet.pot: Updated with new msgid.
* [r2768] po/de.po: add translation for new dialogbox in
yapet/mainwindow.cc.
* [r2767] yapet/mainwindow.cc: added a refresh after dialogbox
asking whether or to save changes before loading a new has been
closed. Commented out some other refreshs.
* [r2766] yapet/mainwindow.cc: If changes are unsaved, it asks
whether or not they should be saved prior loading the new file.
* [r2765] yapet/pwgendialog.cc: removed redundant and disastrous
call 'delete pwleninput;'
* [r2764] ui/inputwidget.cc: commented out redundant wclear().
* [r2763] doc/README.sgml.in: Revised Introduction.
* [r2762] po: Set ignore.
* [r2761] NEWS: Fixed spelling.
* [r2760] doc/yapet.sgml.in: Reorganized. Added password generator
documentation. Rewrote USAGE. Moved many refsect1 as refsect2 to
USAGE.
* [r2759] doc/INSTALL.sgml.in: Documented the new --disable-pwgen
option. Rephrased some stuff. Added some corrections.
* [r2758] po/POTFILES.in, po/de.po, po/yapet.pot: Added
translations and updates.
* [r2757] doc/csv2yapet.sgml.in: reorganized content.
* [r2756] doc/Makefile.am: Updated editfile variable to honor
DOCNLS set by the USE_NLS conditional.
* [r2755] doc/Makefile.am: Commented stuff. Added conditionals for
USE_NLS.
* [r2754] configure.ac: AM_CONDITIONAL for USE_NLS added. Used by
doc/Makefile.am
* [r2753] po/de.po: updated.
* [r2752] yapet/pwgen/pwgen.h: fixed syntax (thanks to gcc).
* [r2751] yapet/pwgen/pwgen.cc, yapet/pwgen/pwgen.h: Improved
password generation by avoiding unread character pools.
* [r2750] yapet/pwgen/charpool.cc, yapet/pwgen/charpool.h: Added
new SUBPOOL: NOPOOL. New method fromPool(): find out from which
pool the character comes from.
* [r2749] configure.ac: added test for strchr.
* [r2748] tests/pwgen1.cc: Avoid using /dev/random if other rngs
are available.
* [r2747] yapet/pwgen/charpool.cc, yapet/pwgen/charpool.h:
print_pools_allocated() now additionally returns the number of
pools allocated. New method numPoolsAllocated() for getting the
number of pools allocated.
* [r2746] yapet/pwgen/charpool.h: Fixed the ALL character pool to
really include all character pools available.
* [r2745] yapet/pwgen/pwgen.cc, yapet/pwgen/pwgen.h: Copy
constructor and operator=() will no proper initialize/copy from
existing object. PWGen() can now take a request for the RNG to be
used. Added code for trying to ensure to use at least one
character from each character pool.
* [r2744] yapet/pwgen/rng.cc: Remove false assert(0).
* [r2743] yapet/pwgen/rng.cc: RNG::getRandomNumber returns 0 if
ceil == 0 unless it was compiled with --enable-assert, in which
case it will abort.
* [r2742] yapet/pwgen/rng.cc, yapet/pwgen/rng.h: Only one
constructor. A new RNG Engine AUTO that is the default value for
the constructo which automatically tries to initialize a suitable
RNG Engine.
* [r2741] tests/charpool2.cc, yapet/pwgen/charpool.cc,
yapet/pwgen/charpool.h: Renamed CharacterPool::getNumPoolsNotRead
to CharacterPool::numPoolsNotRead.
* [r2740] yapet/pwgen/pwgen.h: Name of method was changed. Change
incorporated.
* [r2739] yapet/pwgen/charpool.cc, yapet/pwgen/charpool.h: Added
new methods for determining whether or not from a given subpool
was read and to retrieve the position of a given subpool in the
pool.
* [r2738] tests/Makefile.am, tests/charpool2.cc: Added test for new
functionalities of charpool.
2009-08-20 Rafael Ostertag <rafi@guengel.ch>
* [r2737] disttest/compiler.profiles.freebsd,
disttest/compiler.profiles.linux, disttest/disttest: Added
compiler profiles. Fixed bugs.
* [r2736] ui/curswa.h: Removed unused KEY_ definition.
* [r2735] NEWS: Updated.
* [r2734] tests/Makefile.am: Fixed another $(top_builddir)/int.
* [r2733] po/de.po, po/yapet.pot: Updated.
* [r2732] tests/Makefile.am: Fixing include when using included
libint ( -I$(top_builddir)/intl ).
* [r2731] crypt/Makefile.am, csv2yapet/Makefile.am, ui/Makefile.am,
yapet/Makefile.am, yapet/pwgen/Makefile.am: Fixing include when
using included libint ( -I$(top_builddir)/intl ).
* [r2730] tests/Makefile.am: generally added -I$(top_srcdir) to
CPPFLAGS.
* [r2729] yapet/pwgen/charpool.h: Included string.h.
* [r2728] yapet/pwgen/rng.cc: Fixed typo in cpp directive.
* [r2727] disttest/compiler.profiles.solaris: added more compiler
profiles.
* [r2726] disttest/compiler.profiles.linux: linux compiler
profiles.
* [r2725] disttest/compiler.profiles,
disttest/compiler.profiles.solaris: Compiler profiles for Solaris
* [r2724] disttest/disttest: compiler profile file can be specified
on the command line.
* [r2723] disttest, disttest/compiler.profiles, disttest/disttest,
disttest/toggle.pl: Automated build test.
* [r2722] yapet/main.cc: pressing enter now really continues when
hitting an error in set_rlimit().
* [r2721] doc/Makefile.am: Conditional build of xml parts enabled
by using sed to replace markers in the documentation with
comments.
* [r2720] yapet/passwordrecord.cc: Added missing #ifdef to make it
compile without pwgen enabled.
* [r2719] configure.ac, crypt/bdbuffer.cc, crypt/bdbuffer.h,
crypt/crypt.cc, crypt/crypt.h, crypt/file.cc, crypt/file.h,
crypt/key.cc, crypt/key.h, crypt/partdec.cc, crypt/partdec.h,
crypt/record.h, crypt/structs.h, crypt/yapetexception.h,
csv2yapet/csvimport.cc, csv2yapet/main.cc, doc/Makefile.am,
gettext.h, po/de.po, po/yapet.pot, tests/Makefile.am,
tests/cfgfile1.cc, tests/cfgfile1.rc, tests/cfgfile2.rc,
tests/corrupt.cc, tests/foreign.cc, ui/Makefile.am,
ui/basewindow.cc, ui/basewindow.h, ui/button.cc, ui/button.h,
ui/checkboxgroup.cc, ui/checkboxgroup.h, ui/colors.cc,
ui/colors.h, ui/curswa.h, ui/dialogbox.cc, ui/dialogbox.h,
ui/inputwidget.cc, ui/inputwidget.h, ui/intinwidget.cc,
ui/intinwidget.h, ui/listwidget.h, ui/messagebox.cc,
ui/messagebox.h, ui/misc.cc, ui/passwordwidget.cc,
ui/passwordwidget.h, ui/roinwidget.cc, ui/roinwidget.h,
ui/secstring.h, ui/uiexception.h, yapet/Makefile.am,
yapet/cfg.cc, yapet/cfg.h, yapet/cfgfile.cc, yapet/cfgfile.h,
yapet/consts.cc, yapet/consts.h, yapet/fileopen.cc,
yapet/fileopen.h, yapet/globals.cc, yapet/globals.h,
yapet/main.cc, yapet/mainwindow.cc, yapet/mainwindow.h,
yapet/passworddialog.cc, yapet/passworddialog.h,
yapet/passwordrecord.cc, yapet/passwordrecord.h,
yapet/pwgen/charpool.cc, yapet/pwgen/charpool.h,
yapet/pwgen/pwgen.h, yapet/pwgen/rng.cc, yapet/pwgen/rng.h,
yapet/pwgendialog.cc, yapet/pwgendialog.h, yapet/searchdialog.cc,
yapet/searchdialog.h, yapet/statusbar.cc, yapet/statusbar.h:
Added code for supporting configuration options for PWGen in the
configuration file. Updated PO file. PWGen can now be used to
paste password in password records. PasswordRecord Dialog is more
stable and ask for confirmation before canceling when changes
have been made. PasswordRecord won't forget changes when resize
happens. New class Consts for managing constant values added. New
namespace YAPET::CONSTS added. Namespace YAPETUI split into
YAPET::UI. Template function for easier parsing of configuration
files introduced. Test for cfgfile added.
* [r2718] tests/corrupt.pet, tests/corrupt.pet.in,
tests/foreign.pet, tests/foreign.pet.in: Listed as _DEPENDENCIES,
will be renamed when copied into $(srcdir).
2009-08-19 Rafael Ostertag <rafi@guengel.ch>
* [r2717] tests/bdbuffer.cc, tests/charpool1.cc, tests/corrupt.cc,
tests/enc.cc, tests/file.cc, tests/file2.cc, tests/file3.cc,
tests/file4.cc, tests/file5.cc, tests/foreign.cc,
tests/import1.cc, tests/import10.cc, tests/import11.cc,
tests/import12.cc, tests/import13.cc, tests/import14.cc,
tests/import2.cc, tests/import3.cc, tests/import4.cc,
tests/import5.cc, tests/import6.cc, tests/import7.cc,
tests/import8.cc, tests/import9.cc, tests/key.cc,
tests/partdec.cc, tests/pwgen1.cc, tests/record.cc,
tests/rng1.cc: Code beautified. Made output more edible.
* [r2716] intl/eval-plural.h, intl/gettextP.h, intl/gmo.h,
intl/loadinfo.h, intl/localcharset.h, intl/lock.h,
intl/os2compat.h, intl/plural-exp.h, intl/printf-args.h,
intl/printf-parse.h, intl/relocatable.h, intl/tsearch.h,
intl/vasnprintf.h, intl/vasnwprintf.h, intl/wprintf-parse.h,
intl/xsize.h:
* [r2715] po/POTFILES.in, po/de.po, po/yapet.pot: Updated.
* [r2714] po/de.po, po/de_CH.po: Now the only version we support
for german.
* [r2713] po/de_AT.po, po/de_DE.po: Not used anymore.
* [r2712] po/LINGUAS: we support only one language de from now on.
* [r2711] tests/bdbuffer.cc, tests/charpool1.cc, tests/corrupt.cc,
tests/enc.cc, tests/file.cc, tests/file2.cc, tests/file3.cc,
tests/file4.cc, tests/file5.cc, tests/foreign.cc,
tests/import1.cc, tests/import10.cc, tests/import11.cc,
tests/import12.cc, tests/import13.cc, tests/import14.cc,
tests/import2.cc, tests/import3.cc, tests/import4.cc,
tests/import5.cc, tests/import6.cc, tests/import7.cc,
tests/import8.cc, tests/import9.cc, tests/key.cc,
tests/partdec.cc, tests/pwgen1.cc, tests/record.cc,
tests/rng1.cc: Improved outpout of tests. Removed paramaters from
main() where not neccessary.
* [r2710] yapet/pwgen/rng.cc: *** empty log message ***
* [r2709] yapet/consts.cc, yapet/consts.h: Renamed namespace
YAPETCONSTS to YAPET::CONSTS.
* [r2708] yapet/cfg.cc, yapet/cfg.h, yapet/cfgfile.cc,
yapet/cfgfile.h: Renamed namespace YAPETCONFIG to YAPET::CONFIG.
* [r2707] yapet/cfg.h: Renamed name space YAPETCONFIG to
YAPET::CONFIG.
2009-08-18 Rafael Ostertag <rafi@guengel.ch>
* [r2706] po/de_AT.po, po/de_CH.po, po/de_DE.po, po/yapet.pot:
Updated and new translations added.
* [r2705] tests/file4.cc, tests/file5.cc: Whitespace cleanup.
* [r2704] tests/Makefile.am, tests/foreign.cc, tests/foreign.pet:
Added new check testing whether or not reading a file created on
a different machine works.
* [r2703] yapet/pwgen/rng.cc: fixed parameter type.
* [r2702] doc/Doxyfile.in: fixed INPUT directive.
* [r2701] crypt/file.cc: updated comments.
* [r2700] ui/inputwidget.cc: Destructur will now call wrefresh()
after wclear() in the hope it will clear buffers.
* [r2699] yapet/fileopen.cc: added proper preprocesor directives
depending on config.h.
* [r2698] configure.ac: added missing check for header file.
* [r2697] crypt/structs.h: added missing include.
* [r2696] po/POTFILES.in, po/de_AT.po, po/de_CH.po, po/de_DE.po,
po/yapet.pot: Updated.
* [r2695] yapet/pwgen/rng.cc: Adjusted messages.
* [r2694] yapet/pwgen/charpool.cc, yapet/pwgen/charpool.h,
yapet/pwgen/rng.cc, yapet/pwgen/rng.h: Fixed #ifdef's to make it
compile with --disable-assert
* [r2693] configure.ac: Added additional checks for functions.
Added check for /dev/random and /dev/urandom.
* [r2692] tests/bdbuffer.cc, tests/charpool1.cc, tests/corrupt.cc,
tests/enc.cc, tests/file.cc, tests/file2.cc, tests/file3.cc,
tests/file4.cc, tests/file5.cc, tests/import1.cc,
tests/import10.cc, tests/import11.cc, tests/import12.cc,
tests/import13.cc, tests/import14.cc, tests/import2.cc,
tests/import3.cc, tests/import4.cc, tests/import5.cc,
tests/import6.cc, tests/import7.cc, tests/import8.cc,
tests/import9.cc, tests/key.cc, tests/partdec.cc,
tests/pwgen1.cc, tests/record.cc, tests/rng1.cc, tests/tests.h:
Tests will print name of exception using typeinfo. Code
beautified.
* [r2691] crypt, ui: *.orig files ignored now.
* [r2690] crypt/Makefile.am, csv2yapet/Makefile.am, ui/Makefile.am,
yapet/Makefile.am: If --enable-assert is specified, -DDEBUG is
used, otherwise -DNDEBUG.
* [r2689] tests, yapet: *.orig files ignored now.
* [r2688] tests/Makefile.am: Added pwgen tests. Fixed error for
test _SOURCES: $(top_builddir) -> $(top_srcdir). Removed
_CPPFLAGS for import tests, since -I flag can be specified in
AM_CPPFLAGS variable.
* [r2687] tests/charpool1.cc, tests/pwgen1.cc, tests/rng1.cc,
yapet/pwgen, yapet/pwgen/Makefile.am, yapet/pwgen/charpool.cc,
yapet/pwgen/charpool.h, yapet/pwgen/pwgen.cc,
yapet/pwgen/pwgen.h, yapet/pwgen/pwgenexception.h,
yapet/pwgen/rng.cc, yapet/pwgen/rng.h: Completed password
generator including tests
* [r2686] configure.ac: *** empty log message ***
2009-08-17 Rafael Ostertag <rafi@guengel.ch>
* [r2685] doc/Doxyfile.in: Added path to pwgen.
* [r2684] Makefile.am, Makefile.cvs, configure.ac, po/POTFILES.in,
po/de_AT.po, po/de_CH.po, po/de_DE.po, po/yapet.pot,
yapet/Makefile.am, yapet/pwgen, yapet/pwgen/Makefile.am,
yapet/pwgen/pwgen.cc, yapet/pwgen/pwgen.h: Prepared source for
pwgen. POTFILES.in now includes all files in the dist. PO files
updated.
2009-08-15 Rafael Ostertag <rafi@guengel.ch>
* [r2681] NEWS: Updated.
* [r2680] yapet/mainwindow.cc, yapet/mainwindow.h: Code
reformatted. When changes to the records happen that need to be
written to disk, a '(+)' will be displayed next to the number of
record items.
* [r2679] po/de_AT.po, po/de_CH.po, po/de_DE.po, po/yapet.pot:
Updated due to changes in string to translate.
* [r2678] tests/file3.cc: White space cleanup.
2009-08-13 Rafael Ostertag <rafi@guengel.ch>
* [r2669] tests/file3.cc, tests/file4.cc, tests/file5.cc,
tests/import10.cc, tests/import12.cc, tests/import2.cc,
tests/import6.cc, tests/import8.cc, tests/tests.h: progress
indicator now suitable for build logs.
* [r2668] csv2yapet/csvimport.cc, csv2yapet/csvimport.h: When using
std::cout.flush() when doing verbose output.
2009-08-12 Rafael Ostertag <rafi@guengel.ch>
* [r2664] tests/file.cc, tests/file2.cc, tests/file3.cc,
tests/file4.cc, tests/file5.cc: Files may not be created in
$(SRCDIR), since this breaks "make distcheck".
* [r2663] doc/yapet.sgml.in: Added description for how to use the ~
in configuration files.
* [r2662] po/de_AT.po, po/de_CH.po, po/de_DE.po, po/yapet.pot:
Updated line numbers.
* [r2661] NEWS: Updated.
* [r2660] BUGS: Added closed bugs.
* [r2659] yapet/main.cc: Added assert()'s. Simplified code
somewhat.
* [r2658] yapet/cfg.cc, yapet/cfg.h: Added method cleanupPath() for
cleaning up file paths returned by getPetFile(). getPetFile() is
not returning a const reference anymore, but an object.
* [r2657] yapet/cfgfile.cc, yapet/cfgfile.h: Added asserts.
parseFile() will replace ~ by the home directory of the user
(fixes bug #14; http://bugs.guengel.ch/show_bug.cgi?id=14).
2009-08-11 Rafael Ostertag <rafi@guengel.ch>
* [r2655] doc/README.sgml.in: some updates.
* [r2654] doc/bugreport.sgml: rephrased.
* [r2653] ui/listwidget.h: Added assert()'s. Fixed bug #12
(http://bugs.guengel.ch/show_bug.cgi?id=12).
* [r2652] yapet/fileopen.cc: Removed superfluous break; statements
in switch environments.
* [r2651] ui/button.cc, ui/dialogbox.cc, ui/inputwidget.cc: Removed
superfluous break; statements in switch environments.
* [r2650] Makefile.am, configure.ac, crypt/Makefile.am,
csv2yapet/Makefile.am, ui/Makefile.am, yapet/Makefile.am: Files
can handle the --enable-assert argument.
* [r2649] csv2yapet/main.cc: Added namspace qualifier in front of
Const stuff.
* [r2648] configure.ac: changed the name of the conditional.
* [r2647] configure.ac: added support for assert()'s.
* [r2646] ui/listwidget.h: replaced 'validateIterator() < 0'
conditionals with 'validateIterator() == ((l_size_type)-1)'
conditionals in the hope to reduce the number of possible bugs.
* [r2645] NEWS: updated.
* [r2644] doc/yapet.sgml.in, yapet/Makefile.am, yapet/cfg.cc,
yapet/cfg.h, yapet/cfgfile.cc, yapet/cfgfile.h, yapet/consts.cc,
yapet/consts.h, yapet/fileopen.cc, yapet/main.cc: Implemented the
-i and -r options as per bugs #4 and #5 (see
http://bugs.guengel.ch/).
* [r2643] configure.ac: Added check for ar/gar. Added additional
checks for types.
2009-08-10 Rafael Ostertag <rafi@guengel.ch>
* [r2641] tests/bdbuffer.cc, tests/corrupt.cc, tests/file2.cc,
tests/file3.cc, tests/file4.cc, tests/file5.cc, tests/import1.cc,
tests/import10.cc, tests/import11.cc, tests/import12.cc,
tests/import13.cc, tests/import14.cc, tests/import2.cc,
tests/import3.cc, tests/import4.cc, tests/import5.cc,
tests/import6.cc, tests/import7.cc, tests/import8.cc,
tests/import9.cc, tests/key.cc: Adjusted output by tests
somewhat.
* [r2640] configure.ac: updated help string for disable-csv2yapet.
* [r2639] configure.ac: Bumped version number to 0.5. Fixed help
string for terminal-title -> Default: yes.
* [r2638] tests/Makefile.am, tests/corrupt.cc, tests/corrupt.pet:
Added test for testing recognition of id string in pet files.
* [r2637] tests/file.cc, tests/file2.cc, tests/file3.cc,
tests/file4.cc, tests/file5.cc: path to test files added.
* [r2636] tests/key.cc: fixed svn tag.
* [r2635] doc/yapet.sgml.in: changed the term 'password' to
'password records'.
2009-07-26 Rafael Ostertag <rafi@guengel.ch>
* [r2549] Makefile.cvs: ChangLog will be fetched from svn
repository.
* [r2548] doc/bugreport.sgml: Keyword expansion enabled.
* [r2547] doc/yapet.sgml.in: revised yapet man page. Split content
into some more sections.
* [r2546] doc/pwrecord.sgml: the term "main screen" properly
capitalized.
* [r2544] NEWS: update.
* [r2537] BUGS: Added referer to bugs.guengel.ch.
* [r2536] ui/listwidget.h: Fixed bug #9 "VI keys for list selection
movement" (see http://bugs.guengel.ch/process_bug.cgi).
* [r2535] configure.ac: Fixed bug #8 " --enable-terminal-title
should be default" (see
http://bugs.guengel.ch/show_bug.cgi?id=8).
* [r2534] csv2yapet/main.cc: Applied patch for fixing bug #11
"Build fails on Fedora 11" (see
http://bugs.guengel.ch/show_bug.cgi?id=11).
2009-07-25 Rafael Ostertag <rafi@guengel.ch>
* [r2528] intl.h: Doesn't inlcude gettext.h and locale.h when
--disable-nls is given.
* [r2527] yapet/main.cc: Fixed build error when using
--disable-nls.
2009-07-24 Rafael Ostertag <rafi@guengel.ch>
* [r2526] BUGS: Cleared bugs.
2009-07-19 Rafael Ostertag <rafi@guengel.ch>
* [r2496] Makefile.am, configure.ac, doc/Makefile.am: Fixed bug #10
(http://bugs.guengel.ch/show_bug.cgi?id=10), allow to disable the
installation of documentation files.
* [r2495] NEWS: Updated.
* [r2494] configure.ac, ui/listwidget.h, yapet/searchdialog.cc:
Fixed bug #7 (http://bugs.guengel.ch/show_bug.cgi?id=7), enabling
YAPET to do a case-insensitive search even if strcasestr() is not
supported on build platform.
* [r2492] NEWS: updated.
* [r2489] csv2yapet/Makefile.am, csv2yapet/main.cc,
yapet/Makefile.am, yapet/cfgfile.cc, yapet/consts.cc,
yapet/consts.h, yapet/fileopen.cc, yapet/fileopen.h,
yapet/main.cc: Fixed bug #3
(http://bugs.guengel.ch/show_bug.cgi?id=3) making YAPET not to
load file specified in ~/.yapet if suffix is omitted.
2009-07-18 Rafael Ostertag <rafi@guengel.ch>
* [r2482] NEWS, csv2yapet/csvimport.cc, csv2yapet/csvimport.h,
doc/csv2yapet.sgml.in, tests/Makefile.am, tests/import10.cc,
tests/import11.cc, tests/import12.cc, tests/import13.cc,
tests/import14.cc, tests/import2.cc, tests/import3.cc,
tests/import7.cc, tests/import8.cc, tests/import9.cc,
tests/test5.csv, tests/test6.csv, tests/test7.csv,
tests/test8.csv, tests/test9.csv, tests/tests.h: Applied patch
for fixing bug #6 (http://bugs.guengel.ch/show_bug.cgi?id=6)
concerning handling of field delimiters in field values.
2009-07-13 Rafael Ostertag <rafi@guengel.ch>
* [r2480] BUGS: added a link to http://bugs.guengel.ch
* [r2479] doc/csv2yapet.sgml.in, doc/yapet.sgml.in: included
bugreport.sgml in the bugs section.
* [r2478] doc/bugreport.sgml: rephrase.
* [r2477] doc/Makefile.am: added bugreport.sgml to
sgml_static_files.
* [r2476] doc/bugreport.sgml: unified paragraph about how to report
bugs.
2009-07-12 Rafael Ostertag <rafi@guengel.ch>
* [r2466] TODO: Finishing touches prior 0.4 release.
* [r2465] BUGS, doc/INSTALL.sgml.in, doc/Makefile.am,
doc/README.Cygwin.sgml.in, doc/README.sgml.in,
doc/csv2yapet.sgml.in, doc/supportedplatforms.sgml,
doc/yapet.sgml.in: Finishing touches prior 0.4 release.
2009-07-11 Rafael Ostertag <rafi@guengel.ch>
* [r2464] tests/Makefile.am: Fixed CPPFLAGS of import tests.
* [r2463] doc: Updated svn:ignore.
* [r2462] doc/csv2yapet.sgml.in: Finished csv2yapet man page.
* [r2461] doc/Makefile.am: Improved Makefile.am. Removed stuff for
conditional processing of docbook files.
* [r2460] configure.ac: Help strings updated. --enable-build-doc
will be enabled only if lynx and xsltproc are found.
* [r2459] po/de_AT.po, po/de_CH.po, po/de_DE.po, po/yapet.pot:
Updated.
* [r2458] Makefile.cvs: Added configure.ac as dependency for
Makefile.in.
* [r2457] doc/yapet.sgml.in: Some minor changes.
* [r2456] MAINTAINER: updated.
* [r2455] Makefile.am: Added automake options, distcheck configure
flags, and BUGS file as EXTRA_DIST.
* [r2454] BUGS: added BUGS file.
2009-07-10 Rafael Ostertag <rafi@guengel.ch>
* [r2453] configure.ac: Source documentation is now independently
of --enable-doc-build built.
* [r2452] ., csv2yapet: svn property edit.
* [r2451] po, po/de_AT.po, po/de_CH.po, po/de_DE.po, po/yapet.pot:
Translated new messages.
* [r2450] NEWS, TODO: Update.
* [r2449] doc: Ignore some more files.
* [r2448] doc/Makefile.am: Added csv2yapet man page and conditional
processing for docbook files.
* [r2447] doc/csv2yapet.sgml.in: Added man page for csv2yapet.
* [r2446] doc/lincense.sgml: Renamed.
* [r2445] doc/yapet.sgml.in: Restructuring, improved tagging.
* [r2444] doc/INSTALL.sgml.in: Updated tagging, added stuff
concerning csv2yapet.
* [r2443] doc/pwrecord.sgml: Updated tagging.
* [r2442] doc/README.sgml.in: Rephrase, update.
* [r2441] doc/caution.sgml: Rephrase.
* [r2440] csv2yapet/csvimport.h: changed comment.
* [r2439] csv2yapet/main.cc: changed comments.
2009-07-09 Rafael Ostertag <rafi@guengel.ch>
* [r2438] doc/license.sgml: fixed typo.
* [r2437] doc/lincense.sgml: put license in a separate file.
2009-07-08 Rafael Ostertag <rafi@guengel.ch>
* [r2436] doc/pwrecord.sgml: rephrase.
* [r2435] yapet/main.cc: grouped the command line arguments in the
help screen.
* [r2434] yapet/mainwindow.cc: clear the terminal title upon exit.
* [r2433] doc/Doxyfile.in: added the path of csv2yapet in order to
process it.
* [r2432] csv2yapet/csvimport.h: whitespace cleanup.
* [r2431] csv2yapet/csvimport.cc, csv2yapet/csvimport.h,
csv2yapet/main.cc: commented the source.
2009-07-07 Rafael Ostertag <rafi@guengel.ch>
* [r2430] csv2yapet/csvimport.cc, csv2yapet/csvimport.h,
csv2yapet/main.cc: Basic functionality implemented.
* [r2429] NEWS: Updated.
* [r2428] configure.ac: Added tests for headers and functions
needed by csv2yapet.
* [r2427] tests/import1.cc, tests/import3.cc, tests/import4.cc,
tests/import5.cc: Added missing headers.
* [r2426] tests/file3.cc: whitespace cleanup.
* [r2425] Makefile.am: adjusted build order
* [r2424] yapet/main.cc: updated help text
* [r2423] tests/import1.cc, tests/import2.cc: Improved tests
* [r2422] tests/Makefile.am: Added conditional for csv2yapet build.
Added more import tests.
* [r2421] Makefile.am, configure.ac: Added conditional for
csv2yapet build
* [r2420] doc/Makefile.am: make clean properly cleans up generated
files
* [r2419] tests/import3.cc, tests/import4.cc, tests/import5.cc,
tests/import6.cc, tests/test2.csv, tests/test3.csv,
tests/test4.csv, tests/testpaths.h.in: Added more import tests
2009-07-06 Rafael Ostertag <rafi@guengel.ch>
* [r2418] Makefile.am, Makefile.cvs, configure.ac, csv2yapet,
csv2yapet/Makefile.am, csv2yapet/csvimport.cc,
csv2yapet/csvimport.h, csv2yapet/main.cc, tests/Makefile.am,
tests/import1.cc, tests/import2.cc, tests/test1.csv: Added csv
import utility including some tests
* [r2417] TODO: Updated
* [r2416] tests/file4.cc, tests/tests.h: Whitespace cleanup
* [r2415] po/de_AT.po, po/de_CH.po, po/de_DE.po, po/yapet.pot:
Updated translations
* [r2414] yapet/cfgfile.cc: fixed typo
* [r2413] crypt/file.cc: shortened the exception message.
* [r2412] yapet/main.cc: added cmd line option for explicitly
enable file security check.
* [r2411] yapet/cfgfile.cc: removed debug code.
* [r2410] configure.ac: proper handling of --enable-*
2009-07-05 Rafael Ostertag <rafi@guengel.ch>
* [r2409] NEWS, TODO: updated.
* [r2408] configure.ac, yapet/Makefile.am, yapet/cfgfile.cc,
yapet/cfgfile.h, yapet/main.cc, yapet/mainwindow.cc:
configuration file handling implemented.
* [r2407] configure.ac: removed prog check for flex and bison.
Added checks for additional C++ headers and C functions
* [r2406] configure.ac: bumped version to 0.4. Added check for yacc
and lex.
* [r2405] yapet/main.cc: update copyright date
* [r2404] NEWS: updated
* [r2403] yapet/main.cc, yapet/mainwindow.cc, yapet/mainwindow.h:
time-out for locking screen can be specified on the cmd line
* [r2401] crypt/file.cc, crypt/file.h, yapet/main.cc,
yapet/mainwindow.cc, yapet/mainwindow.h: file permission and
owner check implemented including cmd line option for disabling
the check
* [r2400] NEWS, TODO: update
* [r2399] configure.ac: checks availability of functions for file
mode and ownership retrieval
* [r2398] yapet/fileopen.h: prevents creation of files named only
'.pet'.
* [r2397] ui/button.cc, ui/curswa.h, ui/dialogbox.cc,
ui/inputwidget.cc, yapet/fileopen.cc, yapet/passworddialog.cc,
yapet/passwordrecord.cc, yapet/searchdialog.cc: added support for
closing message boxes and dialogs by pressing the escape key.
* [r2396] doc/Makefile.am: *.in files are again included in the
distribution
2009-06-12 Rafael Ostertag <rafi@guengel.ch>
* [r2379] doc/INSTALL.sgml.in: updated "what gets installed?"
section
* [r2378] doc/README.Cygwin.sgml.in: fixed typo
2009-06-11 Rafael Ostertag <rafi@guengel.ch>
* [r2373] AUTHORS: Updated.
* [r2372] crypt/bdbuffer.cc, crypt/bdbuffer.h, crypt/crypt.cc,
crypt/crypt.h, crypt/file.cc, crypt/file.h, crypt/key.cc,
crypt/key.h, crypt/partdec.cc, crypt/partdec.h, crypt/record.h,
crypt/structs.h, crypt/yapetexception.h, yapet/main.cc: Added
waiver
* [r2371] NEWS: Updated.
* [r2370] LICENSE: License file that includes the waiver on the GPL
for the OpenSSL library.
* [r2369] Makefile.am: added the LICENSE file to the EXTRA_DIST and
textdoc_DATA variables.
* [r2368] yapet.desktop.in: Syntax conforms to the freedesktop.org
spec.
* [r2367] doc/yapet.sgml.in: Fixed typo
* [r2366] doc/yapet.sgml.in: Added reference to the author in the
BUGS section
* [r2365] doc/README.sgml.in: Added copyright statement
* [r2364] configure.ac: Bumped to version 3.0a
* [r2363] TODO: Updated
* [r2362] intl.h: Adjusted the copyright statement as described in
the GNU HowTo
* [r2361] crypt/bdbuffer.cc, crypt/bdbuffer.h, crypt/crypt.cc,
crypt/crypt.h, crypt/file.cc, crypt/file.h, crypt/key.cc,
crypt/key.h, crypt/partdec.cc, crypt/partdec.h, crypt/record.h,
crypt/structs.h, crypt/yapetexception.h: Adjusted the copyright
statement as described in the GNU HowTo
* [r2360] yapet/fileopen.cc, yapet/fileopen.h, yapet/main.cc,
yapet/mainwindow.cc, yapet/mainwindow.h, yapet/passworddialog.cc,
yapet/passworddialog.h, yapet/passwordrecord.cc,
yapet/passwordrecord.h, yapet/searchdialog.cc,
yapet/searchdialog.h, yapet/statusbar.cc, yapet/statusbar.h:
Adjusted the copyright statement as described in the GNU HowTo
* [r2359] ui/basewindow.cc, ui/basewindow.h, ui/button.cc,
ui/button.h, ui/colors.cc, ui/colors.h, ui/curswa.h,
ui/dialogbox.cc, ui/dialogbox.h, ui/inputwidget.cc,
ui/inputwidget.h, ui/listwidget.h, ui/messagebox.cc,
ui/messagebox.h, ui/misc.cc, ui/misc.h, ui/passwordwidget.cc,
ui/passwordwidget.h, ui/secstring.h, ui/uiexception.h: Adjusted
the copyright statement as described in the GNU HowTo
2009-05-03 Rafael Ostertag <rafi@guengel.ch>
* [r2347] TODO: added one more todo
* [r2346] TODO: todo file added
2009-04-13 Rafael Ostertag <rafi@guengel.ch>
* [r2306] Makefile.am: maintainer-clean removes README.Cygwin
* [r2305] doc/DESIGN.sgml.in, doc/INSTALL.sgml.in, doc/Makefile.am,
doc/README.sgml.in, doc/copyright.sgml, doc/preamble.sgml,
doc/yapet.sgml.in: Copyright not inserted via preamble.sgml but
copyright.sgml.
* [r2304] doc/README.Cygwin.sgml.in: Copyright not inserted via
preamble.sgml but copyright.sgml. Build Error section added.
* [r2303] configure.ac: some cleanup
* [r2302] NEWS: Updated.
* [r2301] doc/INSTALL.sgml.in, doc/README.sgml.in: fixed this and
that.
* [r2300] configure.ac, doc/Makefile.am: --with-docbook-xsl option
for specifying the location of the Docbook XSL added.
2009-04-11 Rafael Ostertag <rafi@guengel.ch>
* [r2299] tests/Makefile.am: fixed build
* [r2298] configure.ac: fixed am conditionals
* [r2297] Makefile.am, configure.ac, crypt/Makefile.am,
ui/Makefile.am, yapet/Makefile.am: - -I../intl will only be added
when not using included gettext
* [r2296] doc/DESIGN.sgml.in, doc/INSTALL.sgml.in,
doc/README.sgml.in, doc/yapet.sgml.in: - Fixed some spelling
errors. Added subtitles.
* [r2295] doc/Makefile.am: - added README.Cygwin
* [r2294] doc/README.Cygwin.sgml.in: Cygwin build instructions
added
* [r2293] crypt/bdbuffer.cc, crypt/crypt.cc, crypt/crypt.h,
crypt/file.cc, crypt/key.cc, crypt/record.h,
crypt/yapetexception.h, ui/button.cc, ui/dialogbox.cc,
ui/inputwidget.cc, ui/listwidget.h, ui/messagebox.cc,
ui/passwordwidget.cc, ui/uiexception.h, yapet/fileopen.cc,
yapet/main.cc, yapet/mainwindow.cc, yapet/passworddialog.cc,
yapet/passwordrecord.cc, yapet/searchdialog.cc,
yapet/statusbar.cc: - fixed #include of intl.h to make the build
process pass make dist-check
* [r2292] po/ChangeLog: - ChangeLog update
* [r2291] po/de_AT.po, po/de_CH.po, po/de_DE.po, po/yapet.pot:
-updated due to changes in the code
* [r2290] configure.ac: - added checks for support functions of
openssl
* [r2289] Makefile.am, crypt/Makefile.am, intl/Makefile.in,
tests/Makefile.am, ui/Makefile.am, yapet/Makefile.am: - Added
target to remove SunWS_cache
2009-04-10 Rafael Ostertag <rafi@guengel.ch>
* [r2288] po/de_AT.po, po/de_CH.po, po/de_DE.po, po/yapet.pot: -
some updates
* [r2287] configure.ac: if doxygen is not found, no is returned
* [r2286] yapet/mainwindow.cc: added some comments
* [r2285] doc/Makefile.am: if programs are not available, error
messages are printed
* [r2284] intl/plural.c, po/LINGUAS, po/de_AT.po, po/de_CH.po,
po/de_DE.po, po/messages.pot, po/yapet.pot, yapet/mainwindow.cc:
- refined translations
* [r2283] ABOUT-NLS, Makefile.am, Makefile.cvs, config.guess,
config.rpath, config.sub, configure.ac, crypt/Makefile.am,
crypt/bdbuffer.cc, crypt/crypt.cc, crypt/crypt.h, crypt/file.cc,
crypt/key.cc, crypt/key.h, crypt/record.h,
crypt/yapetexception.h, doc/Makefile.am, gettext.h, intl, intl.h,
intl/ChangeLog, intl/Makefile.in, intl/VERSION,
intl/bindtextdom.c, intl/config.charset, intl/dcgettext.c,
intl/dcigettext.c, intl/dcngettext.c, intl/dgettext.c,
intl/dngettext.c, intl/eval-plural.h, intl/explodename.c,
intl/export.h, intl/finddomain.c, intl/gettext.c,
intl/gettextP.h, intl/gmo.h, intl/hash-string.c,
intl/hash-string.h, intl/intl-compat.c, intl/intl-exports.c,
intl/l10nflist.c, intl/langprefs.c, intl/libgnuintl.h.in,
intl/libintl.rc, intl/loadinfo.h, intl/loadmsgcat.c,
intl/localcharset.c, intl/localcharset.h, intl/locale.alias,
intl/localealias.c, intl/localename.c, intl/lock.c, intl/lock.h,
intl/log.c, intl/ngettext.c, intl/os2compat.c, intl/os2compat.h,
intl/osdep.c, intl/plural-exp.c, intl/plural-exp.h,
intl/plural.c, intl/plural.y, intl/printf-args.c,
intl/printf-args.h, intl/printf-parse.c, intl/printf-parse.h,
intl/printf.c, intl/ref-add.sin, intl/ref-del.sin,
intl/relocatable.c, intl/relocatable.h, intl/textdomain.c,
intl/tsearch.c, intl/tsearch.h, intl/vasnprintf.c,
intl/vasnprintf.h, intl/vasnwprintf.h, intl/version.c,
intl/wprintf-parse.h, intl/xsize.h, m4, m4/ChangeLog,
m4/codeset.m4, m4/gettext.m4, m4/glibc2.m4, m4/glibc21.m4,
m4/iconv.m4, m4/intdiv0.m4, m4/intl.m4, m4/intldir.m4,
m4/intlmacosx.m4, m4/intmax.m4, m4/inttypes-pri.m4,
m4/inttypes_h.m4, m4/lcmessage.m4, m4/lib-ld.m4, m4/lib-link.m4,
m4/lib-prefix.m4, m4/lock.m4, m4/longlong.m4, m4/nls.m4,
m4/po.m4, m4/printf-posix.m4, m4/progtest.m4, m4/size_max.m4,
m4/stdint_h.m4, m4/uintmax_t.m4, m4/visibility.m4, m4/wchar_t.m4,
m4/wint_t.m4, m4/xsize.m4, po, po/ChangeLog, po/LINGUAS,
po/Makefile.in.in, po/Makevars, po/Makevars.template,
po/POTFILES.in, po/Rules-quot, po/boldquot.sed, po/de_CH.po,
po/en@boldquot.header, po/en@quot.header, po/insert-header.sin,
po/messages.pot, po/quot.sed, po/remove-potcdate.sin,
po/yapet.pot, ui/Makefile.am, ui/button.cc, ui/dialogbox.cc,
ui/inputwidget.cc, ui/listwidget.h, ui/messagebox.cc, ui/misc.cc,
ui/passwordwidget.cc, ui/uiexception.h, yapet/Makefile.am,
yapet/fileopen.cc, yapet/main.cc, yapet/mainwindow.cc,
yapet/passworddialog.cc, yapet/passwordrecord.cc,
yapet/searchdialog.cc, yapet/statusbar.cc: - Gettextize
2009-03-23 Rafael Ostertag <rafi@guengel.ch>
* [r2265] yapet/mainwindow.cc: xterm title updates implemented.
* [r2264] ui/misc.cc: fixed syntax error
* [r2263] ui/misc.cc, ui/misc.h: - added new function isXTerm -
improved setTerminalTitle
* [r2262] configure.ac: added test for strncmp
2009-03-22 Rafael Ostertag <rafi@guengel.ch>
* [r2258] yapet/mainwindow.cc: - added setTerminalTitle, but its
not completely tested yet.
* [r2257] ui/colors.cc: - whitespace cleanup
* [r2256] ui/Makefile.am, ui/misc.cc, ui/misc.h: - setTerminalTitle
implemented.
* [r2255] configure.ac: - Added some more tests - Added
--enable-terminal-title
2009-03-12 Rafael Ostertag <rafi@guengel.ch>
* [r2214] doc/Doxyfile.in: - Doxygen configuration updated.
* [r2213] configure.ac: --with-xslpath removed. No longer needed,
since xsltproc fetches xsl via http now.
* [r2212] doc/DESIGN.sgml.in, doc/INSTALL.sgml.in, doc/Makefile.am,
doc/README.sgml.in, doc/yapet.sgml.in: xsltproc is now advised to
fetch the style sheets via http. Docbook version bumped to 4.5
XML.
2008-07-23 Rafael Ostertag <rafi@guengel.ch>
* [r1372] ui/inputwidget.cc, ui/inputwidget.h: - Cursor visible in
input widgdets.
- Backspace handling improved.
* [r1371] doc/Makefile.am: - Including files to build documentation
in the tar-ball.
2008-07-21 Rafael Ostertag <rafi@guengel.ch>
* [r1366] configure.ac, crypt/bdbuffer.cc, crypt/bdbuffer.h,
tests/bdbuffer.cc, ui/listwidget.h, ui/passwordwidget.cc: - Fixed
build for gcc 4.3 or later
2008-07-19 Rafael Ostertag <rafi@guengel.ch>
* [r1357] .cvsignore, crypt/.cvsignore, doc/.cvsignore,
tests/.cvsignore, ui/.cvsignore, yapet/.cvsignore: - No longer
used.
* [r1355] ui/listwidget.h: - Whitespace cleanup
* [r1354] ui/listwidget.h: - Made it compile under SUNWspro.
* [r1353] NEWS: - Update
* [r1352] doc/yapet.sgml.in: - Documented the new functionalities.
- Improved the documentation and added some missing stuff.
* [r1351] doc/caution.sgml: - Minor alterations
* [r1350] ui/listwidget.h: - Added a method for highlighting a
certain iterator in the widget.
- Completed the search functions.
- Minor clean ups.
* [r1349] yapet/mainwindow.cc, yapet/mainwindow.h: - The
searchNext() method is implemented.
* [r1348] yapet/searchdialog.cc, yapet/searchdialog.h: - The search
term is returned as char*.
- Depending on whether the platform has strcasestr or strstr
only, the user is hinted about whether the search is case
sensitive or not.
* [r1347] configure.ac: - Bumped package version to 0.2.
- Added checks for additional headers and functions.
2008-07-18 Rafael Ostertag <rafi@guengel.ch>
* [r1346] yapet/mainwindow.cc, yapet/mainwindow.h: - Prepared for
the search functionality.
* [r1345] yapet/Makefile.am: - Added the new files for the search
dialog.
* [r1344] yapet/searchdialog.cc: - Whitespace cleanup
* [r1343] yapet/searchdialog.cc, yapet/searchdialog.h: - Search
Dialog
* [r1342] ui/listwidget.h: - No protected members anymore.
- Some comments
* [r1341] doc/yapet.sgml.in: - Updated manpage.
* [r1340] yapet/mainwindow.cc: - The title is now properly shown
even upon resize.
* [r1339] ui/basewindow.cc, ui/basewindow.h: - Resize events are
not processed below certain dimensions.
* [r1338] NEWS: - Updated
2008-07-17 Rafael Ostertag <rafi@guengel.ch>
* [r1337] yapet/mainwindow.cc: - Made it compile under SUNWspro
again
- Dialog confirming whether or not an entry should be deleted
will be shown only if there are actual entries to delete.
* [r1336] ui/listwidget.h: - Selection handling now working
- Newly introduced method for selection removed again.
* [r1335] ui/listwidget.h: - Border of inactive listwidget uses now
different characters for drawing the border
- New method for hiding the selection bar.
* [r1334] yapet/mainwindow.cc: - Deleting a record puts a message
in the status bar now.
* [r1333] yapet/mainwindow.cc, yapet/mainwindow.h: - Sort order is
maintained when adding and editing entries.
- Sort order can be changed.
2008-07-15 Rafael Ostertag <rafi@guengel.ch>
* [r1332] ui/listwidget.h: - The list is sorted before displayed in
the setList() method.
- Added convenience method setSortOrder() for sorting the list
with the currently set sort order.
* [r1331] crypt/partdec.cc, crypt/partdec.h: - Added less-than
operator in order to be able to sort a list of partdecS.
* [r1330] configure.ac: - Check for strcmp() added.
* [r1329] ui/listwidget.h: - Added code for sorting.
- Does not compile.
2008-02-27 Rafael Ostertag <rafi@guengel.ch>
* [r1238] configure.ac: *** empty log message ***
* [r1237] configure.ac: *** empty log message ***
* [r1236] AUTHORS, MAINTAINER, Makefile.am, NEWS, crypt/file.h,
doc/DESIGN.sgml.in, doc/INSTALL.sgml.in: - Altered doc files in
order to prepare for the release.
* [r1235] configure.ac, doc/INSTALL.sgml.in, doc/Makefile.am: -
Docs are now only build upon explicit request by
--enable-build-doc.
2008-02-26 Rafael Ostertag <rafi@guengel.ch>
* [r1234] doc/Makefile.am: - Passes distcheck except for doxygen
generated docs, but that's 'k.
* [r1233] doc/Makefile.am, doc/caution.sgml, doc/preamble.sgml,
doc/pwrecord.sgml, doc/supportedplatforms.sgml: *** empty log
message ***
* [r1232] Makefile.am, doc/Makefile.am, tests/Makefile.am: ***
empty log message ***
* [r1231] doc/DESIGN.sgml.in, doc/Doxyfile.in: - Recovered files.
* [r1230] doc/DESIGN.sgml.in, doc/Doxyfile.in, doc/Makefile.am: ***
empty log message ***
* [r1229] doc/pwrecord.sgml: *** empty log message ***
* [r1228] crypt/file.h, crypt/structs.h, doc/DESIGN.sgml.in,
doc/INSTALL.sgml.in, doc/Makefile.am, doc/README.sgml.in,
doc/yapet.sgml.in: - Completed doc files and manpage.
* [r1227] doc/yapet.sgml.in: *** empty log message ***
* [r1226] doc/Makefile.am, doc/manfigures, doc/yapet.sgml.in: ***
empty log message ***
2008-02-25 Rafael Ostertag <rafi@guengel.ch>
* [r1224] doc/Makefile.am: - Fixed Makefile for make/dmake under
solaris.
* [r1223] ., .cvsignore, crypt, crypt/.cvsignore, doc,
doc/.cvsignore, doc/DESIGN.sgml.in, doc/Doxyfile.in,
doc/INSTALL.sgml.in, doc/Makefile.am, doc/README.sgml.in,
doc/yapet.sgml.in, tests, tests/.cvsignore, yapet,
yapet/.cvsignore: *** empty log message ***
* [r1222] doc/Makefile.am, doc/yapet.sgml.in, doc/yapetman.sgml.in:
*** empty log message ***
* [r1221] doc/yapetman.sgml.in: *** empty log message ***
* [r1220] doc/DESIGN.sgml.in, doc/Makefile.am,
doc/yapetman.sgml.in: *** empty log message ***
* [r1219] configure.ac, doc/INSTALL.sgml.in, doc/Makefile.am,
doc/README.sgml.in, doc/caution.sgml, doc/manfigures,
doc/manfigures/mainscreen.sgml, doc/yapetman.sgml.in,
yapet/fileopen.cc, yapet/fileopen.h, yapet/main.cc,
yapet/mainwindow.cc: - Manpages generated with xsltproc.
- Status bar shows missing messages for record addition and
record edition.
2008-02-24 Rafael Ostertag <rafi@guengel.ch>
* [r1218] Makefile.am, configure.ac, doc/caution.sgml,
doc/yapetman.sgml.in, ui/basewindow.cc, yapet/main.cc: *** empty
log message ***
2008-02-23 Rafael Ostertag <rafi@guengel.ch>
* [r1217] doc/DESIGN.sgml.in, doc/INSTALL.sgml.in, doc/Makefile.am,
doc/README.sgml.in, doc/caution.sgml, doc/yapetman.sgml.in: -
Added some more files.
- DESGIN.sgml.in describes the general design of yapet.
- Docbook2x-man is used for generating the man page from xml
sources.
2008-02-21 Rafael Ostertag <rafi@guengel.ch>
* [r1216] doc/INSTALL.sgml.in, doc/README.sgml.in,
yapet.desktop.in, yapet/main.cc: - File to be opened by yapet can
now be specified on the command line without using the -f option.
2008-02-20 Rafael Ostertag <rafi@guengel.ch>
* [r1215] doc/INSTALL.sgml.in, doc/Makefile.am, doc/README.sgml.in,
doc/supportedplatforms.sgml: *** empty log message ***
2008-02-19 Rafael Ostertag <rafi@guengel.ch>
* [r1214] doc/INSTALL.sgml.in: *** empty log message ***
* [r1213] doc/INSTALL.sgml.in: *** empty log message ***
* [r1212] ui/curswa.h, ui/listwidget.h, yapet/mainwindow.cc: -
Compiles using Sun's X/Open implementation of curses.
* [r1211] Makefile.cvs: - Creates an empty README file
* [r1210] README: - Will generated from sgml sources.
* [r1209] README, configure.ac, doc/INSTALL.sgml.in,
doc/Makefile.am, ui/basewindow.h: - Fixed abstract method in
class AlarmFunction.
- Text files are by default generated by xsltproc and lynx.
2008-02-18 Rafael Ostertag <rafi@guengel.ch>
* [r1208] doc/INSTALL.sgml.in: *** empty log message ***
* [r1207] README, configure.ac, crypt/file.cc, crypt/file.h,
yapet/mainwindow.cc: - Date when master password was last set is
now displayed.
* [r1206] tests/file5.cc: - Test file
* [r1205] Makefile.am, README, configure.ac, doc/Doxyfile.in,
doc/INSTALL.sgml.in, doc/Makefile.am, doc/README.sgml.in: ***
empty log message ***
2008-02-15 Rafael Ostertag <rafi@guengel.ch>
* [r1204] configure.ac, doc/INSTALL.sgml.in, doc/README.sgml.in,
ui/listwidget.h, yapet/fileopen.cc: - The cwd string in the file
open dialog will be updated again.
- Scroll indicators added to list widget.
2008-02-13 Rafael Ostertag <rafi@guengel.ch>
* [r1203] Makefile.am, configure.ac, crypt/file.h, doc/Makefile.am,
ui/basewindow.h, ui/button.h, ui/colors.h, ui/curswa.h,
ui/dialogbox.h, ui/inputwidget.h, ui/listwidget.h,
ui/messagebox.h, ui/passwordwidget.cc, ui/passwordwidget.h,
ui/secstring.h, ui/uiexception.h, yapet.desktop.in,
yapet/fileopen.h, yapet/main.cc, yapet/mainwindow.cc,
yapet/mainwindow.h, yapet/passworddialog.h,
yapet/passwordrecord.h, yapet/statusbar.cc, yapet/statusbar.h: -
Commented code.
- Added desktop file.
* [r1202] ui/Makefile.am, ui/basewindow.cc, ui/basewindow.h,
ui/button.cc, ui/dialogbox.cc, ui/inputwidget.cc,
ui/listwidget.h, ui/messagebox.cc, ui/messagebox.h,
ui/resizeable.cc, ui/resizeable.h, yapet/fileopen.cc,
yapet/fileopen.h, yapet/main.cc, yapet/mainwindow.cc,
yapet/mainwindow.h, yapet/passworddialog.cc,
yapet/passworddialog.h, yapet/passwordrecord.cc,
yapet/passwordrecord.h, yapet/statusbar.cc, yapet/statusbar.h: -
Renamed resizeable.(cc|h) to basewindow.(cc|h).
- Renamed the class Resizeable to BaseWindow.
* [r1201] configure.ac, crypt/record.h, crypt/structs.h,
ui/button.h, ui/colors.h, ui/curswa.h, ui/dialogbox.cc,
ui/dialogbox.h, ui/inputwidget.h, ui/listwidget.h,
ui/resizeable.cc, ui/resizeable.h, ui/secstring.h,
ui/uiexception.h, yapet/main.cc, yapet/mainwindow.cc,
yapet/mainwindow.h: - Added signal handler for ALARM in order to
lock the screen automatically.
- Added some other signal handlers to deal with certain
terminating signals.
- Commented some more code.
2008-02-11 Rafael Ostertag <rafi@guengel.ch>
* [r1200] crypt/Makefile.am, crypt/bdbuffer.h, crypt/file.cc,
crypt/file.h, crypt/key.h, crypt/partdec.h, crypt/record.h,
crypt/structs.h, doc/Doxyfile.in, doc/README.sgml.in,
yapet/fileopen.h: - Commented code.
2008-02-10 Rafael Ostertag <rafi@guengel.ch>
* [r1199] Makefile.cvs, crypt/bdbuffer.h, crypt/crypt.h,
crypt/file.cc, crypt/file.h, crypt/record.h, doc/INSTALL.sgml.in:
- Started commenting file.h
- Finished INSTALL.sgml.in.
2008-02-09 Rafael Ostertag <rafi@guengel.ch>
* [r1198] doc/INSTALL.sgml.in, doc/Makefile.am, doc/preamble.sgml:
- SGMLized INSTALL.sgml.in
2008-02-08 Rafael Ostertag <rafi@guengel.ch>
* [r1196] INSTALL, INSTALL.generic, Makefile.am,
doc/INSTALL.sgml.in: - INSTALL is built from INSTALL.sgml.in
* [r1193] AUTHORS, configure.ac, yapet/main.cc: - Uses
getopt_long() if available for option parsing.
2008-02-07 Rafael Ostertag <rafi@guengel.ch>
* [r1192] tests/tests.h: - Functions and defines shared by the
tests.
* [r1191] Makefile.am, Makefile.cvs, configure.ac,
crypt/bdbuffer.cc, crypt/bdbuffer.h, crypt/crypt.cc,
crypt/crypt.h, crypt/file.cc, crypt/file.h, crypt/gpsexception.h,
crypt/key.cc, crypt/key.h, crypt/partdec.cc, crypt/partdec.h,
crypt/record.h, crypt/structs.h, crypt/yapetexception.h,
tests/Makefile.am, tests/bdbuffer.cc, tests/enc.cc,
tests/encryptiontest.gps, tests/file.cc, tests/file2.cc,
tests/file3.cc, tests/file4.cc, tests/key.cc, tests/partdec.cc,
tests/record.cc, ui/button.cc, ui/button.h, ui/colors.cc,
ui/colors.h, ui/curswa.h, ui/dialogbox.cc, ui/dialogbox.h,
ui/inputwidget.cc, ui/inputwidget.h, ui/listwidget.h,
ui/messagebox.cc, ui/messagebox.h, ui/passwordwidget.cc,
ui/passwordwidget.h, ui/resizeable.cc, ui/resizeable.h,
ui/secstring.h, ui/uiexception.h, yapet/Makefile.am,
yapet/fileopen.cc, yapet/fileopen.h, yapet/main.cc,
yapet/mainwindow.cc, yapet/mainwindow.h, yapet/passworddialog.cc,
yapet/passworddialog.h, yapet/passwordrecord.cc,
yapet/passwordrecord.h, yapet/statusbar.cc, yapet/statusbar.h: -
Renamed GPSafe stuff to YAPET.
- Fixed mtime bug when writing data.
- Password change is now supported, but not implemented in the
UI.
- Test are now more quiet and accurate.
* [r1190] crypt/bdbuffer.cc, crypt/bdbuffer.h, crypt/crypt.cc,
crypt/crypt.h, crypt/file.cc, crypt/gpsexception.h, crypt/key.cc,
crypt/key.h, tests/encryptiontest.gps, ui/Makefile.am,
ui/button.cc, ui/inputwidget.cc, ui/listwidget.h,
ui/messagebox.cc, ui/messagebox.h, ui/resizeable.h, ui/scrdim.h,
yapet/fileopen.cc, yapet/fileopen.h, yapet/mainwindow.cc,
yapet/mainwindow.h, yapet/passworddialog.cc,
yapet/passworddialog.h, yapet/passwordrecord.cc,
yapet/passwordrecord.h, yapet/statusbar.cc, yapet/statusbar.h: -
Commented code.
- scrdim class merged into resizeable.
2008-02-06 Rafael Ostertag <rafi@guengel.ch>
* [r1189] COPYING, configure.ac, crypt/bdbuffer.cc,
crypt/bdbuffer.h, crypt/crypt.cc, crypt/crypt.h, crypt/file.cc,
crypt/file.h, crypt/gpsexception.h, crypt/key.cc, crypt/key.h,
crypt/partdec.cc, crypt/partdec.h, crypt/record.h,
crypt/structs.h, ui/button.cc, ui/button.h, ui/colors.cc,
ui/colors.h, ui/curswa.h, ui/dialogbox.cc, ui/dialogbox.h,
ui/inputwidget.cc, ui/inputwidget.h, ui/listwidget.h,
ui/messagebox.cc, ui/messagebox.h, ui/passwordwidget.cc,
ui/passwordwidget.h, ui/resizeable.cc, ui/resizeable.h,
ui/scrdim.h, ui/secstring.h, ui/uiexception.h, yapet/fileopen.cc,
yapet/fileopen.h, yapet/main.cc, yapet/mainwindow.cc,
yapet/mainwindow.h, yapet/passworddialog.cc,
yapet/passworddialog.h, yapet/passwordrecord.cc,
yapet/passwordrecord.h, yapet/statusbar.cc, yapet/statusbar.h: -
Licensed under the GPLv3.
- Added copyright notice.
- Fixed a few bugs.
- On-disk data is stored in big endian format.
* [r1188] configure.ac, crypt/file.cc, doc/Makefile.am,
tests/Makefile.am, tests/encryptiontest.gps, tests/file4.cc,
ui/button.cc, ui/button.h, ui/curswa.h, ui/dialogbox.cc,
ui/inputwidget.cc, ui/listwidget.h, ui/messagebox.cc,
ui/resizeable.cc, yapet/fileopen.cc, yapet/main.cc,
yapet/mainwindow.cc, yapet/passworddialog.cc,
yapet/passwordrecord.cc, yapet/statusbar.cc: - Tried to improve
the curses window handling.
- Using setrlimit() to suppress the creation of core files.
- Streamlined code.
- This and that.
2008-02-05 Rafael Ostertag <rafi@guengel.ch>
* [r1187] configure.ac, ui/button.cc, ui/inputwidget.cc,
ui/listwidget.h, ui/messagebox.cc, ui/messagebox.h,
yapet/fileopen.cc, yapet/fileopen.h, yapet/passworddialog.cc,
yapet/passwordrecord.cc, yapet/statusbar.cc: - Before using
delwin(), wclear(), and wrefresh() is issued in order to prevent
passwords from staying in memory ...
2008-02-04 Rafael Ostertag <rafi@guengel.ch>
* [r1186] ., .cvsignore, configure.ac, tests, tests/.cvsignore, ui,
ui/.cvsignore, ui/inputwidget.cc, ui/listwidget.h,
yapet/mainwindow.cc: - Tried to make recognition of backspace and
delete key reliable in input widget
* [r1185] Makefile.am, configure.ac, crypt/Makefile.am,
crypt/key.cc, crypt/key.h, doc, doc/Doxyfile.in, doc/Makefile.am,
tests/encryptiontest.gps, ui/Makefile.am, yapet/Makefile.am: -
Added comments.
- Prepared for documentation
2008-02-03 Rafael Ostertag <rafi@guengel.ch>
* [r1181] ., AUTHORS, COPYING, INSTALL, Makefile.am, Makefile.cvs,
NEWS, README, configure.ac, crypt, crypt/Makefile.am,
crypt/bdbuffer.cc, crypt/bdbuffer.h, crypt/crypt.cc,
crypt/crypt.h, crypt/file.cc, crypt/file.h, crypt/gpsexception.h,
crypt/key.cc, crypt/key.h, crypt/partdec.cc, crypt/partdec.h,
crypt/record.h, crypt/structs.h, tests, tests/Makefile.am,
tests/bdbuffer.cc, tests/enc.cc, tests/encryptiontest.gps,
tests/file.cc, tests/file2.cc, tests/file3.cc, tests/file4.cc,
tests/key.cc, tests/partdec.cc, tests/record.cc, ui,
ui/Makefile.am, ui/button.cc, ui/button.h, ui/colors.cc,
ui/colors.h, ui/curswa.h, ui/dialogbox.cc, ui/dialogbox.h,
ui/inputwidget.cc, ui/inputwidget.h, ui/listwidget.h,
ui/messagebox.cc, ui/messagebox.h, ui/passwordwidget.cc,
ui/passwordwidget.h, ui/resizeable.cc, ui/resizeable.h,
ui/scrdim.h, ui/secstring.h, ui/uiexception.h, yapet,
yapet/Makefile.am, yapet/fileopen.cc, yapet/fileopen.h,
yapet/main.cc, yapet/mainwindow.cc, yapet/mainwindow.h,
yapet/passworddialog.cc, yapet/passworddialog.h,
yapet/passwordrecord.cc, yapet/passwordrecord.h,
yapet/statusbar.cc, yapet/statusbar.h: Initial revision
|