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 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376
|
nautilus (3.22.3-1+deb9u1) stretch-security; urgency=high
[ Phil Wyett ]
* CVE-2017-14604: desktop_file_trust.patch
+ Spoof a file type by using the .desktop file extension, as demonstrated
by an attack in which a .desktop file's Name field ends in .pdf but
this file's Exec field launches a malicious "sh -c" command.
(Closes: #860268).
- Initial patch by Phil Wyett <philwyett@kathenas.org>
- Translations additions by Donncha O'Cearbhaill <donncha@donncha.is>
[ Yves-Alexis Perez ]
* Non-maintainer upload by the Security Team.
-- Yves-Alexis Perez <corsac@debian.org> Sat, 07 Oct 2017 20:59:16 +0200
nautilus (3.22.3-1) unstable; urgency=medium
* New upstream release.
-- Michael Biebl <biebl@debian.org> Thu, 09 Mar 2017 02:39:58 +0100
nautilus (3.22.2-1) unstable; urgency=medium
* New upstream release.
* Enforce strictly versioned dependency between nautilus and
nautilus-data. This is needed to ensure we always have the correct version
of the org.gnome.nautilus GSettings schema installed.
-- Michael Biebl <biebl@debian.org> Sat, 10 Dec 2016 03:06:08 +0100
nautilus (3.22.1-2) unstable; urgency=medium
* Add nautilus-sendto to Suggests. It is required by the "Send to …" context
menu. (Closes: #293262)
-- Michael Biebl <biebl@debian.org> Sun, 16 Oct 2016 22:36:01 +0200
nautilus (3.22.1-1) unstable; urgency=medium
* New upstream release.
-- Michael Biebl <biebl@debian.org> Fri, 14 Oct 2016 19:17:20 +0200
nautilus (3.22.0-1) unstable; urgency=medium
[ Jeremy Bicha ]
* Don't set libexecdir since nautilus doesn't use it
[ Michael Biebl ]
* New upstream release.
-- Michael Biebl <biebl@debian.org> Tue, 20 Sep 2016 00:26:44 +0200
nautilus (3.21.92-3) unstable; urgency=medium
* Enforce strictly versioned dependency between nautilus and
libnautilus-extension1a.
* Add a symbols files for libnautilus-extension1a, use the Jessie version as
base to generate the symbols file.
* Add Build-Depends-Package to libnautilus-extension1a.symbols.
This ensures proper dependencies when a package has a Build-Depends on a
higher version of libnautilus-extension-dev then what it gets from the
used symbols.
* Drop override for dh_makeshlibs, no longer necessary.
-- Michael Biebl <biebl@debian.org> Wed, 14 Sep 2016 20:19:15 +0200
nautilus (3.21.92-2) unstable; urgency=medium
[ Jeremy Bicha ]
* Multiarchify
* Add multiarch_fallback.patch:
Load extensions from non-multiarch directory too
[ Laurent Bigonville ]
* Bump libgtk-3-dev to 3.21.6, nautilus now uses the
propagate-natural-height property that has been introduced in this version
of GTK+ (Closes: #837738)
-- Michael Biebl <biebl@debian.org> Wed, 14 Sep 2016 15:30:00 +0200
nautilus (3.21.92-1) unstable; urgency=medium
* New upstream development release.
* Drop patches, all merged upstream.
* Bump (Build-)Depends on libgtk-3-dev to (>= 3.21.5) as per configure.ac.
* Bump debhelper compat level to 10.
* Drop debian/nautilus.postrm, no longer needed.
-- Michael Biebl <biebl@debian.org> Wed, 14 Sep 2016 00:09:19 +0200
nautilus (3.21.91.1-1) unstable; urgency=medium
* New upstream release.
* Update Build-Depends as per configure.ac:
- Bump libglib2.0-dev to (>= 2.49.1).
- Add libgnome-autoar-0-dev (>= 0.1).
- Drop intltool.
* Link statically against libgd. Patches cherry-picked from upstream Git.
* Install new application icons for Nautilus.
-- Michael Biebl <biebl@debian.org> Mon, 05 Sep 2016 16:31:30 +0200
nautilus (3.20.3-1) unstable; urgency=medium
[ Jeremy Bicha ]
* New upstream release (3.20.2)
* Drop format patch, applied in new version
* 0001-desktop-canvas-view-scale-desktop-workarea.patch:
- Add git patch to fix desktop margins with high-dpi scaling
* Convert from cdbs to dh
* Add debian/docs to explicitly install AUTHORS, NEWS, and THANKS
* Partially multiarchify but still install nautilus extensions to
/usr/lib/nautilus/extensions-3.0/ (from Ubuntu)
* Enable parallel building and all hardening flags
* Update homepage
[ Andreas Henriksson ]
* New upstream release (3.20.3)
* Drop d/p/0001-desktop-canvas-view-scale-desktop-workarea.patch again,
now included in upstream release.
-- Andreas Henriksson <andreas@fatal.se> Tue, 30 Aug 2016 16:58:23 +0200
nautilus (3.20.1-3) unstable; urgency=medium
* debian/nautilus.install: Move nautilus-autostart.desktop back to
etc/xdg/autostart. We are trying to remove the non-standard
/usr/share/gnome/autostart/ path.
* debian/control.in: gnome-icon-theme-symbolic from the dependencies, do not
force an icon theme and rely on the one installed by the metapackages
-- Laurent Bigonville <bigon@debian.org> Sat, 04 Jun 2016 22:03:13 +0200
nautilus (3.20.1-2) unstable; urgency=medium
* Only enable SELinux on Linux architectures, should fix FTBFS on other ones
-- Laurent Bigonville <bigon@debian.org> Wed, 04 May 2016 08:57:48 +0200
nautilus (3.20.1-1) unstable; urgency=medium
* New upstream release.
* Drop obsolete Breaks, Conflicts and Replaces from pre-wheezy.
* Bump Standards-Version to 3.9.8.
* Fix format string handling in show_unhandled_type_error(), patch taken
from bgo#765918.
-- Michael Biebl <biebl@debian.org> Tue, 03 May 2016 22:56:15 +0200
nautilus (3.20.0-1) unstable; urgency=medium
* New upstream release.
* Drop nautilus-dbg package now that we have automatic dbgsym packages.
* Ensure proper upgrade from nautilus-dbg to new dbgsym packages by using
dh_strip --dbgsym-migration. Bump Build-Depends on debhelper accordingly.
* Upload to unstable.
-- Michael Biebl <biebl@debian.org> Sun, 17 Apr 2016 17:32:23 +0200
nautilus (3.19.93-1) experimental; urgency=medium
* New upstream release.
* Bump (build-)dependencies according to configure.ac changes:
- libgtk-3-dev (>= 3.19.12)
- intltool (>= 0.50.0)
* Stop shipping GConf->gsettings and metadata conversion files
- now dropped upstream and we've converted a long time ago already.
* Bump Standards-Version to 3.9.7
-- Andreas Henriksson <andreas@fatal.se> Thu, 17 Mar 2016 23:58:05 +0100
nautilus (3.18.5-1) unstable; urgency=medium
[ Dmitry Shachnev ]
* Build without tracker support on stage1 (as tracker build-depends on
nautilus itself). Thanks to Daniel Schepler (closes: #739259).
* Bump debhelper and dpkg-dev build-dependencies to versions that support
restrictions formulas.
[ Michael Biebl ]
* New upstream release.
-- Michael Biebl <biebl@debian.org> Sat, 30 Jan 2016 00:37:53 +0100
nautilus (3.18.4-1) unstable; urgency=medium
* New upstream release.
-- Michael Biebl <biebl@debian.org> Sun, 20 Dec 2015 15:08:08 +0100
nautilus (3.18.3-1) unstable; urgency=medium
* New upstream release.
* Bump libglib2.0-dev to (>= 2.45.7) as per configure.ac.
-- Michael Biebl <biebl@debian.org> Tue, 15 Dec 2015 21:29:12 +0100
nautilus (3.18.2-1) unstable; urgency=medium
* New upstream release.
-- Michael Biebl <biebl@debian.org> Sat, 14 Nov 2015 15:44:03 +0100
nautilus (3.18.1-1) unstable; urgency=medium
* New upstream release.
-- Michael Biebl <biebl@debian.org> Wed, 21 Oct 2015 16:35:10 +0200
nautilus (3.18.0-2) unstable; urgency=medium
* Enable PackageKit support
* Bump debhelper compatibility to 9
-- Laurent Bigonville <bigon@debian.org> Tue, 13 Oct 2015 12:10:27 +0200
nautilus (3.18.0-1) experimental; urgency=medium
* New upstream release.
* Update (build-)dependencies according to configure.ac changes:
- bump libglib2.0-dev to >= 2.45.7
- bump libgtk-3-dev to >= 3.17.5
- bump gtk-doc-tools to >= 1.10
-- Andreas Henriksson <andreas@fatal.se> Thu, 24 Sep 2015 15:54:57 +0200
nautilus (3.16.2-1) experimental; urgency=medium
[ Andreas Henriksson ]
* New upstream release.
* Update (build-)dependencies according to configure.ac changes:
- drop libnotify
- bump glib to 2.43.4 and gtk+ to 3.15.2
* debian/nautilus-data.install:
- no longer ship usr/share/mime/packages/nautilus.xml, which is
no longer available upstream since commit 5951fadbefafd17798
"Remove saved search mimetype association"
* Fix spelling of "allows one to" in pkg descriptions, thanks lintian.
* Bump Standards-Version to 3.9.6
[ Michael Biebl ]
* Remove Debian menu entry.
-- Michael Biebl <biebl@debian.org> Sat, 05 Sep 2015 22:30:08 +0200
nautilus (3.14.2-1) unstable; urgency=medium
* Drop eject recommends - obsolete since circa 2003
* New upstream stable release.
* Drop debian/patches/01_fix-new-window-manage-desktop.patch
- now part of upstream release.
-- Andreas Henriksson <andreas@fatal.se> Sun, 17 May 2015 11:15:00 +0200
nautilus (3.14.1-2) unstable; urgency=medium
* d/p/01_fix-new-window-manage-desktop.patch: Fix opening of new browser
windows when nautilus is managing the desktop, cherry-picked from
upstream, should really Closes: #766021
-- Laurent Bigonville <bigon@debian.org> Fri, 21 Nov 2014 20:44:25 +0100
nautilus (3.14.1-1) unstable; urgency=medium
* New upstream release.
- includes fix for --new-window (Closes: #766021)
-- Andreas Henriksson <andreas@fatal.se> Thu, 20 Nov 2014 14:15:54 +0100
nautilus (3.14.0-1) unstable; urgency=medium
* New upstream release.
* Upload to unstable.
-- Andreas Henriksson <andreas@fatal.se> Tue, 23 Sep 2014 15:50:25 +0200
nautilus (3.13.91-1) experimental; urgency=medium
* New upstream development release.
* Update build-dependencies according to configure.ac:
- Bump libgtk-3-dev to (>= 3.13.2)
* nautilus-data: stop installing /usr/share/nautilus placeholder files
- no longer shipped by upstream.
-- Andreas Henriksson <andreas@fatal.se> Fri, 05 Sep 2014 15:34:02 -0700
nautilus (3.12.2-1) unstable; urgency=medium
* New upstream release.
* Upload to unstable.
-- Andreas Henriksson <andreas@fatal.se> Tue, 15 Jul 2014 00:08:32 +0200
nautilus (3.12.0-2) experimental; urgency=medium
* Switch to tracker 1.0.
-- Michael Biebl <biebl@debian.org> Sat, 10 May 2014 04:10:11 +0200
nautilus (3.12.0-1) experimental; urgency=medium
* New upstream release.
* nautilus: install appdata file
* Bump Standards-Version to 3.9.5
-- Andreas Henriksson <andreas@fatal.se> Tue, 25 Mar 2014 21:54:35 +0100
nautilus (3.11.90-1) experimental; urgency=medium
* New upstream release.
* Bump build-dependency, Gtk+ 3.11.6
-- Andreas Henriksson <andreas@fatal.se> Tue, 18 Feb 2014 01:56:29 +0100
nautilus (3.10.0-1) experimental; urgency=low
* New upstream release
* debian/control.in: Update build-depends libgtk-3-dev (>= 3.9.11),
libgnome-desktop-3-dev (>= 3.10)
-- Sjoerd Simons <sjoerd@debian.org> Sun, 03 Nov 2013 11:34:30 +0100
nautilus (3.8.2-3) unstable; urgency=medium
* Switch to tracker 1.0. (Closes: #741425)
-- Michael Biebl <biebl@debian.org> Sat, 10 May 2014 04:07:37 +0200
nautilus (3.8.2-2) unstable; urgency=low
* Upload to unstable.
-- Emilio Pozuelo Monfort <pochu@debian.org> Sun, 13 Oct 2013 17:37:31 +0200
nautilus (3.8.2-1) experimental; urgency=low
[ Jeremy Bicha ]
* New upstream release
* debian/control.in: Bump minimum gsettings-desktop-schemas
[ Emilio Pozuelo Monfort ]
* Standards-Version is 3.9.4, no changes needed.
[ Michael Biebl ]
* Re-enable tracker support.
* Set pkg-gnome-maintainers@lists.alioth.debian.org as Maintainer.
-- Michael Biebl <biebl@debian.org> Sat, 12 Oct 2013 00:54:36 +0200
nautilus (3.8.0-1) experimental; urgency=low
* New upstream release.
-- Emilio Pozuelo Monfort <pochu@debian.org> Mon, 25 Mar 2013 18:20:45 +0100
nautilus (3.7.92-1) experimental; urgency=low
* New upstream release.
-- Emilio Pozuelo Monfort <pochu@debian.org> Wed, 20 Mar 2013 01:37:52 +0100
nautilus (3.7.91-2) experimental; urgency=low
* debian/control.in:
- Bump depends on gsettings-desktop-schemas to 3.7.90.
Thanks to Laurent Bigonville for noticing this. Closes: #703106.
-- Emilio Pozuelo Monfort <pochu@debian.org> Fri, 15 Mar 2013 20:36:10 +0100
nautilus (3.7.91-1) experimental; urgency=low
[ Josselin Mouette ]
* Recommend gnome-icon-theme-symbolic. Closes: #692509
[ Jeremy Bicha ]
* New upstream release
* debian/control.in:
- Bump minimum glib and gtk
- Suggest brasero instead of recommending it
* debian/nautilus.install:
- Shell search provider doesn't need a separate library any more
[ Emilio Pozuelo Monfort ]
* New upstream release.
+ debian/control.in,
debian/rules:
- Temporarily disable tracker support until tracker 0.16 lands
in the archive.
-- Emilio Pozuelo Monfort <pochu@debian.org> Wed, 13 Mar 2013 13:26:53 +0100
nautilus (3.6.1-2) experimental; urgency=low
* Build-depend on libgnome-desktop-3-dev 3.6.1, because thumbnailing
doesn't seem to work when compiled against the 3.4.x version
-- Simon McVittie <smcv@debian.org> Wed, 24 Oct 2012 12:18:01 +0100
nautilus (3.6.1-1) experimental; urgency=low
* Team upload
[ Jeremy Bicha ]
* New upsteam release
* debian/control.in:
- Bump minimum glib and gtk
* debian/nautilus.install, debian/nautilus-data.install:
- Install gnome shell search provider
* Dropped obsolete patches:
- debian/patches/12_list-view_expand.patch
- debian/patches/13_tracker.patch:
-- Simon McVittie <smcv@debian.org> Tue, 23 Oct 2012 10:35:43 +0100
nautilus (3.4.2-1) unstable; urgency=low
* New upstream release.
* Refresh debian/patches/12_list-view_expand.patch.
-- Michael Biebl <biebl@debian.org> Wed, 16 May 2012 15:54:52 +0200
nautilus (3.4.1-1) unstable; urgency=low
* New upstream release.
* Drop explicit Build-Depends on gir packages and let the corresponding -dev
package pull them for us.
* Bump minimum required version of libglib2.0-dev to 2.31.9 and libgtk-3-dev
to 3.3.17.
* Remove debian/patches/14_tracker-0.14.patch, fixed upstream.
* Remove debian/patches/03_deprecated.patch, no longer needed.
* debian/nautilus-data.install: Remove usr/share/pixmaps, not installed by
upstream.
* debian/rules: Remove call to dh_installmime, already done by cdbs.
* Bump Standards-Version to 3.9.3.
-- Michael Biebl <biebl@debian.org> Thu, 19 Apr 2012 14:41:06 +0200
nautilus (3.2.1-3) unstable; urgency=low
* Change section of gir1.2-nautilus-3.0 to introspection.
* Build against tracker 0.14.
-- Michael Biebl <biebl@debian.org> Wed, 14 Mar 2012 19:09:16 +0100
nautilus (3.2.1-2) unstable; urgency=low
* Upload to unstable.
* debian/control.in:
- Drop Build-Depends on libdbus-glib-1-dev, no longer required.
- Drop Recommends on desktop-base. It was originally added when nautilus
was patched to show the .desktop icons from the desktop-base package. We
don't do that anymore, so the Recommends has become obsolete.
- Drop Recommends on consolekit. The ConsoleKit specific functionality has
been moved into gnome-settings-daemon.
- Drop Recommends on synaptic and app-install-data. We no longer call
synaptic for mimetypes without a handler as this functionality is
provided by alternatives like PackageKit or sessioninstaller now.
- Update Vcs-* URLs.
* debian/nautilus-data.gconf-defaults:
- Removed, obsolete.
* Refresh patches.
-- Michael Biebl <biebl@debian.org> Mon, 21 Nov 2011 20:52:38 +0100
nautilus (3.2.1-1) experimental; urgency=low
* New upstream release
* debian/patches/13_tracker.patch: Updated
* debian/control.in: Update build-dependencies
* debian/control.in, debian/rules: enable the tracker sarch backend
* debian/control.in: Recommend sushi
-- Sjoerd Simons <sjoerd@debian.org> Sun, 06 Nov 2011 13:51:59 +0000
nautilus (3.0.2-4) unstable; urgency=low
* Upload to unstable.
-- Michael Biebl <biebl@debian.org> Thu, 13 Oct 2011 18:00:54 +0200
nautilus (3.0.2-3) experimental; urgency=low
* debian/control.in:
- Add Breaks against nautilus-sendto-empathy (<< 3.0) and
gnome-bluetooth (<< 3.0) as the libnautilus-sendto extension was moved
into nautilus 3 but the plugin path was not changed with the switch to
GTK 3. Loading both GTK 2 and GTK 3 in the same process is not allowed.
- Bump Standards-Version to 3.9.2. No further changes.
- Bump Build-Depends on cdbs to (>= 0.4.90) to ensure dh_girepository is
called.
- Remove old Conflicts and Replaces.
* debian/rules:
- Remove clean-la.mk since we don't install any .la files.
- Drop call to dh_girepository
* Bump debhelper compatibility level to 8.
- Strip debian/tmp/ from .install files.
- Bump Build-Depends on debhelper.
* debian/watch:
- Update to version 3.
- Track .xz tarballs.
* debian/nautilus.install:
- Install dbus service file for nautilus.
* debian/patches/13_tracker.patch:
- Add support for tracker 0.12. Closes: #643946
- Enable full text search.
-- Michael Biebl <biebl@debian.org> Tue, 11 Oct 2011 17:49:58 +0200
nautilus (3.0.2-2) experimental; urgency=low
* Rename libnautilus-extension1 to libnautilus-extension1a, and add
appropriate Replaces/Conflicts. Closes: #627361.
-- Josselin Mouette <joss@debian.org> Tue, 31 May 2011 23:39:28 +0200
nautilus (3.0.2-1) experimental; urgency=low
* Rebuild against a cdbs+debhelper with dh_installgsettings.
Closes: #627477.
* libnautilus-extension1 breaks nautilus (< 3.0) and that’s the
beginning of a very long list (nautilus transition).
+ gnome-disk-utility < 3.0
+ brasero < 2.91
+ file-roller < 3.0
+ nautilus-sendto < 3
* Replace nautilus-sendto since it is now included in nautilus.
* New upstream translation and bugfix release.
* 00_do_not_require_unpackage_libexif.patch: dropped, we have the
latest libexif now.
+ Bump build-dependencies accordingly.
* Bump libnotify requirement.
* Reintroduce some nautilus 2.x patches.
+ 03_deprecated.patch: still necessary, refreshed.
+ 12_list-view_expand.patch: still necessary, file was renamed,
refreshed. Update to GTK+ 3.
* nautilus.install: install the autostart file. This should bring back
the desktop icons functionality completely.
-- Josselin Mouette <joss@debian.org> Tue, 31 May 2011 19:30:35 +0200
nautilus (3.0.0-1) experimental; urgency=low
* New upstream release.
* debian/control.in:
+ bump relevant build dependencies.
* debian/patches/00_do_not_require_unpackage_libexif.patch: new,
dependencies were bumped upstream, to require the latest stable versions;
but libexif 0.6.20 not yet in Debian, and not necessary.
-- Frederic Peters <fpeters@debian.org> Fri, 15 Apr 2011 15:38:08 +0200
nautilus (2.91.94-1) experimental; urgency=low
* New upstream release.
[ Josselin Mouette ]
* Make the -dev package depend on the gir package.
-- Frederic Peters <fpeters@debian.org> Thu, 31 Mar 2011 09:52:17 +0530
nautilus (2.91.93-1) experimental; urgency=low
* New upstream release.
* debian/control.in: bumped build-dependency on gtk+
* debian/copyright: updated the list of copyright holders from the sources.
-- Frederic Peters <fpeters@debian.org> Sun, 27 Mar 2011 18:51:51 +0530
nautilus (2.91.90.1-1) experimental; urgency=low
* New upstream release.
-- Frederic Peters <fpeters@debian.org> Tue, 22 Feb 2011 23:43:00 +0100
nautilus (2.91.9-1) experimental; urgency=low
* New upstream release.
+ debian/control.in:
- Update the build dependencies.
- Update the gtk+ 3 and libgail 3 package names.
-- Emilio Pozuelo Monfort <pochu@debian.org> Sat, 19 Feb 2011 14:27:11 +0000
nautilus (2.91.7-1) experimental; urgency=low
* New upstream release.
+ debian/control.in:
- Update build dependencies.
+ debian/patches/10_load_session.patch:
- Removed, that code is gone.
+ debian/patches/30-fix-compilation.patch:
- Removed, included upstream.
* debian/po-up,
debian/rules:
+ Removed patch-translations support, we have no patches with
strings anymore (actually we have no patches at all!).
-- Emilio Pozuelo Monfort <pochu@debian.org> Wed, 12 Jan 2011 22:47:23 +0000
nautilus (2.91.4-1) experimental; urgency=low
* New upstream release
* debian/patches/20-rename-extensions-directory.patch
+ Removed, fixed upstream
* debian/control.in: Add Conflicts/Replaces to gir1.0-nautilus-3.0
-- Sjoerd Simons <sjoerd@debian.org> Sat, 18 Dec 2010 19:18:03 +0000
nautilus (2.91.3-2) experimental; urgency=low
* Update to the new gir policy:
- Rename gir1.0-nautilus-3.0 to gir1.2-nautilus-3.0.
- Bump the gobject-introspection build dependency.
* Switch to source format 3.0 (quilt).
* debian/control.in,
debian/rules:
- Call dh_girepository and let the gir package depend
on gir:Depends, to get gir dependencies. Build depend
on the necessary gir1.2 packages for that.
- Exclude the extensions folder from the dh_makeshlibs call.
-- Emilio Pozuelo Monfort <pochu@debian.org> Sun, 12 Dec 2010 20:13:10 +0100
nautilus (2.91.3-1) experimental; urgency=low
* New upstream release
* debian/control: Add Gsettings schemas to nautilus-data
* debian/control: Add gir1.0-nautilus-3.0
* debian/control: Add the nautilus gir to libnautilus-extension-dev.install
* debian/patches/13_shortcuts.patch
- Removed, Fixed upstream
* debian/patches/20_open-with_install.patch
- Removed, open with is now handled by GtkAppChooser
* debian/patches/03_deprecated.patch
- Removed, no longer relevant
* debian/patches/12_list-view_expand.patch
- Removed, no longer applies
* debian/patches/10_location_titlebar.patch
- Removed, not relevant anymore as there is a crumtrail
* debian/patches/14_dont_show_umount.patch
- Removed, fixed upstream.
* debian/patches/30-fix-compilation.patch
- Added, fix complications with --as-needed
* debian/patches/20-rename-extensions-directory.patch
- Added, rename the extensions dir to not clash with older nautilus
extensions. From upstream git.
* debian/rules: Add list-missing and autoreconf
* debian/patches/99_ltmain_as-needed.patch
- Removed as we use dh_autoreconf now
* debian/patches/90_relibtoolize.patch
- Removed as we use dh_autoreconf now
* debian/control.in: Add gobject-introspection to the build-depends
* debian/rules: Force gobject-introspection support to build
* debian/control.in: libgirepository1.0-dev (>= 0.9.12)
* debian/nautilus.install: Don't install .la for extensions
-- Sjoerd Simons <sjoerd@debian.org> Sat, 11 Dec 2010 15:48:26 +0000
nautilus (2.30.1-3) unstable; urgency=low
* 15_nautilus_file_peek_crash.patch: stolen from upstream git. Fix a
crasher with lots of upstream duplicates from squeeze systems.
-- Josselin Mouette <joss@debian.org> Sun, 27 Feb 2011 12:50:09 +0100
nautilus (2.30.1-2) unstable; urgency=low
* Drop type-handling usage. Closes: #587872.
* Bump standards version accordingly.
* 13_shortcuts.patch: stolen from upstream git. Fix an annoying bug
that makes a number of keyboard shortcuts inoperant the first time.
Closes: #592016.
* 14_dont_show_umount.patch: stolen from upstream git. Don’t show both
“unmount” and “safe removal”/“eject” entries. Closes: #564859.
-- Josselin Mouette <joss@debian.org> Sat, 18 Sep 2010 14:31:36 +0200
nautilus (2.30.1-1) unstable; urgency=low
* Bump shlibs for libnautilus-extension1. Closes: #577856.
* New upstream release.
* 02_eel_libadd.patch, 04_tracker_0.8.patch: dropped, merged upstream.
* 90_relibtoolize.patch: updated for the new version.
-- Josselin Mouette <joss@debian.org> Tue, 27 Apr 2010 19:06:00 +0200
nautilus (2.30.0-1) experimental; urgency=low
* New upstream release.
* debian/control.in
- Drop libbeagle-dev and libtrackerclient-dev from Build-Depends.
Nautilus uses dlopen now to access those search engines.
- Bump libglib2.0-dev to (>= 2.24.0).
- Bump libgnome-desktop-dev to (>= 2.29.91).
- Bump libgtk2.0-dev to (>= 2.20.0).
- Bump Standards-Version to 3.8.4. No further changes.
* debian/patches/01_manpage.patch
- Remove, merged upstream.
* debian/patches/04_tracker_0.8.patch
- Add support for tracker 0.8 and fix filtering by location.
Patch pulled from upstream Git.
* debian/patches/90_relibtoolize.patch
- Update build system for new upstream release.
* Refresh patches to apply cleanly.
-- Michael Biebl <biebl@debian.org> Wed, 14 Apr 2010 23:30:34 +0200
nautilus (2.28.4-2) unstable; urgency=low
* 03_deprecated.patch: new patch. Don’t use -D*DISABLE_DEPRECATED for
a production build, it often FTBFS. Closes: #576977.
* 90_relibtoolize.patch: updated accordingly.
-- Josselin Mouette <joss@debian.org> Fri, 09 Apr 2010 02:00:34 +0200
nautilus (2.28.4-1) unstable; urgency=low
* New upstream bugfix release.
* Regenerate relibtoolize patch to apply.
-- Andreas Henriksson <andreas@fatal.se> Tue, 15 Dec 2009 14:28:56 +0100
nautilus (2.28.3-1) unstable; urgency=low
[ Josselin Mouette ]
* Drop n-c-b from Recommends.
[ Emilio Pozuelo Monfort ]
* debian/patches/20_open-with_install.patch:
- Add description.
* debian/watch:
- Don't uupdate.
* New upstream bugfix release.
- debian/patches/12_list-view_expand.patch,
debian/patches/20_open-with_install.patch,
debian/patches/90_relibtoolize.patch:
+ Refreshed.
* debian/patches/01_manpage.patch,
debian/patches/02_eel_libadd.patch:
- Forwarded, add headers.
-- Emilio Pozuelo Monfort <pochu@debian.org> Mon, 14 Dec 2009 21:01:11 +0100
nautilus (2.28.1-1) unstable; urgency=low
[ Josselin Mouette ]
* Drop gnome-mount recommends, it’s already pulled by gvfs if needed
(i.e. for gvfs builds that use HAL).
[ Andrea Veri ]
* New upstream release.
* debian/control:
- bumped standards-version to 3.8.3. No changes needed.
- bumped libtrackerclient-dev to >= 0.6.6 (lenny version),
to start up nautilus porting to tracker 0.7. Thanks mbiebl
for the hint.
- added missing ${misc:Depends} to both nautilus-dbg and
libnautilus-extension-dev making lintian stop complaining.
[ Josselin Mouette ]
* nautilus-data.gconf-defaults: set exit_with_last_window to false so
that nautilus doesn’t go in a loop when show_desktop = false.
* 13_autostart.patch: removed, it is no longer necessary.
+ Automount works even when show_desktop = false. Closes: #538108.
+ Stop installing the autostart file as well.
+ Break gnome-session < 2.28 because of this change.
* Regenerate 90_relibtoolize.patch.
-- Josselin Mouette <joss@debian.org> Sat, 24 Oct 2009 15:32:11 +0200
nautilus (2.28.0-2) unstable; urgency=low
* Require a recent gvfs for the metadata store.
Closes: #548142, #548143.
-- Josselin Mouette <joss@debian.org> Thu, 24 Sep 2009 10:05:46 +0200
nautilus (2.28.0-1) unstable; urgency=low
* Depend on libglib2.0-data for GIO translations.
* New upstream release.
+ Fixes duplicate ID in UI file. Closes: #545254.
* Bump glib build-dependency.
* 12_list-view_expand.patch, 13_autostart.patch, 90_relibtoolize.patch:
updated for the new version.
* Install nautilus-convert-metadata.
-- Josselin Mouette <joss@debian.org> Wed, 23 Sep 2009 20:11:11 +0200
nautilus (2.26.3-1) unstable; urgency=low
* New upstream release.
+ Updated Spanish translation. Closes: #532288.
* 13_autostart.patch: start with -n so that the default window is not
created, even when nautilus doesn’t detect correctly it is started
by the session startup. Closes: #532799.
* 90_relibtoolize.patch: regenerated for the new version.
-- Josselin Mouette <joss@debian.org> Thu, 11 Jun 2009 23:08:03 +0200
nautilus (2.26.2-5) unstable; urgency=low
* 11_restart_mode.patch: removed, it is useless now that we never
autorespawn nautilus. Furthermore, nautilus-home.desktop is lacking
a X-GNOME-Provides: field.
* 13_autostart.patch: refreshed accordingly.
-- Josselin Mouette <joss@debian.org> Sun, 31 May 2009 17:53:10 +0200
nautilus (2.26.2-4) unstable; urgency=low
* 11_restart_mode.patch: add reference.
* Remove scrollkeeper dependency.
* 13_autostart.patch: new patch. Put nautilus.desktop into the
autostart directory so that we don’t rely on gnome-session’s
required_applications mechanism. This allows to add an autostart
condition on the show_desktop GConf key.
+ Remove the AutoRestart on the same basis; there’s no point in
restarting nautilus and not e.g. gnome-power-manager, and it
causes many issues.
* 90_relibtoolize.patch: update accordingly.
-- Josselin Mouette <joss@debian.org> Sun, 31 May 2009 13:51:27 +0200
nautilus (2.26.2-3) unstable; urgency=low
* 11_restart_mode.patch: new patch. Do not get the session manager to
automatically restart nautilus when using --no-desktop. Thanks to
Roland Mas for testing.
-- Josselin Mouette <joss@debian.org> Wed, 29 Apr 2009 17:55:35 +0200
nautilus (2.26.2-2) unstable; urgency=low
* 20_open-with_install.patch: fix a crash when switching tabs in the
dialog.
-- Josselin Mouette <joss@debian.org> Sat, 25 Apr 2009 23:44:05 +0200
nautilus (2.26.2-1) unstable; urgency=low
* Break eiciel, diff-ext, nautilus-gksu, nautilus-actions,
nautilus-share and seahorse-plugins until versions rebuilt with the
new extension path.
* Only suggest xdg-user-dirs, nautilus works perfectly fine without
it.
* New upstream release.
+ Correctly cleans up session files. Closes: #469267.
+ Checks whether the session is active with ConsoleKit before
mounting a removable media. Closes: #512824.
+ Follows OnlyShowIn/NotShowIn for .desktop files on the desktop.
Closes: #422570.
+ Only accepts .desktop with executable permissions.
Closes: #515078, #515104.
* 07_desktop_file_activation.patch: removed from the sources.
* 02_eel_libadd.patch: stolen from the eel2 sources. Fix linking of
the eel convenience library.
* 14_sidebar_network-protocol.patch: removed, useless since 2.24.
Closes: #518773.
* 20_open-with_install.patch: updated for the new version.
* 90_relibtoolize.patch: new patch, relibtoolize over that.
* Refresh other patches.
* Bump shlibs version to 2.26.2.
* Add brasero 2.26 as an alternative to n-c-b.
* Recommend consolekit.
* Pass --disable-packagekit.
* Fix section of debug package.
* Update build-dependencies and dependencies according to the upstream
changes.
* Build-depend on libglib2.0-doc and libgtk2.0-doc to ensure proper
xrefs.
* nautilus-data.install: there are no more bonobo files to ship.
* 10_load_session.patch: new patch. Support --load-session so that
sessions saved with older nautilus versions will load correctly.
-- Josselin Mouette <joss@debian.org> Sat, 25 Apr 2009 01:33:51 +0200
nautilus (2.24.2-3) unstable; urgency=low
* Require shared-mime-info 0.50 to have support for the x-content
types. Closes: #511370.
* Recommend gnome-mount.
* Break rhythmbox < 0.12.
* Standards version is 3.8.1.
* Upload to unstable.
-- Josselin Mouette <joss@debian.org> Tue, 07 Apr 2009 14:06:47 +0200
nautilus (2.24.2-2) experimental; urgency=low
* Add a Breaks with g-v-m << 2.24 to avoid double actions on device
insertion. Closes: #507630, #510692.
* 20_open-with_install.patch: add missing argument to
gtk_tree_model_get. Closes: #510694.
-- Josselin Mouette <joss@debian.org> Tue, 06 Jan 2009 17:07:39 +0100
nautilus (2.24.2-1) experimental; urgency=low
* nautilus-data.gconf-defaults: enable autorun actions for all media
CD/DVD/etc. by default instead of asking.
+ Also do it for blank media.
* libnautilus-extension1 breaks nautilus << 2.22.
* Build-depend on libgnome-desktop-dev 2.24 to be sure to link with
libgnome-desktop-2-7. Otherwise, since symbols are not versioned,
libeel2-2.24 will load it anyway and ka-boom. Closes: #507632.
* New upstream release.
-- Josselin Mouette <joss@debian.org> Wed, 26 Nov 2008 01:28:28 +0100
nautilus (2.24.1-1) experimental; urgency=low
[ Gustavo Noronha Silva ]
* New upstream release
* debian/patches/20_open-with_install.patch:
- updated to the new version
[ Josselin Mouette ]
* Update (build-)dependencies according to the new version.
* Add Breaks in libnautilus-extension1 against all packages that use
the old API.
* 12_list-view_expand.patch, 14_sidebar_network-protocol.patch:
refreshed.
* Update shlibs version to 2.23.1.
* Only require gvfs (>= 1.0.2), only recommend gvfs-backends.
* Stop recommending fam, gio does not support it correctly.
* Remove useless dh_strip argument overloading.
* 01_manpage.patch: fix whatis entry in nautilus-connect-server.1.
* Install upstream manpages in nautilus.
* Install the documentation for libnautilus-extension.
-- Josselin Mouette <joss@debian.org> Sun, 23 Nov 2008 23:39:28 +0100
nautilus (2.22.5.1-1) experimental; urgency=low
[ Josselin Mouette ]
* 20_open-with_install.patch: handle the case where content_type =
NULL. See bugzilla #541183.
[ Sebastian Dröge ]
* New upstream bugfix release.
-- Sebastian Dröge <slomo@debian.org> Sat, 12 Jul 2008 19:17:54 +0200
nautilus (2.22.4-1) experimental; urgency=low
* New upstream bugfix release.
-- Sebastian Dröge <slomo@debian.org> Mon, 30 Jun 2008 16:28:24 +0200
nautilus (2.22.3-1) experimental; urgency=low
[ Josselin Mouette ]
* 20_open-with_install.patch: ported from the patch formerly in eel2.
* Also recommend synaptic and app-install-data.
* Include patch-translations.mk, require gnome-pkg-tools 0.13.
* debian/po-up: taken from eel2.
* 99_ltmain_as-needed.patch: make the patch apply with -p1.
Closes: #484953.
[ Sebastian Dröge ]
* New upstream bugfix release:
+ debian/control.in:
- Drop esound from build dependencies.
+ debian/patches/05_places-sidebar_single-click.patch:
- Dropped, merged upstream.
* debian/control.in:
+ Update Standards-Version to 3.8.0, no additional changes needed.
-- Sebastian Dröge <slomo@debian.org> Wed, 25 Jun 2008 08:42:25 +0200
nautilus (2.22.2-1) experimental; urgency=high
* New upstream bugfix release:
+ debian/patches/05_places-sidebar_single-click.patch:
- Updated to apply cleanly again.
-- Sebastian Dröge <slomo@debian.org> Tue, 08 Apr 2008 18:48:04 +0200
nautilus (2.22.1-1) experimental; urgency=low
* 05_places-sidebar_single-click.patch: Update from bugzilla and enable
again as it should work good now and is more consistent with the
GTK file chooser.
* New upstream bugfix release:
+ debian/patches/03_sftp_connect.patch,
debian/patches/04_show_backup_files.patch,
debian/patches/15_tracker_check.patch,
debian/patches/90_from_svn_mount_connect_to_server_locations.patch,
debian/patches/90_from_svn_fix_changing_default_application.patch:
- Dropped, emrged upstream.
-- Sebastian Dröge <slomo@debian.org> Fri, 28 Mar 2008 22:12:12 +0100
nautilus (2.22.0-3) experimental; urgency=low
* Disable 05_places-sidebar_single-click.patch as it's buggy.
* Remove 18_disable_signal_handler.patch, it's better fixed upstream.
* Remove 06_dont_create_Desktop.patch, --no-desktop is meant as a switch
to not show icons on the desktop and not creating the desktop directory
creates all kinds of broken links in nautilus.
* Remove 08_folder_handler.patch, this is upstream already.
* Disable 10_location_titlebar.patch, this gives completely unwanted results
for thrash:// for example or when the filesystem uses something else
than UTF8 as encoding (%XX stuff in the title).
See http://bugzilla.gnome.org/show_bug.cgi?id=142087
* 90_from_svn_mount_connect_to_server_locations.patch, Added. Mounts location
in the connect to server dialog. Patch taken from the Ubuntu package.
-- Sebastian Dröge <slomo@debian.org> Wed, 19 Mar 2008 16:22:08 +0100
nautilus (2.22.0-2) experimental; urgency=low
* Disable 07_desktop_file_activation.patch for now, it breaks in an
unintended way.
-- Sebastian Dröge <slomo@debian.org> Wed, 19 Mar 2008 11:10:42 +0100
nautilus (2.22.0-1) experimental; urgency=low
[ Sebastian Dröge ]
* New upstream stable release:
+ Upload to experimental first because of intrusive changes.
+ debian/control.in:
- Update build dependencies and dependencies.
+ debian/rules:
- Bump shlibs.
+ debian/patches/01_prompt_same_file.patch,
debian/patches/16_missing_thumbnails.patch,
debian/patches/20_upstream_nautilus-dnd-user-owned.patch,
debian/patches/21_nautilus_xmp.patch,
debian/patches/23_thumbnails_add-border.patch,
debian/patches/11_gnomevfs_query_eject.patch:
- Dropped, merged upstream.
+ debian/patches/06_dont_create_Desktop.patch:
- Updated to apply cleanly again.
+ debian/patches/07_desktop_file_activation.patch:
- Updated to apply cleanly again.
+ debian/patches/10_location_titlebar.patch:
- Updated to apply cleanly again.
+ debian/patches/14_sidebar_network-protocol.patch:
- Updated to apply cleanly again.
+ debian/patches/99_ltmain_as-needed.patch:
- Updated to apply cleanly again.
+ debian/patches/90_from_svn_fix_changing_default_application.patch:
- Make changing the default application work again, patch taken from
the Ubuntu package.
+ debian/patches/18_disable_signal_handler.patch:
- Don't use the logging code signal handler it's buggy and makes
nautilus being stuck and eat cpu on crash. Patch taken from the
Ubuntu package.
-- Sebastian Dröge <slomo@debian.org> Sun, 16 Mar 2008 20:30:48 +0100
nautilus (2.20.0-7) unstable; urgency=low
* 25_disable_sighandler.patch: patch from upstream SVN. Disable the
horrible signal handler that makes nautilus go wild while filling
its debug log. Closes: #454764, #494788.
* Don’t require libselinux on non-linux OSes. Closes: #494645.
-- Josselin Mouette <joss@debian.org> Tue, 16 Sep 2008 08:15:05 +0200
nautilus (2.20.0-6) unstable; urgency=low
* 24_smb_crash.patch: patch from upstream to handle NULL MIME types
set by the SMB module gracefully, avoiding a lot of crashes.
-- Josselin Mouette <joss@debian.org> Mon, 21 Jul 2008 17:09:01 +0200
nautilus (2.20.0-5) unstable; urgency=low
* 05_places-sidebar_single-click.patch: replaced by upstream version
of the patch, that does not activate items while right-clicking
them. Closes: #414960.
* 06_dont_create_Desktop.patch,
20_upstream_nautilus-dnd-user-owned.patch: make patches apply with
-p1. Closes: #484953.
* Recommend app-install-data and synaptic now that libeel doesn’t
anymore.
-- Josselin Mouette <joss@debian.org> Fri, 18 Jul 2008 13:27:27 +0200
nautilus (2.20.0-4) unstable; urgency=low
[ Loic Minier ]
* Add a nautilus-extensions-1.0 Provide to nautilus to express the fact that
nautilus will search for extensions in /usr/lib/nautilus/extensions-1.0;
this might avoid a long list of Conflicts in nautilus when updating to
extensions-2.0 (nautilus >= 2.21.2).
[ Josselin Mouette ]
* Demote fam to a Suggests; only g-d-e really needs to recommend it.
* 02_trash_location.patch: new patch. When unmounting a volume with a
non-empty trash, take into account that with the new location, the
directory to remove is the parent of the one returned by gnome-vfs.
-- Josselin Mouette <joss@debian.org> Wed, 28 May 2008 01:47:28 +0200
nautilus (2.20.0-3) unstable; urgency=low
[ Diego Escalante Urrelo ]
* New patch, 23_thumbnails_add-border.patch, restore the
thumbnail borders; (GNOME #478363). Closes: #456957.
[ Josselin Mouette ]
* Add missing references to all patches.
[ Sebastien Bacher ]
* New nautilus-connect-server manpage from Fernando Ribeiro (Ubuntu: #61299)
[ Josselin Mouette ]
* 16_missing_thumbnails.patch: stolen from upstream's SVN. Fixes
disappearing thumnails. Closes: #453525.
[ Julian Andres Klode ]
* debian/nautilus-connect-server.1: fix the manpage
* debian/nautilus-file-management-properties.1: add new manpage
* Upgrade to Policy 3.7.3
* Add VCS-Browser and VCS-Svn fields to debian/control
* Use the new Homepage field
-- Josselin Mouette <joss@debian.org> Sat, 12 Jan 2008 16:16:26 +0100
nautilus (2.20.0-2) unstable; urgency=high
[ Loic Minier ]
* Build-dep against libglib2.0-dev >= 2.14; fixes crashes when mixing the
internal copy of GSequence with the glib one; thanks Andre Klapper.
[ Sebastian Dröge ]
* debian/patches/21_nautilus_xmp.patch,
debian/control.in:
+ Build against exempi 1.99.5. Patch by Michael Biebl. (Closes: #450486)
-- Sebastian Dröge <slomo@debian.org> Thu, 22 Nov 2007 11:00:12 +0100
nautilus (2.20.0-1) unstable; urgency=low
* 15_tracker_check.patch: new patch, properly checks that tracker is
installed before using it. Closes: #439863.
* Suggest tracker.
* New upstream release.
* Update build dependencies.
* Pass --disable-update-mimedb to configure flags.
* Don't ship the XML file in nautilus, ugh.
* Call dh_installmime by hand for nautilus-data.
* Refresh patches.
* 05_places-sidebar_single-click.patch: updated to new version.
* 12_list-view_expand.patch: updated for 2.20; revert upstream commit
r13045.
* 13_thumbnail_size_pref.patch: removed, integrated upstream.
* 60_combobox-changed-signal.patch: removed, integrated upstream.
* Update menu file.
-- Josselin Mouette <joss@debian.org> Mon, 24 Sep 2007 12:34:46 +0200
nautilus (2.18.3-3) unstable; urgency=low
* New patch, 60_combobox-changed-signal, fix a crash with newer Gtk emitting
a changed signal; GNOME #459221; SVN r13002.
-- Loic Minier <lool@dooz.org> Tue, 24 Jul 2007 15:57:04 +0200
nautilus (2.18.3-2) unstable; urgency=low
* 14_sidebar_network-protocol.patch: fix systematic segfault.
Closes: #434123.
* Enable tracker support by build-depending on libtrackerclient-dev.
-- Josselin Mouette <joss@debian.org> Sun, 22 Jul 2007 15:17:31 +0200
nautilus (2.18.3-1) unstable; urgency=low
[ Josselin Mouette ]
* 12_list-view_expand.patch: update the minimum width to 20
characters.
* Update watch file.
* 13_thumbnail_size_pref.patch: stolen from upstream SVN. Introduces a
preference to define the thumbnail size (closes: #425400).
* 99_ltmain_as-needed.patch: make --as-needed work for the library
too.
[ Otavio Salvador ]
* 14_sidebar_network-protocol.patch: Adds the "Network Servers" option
on sidebar. Thanks to Luis Gustavo S. Barreto <gustavo@ossystems.com.br>
for the patch.
[ Guilherme de S. Pastore ]
* 15_japanese_typo.patch: fixes a typo in the Japanese translation. Thanks
to Kobayashi Noritada for reporting it. (Closes: #430679)
[ Josselin Mouette ]
* New upstream release.
* Refresh patches.
* 15_japanese_typo.patch: removed, integrated upstream.
-- Josselin Mouette <joss@debian.org> Wed, 18 Jul 2007 23:43:01 +0200
nautilus (2.18.1-3) unstable; urgency=low
[ Loic Minier ]
* Set LDFLAGS directly instead of via DEB_CONFIGURE_SCRIPT_ENV; build-dep on
cdbs >= 0.4.41.
* Prepend -z defs to LDFLAGS for additional safety.
* Wrap build-deps and deps.
[ Josselin Mouette ]
* 12_list-view_expand.patch: set a minimum width for the name column
to avoid opening a window with a too small name column. Partially
fixes #422563.
-- Josselin Mouette <joss@debian.org> Wed, 16 May 2007 00:21:01 +0200
nautilus (2.18.1-2) unstable; urgency=low
* 10_location_titlebar.patch: include gnome-vfs-utils.h
(closes: #421027).
* Refresh other patches.
* 12_list-view_expand.patch: make the filename column expandable
instead of setting the width by default. Reverts upstream commit
12779.
-- Josselin Mouette <joss@debian.org> Tue, 01 May 2007 16:16:22 +0200
nautilus (2.18.1-1) unstable; urgency=low
[ Josselin Mouette ]
* 10_location_titlebar.patch: patch from Adrien Delle Cave to display
the full location in the title bar when a setting is enabled
(closes: #413018).
* 01_prompt_same_file.patch: don't overwrite files when the source and
destination are strictly the same (closes: #419525).
[ Sebastian Dröge ]
* Upload to unstable, drop check-dist include.
* New upstream release:
+ Update build dependency on libgnome2-dev to >= 2.14.0 and add
x11proto-core-dev for the multimedia keys support.
+ Bump shlibs to 2.17.90.
+ Fix URL in the watch file.
+ Dropped 02_umask.patch,
09_connect_server_iter.patch, merged upstream.
+ Dropped 11_umount-progress-bar.patch, this is obsolete now that
gnome-volume-manager and gnome-vfs use gnome-mount, which displays
a notification bubble. See Gnome #313639.
+ Add icons to nautilus-data.install.
* 11_gnomevfs_query_eject.patch: Patch taken from Ubuntu. Use gnomevfs'
gnome_vfs_drive_needs_eject() function instead of just looking at the
drive type. This keeps umount/eject consistent and keeps it configurable
with the HAL policies.
* 20_upstream_nautilus-dnd-user-owned.patch: Patch taken from Ubuntu.
Use copy instead of move when using DND and the destination is owned by
someone else. See Gnome #339154.
* 10_location_titlebar.patch: Updated with the latest patch from
Gnome #142087.
-- Sebastian Dröge <slomo@debian.org> Tue, 24 Apr 2007 22:38:54 +0200
nautilus (2.16.3-5) experimental; urgency=low
* Bump up librsvg2-dev build-dep to >= 2.16.0-2 to make the package
autobuildable; add a librsvg2-common >= 2.16.0-2 build-dep since
desktop-base needs it, and librsvg2-dev doesn't pull it.
-- Loic Minier <lool@dooz.org> Tue, 13 Mar 2007 13:27:43 +0100
nautilus (2.16.3-4) experimental; urgency=low
* 08_folder_handler.patch: add OnlyShowIn=GNOME to
nautilus-folder-handler.desktop (closes: #396969).
* 07_desktop_file_activation.patch:
+ Compare numeric uids instead of using strcmp.
+ Fix the context menu of "link" desktop items.
* 09_connect_server_iter.patch: patch from Christian Neumair to
display only supported protocols in the "connect to" window
(closes: #375180).
-- Josselin Mouette <joss@debian.org> Sun, 25 Feb 2007 00:50:36 +0100
nautilus (2.16.3-3) experimental; urgency=low
[ Loic Minier ]
* Add a get-orig-source target to retrieve the upstream tarball.
* Add an epoch to the libgnomevfs2-dev build-dep and dep.
* Include the new check-dist Makefile to prevent accidental uploads to
unstable; bump build-dep on gnome-pkg-tools to >= 0.10.
[ Josselin Mouette ]
* 06_dont_create_Desktop.patch: patch from upstream bugzilla. Don't
create the Desktop directory when run with the --no-desktop option
(closes: #230757, #408896).
* 07_desktop_file_activation.patch:
+ Don't launch desktop files that aren't at safe places
(closes: #408556). This doesn't affect desktop files that are
merely links.
+ Don't launch those that don't end with .desktop (closes: #408948).
-- Josselin Mouette <joss@debian.org> Thu, 15 Feb 2007 17:23:51 +0100
nautilus (2.16.3-2) experimental; urgency=low
* 03_sftp_connect.patch: patch from Mike Hommey to add a "connect to
server" context menu item for sftp shares (closes: #375181).
* 04_show_backup_files.patch: patch from Stephen Cook to display
backup files together with hidden files (closes: #401583).
* Refresh 11_umount-progress-bar.patch.
* 05_places-sidebar_single-click.patch: patch from UHU Linux to use
single click in the "places" sidebar pane.
-- Josselin Mouette <joss@debian.org> Wed, 3 Jan 2007 00:31:00 +0100
nautilus (2.16.3-1) experimental; urgency=low
[ Loic Minier ]
* Ship /usr/share/mime/application in nautilus.
* Merge 2.14.3-2, 2.14.3-3, and 2.14.3-4; credit
10_nautilus-directory-cache-is-local in 2.14.3-4 appropriately.
* Fix watch file to use HTTP.
[ Josselin Mouette ]
* Merge 2.14.3-6.
* Switch to quilt for patch handling.
* 02_umask.patch: use the recommended method upstream, which should be
thread-safe.
* 10_nautilus-directory-cache-is-local.patch: removed, integrated
upstream.
* 11_umount-progress-bar.patch: refresh translations.
-- Josselin Mouette <joss@debian.org> Fri, 8 Dec 2006 22:29:03 +0100
nautilus (2.16.1-1) experimental; urgency=low
[ Josselin Mouette ]
* Brown paper bag update.
* 02_umask.patch: use and operator on not(umask), not the xor.
[ Loic Minier ]
* Bump the Depends on libgnomevfs2-dev >= 2.16.0-1 as well.
* Reorder build-deps to please pbuilder.
* Add missing build-deps on libgnomeui-dev (>= 2.6.0), libglib2.0-dev (>=
2.6.0), libgnome2-dev (>= 2.1.1), libpango1.0-dev (>= 1.1.2).
* Version the liborbit2-dev build-dep to >= 2.4.0.
* Bump the libgnomeui-dev build-dep to >= 2.16.0-2 for gtk+2.0 2.10.
* Bump the libbonobo2-dev build-dep to >= 2.15 for gnome-vfs2 >= 2.16.0-1.
* Add ${shlibs:Depends} to libnautilus-extension-dev.
* New upstream release; no API change.
-- Loic Minier <lool@dooz.org> Thu, 5 Oct 2006 17:04:18 +0200
nautilus (2.16.0-2) experimental; urgency=low
[ Marco Cabizza ]
* Bump libgnomevfs2-dev build-dep to 2.16.0-1 for selinux support.
[ Loic Minier ]
* Upload.
-- Loic Minier <lool@dooz.org> Sun, 24 Sep 2006 21:45:45 +0200
nautilus (2.16.0-1) experimental; urgency=low
* New upstream release.
* Update watch file.
* Remove requirements on libpopt and libgsf.
* Update build-dependencies appropriately.
* Remove many unneeded dependencies for libnautilus-extension-dev.
* Build-depend on docbook-utils and libselinux1-dev.
* Build-depend on gnome-pkg-tools 0.7 and use clean-la.mk.
* Also use gnome-version.mk and use ${gnome:Version}.
* Bump shlibs to 2.15.90.
-- Josselin Mouette <joss@debian.org> Tue, 12 Sep 2006 23:42:15 +0200
nautilus (2.14.3-6) unstable; urgency=medium
* Update patch 11_umount-progress-bar to fix an implicit pointer conversion
to int which would have likely caused crashes on 64-bits arches; thanks
Dann Frazier; closes: #400996.
-- Loic Minier <lool@dooz.org> Thu, 30 Nov 2006 13:45:04 +0100
nautilus (2.14.3-5) unstable; urgency=low
* New patch, 11_umount-progress-bar.patch, to display a progress bar when
umounting an USB stick (or other volumes); taken from the Ubuntu package as
well as the translations; thanks Sven Arvidsson; GNOME #313639;
closes: #396939, #398373.
-- Loic Minier <lool@dooz.org> Wed, 29 Nov 2006 15:33:06 +0100
nautilus (2.14.3-4) unstable; urgency=low
* New patch, 10_nautilus-directory-cache-is-local.patch, to cache the result
of islocal() on NautilusDirectory objects; this is called relatively often
and should speed up browsing of network shares; from upstream CVS; credits
to Alexander Larsson and Federico Mena Quintero.
-- Loic Minier <lool@dooz.org> Wed, 15 Nov 2006 17:08:56 +0100
nautilus (2.14.3-3) unstable; urgency=low
* Is there something like a double brown paper bag?
* 02_umask.patch: finally a correct expression, hopefully. Fixes
problem with file creation (closes: #390908).
-- Josselin Mouette <joss@debian.org> Wed, 4 Oct 2006 17:14:14 +0200
nautilus (2.14.3-2) unstable; urgency=low
* 02_umask.patch: use & operator on umask, not ^. Silly me.
-- Josselin Mouette <joss@debian.org> Mon, 2 Oct 2006 14:39:03 +0200
nautilus (2.14.3-1) unstable; urgency=low
* New upstream release.
* 02_umask.patch: honor umask when creating files (closes: #314796).
* 01_relibtoolise.patch: removed.
* Bump eel2 build-dependencies.
-- Josselin Mouette <joss@debian.org> Thu, 3 Aug 2006 21:41:00 +0200
nautilus (2.14.1-5) unstable; urgency=high
[ Josselin Mouette ]
* nautilus-data depends on ${misc:Depends} (RC bug fix).
[ Loic Minier ]
* Add a useless ${misc:Depends} to libnautilus-extension1, just in case.
-- Loic Minier <lool@dooz.org> Wed, 14 Jun 2006 11:00:59 +0200
nautilus (2.14.1-4) unstable; urgency=low
* nautilus-dbg replaces libnautilus-extension1-dbg (closes: #368304).
-- Josselin Mouette <joss@debian.org> Sun, 21 May 2006 20:53:43 +0200
nautilus (2.14.1-3) unstable; urgency=low
* The "tame the beast" release.
+ New maintainer.
* Remove dependency on broken gamin.
* Keep only fam as a Recommends:, nautilus now monitors correctly
local mounts even without it (closes: #353163).
* Standards version is 3.7.2.
* dirs: removed, useless.
* *.install: move architecture-independent data to nautilus-data
(closes: #314209).
+ Add a conflict with earlier versions.
* rules, nautilus-data.dirs: don't install the initial-desktop stuff,
it isn't used at all.
* nautilus-data.install: use it to install the icon.
* README.Debian: removed, useless.
* nautilus.postinst: removed, deprecated.
* Use ${binary:Version} (yes, that's cosmetic).
* Put all debugging information in nautilus-dbg.
+ Remove libnautilus-extension1-dbg entirely.
+ Use debhelper 5 and depend on it.
* Set priority of the debugging package to extra, to match the
override.
* libnautilus-extension-dev.install: there is no .a file.
-- Josselin Mouette <joss@debian.org> Thu, 18 May 2006 06:40:47 +0200
nautilus (2.14.1-2) unstable; urgency=low
[ Sebastien Bacher ]
* Upload
[ Josselin Mouette ]
* Make the package binNMU-safe.
+ Build-depend on dpkg-dev 1.13.19.
+ Use ${source:Version}.
[ Loic Minier ]
* Stop shipping /usr/lib/*.la files in libnautilus-extension-dev.
[debian/libnautilus-extension-dev.install]
* Build with a fixed CDBS (0.4.39-0.1 for #365085) which should restore the
correct libnautilus-extension1 shlib dep. (Closes: #365740)
-- Sebastien Bacher <seb128@debian.org> Sat, 13 May 2006 00:12:20 +0200
nautilus (2.14.1-1) unstable; urgency=low
* New upstream version
* debian/control.in:
- updated requirements on libeel and libgtk according to configure
* debian/patches/01_relibtoolise.patch:
- updated
-- Sebastien Bacher <seb128@debian.org> Sun, 30 Apr 2006 01:16:06 +0200
nautilus (2.14.0-1) unstable; urgency=low
* New upstream version
* debian/control.in:
- updated the requirements on gnome-vfs, eel
- updated cdbs requirement so dh_installmime is used
* debian/nautilus-data.install:
- install the "application/x-gnome-saved-search" mimetype definition
* debian/patches/01_relibtoolise.patch:
- updated
* debian/rules:
- updated the shlibs argument
* debian/watch:
- updated
[ Josselin Mouette ]
* Recommend librsvg2-common and libgnomevfs2-extra.
[ Loic Minier ]
* Depend on gamin | fam since gnome-vfs deps are not enough to ensure it's
there. (Closes: #353163)
[debian/control, debian/control.in]
-- Sebastien Bacher <seb128@debian.org> Sun, 9 Apr 2006 19:41:37 +0200
nautilus (2.12.2-3) unstable; urgency=low
* Simple rebuild to get rid of references to Xcursor.la and Xrender.la.
-- Loic Minier <lool@dooz.org> Mon, 24 Apr 2006 19:45:51 +0200
nautilus (2.12.2-2) unstable; urgency=low
* Upload to unstable.
-- Josselin Mouette <joss@debian.org> Sun, 8 Jan 2006 00:30:27 +0100
nautilus (2.12.2-1) experimental; urgency=low
[ Sjoerd Simons ]
* Up gnome-vfs2 build-depend to >= 2.12.0
[ Loic Minier ]
* New upstream release.
* Minor cleanups to debian/rules.
* Actually ship license information and distinguish between copyright and
license.
-- Loic Minier <lool@dooz.org> Mon, 12 Dec 2005 22:42:27 +0100
nautilus (2.12.1-1) experimental; urgency=low
* New upstream version.
* debian/control.in:
- updated the Build-Depends on the eel2 package.
* debian/patches/01_relibtoolise.patch:
- updated.
* debian/patches/07_places_bookmarks.patch,
debian/patches/08_desktopborder.patch:
- fixed with the new version.
* debian/watch:
- updated.
-- Sebastien Bacher <seb128@debian.org> Mon, 17 Oct 2005 16:00:40 +0200
nautilus (2.10.1-5) unstable; urgency=high
[ Josselin Mouette ]
* Depend on ${misc:Depends} (high urgency fix).
* Add --as-needed again.
[ Loic Minier ]
* Add CDBS' utils.
-- Loic Minier <lool@dooz.org> Fri, 14 Oct 2005 11:24:06 +0200
nautilus (2.10.1-4) unstable; urgency=medium
[ Sebastien Bacher <seb128@debian.org> ]
* debian/control.in:
- Build-Depends on the current exif (Closes: #321261).
* debian/rules:
- don't use "-as-needed", fix the current build issue (Closes: #320138).
[ Josselin Mouette <joss@debian.org> ]
* Don't recommend gnome-icon-theme, gnome-control-center already depends on
it.
* Updated Suggests, using evince | pdf-viewer instead of xpdf, and
totem | mp3-decoder instead of xmms (closes: #289252).
-- Sebastien Bacher <seb128@debian.org> Fri, 5 Aug 2005 13:12:57 +0200
nautilus (2.10.1-3) unstable; urgency=medium
* Pass --as-needed to ld.
* Remove most conflicts and replaces, they aren't useful anymore.
* Depend on gnome-control-center instead of capplets.
* Cosmetic fixes to the -dbg packages' description.
* Don't install the .so and .la for libnautilus-private.
* Standards-version is 3.6.2.
* copyright: correctly reference the authors and the GPL.
-- Josselin Mouette <joss@debian.org> Sat, 25 Jun 2005 18:03:04 +0200
nautilus (2.10.1-2) unstable; urgency=low
* Upload to unstable.
-- Sebastien Bacher <seb128@debian.org> Fri, 10 Jun 2005 15:26:25 +0200
nautilus (2.10.1-1) experimental; urgency=low
* Changes by Sébastien Bacher:
* New upstream version.
* debian/patches/09_connect-server-auth-fix.patch:
- fixed upstream.
* Changes by Josselin Mouette:
* Conflict with libnautilus2-dev.
-- Sebastien Bacher <seb128@debian.org> Mon, 9 May 2005 15:57:18 +0200
nautilus (2.10.0-1) experimental; urgency=low
* New upstream release:
- better handling of DnD from web browsers (Closes: #269490).
- fix the icon layout on ia64 (Closes: #286039).
* debian/control.in:
- create a debug package.
- don't Build-Conflicts on libcdparanoia0-dev
- renamed libnautilus2-2 to libnautilus-extension1 to reflect the upstream
changes.
- updated the Build-Depends.
* debian/patches/01_relibtoolise.patch:
- updated.
* debian/patches/02_build_exif.patch:
- fixed upstream.
* debian/patches/07_places_bookmarks.patch:
- patch to add the GTK bookmarks to the places menu.
* debian/patches/08_desktopborder.patch:
- don't display a border around the desktop.
* debian/patches/09_connect-server-auth-fix.patch:
- don't display a warning when creating a share.
* debian/rules:
- updated the configure options.
- updated the shlibs.
* debian/watch:
- updated.
-- Sebastien Bacher <seb128@debian.org> Fri, 8 Apr 2005 16:46:55 +0200
nautilus (2.8.2-2) unstable; urgency=medium
* debian/nautilus.postrm:
- test if the directories are here before trying to remove them
(Closes: #283450).
-- Sebastien Bacher <seb128@debian.org> Wed, 24 Nov 2004 16:09:08 +0100
nautilus (2.8.2-1) unstable; urgency=low
* New upstream release.
* Upload to unstable.
* debian/patches/01_relibtoolise.patch:
- updated.
* debian/rules:
- updated the Build-Depends.
-- Sebastien Bacher <seb128@debian.org> Thu, 18 Nov 2004 19:35:45 +0100
nautilus (2.8.1-1) experimental; urgency=low
* New upstream release.
* debian/patches/01_relibtoolise.patch:
- updated.
-- Sebastien Bacher <seb128@debian.org> Tue, 12 Oct 2004 00:16:22 +0200
nautilus (2.8.0-1) experimental; urgency=low
* New upstream release.
* debian/control.in:
- updated the Build-Depends on libeel2-dev to 2.8.0.
* debian/patches/01_relibtoolise.patch:
- updated.
-- Sebastien Bacher <seb128@debian.org> Tue, 14 Sep 2004 21:38:18 +0200
nautilus (2.7.4-1) experimental; urgency=low
* GNOME Team Upload.
* New upstream development release.
- now uses the freedesktop.org MIME specification.
* Switched to CDBS.
* debian/control.in:
- nautilus depends on desktop-file-utils (>= 0.7).
- updated the Build-Depends on libeel2-dev to 2.7.4.
* debian/patches/01_relibtoolise.patch:
- updated.
* debian/patches/03_desktop-launchers.patch:
- removed since included in the new upstream release.
* debian/patches/04_mime_warning.patch:
- removed, obsolete.
* debian/control.in:
- Build-Depends on cdbs instead of dbs.
- updated the Build-Depends on librsvg2 to 2.7
* debian/*.files:
- replaced by *.install files.
* debian/rules:
- switched to CDBS.
* This update is based on Canonical's patch as found in
http://no-name-yet.com/patches/gnome2.7/nautilus271to272.patch
(closes: #265304).
-- Jordi Mallach <jordi@debian.org> Tue, 17 Aug 2004 11:22:55 +0200
nautilus (2.7.1-2) experimental; urgency=low
* GNOME Team Upload.
* debian/patches/02_build_exif.patch:
- updated to fix the crash on file properties for images with exif datas.
-- Sebastien Bacher <seb128@debian.org> Wed, 30 Jun 2004 15:07:49 +0200
nautilus (2.7.1-1) experimental; urgency=low
* GNOME Team Upload.
* New (development) upstream release.
* debian/patches/01_relibtoolise.patch:
- updated.
* debian/patches/02_show-mounts.patch:
- removed since the changes are in the new version.
* debian/patches/02_build_exif.patch:
- patch to fix the build with the new libexif.
-- Sebastien Bacher <seb128@debian.org> Wed, 23 Jun 2004 18:41:33 +0200
nautilus (2.6.3-2) unstable; urgency=high
* GNOME Team Upload.
* debian/control.in:
- conflicts with capplets (<< 2.6).
-- Sebastien Bacher <seb128@debian.org> Fri, 18 Jun 2004 02:17:21 +0200
nautilus (2.6.3-1) unstable; urgency=low
* GNOME Team Upload.
* New upstream release
- fix zoom and desktop problems (Closes: #253135, #253653).
- fix the problem with desktop icons marqued as read-only
(Closes: #249792, #251848).
* debian/control.in:
- recommands nautilus-cd-burner (Closes: #249503).
* debian/patches/01_relibtoolise.patch:
+ updated.
* debian/patches/02_show-mounts.patch:
- patch from the CVS to allow to not show volumes on desktop
(gconf key to use: /apps/nautilus/desktop/volumes_visible).
(Closes: #253529).
* debian/patches/03_desktop-launchers.patch:
- patch from the CVS to allow to edit the launcher on the desktop again.
-- Sebastien Bacher <seb128@debian.org> Wed, 16 Jun 2004 23:18:15 +0200
nautilus (2.6.2-1) unstable; urgency=low
* Gnome Team Upload.
* New Upstream Release.
* debian/control.in:
+ removed recommends on nautilus-gtkhtml (Closes: #252449).
* debian/patches/01_relibtoolise.patch:
+ updated.
-- Sebastien Bacher <seb128@debian.org> Sat, 5 Jun 2004 13:11:31 +0200
nautilus (2.6.1-3) unstable; urgency=low
* debian/control.in:
+ updated Build-Depends (Closes: #251388).
-- Sebastien Bacher <seb128@debian.org> Fri, 28 May 2004 22:02:14 +0200
nautilus (2.6.1-2) unstable; urgency=low
* GNOME Team Upload.
* Upload in unstable.
* debian/nautilus.1:
+ updated by Dafydd Harries <daf@muse.19inch.net>.
-- Sebastien Bacher <seb128@debian.org> Wed, 26 May 2004 17:43:42 +0200
nautilus (2.6.1-1) experimental; urgency=low
* New upstream release.
* GNOME Team Upload.
* debian/patches/01_relibtoolise.patch:
+ updated.
-- Sebastien Bacher <seb128@debian.org> Wed, 26 May 2004 17:43:40 +0200
nautilus (2.6.0-2) experimental; urgency=low
* [debian/patches/01_relibtoolise.patch] New. Updated libtoolisation to cut
down on library dependencies.
-- J.H.M. Dassen (Ray) <jdassen@debian.org> Mon, 12 Apr 2004 21:01:55 +0200
nautilus (2.6.0-1) experimental; urgency=low
* New upstream release:
+ Fix crash when trying to access non-existing vfs-url (Closes: #222957).
+ Fix file selection by typing name in column mode (Closes: #237066).
+ Fix drag and drop between menu and desktop (Closes: #237414).
+ Should fix background management (Closes: #217859, #230348).
* debian/control.in, debian/rules:
+ Adapted for the Gnome Team.
+ libnautilus2-2 conflitcs with nautilus (<< 2.6.0) (Closes: #200433).
+ Depends on shared-mime-info.
+ Removed gnome-vfs-extra2 Recommends.
* debian/nautilus.1:
+ Updated references (Closes: #226677).
* debian/patches/nautilus-2.4.1-gnu_pathmax.patch:
+ Removed since not needed by new version.
-- Sebastien Bacher <seb128@debian.org> Sat, 27 Mar 2004 14:36:53 +0100
nautilus (2.4.2-2) unstable; urgency=low
* [debian/control.in] Added Build-Depends: libxml-parser-perl, needed for
recent intltool.
-- J.H.M. Dassen (Ray) <jdassen@debian.org> Thu, 5 Feb 2004 21:50:27 +0100
nautilus (2.4.2-1) unstable; urgency=low
* New upstream release.
-- Sebastien Bacher <seb128@debian.org> Tue, 3 Feb 2004 21:40:02 +0100
nautilus (2.4.1-3) unstable; urgency=low
* debian/control :
- Recommends eject (Closes: #171081).
- Removed nautilus-mozilla from Suggests since the package is not in
the archive (Closes: #180805).
- Updated Build-Depends.
- Updated descriptions (Closes: #172928, #206509, #210070).
* debian/nautilus.postrm
- Removed empty dir in /etc (Closes: #206508).
* debian/rules :
- Removed autogen.sh call to fix the -pthread problem.
- Removed --disable-mozilla-component option, since nautilus 2.4 doesn't
use it.
-- Sebastien Bacher <seb128@debian.org> Sun, 26 Oct 2003 15:22:19 +0100
nautilus (2.4.1-2) unstable; urgency=low
* Register the schema file, that fix the problem with missing options
(Closes: #184865, #197810, #212279).
-- Sebastien Bacher <seb128@debian.org> Wed, 22 Oct 2003 19:02:36 +0200
nautilus (2.4.1-1) unstable; urgency=low
* New upstream release.
* Updated Build-Depends.
* Removed Conflicts on libeel2.
* debian/patches:
- fix-ld: removed
- nautilus-2.1.5-cdburn.patch: removed
- nautilus-2.4.1-gnu_pathmax.patch: updated
- orbit28.patch: removed
-- Sebastien Bacher <seb128@debian.org> Sun, 19 Oct 2003 17:42:49 +0200
nautilus (2.2.4-5) unstable; urgency=low
* Added a patch to fix a bug with orbit2.8.
* Gnome Team Upload.
-- Sebastien Bacher <seb128@debian.org> Thu, 16 Oct 2003 21:15:10 +0200
nautilus (2.2.4-4.1) unstable; urgency=medium
* Non-Maintainer Upload, to try to finally get GNOME 2.2 entirely in Sarge.
* debian/control.in: make libnautilus2-dev depend on libgnome-desktop-dev
(closes: #209089).
-- Jordi Mallach <jordi@debian.org> Sun, 28 Sep 2003 18:59:15 +0200
nautilus (2.2.4-4) unstable; urgency=low
* remove cdda support, I've heard that is totally broken.
Build-Conflicts: libcdparanoia0-dev
* -dev: Depends on librsvg2-dev (closes: #208674)
-- Takuo KITAME <kitame@debian.org> Mon, 8 Sep 2003 11:40:58 +0900
nautilus (2.2.4-3) unstable; urgency=low
* Fix build dependency (closes: Bug#208713)
* -dev: depends on libcdparanoia0-dev (closes: Bug#208713)
-- Takuo KITAME <kitame@debian.org> Fri, 5 Sep 2003 02:43:25 +0900
nautilus (2.2.4-2) unstable; urgency=low
* Fix #187364: libnautilus2-2: libraries not correctly linked (closes: #187364)
* -dev: conflicts: libnautilus1.0-dev (closes: #172230)
-- Takuo KITAME <kitame@debian.org> Wed, 3 Sep 2003 16:40:41 +0900
nautilus (2.2.4-1) unstable; urgency=low
* New upstream release
* Fix build-depends (closes: #188888)
* Fix build problem on GNU/Hurd (closes: #190369)
* Fix dependency to eel (closes: #189255)
* Recommends gnome-vfs-extras2 (closes: #194491)
* Fix Debian menu icon (closes: #192630)
* Suggests pdf-viewer instead of xpdf (closes: #197202)
-- Takuo KITAME <kitame@debian.org> Fri, 13 Jun 2003 14:54:56 +0900
nautilus (2.2.3.1-1) unstable; urgency=low
* New upstream release
-- Takuo KITAME <kitame@debian.org> Wed, 23 Apr 2003 15:51:03 +0900
nautilus (2.2.3-1) unstable; urgency=low
* New upstream release
* Applied nautilus-cd-burner patch
-- Takuo KITAME <kitame@debian.org> Thu, 10 Apr 2003 11:35:38 +0900
nautilus (2.2.2-1) unstable; urgency=low
* New upstream release
-- Takuo KITAME <kitame@debian.org> Fri, 14 Mar 2003 16:34:45 +0900
nautilus (2.2.1-1) unstable; urgency=low
* New upstream release
-- Takuo KITAME <kitame@debian.org> Thu, 13 Feb 2003 01:58:08 +0900
nautilus (2.2.0.2-1) unstable; urgency=low
* New upstream release
-- Takuo KITAME <kitame@debian.org> Fri, 31 Jan 2003 11:06:34 +0900
nautilus (2.2.0.1-1) unstable; urgency=low
* New upstream release
-- Takuo KITAME <kitame@debian.org> Fri, 24 Jan 2003 16:25:11 +0900
nautilus (2.2.0-2) unstable; urgency=low
* fix miss packaging. tarball should be orig.tar.gz
-- Takuo KITAME <kitame@debian.org> Thu, 23 Jan 2003 23:38:27 +0900
nautilus (2.2.0-1) unstable; urgency=low
* New upstream release
-- Takuo KITAME <kitame@debian.org> Thu, 23 Jan 2003 18:52:42 +0900
nautilus (2.1.91-1) unstable; urgency=low
* New upstream release
* Rebuild against latest libraries (closes: #177485, #177415, #177326, #177325)
-- Takuo KITAME <kitame@debian.org> Mon, 20 Jan 2003 11:14:49 +0900
nautilus (2.0.8-1) unstable; urgency=low
* New upstream release
* applied patch to use desktop-base (closes: #166423)
* Fix menu entry (closes: #170572, #161798)
-- Takuo KITAME <kitame@debian.org> Sat, 30 Nov 2002 13:07:38 +0900
nautilus (2.0.7-5) unstable; urgency=low
* Update config.{guess,sub} (closes: #168651)
* Sugguests: eog not eog2
-- Takuo KITAME <kitame@debian.org> Fri, 15 Nov 2002 15:26:15 +0900
nautilus (2.0.7-4) unstable; urgency=low
* upload into unstable/main
-- Takuo KITAME <kitame@debian.org> Wed, 13 Nov 2002 09:49:33 +0900
nautilus (2.0.7-3) experimental; urgency=low
* Change package name to nautilus
-- Takuo KITAME <kitame@debian.org> Fri, 8 Nov 2002 16:09:34 +0900
nautilus2 (2.0.7-2) unstable; urgency=low
* Replaces: nautilus (closes: #166074)
-- Takuo KITAME <kitame@debian.org> Tue, 5 Nov 2002 16:31:22 +0900
nautilus2 (2.0.7-1) unstable; urgency=low
* New upstream release
-- Takuo KITAME <kitame@northeye.org> Wed, 18 Sep 2002 15:23:25 +0900
nautilus2 (2.0.6-1) unstable; urgency=low
* New upstream release
-- Takuo KITAME <kitame@northeye.org> Thu, 5 Sep 2002 14:16:42 +0900
nautilus2 (2.0.4-3) unstable; urgency=low
* rebuild against gconf 1.2.1-3
-- Takuo KITAME <kitame@northeye.org> Mon, 26 Aug 2002 16:01:26 +0900
nautilus2 (2.0.4-2) unstable; urgency=low
* rebuild against gconf 1.2.1-2
-- Takuo KITAME <kitame@northeye.org> Mon, 19 Aug 2002 14:45:22 +0900
nautilus2 (2.0.4-1) unstable; urgency=low
* New upsream release
-- Takuo KITAME <kitame@northeye.org> Fri, 16 Aug 2002 17:12:26 +0900
nautilus2 (2.0.3-1) unstable; urgency=low
* New upsream release
* don't compile with openssl (closes: #155614)
-- Takuo KITAME <kitame@northeye.org> Thu, 8 Aug 2002 10:50:23 +0900
nautilus2 (2.0.2-1) unstable; urgency=low
* New upsream release (closes: #154606)
* Fix description (closes: #152290)
-- Takuo KITAME <kitame@northeye.org> Mon, 5 Aug 2002 18:47:17 +0900
nautilus2 (2.0.0-3) unstable; urgency=low
* Upload to unstable/main
* nautilus2-data conflicts with nautilus 1.0
-- Takuo KITAME <kitame@northeye.org> Wed, 3 Jul 2002 12:00:40 +0900
nautilus2 (2.0.0-2) experimental; urgency=low
* build against librsvg2-2
-- Takuo KITAME <kitame@northeye.org> Fri, 28 Jun 2002 14:14:11 +0900
nautilus2 (2.0.0-1) experimental; urgency=low
* New upstream release
* change package name to nautilus2
-- Takuo KITAME <kitame@northeye.org> Thu, 13 Jun 2002 03:21:57 +0900
nautilus1.1 (1.1.19-1) experimental; urgency=low
* New upstream release
-- Takuo KITAME <kitame@northeye.org> Wed, 5 Jun 2002 11:35:23 +0900
nautilus1.1 (1.1.18-1) experimental; urgency=low
* New upstream release
-- Takuo KITAME <kitame@northeye.org> Tue, 28 May 2002 15:55:22 +0900
nautilus1.1 (1.1.17-2) experimental; urgency=low
* separate arch independent files into nautilus1.1-data
-- Takuo KITAME <kitame@northeye.org> Tue, 21 May 2002 14:26:45 +0900
nautilus1.1 (1.1.17-1) experimental; urgency=low
* New upstream release
-- Takuo KITAME <kitame@northeye.org> Tue, 21 May 2002 13:21:26 +0900
nautilus1.1 (1.1.16-1) experimental; urgency=low
* New upstream release
* some executable binaries in /usr/lib/nautilus
* remove nautilus1.1-{suggested,extra} package.
-- Takuo KITAME <kitame@northeye.org> Tue, 14 May 2002 10:30:51 +0900
nautilus1.1 (1.1.15-1) experimental; urgency=low
* New upstream release
-- Takuo KITAME <kitame@northeye.org> Tue, 7 May 2002 14:30:16 +0900
nautilus1.1 (1.1.14-1) experimental; urgency=low
* New upstream release
* fix menu and upstream infomation (closes: #144018,#144016)
-- Takuo KITAME <kitame@northeye.org> Mon, 29 Apr 2002 23:48:00 +0900
nautilus1.1 (1.1.13-1) experimental; urgency=low
* New upstream release
* use dbs
-- Takuo KITAME <kitame@northeye.org> Mon, 22 Apr 2002 20:22:44 +0900
nautilus1.1 (1.1.12-1) experimental; urgency=low
* New upstream release
-- Takuo KITAME <kitame@northeye.org> Sat, 20 Apr 2002 01:23:25 +0900
nautilus1.1 (1.1.11-1) experimental; urgency=low
* New upstream release
-- Takuo KITAME <kitame@northeye.org> Tue, 26 Mar 2002 10:09:56 +0900
nautilus1.1 (1.1.9-1) experimental; urgency=low
* New upstream release
-- Takuo KITAME <kitame@northeye.org> Mon, 11 Mar 2002 16:12:28 +0900
nautilus1.1 (1.1.8-2) experimental; urgency=low
* bump package name libnautilus1.1-0 to -2
-- Takuo KITAME <kitame@northeye.org> Fri, 8 Mar 2002 14:55:21 +0900
nautilus1.1 (1.1.8-1) experimental; urgency=low
* New upstream release
-- Takuo KITAME <kitame@northeye.org> Thu, 7 Mar 2002 11:29:37 +0900
nautilus1.1 (1.1.6-1) experimental; urgency=low
* New upstream release
-- Takuo KITAME <kitame@northeye.org> Thu, 28 Feb 2002 11:42:15 +0900
nautilus1.1 (1.1.5-2) experimental; urgency=low
* build against gtk+ 1.3.14 and libgnome* 1.112.0
-- Takuo KITAME <kitame@northeye.org> Sat, 23 Feb 2002 03:55:40 +0900
nautilus1.1 (1.1.5-1) experimental; urgency=low
* New upstream release
* update build-depends
-- Takuo KITAME <kitame@northeye.org> Sun, 17 Feb 2002 14:40:17 +0900
nautilus1.1 (1.1.4-1) experimental; urgency=low
* New upstream release
-- Takuo KITAME <kitame@northeye.org> Wed, 6 Feb 2002 03:01:38 +0900
nautilus1.1 (1.1.3-1) experimental; urgency=low
* New upstream release
-- Takuo KITAME <kitame@northeye.org> Mon, 4 Feb 2002 00:42:38 +0900
nautilus1.1 (1.1.2-2) experimental; urgency=low
* Build against latest libatk9
-- Takuo KITAME <kitame@northeye.org> Thu, 24 Jan 2002 21:32:33 +0900
nautilus1.1 (1.1.2-1) experimental; urgency=low
* New upstream release, GNOME2 version.
* upload to experimental
-- Takuo KITAME <kitame@northeye.org> Mon, 21 Jan 2002 17:57:33 +0000
nautilus (1.0.6-2) unstable; urgency=low
* debian/rules:
- --enable-fam (closes: #116712)
* debian/control:
- added libfam-dev into build-depends
* remove gnome-*2html2 files (closes: #128083)
-- Takuo KITAME <kitame@northeye.org> Tue, 8 Jan 2002 02:19:45 +0900
nautilus (1.0.6-1) unstable; urgency=low
* New upstream release
-- Takuo KITAME <kitame@northeye.org> Fri, 9 Nov 2001 04:18:33 +0000
nautilus (1.0.5-2) unstable; urgency=low
* Fix and install overrides for lintian errors (closes: #116941)
* Changed debian menu category tools to system. (closes: #116370)
-- Takuo KITAME <kitame@northeye.org> Sat, 27 Oct 2001 04:10:54 +0900
nautilus (1.0.5-1) unstable; urgency=low
* New upstream release
* Build-Depends: libcdparanoia0-dev (closes: #106350)
-- Takuo KITAME <kitame@northeye.org> Sat, 20 Oct 2001 17:34:38 +0900
nautilus (1.0.4-1) unstable; urgency=low
* New upstream release
* closes again (closes: Bug#101387, Bug#102662, Bug#96610)
-- Takuo KITAME <kitame@northeye.org> Sat, 7 Jul 2001 22:07:43 +0900
nautilus (1.0.3.2cvs-1) unstable; urgency=low
* New upstream release
* cvs update -r NAUTILUS_1_0_4 (1.0.3.2)
* closes: Bug#101387, Bug#102662
* closes: Bug#96610 It's not software bug.
-- Takuo KITAME <kitame@northeye.org> Wed, 4 Jul 2001 11:12:05 +0900
nautilus (1.0.3-4) unstable; urgency=low
* Fixed build-dependency (closes: Bug#99765)
* added depends libbonobo-dev for libnautilus-dev (closes: Bug#99654)
-- Takuo KITAME <kitame@northeye.org> Sun, 17 Jun 2001 21:53:02 +0900
nautilus (1.0.3-3) unstable; urgency=low
* Fixed build-depends: (closes: Bug#98706, Bug#98846)
-- Takuo KITAME <kitame@northeye.org> Sun, 27 May 2001 15:14:26 +0900
nautilus (1.0.3-2) unstable; urgency=low
* rebuid with libeel0 which is still in Incoming.
* remove libammonite-dev, librpm0-dev for Build-Depends
* also librsvg-dev, libfreetype6-dev. (libeel-dev follows it)
-- Takuo KITAME <kitame@northeye.org> Thu, 10 May 2001 21:49:18 +0900
nautilus (1.0-4) unstable; urgency=low
* debian/control.in: Really nautilus-suggested move to contrib.
nautilus-suggested: Really Depends: nautilus-trilobite (>= 1.0-2)
* fix wrong symlink name /usr/share/man/man1/nautilus-verify-rpm.sh (closes: Bug#93579)
-- Takuo KITAME <kitame@northeye.org> Wed, 11 Apr 2001 10:53:01 +0900
nautilus (1.0-3) unstable; urgency=low
* nautilus-suggested: move to contrib, Depends: nautilus-trilobite (>= 1.0-2)
* --disable-mozilla-component instead of --disable-mozilla
-- Takuo KITAME <kitame@northeye.org> Tue, 10 Apr 2001 14:52:43 +0900
nautilus (1.0-2) unstable; urgency=low
* remove dependency to non-US package.
* nautilus-trilobite/mozilla: goes to it's own package and moved to non-US.
* --disable-mozilla. Sorry, remove mozilla support. We have not mozilla-0.8 in archive. (closes: Bug#92274)
* --disable-eazel-service, non-US part was moved to it's own package 'nautilus-nonus'
* Install nautilus-verify-rpm.sh (closes: Bug#90087)
* Build with -DDEBIAN (closes: Bug#84810)
* includes libvfs-help.so (closes: Bug#92766)
* Notice to FTP maintainer,
Please remove nautilus-trilobite, nautilus-mozilla from main archive.
and move nautilus-suggested to contrib/x11.
-- Takuo KITAME <kitame@northeye.org> Thu, 5 Apr 2001 14:05:56 +0900
nautilus (1.0-1) unstable; urgency=low
* New upstream release
* nautilus-extra: depends xpdf | xpdf-i (closes: Bug#84958)
* libnautilus-extention/nautilus-gnome-extensions.c: applied debian x-terminal-emurator patch (closes: Bug#84810)
* Fix "Tree view doesn't work in Nautilus" (closes: Bug#89087)
* upsteam fixed
closes: Bug#87069 xmms doesn't accept DND mp3 files from nautilus
closes: Bug#86422 nautilus: Font handling bug
closes: Bug#86452 nautilus: Nautilus doesn't choose correct fonts
* holefully fixed
closes: Bug#89372: Nautilus doesn't show up
-- Takuo KITAME <kitame@northeye.org> Wed, 14 Mar 2001 13:56:00 +0900
nautilus (0.8.2-1) unstable; urgency=low
* New upstream release (not released, but cvs update -r NAUTILUS_0_8_2)
* Fix manpage install (closes: Bug#87394, Bug#87958)
-- Takuo KITAME <kitame@northeye.org> Sat, 3 Mar 2001 00:41:31 +0900
nautilus (0.8-2) unstable; urgency=low
* libnautilus0 has versioned shlibs. (closes: Bug#84858)
* nautilus-mozilla depends on mozilla (>= 1:0.7)
* fixed freetype build dependency, --with-freetype2-include2=/usr/include/freetype2 (closes: Bug#85246)
* added manpages, removed all undocumented (closes: Bug#84807)
* Rebuild with Bonobo 0.36-2 and versioned depends. (close: Bug#84951, Bug#86562, )
-- Takuo KITAME <kitame@northeye.org> Mon, 19 Feb 2001 22:43:46 +0900
nautilus (0.8-1) unstable; urgency=low
* New upstream release (closes: Bug#84191)
* some bugs was hopefully fixed by upstream.
closes: Bug#79174, Bug#79110, Bug#79340, Bug#79940, Bug#80741, Bug#79057, Bug#79207, Bug#79248, Bug#79448, Bug#82752
* Recommends -> Suggests ammonite (closes: Bug#80799)
* Build-Depends: rpm (closes: Bug#84302)
* separated component packages(like nautilus.spec) -mozilla, -trilobite, -extra and nautilus-suggested.
-- Takuo KITAME <kitame@northeye.org> Fri, 2 Feb 2001 11:13:00 +0900
nautilus (0.5-3) unstable; urgency=low
* --enable-eazel-services=1, Recommends: ammonite (closes: Bug#79345)
* Added Build-Dpends (closes: Bug#79377)
-- Takuo KITAME <kitame@northeye.org> Wed, 27 Dec 2000 12:30:24 +0900
nautilus (0.5-2.1) unstable; urgency=low
* Initial upload.
* Build with Debian's libfreetype6, libfreetype2-dev.
* Modifies for Bonobo 0.28
-- Takuo KITAME <kitame@northeye.org> Tue, 28 Nov 2000 01:37:10 +0900
nautilus (0.5-2) unstable; urgency=low
* --enable-mozilla-component
-- Takuo KITAME <kitame@northeye.org> Wed, 8 Nov 2000 12:57:18 +0900
nautilus (0.5-1) unstable; urgency=low
* New upstream release
-- Takuo KITAME <kitame@northeye.org> Wed, 8 Nov 2000 10:38:37 +0900
nautilus (0.1.0-1) experimental; urgency=low
* Initial Release.
-- Takuo KITAME <kitame@northeye.org> Thu, 17 Aug 2000 12:51:38 +0900
|