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
|
w3m (0.5.3-34+deb9u1) stretch; urgency=medium
* New patch 955_tbl-indent.patch to fix stack overflow [CVE-2018-6196]
* New patch 956_columnpos.patch to fix null deref [CVE-2018-6197]
* New patch 957_mkdtemp.patch to fix /tmp file races [CVE-2018-6198]
(closes: #888097)
-- Tatsuya Kinoshita <tats@debian.org> Fri, 26 Jan 2018 18:50:05 +0900
w3m (0.5.3-34) unstable; urgency=medium
* Update 020_debian.patch to v0.5.3+git20170102
- Fix multiple flaws with malformed text
(buffer overflow, use after free, infinite loop)
* Update debian/copyright
-- Tatsuya Kinoshita <tats@debian.org> Wed, 04 Jan 2017 23:25:02 +0900
w3m (0.5.3-33) unstable; urgency=medium
* Update 020_debian.patch to v0.5.3+git20161120
- Prevent stack overflow (closes: #844726) [CVE-2016-9439]
* Update w3mconfig to use xsel as background
-- Tatsuya Kinoshita <tats@debian.org> Mon, 21 Nov 2016 21:08:37 +0900
w3m (0.5.3-32) unstable; urgency=medium
* Update 020_debian.patch to v0.5.3+git20161031
- Prevent stack smashing (closes: #842623, reopen: #838952)
* Add "dict, dictd, dict-wn" to Suggests for w3mdict.cgi
* Update debhelper compat version to 9
-- Tatsuya Kinoshita <tats@debian.org> Mon, 31 Oct 2016 20:34:23 +0900
w3m (0.5.3-31) unstable; urgency=medium
* Really install German documents
-- Tatsuya Kinoshita <tats@debian.org> Sat, 15 Oct 2016 20:25:33 +0900
w3m (0.5.3-30) unstable; urgency=medium
* Update 020_debian.patch to v0.5.3+git20161009
- Add German documents (closes: #772341)
- Treat table height as int instead of short (closes: #838952)
* Install German documents
-- Tatsuya Kinoshita <tats@debian.org> Sat, 15 Oct 2016 19:34:24 +0900
w3m (0.5.3-29) unstable; urgency=medium
* Update 020_debian.patch to v0.5.3+git20160718
- Add German translated help messages (closes: #765682)
* Set east_asian_width to 0 in config (closes: #830947)
* Install NEWS
-- Tatsuya Kinoshita <tats@debian.org> Mon, 18 Jul 2016 22:47:34 +0900
w3m (0.5.3-28) unstable; urgency=medium
* Update 020_debian.patch to v0.5.3+git20160511
- Fix crash with crafted html files (closes: #820162, #820373)
- Cleanup obsolete INIT_MAILCAP (closes: #820902)
* Add extbrowser2..9 configurations
* Supplement config parameters
* Add firefox | www-browser, wget | curl, xsel, mpv to Suggests
* Depend on libgpm-dev instead of libgpmg1-dev
* Update Standards-Version to 3.9.8
-- Tatsuya Kinoshita <tats@debian.org> Mon, 23 May 2016 21:23:41 +0900
w3m (0.5.3-27) unstable; urgency=medium
* Update 020_debian.patch to v0.5.3+git20160228
- Fix broken ACCESSKEY (closes: #779092)
* Update debian/copyright
* Update Standards-Version to 3.9.7
-- Tatsuya Kinoshita <tats@debian.org> Fri, 04 Mar 2016 19:52:23 +0900
w3m (0.5.3-26) unstable; urgency=medium
* Update 020_debian.patch to v0.5.3+git20151119
- Add zh_CN and zh_TW translations (closes: #804732)
* Update debian/copyright
* Update Vcs-Browser to https
-- Tatsuya Kinoshita <tats@debian.org> Wed, 02 Dec 2015 00:36:30 +0900
w3m (0.5.3-25) unstable; urgency=medium
* Update 020_debian.patch to v0.5.3+git20151010
- Remove incomplete special_domain tests (closes: #385702)
- Fix unknown key in keymap.lynx (LP: #265144)
* Set Priority to optional
-- Tatsuya Kinoshita <tats@debian.org> Sat, 10 Oct 2015 19:44:12 +0900
w3m (0.5.3-24) unstable; urgency=medium
* Update 020_debian.patch to v0.5.3+git20150811
* Add LC_ALL=C to configure
-- Tatsuya Kinoshita <tats@debian.org> Tue, 11 Aug 2015 22:21:42 +0900
w3m (0.5.3-23) unstable; urgency=medium
* Update 020_debian.patch to v0.5.3+git20150720
- Mention HTTPS_PROXY in the FAQ documents (closes: #791425)
* Update debian/copyright for matrix.c
-- Tatsuya Kinoshita <tats@debian.org> Mon, 20 Jul 2015 17:47:36 +0900
w3m (0.5.3-22) unstable; urgency=medium
* Update 020_debian.patch to v0.5.3+git20150623
- Fix broken stage1 bootstrap build (closes: #789539)
-- Tatsuya Kinoshita <tats@debian.org> Tue, 23 Jun 2015 07:06:18 +0900
w3m (0.5.3-21) unstable; urgency=medium
* Update 020_debian.patch to 2015-05-09
* Set meta_refresh to 0 in the config file
* Update debian/copyright
-- Tatsuya Kinoshita <tats@debian.org> Sat, 09 May 2015 06:21:15 +0900
w3m (0.5.3-20) unstable; urgency=medium
* Integrate Debian changes into 020_debian.patch (closes: #776112)
(debian/patches/*.patch except 010_upstream.patch are merged)
- Improve English manpages
(closes: #771003, #766550, #403634, #380560, #345084, #285251, #268211)
- Fix Perl warnings (closes: #771004)
- Update to 2015-02-03
* Add libsixel-bin to Suggests for img2sixel
* Set extbrowser to sensible-browser in w3mconfig
* Set mailer to use xdg-open in w3mconfig
* Add xdg-utils to Suggests for xdg-open
* Support committer date for gitlog2changelog
* Add dot to end of message for gitlog2changelog
* Update Vcs-Browser
* Update debian/copyright
-- Tatsuya Kinoshita <tats@debian.org> Sat, 25 Apr 2015 19:33:35 +0900
w3m (0.5.3-19) unstable; urgency=medium
* New patch 360_lang-de.patch to add German translation (closes: #763964)
* Update 015_debian-version.patch to 0.5.3+debian-19
* Update 900_ChangeLog.patch
-- Tatsuya Kinoshita <tats@debian.org> Tue, 21 Oct 2014 22:50:53 +0900
w3m (0.5.3-18) unstable; urgency=medium
* New patch 340_ssl-init.patch to disable SSLv3 [CVE-2014-3566]
* New patch 350_ambwidth.patch to correct ucs_ambwidth_map
* Update 050_autotools-config.patch with autotools-dev 20140911.1
(Note: Debian package uses dh addon instead of this patch)
* Update debian/copyright
* Typo fix for Homepage
* Update Standards-Version to 3.9.6
* Update w3mconfig to disable SSLv3 in /etc/w3m/config
* Update 015_debian-version.patch to 0.5.3+debian-18
* Update 900_ChangeLog.patch
-- Tatsuya Kinoshita <tats@debian.org> Wed, 15 Oct 2014 21:42:52 +0900
w3m (0.5.3-17) unstable; urgency=medium
[ Micah Cowan ]
* Update 080_gc72.patch to prevent segfaults (closes: #758831)
[ Tatsuya Kinoshita ]
* Update header of 080_gc72.patch
* Update 050_autotools-config.patch with autotools-dev 20140510.1
(Note: Debian package uses dh addon instead of this patch)
* Update debian/copyright
* Update 015_debian-version.patch to 0.5.3+debian-17
* Update 900_ChangeLog.patch
-- Tatsuya Kinoshita <tats@debian.org> Fri, 22 Aug 2014 21:51:51 +0900
w3m (0.5.3-16) unstable; urgency=low
[ Tatsuya Kinoshita ]
* New patch 330_Disable-weak-ciphers.patch (LP: #1325674)
* Update 015_debian-version.patch to 0.5.3+debian-16
* Update 900_ChangeLog.patch
[ Daniel Schepler ]
* Update debian/rules to bootstrap without libimlib2-dev (closes: #738208)
-- Tatsuya Kinoshita <tats@debian.org> Mon, 23 Jun 2014 23:15:22 +0900
w3m (0.5.3-15) unstable; urgency=low
* Explicitly add pkg-config to Build-Depends
* Update 015_debian-version.patch to 0.5.3+debian-15
* Update 900_ChangeLog.patch
-- Tatsuya Kinoshita <tats@debian.org> Sat, 04 Jan 2014 11:48:02 +0900
w3m (0.5.3-14) unstable; urgency=low
[ Tatsuya Kinoshita ]
* New patch 300_manual-links.patch to fix unusable links in MANUAL.html
* New patch 310_doc-ascii.patch to prefer US-ASCII in English documents
* New patch 320_imlib2-config.patch to build with imlib2 1.4.6
* Make keymap.* symlinks for MANUAL.html
* Convert document encodings to UTF-8 at build time
* Install Bonus/README to Bonus/README.ja
* Update debian/copyright
* Update 015_debian-version.patch to 0.5.3+debian-14
* Update 900_ChangeLog.patch
[ Rafael Laboissiere ]
* Avoid compression of README.func and get the link in MANUAL.html working
(closes: #517315)
-- Tatsuya Kinoshita <tats@debian.org> Fri, 03 Jan 2014 17:48:31 +0900
w3m (0.5.3-13) unstable; urgency=low
* New patch 240_win64gc.patch for GC on Cygwin64
* New patch 250_schemebug.patch to fix scheme bug (closes: #650747)
* New patch 260_openssl.patch from openSUSE for OpenSSL issues
* New patch 270_refresh-url.patch to accept single quoted URL
* New patch 280_search-next.patch to fix crash after SEARCH_NEXT
* New patch 290_closedir.patch to fix a directory descriptor leak
* Update 230_cygwin-lang.patch to really fix
* Update 090_parallel-make.patch to fix scripts and w3mimg (closes: #726188)
* Update 040_link_gcc45.patch to 040_link-gtk2.patch
* Update 050_autotools-config.patch with autotools-dev 20130810.1
* Drop 050_autotools-config.patch (comment out)
* Update 900_ChangeLog.patch
* Update 015_debian-version.patch to 0.5.3+debian-13
* Use LFS_CFLAGS to support large file (closes: #493956)
* Use autotools-dev dh addon again (closes: #732086)
* Update gitlog2changelog to fix paren handling
* debian/rules: builddir fixes
* Use dpkg-maintscript-helper to remove obsolete conffile
* Update Standards-Version to 3.9.5
-- Tatsuya Kinoshita <tats@debian.org> Tue, 17 Dec 2013 19:57:42 +0900
w3m (0.5.3-12) unstable; urgency=low
* New patch 200_readme-img-typo.patch to typo fix (closes: #725892)
* New patch 210_vim-like.patch for vim like handling (closes: #724028)
* New patch 220_maxcol.patch to bump MAXCOL to 256
* New patch 230_cygwin-lang.patch to fix upstream bug
* Update 030_pager-s-option.patch to doc fix
* Add --with-browser=/usr/bin/sensible-browser to confargs
* Add gitlog2changelog to easily generate ChangeLog
* Update debian/copyright
* Update README.Debian to drop unavailable mailing lists
* Update 150_contact-list.patch to drop unavailable mailing lists
* Update 900_ChangeLog.patch
* Update 015_debian-version.patch to 0.5.3+debian-12
-- Tatsuya Kinoshita <tats@debian.org> Sun, 13 Oct 2013 16:41:44 +0900
w3m (0.5.3-11) unstable; urgency=low
* Update 130_siteconf.patch to fix segfault (closes: #718612)
* New patch 180_execdict.patch to fix potentially segfault
* New patch 190_Strchop.patch to fix potentially segfault
* New patch 900_ChangeLog.patch to update ChangeLog
* Update 015_debian-version.patch to 0.5.3+debian-11
-- Tatsuya Kinoshita <tats@debian.org> Thu, 08 Aug 2013 19:06:06 +0900
w3m (0.5.3-10) unstable; urgency=low
* New patch 140_sort-dump-links.patch to sort anchors in -dump
(closes: #657666)
* New patch 150_contact-list.patch to update README (closes: #696209)
* New patch 160_ignore-shy.patch to ignore SOFT HYPHEN (closes: #441934)
* New patch 170_w3mman2html-utf8.patch (LP: #680202)
* Update README.Debian to mention package development
* Drop unneeded menu dependency (closes: #647385)
* New patch 050_autotools-config.patch to update config.*
* Drop autotools-dev from Build-Depends
* Use cmigemo instead of migemo
* Set show_cookie to 0 in debian/w3mconfig
* Typo fix for debian/w3mconfig
* Backup and restore entity.h on build time
* Remove DM-Upload-Allowed
* Update and correct debian/copyright
* Update 015_debian-version.patch to 0.5.3+debian-10
-- Tatsuya Kinoshita <tats@debian.org> Sat, 03 Aug 2013 00:07:00 +0900
w3m (0.5.3-9) unstable; urgency=low
* New patch 130_siteconf.patch to support the siteconf feature
* New patch 120_sgrmouse.patch to support SGR 1006 mouse reporting
* Update 020_button.patch to fix segfault (closes: #706454)
* New patch 015_debian-version.patch to mention debian version
* Really remove 050_entity-h-clean.patch
* Update Standards-Version to 3.9.4
* debian/copyright: Updated
-- Tatsuya Kinoshita <tats@debian.org> Mon, 29 Jul 2013 00:45:20 +0900
w3m (0.5.3-8) unstable; urgency=low
* debian/patches/010_upstream.patch: Sync with upstream on 2012-05-22
- Support <meta charset>
* debian/patches/050_entity-h-clean.patch: Removed (meged upstream)
* debian/patches/110_form-input-text.patch:
- Assume "text" if an input type is unknown (closes: #615843)
* debian/patches/100_use-cppflags.patch: Use $(CPPFLAGS) with $(CPP)
* debian/rules:
- Fix CPPFLAGS hardening flags missing (closes: #665491)
- Accept linux-gnueabi for w3m-img (closes: #673123)
* debian/mime: Use charset for mailcap (closes: #282784)
-- Tatsuya Kinoshita <tats@debian.org> Tue, 22 May 2012 23:16:58 +0900
w3m (0.5.3-7) unstable; urgency=low
* Add the configure option --with-imagelib=imlib2 (closes: #672121)
-- Tatsuya Kinoshita <tats@debian.org> Thu, 10 May 2012 00:25:50 +0900
w3m (0.5.3-6) unstable; urgency=low
[ Tatsuya Kinoshita ]
* debian/patches/070_glibc2.14.patch:
Patch from Ubuntu to unbreak compilation with eglibc 2.14 (LP: #935540)
* debian/patches/080_gc72.patch:
Patch from Gentoo to support Boehm GC 7.2
* debian/patches/090_parallel-make.patch:
Patch from Gentoo to fix parallel make issue
* Update copyright-format version to 1.0
* Update Standards-Version to 3.9.3
[ HIGUCHI Daisuke (VDR dai) ]
* debian/control: update my email address
* debian/changelog: fix typo
-- Tatsuya Kinoshita <tats@debian.org> Sat, 05 May 2012 00:00:15 +0900
w3m (0.5.3-5) unstable; urgency=low
* debian/control
- Mark w3m Multi-Arch: foreign.
Patch from 0.5.3-4ubuntu1, provided by Steve Langasek.
- update Vcs-* fields to use anonscm.debian.org.
- update Uploaders name-addr.
* debian/rules: enable hardening options
http://wiki.debian.org/ReleaseGoals/SecurityHardeningBuildFlags
* debian/patches/050_entity-h-clean.patch
do not remove entity.h. because generated file is a little different
than original, so it is unable to unapply.
-- HIGUCHI Daisuke (VDR dai) <debian@vdr.jp> Tue, 29 Nov 2011 00:36:36 +0900
w3m (0.5.3-4) unstable; urgency=low
* debian/patches/060_format-security.patch: Patch from 0.5.3-3ubuntu1 to
appease gcc -Werror=format-security, provided by Colin Watson.
(closes: #646321)
* debian/control: Use linux-any to depend on a Linux-specific package.
(closes: #634340)
* debian/copyright: Appease missing-license-paragraph-in-dep5-copyright.
-- Tatsuya Kinoshita <tats@debian.org> Sun, 30 Oct 2011 15:23:40 +0900
w3m (0.5.3-3) unstable; urgency=low
* debian/control:
- Add Vcs-* fields. (closes: #625532)
- Update Standards-Version to 3.9.2.
* debian/rules: Add the targets build-arch and build-indep.
* debian/copyright: Switch to the DEP-5 format.
-- Tatsuya Kinoshita <tats@debian.org> Mon, 18 Jul 2011 17:19:33 +0900
w3m (0.5.3-2) unstable; urgency=low
* debian/control: Add Uploaders and DM-Upload-Allowed for the co-maintainer
HIGUCHI Daisuke.
* debian/rules, debian/*docs: To add doc/README.cookie, install doc/README*
and then remove doc/README.cygwin.
-- Tatsuya Kinoshita <tats@debian.org> Mon, 21 Feb 2011 23:32:21 +0900
w3m (0.5.3-1) unstable; urgency=low
* New upstream release.
* debian/patches/010_upstream.patch: Sync with the upstream development
snapshot on 2011-01-17, just a typo fix for ChangeLog.
* debian/patches/040_link_gcc45.patch: Patch from 0.5.2-10ubuntu1 to
explicitly link w3mimgdisplay with -lX11 to build with gcc 4.5,
provided by Martin Pitt. (closes: #605761)
* debian/patches/050_entity-h-clean.patch: Patch to remove entity.h when
`make clean'.
* debian/copyright: Updated.
-- Tatsuya Kinoshita <tats@debian.org> Sun, 06 Feb 2011 16:11:06 +0900
w3m (0.5.2-10) unstable; urgency=low
* debian/patches/010_upstream.patch: Sync with the upstream development
snapshot on 2010-10-11.
- Better non-ascii handling. (closes: #138891, #313365)
- Introduce mailto_options. (closes: #473780)
- All elements have the id attribute. (closes: #573789)
- Define ATTR_ROWSPAN_MAX to check rowspan. (LP: #131993, LP: #619500)
- Update the man page. (closes: #595534)
- Add a FILES section to the man page. (closes: #403634)
- Mention the -I option in the man page. (closes: #398260, #530515)
* debian/patches/020_button.patch: Patch from upstream to support the
button element. It is discussed upstream and incomplete, but enough to
login Launchpad. (LP: #628755, closes: #136810)
* debian/patches/040_maximum-cols.patch: Removed. (merged upstream)
* debian/control, debian/rules: Use autotools-dev (>= 20100122) to update
config.guess and config.sub.
* debian/patches/020_config-guess.patch: Removed.
-- Tatsuya Kinoshita <tats@debian.org> Sat, 16 Oct 2010 00:59:32 +0900
w3m (0.5.2-9) unstable; urgency=low
* debian/patches/010_upstream.patch: Sync with the upstream development
snapshot on 2010-08-04.
- Check width, rows and cols to prevent a large memory allocation.
(Closes: #491400, #492290)
* debian/patches/040_maximum-cols.patch: Patch from upstream to define
MAXIMUM_COLS to check COLS. (Closes: #387751)
* debian/patches/030_pager-s-option.patch: Change the -s option from
"display charset Shift_JIS" to "squeeze multiple blank lines" to work
as /usr/bin/pager. (rejected upstream)
* debian/README.Debian: Mention the -s option difference.
* debian/rules: Set INSTALL_W3MIMGDISPLAY to not use install -s.
(Closes: #438260)
* debian/rules, debian/w3m-img.files, debian/w3m-img.postinst,
debian/w3m-img.prerm: Don't use dpkg-statoverride. (Closes: #562824)
* debian/rules, debian/w3m-img.lintian-overrides: Install lintian override
to ignore the setgid-binary warning.
* debian/postrm: Removed.
* debian/dirs, debian/rules: Install the Bonus directory.
* debian/docs: Add doc/README.passwd.
-- Tatsuya Kinoshita <tats@debian.org> Thu, 05 Aug 2010 22:50:25 +0900
w3m (0.5.2-8) unstable; urgency=low
* debian/patches/010_upstream.patch: Upstream development snapshot on
2010-07-26. (Debian patches except config.* are merged)
* debian/patches/020_config-guess.patch: Update config.guess and
config.sub using autotools-dev 20100122.1.
* debian/docs, debian/rules, debian/w3m-img.docs: Install some README
files, such as README.img. (Closes: #252738, #306201)
* debian/control:
- Fix description wording. (Closes: #260414)
- Update Standards-Version to 3.9.1.
* debian/README.Debian, debian/README.Debian.w3m-img, debian/config.param,
debian/w3m.1, debian/w3mman.1: Removed.
* debian/copyright: Add the license of EastAsianWidth.txt.
-- Tatsuya Kinoshita <tats@debian.org> Thu, 29 Jul 2010 01:51:25 +0900
w3m (0.5.2-7) unstable; urgency=low
* debian/patches/100_download-error-short-write.patch: Patch to tell a
download failure when full disk, provided by Karsten Schoelzel.
(Closes: #185006, #206605)
* debian/patches/110_no-graph-restriction.patch: Patch to restrict table
and menu borders to ASCII if you use -no-graph, provided by Karsten
Schoelzel. (Closes: #261174, #394265)
* debian/patches/120_config-file-handling.patch: Patch to fix segfault
when changing options if ~/.w3m not accessible, provided by Karsten
Schoelzel. (Closes: #366284)
* debian/patches/130_rc-blank-line-fix.patch: Patch to fix .w3m/config
parser confused by blank lines, provided by Trent W. Buck.
(Closes: #537706)
* debian/patches/140_pseudo-inlines.patch: Patch to add a new option
"pseudo_inlines", provided by Karsten Schoelzel.
(Closes: #329863)
* debian/patches/150_numbered-links.patch: Patch to add a new option
"display_link_number", provided by Karsten Schoelzel.
(Closes: #329862)
* debian/patches/160_tls-sni.patch: Patch to add support for TLS SNI,
provided by Sascha Silbe. (Closes: #523159)
* debian/patches/170_number-prefix.patch: Patch to make number prefixes
working when vi_prec_num=0, from upstream.
* debian/patches/180_non-xterm.patch: Patch to fix segfault on non-xterm,
from upstream.
* debian/patches/190_codepage.patch: Patch for handling of codepage with
wc_codepage, from upstream.
-- Tatsuya Kinoshita <tats@debian.org> Sun, 18 Jul 2010 08:17:08 +0900
w3m (0.5.2-6) unstable; urgency=low
* debian/patches/070_form-update.patch: Patch to fix a problem of
formUpdateBuffer(), from [w3m-dev 04286] on 2007-08-04, provided by
Hironori SAKAMOTO. (Closes: #409933)
* debian/patches/080_xhtml-support.patch: Patch to support for
application/xhtml+xml and default UTF-8 encoding, provided by
Karsten Schoelzel. (Closes: #223589, #242599, #357817)
* debian/patches/090_simple-preserve-space.patch: Patch to add a new
option "simple_preserve_space", provided by dai.
(Closes: #384982, #426055)
* debian/patches/*: Renumbered.
* debian/patches/70_ssl-init.patch: Removed.
* debian/w3mconfig: Set ssl_forbid_method to 2 to disable SSLv2.
* debian/copyright: Updated.
-- Tatsuya Kinoshita <tats@debian.org> Wed, 07 Jul 2010 00:10:09 +0900
w3m (0.5.2-5) unstable; urgency=high
* debian/patches/60_check-null-cn.patch: Patch to check for null bytes
in CN/subjAltName, provided by Ludwig Nussel. (Closes: #587445)
[CVE-2010-2074]
* debian/patches/70_ssl-init.patch: Patch to force ssl_verify_server on
and disable SSLv2 support, provided by Ludwig Nussel.
* debian/patches/*: Renumbered.
* debian/control: Update Standards-Version to 3.9.0.
-- Tatsuya Kinoshita <tats@debian.org> Sat, 03 Jul 2010 19:08:07 +0900
w3m (0.5.2-4) unstable; urgency=low
* debian/control: Move migemo from Recommends to Suggests.
(Closes: #570906)
-- Tatsuya Kinoshita <tats@debian.org> Wed, 24 Feb 2010 22:40:53 +0900
w3m (0.5.2-3) unstable; urgency=low
* debian/patches/10-w3mman-keep-formatting: Patch from 0.5.2-2.1ubuntu1.
Use MAN_KEEP_FORMATTING=1 to fix that w3mman eats underlined characters.
(Closes: #325699)
* debian/patches/05-config-debian-fix: Update config.guess and config.sub
using autotools-dev 20090611.1.
* debian/watch: Update with sf redirector. (Closes: #550615)
* debian/control:
- Remove Fumitoshi Ukai from Maintainer. (Closes: #541020)
- Move Tatsuya Kinoshita to Maintainer from Uploaders.
- Add ${misc:Depends} to Depends.
- Move migemo from Suggests to Recommends.
- Use dh_prep instead of `dh_clean -k'.
- Set Section to web.
- Update Standards-Version to 3.8.4.
* debian/prerm: Add -e to not ignore an error.
* debian/copyright: Updated.
* Update debhelper version to 7.
* Switch to dpkg-source 3.0 (quilt) format.
-- Tatsuya Kinoshita <tats@debian.org> Sun, 21 Feb 2010 15:23:06 +0900
w3m (0.5.2-2.1) unstable; urgency=low
* Non-maintainer upload.
* debian/patches/06-gnukfreebsd-ftbfs-fix:
- Fix FTBFS on GNU/kFreeBSD by extending the check on the FreeBSD
version to __FreeBSD_kernel_version, as exported by the FreeBSD
kernel on the GNU/kFreeBSD environments, as suggested by Petr
Salinger (Closes: #493486).
-- Cyril Brulebois <kibi@debian.org> Tue, 30 Jun 2009 00:46:59 +0200
w3m (0.5.2-2) unstable; urgency=low
* debian/control:
- Change the libgdk-pixbuf-dev build dependency to libimlib2-dev,
patch from the Ubuntu w3m package. (Closes: #409006, #259110)
- Remove the autotools-dev build dependency.
* debian/patches/*:
- Don't contain a patch that patches the same file twice.
(Closes: #485026)
- New patch for config.sub and config.guess.
* debian/rules:
- Remove po/stamp-po at the clean target.
- Don't use redundant dh_installman.
-- Tatsuya Kinoshita <tats@debian.org> Sun, 08 Jun 2008 16:19:25 +0900
w3m (0.5.2-1) unstable; urgency=low
* New upstream release. (Closes: #433122)
* Acknowledge NMU. (Closes: #404564)
* debian/menu: Comply with menu transition. (Closes: #483817, thanks to
Hideki Yamane)
* debian/watch: New file. (Closes: #462162)
* Handling debian/patches with quilt.
- Typo fixes for w3m.1. (Closes: #423829, #266854)
* Use dpkg-statoverride to set the file mode of /usr/lib/w3m/w3mimgdisplay.
* debian/postinst: Remove redundant signal handling.
* debian/copyright: Updated.
* debian/control:
- Use ${binary:Version} instead of ${Source-Version}.
- Set Standards-Version to 3.7.3.
- Add the Homepage field.
- Typo fix in Description.
- Add Tatsuya Kinoshita to Uploaders.
-- Tatsuya Kinoshita <tats@debian.org> Sun, 01 Jun 2008 11:31:04 +0900
w3m (0.5.1-5.1) unstable; urgency=high
* NMU by the Security Team:
* Fix format string vulnerability in display of SSL certificates.
(No CVE ID yet) (Closes: #404564)
-- Moritz Muehlenhoff <jmm@debian.org> Tue, 26 Dec 2006 18:49:26 +0100
w3m (0.5.1-5) unstable; urgency=low
* fix FTBFS on GNU/kFreeBSD (due to unsatisfied Build-Depends on libgpmg1-dev)
closes: Bug#377793
* debian/rules: DEB_BUILD_GNU_SYSTEM should be linux-gnu, instead of linux
so that w3m-img works on fbdev
closes: Bug#376240
* change default accept: line
closes: Bug#374296
-- Fumitoshi UKAI <ukai@debian.or.jp> Mon, 7 Aug 2006 11:37:48 +0900
w3m (0.5.1-4) unstable; urgency=low
* GCC 4.0 C++ ABI change.
rebuild with libgc-dev 1:6.5-1 for libgc1c2
closes: Bug#318160
-- Fumitoshi UKAI <ukai@debian.or.jp> Thu, 14 Jul 2005 15:10:30 +0000
w3m (0.5.1-3) unstable; urgency=low
* fix upgrading /etc/w3m/w3mconfig to /etc/w3m/config
closes: Bug#242577
-- Fumitoshi UKAI <ukai@debian.or.jp> Fri, 3 Sep 2004 02:27:43 +0900
w3m (0.5.1-2) unstable; urgency=medium
* rebuilt with new version of libgdk-pixbuf-dev
to build againt with libtiff4
-- Fumitoshi UKAI <ukai@debian.or.jp> Fri, 6 Aug 2004 01:23:48 +0900
w3m (0.5.1-1) unstable; urgency=low
* new upstream version
-- Fumitoshi UKAI <ukai@debian.or.jp> Thu, 29 Apr 2004 03:28:41 +0900
w3m (0.5-7) unstable; urgency=low
* fix authentication mechanisms
closes: Bug#:244029: w3m: HTTP basic authentication annoyance
-- Fumitoshi UKAI <ukai@debian.or.jp> Sun, 18 Apr 2004 00:08:29 +0900
w3m (0.5-6) unstable; urgency=low
* fix IPv6 resolution failure.
closes: Bug#241192
* debian/w3mconfig: update
dont provide document_charset, which will not be overrided by locale.
-- Fumitoshi UKAI <ukai@debian.or.jp> Fri, 2 Apr 2004 04:24:27 +0900
w3m (0.5-5) unstable; urgency=low
* debian/control: add replaces: w3mmee, because old w3mmee provides
w3m.mo that conflicts with current w3m.
w3mmee (>= 0.3.p24.19-1) uses w3mmee.mo instead of w3m.mo, so
no need conflits.
* debian/w3mconfig: update
follow_locale 1
*_charset US-ASCII
closes: Bug#240702
-- Fumitoshi UKAI <ukai@debian.or.jp> Wed, 31 Mar 2004 01:38:37 +0900
w3m (0.5-4) unstable; urgency=low
* fix search problem on different charset page than display charset
with migemo
-- Fumitoshi UKAI <ukai@debian.or.jp> Wed, 24 Mar 2004 03:20:04 +0900
w3m (0.5-3) unstable; urgency=low
* display_charset uses follow_locale
* use charset in w3mhelp.cgi
-- Fumitoshi UKAI <ukai@debian.or.jp> Tue, 23 Mar 2004 02:45:01 +0900
w3m (0.5-2) unstable; urgency=low
* w3m-img priority back to optional
* need update-po
-- Fumitoshi UKAI <ukai@debian.or.jp> Mon, 22 Mar 2004 03:40:31 +0900
w3m (0.5-1) unstable; urgency=low
* set priority to standard
* New upstream release
merge m17n patch.
closes: Bug#106840: ITP: w3m-m17n -- multilingualization of w3m
closes: Bug#96340 - no w3m-en/w3m-ja any more
closes: Bug#217509 - segfault if TERM is not set
* w3m-img no longer setuid. setgid to video.
closes: Bug#200028, Bug#181631
* fix FTBFS on GNU/Hurd
closes: Bug#221890
* update config.{guess,sub} using autotools-dev
closes: Bug#216785
-- Fumitoshi UKAI <ukai@debian.or.jp> Mon, 22 Mar 2004 00:53:03 +0900
w3m (0.4.2-2) unstable; urgency=medium
* install conffiles as /etc/w3m/config.
closes: Bug#214325, Bug#215537, Bug#215537
-- Fumitoshi UKAI <ukai@debian.or.jp> Tue, 14 Oct 2003 00:40:51 +0900
w3m (0.4.2-1.1) unstable; urgency=medium
* [debian/rules, debian/preinst, debian/postinst] Older versions of this
package had their conffile in the wrong location. Fixed that, and
introduced a way to preserve modifications made there. (Closes: #214325)
-- J.H.M. Dassen (Ray) <jdassen@debian.org> Sun, 12 Oct 2003 19:40:58 +0200
w3m (0.4.2-1) unstable; urgency=low
* New upstream release
-- Fumitoshi UKAI <ukai@debian.or.jp> Tue, 23 Sep 2003 03:15:22 +0900
w3m (0.4.1-6) unstable; urgency=low
* rebuild with libgc-dev
* build-depends: libgc6-dev => libgc-dev
-- Fumitoshi UKAI <ukai@debian.or.jp> Wed, 20 Aug 2003 19:15:40 +0900
w3m (0.4.1-5) unstable; urgency=low
* no need to build-depends: imlib-dev. closes: Bug#199583
-- Fumitoshi UKAI <ukai@debian.or.jp> Wed, 2 Jul 2003 23:35:37 +0900
w3m (0.4.1-4) unstable; urgency=low
* backport i-search fix
-- Fumitoshi UKAI <ukai@debian.or.jp> Tue, 15 Apr 2003 01:24:21 +0900
w3m (0.4.1-3) unstable; urgency=low
* backport SSL & compressed fix again
fix initialization of URLFile
check t_buf to avoid segfault when "w3m -B"
-- Fumitoshi UKAI <ukai@debian.or.jp> Mon, 14 Apr 2003 11:45:31 +0900
w3m (0.4.1-2) unstable; urgency=low
* backport SSL & compressed fix for https://alioth.debian.org/
-- Fumitoshi UKAI <ukai@debian.or.jp> Mon, 14 Apr 2003 03:31:32 +0900
w3m (0.4.1-1) unstable; urgency=low
* new upstream release: w3m 0.4.1
* remove tailing '?' from form action URL, closes: Bug#181897
-- Fumitoshi UKAI <ukai@debian.or.jp> Fri, 7 Mar 2003 02:45:17 +0900
w3m (0.4-2) unstable; urgency=low
* apply W3M_TTY fix for w3m-img on framebuffer
-- Fumitoshi UKAI <ukai@debian.or.jp> Tue, 25 Feb 2003 01:31:03 +0900
w3m (0.4-1) unstable; urgency=low
* New upstream release: w3m 0.4
-- Fumitoshi UKAI <ukai@debian.or.jp> Mon, 24 Feb 2003 02:00:13 +0900
w3m (0.3.2.2+0.4rc3-1) unstable; urgency=low
* w3m 0.4 release candidate 3
* use sigaction
* fix multipart.cgi
-- Fumitoshi UKAI <ukai@debian.or.jp> Thu, 20 Feb 2003 00:04:12 +0900
w3m (0.3.2.2+0.4rc2-1) unstable; urgency=low
* w3m 0.4 release candidate 2
* don't print missing w3mimgdisplay message at startup, closes: Bug#180814
-- Fumitoshi UKAI <ukai@debian.or.jp> Mon, 17 Feb 2003 00:50:06 +0900
w3m (0.3.2.2+0.4rc1-1) unstable; urgency=low
* w3m 0.4 release candidate 1
* fix relative URI, closes: Bug#172851
* don't say Unknown URI for unresolved URI, closes: Bug#169962
* fix tag parsing in <script>, closes: Bug#170506
* MOUSE_SCROLL_LINE run-time option, closes: Bug#87472
-- Fumitoshi UKAI <ukai@debian.or.jp> Tue, 11 Feb 2003 03:22:06 +0900
w3m (0.3.2.2-2) unstable; urgency=low
* g++3.2 transition
rebuilt with libgc6-dev 6.1-1 (libgc6c102)
* remove trailing spaces of http message header, closes: Bug#176981
-- Fumitoshi UKAI <ukai@debian.or.jp> Sun, 19 Jan 2003 01:53:08 +0900
w3m (0.3.2.2-1) unstable; urgency=high
* new upstream release: w3m 0.3.2.2
security fix: html_quote for img alt attribute
-- Fumitoshi UKAI <ukai@debian.or.jp> Fri, 6 Dec 2002 02:02:24 +0900
w3m (0.3.2.1-1) unstable; urgency=high
* new upstream release: w3m 0.3.2.1
security fix: html_quote for frame contents
-- Fumitoshi UKAI <ukai@debian.or.jp> Wed, 27 Nov 2002 01:32:44 +0900
w3m (0.3.2-2) unstable; urgency=low
* Added support for www-browser alternative, to comply with upcoming Debian
browser policy. Thanks to Joey Hess. closes: Bug#169965, Bug#161755
-- Fumitoshi UKAI <ukai@debian.or.jp> Fri, 22 Nov 2002 02:37:01 +0900
w3m (0.3.2-1) unstable; urgency=low
* new upstream release: w3m 0.3.2
-- Fumitoshi UKAI <ukai@debian.or.jp> Tue, 5 Nov 2002 02:52:46 +0900
w3m (0.3.1+0.3.2rc4-1) unstable; urgency=low
* w3m 0.3.2 release candidate 4
* support support for http://user:pass@www.url.com (but NOT RECOMMEND
because it doesn't seem to be legal as http URL). closes: Bug#50456
-- Fumitoshi UKAI <ukai@debian.or.jp> Thu, 31 Oct 2002 02:36:29 +0900
w3m (0.3.1+0.3.2rc2-1) unstable; urgency=low
* New upstream release
* w3m-ssl merged, closes: Bug#166528
-- Fumitoshi UKAI <ukai@debian.or.jp> Mon, 28 Oct 2002 00:52:52 +0900
w3m (0.3.1+0.3.2rc1-1) unstable; urgency=low
* w3m 0.3.2 release candidate 1
* Fixed builddeps for Debian GNU/Hurd, closes: Bug#164685
* fix EXTERN_LINK does not work if href ends with ampersand
closes: Bug#139305
* fix wrong file presentation on large files, closes: Bug#157098
* default external browser changed to mozilla, closes: Bug#157732
* <sup><sub> is now properly supported, closes: Bug#164098
* MARK_URL does find mailto: URLs and
MARK_WORD marks current word as anchor so you can mark bare email
addresses, closes: Bug#85900
* fd 0 and 1 are not closed, but open /dev/null running some commands,
closes: Bug#162104
-- Fumitoshi UKAI <ukai@debian.or.jp> Sat, 26 Oct 2002 01:37:04 +0900
w3m (0.3.1-3) unstable; urgency=low
* w3m cvs-current (1.411)
- fix build problem on sparc, s390
-- Fumitoshi UKAI <ukai@debian.or.jp> Sat, 20 Jul 2002 00:30:12 +0900
w3m (0.3.1-2) unstable; urgency=low
* w3m cvs-current (1.409)
- w3m-img support framebuffer as well as x11
-- Fumitoshi UKAI <ukai@debian.or.jp> Fri, 19 Jul 2002 00:19:41 +0900
w3m (0.3.1-1) unstable; urgency=low
* new upstream version
-- Fumitoshi UKAI <ukai@debian.or.jp> Tue, 16 Jul 2002 02:41:31 +0900
w3m (0.3-2) unstable; urgency=low
* add man-db to suggests:
add w3mman.1, closes: Bug#138101
* add w3m-img/README.Debian, closes: Bug#142123
-- Fumitoshi UKAI <ukai@debian.or.jp> Wed, 10 Apr 2002 23:54:38 +0900
w3m (0.3-1) unstable; urgency=low
* new upstream release
* w3m-img merged. closes: Bug#106841
* recognize file:/uris, closes: Bug#132934
* fix http auth login information upon reload, closes: Bug#134350
* if mailer set, it will be used instead of w3mmail. closes: Bug#134419
* change default of password for anon ftp in w3mconfig, closes: Bug#133868
-- Fumitoshi UKAI <ukai@debian.or.jp> Wed, 6 Mar 2002 02:34:21 +0900
w3m (0.2.5.1-1) unstable; urgency=low
* new stable upstream release
-- Fumitoshi UKAI <ukai@debian.or.jp> Tue, 5 Feb 2002 02:04:35 +0900
w3m (0.2.5-1) unstable; urgency=low
* new upstream release
* debian/w3mconfig:
- add: default_url 1
- fix: mailcap, mime_types: use ~/.w3m/ instead of ~/.
- add: urimethodmap ~/.w3m//urimethodmap, /etc/w3m/urimethodmap
- add: migemo_command, use_migemo
* debian/mailcap: add for application/xhtml+xml
* check WWW-Authenticate: correctory, closes: Bug#82765
* debian/control: add suggests: migemo
-- Fumitoshi UKAI <ukai@debian.or.jp> Fri, 1 Feb 2002 01:06:50 +0900
w3m (0.2.4-2) unstable; urgency=low
* debian/patches/04-configure-ipv6-enabled:
force enabled IPv6 support even if build machine doesn't have IPv6 support
* debian/config.param: add use_ipv6=y
-- Fumitoshi UKAI <ukai@debian.or.jp> Thu, 17 Jan 2002 02:14:32 +0900
w3m (0.2.4-1) unstable; urgency=high
* new upstream version
- RFC2818 server identity check (for w3m-ssl)
- incremental search (C-s, C-r)
* dont ignore SIGWINCH while downloading, closes: Bug#102445
* default image viewer is display, closes: Bug#127883
but i highly recommend you install mime-support package
-- Fumitoshi UKAI <ukai@debian.or.jp> Tue, 8 Jan 2002 00:27:31 +0900
w3m (0.2.3.2-1) unstable; urgency=high
* new upstream version
* security fix in support scripts
- Hironori Sakamoto found some vulnerabilities in w3m support scripts,
such as multipart.cgi, w3mman2html.cgi and w3mhelp.cgi. Attacker
could run arbitrary commands on user's machine with user's priviledge
by using malicious html pages.
-- Fumitoshi UKAI <ukai@debian.or.jp> Sat, 22 Dec 2001 22:25:11 +0900
w3m (0.2.3-0.1) unstable; urgency=low
* new upstream version
-- Fumitoshi UKAI <ukai@debian.or.jp> Thu, 20 Dec 2001 15:01:22 +0900
w3m (0.2.2+20011209-2) unstable; urgency=low
* fix xterm resize problem, closes: Bug#123938
-- Fumitoshi UKAI <ukai@debian.or.jp> Sun, 16 Dec 2001 03:15:39 +0900
w3m (0.2.2+20011209-1) unstable; urgency=low
* new upstream version
-- Fumitoshi UKAI <ukai@debian.or.jp> Mon, 10 Dec 2001 01:05:57 +0900
w3m (0.2.2+20011130-4) unstable; urgency=low
* mime.types should be /etc/mime.types
-- Fumitoshi UKAI <ukai@debian.or.jp> Wed, 5 Dec 2001 03:03:07 +0900
w3m (0.2.2+20011130-3) unstable; urgency=low
* config.param was ignored on other hosts. closes: Bug#122213
-- Fumitoshi UKAI <ukai@debian.or.jp> Tue, 4 Dec 2001 01:01:54 +0900
w3m (0.2.2+20011130-2) unstable; urgency=low
* dont create /usr/share/emacs/site-lisp/w3m/, closes: Bug#122043
* kanji_symbols should be off when lang is not JA, closes: Bug#122046
-- Fumitoshi UKAI <ukai@debian.or.jp> Sun, 2 Dec 2001 17:32:32 +0900
w3m (0.2.2+20011130-1) unstable; urgency=low
* w3m cvs current release
* debian/control: URL update
* < and > inside table render incorrectly fixed, closes: Bug#93981
* VIEW_IMAGE does nothing for <input type=image> fixed, closes: Bug#81554
* Goto URL behaves incorrectly and U would accept URL without leading http://
already fixed, `retry_http 1', closes: Bug#81775
* new configure: closes: Bug#99086, Bug#117631, Bug#117633
* w3m.sh: simplified, use option `argv_is_url 1'
* /etc/w3m/w3mconfig, closes: Bug#57158, Bug#109288
* fails searches at http://www.classifieds200.com that lynx handles
unreproducible, closes: Bug#54650
-- Fumitoshi UKAI <ukai@debian.or.jp> Sat, 1 Dec 2001 03:39:40 +0900
w3m (0.2.2-3) unstable; urgency=low
* debian/patches/06-w3m-dev-02503: (backport from w3m-cvs)
accept invalid entity usage in URL, closes: Bug#120540
* rebuild with new libgpmg1-dev 1.19.6-1
-- Fumitoshi UKAI <ukai@debian.or.jp> Fri, 23 Nov 2001 02:30:14 +0900
w3m (0.2.2-2) unstable; urgency=low
* debian/patches/05-gpm-close: (backport from w3m-cvs)
fix trashes terminal on exit
-- Fumitoshi UKAI <ukai@debian.or.jp> Tue, 20 Nov 2001 12:10:18 +0900
w3m (0.2.2-1) unstable; urgency=low
* debian/copyright: w3m is now maintained on sourceforge
* new upstream version 0.2.2
* debian/patches/04-cvs-20011116:
- fix mouse supports closes: Bug#119707
- check NULL in search.c closes: Bug#105791
- mark anchor on mailto: cloess: Bug#85900
mark anchor on bare email address patch was rejected.
-- Fumitoshi UKAI <ukai@debian.or.jp> Fri, 16 Nov 2001 17:23:44 +0900
w3m (0.2.1-17) unstable; urgency=low
* apply w3m-0.2.1-inu-1.6 (cummulative patch)
http://mi.med.tohoku.ac.jp/~satodai/w3m/inu/200110/w3m-0.2.1-inu-1.6.tar.gz
better URL parser, closes: Bug#92470
already fixed? textare maxlength attr, closes: Bug#81557
* debian/menu: add hints
closes: Bug#80037
* debian/rules (binary-arch): remove CVS directory usr/share/doc/w3m/ja/CVS
closes: Bug#102980
* debian/rules (build): LC_ALL=C for make
closes: Bug#118809,Bug#118810
-- Fumitoshi UKAI <ukai@debian.or.jp> Wed, 14 Nov 2001 02:51:36 +0900
w3m (0.2.1-16) unstable; urgency=low
* apply w3m-0.2.1-inu-1.5 (cummulative patch)
http://mi.med.tohoku.ac.jp/~satodai/w3m/inu/200110/w3m-0.2.1-inu-1.5.tar.gz
-- Fumitoshi UKAI <ukai@debian.or.jp> Tue, 6 Nov 2001 04:51:06 +0900
w3m (0.2.1-15) unstable; urgency=low
* apply w3m-0.2.1-inu-1.4 (cummulative patch)
http://mi.med.tohoku.ac.jp/~satodai/w3m/inusrc/200109/w3m-0.2.1-inu-1.4.tar.gz
-- Fumitoshi UKAI <ukai@debian.or.jp> Tue, 30 Oct 2001 02:47:20 +0900
w3m (0.2.1-14) unstable; urgency=low
* [w3m-dev 02227] w3m-0.2.1-inu-1.4a2-0915.patch
cummulative patch
* accept: video/*, closes: Bug#112419
-- Fumitoshi UKAI <ukai@debian.or.jp> Mon, 17 Sep 2001 01:45:32 +0900
w3m (0.2.1-13) unstable; urgency=high
* [w3m-dev 02226] fix security hole to allow arbitrary comand can be executed
-- Fumitoshi UKAI <ukai@debian.or.jp> Tue, 11 Sep 2001 11:51:26 +0900
w3m (0.2.1-12) unstable; urgency=low
* [w3m-dev 02219] fix strange behavior of radio button form
* [w3m-dev 02221] -cookie enable accept_cookie as well
* [w3m-dev 02224] fix Shift_JIS URL handling
* [w3m-dev 02225] Auto-detection of charset is not used when `-I' option is used.
-- Fumitoshi UKAI <ukai@debian.or.jp> Tue, 11 Sep 2001 02:48:51 +0900
w3m (0.2.1-11) unstable; urgency=low
* apply w3m-0.2.1-inu-1.4a2-0909.patch (cummulative patch)
from [w3m-dev 02213]
* add zlib1g-dev to build-depends, since inflate subprogram requires -lz
-- Fumitoshi UKAI <ukai@debian.or.jp> Mon, 10 Sep 2001 02:13:20 +0900
w3m (0.2.1-10) unstable; urgency=low
* fix mailcap quoting
-- Fumitoshi UKAI <ukai@debian.or.jp> Tue, 4 Sep 2001 14:55:18 +0900
w3m (0.2.1-9) unstable; urgency=low
* apply w3m-0.2.1-inu-1.4a2-gc60.tar.gz
from http://mi.med.tohoku.ac.jp/~satodai/w3m/inusrc/200108/
* install english manpages, closes: Bug#110033, Bug#110507
* build with libgc6
-- Fumitoshi UKAI <ukai@debian.or.jp> Thu, 30 Aug 2001 06:22:30 +0900
w3m (0.2.1-8) unstable; urgency=low
* re-enable mouse support on rxvt. closes: Bug#109184
-- Fumitoshi UKAI <ukai@debian.or.jp> Sun, 19 Aug 2001 17:51:17 +0900
w3m (0.2.1-7) unstable; urgency=low
* fix segfault when back to form page
-- Fumitoshi UKAI <ukai@debian.or.jp> Tue, 7 Aug 2001 00:31:33 +0900
w3m (0.2.1-6) unstable; urgency=low
* fix mailcap quoting
closes: Bug#107103
-- Fumitoshi UKAI <ukai@debian.or.jp> Tue, 31 Jul 2001 00:44:38 +0900
w3m (0.2.1-5) unstable; urgency=low
* [w3m-dev 02122] inu.1.3 patch (cummulative patch)
-- Fumitoshi UKAI <ukai@debian.or.jp> Sat, 28 Jul 2001 02:40:05 +0900
w3m (0.2.1-4) unstable; urgency=high
* [w3m-dev 02066] fix buffer overrun in mime header decoder
possibly security fix.
-- Fumitoshi UKAI <ukai@debian.or.jp> Wed, 20 Jun 2001 01:37:57 +0900
w3m (0.2.1-3) unstable; urgency=low
* [w3m-dev 01903] new patch for ftp problem (Bug#92261)
-- Fumitoshi UKAI <ukai@debian.or.jp> Tue, 10 Apr 2001 00:55:14 +0900
w3m (0.2.1-2) unstable; urgency=low
* [w3m-dev 01902] fix onA() when search
* [w3m-dev 01898] eliminate limit for <select> and <textarea>
* [w3m-dev-en 00424] support broken html containing wrong <script> tag
* [w3m-dev 01894] fix for term op != me
* [w3m-dev 01891] fix ftp problem (for wu-ftpd?) (Bug#92261)
* apply patch: w3m-0.2.1-mnc.patch for better w3m-el support
-- Fumitoshi UKAI <ukai@debian.or.jp> Sat, 7 Apr 2001 01:34:19 +0900
w3m (0.2.1-1) unstable; urgency=low
* new upstream version
-- Fumitoshi UKAI <ukai@debian.or.jp> Fri, 23 Mar 2001 15:39:00 +0900
w3m (0.2.0-1) unstable; urgency=low
* new upstream release
* separate w3m.el
-- Fumitoshi UKAI <ukai@debian.or.jp> Thu, 22 Mar 2001 18:42:27 +0900
w3m (0.1.10+0.1.11pre+kokb23-3) unstable; urgency=low
* don't remove pager alternative when upgrading, closes: Bug#87331
-- Fumitoshi UKAI <ukai@debian.or.jp> Sun, 25 Feb 2001 00:27:58 +0900
w3m (0.1.10+0.1.11pre+kokb23-2) unstable; urgency=high
* w3m-dev-01739
Add wheel mouse patch
-- Fumitoshi UKAI <ukai@debian.or.jp> Mon, 19 Feb 2001 01:42:37 +0900
w3m (0.1.10+0.1.11pre+kokb23-1) stable unstable; urgency=high
* new upstream pre release
more security fixes
- fix table stack overflow
- more internal tag and attribute check
- fix some buffer overflow bug
null character handling
* w3m-dev-01500
fix risky code in url.c
-- Fumitoshi UKAI <ukai@debian.or.jp> Thu, 14 Dec 2000 01:10:10 +0900
w3m (0.1.10+0.1.11pre+kokb22-1) stable unstable; urgency=high
* new upstream pre release
including important security fix
* apply patches on w3m-dev
w3m-dev-01432,01437,01443,01445
-- Fumitoshi UKAI <ukai@debian.or.jp> Sun, 3 Dec 2000 01:36:42 +0900
w3m (0.1.10+0.1.11pre+kokb21-3) unstable; urgency=high
* SECURITY FIX:
more checking internal tag
-- Fumitoshi UKAI <ukai@debian.or.jp> Fri, 1 Dec 2000 11:46:50 +0900
w3m (0.1.10+0.1.11pre+kokb21-2) unstable; urgency=HIGH
* SECURITY FIX:
check internal tag
-- Fumitoshi UKAI <ukai@debian.or.jp> Fri, 1 Dec 2000 10:48:21 +0900
w3m (0.1.10+0.1.11pre+kokb21-1) unstable; urgency=low
* new upstream pre release
-- Fumitoshi UKAI <ukai@debian.or.jp> Tue, 28 Nov 2000 10:59:02 +0900
w3m (0.1.10+0.1.11pre+kokb20-1) unstable; urgency=low
* new upstream pre release
* fix mailcap handling, closes: Bug#77679
-- Fumitoshi UKAI <ukai@debian.or.jp> Thu, 23 Nov 2000 05:47:03 +0900
w3m (0.1.10+0.1.11pre+kokb19-2) unstable; urgency=low
* for JIS output, kanjicode=j instead of kanjicode=J, closes: Bug#76605
* fix configuration. no block in sig_chld(), closes: Bug#77167
-- Fumitoshi UKAI <ukai@debian.or.jp> Sun, 19 Nov 2000 00:53:37 +0900
w3m (0.1.10+0.1.11pre+kokb19-1) unstable; urgency=low
* new upstream pre release
-- Fumitoshi UKAI <ukai@debian.or.jp> Fri, 10 Nov 2000 00:27:36 +0900
w3m (0.1.10+0.1.11pre+kokb18-3) unstable; urgency=low
* fix again rxvt mouse support, closes: Bug#76036
-- Fumitoshi UKAI <ukai@debian.or.jp> Thu, 2 Nov 2000 18:47:13 +0900
w3m (0.1.10+0.1.11pre+kokb18-2) unstable; urgency=low
* fix pager alternatives' slave
-- Fumitoshi UKAI <ukai@debian.or.jp> Tue, 31 Oct 2000 10:28:15 +0900
w3m (0.1.10+0.1.11pre+kokb18-1) unstable; urgency=low
* new upstream pre release
-- Fumitoshi UKAI <ukai@debian.or.jp> Mon, 30 Oct 2000 11:46:55 +0900
w3m (0.1.10+0.1.11pre+kokb17-3) unstable; urgency=low
* apply patches
w3m-dev:01258 filename/URI input line completion
w3m-dev:01263 setting user mailcap and mime.type
w3m-dev:01269 news: URL fix
w3m-dev:01273 USE_NNTP fix
w3m-dev:01274 support nntp:
w3m-dev:01275 change squeeze multiple blank line option to -s
closes: Bug#75527
w3m-dev:01276 fix URL in visual mode
closes: Bug#75573
w3m-dev:01277 add Accept-Encoding: gzip
closes: Bug#74695
* (config.h-*) add USE_GOPHER, USE_NNTP
* w3m.sh: fix for -ppc, -o, -config
* w3m.1: update
* emacsen-startup: remove extra right paren, closes: Bug#75795
-- Fumitoshi UKAI <ukai@debian.or.jp> Thu, 26 Oct 2000 21:42:45 +0900
w3m (0.1.10+0.1.11pre+kokb17-2) unstable; urgency=low
* apply patches
w3m-dev:01240: fix segfault, incompatible pointer, closes: Bug#75513
w3m-dev:01247: cummulative menu patch
-- Fumitoshi UKAI <ukai@debian.or.jp> Wed, 25 Oct 2000 12:38:14 +0900
w3m (0.1.10+0.1.11pre+kokb17-1) unstable; urgency=low
* new upstream pre release with several patches
- can't reproduce "run in an xterm gets trashed by the \x96 character"
closes: Bug#53048
- fixed: w3m in xterm horribly confused by Japanese in title
closes: Bug#62474
- fixed: Won't warn if can't understand config files.
closes: Bug#74069
- apply keymap.lynx example could be better.
closes: Bug#74070
* include w3m.el
-- Fumitoshi UKAI <ukai@debian.or.jp> Tue, 24 Oct 2000 13:37:53 +0900
w3m (0.1.10-3) unstable; urgency=low
* several bug fixes:
- resize on rxvt works fine, closes: Bug#64678, #71597
- No segfault from history page in 0.1.10, closes: Bug#65101
- As bug submitter said, download problem was fixed in 0.1.10,
closes: Bug#66235
- no nbsp leaks with 0.1.10, closes: Bug#67581
- fix debian/rules to check -perm 0100 instead of -perm 0111,
closes: Bug#72100
- support rxvt mouse support: closes: Bug#71380, Bug#58280
- mailcap test, closes: Bug#63309
- quote space in form submit: closes: Bug#60825, Bug#67466
- ignore space in leading blanks: closes: Bug#66887
If you claim not yet fixed, please reopen
-- Fumitoshi UKAI <ukai@debian.or.jp> Sun, 1 Oct 2000 04:15:08 +0900
w3m (0.1.10-2) stable unstable; urgency=medium
* proposed-updates release
since I believe 0.1.10-1 (in woody) is more stable than 0.9.5-5 (in potato)
and I plan w3m move to next unstable/experimental release for woody,
so I'd like to put it in stable(proposed-updates)
I'd not like to backport to 0.9.5 from 0.1.10, because it might include
some bugs, so I think 0.1.10 (proven stable) is better than backported
0.9.5
Followings are already fixed in 0.1.10 (and trivial fix to #72100),
- resize on rxvt works fine, closes: Bug#64678, #71597
- No segfault from history page in 0.1.10, closes: Bug#65101
- As bug submitter said, download problem was fixed in 0.1.10,
closes: Bug#66235
- no nbsp leaks with 0.1.10, closes: Bug#67581
- fix debian/rules to check -perm 0100 instead of -perm 0111,
closes: Bug#72100
If you claim not yet fixed, please reopen
-- Fumitoshi UKAI <ukai@debian.or.jp> Wed, 27 Sep 2000 16:46:47 +0900
w3m (0.1.10-1) unstable; urgency=low
* new upstream version
* apply patches in w3m-dev mailing-lists (until [w3m-dev 00899])
-- Fumitoshi UKAI <ukai@debian.or.jp> Tue, 13 Jun 2000 17:17:25 +0900
w3m (0.1.9-5) frozen unstable; urgency=medium
* fix bug of Segfaults on certain pages: 'http://www.linuxshop.cz/hardware.php3?typ=8&stranka=0&navrat=', closes: Bug#63937
* fixes Bug#64142: w3m and w3m-ssl doesn't work with zero length string proxy host.
-- Fumitoshi UKAI <ukai@debian.or.jp> Tue, 16 May 2000 02:00:28 +0900
w3m (0.1.9-4) frozen unstable; urgency=medium
* Fix RC bug#63274, thanks Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>, closes: Bug#63274, Bug#62718.
* Fix RC bug#63721, closes: Bug#63423, Bug#63612, Bug#63721
-- Fumitoshi UKAI <ukai@debian.or.jp> Mon, 8 May 2000 19:13:26 +0900
w3m (0.1.9-3) frozen unstable; urgency=medium
* Fix RC bug#63274, thanks Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>, closes: Bug#63274, Bug#62718.
* I think this version also closes: Bug#63423, Bug#63612,
if not yet fixed, please reopen it
-- Fumitoshi UKAI <ukai@debian.or.jp> Mon, 8 May 2000 01:06:15 +0900
w3m (0.1.9-2) frozen unstable; urgency=HIGH
* security fix: remote exploit
- When viewing image by `I', web author can run arbitrary command in
user's environment, because of mishandling image URL.
This revision fixes this problem (from [w3m-dev 00518] Security hole)
-- Fumitoshi UKAI <ukai@debian.or.jp> Wed, 26 Apr 2000 01:24:11 +0900
w3m (0.1.9-1) unstable; urgency=low
* new upstream version
* apply patches in w3m-dev mailing-lists
[w3m-dev 00482] [w3m-dev 00487] [w3m-dev 00483] [w3m-dev 00488]
* closes: Bug#62569
-- Fumitoshi UKAI <ukai@debian.or.jp> Sat, 22 Apr 2000 04:22:03 +0900
w3m (0.1.8-1) frozen unstable; urgency=medium
* apply patches in w3m-dev mailing-lists
* new upstream version
- security fix potential buffer overflow exploit
-- Fumitoshi UKAI <ukai@debian.or.jp> Thu, 13 Apr 2000 00:49:49 +0900
w3m (0.1.7-1) unstable; urgency=low
* new upstream version
-- Fumitoshi UKAI <ukai@debian.or.jp> Sat, 29 Jan 2000 02:27:00 +0900
w3m (0.1.6-2) frozen unstable; urgency=high
* remove dependency (suggests) to libc6-bin
-- Fumitoshi UKAI <ukai@debian.or.jp> Sat, 29 Jan 2000 01:10:04 +0900
w3m (0.1.6-1) frozen unstable; urgency=high
* new upstream release fixing several bugs
- fix HTTP Auth mecanism, closes: Bug#51258
- When '<' is used as other than start of a tag, let the '<'
be displayed., closes: Bug#52566
- modify GPM support, closes: Bug#55735
- don't use graphics character for progress bar, closes: Bug#53053
- http://www.egreetings.com/v/spEJQDu7Zm doesn't causes an unstoppable
loop of cookies any more, closes: Bug#54334
- Accept discard attribute of Set-Cookie2.
- insert a blank line just after </dl>.
- <table> Geometry calculation bugfix.
- Bugfix of inputLineHist().
- fix handling the very strange frameset with only one frame.
<frameset rows="100%,*" ... >
- When no scheme is specified in the URL, w3m tries to open local file,
and when it fails w3m prepends "http://".
- target="_parent" support, frame-relatex bugfixes.
- Screen redraw bugfix.
* fix segfault aborting to send mail, closes: Bug#55833
-- Fumitoshi UKAI <ukai@debian.or.jp> Sat, 22 Jan 2000 22:29:30 +0900
w3m (0.1.4-4) frozen unstable; urgency=HIGH
* fix build-depends, libncurses4-dev -> libncurses5-dev
* do symlink usr/share/doc/w3m-ssl, instead of install it
closes: Bug#55215, Bug#55699
* (security) fix bug: password auth leaks passwords (both w3m and w3m-ssl
have the same bug), closes: Bug#55655
-- Fumitoshi UKAI <ukai@debian.or.jp> Fri, 21 Jan 2000 01:32:51 +0900
w3m (0.1.4-3) unstable; urgency=low
* apply patch [w3m-dev 00176] Right justification bug
-- Fumitoshi UKAI <ukai@debian.or.jp> Sat, 15 Jan 2000 03:06:22 +0900
w3m (0.1.4-2) unstable; urgency=low
* rebuild with latest version of libncurses5-dev and libgpmg1-dev
-- Fumitoshi UKAI <ukai@debian.or.jp> Sat, 15 Jan 2000 01:38:42 +0900
w3m (0.1.4-1) unstable; urgency=low
* new upstream release
-- Fumitoshi UKAI <ukai@debian.or.jp> Thu, 13 Jan 2000 00:38:11 +0900
w3m (0.1.1-2) unstable; urgency=low
* bug in comment parsing
- apply patch from Bonard B.Timmons III <timmons@delanet.com>
closes: Bug#54703
* script interpreter should be /usr/bin/perl not /usr/local/bin/perl
-- Fumitoshi UKAI <ukai@debian.or.jp> Wed, 12 Jan 2000 01:45:56 +0900
w3m (0.1.1-1) unstable; urgency=low
* new upstream release
-- Fumitoshi UKAI <ukai@debian.or.jp> Thu, 6 Jan 2000 00:18:21 +0900
w3m (0.0.19991203-4) unstable; urgency=low
* fix infinite loop in parse HTML, closes: Bug#53855
* apply wrapper patch from Jacobo Tarrio <jtarrio@ceu.fi.udc.es>
* English page for w3m already available, closes: Bug#52292
-- Fumitoshi UKAI <ukai@debian.or.jp> Mon, 3 Jan 2000 02:33:22 +0900
w3m (0.0.19991203-3) unstable; urgency=low
* Add option to configure ALT="" handling, closes: Bug#47001
(but it might be refused by upstream author...)
-- Fumitoshi UKAI <ukai@debian.or.jp> Tue, 7 Dec 1999 01:12:43 +0900
w3m (0.0.19991203-2) unstable; urgency=low
* oops, fix bug in w3m shell wrapper, thanks Jacobo Tarrio <jtarrio@ctv.es>
-- Fumitoshi UKAI <ukai@debian.or.jp> Sun, 5 Dec 1999 18:02:42 +0900
w3m (0.0.19991203-1) unstable; urgency=low
* new upstream release
-- Fumitoshi UKAI <ukai@debian.or.jp> Fri, 3 Dec 1999 21:36:40 +0900
w3m (0.0.19991126-5) unstable; urgency=low
* import wrapper script from Jacobo Tarrio <jtarrio@ceu.fi.udc.es>, thanks.
-- Fumitoshi UKAI <ukai@debian.or.jp> Fri, 3 Dec 1999 01:03:07 +0900
w3m (0.0.19991126-4) unstable; urgency=low
* arrow keys available when TERM=xterm, closes: Bug#51582.
-- Fumitoshi UKAI <ukai@debian.or.jp> Wed, 1 Dec 1999 23:59:06 +0900
w3m (0.0.19991126-3) unstable; urgency=low
* fix segfault with -v option, closes: Bug#51532
* recognize Content-Type:text/html (no space)
* fix out of order of anchor lists with nested table. (w3m-dev)
* fix some array out of range access to cause random segfault.
* apply Tsutomu Okada <okada@furuno.co.jp> patch in w3m-dev
* new w3m wrapper based on Jacobo Tarrio <jtarrio@ceu.fi.udc.es>,
closes: Bug#48474
-- Fumitoshi UKAI <ukai@debian.or.jp> Wed, 1 Dec 1999 00:33:12 +0900
w3m (0.0.19991126-2) unstable; urgency=low
* fixed fail to load help file
* fixed segfault bug in form selection
* apply patch to fix w3m crash with $WWW_HOME
by hsaka@mth.biglobe.ne.jp (Hironori Sakamoto) on w3m-dev ML
-- Fumitoshi UKAI <ukai@debian.or.jp> Sat, 27 Nov 1999 18:00:43 +0900
w3m (0.0.19991126-1) unstable; urgency=low
* new upstream version
-- Fumitoshi UKAI <ukai@debian.or.jp> Fri, 26 Nov 1999 23:44:26 +0900
w3m (0.0.19991117-5) unstable; urgency=low
* fix mySystem() to handle quote in arguments
* fix memory allocation error, closes: Bug#51046
-- Fumitoshi UKAI <ukai@debian.or.jp> Fri, 26 Nov 1999 02:25:10 +0900
w3m (0.0.19991117-4) unstable; urgency=low
* build w3mbookmark both english version and japanese version
-- Fumitoshi UKAI <ukai@debian.or.jp> Mon, 22 Nov 1999 03:46:33 +0900
w3m (0.0.19991117-3) unstable; urgency=medium
* help file loaded from /usr/share/w3m, closes: Bug#50774
* back changes wrapper scripts, closes: Bug#50737, Bug#50782, Bug#50738
but repoen Bug#48474
* w3mbookmark should be installed in /usr/lib/w3m
-- Fumitoshi UKAI <ukai@debian.or.jp> Mon, 22 Nov 1999 02:49:21 +0900
w3m (0.0.19991117-2) unstable; urgency=medium
* apply various patches reported in w3m-dev mailing-list, closes: Bug#50603
-- Fumitoshi UKAI <ukai@debian.or.jp> Fri, 19 Nov 1999 16:14:23 +0900
w3m (0.0.19991117-1) unstable; urgency=high
* apply patches, already reported in w3m-dev mailing-list
* new upstream version
- fix security problem, closes: Bug#50192
- add http:// when command line argument is not file, closes: Bug#48474
-- Fumitoshi UKAI <ukai@debian.or.jp> Thu, 18 Nov 1999 17:08:27 +0900
w3m (0.0.19991028.2-7) unstable; urgency=low
* fix check_no_proxy() possibly infinite loop?
-- Fumitoshi UKAI <ukai@debian.or.jp> Sat, 13 Nov 1999 15:04:43 +0900
w3m (0.0.19991028.2-6) unstable; urgency=low
* add dns_order, noproxy_netaddr for more good IPv6 support
thanks Takuo KITAME <kitame@northeye.org>, closes:47788
-- Fumitoshi UKAI <ukai@debian.or.jp> Thu, 11 Nov 1999 01:39:14 +0900
w3m (0.0.19991028.2-5) unstable; urgency=low
* (ftp.c) fix ftp login problem against proftpd.
-- Fumitoshi UKAI <ukai@debian.or.jp> Wed, 3 Nov 1999 04:20:42 +0900
w3m (0.0.19991028.2-4) unstable; urgency=low
* (Str.c) Strgrow() must grow at least 2 bytes.
-- Fumitoshi UKAI <ukai@debian.or.jp> Mon, 1 Nov 1999 03:08:49 +0900
w3m (0.0.19991028.2-3) unstable; urgency=low
* (Str.h) fix Strcat_char() macro, closes: Bug#48750.
-- Fumitoshi UKAI <ukai@debian.or.jp> Sun, 31 Oct 1999 23:38:36 +0900
w3m (0.0.19991028.2-2) unstable; urgency=low
* need GC_stackbottom initialization in main.c, it closes Bug#48549,
segmentation fault on sparc architecture.
-- Fumitoshi UKAI <ukai@debian.or.jp> Sat, 30 Oct 1999 00:24:31 +0900
w3m (0.0.19991028.2-1) unstable; urgency=low
* new upstream version
-- Fumitoshi UKAI <ukai@debian.or.jp> Fri, 29 Oct 1999 01:47:34 +0900
w3m (0.0.19991027-1) unstable; urgency=low
* new upstream version
- fix check_expired_cookies, closes: Bug#48039
-- Fumitoshi UKAI <ukai@debian.or.jp> Thu, 28 Oct 1999 00:38:21 +0900
w3m (0.0.19991015-3) unstable; urgency=low
* probable bug in use of IS_SPACE() macro. closes: Bug#48211
-- Fumitoshi UKAI <ukai@debian.or.jp> Tue, 26 Oct 1999 00:20:32 +0900
w3m (0.0.19991015-2) unstable; urgency=low
* add -dump option for text/html copiousoutput in mime mailcap. closes: Bug#47558
-- Fumitoshi UKAI <ukai@debian.or.jp> Sat, 16 Oct 1999 23:29:04 +0900
w3m (0.0.19991015-1) unstable; urgency=low
* new upstream version
-- Fumitoshi UKAI <ukai@debian.or.jp> Fri, 15 Oct 1999 23:36:31 +0900
w3m (0.0.19991008-3) unstable; urgency=low
* fix segfault for "w3m http:" with http_proxy
-- Fumitoshi UKAI <ukai@debian.or.jp> Fri, 15 Oct 1999 01:29:36 +0900
w3m (0.0.19991008-2) unstable; urgency=low
* apply file.c patch to fix Incorrect line breaking by upstream author
in w3m-dev ML. closes: Bug#47087
* change `#ifdef TIOCGWINSZ' to `#ifndef TIOCGWINSZ'.
closes: Bug#47153.
-- Fumitoshi UKAI <ukai@debian.or.jp> Thu, 14 Oct 1999 00:55:46 +0900
w3m (0.0.19991008-1) unstable; urgency=low
* dont quote %s in debian/mime, closes: Bug#45920
* new upstream version.
- Never hangup if a page has when too much links. closes: Bug#46381
-- Fumitoshi UKAI <ukai@debian.or.jp> Sat, 9 Oct 1999 02:33:27 +0900
w3m (0.0.19991007-1) unstable; urgency=low
* add copiousoutput type mime hander like lynx, closes: Bug#46416
* apply patch to fix some enbug in new upstream (from w3m-dev)
* new upstream version
add support cookie and SSL.
but SSl is not configured by this debian package (todo)
-- Fumitoshi UKAI <ukai@debian.or.jp> Fri, 8 Oct 1999 01:31:00 +0900
w3m (0.0.19990928-2) unstable; urgency=low
* recompiled with libgc5-dev
* w3m is pager alternatives, closes: Bug#46192
-- Fumitoshi UKAI <ukai@debian.or.jp> Wed, 29 Sep 1999 13:15:57 +0900
w3m (0.0.19990928-1) unstable; urgency=low
* new upstream release
* apply Hironori Sakamoto <h-saka@lsi.nec.co.jp> patch
-- Fumitoshi UKAI <ukai@debian.or.jp> Wed, 29 Sep 1999 00:35:14 +0900
w3m (0.0.19990916-1) unstable; urgency=low
* new upstream release
* adapt to FHS
* available ~/.w3m/keymap (see /usr/share/doc/w3m/examples/keymap.lynx), closes: Bug#44421
-- Fumitoshi UKAI <ukai@debian.or.jp> Tue, 21 Sep 1999 02:34:16 +0900
w3m (0.0.19990820-1) unstable; urgency=low
* new upstream release
-- Fumitoshi UKAI <ukai@debian.or.jp> Sat, 21 Aug 1999 02:44:14 +0900
w3m (0.0.19990817-1) unstable; urgency=low
* new development release
* display ISO-8859-1 characters probably, closes: Bug#41988
-- Fumitoshi UKAI <ukai@debian.or.jp> Wed, 18 Aug 1999 02:23:15 +0900
w3m (0.0.19990815-2) unstable; urgency=low
* (url.c, ftp.c) fix INET6 patch; explicit port number in URL is ignored
* build both w3m-en and w3m-ja. These are dispatched in w3m by locale configurations.
* (file.c) fix ullevel chars (gt;)
-- Fumitoshi UKAI <ukai@debian.or.jp> Tue, 17 Aug 1999 00:40:53 +0900
w3m (0.0.19990815-1) unstable; urgency=low
* new upstream version
-- Fumitoshi UKAI <ukai@debian.or.jp> Mon, 16 Aug 1999 00:29:16 +0900
w3m (0.0.19990814-1) unstable; urgency=low
* new upstream version
-- Fumitoshi UKAI <ukai@debian.or.jp> Sat, 14 Aug 1999 22:07:34 +0900
w3m (0.0.19990716-3) unstable; urgency=low
* Applied IPv6 patch (from kitame@debian.gr.jp)
-- Fumitoshi UKAI <ukai@debian.or.jp> Sat, 14 Aug 1999 00:31:23 +0900
w3m (0.0.19990716-2) unstable; urgency=low
* auto decompress gzip file
-- Fumitoshi UKAI <ukai@debian.or.jp> Thu, 5 Aug 1999 18:07:47 +0000
w3m (0.0.19990716-1) unstable; urgency=low
* new upstream version
* link with libgc.so.4 again
-- Fumitoshi UKAI <ukai@debian.or.jp> Sun, 18 Jul 1999 17:01:58 +0900
w3m (0.0.19990625-1) unstable; urgency=low
* Backspace is ^?
* build with bundled libgc4 instead of libgc4 package, because
with libgc.so.4, w3m hangs up when resizing
* apply <hsaka@mth.biglobe.ne.jp> <19990707102422@ei5nazha> patch
* apply aito <19990701100806@ei5nazha> patch fix <P> behavior
* apply w3m-990625-30.diff.gz
* New upsteam version
-- Fumitoshi UKAI <ukai@debian.or.jp> Sat, 10 Jul 1999 13:51:04 +0900
w3m (0.0.19990609-2) unstable; urgency=low
* (debian/mime) remove text/plain entry, because netscape navigator
will hang up by this entry.
-- Fumitoshi UKAI <ukai@debian.or.jp> Tue, 15 Jun 1999 03:05:46 +0900
w3m (0.0.19990609-1) unstable; urgency=low
* New upstream version
- fix <dl compact> handling, thanks hsaka@mth.biglobe.ne.jp
- (new option) -no-mouse
- fix bugs about nested <nobr>,<pre>
- fix table width calculation when <table> has <nobr> and <br> or <p> in it
thanks, okabe@okaibm.hep.okayama-u.ac.jp
- fix password handling
- (portability) `char == unsigned char' environments
- fix bug when unclosed comments in table.
thanks okabe@okaibm.hep.okayama-u.ac.jp
-- Fumitoshi UKAI <ukai@debian.or.jp> Fri, 11 Jun 1999 03:34:59 +0900
w3m (0.0.19990604-1) unstable; urgency=low
* New upstream version
- page up/down, previous page by mouse
- fix handling of '#' in filename
- better support for mouse
- fix password handling
- support mouse drag
-- Fumitoshi UKAI <ukai@debian.or.jp> Sun, 6 Jun 1999 05:03:26 +0900
w3m (0.0.19990526-1) unstable; urgency=low
* apply patch
http://ei5nazha.yz.yamagata-u.ac.jp/BBS/spool/log.html
<19990527130634@ei5nazha>
* New upsteam version
- fix interpretation of `#' of filename
- (new feature) line number display
- add new option -no-proxy
- mouse support, thanks ytake@phys2.med.osaka-u.ac.jp
- fix width calculation when `&...;' thanks okabe@okaibm.hep.okayama-u.ac.jp
- (new feature) 1 line horizontal scroll, thanks shim@nw.bs1.fc.nec.co.jp
- support <wbr>
- fix space handling in table
- fix width calculation <nobr>..</nobr> in table
- use ARTICLE instead of article to get article via NNTP, thanks patakuti@t3.rim.or.jp
- fix openURL() initialization
- fix invalid character entity in table, thanks mituharu@math.s.chiba-u.ac.jp
- view source if it's not HTML
- display character entity as much as possible
- fix compile error
- add new option +line-number, thanks shim@nw.bs1.fc.nec.co.jp
- fix <nobr>..</nobr> handling
-- Fumitoshi UKAI <ukai@debian.or.jp> Sat, 29 May 1999 01:15:03 +0900
w3m (0.0.19990512-1) unstable; urgency=low
* New upstream version
- save cursor position when scrolling by J or K (by shim@nw.bs1.fc.nec.co.jp)
- display reading status at bottom line when text/plain
- fix justification by <div><center>
- display progress bar when Content-Length available.
- display HTTP header information by '='
- fix successful empty line when </OL></UL> are continued.
- newline by <LI> outside <OL><UL>
- print abolute pathname by 'u' (by tnh@aurora.dti.ne.jp)
- break C-c
- enhance save link destination by yukihiko@yk.rim.or.jp
-- Fumitoshi UKAI <ukai@debian.or.jp> Thu, 13 May 1999 02:53:13 +0900
w3m (0.0.19990430-1) unstable; urgency=low
* don't install html2latex, because it will conflicts with html2latex package
closes bug#36707.
* New upstream version
- keep HTTP header information in buffer
- "Last Modified" in information screen by `='
- don't add "Referer:" if ftp with user or password specified
- enhance newline judgement
- can specify count for command
- new feature: save document of link destination
- ftp order
- new feature: ftp://username@hostname/file
- ftp can be put in bookmark
- fix bug: getpwuid() in ftp
- enable align attribute in <Hn>, <P>
- fix leading space
- fix bug in resizing
- edit by ESC e
- support ftp://user:password@host/file
- default is current URL when `U'
- support EUC X0201 Kana
-- Fumitoshi UKAI <ukai@debian.or.jp> Sat, 1 May 1999 01:45:23 +0900
w3m (0.0.19990421-1) unstable; urgency=low
* remove reference to info page from w3m.1 because this package
does not have info pages, closes Bug#35093.
* New upstream version
- fix order of include "config.h" in term.c
- fix bug to dump core when URL is ""
- fix english message symbol in rc.c
- new feature: ftp password
- fix <tag attr=> parsing
- don't put character at right bottom edge to prevent scrolling on
some terminal emulators.
- buffer overrun bug fix
-- Fumitoshi UKAI <ukai@debian.or.jp> Wed, 21 Apr 1999 20:54:56 +0900
w3m (0.0.19990406-1) unstable; urgency=low
* buffer overrun bug fix
* New upstream version
- add Bonus scripts (ruby package can be found in Debian JP)
- add supports to browse pages with password.
- new feature: local CGI
- new feature: local directory index
- fix imagemap for Kanji map name
- fix width calculation for HTML elements
- add -halfdump option
- fix parseURL2 for "#label" type of URL
- deal with stuid Kanji URL
- (configure): 'pxvt' -> 'rxvt'
- fix for <base href=""> handling
-- Fumitoshi UKAI <ukai@debian.or.jp> Fri, 9 Apr 1999 23:57:36 +0900
w3m (0.0.19990330-1) unstable; urgency=low
* New upstream version
- ':' commands treats ',' as URL character.
- use sigsetjmp()/siglongjmp()
- fix color reset problems
* close Bug#35093, w3m has no Info pages.
-- Fumitoshi UKAI <ukai@debian.or.jp> Mon, 5 Apr 1999 20:04:34 +0900
w3m (0.0.19990323-1) unstable; urgency=low
* New upstream version
- fix redirected POST method
- fix <nobr> in nested table
- reorganized option screen
- auto URL display mode
- send CRLF in POST
- `M' invoke external viewer
- fix color bugs
- fix bug about relative path
- fix "&" in <img alt="...">
- enable -F (frame rendering) with -dump option
- newline surroudings of <ADDRESS>
- fix core dump when cursor move in empty buffer
- can be used IP address for NO_PROXY
- support multiple IP hosts
- fix <pre> in frame
- fix cbreak return from loadGeneralFile()
- fix <caption> bug
- fix &hoge;
- fix cell width bug when COLSPAN > 2
- fix -dump
- add support Accept-Language
-- Fumitoshi UKAI <ukai@debian.or.jp> Wed, 24 Mar 1999 19:46:05 +0900
w3m (0.0.19990313-1) unstable; urgency=low
* New upstream version
- fix external viewer invokation
- add "=" command to show information about document
-- Fumitoshi UKAI <ukai@debian.or.jp> Sun, 14 Mar 1999 01:39:41 +0900
w3m (0.0.19990310-1) unstable; urgency=low
* New upstream version
- support resize
- fix setlinescols
- Pragma: no-cache
- fix table rendering for 2byte chars
- <style> parse fix
- fix configure
-- Fumitoshi UKAI <ukai@debian.or.jp> Thu, 11 Mar 1999 00:30:25 +0900
w3m (0.0.19990309-1) unstable; urgency=low
* Initial Release.
-- Fumitoshi UKAI <ukai@debian.or.jp> Tue, 9 Mar 1999 19:08:08 +0900
|