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 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309
|
2005-06-23 Andrew Belov <andrew_belov@newmail.ru>
* 3.10/2.78 rev. 22: tag "arj-3_10_22".
* arjtypes.c: YATF
2005-06-21 Andrew Belov <andrew_belov@newmail.ru>
* arjsfx.c, arjtypes.c, environ.h, rearj.c, scrnio.c, arj.c,
arj_arcv.c, arj_file.c, arj_proc.c:
Merged with recent TCO release to migrate the timestamp code and
TAB handling fixes.
2005-06-18 Andrew Belov <andrew_belov@newmail.ru>
* arj_proc.c: Removed the quiet_mode logic for arjdisp_enabled
(ARJDISP could operate on a separate terminal - no need to enforce
and/or change quiet_mode)
* integr.c: Mark an unreferenced variable as const, otherwise gcc
3.4 removes it - from Guillem Jover <guillem@debian.org>
2004-10-18 Andrew Belov <andrew_belov@newmail.ru>
* arj_proc.c: test fix for using quiet_mode with ARJDISP
2004-06-18 Andrew Belov <andrew_belov@newmail.ru>
* 3.10/2.78 rev. 21: tag "arj-3_10_21".
* arj_arcv.c, arj_file.c, arj_proc.c, arj_user.c, arjtypes.c,
environ.c, externs.c, externs.h, makefile:
Merged with the remaining part of TCO fixes to make up for 3.10.21
2004-05-31 Andrew Belov <andrew_belov@newmail.ru>
* defines.h, encode.c, environ.c, environ.h, fmemcmp.asm, misc.c,
rearj.c: Resync with TCO to close any outstanding bugs
2004-05-01 Andrew Belov <andrew_belov@newmail.ru>
* arj.c: Rudimentary Borland code caused the filenames in argv[] to
be mishandled under Win32
2004-04-21 Andrew Belov <andrew_belov@newmail.ru>
* register.c: REGISTER might fail due to _fput_* changes
2004-04-17 Andrew Belov <andrew_belov@newmail.ru>
* 3.10/2.78 rev. 20: tag "arj-3_10_20".
* environ.c: Cleaned up the DOS wildcard code
* arjdata.c:
The gamma cycle is now over, removing gamma version markers
* arjsfxjr.c, arjtypes.c, ea_mgr.c, encode.c, environ.c, fardata.c,
gost_t.c, misc.c, msgbind.c, packager.c, rearj.c, uxspec.c, arj.c,
arj_arcv.c, arj_file.c, arj_user.c, arjsec_l.c:
Supress warnings in GCC with -Wall - a patch from Guillem Jover
<guillem@debian.org>
2004-04-14 Andrew Belov <andrew_belov@newmail.ru>
* arjsfx.c, defines.h, environ.h, filelist.c:
Resync with current Win32 work on TCO
* environ.c:
Keep a wildcard trace bitmap on the stack to speed up certain
searches in OS/2-32 and Win32 (OS/2-16 gets DosEditName again).
Linux statvfs import solution from Guillem Jover
<guillem@debian.org>
2004-03-21 Andrew Belov <andrew_belov@newmail.ru>
* environ.c: Workaround for partial patterns passed to fnmatch()
2004-03-17 Andrew Belov <andrew_belov@newmail.ru>
* arj_arcv.c:
Removed compulsory endline insertion into comments. Fixed chapter
archive access.
2004-03-16 Andrew Belov <andrew_belov@newmail.ru>
* environ.c:
Fixed to compile with Linux v 2.6 headers (progressing name clash
with libc)
2004-02-21 Andrew Belov <andrew_belov@newmail.ru>
* 3.10/2.78 rev. 19: tag "arj-3_10_19".
* garble.c: Follow-up fix to the SKIP_GET_EXE_NAME patch
2004-02-20 Andrew Belov <andrew_belov@newmail.ru>
* arj_arcv.c, arj_proc.c, environ.c, externs.c, externs.h, misc.c,
misc.h:
Added the "-_" option to convert the filenames into lowercase
after a patch from Konstantin Reznichenko <kot@premierbank.dp.ua>
* arj_arcv.c: Tolerate "-2l" on platforms without EA support.
* garble.c:
Inverted the check for SKIP_GET_EXE_NAME (regression from 2.78.13)
2004-01-25 Andrew Belov <andrew_belov@newmail.ru>
* scrnio.c, makefile, arj_proc.c, arj.c:
Stdout/console fixes
* msgbind.c, rearj.c, arj_proc.h, arjsfx.c, arjsfxjr.c, arjtypes.c,
environ.c, arj_proc.c, arj.c:
Patches from NetBSD codeline to enable NetBSD/x86-64 support
2003-10-20 Andrew Belov <andrew_belov@newmail.ru>
* make_key.c: YATF
2003-10-16 Andrew Belov <andrew_belov@newmail.ru>
* 3.10/2.78 rev. 18: tag "arj-3_10_18".
* arjdata.c, exe_sear.c, packager.c:
Incorporating QNX build patches by Mike Gorchak <mike@malva.ua>
* arj_file.c, environ.c, environ.h:
Merged with TCO up to 2.78.18 to introduce the final attribute fix
2003-09-19 Andrew Belov <andrew_belov@newmail.ru>
* environ.c: Fixes for compiling on SCO
* fardata.c: ASP Linux v 7.3: GCC would complain on va_arg(ap,short)
Patches submitted by Igor Paul March Chuk <chuk@unicorn.kiev.ua>
2003-09-14 Andrew Belov <andrew_belov@newmail.ru>
* 3.10/2.78 rev. 17: tag "arj-3_10_17".
* arj_file.c, arj_proc.c, fardata.c, makefile, scrnio.c, scrnio.h:
Merged with TCO branch up to 2.78.17
2003-07-15 Andrew Belov <andrew_belov@newmail.ru>
* 3.10/2.78 rev. 16: tag "arj-3_10_16".
* uxspec.c, uxspec.h, arj_arcv.c, defines.h:
New parameter: "-2o2", to save both UID and GID in symbolic form.
2003-06-30 Andrew Belov <andrew_belov@newmail.ru>
* 3.10/2.78 rev. 15: tag "arj-3_10_15".
* uxspec.c:
Should return a value from set_uxspecial() when link() succeeds
2003-06-27 Andrew Belov <andrew_belov@newmail.ru>
* arj_arcv.c, arj_user.c, ea_mgr.c, environ.c:
Merged with 2.78.15-TCO to fix the extended header update issue
* arj_arcv.c:
Prevent uncontrolled overwriting of existing files during
extraction - SunOS patch from Etienne Joarlette <etienne@go.cc>
* packager.c:
Add "-+" to the archiver command line rather than response file
2003-06-22 Andrew Belov <andrew_belov@newmail.ru>
* arj.c, arjcrypt.c, arjdisp.c, arjsfx.c, arjsfxjr.c, make_key.c,
makestub.c, msgbind.c, packager.c, postproc.c, rearj.c,
register.c, sfxstub.c, today.c:
Switched to "int main()" for consistency
2003-06-10 Andrew Belov <andrew_belov@newmail.ru>
* arj.c:
Minor fix for iterating over extension names in -hx
2003-05-14 Andrew Belov <andrew_belov@newmail.ru>
* 3.10/2.78 rev. 14: tag "arj-3_10_14".
* packager.c, arjdata.c: Packaging for SPARC
* makefile:
Link REGISTER with integr.* as a temporary workaround for
POSTPROC regressions
* rearj.c: Fixed handling of empty lines in REARJ.CFG
2003-05-11 Andrew Belov <andrew_belov@newmail.ru>
* 3.10/2.78 rev. 13: tag "arj-3_10_13".
2003-05-08 Andrew Belov <andrew_belov@newmail.ru>
* arj_proc.c, register.c:
Updates for SPARC from Etienne Joarlette <etienne@go.cc>
2003-05-07 Andrew Belov <andrew_belov@newmail.ru>
* arjsec_h.c, environ.h, makefile:
Updates for SPARC from Etienne Joarlette <etienne@go.cc>
* arj_user.c:
Fixed the "arj o" command (regression from 2.62.08).
Display the ARJ-PROTECT safety factor.
2003-05-03 Andrew Belov <andrew_belov@newmail.ru>
* rearj.c, recovery.c, register.c, arj_proc.c, arj_user.c,
arjsec_h.c, encode.c, environ.c, file_reg.c, postproc.c,
arj_arcv.c:
Updates for SPARC from Etienne Joarlette <etienne@go.cc>
* arjcrypt.c:
ARJCRYPT v 2.15: fixed inconsistency w/GOST256L method
* fardata.c:
Force CUSTOM_PRINTF for ARJ to bring "-jp" back
2003-04-27 Andrew Belov <andrew_belov@newmail.ru>
* encode.c, environ.c, environ.h, exe_sear.c, gost.c, gost40.c,
join.c, postproc.c, recovery.c, arj.h, arj_arcv.c, arj_file.c,
arj_file.h, arj_proc.c, arj_proc.h, arj_user.c, arjcrypt.c,
arjsfxjr.c:
Updates for SPARC from Etienne Joarlette <etienne@go.cc>
2003-04-26 Andrew Belov <andrew_belov@newmail.ru>
* environ.c:
Converged the OS/2 and NT wildcard matching algorithms
2003-04-24 Andrew Belov <andrew_belov@newmail.ru>
* environ.h, filelist.c, register.c:
Fixes for integration of 2.78.13 build environment
2003-04-18 Andrew Belov <andrew_belov@newmail.ru>
* garble.c, join.c:
Build/packaging patches and man pages from Guillem Jover
<guillem@debian.org>
2003-04-15 Andrew Belov <andrew_belov@newmail.ru>
* encode.c, environ.c, environ.h, recovery.c, arj_arcv.c,
arjsfxjr.c, arjtypes.c:
Preliminary SPARC/SunOS patches from Etienne Joarlette
<etienne@go.cc>
2003-04-12 Andrew Belov <andrew_belov@newmail.ru>
* 3.10/2.78 rev. 12: tag "arj-3_10_12".
* environ.h, rearj.c, arj.c, arj_user.c, arjdisp.c, arjsfx.c,
arjtypes.c, decode.c, environ.c:
Preliminary support for QNX v 6.0 using patches from
Mike Gorchak <mike@malva.ua>
* garble.c, gost40.c, arj_proc.c:
Encryption fixes from 2.78.12-TCO
2003-04-06 Andrew Belov <andrew_belov@newmail.ru>
* 3.10/2.78 rev. 11: tag "arj-3_10_11".
* rearj.c: Several command-line switches were blocked out.
* makefile: Fixed stack overrun under OS/2-32.
2003-04-02 Andrew Belov <andrew_belov@newmail.ru>
* 3.10/2.78 rev. 10: tag "arj-3_10_10".
* externs.h, uxspec.c, externs.c, environ.h, environ.c,
defines.h, arj_proc.c, arj_arcv.c:
Reintroduced the old (pre-2.76) directory archiving order,
now optional as "-2r"
* scrnio.h, scrnio.c, arj_file.c:
Fixed several counter display issues
2003-02-07 Andrew Belov <andrew_belov@newmail.ru>
* 3.10/2.78 rev. 8: tag "arj-3_10_8".
* uxspec.h, today.c, uxspec.c, scrnio.c, scrnio.h, register.c,
recovery.c, rearj.c, packager.c, misc.c, localize.cmd, makefile,
filelist.h, garble.c, fardata.h, filelist.c, fardata.c, externs.h,
externs.c, environ.c, environ.h, encode.c, bindings.h, chk_fmsg.c,
decode.c, defines.h, arjsfxjr.c, arjsfx.c, arjsec_h.c, arjdisp.c,
arjdata.c, arj_user.c, arj_proc.c, arj_file.h, arj_file.c,
arj_arcv.c, arj.h, arj.c:
Merged with TCO branch up to 2.78.08 (colorstyle support and
internal cleanup)
2003-01-25 Andrew Belov <andrew_belov@newmail.ru>
* 3.10/2.78 rev. 7: tag "arj-3_10_7".
* postproc.c, scrnio.c, scrnio.h, packager.c, ntstream.h, ea_mgr.c,
environ.c, environ.h, externs.c, garble.c, makefile, mkdir_p.cmd,
msgbind.c, ntstream.c, arjcrypt.c, arjdata.c, arjdisp.c, arjsfxjr.c,
defines.h, arj_user.c, arj.h, arj_arcv.c, arj_proc.c, arj.c:
Added Win32 support
2002-12-13 Andrew Belov <andrew_belov@newmail.ru>
* environ.h: Migrated the FAR_BLK_MAX fix from TCO branch.
* msgbind.c: Fixed to compile with GCC/EMX.
2002-07-04 Andrew Belov <andrew_belov@newmail.ru>
* arj.c: Fixed crash at startup with "ARJ Q" and no filespec.
* arj_file.c, defines.h: Added "-d1" and "-d2".
* arjtypes.c: Fixed wrong timestamp conversion (regression from
13/08/2001 perf. enh. for 2.77).
2002-05-14 Andrew Belov <andrew_belov@newmail.ru>
* arj_proc.c: Fixed handling of "+" and "-" modifiers in ARJ.CFG.
* arj_user.c: Fixed the storage attributes for modification archive
timestamp.
2002-04-14 Andrew Belov <andrew_belov@newmail.ru>
* environ.c: Fix for a GCC v 3.0 optimization bug.
2002-04-08 Andrew Belov <andrew_belov@newmail.ru>
* arj.c, arj_arcv.c, arj_proc.c, arjsec_h.c, arjsec_l.c, environ.h,
externs.c, makefile, packager.c: Official Open-source release.
2002-03-27 Andrew Belov <andrew_belov@newmail.ru>
* Transferred to SourceForge.
2002-03-27 Andrew Belov <andrew_belov@newmail.ru>
* packager.c: Removed company names
* arj.c, arj_user.c, arjsec_h.c, arjsec_l.c, arjsfx.c, arjsfxjr.c,
crc32.c, defines.h, environ.c, makefile, msgbind.c, packager.c,
rearj.c: Preparations for open-sourcing.
2002-02-26 Andrew Belov <andrew_belov@newmail.ru>
* environ.h: DeUNIXified the EMX branch.
2002-01-30 Andrew Belov <andrew_belov@newmail.ru>
* scrnio.h: Added scrn_reset() stub for Borland C.
* file_crc.c: Removed (obsolete since ARJ v 2.72).
* crc32.c, encode.c: Fixed to compile with Borland C v 3.1.
2002-01-12 Andrew Belov <andrew_belov@newmail.ru>
* arj_file.c: Fixed the "-i5" indicator.
2001-11-30 Andrew Belov <andrew_belov@newmail.ru>
* packager.c: Merged with German NLS for 2.71.04.
2001-11-23 Andrew Belov <andrew_belov@newmail.ru>
* asm_incl.inc: Removed the obsolete code for pure ASM modules.
2001-11-09 Andrew Belov <andrew_belov@newmail.ru>
* makefile: Introduced OpenWatcom v 11.0c compiler (LIBC).
2001-11-08 Andrew Belov <andrew_belov@newmail.ru>
* environ.h: OpenWatcom fixes.
2001-10-23 Andrew Belov <andrew_belov@newmail.ru>
* environ.c: New get_exe_name() for SKIP_GET_EXE_NAME.
2001-10-14 Andrew Belov <andrew_belov@newmail.ru>
* makefile: Fixed MS C options to avoid including .\C_DEFS.H.
2001-09-27 Andrew Belov <andrew_belov@newmail.ru>
* makefile: Converted to VisualAge C++ v 3.65.
* decode.c: Fixed to shut off the VisualAge optimizer.
2001-09-23 Andrew Belov <andrew_belov@newmail.ru>
* arj_arcv.c, ext_hdr.c: Fixed some EXT_HDR regressions in 16-bit
mode.
2001-09-15 Andrew Belov <andrew_belov@newmail.ru>
* arjtypes.c: Fixed time handling with XPG.4 LIBC.
2001-09-11 Andrew Belov <andrew_belov@newmail.ru>
* arjtypes.c: Fixed the display of UNIX timestamps in MS-DOS.
2001-09-09 Andrew Belov <andrew_belov@newmail.ru>
* recovery.c: Fixed protection block size calculation.
* arj_arcv.c: Fixed the regression from 04/02/2001 changes.
2001-09-06 Andrew Belov <andrew_belov@newmail.ru>
* arjtypes.c: Corrected the DOS-to-UNIX timestamp conversion.
2001-09-04 Andrew Belov <andrew_belov@newmail.ru>
* makefile: Conditional compiles in medium model.
* garble.c: Fixed ARJCRYPT loading/verification order. Fixed
ARJCRYPT v 2.1 incompatibility.
* arj_file.c: Fixed "-2a" for the ".*" pattern.
2001-09-02 Andrew Belov <andrew_belov@newmail.ru>
* arjtypes.c: Implemented fm_native().
2001-08-31 Andrew Belov <andrew_belov@newmail.ru>
* arj_proc.c: Fixed the parsing of -t1f/-t1g.
* arj_file.c: -t0 upon extraction will now retain the 8th bit.
2001-08-30 Andrew Belov <andrew_belov@newmail.ru>
* rearj.c: Added support for .tar.gz bundles. Changed to use the
platform-neutral STD_*_ATTR.
* environ.c: Added fork()-enabled exec_pgm() for REARJ.
2001-08-29 Andrew Belov <andrew_belov@newmail.ru>
* uxspec.c: Support for numeric UID/GID representation.
2001-08-28 Andrew Belov <andrew_belov@newmail.ru>
* packager.c: Removed the snappy ANSI screen.
* makefile: Fixes for ancient Microsoft compilers.
* arjtypes.c: Fixed to take DST into account with IBM LIBC.
2001-08-27 Andrew Belov <andrew_belov@newmail.ru>
* arj_proc.c: Merged the -2p parsers for OS/2 and UNIX.
* arj_arcv.c: Dropped parse_unixtime() from the merge.
* ansi.c, ansi.h, arj.c, arj.h, arjdata.c, arjsec_l.c, arjsfx.c,
arjsfxjr.c, arj_arcv.c, arj_arcv.h, arj_file.c, arj_proc.c,
arj_proc.h, arj_user.c, decode.c, defines.h, ea_mgr.c, encode.c,
environ.c, environ.h, exe_sear.c, externs.c, externs.h,
filelist.c, filelist.h, garble.c, makefile, misc.c, misc.h,
msgbind.c, packager.c, postproc.c, rearj.c, recovery.c, scrnio.c,
scrnio.h: Merged 2.76-STABLE into 2.77-CURRENT.
* ansi.c: Re-fix the 14/08/2001 chg. for DIRECT_TO_ANSI.
2001-08-26 Andrew Belov <andrew_belov@newmail.ru>
* file_reg.c: Added a special hack for PACKAGER in UNIX.
* arj_proc.c: Added '#' as a comment character to ARJ.CFG.
2001-08-25 Andrew Belov <andrew_belov@newmail.ru>
* scrnio.c: Added scrn_reset().
* environ.c: Tolerate EINVAL when doing fcntl()/flock().
* arj_file.c: Fixed the ANSI output with DIRECT_TO_ANSI.
* arj_arcv.c: Temporary parse_unixtime() for 2.76-stable.
* arjdisp.c: Added ANSI terminal reset on the ending screen. UNIX
branch (7-bit ASCII).
* arj.c: Fixed for argv[] expansion in UNIX.
2001-08-24 Andrew Belov <andrew_belov@newmail.ru>
* msgbind.c: Parameter inversion ("!") support.
* environ.h, misc.c: Hardlink support.
* file_reg.c: Fixed the case sensitivity issues.
* filelist.c: Fixed for hardlink support.
* arj_user.c: Introduced the UNIX list mode.
2001-08-23 Andrew Belov <andrew_belov@newmail.ru>
* uxspec.c, uxspec.h: Created.
* ea_mgr.c: Moved the mget/mput_* to ARJ_PROC.*.
2001-08-21 Andrew Belov <andrew_belov@newmail.ru>
* garble.c: UNIX implementation via dlopen().
* filelist.c, filelist.h: Renamed some filelist constants.
* exe_sear.c: Fixed premature fclose() in ELF get_exe_size().
2001-08-19 Andrew Belov <andrew_belov@newmail.ru>
* environ.c: Added preliminary support for UNIX platforms.
2001-08-17 Andrew Belov <andrew_belov@newmail.ru>
* arj.c: Removed M_OS_SPECIFIC for "-2d".
2001-08-16 Andrew Belov <andrew_belov@newmail.ru>
* arjtypes.c: Fixed buggy time_t conversions.
2001-08-15 Andrew Belov <andrew_belov@newmail.ru>
* makefile: The MetaWare builds now use IBM LIBC.
* defines.h: ARJ32 v 3.05 PERF ENH - introduced FDICSIZ.
* decode.c: Performance enhancements to 32-bit decode_f().
2001-08-14 Andrew Belov <andrew_belov@newmail.ru>
* ansi.h, scrnio.c, scrnio.h: Disabled the code generation for
OS/2.
* makefile: Introduced IBM VisualAge C++ v 3.00 compiler. The
OS/2-32 compiler now defaults to VACPP.
* environ.c: Moved file_copy() from ARJ_PROC.C.
* arj_proc.c: Added support for priority deltas.
* arj_file.c: Changed the ANSI display to use VIO under OS/2.
* arj.c: Fixed -hk to work with -va.
* ansi.c: Disabled code generation for OS/2.
2001-08-13 Andrew Belov <andrew_belov@newmail.ru>
* debug.h: Added assertion macros.
* arjtypes.c: Bummed the mk_unixtime() to get rid of loops.
2001-07-24 Andrew Belov <andrew_belov@newmail.ru>
* encode.c: Blown out the rest of BCC-related comments.
2001-07-16 Andrew Belov <andrew_belov@newmail.ru>
* environ.c: Fixed launch of DOS archivers from REARJ.
2001-07-09 Andrew Belov <andrew_belov@newmail.ru>
* arjdata.c: Corrected to comply the English date format.
2001-06-24 Andrew Belov <andrew_belov@newmail.ru>
* environ.c: Changed memory allocation in wild_list().
* arj.c: Changed wildcard_pattern to UNIX-style.
2001-06-21 Andrew Belov <andrew_belov@newmail.ru>
* misc.c: Fixed CFA for the 16-bit world.
* arj_user.c: ** Updated to ARJ v 2.76 code level **. Fixed
phantom EAs appearing after updates.
* arj_proc.c: unpack_mem() changed for deferred garble_init().
2001-06-20 Andrew Belov <andrew_belov@newmail.ru>
* arj_arcv.c, environ.c: ** Updated to ARJ v 2.76 code level **.
* arj.c: ** Updated to ARJ v 2.76 code level **.
2001-06-19 Andrew Belov <andrew_belov@newmail.ru>
* packager.c: Added glossary to the debug distribution.
* ansi.c, arj.c, arj.h, arjdata.c, arjsec_l.c, arjsfx.c,
arjsfxjr.c, arj_arcv.c, arj_arcv.h, arj_file.c, arj_proc.c,
arj_proc.h, arj_user.c, defines.h, ea_mgr.c, encode.c,
environ.c, environ.h, exe_sear.c, filelist.c, filelist.h,
garble.c, makefile, misc.c, misc.h, msgbind.c, packager.c,
postproc.c, rearj.c, recovery.c, scrnio.h: Merged recent 2.75
code with earlier revisions on 2.76 sparse tree.
2001-06-04 Andrew Belov <andrew_belov@newmail.ru>
* arj_proc.c: Fixed check_multivolume() regression from 29/03.
2001-05-11 Andrew Belov <andrew_belov@newmail.ru>
* msgbind.c: Disabled termination by signals.
2001-04-07 Andrew Belov <andrew_belov@newmail.ru>
* environ.c: Fixed file_open (regression from 2.75.18.3).
2001-04-06 Andrew Belov <andrew_belov@newmail.ru>
* ansi.c, arj.c, arj.h, arjdata.c, arjsec_l.c, arjsfx.c,
arjsfxjr.c, arj_arcv.c, arj_arcv.h, arj_file.c, arj_proc.c,
arj_proc.h, arj_user.c, ea_mgr.c, encode.c, environ.c,
environ.h, filelist.c, filelist.h, makefile, misc.c, misc.h,
msgbind.c, rearj.c, recovery.c, scrnio.h: Merged with MetaWare
High C branch.
2001-04-05 Andrew Belov <andrew_belov@newmail.ru>
* rearj.c: Now uses FILE_COUNT for counting packed files.
* arj_proc.c: Fixed looping with High C optimizations.
* arjsfxjr.c: Fixed the CTRL+C handlers for IBM C and High C.
* arjsfx.c: Fixed the counts to be FILE_COUNT.
2001-04-01 Andrew Belov <andrew_belov@newmail.ru>
* arj_file.c: Fixed display_block().
2001-03-31 Andrew Belov <andrew_belov@newmail.ru>
* recovery.c: Fixed to compile with MetaWare High C/C++.
2001-03-29 Andrew Belov <andrew_belov@newmail.ru>
* makefile: Introduced MetaWare High C v 3.20 compiler.
* arj_proc.c: Fixed to compile with MetaWare High C.
* arj.c, arj.h, arjsec_l.c, arjsfx.c, arjsfxjr.c, arj_arcv.h,
arj_proc.c, arj_proc.h, ea_mgr.c, environ.c, environ.h,
makefile, rearj.c: Created a MetaWare High C branch.
2001-02-23 Andrew Belov <andrew_belov@newmail.ru>
* exe_sear.c: Improved the header lookup procedure.
* arj_arcv.c: Added debugging dump for header errors.
2001-02-21 Andrew Belov <andrew_belov@newmail.ru>
* postproc.c: Now writes header only if changed it.
* makefile: Improved debugging and added map file creation.
* arj_proc.c: M_INVALID_DATE for unrecognized dates.
2001-02-20 Andrew Belov <andrew_belov@newmail.ru>
* packager.c: Added symbol file creation for DEBUG branch.
2001-02-16 Andrew Belov <andrew_belov@newmail.ru>
* environ.c: Removed import_timestamp() as obsolete.
2001-02-12 Andrew Belov <andrew_belov@newmail.ru>
* exe_sear.c: Preliminary support for ELF modules.
2001-02-10 Andrew Belov <andrew_belov@newmail.ru>
* arjtypes.h: Changed to accomodate the multiplatform modes.
TYPES_INCLUDED -> ARJTYPES_INCLUDED.
* arjtypes.c: Created.
2001-02-05 Andrew Belov <andrew_belov@newmail.ru>
* misc.c: Added far_memset().
* garble.c: Fixed loading of ARJCRYPT in ARJSFXV.
* ea_mgr.c: Fixed EA cleanup under 32-bit OS/2.
2001-02-04 Andrew Belov <andrew_belov@newmail.ru>
* arj_arcv.c, arj_user.c: Changed to use the extended header
module.
2001-02-02 Andrew Belov <andrew_belov@newmail.ru>
* ext_hdr.c: Created.
2001-02-01 Andrew Belov <andrew_belov@newmail.ru>
* msgbind.c: Added emulation of strupr()/strlwr() functions.
* environ.h: Added preliminary support for UNIX platforms.
2001-01-30 Andrew Belov <andrew_belov@newmail.ru>
* garble.c: Fixed ARJCRYPT initialization for GCC/EMX.
* arjcrypt.h: Implemented structure packing (so it does not get
blurred with GCC).
2001-01-29 Andrew Belov <andrew_belov@newmail.ru>
* integr.c, sfxstub.c, sfx_id.c: Created.
* rearj.c: Fixed for GCC/EMX.
* postproc.c: ARJ/EMX executables are now packed as well.
* packager.c: Fixed for new ARJDISP naming and GCC/EMX.
* msgbind.c: Allowed use of the "/" path separator.
* makefile: Renamed ARJ$DISP to ARJDISP (so goes the source).
* arj_file.c: Added verification for NULL in file_close().
* arjsec_l.c: Disabled compilation for the shareware SFX.
2001-01-28 Andrew Belov <andrew_belov@newmail.ru>
* misc.c: Fixed the [] handling in xwild_match().
* gnu/configure.in, gnu/makefile.in: Created.
2001-01-25 Andrew Belov <andrew_belov@newmail.ru>
* environ.c: Swapped the file/subdir search in wild_list(). The
getenv() stub now compiles for MS C only.
2001-01-17 Andrew Belov <andrew_belov@newmail.ru>
* misc.h: Removed the CFA addressing macros.
* misc.c: Added new CFA numbering scheme.
2001-01-16 Andrew Belov <andrew_belov@newmail.ru>
* environ.h: Improved the buffering for 32-bit OS/2. Removed
lreg().
2001-01-15 Andrew Belov <andrew_belov@newmail.ru>
* packager.c: Added year substitution in copyright notice.
* arjdata.c: Added the "@{y}" tag to represent year.
2001-01-12 Andrew Belov <andrew_belov@newmail.ru>
* arj_proc.c: Fixed parsing of -vxxxK and -vxxxM.
2001-01-02 Andrew Belov <andrew_belov@newmail.ru>
* ext_hdr.h: Created.
2000-12-18 Andrew Belov <andrew_belov@newmail.ru>
* arjdata.c: Fixed LOCALE branching.
2000-12-17 Andrew Belov <andrew_belov@newmail.ru>
* environ.h: Added signal parameters macro.
* crc32.c: Resurrected.
* crc32.asm: Removed (superseded by CRC32.C).
2000-11-14 Andrew Belov <andrew_belov@newmail.ru>
* rearj.c: Fixed locking of temporary directories.
2000-11-03 Andrew Belov <andrew_belov@newmail.ru>
* postproc.c: No action for no packing.
2000-11-02 Andrew Belov <andrew_belov@newmail.ru>
* make_key.c: Fixed to use the 10-digit format.
2000-10-31 Andrew Belov <andrew_belov@newmail.ru>
* arjdata.c: Fixed the nested tag expansion.
2000-10-29 Andrew Belov <andrew_belov@newmail.ru>
* today.c: Removed the hh:mm debug timestamp.
* postproc.c: Implemented LZEXE and LXLITE packing.
* makefile: Automation Release #4 - LIBC.
* arj_file.c, join.c: Fixed for LIBC.
* enc_asm.asm: Removed (superseded by ENCODE.C).
* dec_asm.asm: Removed (superseded by DECODE.C).
* arj_user.c: Fixed digit_pos setup in ARJSFXV.
* arj_proc.c: Fixed "ARJ I" for large executables.
2000-10-28 Andrew Belov <andrew_belov@newmail.ru>
* makestub.c: Changed to accept the destination filename.
* makefile: Automation Release #3 - concurrent compiles.
* arjdata.c: Fixed for Turbo C. Fixed tag expansion.
2000-10-27 Andrew Belov <andrew_belov@newmail.ru>
* make_cmt.c: Removed (superseded by PACKAGER.C).
* makefile: Debug version now uses itself for packaging.
* arjsfx.c: Fixed the signal()-related warnings in MS C.
2000-10-24 Andrew Belov <andrew_belov@newmail.ru>
* packager.c: Incorporated with MAKE_CMT.
* makefile: Automation Release #1 - new packaging algorithm.
* crc32.asm: Fixed afl_mul in 16-bit mode.
2000-10-23 Andrew Belov <andrew_belov@newmail.ru>
* environ.h: Added the executable extensions.
* arjdisp.c: Fixed the "test" option to be platform-neutral.
2000-10-21 Andrew Belov <andrew_belov@newmail.ru>
* packager.c: Created.
2000-10-19 Andrew Belov <andrew_belov@newmail.ru>
* msgbind.c: Implemented the substitution feature.
* encode.c: Joined with the 01/09 edition of ENC_ASM.ASM.
* arj_user.c: Fixed 3-digit volumes handling in ARJSFXV.
* arjdata.c, arjdata.h: Created.
2000-10-18 Andrew Belov <andrew_belov@newmail.ru>
* misc.c: Fixed for IBM C Set++. Fixed the extended wildcard
parser.
* join.c: Positioning hotfix for the previous version.
* arjcrypt.c, gost40.c: Fixed last_bytes increment on encoding.
* exe_sear.c: SFX creation has been optimized for linear mode.
* environ.c: Fixed for ARJDISP on DOS.
2000-10-17 Andrew Belov <andrew_belov@newmail.ru>
* ea_mgr.c: Updated for 32-bit OS/2.
* crc32.asm: Fixed the LONG return values for 32-bit mode.
2000-10-16 Andrew Belov <andrew_belov@newmail.ru>
* sfxstub.asm: Fixed prototypes for OS/2 libraries.
* environ.c: Updated for 32-bit OS/2.
2000-10-15 Andrew Belov <andrew_belov@newmail.ru>
* sfxstub.asm: Fixed for 32-bit OS/2.
* reg_stmp.h: Removed (changes for 32-bit).
* postproc.c: Removed the outdated REGISTER postprocessing.
* join.c: Fixed for IBM C Set++.
* enc_asm.asm: Completely duplicated the routines in ENCODE.C.
* encode.c: Finished the portabilization.
2000-10-12 Andrew Belov <andrew_belov@newmail.ru>
* arjsfxjr.c: German NLS.
2000-10-11 Andrew Belov <andrew_belov@newmail.ru>
* encode.c: Portabilized the method 4.
* decode.c: Completely portabilized the DEC_ASM.ASM.
2000-10-10 Andrew Belov <andrew_belov@newmail.ru>
* decode.c: Fixed make_table for C version of decoder.
2000-10-07 Andrew Belov <andrew_belov@newmail.ru>
* makestub.c: Include file now compiles even w/o resources.
2000-10-04 Alexander Bahlo <alex@trikone.han.de>
* make_cmt.c: NLS german.
2000-10-02 Andrew Belov <andrew_belov@newmail.ru>
* decode.c: Introduced C versions of decode_c/p().
2000-09-30 Andrew Belov <andrew_belov@newmail.ru>
* crc32_32.asm: Removed (ARJ-SECURITY performance fix renders
CRC32_32.ASM obsolete).
* crc32.asm: Fixed for REGVARS.
* asm_incl.inc: Added REGVARS, used if compiling for FLATMODE.
* arj.c: Fixed "-2d?" handling.
2000-09-13 Andrew Belov <andrew_belov@newmail.ru>
* arjsec_l.c: Slightly optimized the arjsec_read().
2000-09-09 Andrew Belov <andrew_belov@newmail.ru>
* encode.c, enc_asm.asm: Portabilized the calling conventions.
* crc32.asm: Incorporated with the CRC32_32.ASM.
* arj_user.c: ** Updated to ARJ v 2.75 code level **.
* arjsfxjr.c, arj_arcv.c: Brought the "malicious header" checkup
in line with ARJ v 2.75.
2000-09-01 Andrew Belov <andrew_belov@newmail.ru>
* enc_asm.asm: encode_f() has been removed.
* encode.c: Brought back encode_f().
2000-08-19 Andrew Belov <andrew_belov@newmail.ru>
* makefile: Implemented REGISTER packing as in v 2.71a.
* environ.c: Added a workaround for >2G free space report.
* arj.c, arj_proc.c, arj_user.c: ** Updated to ARJ v 2.73 code
level **.
* arj_arcv.c: ** Updated to ARJ v 2.73 code level **.
2000-08-17 Andrew Belov <andrew_belov@newmail.ru>
* makefile: Removed the FILE_CRC utility.
* arjcrypt.c, file_reg.c, garble.c: ** Updated to ARJ v 2.72 code
level **.
* arjcrypt.h: Updated to version 2.0 of the interface.
2000-08-16 Andrew Belov <andrew_belov@newmail.ru>
* arj_user.c: ** Updated to ARJ v 2.72 code level **.
2000-08-15 Andrew Belov <andrew_belov@newmail.ru>
* enc_asm.asm: encode_f(): Fixed upd_tree() call sequence.
* arj_user.c: Modified century handling for CENT_*.
* arj_arcv.c: Fixed misuse of new_stdout in certain places.
2000-08-12 Andrew Belov <andrew_belov@newmail.ru>
* filelist.c: Fixed block overrun due to clumsy sizeof().
* arj_file.c: ** Updated to ARJ v 2.72 code level **.
2000-08-11 Andrew Belov <andrew_belov@newmail.ru>
* misc.c: ** Updated to ARJ v 2.72 code level **.
* environ.h: Corrected the multiplatform logic.
* arjsfx.c: Transformed to CFA filelist model (NB: our branch
uses the FILE_COUNT type everywhere!).
* arjsec_l.c: Fixed the annoying C4061 messages.
2000-08-03 Andrew Belov <andrew_belov@newmail.ru>
* arjsfxjr.c, arj_arcv.c: Fixed malicious header processing.
2000-08-01 Andrew Belov <andrew_belov@newmail.ru>
* msgbind.c: Introduced a useless year tracking feature.
* exe_sear.c: Fixed for using descriptive word constants.
* arj_arcv.c: ** Updated to ARJ v 2.72 code level **.
2000-07-23 Andrew Belov <andrew_belov@newmail.ru>
* misc.c: Removed near_stricmp().
2000-07-22 Andrew Belov <andrew_belov@newmail.ru>
* arj.c: Made the commercial versions unexpirable.
2000-07-07 Andrew Belov <andrew_belov@mtu-net.ru>
* arj_proc.c, recovery.c: ** Updated to ARJ v 2.72 code level **.
* filelist.c: ** ARJ v 2.72 functionality achieved **.
2000-07-02 Andrew Belov <andrew_belov@mtu-net.ru>
* environ.c, exe_sear.c: ** Updated to ARJ v 2.72 code level **.
* encode.c: Brought back huf_encode() and huf_encode_m3().
2000-06-22 Andrew Belov <andrew_belov@mtu-net.ru>
* enc_asm.asm: A paranoid memmove argument optimization.
2000-06-02 Andrew Belov <andrew_belov@mtu-net.ru>
* arj_file.c: Fixed to follow the new ARJ v 2.72 ARJ_QUIET2.
2000-05-30 Andrew Belov <andrew_belov@mtu-net.ru>
* makefile: Fixed /B2 parameter order in MS C setup.
2000-05-17 Andrew Belov <andrew_belov@mtu-net.ru>
* today.c: Added German timestamp format.
2000-05-07 Andrew Belov <andrew_belov@mtu-net.ru>
* makefile: HELP.ARJ is now verified as we rewrite DECODE.C.
2000-05-05 Andrew Belov <andrew_belov@mtu-net.ru>
* enc_asm.asm: Started re-portabilization (moving code to C).
2000-04-14 Andrew Belov <andrew_belov@mtu-net.ru>
* makefile: @'ed out all the external commands.
2000-03-29 Andrew Belov <andrew_belov@mtu-net.ru>
* arj_user.c: Fixed abnormal behavior of -b and -b2 switches.
2000-03-25 Andrew Belov <andrew_belov@mtu-net.ru>
* makefile: Introduced IBM C Set++ v 2.10 compiler.
* crc32.asm: Changes for 32-bit mode.
* asm_incl.inc: Changed to allow 32-bit compiles.
2000-03-19 Andrew Belov <andrew_belov@mtu-net.ru>
* makefile: Converted all filename specifiers to lowercase.
* arj_arcv.c, arj_user.c: ** Updated to ARJ v 2.71 code level **.
2000-03-08 Andrew Belov <andrew_belov@mtu-net.ru>
* register.c: ** Updated to REGISTER v 2.71 code level **.
* arj_proc.c, exe_sear.c: ** Updated to ARJ v 2.71 code level **.
* arjsfxjr.c: ** Updated to ARJ v 2.71 code level **.
2000-02-29 Andrew Belov <andrew_belov@mtu-net.ru>
* makefile: Created a separate directory for *.STS. Introduced
Borland C++ v 4.00 compiler.
* defines.h: Changed the default EXE size constraints.
2000-02-28 Andrew Belov <andrew_belov@mtu-net.ru>
* rearj.c: Fixed to compile with QuickC.
* makefile: Removed path dependencies in compiler settings.
2000-02-27 Andrew Belov <andrew_belov@mtu-net.ru>
* types.h: Removed (superseded by ARJTYPES.H).
2000-02-20 Andrew Belov <andrew_belov@mtu-net.ru>
* makestub.c, sfxstub.asm: Created.
2000-02-14 Andrew Belov <andrew_belov@mtu-net.ru>
* rearj.c: Fixed "/J" option behavior.
* ea_mgr.c: Added resolve_longname().
* arj_user.c: Added a switch to skip century display in dates.
Fixed century display in dates beyond 2000.
* arj_proc.c: Fixed "ARJ I" for large executables. Fixed
"-v...K", "-v...M" parsing.
2000-02-10 Andrew Belov <andrew_belov@mtu-net.ru>
* makefile: Introduced Microsoft Visual C v 1.00 compiler.
Introduced Microsoft Visual C v 1.50 compiler.
2000-02-07 Andrew Belov <andrew_belov@mtu-net.ru>
* make_key.c, register.c: Fixed signed/unsigned issues.
* file_reg.c: Fixed signed/unsigned issues.
* arj_arcv.c: Implemented RO flag clearing on add operations.
2000-02-04 Andrew Belov <andrew_belov@mtu-net.ru>
* msgbind.c: Changed TYPES.H -> ARJTYPES.H.
* enc_asm.asm: Packed the stack cleanup sequences upon return.
* arjtypes.h: Renamed to ARJTYPES.H.
1999-12-31 Andrew Belov <andrew_belov@mtu-net.ru>
* rearj.c: ** Updated to REARJ v 2.42 code level **. Added
shutdown_initiated, ctrlc_initiated.
* environ.c: Added arj_getdate() function.
1999-12-26 Andrew Belov <andrew_belov@mtu-net.ru>
* file_reg.h: Created.
* file_reg.c: Created from ARJ.C.
* arj.c: Moved all registration code to FILE_REG.C.
1999-12-05 Andrew Belov <andrew_belov@mtu-net.ru>
* arj_arcv.c: Fixed restoration of extended attributes.
1999-12-04 Andrew Belov <andrew_belov@mtu-net.ru>
* decode.c: Fixed buffer overrun in read_pt_len().
1999-12-01 Andrew Belov <andrew_belov@mtu-net.ru>
* arj_proc.c: Fixed M_OUT_OF_MEMORY errors in unstore().
1999-11-28 Andrew Belov <andrew_belov@mtu-net.ru>
* scrnio.c: Fixed clreol() under OS/2.
1999-11-24 Andrew Belov <andrew_belov@mtu-net.ru>
* rearj.h: Created.
* postproc.c: Changed to portabilize the verification scheme.
* arj.c, arj_user.c, environ.c: ** Updated to ARJ v 2.70 code
level **.
1999-11-23 Andrew Belov <andrew_belov@mtu-net.ru>
* make_key.c: Created.
* makefile: Moved all helper programs to one directory.
1999-11-22 Andrew Belov <andrew_belov@mtu-net.ru>
* arjsec_l.c: ** Updated to ARJ v 2.70 code level **.
1999-11-21 Andrew Belov <andrew_belov@mtu-net.ru>
* register.c: ** Updated to REGISTER v 2.70 code level **.
1999-11-20 Andrew Belov <andrew_belov@mtu-net.ru>
* arj_proc.c: Moved strip_lf() to this module.
1999-11-14 Andrew Belov <andrew_belov@p2.f181.n5020.z2.fidonet.org>
* makefile: OS/2 SFX modules are now packed.
1999-11-09 Andrew Belov <andrew_belov@p2.f181.n5020.z2.fidonet.org>
* today.c: Fixed debug time stamping.
1999-11-08 Andrew Belov <andrew_belov@p2.f181.n5020.z2.fidonet.org>
* makefile: Added REARJ.CFG to all distribution packages.
1999-11-07 Andrew Belov <andrew_belov@p2.f181.n5020.z2.fidonet.org>
* today.c: Added hh:mm timestamp for debug versions.
1999-11-06 Andrew Belov <andrew_belov@p2.f181.n5020.z2.fidonet.org>
* environ.c: Fixed read_line_noecho() under OS/2.
* ea_mgr.c: Fixed to work with Ext2FS.
1999-11-02 Andrew Belov <andrew_belov@p2.f181.n5020.z2.fidonet.org>
* environ.c: Fixed file_rmdir() with "-ha" option.
* arj_arcv.c, arj_user.c: Removed ARJSFXV shareware size
limitation.
* arj_user.c: Added automatic testing after ungarbling.
* arj_proc.c: Fixed AC/CC/DC parsing from ARJ.CFG.
* arj_arcv.c: Fixed read-only extraction in DOS/MSC version.
* arj.c: Added configuration file lookup.
1999-10-31 Andrew Belov <andrew_belov@p2.f181.n5020.z2.fidonet.org>
* arj_proc.c: Added day-of-year timestamp option.
1999-10-23 Andrew Belov <andrew_belov@p2.f181.n5020.z2.fidonet.org>
* arj_arcv.c: Added CHO_COMMENT header fixup.
* arj.c: Changed to allow empty filenames with -h#.
1999-10-22 Andrew Belov <andrew_belov@p2.f181.n5020.z2.fidonet.org>
* rearj.c: Fixed recursive repacking.
* environ.c: Fixed removable media detection with MS C/DOS.
* arj_proc.c: Added custom timestamp format option.
1999-10-20 Andrew Belov <andrew_belov@p2.f181.n5020.z2.fidonet.org>
* environ.c: Fixed delay() routine DOS branch.
1999-10-19 Andrew Belov <andrew_belov@p2.f181.n5020.z2.fidonet.org>
* dec_asm.asm, enc_asm.asm: Optimized by using direct immediate
PUSHes.
1999-10-15 Andrew Belov <andrew_belov@p2.f181.n5020.z2.fidonet.org>
* environ.c: Fixed time stamping on active streams.
1999-10-10 Andrew Belov <andrew_belov@p2.f181.n5020.z2.fidonet.org>
* environ.c: Fixed read_line() to return value under OS/2.
* arj_arcv.c: Fixed "ARJ x -d" bug with skipped files.
1999-10-06 Andrew Belov <andrew_belov@p2.f181.n5020.z2.fidonet.org>
* environ.h: Fixed missing prototype for farcoreleft().
1999-10-03 Andrew Belov <andrew_belov@p2.f181.n5020.z2.fidonet.org>
* environ.c: Fixed w95_cwd().
1999-10-02 Andrew Belov <andrew_belov@p2.f181.n5020.z2.fidonet.org>
* environ.c: Fixed get_exe_name() under DOS v 2.11/MS C.
* arj_arcv.c: Fixed long filename storage under Windows 95.
1999-10-01 Andrew Belov <andrew_belov@p2.f181.n5020.z2.fidonet.org>
* make_cmt.c: Created.
1999-09-28 Andrew Belov <andrew_belov@p2.f181.n5020.z2.fidonet.org>
* recovery.c: Fixed negative percentage bug.
* garble.c: Finally fixed DS restore.
* environ.c: Fixed Windows 95 detection under MS C/C++.
* arj_user.c: Fixed empty archive not being deleted. Moved
DTA/DTC output in front of EAs in "ARJ V".
1999-09-27 Andrew Belov <andrew_belov@p2.f181.n5020.z2.fidonet.org>
* environ.c: Fixed read_line() in xterm (XFree86 for OS/2).
1999-09-26 Andrew Belov <andrew_belov@p2.f181.n5020.z2.fidonet.org>
* makefile: Now runs arjc_<locale> to create packages.
* environ.c: Changed delay() routine DOS branch. Fixed
get_env_str() to work under OS/2 v 2.x.
1999-09-24 Andrew Belov <andrew_belov@p2.f181.n5020.z2.fidonet.org>
* arj_user.c: Fixed problem with duplicate files appearing. List
command now skips garbled EAs w/o -g.
1999-09-23 Andrew Belov <andrew_belov@p2.f181.n5020.z2.fidonet.org>
* arj_arcv.c: Fixed EAs being lost when main header is read.
Fixed volume flag fix (see 15/09) side-effect.
* arj_arcv.c: Fixed "shadow" EAs appearing with -2e.
1999-09-22 Andrew Belov <andrew_belov@p2.f181.n5020.z2.fidonet.org>
* arj_arcv.c, arj_user.c, recovery.c: ** Updated to ARJ v 3.02
code level **.
1999-09-21 Andrew Belov <andrew_belov@p2.f181.n5020.z2.fidonet.org>
* recovery.c: Fixed stream/section issue for large files.
* arj_user.c: Fixed memory leak with ARJ-SECURITY signatures.
1999-09-19 Andrew Belov <andrew_belov@p2.f181.n5020.z2.fidonet.org>
* arj_user.c: Fixed multivolume handling of non-ARJ files. Fixed
volume handling of "hollow" archives.
* arj_file.c: Added check for files larger than MAX_FILE_SIZE.
1999-09-18 Andrew Belov <andrew_belov@p2.f181.n5020.z2.fidonet.org>
* arj_arcv.c: Added check for encryption when building SFX. Fixed
chapter mark creation with EAs enabled.
1999-09-16 Andrew Belov <andrew_belov@p2.f181.n5020.z2.fidonet.org>
* today.c: Changed date format for English/American locale.
1999-09-15 Andrew Belov <andrew_belov@p2.f181.n5020.z2.fidonet.org>
* arj_arcv.c: Fixed open_input_file() to ignore errors w/-hq.
Fixed volume flag being reset by init_packing().
1999-09-14 Andrew Belov <andrew_belov@p2.f181.n5020.z2.fidonet.org>
* rearj.c: Fixed "invalid suffix" error when /T is used. Fixed
problem with "/A" being inoperable.
* makefile: Changed optimization options for MS C v 6.00.
* filelist.c: Fixed subdirectory retrieval in REARJ branch.
* arj_user.c: Fixed file number display in ARJSFXV -v.
1999-09-12 Andrew Belov <andrew_belov@p2.f181.n5020.z2.fidonet.org>
* environ.c: Fixed directory time stamping under OS/2.
* arj_user.c: Added EA display to list command.
* arj_arcv.c: Fixed subdirectories being trashed in ARJSFXV.
1999-09-11 Andrew Belov <andrew_belov@p2.f181.n5020.z2.fidonet.org>
* environ.c: Fixed EXE name retrieval under OS/2.
1999-09-07 Andrew Belov <andrew_belov@p2.f181.n5020.z2.fidonet.org>
* ea_mgr.c, ea_mgr.h: Created.
* arj_asm.h: Removed (superseded by *.H).
* arj_asm.asm: Removed (superseded by *.ASM).
1999-09-05 Andrew Belov <andrew_belov@p2.f181.n5020.z2.fidonet.org>
* arj_user.c: ** Updated to ARJ v 2.62d code level **.
1999-09-04 Andrew Belov <andrew_belov@p2.f181.n5020.z2.fidonet.org>
* arj_arcv.c: Fixed header search stub in ARJSFX.
* arjsfx.c: Fixed M_UNREG_SFX popping after help screen.
1999-09-02 Andrew Belov <andrew_belov@p2.f181.n5020.z2.fidonet.org>
* arj.c: Fixed explicit target directory parsing.
1999-08-30 Andrew Belov <andrew_belov@ru.ru>
* date_sig.h, filemode.h, today.c: Created.
* makefile: Added locale-dependent timestamp production.
* filemode.c: Created.
1999-08-29 Andrew Belov <andrew_belov@ru.ru>
* arj_user.c: Fixed comment creation/display conditions.
1999-08-28 Andrew Belov <andrew_belov@ru.ru>
* arj_file.c: Fixed filename display when rename fails.
1999-08-27 Andrew Belov <andrew_belov@ru.ru>
* msgbind.c: Added shareware/commercial binding selection.
1999-08-26 Andrew Belov <andrew_belov@ru.ru>
* scrnio.c: Fixed CT_NATIVE version of clreol().
* makefile: Added separate MSG include file directories.
* arj_user.c: Fixed DTA/DTC output in the list command. OS/2
SFXVs are no longer limited to 360K.
* arj_proc.c: Fixed response command detection.
* arj_arcv.c: Shareware SFXV limit has been removed for OS/2.
* arj.c: On LFN-capable systems, extension is now ".arj".
* ansi.c: Fixed cursor movement with C and D commands.
1999-08-25 Andrew Belov <andrew_belov@ru.ru>
* arj_user.c: Caching can now be disabled.
* arj.c: Added dynamic environment variable allocation.
1999-08-24 Andrew Belov <andrew_belov@ru.ru>
* arjcrypt.c, environ.c, register.c, scrnio.c: Ported to OS/2.
* msgbind.c: Added multiple OS capability.
1999-08-21 Andrew Belov <andrew_belov@ru.ru>
* scrnio.c, scrnio.h: Created.
* reg_stmp.h: The registration block now appears in DOS only.
* misc.c: Fixed archive bit checking in match_attrib(). Replaced
far_* routines with RTL ones for MS C.
* environ.c: Added far heap amount query routine for MS C. Fixed
shared open under OS/2 with MS C RTL.
* arj_user.c: Fixed archived files deletion. Fixed full filename
display in list_cmd().
* arj_file.c: Fixed delete_files(). Fixed
delete_processed_files().
* arj_arcv.c: Fixed -f option operation on extraction. Fixed
skipped files being treated as errors.
* arjsec_l.c: Now refuses to create envelope in unreg. ARJ.
* arjdisp.c: Portabilized.
* ansi.c: Moved compiler-dependent code to SCRNIO.C.
1999-08-20 Andrew Belov <andrew_belov@ru.ru>
* misc.c: Fixed pathname matching in flist_find().
* makefile: Added debugging facilities.
* filelist.c: Fixed filelist initialization.
* fardata.h: Debugging macros have been added.
* debug.c, debug.h: Created.
* arj_user.c: Fixed multivolume command launch conditions.
* arj_proc.c: Fixed -ji switch parsing.
* arj_arcv.c: Fixed filename formatting in index files. Fixed
filename output in copy_archive().
1999-08-19 Andrew Belov <andrew_belov@ru.ru>
* crc32.asm, crc32_32.asm: Added reverse CRC32 calculation.
* arjsec_l.c: Added commercial security envelope creation.
1999-08-18 Andrew Belov <andrew_belov@ru.ru>
* rearj.c: Log entry formats moved to resource file. Ported to
Microsoft C.
* misc.c: Fixed match_attrib().
* makefile: Introduced Microsoft C/C++ v 6.00 compiler.
Introduced Microsoft QuickC v 2.50 compiler.
* enc_asm.asm: Introduced Microsoft C/Quick C compatibility.
* crc32_32.asm: Created from CRC32.ASM.
* arj_user.c: Fixed -n option corrupting the archive. Messages
have been moved to FMSG area.
* arj_arcv.c: Fixed error count display in archive_cleanup().
Fixed return code in unpack_validation().
1999-08-17 Andrew Belov <andrew_belov@ru.ru>
* gost_t.c, gost_t.h: Created.
* gost.c: Pattern data has been moved to GOST_T.C.
* fmemcmp.asm: Fixed register loading.
* arj_user.c: Fixed archive cleanup before testing with -jt.
Fixed M_VERBOSE_FOOTER being output twice.
* arj_file.c: Removed redundant check from compare_fblock().
* arj.c: Fixed M_BAD_SYNTAX error upon chapter removal.
1999-08-16 Andrew Belov <andrew_belov@ru.ru>
* makefile: Introduced standard option for far data storage.
* garble.c: Fix for Microsoft C: SS is restored from DGROUP.
* environ.c: Fixed directory creation. Fixed looping on "batch"
error handler.
* encode.c: Added plain bufsiz decrease method.
* decode.c: Fixed decoded data output in decode_f().
* arj_user.c: Fixed verbose list display in ARJSFX archives.
1999-08-15 Andrew Belov <andrew_belov@ru.ru>
* makefile: Introduced macros for target EXE names. Introduced
Microsoft C/C++ v 7.00 compiler.
* ansi.c: Ported to Microsoft C.
1999-08-14 Andrew Belov <andrew_belov@ru.ru>
* environ.c: Fixed case mapping routine.
1999-08-13 Andrew Belov <andrew_belov@ru.ru>
* makefile: Added package/send build rule.
* arj_file.c: Fixed high-ASCII characters display in help.
* arjdisp.c: ** ARJDISP v 1.00 functionality achieved **.
* arj.c: Fixed registration data validation.
1999-08-12 Andrew Belov <andrew_belov@ru.ru>
* arjdisp.c, register.h, reg_stmp.h: Created.
* register.c: Created.
* makefile: Added ARJ$DISP build rules. Added REGISTER build
rules.
* fardata.c: ** Added a ARJ$DISP v 1.00 branch **. ** Added a
REGISTER v 2.60 branch **.
* arj_proc.c: ** Added an ARJ$DISP v 1.00 branch **.
* arj.c: Fixed inability to register ARJ.EXE.
1999-08-11 Andrew Belov <andrew_belov@ru.ru>
* rearj.c: ** REARJ v 2.28 functionality achieved **.
* filelist.c: Fixed filename retrieval in REARJ branch.
1999-08-10 Andrew Belov <andrew_belov@ru.ru>
* arj_proc.c: ** Added a REARJ v 2.28 branch **.
1999-08-09 Andrew Belov <andrew_belov@ru.ru>
* makefile: Added REARJ build rules.
* filelist.c: ** Added a REARJ v 2.28 branch **.
* environ.c: Fixed w95_findfirst()/w95_findnext(). Removed
lfn_test_spec[].
* environ.c: Fixed LFN detection under Windows 95.
* arj_arcv.c: Fixed garble operation in special_processing().
1999-08-08 Andrew Belov <andrew_belov@ru.ru>
* rearj.c: Created.
* arj_file.c, fardata.c: ** Added a REARJ v 2.28 branch **.
1999-08-07 Andrew Belov <andrew_belov@ru.ru>
* postproc.c: Added ARJSFX postprocessing.
* misc.c: Fixed near_stricmp().
* arj_file.c: Fixed loop bug in file_open_noarch().
* arjsfxjr.c: ** ARJSFXJR v 2.62c functionality achieved **.
Fixed cache pointer loss problem.
* arjsfx.c: Fixed missing EXE name in ARJSFX banner.
1999-08-06 Andrew Belov <andrew_belov@ru.ru>
* makefile: Added ARJSFXJR build rules.
* decode.c: Removed setjmp()/longjmp() from SFX bindings.
1999-08-05 Andrew Belov <andrew_belov@p2.f181.n5020.z2.fidonet.org>
* makefile: Introduced ASM_DEFS include file.
* asm_incl.inc: Now loads ASM_DEFS.INC for defines.
* arjsfxjr.c: Created.
1999-08-04 Andrew Belov <andrew_belov@p2.f181.n5020.z2.fidonet.org>
* makefile: Added ARJSFX build rules. Fixed source file list for
ARJSFXV.
* garble.c: Fixed DS restore when exiting from ARJCRYPT.
* arj_arcv.c, arj_user.c, exe_sear.c: ** Added an ARJSFX v 2.62
branch **.
* environ.h: Added VBUF/TBUF constants.
* crc32.asm: Defining NC_CRC will disable crc32_for_char.
* chk_fmsg.c: Reduced stack memory allocation in SFX.
* arjsfx.c, arj_file.c: ** Added an ARJSFX v 2.62 branch **.
1999-08-03 Andrew Belov <andrew_belov@p2.f181.n5020.z2.fidonet.org>
* garble.c: ** Added an ARJSFX v 2.62 branch **.
1999-08-02 Andrew Belov <andrew_belov@p2.f181.n5020.z2.fidonet.org>
* environ.c, fardata.c, misc.c: ** Added an ARJSFX v 2.62 branch
**.
* externs.c: AUTOINIT concept introduced.
* environ.c: Implemented recall feature in read_line(). Used
lfn_test_spec[] for LFN testing.
* environ.c: Fixed read-only file deletion in ARJSFXV.
* decode.c: ** Added an ARJSFX v 2.62 branch **.
1999-08-01 Andrew Belov <andrew_belov@p2.f181.n5020.z2.fidonet.org>
* makefile: Introduced C_DEFS include file.
1999-07-31 Andrew Belov <andrew_belov@p2.f181.n5020.z2.fidonet.org>
* makefile: Added a set of assembly options. Added separate
shareware/retail subdivisions.
1999-07-30 Andrew Belov <andrew_belov@p2.f181.n5020.z2.fidonet.org>
* msgbind.c: Removed check for MSGTEXT_MAX to allow long SFX help
messages.
1999-07-29 Andrew Belov <andrew_belov@p2.f181.n5020.z2.fidonet.org>
* sfx_id.asm: Created.
* makefile: Added ARJSFXV build rules.
* dec_asm.asm: Method 4 disable macro renamed to ARJSFX.
* arj_user.c: ** Added an ARJSFXV v 2.62 branch **.
1999-07-28 Andrew Belov <andrew_belov@p2.f181.n5020.z2.fidonet.org>
* arj_user.c: Fixed query_action parameter types.
* arj_proc.c: ** Added an ARJSFXV v 2.62 branch **.
1999-07-23 Andrew Belov <andrew_belov@p2.f181.n5020.z2.fidonet.org>
* arj_file.c, exe_sear.c: ** Added an ARJSFXV v 2.62 branch **.
1999-07-18 Andrew Belov <andrew_belov@p2.f181.n5020.z2.fidonet.org>
* arj_arcv.c: ** Added an ARJSFXV v 2.62 branch **.
1999-07-13 Andrew Belov <andrew_belov@p2.f181.n5020.z2.fidonet.org>
* decode.c: DICSIZ allocation fixed.
1999-07-12 Andrew Belov <andrew_belov@p2.f181.n5020.z2.fidonet.org>
* arj_user.c: Changed arg. type of arj_user_msg() to FMSG.
* arj_file.c: Changed arg. type of scroll_puts() to FMSG *.
1999-07-08 Andrew Belov <andrew_belov@p2.f181.n5020.z2.fidonet.org>
* decode.c, misc.c: ** Added an ARJSFXV v 2.62 branch **.
* arj_arcv.c: Fixed "Bad header" error for header size==2600.
Fixed ARJ$DISP invocation.
1999-07-07 Andrew Belov <andrew_belov@p2.f181.n5020.z2.fidonet.org>
* garble.c: Fixed potential problem with not-standard.
* filelist.c, garble.c: ** Added an ARJSFXV v 2.62 branch **.
* chk_fmsg.c: ** Added an ARJSFXV v 2.62 branch **.
1999-07-05 Andrew Belov <andrew_belov@p2.f181.n5020.z2.fidonet.org>
* misc.c: Added some general-purpose SFX routines.
* arjsec_l.c, fardata.c: ** Added an ARJSFXV v 2.62 branch **.
* arjsfx.h: Created.
* arjsec_h.c: ** Added an ARJSFXV v 2.62 branch **.
1999-07-04 Andrew Belov <andrew_belov@p2.f181.n5020.z2.fidonet.org>
* arjsfx.c, bindings.h, types.h: Created.
* fardata.h: Macros for msg_* have been added.
* environ.c: ** Added an ARJSFXV v 2.62 branch **. Added
get_exe_name().
* arjtypes.h: Created.
1999-07-03 Andrew Belov <andrew_belov@p2.f181.n5020.z2.fidonet.org>
* msgbind.c: Added support for external files ("@" clause).
* makefile: Changed build rules for ARJ overlay linkage. Fixed
dependencies for garble.c.
* arj_xms.asm, asm_incl.inc, file_crc.c: Created.
* filelist.c: Fixed storage method selection in hash_init().
Moved a part of XMS code to ARJ_XMS.ASM.
* enc_asm.asm: Optimized make_tree by using SHR.
* crc32.asm: Fixed stack frame setup in crc32_for_char.
* arj_xms.h: Created.
* arj_proc.c: Fixed name formation in append_curtime_proc().
Fixed sw_tail presence recognition.
* arj_proc.c: Fixed '.' lookup in append_curtime_proc().
1999-07-02 Andrew Belov <andrew_belov@p2.f181.n5020.z2.fidonet.org>
* det_x86.h, gost.h, gost_asm.h: Created.
* det_x86.asm, gost_asm.asm: Recompiled.
* gost40.c: Moved a part of code to GOST.C/GOST.H.
* gost.c: ** ARJ v 2.62c functionality achieved **. Created.
* garble.c: Fixed DS being destroyed by ARJCRYPT. Fixed password
modifiers type (must be signed).
* arjcrypt.h: Added cipher/decipher constants.
* arjcrypt.c: ** ARJ v 2.60 functionality achieved **.
1999-07-01 Andrew Belov <andrew_belov@p2.f181.n5020.z2.fidonet.org>
* makefile: Added ARJCRYPT definition and build rules.
* gost40.c: Fixed back_code update on encryption. Fixed stack
pollution on initialization.
* exe_sear.c, garble.c: Removed DOS version dependence.
* garble.c: Fixed ARJCRYPT entry point calculation. Fixed
ARJCRYPT module location procedure.
* exe_sear.c: Fixed exit condition in browse(). Fixed fseek()
origin in fetch_block().
* environ.c: Fixed file_setftime().
* arj_user.c: Fixed chapter conversion conditions. Fixed comment
display conditions.
* arj_arcv.c: Added missing LF before query_for_rename(). Fixed
file deletion logic in chapter archives.
* arjcrypt.c: Created.
* arj.c: Fixed conditional exclusion filelist cleanup.
1999-06-30 Andrew Belov <andrew_belov@p2.f181.n5020.z2.fidonet.org>
* misc.c: Used strncmp_os() in filename comparisons.
* enc_asm.asm: Fixed near/far issues in procedures. Transferred
most of C code to this module.
* decode.c: Fixed count underflow condition in decode() (since
now, file size is limited to 2G bytes).
* arj_user.c: Added missing LF to chapter_list_fmt.
* arj_file.c: Fixed EOF sequence output in shutdown_putbits().
* arj_arcv.c: Fixed CRC error display conditions. Fixed loop
condition in special_processing(). Fixed rewind when falling
back to method 0.
* arj_arcv.c: Fixed errors related to chapter processing.
* arj.c: Fixed chapter command conversion.
1999-06-29 Andrew Belov <andrew_belov@p2.f181.n5020.z2.fidonet.org>
* misc.c: Fixed return type of farrealloc_msg().
* filelist.c: Swap file could not be created, fixed.
* encode.c: Fixed near/far function mismatches.
* arj_file.c: smft_start_numgraph contained invalid string.
* arj_arcv.c: Fixed uncompsize decrease in pack_file().
1999-06-28 Andrew Belov <andrew_belov@p2.f181.n5020.z2.fidonet.org>
* filelist.c: Fixed resize conditions in add_entry().
retrieve_entry() returned garbage, fixed.
* filelist.c: Fixed properties pointer abuse in add_entry().
* environ.c: Fixed directory recursion in wild_list().
* arj_user.c: aostream was unopened due to invalid condition.
Fixed unexpected comment prompt.
1999-06-27 Andrew Belov <andrew_belov@p2.f181.n5020.z2.fidonet.org>
* misc.c: Fixed write/increment order in to_7bit().
* makefile: Added preparation section.
* environ.c: Fixed incorrect condition in is_file().
* decode.c: Fixed counter incrementation in decode_f(). Fixed
stack loss due to unprototyped decode_p().
* decode.c: extraction_stub() was not called for last block.
* arj_user.c: Fixed error counter incrementation. Fixed misuse of
ARJ_CMD_EXTRACT.
* arj_proc.c: Fixed size decrement order in unstore(). Fixed the
is_switch() identification logic.
* arj_proc.c: Fixed reply type in search_setup().
* arj_file.c: display_indicator() arg type is long since now.
Fixed display_found_text().
* arj_arcv.c: Fixed header creation order. Fixed M_CRC_ERROR on
extraction.
1999-06-26 Andrew Belov <andrew_belov@p2.f181.n5020.z2.fidonet.org>
* dec_asm.asm: CX/DX were discarded by _fgetc(). Now fixed. Fixed
offset calculation for left[]/right[].
1999-06-25 Andrew Belov <andrew_belov@p2.f181.n5020.z2.fidonet.org>
* dec_asm.asm: Fixed decode_p().
1999-06-24 Andrew Belov <andrew_belov@p2.f181.n5020.z2.fidonet.org>
* msgbind.c: CCHMAXPATH -> FILENAME_MAX. Destination files can
now be placed into separate directories.
* misc.c: Fixed buffer overrun in to_7bit().
* makefile: Now using separate directories for NLS.
* externs.c: Fixed total_files type (must be int).
* arj_user.c: Fixed chapter flag display in list_cmd(). Removed
errorneous strform references.
* arj_proc.c: Fixed processing logic in format_filename().
* arj_file.c: Fixed space display in display_comment(). Fixed
word order in fget_longword().
* arj_arcv.c: Fixed archive name display.
* arj.c: Fixed cnv_cmd() initialization in cmd_setup().
1999-06-23 Andrew Belov <andrew_belov@p2.f181.n5020.z2.fidonet.org>
* misc.c: Fixed return type of farmalloc_msg().
* join.c: Now the EXE name is a user-defined parameter.
* environ.c: Fixed CY flag setup in call_dos_int(). Fixed
directory comparison in wild_list().
1999-06-22 Andrew Belov <andrew_belov@p2.f181.n5020.z2.fidonet.org>
* arj_user.c: ** ARJ v 2.62c functionality achieved **.
1999-06-20 Andrew Belov <andrew_belov@p2.f181.n5020.z2.fidonet.org>
* misc.c: Fixed matching criteria in match_attrib.
1999-06-17 Andrew Belov <andrew_belov@p2.f181.n5020.z2.fidonet.org>
* integr.asm, postproc.c: Created.
* makefile: Added a data module for integrity check.
* arj_proc.c: ** ARJ v 2.62c functionality achieved **.
1999-06-14 Andrew Belov <andrew_belov@p2.f181.n5020.z2.fidonet.org>
* externs.c, externs.h: Sorted to ARJ v 2.62c order.
1999-06-13 Andrew Belov <andrew_belov@p2.f181.n5020.z2.fidonet.org>
* exe_sear.c, exe_sear.h: Created.
* arj_arcv.c, exe_sear.c: ** ARJ v 2.62c functionality achieved
**.
1999-06-11 Andrew Belov <andrew_belov@p2.f181.n5020.z2.fidonet.org>
* arj_proc.c: Pack/Unpack stubs added, used strcmp_os.
* arj_arcv.c: Used strcmp_os() wherever it was needed.
1999-05-29 Andrew Belov <andrew_belov@p2.f181.n5020.z2.fidonet.org>
* fardata.c: Fixed error code display.
1999-05-25 Andrew Belov <andrew_belov@p2.f181.n5020.z2.fidonet.org>
* arj_file.c: ** ARJ v 2.62c functionality achieved **.
1999-05-24 Andrew Belov <andrew_belov@p2.f181.n5020.z2.fidonet.org>
* enc_gwy.c, enc_gwy.h: Created.
* decode.c, encode.c: ** ARJ v 2.62c functionality achieved **.
1999-05-23 Andrew Belov <andrew_belov@p2.f181.n5020.z2.fidonet.org>
* recovery.h: Added RECOVERY_THRESHOLD definition.
1999-05-16 Andrew Belov <andrew_belov@p2.f181.n5020.z2.fidonet.org>
* arj_file.c: Fixed formatting in scroll_puts().
1999-05-11 Andrew Belov <andrew_belov@p2.f181.n5020.z2.fidonet.org>
* enc_asm.asm: Created from disassembly.
1999-05-09 Andrew Belov <andrew_belov@p2.f181.n5020.z2.fidonet.org>
* arj_asm.h, fmemcmp.asm, fmemcmp.h: Created.
* arj_file.h: Completed the block_op() tree.
1999-04-24 Andrew Belov <andrew_belov@p2.f181.n5020.z2.fidonet.org>
* environ.h: Created lreg() macro to make fastcall calls.
* dec_asm.asm: Created from disassembly.
* crc32.asm: Fixed memory model issues.
1999-04-23 Andrew Belov <andrew_belov@p2.f181.n5020.z2.fidonet.org>
* makefile: Added stack frame optimization to NEAR_COPT.
1999-04-22 Andrew Belov <andrew_belov@p2.f181.n5020.z2.fidonet.org>
* makefile: Fixed CHK_FMSG.* dependencies.
* decode.c, decode.h: Created.
1999-04-21 Andrew Belov <andrew_belov@p2.f181.n5020.z2.fidonet.org>
* arj.h: Prototype section added (that may be unwise).
1999-04-20 Andrew Belov <andrew_belov@p2.f181.n5020.z2.fidonet.org>
* msgbind.c: CRC-32 is now fully implemented.
* makefile: Made separate compile paths, made response file.
* chk_fmsg.c, encode.c, encode.h: Created.
* chk_fmsg.h: Created.
* chk_fmsg.c: ** ARJ v 2.62c functionality achieved **.
1999-04-18 Andrew Belov <andrew_belov@p2.f181.n5020.z2.fidonet.org>
* crc32.h: Moved crc32 variables definition to this file.
* arjsec_l.c: ** ARJ v 2.62c functionality achieved **.
* arjsec_h.c, arjsec_h.h: Created.
* arjsec_h.c: ** ARJ v 2.62 functionality achieved **.
1999-04-16 Andrew Belov <andrew_belov@p2.f181.n5020.z2.fidonet.org>
* recovery.c: Fixed various problems in recovery procedure.
* arjsec_l.c, arjsec_l.h: Created.
1999-04-11 Andrew Belov <andrew_belov@p2.f181.n5020.z2.fidonet.org>
* recovery.c: ** ARJ v 2.62c functionality achieved **.
* environ.c: Fixed file_open().
* crc32.asm: Removed alignment dependency.
* arj_file.h: Added file_write() macro.
* arj_file.c: Fixed file_create().
1999-04-10 Andrew Belov <andrew_belov@p2.f181.n5020.z2.fidonet.org>
* crc16tab.h, recovery.c, recovery.h: Created.
* makefile: Fixed far data segment override options.
1999-04-09 Andrew Belov <andrew_belov@p2.f181.n5020.z2.fidonet.org>
* makefile: Fixed resource rebuild logic.
* gost40.c: Fixed parameter naming in stubs.
* arjcrypt.h: Created.
1999-04-08 Andrew Belov <andrew_belov@p2.f181.n5020.z2.fidonet.org>
* garble.c, garble.h: Created.
1999-04-07 Andrew Belov <andrew_belov@p2.f181.n5020.z2.fidonet.org>
* gost40.c: ** ARJ v 2.62c functionality achieved **.
1999-04-03 Andrew Belov <andrew_belov@p2.f181.n5020.z2.fidonet.org>
* gost40.c, gost40.h: Created.
1999-03-28 Andrew Belov <andrew_belov@hotmail.com>
* misc.c: Fixed various errors in far_*.
* makefile: Optimized TC++/BC++ compile options.
* fardata.c: Fixed memory leak in error().
* environ.c: Fixed handle leak in file_open().
1999-03-27 Andrew Belov <andrew_belov@hotmail.com>
* makefile: Fixed link file cleanup & resource build rules.
1999-03-24 Andrew Belov <andrew_belov@hotmail.com>
* environ.h: Added strcmp_os() macro.
* environ.c: Added definition of dev_null (as null device).
1999-03-23 Andrew Belov <andrew_belov@hotmail.com>
* arj_file.c: fput_* procedures fixed.
* arj_arcv.c: Header parsing and storage routines added.
1999-03-21 Andrew Belov <andrew_belov@hotmail.com>
* msgbind.c: A bracketed "*" now represents "all" wildcard.
* misc.c: ** Updated to ARJ v 2.62c code level **.
* environ.h: import_timestamp() replaces older stub.
* environ.c: import_timestamp() fixed to be OS-independent.
* arj_user.c: Changed "WINNT" to "WIN32" as in ARJ v 2.62c.
1999-03-19 Andrew Belov <andrew_belov@hotmail.com>
* arj_file.c, arj_proc.c: ** Updated to ARJ v 2.62c code level **.
1999-03-14 Andrew Belov <andrew_belov@hotmail.com>
* environ.c, fardata.c: ** Updated to ARJ v 2.62c code level **.
* arj.h: Fixed to compile with Turbo C++ v 1.0.
1999-03-12 Andrew Belov <andrew_belov@hotmail.com>
* externs.c: Basic header structures declared.
* environ.c: Implemented fileno() calls instead of ->fd.
* arj_arcv.c: Renamed find_hdr() to find_header().
1999-03-11 Andrew Belov <andrew_belov@hotmail.com>
* arj_user.c: form_prot_name() added.
1999-03-10 Andrew Belov <andrew_belov@hotmail.com>
* environ.c: Moved friendly OS list to this module.
* arj_user.c, arj_user.h: Created.
1999-03-06 Andrew Belov <andrew_belov@hotmail.com>
* arj_arcv.c, arj_arcv.h: Created.
1999-03-05 Andrew Belov <andrew_belov@hotmail.com>
* ansi.h: ANSI sequence ids added.
* ansi.c: ^[[m misinterpreted foreground color codes.
1999-02-24 Andrew Belov <andrew_belov@hotmail.com>
* ansi.c: ** ARJ v 2.62 functionality achieved **.
1999-02-21 Andrew Belov <andrew_belov@hotmail.com>
* ansi.c, ansi.h: Created.
1999-02-20 Andrew Belov <andrew_belov@hotmail.com>
* environ.c, misc.c: ** ARJ v 2.62 functionality achieved **.
* environ.h: CCHMAXPATHCOMP introduced.
1999-02-17 Andrew Belov <andrew_belov@hotmail.com>
* misc.c: Basic filelist management routines added.
* filelist.c: ** ARJ v 2.62c functionality achieved **.
1999-02-16 Andrew Belov <andrew_belov@hotmail.com>
* misc.c: farmalloc_msg now accepts ulong parameters.
1999-02-13 Andrew Belov <andrew_belov@hotmail.com>
* filelist.c: Hash search/retrieval operations completed.
1999-02-03 Andrew Belov <andrew_belov@hotmail.com>
* filelist.c: XMS operations completed.
* environ.c: Portabilized some equates.
1999-02-01 Andrew Belov <andrew_belov@hotmail.com>
* filelist.c, filelist.h: Created.
* environ.c: Added create_subdir_tree.
* arj_file.c: Query routine completed.
1999-01-30 Andrew Belov <andrew_belov@hotmail.com>
* fardata.c: ** ARJ v 2.62 functionality achieved **.
* environ.h: Console settings.
1999-01-29 Andrew Belov <andrew_belov@hotmail.com>
* arj_file.c, arj_file.h: Created.
1999-01-28 Andrew Belov <andrew_belov@hotmail.com>
* msgbind.c: Added NULL pool identifier to produce "orphan"
messages.
* environ.c: Fixed find_delimiter.
* arj_proc.c, arj_proc.h: Created.
1999-01-27 Andrew Belov <andrew_belov@hotmail.com>
* win95dos.h: W95_RESETDRIVE equates.
* misc.c: More string routines added.
* environ.c: Most of error handlers, all file_* + parser.
1999-01-26 Andrew Belov <andrew_belov@hotmail.com>
* makefile: Introduced Borland C++ v 3.x compiler.
* defines.h: MSGP definitions added.
* arj.c, crc32.h: Created.
* crc32.asm: Recompiled.
1999-01-25 Andrew Belov <andrew_belov@hotmail.com>
* fardata.h, msgbind.c: Created.
* misc.c: unix_to_dos, malloc_str .... INCOMPLETE!.
1999-01-24 Andrew Belov <andrew_belov@hotmail.com>
* environ.h: CR and LF definitions.
* environ.c: Incorporated fdate/ftime in structures.
1999-01-23 Andrew Belov <andrew_belov@hotmail.com>
* win95dos.h: Incorporated ftime and fdate in W95_FFBLK.
* defines.h, externs.h, misc.c, misc.h: Created.
* arj.h, externs.c, fardata.c: Created.
* environ.c: Added non-local API.
1999-01-21 Andrew Belov <andrew_belov@hotmail.com>
* makefile, win95dos.h: Created.
* environ.h: Created.
* environ.c: Added W95 LFN API.
1999-01-19 Andrew Belov <andrew_belov@hotmail.com>
* environ.c: Created.
1999-01-03 Andrew Belov <andrew_belov@hotmail.com>
* join.c: Created.
|