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
|
2009-09-04 Rafael Ostertag <rafi@guengel.ch>
* 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.
* doc/Makefile.am: Put $(htmldoc_DATA) and $(dist_man1_MANS) back
to dist-hook rule.
2009-09-03 Rafael Ostertag <rafi@guengel.ch>
* doc/INSTALL.sgml.in: Updated.
* .: Modified svn:ignore keyword.
* doc/yapet.sgml.in: Added description of the (V: 1) / (V: 2)
displayed in yapet.
* doc/DESIGN.sgml.in: Added description of changes in header in
version 0.6.
* doc/README.sgml.in: Added "Important Changes" section. Added
description of changes in 0.6 in "Important Changes" section.
* 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.
* configure.ac: Added check for w3m, which is used for creating
text files from html files containing tables.
* THANKS: Removed empty line.
* NEWS: Updated.
* Makefile.am: Added TANKS file to EXTRA_DIST.
* THANKS: Wrote THANKS.
* yapet/main.cc: fixed spelling.
* doc/supportedplatforms.sgml: be more specific.
* configure.ac: Removed EVP function checks which failed because
the functions were macros.
* tests/Makefile.am: Added custom silent rules
* doc/Makefile.am: Added custom silent rules
* config.guess, config.sub: Does not belong into repository.
* Makefile.am, configure.ac: Tweaked.
2009-09-02 Rafael Ostertag <rafi@guengel.ch>
* Makefile.am: enable asserts in distcheck.
* po/yapet.pot: Line numbers updated.
* po/de.po: removed obsolete entry.
2009-09-01 Rafael Ostertag <rafi@guengel.ch>
* doc/Makefile.am: Tweaked.
* doc/yapet.sgml.in: updated with instructions for pwgen_rng
configuration file option.
* configure.ac: Version bumped to 0.6.
* NEWS: Updated.
* po/yapet.pot: Updated.
* po/de.po: Updated.
* tests/cfgfile1.cc: Added tests for pwgen_rng option.
* yapet/pwgen/pwgen.cc: Added static_cast to silence compiler
warnings.
* tests/cfgfile2.rc: updated in order to test pwgen_rng option.
* yapet/main.cc: Added code for handling pwgen_rng configuration
file option.
* 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.
* yapet/pwgendialog.cc: rephrased comment.
* yapet/pwgen/rng.cc, yapet/pwgen/rng.h: Moved int rng_available,
check_availability() into static scope. Added new static method
getAvailableRNGs().
* tests/pwgen1.cc: Added code to test the switch of Character Pools
and RNG.
* yapet/pwgen/pwgen.cc, yapet/pwgen/pwgen.h: New method setNewRNG()
introduced. Made changes to 'dynamically' switch to a different
RNG.
* yapet/pwgendialog.h: removed unused declarations.
* tests/rng1.cc: rephrased message showed when skipping
/dev/random.
* yapet/main.cc: Fixed description of --help output.
* tests/Makefile.am, tests/foreign.cc: Finished foreign tests.
* configure.ac: Some tweaks. More SSL functions are checked for
existence.
* tests/f64be0.5.pet.in, tests/f64be0.6.pet.in: Replaced with
proper version.
* tests/f32be0.5.pet.in: Updated with proper version.
* tests/f32be0.6.pet.in: Added test file for 32bit big endian
version 0.6.
* tests/f64le0.6.pet.in: A proper version now.
* tests/f64le0.6.pet.in: Added 64 bit little endian version 0.6
test file.
* tests/f64le0.5.pet.in: Updated f64le0.5.pet.in with a version
that is surely from a 64bit little endian machine.
* yapet/main.cc: Added output showing the architecture (32/64bits,
little/big endian).
* configure.ac: Added check for sizeof(int*) in order to find out
architecture.
* tests/f32le0.6.pet.in: Test file for 32bit little endian version
0.6.
* crypt/crypt.h: Fixed memory leak in decrypt(); leak occurred only
when exception was thrown from Record<T>.
* crypt/file.cc: Removed empty line.
* 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.
* tests/f64be0.6.pet.in: Added 64bit big endian version 0.6 test
file.
* yapet/pwgen/rng.cc: #include'd string.h used for strerror().
* 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.
* tests/Makefile.am: Moved DISTCLEANFILES to CLEANFILES. Remove rm
-rf foreign.pet corrupt.pet from clean-local target.
* crypt/file.h: readHeader() has to be const.
* 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.
* 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.
* crypt/yapetexception.h: Added new exception number NULLPOINTER.
* crypt/file.h: removed unused unions.
* tests/f32be0.5.pet.in, tests/f64be0.5.pet.in,
tests/f64le0.5.pet.in: Removed svn:keywords property.
* tests/f32le0.5.pet.in: Re-added file.
* tests/f32le0.5.pet.in: Removed file due to corruption
2009-08-31 Rafael Ostertag <rafi@guengel.ch>
* tests/tests.h: Removed commented-out code.
* tests/Makefile.am: Added more files to DISTCLEANFILES. Implicit
rule for .pet.in files added.
* 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).
* tests/endianess.cc: New tests added for checking endian
conversion functions.
* 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.
* 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.
* 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.
* 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.
* 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.
* crypt/yapetexception.h: Added additional information (EXNUM) to
YAPETException. Mainly due to change of the file version.
* 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.
* yapet/pwgendialog.cc: Added YAPET::PWGEN::AUTO in switch
statement in order to silence compiler.
* yapet/pwgen/charpool.cc: Removed unused variable and comment.
* yapet/pwgen/pwgen.cc: Added static casts in order to silence
compiler.
* ui/intinwidget.h: Return value of getDigitsForType() is
statically cast to int in order to silence compiler.
* doc/Doxyfile.in: Enabled DOT, call and caller graphs.
* tests/f32le0.5.pet.in: Re-added file.
* doc/Makefile.am: fixed bug #22
(http://bugs.guengel.ch/show_bug.cgi?id=22).
* configure.ac: Removed check for unsigned long long. Reordered
checks.
* configure.ac: AC_TYPE_UINT64_T changed to AC_TYPE_INT64_T.
* yapet/pwgen/rng.cc: The default rng used when AUTO is specified
is now /dev/urandom.
* tests/endianess.test: Test file holding uint[16|32|64]_t values
in big endian order.
* tests/Makefile.am: Added specific test files in EXTRA_DIST. Added
one new test for testing endianess conversion.
* tests/testpaths.h.in: Added some more paths.
* configure.ac: Added 64bits type checks.
* tests/foreign.pet.in: removed since we need more specific test
files.
* 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.
* configure.ac: bumped version to 0.6alpha1.
2009-08-25 Rafael Ostertag <rafi@guengel.ch>
* 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.
* 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.
* 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>
* AUTHORS: Edits.
* TODO: Updated.
* BUGS: Edits.
* NEWS: Updates and edits.
* doc/yapet.sgml.in: Some more alterations and improvements.
* 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>
* yapet/pwgendialog.cc: Test for oversized password length was
broken; replaced Config::getDefPWLength() by
Consts::getMaxPWLength().
* ui/colors.cc: Added additional compile time color scheme.
* po/yapet.pot: Updated with new msgid.
* po/de.po: add translation for new dialogbox in
yapet/mainwindow.cc.
* 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.
* yapet/mainwindow.cc: If changes are unsaved, it asks whether or
not they should be saved prior loading the new file.
* yapet/pwgendialog.cc: removed redundant and disastrous call
'delete pwleninput;'
* ui/inputwidget.cc: commented out redundant wclear().
* doc/README.sgml.in: Revised Introduction.
* po: Set ignore.
* NEWS: Fixed spelling.
* doc/yapet.sgml.in: Reorganized. Added password generator
documentation. Rewrote USAGE. Moved many refsect1 as refsect2 to
USAGE.
* doc/INSTALL.sgml.in: Documented the new --disable-pwgen option.
Rephrased some stuff. Added some corrections.
* po/POTFILES.in, po/de.po, po/yapet.pot: Added translations and
updates.
* doc/csv2yapet.sgml.in: reorganized content.
* doc/Makefile.am: Updated editfile variable to honor DOCNLS set by
the USE_NLS conditional.
* doc/Makefile.am: Commented stuff. Added conditionals for USE_NLS.
* configure.ac: AM_CONDITIONAL for USE_NLS added. Used by
doc/Makefile.am
* po/de.po: updated.
* yapet/pwgen/pwgen.h: fixed syntax (thanks to gcc).
* yapet/pwgen/pwgen.cc, yapet/pwgen/pwgen.h: Improved password
generation by avoiding unread character pools.
* yapet/pwgen/charpool.cc, yapet/pwgen/charpool.h: Added new
SUBPOOL: NOPOOL. New method fromPool(): find out from which pool
the character comes from.
* configure.ac: added test for strchr.
* tests/pwgen1.cc: Avoid using /dev/random if other rngs are
available.
* 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.
* yapet/pwgen/charpool.h: Fixed the ALL character pool to really
include all character pools available.
* 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.
* yapet/pwgen/rng.cc: Remove false assert(0).
* yapet/pwgen/rng.cc: RNG::getRandomNumber returns 0 if ceil == 0
unless it was compiled with --enable-assert, in which case it
will abort.
* 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.
* tests/charpool2.cc, yapet/pwgen/charpool.cc,
yapet/pwgen/charpool.h: Renamed CharacterPool::getNumPoolsNotRead
to CharacterPool::numPoolsNotRead.
* yapet/pwgen/pwgen.h: Name of method was changed. Change
incorporated.
* 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.
* tests/Makefile.am, tests/charpool2.cc: Added test for new
functionalities of charpool.
2009-08-20 Rafael Ostertag <rafi@guengel.ch>
* disttest/compiler.profiles.freebsd,
disttest/compiler.profiles.linux, disttest/disttest: Added
compiler profiles. Fixed bugs.
* ui/curswa.h: Removed unused KEY_ definition.
* NEWS: Updated.
* tests/Makefile.am: Fixed another $(top_builddir)/int.
* po/de.po, po/yapet.pot: Updated.
* tests/Makefile.am: Fixing include when using included libint (
-I$(top_builddir)/intl ).
* 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 ).
* tests/Makefile.am: generally added -I$(top_srcdir) to CPPFLAGS.
* yapet/pwgen/charpool.h: Included string.h.
* yapet/pwgen/rng.cc: Fixed typo in cpp directive.
* disttest/compiler.profiles.solaris: added more compiler profiles.
* disttest/compiler.profiles.linux: linux compiler profiles.
* disttest/compiler.profiles, disttest/compiler.profiles.solaris:
Compiler profiles for Solaris
* disttest/disttest: compiler profile file can be specified on the
command line.
* disttest, disttest/compiler.profiles, disttest/disttest,
disttest/toggle.pl: Automated build test.
* yapet/main.cc: pressing enter now really continues when hitting
an error in set_rlimit().
* doc/Makefile.am: Conditional build of xml parts enabled by using
sed to replace markers in the documentation with comments.
* yapet/passwordrecord.cc: Added missing #ifdef to make it compile
without pwgen enabled.
* 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.
* 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>
* 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.
* 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:
* po/POTFILES.in, po/de.po, po/yapet.pot: Updated.
* po/de.po, po/de_CH.po: Now the only version we support for
german.
* po/de_AT.po, po/de_DE.po: Not used anymore.
* po/LINGUAS: we support only one language de from now on.
* 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.
* yapet/pwgen/rng.cc: *** empty log message ***
* yapet/consts.cc, yapet/consts.h: Renamed namespace YAPETCONSTS to
YAPET::CONSTS.
* yapet/cfg.cc, yapet/cfg.h, yapet/cfgfile.cc, yapet/cfgfile.h:
Renamed namespace YAPETCONFIG to YAPET::CONFIG.
* yapet/cfg.h: Renamed name space YAPETCONFIG to YAPET::CONFIG.
2009-08-18 Rafael Ostertag <rafi@guengel.ch>
* po/de_AT.po, po/de_CH.po, po/de_DE.po, po/yapet.pot: Updated and
new translations added.
* tests/file4.cc, tests/file5.cc: Whitespace cleanup.
* 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.
* yapet/pwgen/rng.cc: fixed parameter type.
* doc/Doxyfile.in: fixed INPUT directive.
* crypt/file.cc: updated comments.
* ui/inputwidget.cc: Destructur will now call wrefresh() after
wclear() in the hope it will clear buffers.
* yapet/fileopen.cc: added proper preprocesor directives depending
on config.h.
* configure.ac: added missing check for header file.
* crypt/structs.h: added missing include.
* po/POTFILES.in, po/de_AT.po, po/de_CH.po, po/de_DE.po,
po/yapet.pot: Updated.
* yapet/pwgen/rng.cc: Adjusted messages.
* 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
* configure.ac: Added additional checks for functions. Added check
for /dev/random and /dev/urandom.
* 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.
* crypt, ui: *.orig files ignored now.
* crypt/Makefile.am, csv2yapet/Makefile.am, ui/Makefile.am,
yapet/Makefile.am: If --enable-assert is specified, -DDEBUG is
used, otherwise -DNDEBUG.
* tests, yapet: *.orig files ignored now.
* 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.
* 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
* configure.ac: *** empty log message ***
2009-08-17 Rafael Ostertag <rafi@guengel.ch>
* doc/Doxyfile.in: Added path to pwgen.
* 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>
* NEWS: Updated.
* 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.
* po/de_AT.po, po/de_CH.po, po/de_DE.po, po/yapet.pot: Updated due
to changes in string to translate.
* tests/file3.cc: White space cleanup.
2009-08-13 Rafael Ostertag <rafi@guengel.ch>
* 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.
* csv2yapet/csvimport.cc, csv2yapet/csvimport.h: When using
std::cout.flush() when doing verbose output.
2009-08-12 Rafael Ostertag <rafi@guengel.ch>
* 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".
* doc/yapet.sgml.in: Added description for how to use the ~ in
configuration files.
* po/de_AT.po, po/de_CH.po, po/de_DE.po, po/yapet.pot: Updated line
numbers.
* NEWS: Updated.
* BUGS: Added closed bugs.
* yapet/main.cc: Added assert()'s. Simplified code somewhat.
* 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.
* 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>
* doc/README.sgml.in: some updates.
* doc/bugreport.sgml: rephrased.
* ui/listwidget.h: Added assert()'s. Fixed bug #12
(http://bugs.guengel.ch/show_bug.cgi?id=12).
* yapet/fileopen.cc: Removed superfluous break; statements in
switch environments.
* ui/button.cc, ui/dialogbox.cc, ui/inputwidget.cc: Removed
superfluous break; statements in switch environments.
* Makefile.am, configure.ac, crypt/Makefile.am,
csv2yapet/Makefile.am, ui/Makefile.am, yapet/Makefile.am: Files
can handle the --enable-assert argument.
* csv2yapet/main.cc: Added namspace qualifier in front of Const
stuff.
* configure.ac: changed the name of the conditional.
* configure.ac: added support for assert()'s.
* ui/listwidget.h: replaced 'validateIterator() < 0' conditionals
with 'validateIterator() == ((l_size_type)-1)' conditionals in
the hope to reduce the number of possible bugs.
* NEWS: updated.
* 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/).
* configure.ac: Added check for ar/gar. Added additional checks for
types.
2009-08-10 Rafael Ostertag <rafi@guengel.ch>
* 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.
* configure.ac: updated help string for disable-csv2yapet.
* configure.ac: Bumped version number to 0.5. Fixed help string for
terminal-title -> Default: yes.
* tests/Makefile.am, tests/corrupt.cc, tests/corrupt.pet: Added
test for testing recognition of id string in pet files.
* tests/file.cc, tests/file2.cc, tests/file3.cc, tests/file4.cc,
tests/file5.cc: path to test files added.
* tests/key.cc: fixed svn tag.
* doc/yapet.sgml.in: changed the term 'password' to 'password
records'.
2009-07-26 Rafael Ostertag <rafi@guengel.ch>
* Makefile.cvs: ChangLog will be fetched from svn repository.
* doc/bugreport.sgml: Keyword expansion enabled.
* doc/yapet.sgml.in: revised yapet man page. Split content into
some more sections.
* doc/pwrecord.sgml: the term "main screen" properly capitalized.
* NEWS: update.
* BUGS: Added referer to bugs.guengel.ch.
* ui/listwidget.h: Fixed bug #9 "VI keys for list selection
movement" (see http://bugs.guengel.ch/process_bug.cgi).
* configure.ac: Fixed bug #8 " --enable-terminal-title should be
default" (see http://bugs.guengel.ch/show_bug.cgi?id=8).
* 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>
* intl.h: Doesn't inlcude gettext.h and locale.h when --disable-nls
is given.
* yapet/main.cc: Fixed build error when using --disable-nls.
2009-07-24 Rafael Ostertag <rafi@guengel.ch>
* BUGS: Cleared bugs.
2009-07-19 Rafael Ostertag <rafi@guengel.ch>
* 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.
* NEWS: Updated.
* 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.
* NEWS: updated.
* 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>
* 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>
* BUGS: added a link to http://bugs.guengel.ch
* doc/csv2yapet.sgml.in, doc/yapet.sgml.in: included bugreport.sgml
in the bugs section.
* doc/bugreport.sgml: rephrase.
* doc/Makefile.am: added bugreport.sgml to sgml_static_files.
* doc/bugreport.sgml: unified paragraph about how to report bugs.
2009-07-12 Rafael Ostertag <rafi@guengel.ch>
* TODO: Finishing touches prior 0.4 release.
* 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>
* tests/Makefile.am: Fixed CPPFLAGS of import tests.
* doc: Updated svn:ignore.
* doc/csv2yapet.sgml.in: Finished csv2yapet man page.
* doc/Makefile.am: Improved Makefile.am. Removed stuff for
conditional processing of docbook files.
* configure.ac: Help strings updated. --enable-build-doc will be
enabled only if lynx and xsltproc are found.
* po/de_AT.po, po/de_CH.po, po/de_DE.po, po/yapet.pot: Updated.
* Makefile.cvs: Added configure.ac as dependency for Makefile.in.
* doc/yapet.sgml.in: Some minor changes.
* MAINTAINER: updated.
* Makefile.am: Added automake options, distcheck configure flags,
and BUGS file as EXTRA_DIST.
* BUGS: added BUGS file.
2009-07-10 Rafael Ostertag <rafi@guengel.ch>
* configure.ac: Source documentation is now independently of
--enable-doc-build built.
* ., csv2yapet: svn property edit.
* po, po/de_AT.po, po/de_CH.po, po/de_DE.po, po/yapet.pot:
Translated new messages.
* NEWS, TODO: Update.
* doc: Ignore some more files.
* doc/Makefile.am: Added csv2yapet man page and conditional
processing for docbook files.
* doc/csv2yapet.sgml.in: Added man page for csv2yapet.
* doc/lincense.sgml: Renamed.
* doc/yapet.sgml.in: Restructuring, improved tagging.
* doc/INSTALL.sgml.in: Updated tagging, added stuff concerning
csv2yapet.
* doc/pwrecord.sgml: Updated tagging.
* doc/README.sgml.in: Rephrase, update.
* doc/caution.sgml: Rephrase.
* csv2yapet/csvimport.h: changed comment.
* csv2yapet/main.cc: changed comments.
2009-07-09 Rafael Ostertag <rafi@guengel.ch>
* doc/license.sgml: fixed typo.
* doc/lincense.sgml: put license in a separate file.
2009-07-08 Rafael Ostertag <rafi@guengel.ch>
* doc/pwrecord.sgml: rephrase.
* yapet/main.cc: grouped the command line arguments in the help
screen.
* yapet/mainwindow.cc: clear the terminal title upon exit.
* doc/Doxyfile.in: added the path of csv2yapet in order to process
it.
* csv2yapet/csvimport.h: whitespace cleanup.
* csv2yapet/csvimport.cc, csv2yapet/csvimport.h, csv2yapet/main.cc:
commented the source.
2009-07-07 Rafael Ostertag <rafi@guengel.ch>
* csv2yapet/csvimport.cc, csv2yapet/csvimport.h, csv2yapet/main.cc:
Basic functionality implemented.
* NEWS: Updated.
* configure.ac: Added tests for headers and functions needed by
csv2yapet.
* tests/import1.cc, tests/import3.cc, tests/import4.cc,
tests/import5.cc: Added missing headers.
* tests/file3.cc: whitespace cleanup.
* Makefile.am: adjusted build order
* yapet/main.cc: updated help text
* tests/import1.cc, tests/import2.cc: Improved tests
* tests/Makefile.am: Added conditional for csv2yapet build. Added
more import tests.
* Makefile.am, configure.ac: Added conditional for csv2yapet build
* doc/Makefile.am: make clean properly cleans up generated files
* 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>
* 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
* TODO: Updated
* tests/file4.cc, tests/tests.h: Whitespace cleanup
* po/de_AT.po, po/de_CH.po, po/de_DE.po, po/yapet.pot: Updated
translations
* yapet/cfgfile.cc: fixed typo
* crypt/file.cc: shortened the exception message.
* yapet/main.cc: added cmd line option for explicitly enable file
security check.
* yapet/cfgfile.cc: removed debug code.
* configure.ac: proper handling of --enable-*
2009-07-05 Rafael Ostertag <rafi@guengel.ch>
* NEWS, TODO: updated.
* configure.ac, yapet/Makefile.am, yapet/cfgfile.cc,
yapet/cfgfile.h, yapet/main.cc, yapet/mainwindow.cc:
configuration file handling implemented.
* configure.ac: removed prog check for flex and bison. Added checks
for additional C++ headers and C functions
* configure.ac: bumped version to 0.4. Added check for yacc and
lex.
* yapet/main.cc: update copyright date
* NEWS: updated
* yapet/main.cc, yapet/mainwindow.cc, yapet/mainwindow.h: time-out
for locking screen can be specified on the cmd line
* 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
* NEWS, TODO: update
* configure.ac: checks availability of functions for file mode and
ownership retrieval
* yapet/fileopen.h: prevents creation of files named only '.pet'.
* 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.
* doc/Makefile.am: *.in files are again included in the
distribution
2009-06-12 Rafael Ostertag <rafi@guengel.ch>
* doc/INSTALL.sgml.in: updated "what gets installed?" section
* doc/README.Cygwin.sgml.in: fixed typo
2009-06-11 Rafael Ostertag <rafi@guengel.ch>
* AUTHORS: Updated.
* 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
* NEWS: Updated.
* LICENSE: License file that includes the waiver on the GPL for the
OpenSSL library.
* Makefile.am: added the LICENSE file to the EXTRA_DIST and
textdoc_DATA variables.
* yapet.desktop.in: Syntax conforms to the freedesktop.org spec.
* doc/yapet.sgml.in: Fixed typo
* doc/yapet.sgml.in: Added reference to the author in the BUGS
section
* doc/README.sgml.in: Added copyright statement
* configure.ac: Bumped to version 3.0a
* TODO: Updated
* intl.h: Adjusted the copyright statement as described in the GNU
HowTo
* 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
* 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
* 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>
* TODO: added one more todo
* TODO: todo file added
2009-04-13 Rafael Ostertag <rafi@guengel.ch>
* Makefile.am: maintainer-clean removes README.Cygwin
* 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.
* doc/README.Cygwin.sgml.in: Copyright not inserted via
preamble.sgml but copyright.sgml. Build Error section added.
* configure.ac: some cleanup
* NEWS: Updated.
* doc/INSTALL.sgml.in, doc/README.sgml.in: fixed this and that.
* 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>
* tests/Makefile.am: fixed build
* configure.ac: fixed am conditionals
* Makefile.am, configure.ac, crypt/Makefile.am, ui/Makefile.am,
yapet/Makefile.am: - -I../intl will only be added when not using
included gettext
* doc/DESIGN.sgml.in, doc/INSTALL.sgml.in, doc/README.sgml.in,
doc/yapet.sgml.in: - Fixed some spelling errors. Added subtitles.
* doc/Makefile.am: - added README.Cygwin
* doc/README.Cygwin.sgml.in: Cygwin build instructions added
* 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
* po/ChangeLog: - ChangeLog update
* po/de_AT.po, po/de_CH.po, po/de_DE.po, po/yapet.pot: -updated due
to changes in the code
* configure.ac: - added checks for support functions of openssl
* 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>
* po/de_AT.po, po/de_CH.po, po/de_DE.po, po/yapet.pot: - some
updates
* configure.ac: if doxygen is not found, no is returned
* yapet/mainwindow.cc: added some comments
* doc/Makefile.am: if programs are not available, error messages
are printed
* 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
* 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>
* yapet/mainwindow.cc: xterm title updates implemented.
* ui/misc.cc: fixed syntax error
* ui/misc.cc, ui/misc.h: - added new function isXTerm - improved
setTerminalTitle
* configure.ac: added test for strncmp
2009-03-22 Rafael Ostertag <rafi@guengel.ch>
* yapet/mainwindow.cc: - added setTerminalTitle, but its not
completely tested yet.
* ui/colors.cc: - whitespace cleanup
* ui/Makefile.am, ui/misc.cc, ui/misc.h: - setTerminalTitle
implemented.
* configure.ac: - Added some more tests - Added
--enable-terminal-title
2009-03-12 Rafael Ostertag <rafi@guengel.ch>
* doc/Doxyfile.in: - Doxygen configuration updated.
* configure.ac: --with-xslpath removed. No longer needed, since
xsltproc fetches xsl via http now.
* 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>
* ui/inputwidget.cc, ui/inputwidget.h: - Cursor visible in input
widgdets.
- Backspace handling improved.
* doc/Makefile.am: - Including files to build documentation in the
tar-ball.
2008-07-21 Rafael Ostertag <rafi@guengel.ch>
* 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>
* .cvsignore, crypt/.cvsignore, doc/.cvsignore, tests/.cvsignore,
ui/.cvsignore, yapet/.cvsignore: - No longer used.
* ui/listwidget.h: - Whitespace cleanup
* ui/listwidget.h: - Made it compile under SUNWspro.
* NEWS: - Update
* doc/yapet.sgml.in: - Documented the new functionalities.
- Improved the documentation and added some missing stuff.
* doc/caution.sgml: - Minor alterations
* ui/listwidget.h: - Added a method for highlighting a certain
iterator in the widget.
- Completed the search functions.
- Minor clean ups.
* yapet/mainwindow.cc, yapet/mainwindow.h: - The searchNext()
method is implemented.
* 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.
* configure.ac: - Bumped package version to 0.2.
- Added checks for additional headers and functions.
2008-07-18 Rafael Ostertag <rafi@guengel.ch>
* yapet/mainwindow.cc, yapet/mainwindow.h: - Prepared for the
search functionality.
* yapet/Makefile.am: - Added the new files for the search dialog.
* yapet/searchdialog.cc: - Whitespace cleanup
* yapet/searchdialog.cc, yapet/searchdialog.h: - Search Dialog
* ui/listwidget.h: - No protected members anymore.
- Some comments
* doc/yapet.sgml.in: - Updated manpage.
* yapet/mainwindow.cc: - The title is now properly shown even upon
resize.
* ui/basewindow.cc, ui/basewindow.h: - Resize events are not
processed below certain dimensions.
* NEWS: - Updated
2008-07-17 Rafael Ostertag <rafi@guengel.ch>
* 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.
* ui/listwidget.h: - Selection handling now working
- Newly introduced method for selection removed again.
* ui/listwidget.h: - Border of inactive listwidget uses now
different characters for drawing the border
- New method for hiding the selection bar.
* yapet/mainwindow.cc: - Deleting a record puts a message in the
status bar now.
* 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>
* 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.
* crypt/partdec.cc, crypt/partdec.h: - Added less-than operator in
order to be able to sort a list of partdecS.
* configure.ac: - Check for strcmp() added.
* ui/listwidget.h: - Added code for sorting.
- Does not compile.
2008-02-27 Rafael Ostertag <rafi@guengel.ch>
* configure.ac: *** empty log message ***
* configure.ac: *** empty log message ***
* 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.
* 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>
* doc/Makefile.am: - Passes distcheck except for doxygen generated
docs, but that's 'k.
* doc/Makefile.am, doc/caution.sgml, doc/preamble.sgml,
doc/pwrecord.sgml, doc/supportedplatforms.sgml: *** empty log
message ***
* Makefile.am, doc/Makefile.am, tests/Makefile.am: *** empty log
message ***
* doc/DESIGN.sgml.in, doc/Doxyfile.in: - Recovered files.
* doc/DESIGN.sgml.in, doc/Doxyfile.in, doc/Makefile.am: *** empty
log message ***
* doc/pwrecord.sgml: *** empty log message ***
* 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.
* doc/yapet.sgml.in: *** empty log message ***
* doc/Makefile.am, doc/manfigures, doc/yapet.sgml.in: *** empty log
message ***
2008-02-25 Rafael Ostertag <rafi@guengel.ch>
* doc/Makefile.am: - Fixed Makefile for make/dmake under solaris.
* ., .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
***
* doc/Makefile.am, doc/yapet.sgml.in, doc/yapetman.sgml.in: ***
empty log message ***
* doc/yapetman.sgml.in: *** empty log message ***
* doc/DESIGN.sgml.in, doc/Makefile.am, doc/yapetman.sgml.in: ***
empty log message ***
* 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>
* 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>
* 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>
* 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>
* 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>
* doc/INSTALL.sgml.in: *** empty log message ***
* doc/INSTALL.sgml.in: *** empty log message ***
* ui/curswa.h, ui/listwidget.h, yapet/mainwindow.cc: - Compiles
using Sun's X/Open implementation of curses.
* Makefile.cvs: - Creates an empty README file
* README: - Will generated from sgml sources.
* 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>
* doc/INSTALL.sgml.in: *** empty log message ***
* README, configure.ac, crypt/file.cc, crypt/file.h,
yapet/mainwindow.cc: - Date when master password was last set is
now displayed.
* tests/file5.cc: - Test file
* 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>
* 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>
* 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.
* 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.
* 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>
* 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>
* 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>
* doc/INSTALL.sgml.in, doc/Makefile.am, doc/preamble.sgml: -
SGMLized INSTALL.sgml.in
2008-02-08 Rafael Ostertag <rafi@guengel.ch>
* INSTALL, INSTALL.generic, Makefile.am, doc/INSTALL.sgml.in: -
INSTALL is built from INSTALL.sgml.in
* AUTHORS, configure.ac, yapet/main.cc: - Uses getopt_long() if
available for option parsing.
2008-02-07 Rafael Ostertag <rafi@guengel.ch>
* tests/tests.h: - Functions and defines shared by the tests.
* 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.
* 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>
* 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.
* 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>
* 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>
* ., .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
* 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>
* ., 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
|