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
|
libunity (7.1.4+19.04.20190319-5) unstable; urgency=medium
* debian/control:
- fix typo in the Conflicts keyword
* extras,src/Makefile.am:
- set --shared-library valac option so the generated gir which is
needed for the correct depends to be created
* remove debian/patches which isn't use by the current packaging, it
was an indication of the changes applied to the source but those are
commited directly to the vcs now
-- Sebastien Bacher <seb128@ubuntu.com> Mon, 01 Feb 2021 18:01:36 +0100
libunity (7.1.4+19.04.20190319-3) unstable; urgency=medium
* debian/control:
- Fix typo: s/scoped/scopes/, thanks Hans Joachim Desserud
(LP: #1268210)
* debian/patches/gir_build_fixes.patch
debian/patches/new_valac_build.patch:
- build fixes for gir and new valac, thanks ricotz! (Closes: #966967)
* debian/control, debian/gir-unity.install, debian/rules:
- rename the binary to use the correct version (CLoses: #971261)
-- Sebastien Bacher <seb128@ubuntu.com> Tue, 26 Jan 2021 16:51:30 +0100
libunity (7.1.4+19.04.20190319-2) unstable; urgency=medium
* debian/control:
- Build-Depends on xauth
-- Sebastien Bacher <seb128@ubuntu.com> Thu, 16 Jul 2020 12:30:25 +0200
libunity (7.1.4+19.04.20190319-1) unstable; urgency=medium
* Upload the Ubuntu package to Debian, it's an optional depends for some
softwares (evolution by example) and enable dash integration under
GNOME using dash-to-dock
-- Sebastien Bacher <seb128@ubuntu.com> Mon, 15 Jun 2020 22:48:29 +0200
libunity (7.1.4+19.04.20190319-0ubuntu3) focal; urgency=medium
* Don't use the unversioned python package/binary
-- Sebastien Bacher <seb128@ubuntu.com> Thu, 23 Jan 2020 16:30:01 +0200
libunity (7.1.4+19.04.20190319-0ubuntu2) focal; urgency=medium
[ Rico Tzschichholz ]
* src: contructors of abstract class must not be defined as public,
fixes the build with the newer vala versions
-- Sebastien Bacher <seb128@ubuntu.com> Thu, 23 Jan 2020 16:18:09 +0200
libunity (7.1.4+19.04.20190319-0ubuntu1) disco; urgency=medium
[ Khurshid Alam ]
* Fix diffmodel tests against glib 2.59.3
[ Rico Tzschichholz ]
* Those changes are required to build with vala 0.43.x
[ Robert Ancell ]
* Update deprecated tag to recent format
-- iain@orangesquash.org.uk <iain@orangesquash.org.uk> Tue, 19 Mar 2019 10:18:44 +0000
libunity (7.1.4+18.04.20180209.1-0ubuntu3) disco; urgency=medium
[ Khurshid Alam ]
* Remove deprecated scopes. Fixes LP: #1808671
* Use gnote scope instead of tomboy. See LP: #1810729
-- Sebastien Bacher <seb128@ubuntu.com> Fri, 01 Mar 2019 17:48:30 +0100
libunity (7.1.4+18.04.20180209.1-0ubuntu2) bionic; urgency=medium
* Build-depend on dh-python.
-- Matthias Klose <doko@ubuntu.com> Wed, 11 Apr 2018 22:19:25 +0200
libunity (7.1.4+18.04.20180209.1-0ubuntu1) bionic; urgency=medium
* launcher: fix a typo, don't double-check for same var validity
-- Marco Trevisan (Treviño) <mail@3v1n0.net> Fri, 09 Feb 2018 14:34:35 +0000
libunity (7.1.4+18.04.20180207.2-0ubuntu1) bionic; urgency=medium
* UnityLauncher: Prepend snap namespace to desktop file or desktop-id
(LP: #1737835, #1747814)
-- Marco Trevisan (Treviño) <mail@3v1n0.net> Wed, 07 Feb 2018 12:31:27 +0000
libunity (7.1.4+17.10.20170605-0ubuntu1) artful; urgency=medium
* Drop obsolete unity-scope-gdrive from client-scopes
-- Jeremy Bicha <jbicha@ubuntu.com> Mon, 05 Jun 2017 17:33:46 +0000
libunity (7.1.4+16.10.20160516-0ubuntu1) yakkety; urgency=medium
[ Andrea Azzarone ]
* Process GFileMonitors signals with a small timeout. (LP: #1506744)
-- Marco Trevisan (Treviño) <mail@3v1n0.net> Mon, 16 May 2016 23:32:22 +0000
libunity (7.1.4+15.10.20151002-0ubuntu2) xenial; urgency=medium
* Set dash online search option to off by default (LP: #1521208)
* Remove from default desktop set for recommends:
- unity-scope-musicstores
- unity-scope-audacious
- unity-scope-clementine
- unity-scope-gmusicbrowser
- unity-scope-gourmet
- unity-scope-guayadeque
- unity-scope-musique
-- Didier Roche <didrocks@ubuntu.com> Mon, 30 Nov 2015 09:23:39 +0100
libunity (7.1.4+15.10.20151002-0ubuntu1) wily; urgency=medium
* UnityLauncher: use member setting variable instead of a temporary
one (LP: #1498089)
-- Marco Trevisan (Treviño) <mail@3v1n0.net> Fri, 02 Oct 2015 00:32:25 +0000
libunity (7.1.4+15.10.20150911-0ubuntu1) wily; urgency=medium
* Tools: use proper type prefix to fix FTB (LP: #1491542)
-- Marco Trevisan (Treviño) <mail@3v1n0.net> Fri, 11 Sep 2015 14:54:05 +0000
libunity (7.1.4+14.10.20140808-0ubuntu1) utopic; urgency=low
[ Robert Bruce Park ]
* Drop deprecated unity-lens-friends.
-- Ubuntu daily release <ps-jenkins@lists.canonical.com> Fri, 08 Aug 2014 00:35:31 +0000
libunity (7.1.4+14.04.20140210-0ubuntu1) trusty; urgency=medium
[ Michal Hruby ]
* Drop dependency on libgee, clean up pc files.
[ Corentin Noël ]
* Remove usage of libgee, so users of the library can link against
whichever version of gee they prefer.
[ Ubuntu daily release ]
* Automatic snapshot from revision 311
-- Ubuntu daily release <ps-jenkins@lists.canonical.com> Mon, 10 Feb 2014 04:42:10 +0000
libunity (7.1.3+14.04.20131106-0ubuntu1) trusty; urgency=low
[ Ubuntu daily release ]
* debian/*symbols: auto-update new symbols to released version
[ Michal Hruby ]
* Make tracing easy.
* Update scope definitions for the phone. (LP: #1240141)
[ Ubuntu daily release ]
* Automatic snapshot from revision 308
-- Ubuntu daily release <ps-jenkins@lists.canonical.com> Wed, 06 Nov 2013 05:09:23 +0000
libunity (7.1.3+14.04.20131029.1-0ubuntu1) trusty; urgency=low
[ Pawel Stolowski ]
* Pass hints to activation handler and properly handle goto_uri in AggregatorScope. (LP:
#1243623)
[ Ubuntu daily release ]
* debian/*symbols: auto-update new symbols to released version
[ Michal Hruby ]
* Update client scopes definitions. (LP: #1240141)
[ Ubuntu daily release ]
* Automatic snapshot from revision 305
-- Ubuntu daily release <ps-jenkins@lists.canonical.com> Tue, 29 Oct 2013 12:02:09 +0000
libunity (7.1.2+13.10.20131010-0ubuntu2) saucy; urgency=low
* Declare a Breaks: against unity-common (<< 7.1.2) to help apt calculate
the upgrade from raring properly. LP: #1241420.
-- Steve Langasek <steve.langasek@ubuntu.com> Fri, 18 Oct 2013 11:11:35 -0700
libunity (7.1.2+13.10.20131010-0ubuntu1) saucy; urgency=low
[ Michal Hruby ]
* libunity-tool: Use protocol library to get scope information. (LP:
#1235342)
[ Ubuntu daily release ]
* Automatic snapshot from revision 301
-- Ubuntu daily release <ps-jenkins@lists.canonical.com> Thu, 10 Oct 2013 00:08:05 +0000
libunity (7.1.2+13.10.20131003-0ubuntu1) saucy; urgency=low
[ Michal Hruby ]
* Make libunity depend on the same version of protocol library, to
prevent upgrade of protocol without libunity.
[ Ubuntu daily release ]
* Automatic snapshot from revision 299
-- Ubuntu daily release <ps-jenkins@lists.canonical.com> Thu, 03 Oct 2013 05:05:03 +0000
libunity (7.1.2+13.10.20131001-0ubuntu1) saucy; urgency=low
[ Michal Hruby ]
* Add API to specify arbitrary renderer hints for categories
[ Ubuntu daily release ]
* debian/*symbols: auto-update new symbols to released version
* Automatic snapshot from revision 297
-- Ubuntu daily release <ps-jenkins@lists.canonical.com> Tue, 01 Oct 2013 03:48:40 +0000
libunity (7.1.1+13.10.20130927-0ubuntu1) saucy; urgency=low
[ Michal Hruby ]
* Auto-close channels when their owner disappears from the bus. (LP:
#1228097, #1199715)
* Allow metadata=None when creating SearchContext from python. (LP:
#1231390)
[ Ubuntu daily release ]
* Automatic snapshot from revision 295
-- Ubuntu daily release <ps-jenkins@lists.canonical.com> Fri, 27 Sep 2013 03:10:38 +0000
libunity (7.1.1+13.10.20130920-0ubuntu1) saucy; urgency=low
[ Ubuntu daily release ]
* debian/*symbols: auto-update new symbols to released version
[ Michal Hruby ]
* Add a few methods to allow python bindings to correctly create a
SearchMetadata instance. (LP: #1212307)
[ Ubuntu daily release ]
* Automatic snapshot from revision 292
-- Ubuntu daily release <ps-jenkins@lists.canonical.com> Fri, 20 Sep 2013 11:22:25 +0000
libunity (7.1.1+13.10.20130918.1-0ubuntu1) saucy; urgency=low
[ Michal Hruby ]
* Allow permanent scope "removal" just by using dconf.
* Make sure libunity-tool doesn't crash when it can't connect to the
bus. (LP: #1219792)
[ Pawel Stolowski ]
* Check actual return value of GLib.Module.open to avoid assertion
errors and fail early rather than on get_version check later. (LP:
#1222828)
[ Ubuntu daily release ]
* Automatic snapshot from revision 290
-- Ubuntu daily release <ps-jenkins@lists.canonical.com> Wed, 18 Sep 2013 07:54:38 +0000
libunity (7.1.0+13.10.20130828.1-0ubuntu1) saucy; urgency=low
[ Pawel Stolowski ]
* Removed openweathermap scope from list of client scopes.
* Support new search on activation request.
[ Michal Hruby ]
* Added colorize API to AnnotatedIcon.
[ Ubuntu daily release ]
* debian/*symbols: auto-update new symbols to released version
[ Michal Hruby ]
* Add API for getting location from SearchMetadata.
[ Ubuntu daily release ]
* Automatic snapshot from revision 286
-- Ubuntu daily release <ps-jenkins@lists.canonical.com> Wed, 28 Aug 2013 13:23:31 +0000
libunity (7.0.12+13.10.20130821-0ubuntu1) saucy; urgency=low
[ Michal Hruby ]
* Use proper overrides for ScopeResult. (LP: #1214125)
[ Ubuntu daily release ]
* Automatic snapshot from revision 281
-- Ubuntu daily release <ps-jenkins@lists.canonical.com> Wed, 21 Aug 2013 08:07:03 +0000
libunity (7.0.12+13.10.20130820.2-0ubuntu1) saucy; urgency=low
[ Pawel Stolowski ]
* Serialize progress-source property as an array of strings instead of tuples.
[ Ubuntu daily release ]
* Automatic snapshot from revision 279
-- Ubuntu daily release <ps-jenkins@lists.canonical.com> Tue, 20 Aug 2013 10:39:40 +0000
libunity (7.0.11+13.10.20130816.2-0ubuntu1) saucy; urgency=low
[ Michal Hruby ]
* Added new ScopeResult.create_from_variant
[ Ubuntu daily release ]
* debian/*symbols: auto-update new symbols to released version
[ Michal Hruby ]
* Properly pass goto_uri to activation response. (LP: #1212246)
[ Pawel Stolowski ]
* Removed scopes that access purely remote content and are deployed on
the server from client-scopes.json and client-scopes-phone.json
files. .
[ Ubuntu daily release ]
* Automatic snapshot from revision 277
-- Ubuntu daily release <ps-jenkins@lists.canonical.com> Fri, 16 Aug 2013 10:35:25 +0000
libunity (7.0.10+13.10.20130809.1-0ubuntu1) saucy; urgency=low
[ Michal Hruby ]
* Use the timeout functionality.
[ Ubuntu daily release ]
* Automatic snapshot from revision 273
-- Ubuntu daily release <ps-jenkins@lists.canonical.com> Fri, 09 Aug 2013 11:50:54 +0000
libunity (7.0.10+13.10.20130806-0ubuntu1) saucy; urgency=low
[ Pawel Stolowski ]
* Add support for progress-source property for Categories.
[ Ubuntu daily release ]
* debian/*symbols: auto-update new symbols to released version
[ Michal Hruby ]
* Apps scope port-related fixes.
* Allow definition of subscope ids in master scopes.
[ Ubuntu daily release ]
* Automatic snapshot from revision 271
-- Ubuntu daily release <ps-jenkins@lists.canonical.com> Tue, 06 Aug 2013 07:39:21 +0000
libunity (7.0.9+13.10.20130729-0ubuntu1) saucy; urgency=low
[ Michal Hruby ]
* libunity-tool: Fix track model viewing.
* Correctly propagate the results_invalidated signal from scopes to
master scopes and eventually to home scope.
* Fix a regression where opening multiple search channels could
confuse the merging.
[ Ubuntu daily release ]
* Automatic snapshot from revision 267
-- Ubuntu daily release <ps-jenkins@lists.canonical.com> Mon, 29 Jul 2013 04:03:30 +0000
libunity (7.0.9+13.10.20130723-0ubuntu1) saucy; urgency=low
[ Michal Hruby ]
* Add support for diff models.
* Introduce new category renderers.
[ Ubuntu daily release ]
* debian/*symbols: auto-update new symbols to released version
[ Michal Hruby ]
* Don't allow commits from other peers to channels' result models.
* Correctly propagate the DIFF_CHANGES flag from the proxy object to
the actual create_channel request.
* Fix a threading issue where shared model could have been serialized
(in response to a standard Clone() request defined by the dee
protocol) while a search was running in a separate thread and adding
more rows to the model.
[ James Henstridge ]
* Add a '-m' flag to unity-scope-loader to help with testing not-yet-
installed scopes.
* Expose the "form-factor" search hint through the
Unity.SearchMetadata class.
* Add an API to Unity.AbstractScope to let the scope indicate that its
results have changed.
* Add a method for accessing a Unity.Cancellable's GCancellable, to
allow use with APIs that need the full GCancellable functionality.
[ Ubuntu daily release ]
* Automatic snapshot from revision 263
-- Ubuntu daily release <ps-jenkins@lists.canonical.com> Tue, 23 Jul 2013 06:23:48 +0000
libunity (7.0.7+13.10.20130703.2-0ubuntu1) saucy; urgency=low
[ Didier Roche ]
* rename while installing the scope definition file.
* only try to rename the json scope definition file when it's present
[ Ubuntu daily release ]
* Automatic snapshot from revision 253
-- Ubuntu daily release <ps-jenkins@lists.canonical.com> Wed, 03 Jul 2013 12:54:16 +0000
libunity (7.0.7+13.10.20130703-0ubuntu1) saucy; urgency=low
[ Ubuntu daily release ]
* debian/*symbols: auto-update new symbols to released version
[ James Henstridge ]
* Add support for passing a scope group configuration file to unity-
scope-loader.
[ Ubuntu daily release ]
* Automatic snapshot from revision 250
-- Ubuntu daily release <ps-jenkins@lists.canonical.com> Wed, 03 Jul 2013 04:02:24 +0000
libunity (7.0.7+13.10.20130702-0ubuntu1) saucy; urgency=low
[ Michal Hruby ]
* Add unity_object_unref wrapper.
* Use GroupName and UniqueName in the .scope files.
* Add content_type to Unity.Category.
[ Didier Roche ]
* Bump upstream version for new libunity scopes definition handling
* Now creates libunity-scopes-json-def-desktop and
libunity-scopes-json-def-phone which provides unity-scopes-json-def to
handle different scopes installed on the target.
* Remove libunity-common
[ Ubuntu daily release ]
* debian/*symbols: auto-update new symbols to released version
[ Michal Hruby ]
* Undo ABI break in the protocol library.
* Add a few more Scope tests that don't focus on DBus communication.
[ James Henstridge ]
* Implement C scope loader.
* Install the unity-scope-loader executable.
[ Didier Roche ]
* provides unity-scopes-json-def virtual package, that can be used
instead of libunity-common to ship the json scope definition file.
[ Jeremy Bicha ]
* * Have libunity-dev depend on gir1.2-unity-5.0 * Drop explicit
build-depends on gir- packages.
[ Ubuntu daily release ]
* Automatic snapshot from revision 248
-- Ubuntu daily release <ps-jenkins@lists.canonical.com> Tue, 02 Jul 2013 04:02:38 +0000
libunity (7.0.4daily13.06.24-0ubuntu1) saucy; urgency=low
[ Ubuntu daily release ]
* debian/*symbols: auto-update new symbols to released version
[ Michal Hruby ]
* Wait for model synchronization before returning a name in
open_channel. (LP: #1193096)
[ Ubuntu daily release ]
* Automatic snapshot from revision 238
-- Ubuntu daily release <ps-jenkins@lists.canonical.com> Mon, 24 Jun 2013 05:42:00 +0000
libunity (7.0.4daily13.06.21-0ubuntu1) saucy; urgency=low
[ Michal Hruby ]
* Deal correctly with InitiallyUnowned classes.
[ Ubuntu daily release ]
* Automatic snapshot from revision 236
-- Ubuntu daily release <ps-jenkins@lists.canonical.com> Fri, 21 Jun 2013 04:02:45 +0000
libunity (7.0.4daily13.06.19-0ubuntu1) saucy; urgency=low
[ Michal Hruby ]
* Add API to protocol library to allow category and filter definition in scope files.
* Add SimpleScope API
[ Ubuntu daily release ]
* debian/*symbols: auto-update new symbols to released version
[ Michal Hruby ]
* Clean up deps file. (LP: #1170810)
* Bump GIR version.
[ James Henstridge ]
* Update the Python scope runner to support loading multiple scopes in
a single process.
* Make ScopeDBusConnector.export() succeed if the process already owns
the requested D-Bus name, making it possible to export multiple
scopes from a process under the same bus name.
* Make Unity.ScopeDBusConnector hold a reference to its scope.
[ Didier Roche ]
* relax dependency on libunity-common to avoid arch mismatch.
[ Ubuntu daily release ]
* Automatic snapshot from revision 234
-- Ubuntu daily release <ps-jenkins@lists.canonical.com> Wed, 19 Jun 2013 04:29:04 +0000
libunity (7.0.2daily13.06.06.1-0ubuntu1) saucy; urgency=low
[ Pawel Stolowski ]
* Removed sshsearch, launchpad and evolution scopes from client-scopes.json.
[ Michal Hruby ]
* Merge new Scopes API (needed by Smart Scopes / 100 Scopes).
* A couple of fixes to the scope tests.
[ Sebastien Bacher ]
* Merge new Scopes API (needed by Smart Scopes / 100 Scopes).
[ David Callé ]
* Merge new Scopes API (needed by Smart Scopes / 100 Scopes).
[ Automatic PS uploader ]
* Merge new Scopes API (needed by Smart Scopes / 100 Scopes).
[ Chris Townsend ]
* Merge new Scopes API (needed by Smart Scopes / 100 Scopes).
[ Didier Roche ]
* Merge new Scopes API (needed by Smart Scopes / 100 Scopes).
* Remove generated pycache dirs.
[ James Henstridge ]
* Merge new Scopes API (needed by Smart Scopes / 100 Scopes).
[ Pawel Stolowski ]
* Merge new Scopes API (needed by Smart Scopes / 100 Scopes).
* Override default implementation of run_async in tests.
[ Ubuntu daily release ]
* Automatic snapshot from revision 225
-- Ubuntu daily release <ps-jenkins@lists.canonical.com> Thu, 06 Jun 2013 12:04:56 +0000
libunity (7.0.0daily13.05.31ubuntu.unity.next-0ubuntu1) raring; urgency=low
[ Łukasz 'sil2100' Zemczak ]
* Make the changelog entry match the upstream version
[ Ubuntu daily release ]
* debian/*symbols: auto-update new symbols to released version
[ Michal Hruby ]
* Merge new Scopes API (needed by Smart Scopes / 100 Scopes).
* A couple of fixes to the scope tests.
[ Sebastien Bacher ]
* Merge new Scopes API (needed by Smart Scopes / 100 Scopes).
[ David Callé ]
* Merge new Scopes API (needed by Smart Scopes / 100 Scopes).
[ Automatic PS uploader ]
* Merge new Scopes API (needed by Smart Scopes / 100 Scopes).
[ Chris Townsend ]
* Merge new Scopes API (needed by Smart Scopes / 100 Scopes).
[ Didier Roche ]
* Merge new Scopes API (needed by Smart Scopes / 100 Scopes).
[ James Henstridge ]
* Merge new Scopes API (needed by Smart Scopes / 100 Scopes).
[ Pawel Stolowski ]
* Merge new Scopes API (needed by Smart Scopes / 100 Scopes).
* Override default implementation of run_async in tests.
[ Ubuntu daily release ]
* Automatic snapshot from revision 221 (ubuntu-unity/next)
-- Ubuntu daily release <ps-jenkins@lists.canonical.com> Fri, 31 May 2013 04:28:48 +0000
libunity (6.90.2daily13.05.01.1ubuntu.unity.next-0ubuntu1) raring; urgency=low
* Automatic snapshot from revision 216 (ubuntu-unity/next)
-- Ubuntu daily release <ps-jenkins@lists.canonical.com> Wed, 01 May 2013 21:58:05 +0000
libunity (6.90.2daily13.04.05-0ubuntu1) raring; urgency=low
[ Michael Terry ]
* [FFe] replace gwibber-service with Friends (LP: #1156979)
[ Didier Roche ]
* Unity/Libunity unit tests broken by latest glib (LP: #1159677)
[ Ubuntu daily release ]
* Automatic snapshot from revision 215
-- Ubuntu daily release <ps-jenkins@lists.canonical.com> Fri, 05 Apr 2013 04:02:08 +0000
libunity (6.90.2daily13.03.06.1-0ubuntu1) raring; urgency=low
[ Didier Roche ]
* Small lintian warning fixes
[ Automatic PS uploader ]
* Automatic snapshot from revision 212
-- Automatic PS uploader <ps-jenkins@lists.canonical.com> Wed, 06 Mar 2013 13:25:54 +0000
libunity (6.90.2daily13.03.04-0ubuntu1) raring; urgency=low
[ Didier Roche ]
* Need a .json file for having the list of default installed lens and
scopes (LP: #1137303)
[ Automatic PS uploader ]
* Automatic snapshot from revision 209
-- Automatic PS uploader <ps-jenkins@lists.canonical.com> Mon, 04 Mar 2013 04:01:51 +0000
libunity (6.90.2daily13.01.11-0ubuntu1) raring; urgency=low
[ Didier Roche ]
* Make the changelog version matchin configure.ac
[ Automatic PS uploader ]
* debian/*symbols: auto-update new symbols to released version
* Automatic snapshot from revision 206
-- Automatic PS uploader <ps-jenkins@lists.canonical.com> Fri, 11 Jan 2013 04:01:54 +0000
libunity (6.90.0daily12.12.05-0ubuntu1) raring; urgency=low
[ Michael Terry ]
* New upstream release
* debian/control:
- Update Vcs-Bzr
- Build-Depend on dh-autoreconf
* debian/rules:
- Use dh_autoreconf
[ Didier Roche ]
* Automatic snapshot from revision 194 (bootstrap):
- lp:libunity headless-tests fail (LP: #1069831)
- Unable to use AsyncPreview.preview_ready() from python (LP: #1062331)
- Build failure: be tolerant of missing GSettings (LP: #973518)
- Fix incorrect printf format string: (LP: #937464)
[ Automatic PS uploader ]
* debian/*symbols: auto-update new symbols to released version
* Automatic snapshot from revision 201
-- Automatic PS uploader <ps-jenkins@lists.canonical.com> Wed, 05 Dec 2012 09:26:32 +0000
libunity (6.12.0-0ubuntu1) quantal-proposed; urgency=low
* New upstream release.
- Fix crash when adding or removing players from the blacklist.
(LP: #1029949)
-- Timo Jyrinki <timo-jyrinki@ubuntu.com> Thu, 08 Nov 2012 08:28:18 +0200
libunity (6.10.0-0ubuntu1) quantal-proposed; urgency=low
* New upstream release.
- unity-applications-daemon crashed with SIGSEGV in g_strdup()
(LP: #1063300)
-- Łukasz 'sil2100' Zemczak <lukasz.zemczak@canonical.com> Wed, 17 Oct 2012 10:46:31 +0200
libunity (6.8.0-0ubuntu2) quantal; urgency=low
[ Łukasz 'sil2100' Zemczak ]
* Cherry-picked from upstream.
- libunity9 now depends on unity-common which depends on compiz
(LP: #1062099)
- Build failure: be tolerant of missing GSettings (LP: #973518)
* debian/control:
- Remove dependency to unity-common, as now we're more fault-tolerant
about missing schemas
[ Didier Roche ]
* debian/control:
- Actually, downgrade it rather to suggests.
-- Didier Roche <didrocks@ubuntu.com> Fri, 05 Oct 2012 15:49:08 +0200
libunity (6.8.0-0ubuntu1) quantal-proposed; urgency=low
[ Didier Roche ]
* Install the new schema file
* add intltool as a build-dep
[ Dmitry Shachnev ]
* Make libunity9 depend on unity-common >= 6.0.0-0ubuntu3 (LP: #1055019).
[ Timo Jyrinki ]
* New upstream release.
- Converts white space to underscores when trying to export the mpris
bus (LP: #1031933)
- Added size hint to AnnotatedIcon (LP: #1052513)
- Add remote search disabling option support to libunity for lenses to
consume it (LP: #1054746)
- Make sender wrap the title property and set the subtitle in the
constructor. (LP: #1058198)
- Allow null preview argument in preview_ready signal by declaring it
with "?" (LP: #1060281)
* debian/libunity9.symbols:
- update symbols to include the new APIs
-- Timo Jyrinki <timo-jyrinki@ubuntu.com> Wed, 03 Oct 2012 09:22:42 +0300
libunity (6.5.2-0ubuntu1) quantal-proposed; urgency=low
[ Timo Jyrinki ]
* New upstream release.
- Added gcov code coverage tooling
- Implemented provides_personal_content flag
- Implemented home-lens-default-name lens property
- Add hints parameter to dbus Activate() method
- Added build system support for documentation generation
- Allow passing -1 as rating value (LP: #1050464)
- Added application category into CategoryType enum.
- Added SocialPreview (LP: #1049127)
- UnityLauncher: support favorites prefixes (LP: #761155)
[ Didier Roche ]
* debian/libunity9.symbols:
- update symbols to include the new APIs
-- Didier Roche <didrocks@ubuntu.com> Thu, 20 Sep 2012 16:14:43 +0200
libunity (5.96.0-0ubuntu1) quantal; urgency=low
* New upstream release.
- preview support for libunity-tool
- implemented close signal for previews
- other work related to the preview API
* debian/libunity9.symbols:
- new symbols added
-- Łukasz 'sil2100' Zemczak <lukasz.zemczak@canonical.com> Wed, 22 Aug 2012 18:57:31 +0200
libunity (5.94.0-0ubuntu1) quantal-proposed; urgency=low
* New upstream release.
- a lot of work related to preview APIs
* debian/libunity9.symbols:
- new symbols added, two preview API symbols removed
-- Łukasz 'sil2100' Zemczak <lukasz.zemczak@canonical.com> Fri, 10 Aug 2012 12:33:40 +0200
libunity (5.92.0-0ubuntu1) quantal; urgency=low
[ Didier Roche ]
* debian/control:
- build with vala 0.18. Yes, we are crazy like that!
- add gtk build-dep for the unity-tool gui and bump the glib one
- remove some legacy transition handling
* add a new libunity-tools package:
- moving unity-tool from the -dev to this package (now with a gui) and
rename it to libunity-tool
- update debian/control and debian/*install files accordingly
* add a new libunity-protocol-private0 package:
- debian/libunity-protocol-private0.install, debian/control:
add new package metadata, emphasing on the private nature of the library
- debian/libunity-dev.install:
ship the new pc files and links
- debian/rules:
removes new static libraries
use dh_makeshlibs -V only on the protocol-private package to get
a strict shlibs dependency on it as there is no API/ABI stability
commitment
- debian/libunity9.symbols:
updated as stripped private symbols that weren't used by public lens a,d
clients as now in this new library
* debian/rules, debian/compat:
- bump to debhelper 9 for gaining the hardening flags for free
- also getting multiarch support
- changing order dh parameters are called
* debian/rules, debian/control, debian/*.install:
- don't ship the static library anymore and convert for multiarch
- don't multiarch gir1.2-unity-5.0, it seems that gir doesn't support it
* debian/patches/series:
- removing distro patch as we will build with the newer vala version
* debian/control, debian/libunity-dev.install,
debian/libunity9.install:
- move the gir file from the library to the -dev package, where it belongs
[ Łukasz 'sil2100' Zemczak ]
* New upstream release.
- implemented the preview signal framework
- a lot of work and enhancements related to music previews
* debian/libunity9.symbols:
- updated list of exported symbols
-- Didier Roche <didrocks@ubuntu.com> Wed, 27 Jun 2012 15:18:34 +0200
libunity (5.12.0-0ubuntu2) quantal; urgency=low
* debian/patches/fix_893688.patch:
- fix the Unity-5.0.gir file to produce a correct typelib (LP: #893688)
* debian/rules:
- added the quilt patching method to dh rules
* debian/control:
- added quilt dependency
- direct Vcs-Bzr to the right canonical branch (lp:ubuntu/libunity)
-- Didier Roche <didrocks@ubuntu.com> Mon, 25 Jun 2012 12:27:30 +0200
libunity (5.12.0-0ubuntu1) precise-proposed; urgency=low
* New upstream release.
- Remote scopes are not restarted after crash (LP: #984760)
- Sources filter shouldn't be shown if there's just one item (LP: #940161)
- hash tables, strings, and variants leaked in LauncherEntry.serialize()
(LP: #981309)
* debian/libunity9.symbols:
- adding an internal symbol
-- Didier Roche <didrocks@ubuntu.com> Fri, 27 Apr 2012 11:00:23 +0200
libunity (5.10.0-0ubuntu1) precise; urgency=low
* New upstream release.
- Segfault when using Playlist API (LP: #919276)
* debian/libunity9.symbols:
- updated due to renaming internal symbols
* debian/control:
- bump Standards-Version to latest
- add shlibs:Depends to libunity-dev as it contains a C binary debugging
tool
-- Didier Roche <didrocks@ubuntu.com> Thu, 12 Apr 2012 11:37:51 +0200
libunity (5.8.0-0ubuntu1) precise-proposed; urgency=low
* New upstream release.
- Lenses with multiple scopes aren't updated properly when sources filter
changes (LP: #960302)
-- Didier Roche <didrocks@ubuntu.com> Fri, 23 Mar 2012 14:23:12 +0100
libunity (5.6.0-0ubuntu1) precise; urgency=low
* New upstream release.
- unity-applications-daemon crashed with SIGSEGV in
dee_sequence_model_free_row() (LP: #916356)
- dash home lens does not include recent files... (LP: #946980)
-- Didier Roche <didrocks@ubuntu.com> Mon, 12 Mar 2012 11:48:54 +0100
libunity (5.4.0-0ubuntu1) precise; urgency=low
* New upstream release.
- Dash: very high latency responding to input (LP: #828582)
- Adding an option to the Sources filter from a remote Python scope
doesn't work (LP: #916758)
- Dash - Genre filter category in the Music Lens should use a 3 column
layout (LP: #841902)
* debian/libunity-dev.install:
- install unity-tool test tool
* debian/libunity9.symbols:
- updated symbols
-- Didier Roche <didrocks@ubuntu.com> Fri, 17 Feb 2012 13:30:27 +0100
libunity (5.2.0-0ubuntu1) precise; urgency=low
* New upstream release.
- Dash: very high latency responding to input (LP: #828582)
- Adding an option to the Sources filter from a remote Python scope
doesn't work (LP: #916758)
- Dash - Genre filter category in the Music Lens should use a 3 column
layout (LP: #841902)
* debian/control:
- build with vala 0.14 and on python
* debian/libunity9.symbols:
- updated symbols
* -
-- Didier Roche <didrocks@ubuntu.com> Fri, 03 Feb 2012 11:38:26 +0100
libunity (5.0.0-0ubuntu1) precise; urgency=low
* New upstream release.
- libunity 'make check' fails (LP: #894720)
- Can't add or remove a FilterOption after inital load (LP: #879484)
- API in libunity to enumerate favorite apps from launcher (LP: #900219)
- Allow lenses to control how results from scopes are merged (LP: #911686)
- Unity.Filter.renderer_name should be enum, not string (LP: #913129)
* debian/control, debian/rules:
- build with tests now and so dep on xvfb and dbus-x11
- build-dep now on gir1.2-dee-1.0, dee-dev 0.9 and latest vala 0.12
* New sonames:
- debian/gir1.2-unity-4.0.install => debian/gir1.2-unity-5.0.install
- debian/libunity6.install => debian/libunity9.install
- debian/libunity6.symbols => debian/libunity9.symbols
- updated debian/libunity9.symbols
-- Didier Roche <didrocks@ubuntu.com> Thu, 12 Jan 2012 18:22:47 +0100
libunity (4.0.6-0ubuntu3) oneiric-proposed; urgency=low
* Cherry-pick upstream:
- LensSearch instances are leaking (LP: #869225)
-- Didier Roche <didrocks@ubuntu.com> Fri, 14 Oct 2011 11:24:54 +0200
libunity (4.0.6-0ubuntu2) oneiric; urgency=low
* Backport r85 to make "SearchFinished signals work again", it's needed
to fix the unity dash activating the wrong entry on enter (lp: #856205)
-- Sebastien Bacher <seb128@ubuntu.com> Thu, 29 Sep 2011 11:38:25 +0200
libunity (4.0.6-0ubuntu1) oneiric; urgency=low
* New upstream release.
- doesn't clear models when a scope dies (LP: #859760)
- Support X-GNOME-Keywords (LP: #828356)
* update debian/libunity6.symbols
-- Didier Roche <didrocks@ubuntu.com> Tue, 27 Sep 2011 15:41:33 +0200
libunity (4.0.4-0ubuntu1) oneiric; urgency=low
* New upstream release:
- Scope searches blocks the lens (LP: #850816)
- [dash] Category filters is sorted according to their english names,
even when another language is used (LP: #838023)
- No way to get original path of GAppInfo from Unity.AppInfoManager
(LP: #850817)
* debian/libunity6.symbols:
- updated symbols
-- Didier Roche <didrocks@ubuntu.com> Thu, 15 Sep 2011 14:02:15 +0200
libunity (4.0.2-0ubuntu1) oneiric; urgency=low
* New upstream release.
- [dash] Apps lens shows no result by default (LP: #834571)
- Quicklist can't be correctly hidden (LP: #843425)
- Python PyGI support broken (LP: #844779)
* debian/control,
debian/libunity5.symbols => debian/libunity6.symbols,
debian/libunity5.install => debian/libunity6.install:
- makes the necessary tweak for ABI/API breakage
-- Didier Roche <didrocks@ubuntu.com> Thu, 08 Sep 2011 17:01:04 +0200
libunity (4.0.0-0ubuntu4) oneiric; urgency=low
* debian/control:
- conflicts and replaces gir1.2-unity-3.0 as the needed override file
isn't versionned (no provides: because of the API break)
-- Didier Roche <didrocks@ubuntu.com> Fri, 12 Aug 2011 17:27:38 +0200
libunity (4.0.0-0ubuntu3) oneiric; urgency=low
* debian/control:
- late bump to unity gir 4.0. So build gir1.2-unity-4.0 bin package
-- Didier Roche <didrocks@ubuntu.com> Thu, 11 Aug 2011 19:01:17 +0200
libunity (4.0.0-0ubuntu2) oneiric; urgency=low
* debian/control:
- build with valac-0.12
-- Didier Roche <didrocks@ubuntu.com> Thu, 11 Aug 2011 18:41:01 +0200
libunity (4.0.0-0ubuntu1) oneiric; urgency=low
* New upstream release.
* bump soname:
- rename debian/libunity4* -> debian/libunity5*
- rename in the control file as well, add a replaces because of the gir file
- update debian/libunity5.symbols
* debian/control:
- bump Standards-Version
- breaks on current unity and unity-2d
-- Didier Roche <didrocks@ubuntu.com> Thu, 11 Aug 2011 18:28:04 +0200
libunity (3.8.4-0ubuntu2) oneiric; urgency=low
* debian/control
- Ensure we rebuild against dbusmenu >= 0.4.90
-- Ken VanDine <ken.vandine@canonical.com> Fri, 24 Jun 2011 15:33:46 -0400
libunity (3.8.4-0ubuntu1) natty; urgency=low
* New upstream release.
- [FFE] Need API to set urgency from background process (LP: #747677)
- Launcher - Remove the capability for Launcher icons to be overlaid with
emblems (LP: #747311)
- When we press Enter to run the first search result, Unity should wait
until searching is finished (LP: #749428)
* debian/libunity3.install => debian/libunity4.install
debian/libunity3.symbols => debian/libunity4.symbols
debian/control, debian/libunity4.symbols:
- handle abi break and soname bump
- replaces libunity3 for the gir file
-- Didier Roche <didrocks@ubuntu.com> Thu, 07 Apr 2011 13:05:26 +0200
libunity (3.6.8-0ubuntu2) natty; urgency=low
* debian/rules
- Move from pysupport (which is being deprecated) to dh_python2, we need
to match pygobject for GI override imports to work properly (LP: #742350)
-- Ken VanDine <ken.vandine@canonical.com> Fri, 25 Mar 2011 11:27:39 -0400
libunity (3.6.8-0ubuntu1) natty; urgency=low
* New upstream release.
- SearchFinished signal for Places API (LP: #739311)
* debian/libunity3.symbols:
- add new symbols
-- Didier Roche <didrocks@ubuntu.com> Wed, 23 Mar 2011 17:06:12 +0100
libunity (3.6.2-0ubuntu3) natty; urgency=low
* debian/control
- Added build depends for gir1.2-dee-0.5
-- Ken VanDine <ken.vandine@canonical.com> Tue, 08 Mar 2011 21:03:04 -0500
libunity (3.6.2-0ubuntu2) natty; urgency=low
* src/Unity-3.0.gir
- Added include for Dee (LP: #731023)
* debian/control
- Bump build depends for libdee-dev to >= 0.5.12-0ubuntu2 to make sure
we build against the version of libdee with needed vapi fixes
-- Ken VanDine <ken.vandine@canonical.com> Tue, 08 Mar 2011 17:00:47 -0500
libunity (3.6.2-0ubuntu1) natty; urgency=low
* New upstream release.
* debian/control:
- depends on latest dee
* debian/libunity3.symbols:
- update with latest symbols
-- Didier Roche <didrocks@ubuntu.com> Mon, 07 Mar 2011 19:07:06 +0100
libunity (3.4.6-0ubuntu1) natty; urgency=low
* New upstream release.
- libunity support gobject-introspected languages (LP: #709240)
- inspector's unity_running is not initialized (LP: #719769)
* debian/rules:
- now, try to get a more stable ABI, use a symbols file
- whip the pyc pyo generated
- debian/libunity3.symbols
* ship the gir python override in the gir package, still nice some tweaking
though
-- Didier Roche <didrocks@ubuntu.com> Thu, 24 Feb 2011 20:10:48 +0100
libunity (3.4.2-0ubuntu5) natty; urgency=low
* debian/control:
libdbusmenu leaks in the vala api. add it to libunity-dev dep
-- Didier Roche <didrocks@ubuntu.com> Fri, 11 Feb 2011 14:22:23 +0100
libunity (3.4.2-0ubuntu4) natty; urgency=low
* Cherry-pick a fix to generate the .deps file as dbusmenu is now exposed to
the api
-- Didier Roche <didrocks@ubuntu.com> Fri, 11 Feb 2011 12:45:09 +0100
libunity (3.4.2-0ubuntu3) natty; urgency=low
* debian/control
- bump build depends for libdbusmenu-glib-dev to >= 0.3.94
* configure
- package name fix for Dbusmenu vapi
-- Ken VanDine <ken.vandine@canonical.com> Thu, 10 Feb 2011 22:39:06 -0500
libunity (3.4.2-0ubuntu2) natty; urgency=low
* src/unity-launcher.vala
- Cherry picked Unity.LauncherEntry fix from upstream
-- Ken VanDine <ken.vandine@canonical.com> Thu, 10 Feb 2011 22:01:30 -0500
libunity (3.4.2-0ubuntu1) natty; urgency=low
* New upstream release:
- add API for integrating applications with the launcher (LP: #676596)
* debian/control:
- libunity3.install: remove uneeded doc
* Add introspection support:
- debian/control:
+ add gir1.2-unity-3.0 package
+ add gi build-dep
- add debian/gir1.2-unity-3.0.install
- debian/libunity3.install: install the gir file
- debian/rules: call dh_girepository
* debian/rules:
- bump the shlib
-- Didier Roche <didrocks@ubuntu.com> Thu, 10 Feb 2011 17:33:29 +0100
libunity (3.2.14-0ubuntu1) natty; urgency=low
* New upstream release.
* split libunity from unity:
- rework debian/copyright, debian/watch, debian/control
- only libunity in the packaging, remove all the other packages
- make a slicker, cleaner debian/copyright as now using autotools again
- clean the build-dep for libunity only
* debian/rules:
- the api is unstable, so no symbol tracking, bump the shlibs rather
-- Didier Roche <didrocks@ubuntu.com> Thu, 20 Jan 2011 17:47:21 +0100
unity (3.2.12-0ubuntu3) natty; urgency=low
* debian/control:
- drop the recommends on unity-places* as they don't work today, and pull
libunity0, which has still a dep on libindicator1, conflicting with
libindicator2. The places can't be rebuilt right now (API breakage) and
we need to wait for next release
-- Didier Roche <didrocks@ubuntu.com> Mon, 17 Jan 2011 14:27:11 +0100
unity (3.2.12-0ubuntu2) natty; urgency=low
* No changes rebuild for new libindicator2
-- Jonathan Riddell <jriddell@ubuntu.com> Sat, 15 Jan 2011 02:56:13 +0000
unity (3.2.12-0ubuntu1) natty; urgency=low
* New upstream release.
- Window border doesn't get restored (LP: #691812)
- When a menu is triggered from Alt+key, app name stays visible on panel
(LP: #691765)
- show the launcher on <Super> KeyPress, this will be needed when the
shortcut will be implemented if we are in intellihide mode
- Make sure an underscore is correctly placed under the corresponding
accelerator-key. (LP: #683427)
- Adding a dummy --replace option for compatibility reason (LP: #692569)
- Compiz crashed with SIGSEGV in CompWindow::id() (LP: #694945)
- Tooltip text not vertically centered (LP: #697791)
- Maximizing a window horizontally or vertically removes the title bar
(LP: #696780)
- Mousewheel support for indicators (LP: #681428)
- Avoid Quicklists being positioned so that they are partially offscreen at
the bottom screen-edge. (LP: #691114)
- Migrate awn, docky and cairo-dock dock launchers (LP: #692967)
- Include manpages, and make them translatable. (LP: #684896)
- Automaximize windows in Unity with some rules like blacklisting some
applications, initial window size.
It fixes also some bugs, like maximized window on first map not
undecorated (LP: #667009, #669716, #693779, #691741)
- Update libunity to conform to latest GIO VAPI breakage (LP: #679964)
- Initial unity-atk module implementation (LP: #701680)
- Panel autohide when on Quicklist (LP: #683261)
* debian/control:
- unity breaks on older bamf version (dbus protocol changed)
- needs latest and greatest from dee
- add libatk1.0-dev build-dep
* CMakeList:
- distro-patch to avoid building tests right now as building them is failing
with the current vala/gir stack. THIS NEED TO BE REMOVED.
* debian/rules:
- don't --fail-missing as we don't want to install the vapi yet. The gir
package will come next week.
* debian/unity-common.install:
- install the manpages
* debian/libunity3.symbols:
- updated
-- Didier Roche <didrocks@ubuntu.com> Fri, 14 Jan 2011 20:47:25 +0100
unity (3.2.8-0ubuntu3) natty; urgency=low
* debian/control:
libdbusmenu-glib-dev 0.4 is 0.3.91
-- Didier Roche <didrocks@ubuntu.com> Fri, 14 Jan 2011 17:04:27 +0100
unity (3.2.8-0ubuntu2) natty; urgency=low
* src/unityshell.cpp:
- backport a fix for WindowCompizid
* debian/control:
- ABI break in compiz, rebuild against latest version
* CMakeLists.txt, libunity/CMakeLists.txt:
- don't build some vala stuff
* debian/libunity3.symbols:
- refresh the symbols regarding to previous changes
* backport dbusmenu transition:
- debian/control: build-dep on the new package
- backport the commits
-- Didier Roche <didrocks@ubuntu.com> Fri, 14 Jan 2011 01:22:00 +0100
unity (3.2.8-0ubuntu1) natty; urgency=low
* New upstream release:
- unity-panel-service should be autorestarted by unity when crashing
(lp: #686591)
- App name in panel menu is truncated (lp: #619477)
- Removing the appmenu indicator left-aligns all other indicators
(lp: #688764)
- unity support for firefox menubar (lp: #690447)
- the unityshell plugin has no icon in ccsm (lp: #688594)
- the unityshell plugin has an "unknown category" in ccsm (lp: #688592)
* debian/control:
- updated the dee and nux requirement.
* debian/libunity3.symbols:
- updated to include the new symbols
* debian/unity.install:
- install the ccsm icons there
-- Sebastien Bacher <seb128@ubuntu.com> Fri, 17 Dec 2010 19:18:58 +0100
unity (3.2.6-0ubuntu2) natty; urgency=low
* debian/control:
- fix typo in description
- set nux-tools as a dep rather than recommends
- ensure we build/run with latest compiz-core (abi breakage)
- update Vcs-Bzr
- fix -common dep
-- Didier Roche <didrocks@ubuntu.com> Mon, 13 Dec 2010 16:43:58 +0100
unity (3.2.6-0ubuntu1) natty; urgency=low
[ Didier Roche ]
* New upstream release:
- Autohide option should be more like Intellihide (LP: #685861)
- Add an unity binary (LP: #599716)
- Dock icons disappearing on reopen (all programs) (LP: #687466)
- Application with .desktop file containing "icon=/absolute/path" doesn't
have an icon in unity panel (LP: #683444)
- Indicators are mis-aligned (LP: #646740)
- Navigating between indicator gives focus back to other dialogs during
transition (LP: #637143)
- Migration script should dump a lot of migrated items for debugging
(LP: #687721)
- Add desktop action support to launcher quicklists (LP: #687403)
- Rendering of Quicklist radio-button-item still way off (LP: #684048)
- Clicking on a launcher icon does not raise most recent window (LP: #677577)
- Quicklist menu item testing - Part 2 (LP: #676040)
- Panel does not behave like a menu bar (keyboard scrubbing) (LP: #686655)
- Separated menus: no keyboard shortcuts for menus (LP: #684060)
- No installation instructions in source (LP: #683792)
- Unity plugin should depend on "Desktop Wall" plugin (LP: #683211)
- Network indicator shows up on the left-hand side of the panel (LP: #680545)
- Scrubbing menu items or indicators in panel prematurely ends (LP: #677601)
- fix trash icon not being updated (LP: #683241)
* Revert source 3, it's breaking daily build and hudson
* remove the patch as well, fixed upstream
* debian/control, debian/unity.install, debian/unity-common.install:
- add unity-common package and move some files there
- install the new perf bootchart there as well
* debian/unity.install:
- install new unity binary
* debian/control:
- dep on latest nux
- recommends nux-tools
* debian/libunity3.symbols:
- updated to include the new symbols
[ Sebastien Bacher ]
* debian/source_unity.py:
- reassign crashes due to the indicators to the right source directly
-- Didier Roche <didrocks@ubuntu.com> Thu, 09 Dec 2010 19:57:14 +0100
unity (3.2.2-0ubuntu2) natty; urgency=low
* debian/control:
- Add Vcs-Bzr link
* debian/source:
- Use source version 3.0
* debian/patches/lp682345.patch:
- Fix crash on startup (LP: #682345)
-- Robert Ancell <robert.ancell@canonical.com> Thu, 02 Dec 2010 10:00:40 +1100
unity (3.2.2-0ubuntu1) natty; urgency=low
* New upstream release:
- fix crash in migration settings if gsetting not installed (LP: #682314)
- fix quicklist crash (LP: #681515)
- Quicklist rendering fixes (LP: #681498)
- BFB button launches nautilus /usr/share/applications (LP: #681504)
- Quicklist default items + Keep/remove favorite (LP: #681500)
- Add fullscreen application support (LP: #677255)
* debian/control:
- add libglib2.0-bin and python dep for the migration script
- build again latest nux
-- Didier Roche <didrocks@ubuntu.com> Tue, 30 Nov 2010 17:33:03 +0100
unity (3.2.0-0ubuntu3) natty; urgency=low
* revert previous upload done which is breaking the gconf unity settings
* debian/source_unity.py:
- let apport collect the same as it does for compiz, it will provide
details on xorg and drivers in use for example
* debian/unity.install:
- install the gconf file
- install source_unity.py
* debian/control:
- depends on new compiz and libcompiz version containing the gconf CMake fix
* debian/libunity3.symbols:
- add new exported symbols as places are installed in buildd
-- Didier Roche <didrocks@ubuntu.com> Fri, 26 Nov 2010 20:34:58 +0100
unity (3.2.0-0ubuntu2) natty; urgency=low
* FTBFS: install gconf schemas to fix --fail-missing
* Lintian: echo 1.0 > debian/source/format
-- Paul Sladen <sladen@ubuntu.com> Thu, 25 Nov 2010 21:38:00 +0100
unity (3.2.0-0ubuntu1) natty; urgency=low
* New upstream release:
- Clicking a second time on a menu item does not dismiss it (LP: #661048)
- FavoriteStore re-ordering support (LP: #676106)
- Quicklist menu item testing - part 1 (LP: #676030)
- Base Quicklist Menu Items (LP: #676013)
- Tooltip launcher don't appear in unity compiz (LP: #675486)
- The migration script should be migrated to gsettings
(LP: #680873, #652785, #655175)
- Launcher clickable-area does not extend to left edge of screen
(LP: #677573)
- The ws switcher is always visible if launcher in floating and autohide
mode (LP: #677554)
- add application startup notification (LP: #638319)
- Unity appears on top of gnome-screensaver (LP: #677705)
- launcher tooltips hover over gnome-screensaver (LP: #652937)
* debian/control:
- don't recommend ubuntu-netbook-default-settings anymore
- change the description
- bump build-dep on latest nux
- add libstartup-notification0-dev build-dep
* debian/rules:
- try a slighter best solution for netbook-launcher virtual package, thanks
geser
* debian/unity.install:
- no more gconf file to install
* debian/libunity3.symbols:
- updated to latest and greatest
-- Didier Roche <didrocks@ubuntu.com> Thu, 25 Nov 2010 19:46:58 +0100
unity (3.1.4-0ubuntu4) natty; urgency=low
* debian/rules:
- give back netbook-launcher epoch for transition. Seems there is no elegant
way to do it with dh7, opened to suggestion…
-- Didier Roche <didrocks@ubuntu.com> Fri, 19 Nov 2010 15:33:25 +0100
unity (3.1.4-0ubuntu3) natty; urgency=low
* Argh, of course, as we removed the vala file build, we export less symbols
(update debian/libunity3.symbols)
-- Didier Roche <didrocks@ubuntu.com> Fri, 19 Nov 2010 13:46:43 +0100
unity (3.1.4-0ubuntu2) natty; urgency=low
* Don't build some vala files:
- places aren't present today and that make a FTBFS on buildd (some vapi
files should have changed)
-- Didier Roche <didrocks@ubuntu.com> Fri, 19 Nov 2010 13:07:06 +0100
unity (3.1.4-0ubuntu1) natty; urgency=low
* New upstream release.
- The top half of icons in the launcher is white (LP: #675082)
- Tooltip launcher don't appear in unity compiz (LP: #675486)
- Quicklist Menu - Initial Support (LP: #676154)
* debian/watch:
- look for upstream bz2 file now
* debian/control:
- bump libnux-0.9-dev build-dep
* debian/libunity3.symbols:
- update with new symbols
-- Didier Roche <didrocks@ubuntu.com> Thu, 18 Nov 2010 18:31:37 +0100
unity (3.1.3-0ubuntu2) natty; urgency=low
* don't build the place bindings right now as it doesn't build in a chroot
and it's not used anyway
* debian/libunity3.symbols:
- removing symbols accordingly
-- Didier Roche <didrocks@ubuntu.com> Fri, 12 Nov 2010 19:06:26 +0100
unity (3.1.3-0ubuntu1) natty; urgency=low
* New upstream release.
* udpate debian/copyright
* change debian/rules to build unity as a compiz plugin
- needed cmake
- skip tests for now
* debian/control:
- remove clutk/clutter and mutter deps
- add gsettings-desktop-schemas-dev and libnux-0.9-dev
- don't ship the -dbg package for now
* debian/libunity3.symbols:
- update to new internal API
* debian/*install:
- dispatch new layout and files in the right places
* debian/control, debian/libunity*.*:
- rename libunity0 to libunity3
-- Didier Roche <didrocks@ubuntu.com> Fri, 12 Nov 2010 18:35:04 +0100
unity (0.2.46-0ubuntu5) maverick-proposed; urgency=low
* Revert to maverick branch
(lucid une ppa branch wrongly merged in this one):
+ debian/control:
- Readd netbook-launcher transitional package, this is needed for people
not having ubuntu-netbook installed on dist-upgrade to be
transitionned to unity. (LP: #657838)
- recommends ubuntu-netbook-default-settings and not
ubuntu-netbook-unity-defaut-settings
-- Didier Roche <didrocks@ubuntu.com> Mon, 11 Oct 2010 21:40:23 +0200
unity (0.2.46-0ubuntu4) maverick; urgency=low
* Cherry-picked from upstream:
- the Places and Applications tabs now caters for localized text
longer than the English ones (LP: #644275)
* debian/libunity0.symbols:
- updated for new symbols
-- Didier Roche <didrocks@ubuntu.com> Fri, 01 Oct 2010 14:09:10 +0200
unity (0.2.46-0ubuntu3) maverick; urgency=low
* Cherry pick from upstream:
- Finally load the right translations from .place files for
"Applications" and "Files & Folders" tooltips (LP: #644215)
-- Didier Roche <didrocks@ubuntu.com> Thu, 30 Sep 2010 16:33:54 +0200
unity (0.2.46-0ubuntu2) maverick; urgency=low
* Cherry pick from upstream:
- hanges the launcher behaviour to launch a new application if no user
visible windows are found to fix (LP: #647979)
-- Didier Roche <didrocks@ubuntu.com> Tue, 28 Sep 2010 13:14:26 +0200
unity (0.2.46-0ubuntu1) maverick; urgency=low
* New upstream release:
- use get_basename instead of silly str manipulating, should fix (LP: #648625)
- fix remaining issues when software is at start for non 3D detection
(LP: #614088)
- Fix duplicate ubiquity entry in UNE live session (was importing it from
the GNOME desktop) (LP: #648827)
-- Didier Roche <didrocks@ubuntu.com> Mon, 27 Sep 2010 21:24:05 +0200
unity (0.2.44-0ubuntu1) maverick; urgency=low
* New upstream release:
- refine launcher tile super key overlay aesthetic (LP: #633069)
- improve Cof logo (LP: #644686)
- fix a crasher in the place activation (LP: #634364)
- fixes favorite loading for didrocks (thanks!) (LP: #645835)
- workaround translation issue for Unity trash (LP: #646653)
- MT final adjustement for maverick (LP: #645848, #640501)
* debian/control:
- depend on latest unity-asset-pool
* backport fix to respect workspace layout
* debian/libunity0.symbols:
- updated
-- Didier Roche <didrocks@ubuntu.com> Fri, 24 Sep 2010 19:57:46 +0200
unity (0.2.42-0ubuntu3) maverick; urgency=low
* we need the .c file too (not automatically rebuilt) to fix crash on system
indicators (LP: #645923)
-- Didier Roche <didrocks@ubuntu.com> Thu, 23 Sep 2010 19:06:59 +0200
unity (0.2.42-0ubuntu2) maverick; urgency=low
* Cherry pick from upstream bzr to avoid crash when clicking on system
indicators (LP: #645923)
-- Didier Roche <didrocks@ubuntu.com> Thu, 23 Sep 2010 14:27:39 +0200
unity (0.2.42-0ubuntu1) maverick; urgency=low
* New upstream release:
- "Applications" and "Files & Folders" tooltips are not translatable
(LP: #644215)
- Fix inactive menus are accessible on switching to a window (LP: #604505)
- Fix wrong launcher tile label/quicklist x position (LP: #631446)
- Fix highlighted items in quicklist have different widths (LP: #643315)
- In migration tool, being safe when people are using crazy caracters in
desktop file (LP: #644114, #635156)
- Detect if 3D acceleration support is provided. Otherwise, prompt for
logout and change default session (LP: #614088)
- Fix quicklist shows hidden menu items (LP: #641543)
- Fix removing launchers via dnd fails (LP: #643434)
- Better launcher auto-scroll performances (LP: #640560)
- Make the insensitive state of the forward- and back-button more obvious by
decreasing their opacity, thus users don't assume they are actually
clickable. (LP: #638285)
- Fix some dialogs aren't maximized but are undecorated (LP: #628822)
- Fix some menus don't go away when window closes (LP: #640557)
- Fixes bug where the wrong icon where at times associated with a tile in
the places view. (LP: #642935)
- Speedup icon loading (LP: #641246)
- Make trash menu items in Unity are either not translatable or translations
are not loaded (LP: #645038)
- Fix using dnd on launcher makes focus not work out of the unity ui
(LP: #637123)
- Multi-monitor support (LP: #637123)
- Enable/disable super key by a gconf key (LP: #632581)
- Remove glow on fold (LP: #619344)
- Ensure we dont map windows when expose is active (LP: #599766)
- take new indicator API for action for top-level dropdown menu item not
activated (LP: #637692)
- Make the home buttons reactive (LP: #638857)
- Add red tint when search fails (LP: #607821)
- New (and final!) UI adjustement, but UNE isn't in the doc as seen with
the doc team (LP: #627009)
- Single-touches on the launcher are usually interpreted as a drag
(LP: #641328)
- URI activation in global view (LP: #612562)
- Clicking a Place icon while viewing the same place in the Dash should
return to the Home screen of that place and clear the search (LP: #607829)
- Fix mutter crashed with SIGSEGV in g_type_check_instance() (LP: #641561)
- Fix panel and menu item font colors don't match (LP: #637480)
- Fix indicators have orange color (LP: #632975)
- Fix inactive menus are accessible on switching to a window (LP: #604505)
- Use semi-transparent rectangle around launcher-icon (LP: #643388)
- Fix mutter crashes when closing pop-up dialog (LP: #642669)
- Change launcher icon reference size loading (LP: #641669)
- Fix mutter crashing in mumble start (LP: #641335)
- Fix clicking on a category from CoFs does not directly take you to the
desired category (LP: #638402)
- Fix some menus don't go away when window closes (LP: #640557)
- Launchers should act like if the application was not focussed in the place
views (LP: #637136)
- Fix mutter crashed with SIGSEGV in mutter_window_get_window_type()
(LP: #645066)
- Fix new windows don't get focus (LP: #642994)
- Fix cropping an image in shotwell crashes unity (LP: #641554)
- Some fixes on matching user icons (LP: #622146)
* debian/control:
- depends on latest libindicator-dev for ABI change transition
* debian/libunity0.symbols:
- update to track internal ABI symbols (only used by places)
-- Didier Roche <didrocks@ubuntu.com> Wed, 22 Sep 2010 22:36:00 +0200
unity (0.2.40-0ubuntu1) maverick; urgency=low
* New upstream release:
- Fix inactive menus accessible (LP: #604505)
- Fix some more memory leaks (LP: #604777, #621690, #628144)
- Fix weird behaviors of quicklist (LP: #617339)
- Provide an "open this folder" button (LP: #633201)
- Hidden menu causing gap (LP: #600191)
- Cannot go fullscreen for flash videos (LP: #631381)
- Can't access menu items from the keyboard (LP: #636728)
- Don't register for MDRAGs since they aren't used (LP: #632613)
- Don't run indicator on special launchers (LP: #627488)
- Center arrows position in folded launcher tiles (LP: #633084)
- Launcher icons first appear as white upon login (LP: #601093)
- Removes jittering when rubber band is in use on the launcher (LP: #632991)
- Mutter restarts on closing almost any application (LP: #634701)
- Can't launch apps like synaptic with root privileges from launch bar
(LP: #599298)
- Launcher tile dragging shouldn't be masked (LP: #631443)
- Fix Carousel-ed icons have distorted perspective (LP: #607515)
- Use no longer sync call (LP: #620011)
* update debian/libunity0.symbols
-- Didier Roche <didrocks@ubuntu.com> Fri, 17 Sep 2010 14:02:54 +0200
unity (0.2.38-0ubuntu1) maverick; urgency=low
* New upstream release:
- Correct the offset of the quicklist so it doesn't jump to the right when
expanding from a tooltip. Fixes (LP: #631446)
- Log apps launched via unity-place-application (LP: #632203)
- Fix launcher does not contract if a menu is open (LP: #631452)
- Auto scroll speed is now corrected (LP: #633045)
- Removes jittering when rubber band is in use on the launcher (LP: #632991)
- Fix clicking on the right of the divider also triggers action on logo
(LP: #636602)
- Full i18n support (LP: #637128)
- Avoids the crash on Super-key-shortcuts with places. (LP: #632460)
- Pressing enter in search mode should activate the first result
(LP: #620945)
- Esc close the places view (LP: #599891)
- Launcher shouldn't 'fold' when hovering on a quicklist (LP: #632079)
* update debian/libunity0.symbols
-- Didier Roche <didrocks@ubuntu.com> Tue, 14 Sep 2010 20:11:57 +0200
unity (0.2.36-0ubuntu1) maverick; urgency=low
* New upstream release:
- Fix width of home-button on panel, so groove aligns with right edge of
launcher, fixes (LP: #630031)
- migration script to transition first time new people to unity
(LP: #622146)
- Quicklist name disappearing (LP: #627666)
* debian/unity.install:
- install libexec in unity package (for migration tool)
* debian/libunity0.symbols:
- update symbol
-- Didier Roche <didrocks@ubuntu.com> Thu, 09 Sep 2010 19:13:29 +0200
unity (0.2.34-0ubuntu1) maverick; urgency=low
* New upstream release:
- Use gettext plural form (LP: #625199)
- Fix newly pinned app is removed from the launcher on closing that app but
works fine afterward (LP: #614329)
- Fix Memory leak in places (LP: #628588)
* remove debian/source/:
- revert to previous format, seems to confuse daily build and we don't have
anymore bin patch
* remove upstreamed debian/trash.png, debian/applications.png and
debian/files.png
* debian/rules:
- remove copying debian/*png
* debian/libunity0.symbols:
- refreshed
-- Didier Roche <didrocks@ubuntu.com> Fri, 03 Sep 2010 17:00:45 +0200
unity (0.2.32-0ubuntu4) maverick; urgency=low
* Backport a fix for new tiles being unresponsive (lp: #623953)
-- Sebastien Bacher <seb128@ubuntu.com> Thu, 02 Sep 2010 11:20:34 +0200
unity (0.2.32-0ubuntu3) maverick; urgency=low
* Backport Gord's changes to fix scrolling and click issues in the
launcher and Neil's changes for the recent artwork changes
* debian/source:
- use format 3
- list binaries that changed in the backport
-- Sebastien Bacher <seb128@ubuntu.com> Tue, 31 Aug 2010 16:39:52 +0200
unity (0.2.32-0ubuntu2) maverick; urgency=low
* debian/control: clean the build-depends on libvala it's not required
-- Sebastien Bacher <seb128@ubuntu.com> Thu, 26 Aug 2010 22:41:53 +0200
unity (0.2.32-0ubuntu1) maverick; urgency=low
* New upstream release.
* debian/libunity0.symbols: new version update
-- Sebastien Bacher <seb128@ubuntu.com> Thu, 26 Aug 2010 20:07:01 +0200
unity (0.2.30-0ubuntu1) maverick; urgency=low
* New upstream release fixing those issues:
- clicking on an app window in workspace switcher does not get it to focus
(lp: #612327)
- App name stays in panel after exit (lp: #613087)
- Bright line at the bottom of the launcher bar (lp: #613084)
- additional round corner when clicking on application places item
(lp: #612542)
- removing active application in the launcher make unity crashes
(lp: #612535)
- Intermittent loss of all input (lp: #607519)
- Wallpaper picture-options are not all taken into account (lp: #605788)
- Add some sort of hint that the Ubuntu circle is click-able (lp: #592787)
- doesn't render appmenu accelerators correctly (lp: #601011)
- should highlight the selected items (lp: #600946)
- Files Place displays mimetype icons for file items when
thumbnails are available (lp: #599896)
* debian/control: build-depends on libxcb-icccm1-dev and libutouch-grail-dev
-- Sebastien Bacher <seb128@ubuntu.com> Thu, 26 Aug 2010 18:31:40 +0200
unity (0.2.28-0ubuntu2) maverick; urgency=low
* Backported change to fix a bug where some launcher icons are not there
-- Sebastien Bacher <seb128@ubuntu.com> Fri, 20 Aug 2010 15:40:20 +0200
unity (0.2.28-0ubuntu1) maverick; urgency=low
* New upstream release fixing those bugs:
- Files Place empty search view is not implemented (lp: #607764)
- poor battery performance in Unity (lp: #599425)
- When launching an app, grids glow around its icon (lp: #610250)
- Add some sort of hint that the Ubuntu circle is click-able (lp :#592787)
- the buttons to display extra items are not updated correctly (lp: #604958)
- launcher bubbles flickers a lot when places with scrollbars are displayed
(lp: #599911)
- white square displayed next to indicators crashing unity (lp: #601014)
- Display removable media (USB device, etc.) on the launcher (lp: #619695)
- Add support for DND between workspaces (lp: #594160)
- indicators dont get focus in workspace switch mode (lp: #612323)
- Workspace switch cleanups (lp: #594163)
- workspace switcher should have a title on hover (lp: #614926)
* debian/control:
- build-depends on libpango1.0-dev to match the configure
* debian/libunity0.symbols:
- new version update
* debian/patches/01_show_gicons.patch:
- the change is in the new version
-- Sebastien Bacher <seb128@ubuntu.com> Thu, 19 Aug 2010 18:34:26 +0200
unity (0.2.26-0ubuntu1) maverick; urgency=low
* New upstream release.
- Fix mutter grabbing the [Super] key and breaks the shorcuts
overlay (LP: #612992)
- Fix flattened icons move when expansion is triggered by a mouse over a
flattened launcher item (LP: #600977)
- Holding down super should reveal a list of keyboard shortcuts
(LP: #610366)
- Update the applications model when changes are detected (LP: #610382)
- Implement Applications Place Software Center integration (LP: #608179)
- Files Place home screen should have a Recent group (LP: #607815)
* debian/patches/01_show_gicons.patch:
- adapt with latest libindicator change
* update debian/libunity0.symbols
-- Didier Roche <didrocks@ubuntu.com> Fri, 13 Aug 2010 15:13:24 +0200
unity (0.2.24-0ubuntu1) maverick; urgency=low
* New upstream release.
- makes sure to load translations from .desktop files (LP: #612494)
- get launcher events working correctly
- better spaces interactions
- new custom rendering for radiobutton- and checkmark-items in quicklist
(LP: #607251)
* debian/libunity0.symbols:
- update symbol file
* debian/control:
- build-dep on libmutter-dev 2.31.5
- bump Standards-Version to latest
* debian/patches/01_add_dbusmenu_glib_vapi.patch, 02_i18n_launcher.patch:
- removed
-- Didier Roche <didrocks@ubuntu.com> Fri, 06 Aug 2010 16:17:12 +0200
unity (0.2.22-0ubuntu1) maverick; urgency=low
* New upstream release.
- Add support for window control buttons on the panel (LP: #610014)
- Create a files group model for downloads (LP: #610370)
- Fix odd representation of (partially) off-screen windows (LP: #594221)
- Fix selected category doesn't match the displayed one after a place
switch (LP: #604949)
- Move places shortcuts to the launcher (LP: #610015)
- Fix wrong arrow location in place views (LP: #604800)
- Launcher icons no more folded when launcher first starts (LP: #601107)
* debian/control:
- bump clutk build-dep
* debian/patches/02_disable_expandable_menu.patch,
debian/patches/03_strip_underscore_on_quicklist.patch,
debian/patches/04_fix_scroller_focus_issue.patch,
debian/patches/05_fix_ws_switching.patch:
- removed
* debian/patches/02_i18n_launcher.patch:
- from trunk, support use localized apps name (LP: #612494)
-- Didier Roche <didrocks@ubuntu.com> Mon, 02 Aug 2010 15:55:16 +0200
unity (0.2.20-0ubuntu2) maverick; urgency=low
* Misc fixes from git
- debian/patches/03_strip_underscore_on_quicklist.patch
- debian/patches/04_fix_scroller_focus_issue.patch
- debian/patches/05_fix_ws_switching.patch
-- Didier Roche <didrocks@ubuntu.com> Tue, 27 Jul 2010 10:59:25 +0200
unity (0.2.20-0ubuntu1) maverick; urgency=low
* New upstream release.
- Right click and selecting application doesn't launch it (LP: #592817)
- Add some hint that the Ubuntu circle is click-able (LP: #592787)
- Remove unpinned launchers when quitting the app (LP: #608492)
- add to launcher isn't changed to remove from launcher (LP: #606266)
- quicklist should be hidden when drag and drop a launcher (LP: #606258)
- Fix reorganizing launchers (LP: #600738)
- Removing active application makes the application closes (LP: #598175)
- UnityLauncherQuicklistMenu clutter_actor_queue_relayout() warning
(LP: #599718)
* debian/control:
- bump libclutk-dev to latest
* debian/patches/01_add_dbusmenu_vapi_file.patch:
- add missing file
* debian/patches/02_disable_expandable_menu.patch:
- disable latest changes making mutter respawning with some intel card
-- Didier Roche <didrocks@ubuntu.com> Thu, 22 Jul 2010 22:37:56 +0200
unity (0.2.18-0ubuntu1) maverick; urgency=low
* New upstream release.
- can't drag and drop item to last position in launcher (LP: #595819)
- set a solid color as background (LP: #594232)
- select a place by default (LP: #601020)
- Support offline shortcuts in quicklist (LP: #595842)
- keyboard focus in places should default to the search entry (LP: #599888)
- fix various search issues in places (LP: #600732, #604964)
- contracted/expanded feature doesn't take mouse position into account
(LP: #595878)
- Use X-GNOME-FullName when available for launcher hover text (LP: #594285)
- SIGSEGV in _clutter_stage_has_full_redraw_queued (LP: #594209)
* debian/control:
- bump libclutk-dev build-dep to latest
- add libdbusmenu-glib-dev, libgnome-desktop-dev and libgnomeui-dev deps
* add debian/patches/01_add_dbusmenu_glib_vapi.patch:
- not distribute yet, small fix in the vapi to make a method return an
unowned variable instead of an owned one
-- Didier Roche <didrocks@ubuntu.com> Fri, 16 Jul 2010 14:48:14 +0200
unity (0.2.16-0ubuntu1) maverick; urgency=low
* New upstream release.
- The launcher doesn't list some running softwares (LP: #601082)
- Design support for dynamic quicklist items (LP: #597259)
- In overlay mode clicking on an app icon should open/focus that appxi
(LP: #595130)
- Launcher doesnt go away when a full screen app is started (LP: #599422)
- Launcher grows beyond desktop bounds (LP: #600686)
- Can't focus indicators in places mode (LP: #598363)
- Extra file to distribute (LP: #598398)
- gtk_menu_popdown: assertion `GTK_IS_MENU (menu)' failed (LP: #599719)
-- Didier Roche <didrocks@ubuntu.com> Mon, 12 Jul 2010 15:51:11 +0200
unity (0.2.16-0ubuntu1~lucid1) lucid; urgency=low
* Backport to lucid ppa
-- Didier Roche <didrocks@ubuntu.com> Mon, 12 Jul 2010 16:24:58 +0200
unity (0.2.14-0ubuntu1) maverick; urgency=low
* New upstream release.
- fix wrong window geometry (LP: #578545)
- fix quicklist items were unresponsive when the mouse was overing over them
(LP: #598561)
- fix can't drag and drop item to last position in launcher (LP: #595819)
- removes/unfavorites apps on drag out, (LP: #592744)
- fix contracted/expanded feature doesn't take mouse position into account
(LP: #595878)
- fix really slow to display place icons (LP: #599901)
- display files thumbnails (LP: #599896)
* debian/control:
- recommend ubuntu-netbook-default-settings as the session file is there
and a lot of people could install unity without the session file
- build-dep on last clutk
-- Didier Roche <didrocks@ubuntu.com> Thu, 01 Jul 2010 19:08:22 +0200
unity (0.2.14-0ubuntu1~lucid1) lucid; urgency=low
* Backport to lucid UNE ppa
* debian/control
- recommends ubuntu-netbook-unity-default-settings
-- Didier Roche <didrocks@ubuntu.com> Fri, 02 Jul 2010 08:18:41 +0200
unity (0.2.12-0ubuntu2) maverick; urgency=low
* debian/control, add indicators as recommends:
indicator-appmenu, indicator-application, indicator-sound,
indicator-datetime, indicator-messages, indicator-me,
indicator-session,
-- Didier Roche <didrocks@ubuntu.com> Mon, 28 Jun 2010 13:56:08 +0200
unity (0.2.12-0ubuntu1) maverick; urgency=low
* New upstream release:
- reordered applications launchers don't save their location (LP: #592087)
- cannot close panel menus unless clicking on particular zones of the
display (LP: #595880)
- Add support for switching workspaces (LP: #594157)
- Indicators should listen to show/hide from GtkWidget (LP: #590920)
- Race in expose manager event processing (LP: #588299)
- Files Place (View) - add support for file grouping (LP: #597256)
- Apps Place (View) - add basic support (LP: #597257)
* debian/patches/01_draw_background_with_nautilus_off.patch:
- integrated upstream
* debian/control:
- add libclutk-dev as a dep to libunity-dev
- bump clutk, dee and bamf dep to latest
-- Didier Roche <didrocks@ubuntu.com> Thu, 24 Jun 2010 21:12:40 +0200
unity (0.2.12-0ubuntu1~ppa1) lucid; urgency=low
* Backport to lucid ppa
-- Didier Roche <didrocks@ubuntu.com> Fri, 25 Jun 2010 09:23:25 +0200
unity (0.2.10-0ubuntu1) maverick; urgency=low
* New upstream release:
- Panels don't reappear after leaving fullscreen (LP: #578956)
- Background seems to be wrongly detecting screen size (LP: #578686)
- Unity panels don't disapear when VLC is on full side mode (LP: #583053)
- Clicking on launcher does not raise the last used window of the
application (LP: #592583)
* debian/netbook-launcher.preinst, debian/unity.preinst:
- add debhelper token
* debian/patches/01_draw_background_with_nautilus_off.patch:
- draw background when nautilus don't draw desktop
-- Didier Roche <didrocks@ubuntu.com> Thu, 17 Jun 2010 18:35:26 +0200
unity (0.2.10-0ubuntu1~lucid1) lucid; urgency=low
* Unity lucid version doesn't break maximus as in different session
-- Didier Roche <didrocks@ubuntu.com> Fri, 18 Jun 2010 08:58:10 +0200
unity (0.2.8-0ubuntu1) maverick; urgency=low
* New upstream release.
(LP: #592120, #590728, #580104, #586015, #587237, #582530, #586002, #591742)
* removed patches integrated upstream:
debian/patches/01_drop_mutter_req.patch
debian/patches/02_make_perceptualdiff_optional.patch
debian/patches/03_use_new_mutter_plugin_init_order.patch
debian/patches/99_autoconf.patch
* debian/control:
- remove libwnck-dev dep
-- Didier Roche <didrocks@ubuntu.com> Thu, 10 Jun 2010 19:21:55 +0200
unity (0.2.8-0ubuntu1~lucid1) lucid; urgency=low
* Unity lucid version doesn't break maximus as in different session
-- Didier Roche <didrocks@ubuntu.com> Fri, 11 Jun 2010 22:18:30 +0200
unity (0.2.7-0ubuntu2) maverick; urgency=low
* debian/rules:
- include gnome.mk for installing default schema in /usr
* debian/unity.preinst:
- remove schema in /etc installed by previous package
* debian/control:
- Add transitional netbook-launcher package, and have Unity
C/R/P: netbook-launcher.
- Add Breaks: maximus as incompatible in with Unity
* debian/rules:
- Force an epoch bump on the transitional netbook-launcher package,
since the original package has a higher version.
* debian/unity.preinst:
- Remove netbook-launcher autostart .desktop conffile on upgrade.
* debian/copyright:
- fix typo
-- Didier Roche <didrocks@ubuntu.com> Wed, 09 Jun 2010 13:29:48 +0200
unity (0.2.7-0ubuntu1) maverick; urgency=low
* New upstream release.
* debian/copyright:
- update to latest copyright change
* debian/libunity-dev.install:
- now unity ship a .pc file
* debian/control:
- add to -dev package .pc file dependencies
-- Didier Roche <didrocks@ubuntu.com> Tue, 08 Jun 2010 12:52:04 +0200
unity (0.2.6-0ubuntu1) maverick; urgency=low
* New upstream release.
* add debian/watch
* update debian/copyright
* debian/control:
- change HomePage
- update Standards-Version
- remove liblauncher-dev as a build-dep
- bump buil-dep to latest
- provides indicator-renderer
- change the description
- remove unsupported Breaks: transition on mutter
- remove uneeded dep on -dev package
- remove recommends. Will be in seed now
- use unity-dbg as debug package
* debian/rules:
- make it more sane in ordering includes/rules
- fix rm *{,l}a files
- use unity-dbg as debug package
* debian/libunity-dev.install:
- install vapi file
* debian/patches/01_drop_mutter_req.patch:
- don't depend on extra mutter functionality
* debian/patches/02_make_perceptualdiff_optional.patch, debian/control:
- remove perceptualdiff as will be optional
* debian/patches/03_use_new_mutter_plugin_init_order.patch:
- new registration order with plugins for mutter
* debian/patches/99_autoconf.patch:
- refresh for change in configure.ac
-- Didier Roche <didrocks@ubuntu.com> Mon, 07 Jun 2010 12:21:02 +0200
unity (0.2.4-0ubuntu1) maverick; urgency=low
* New upstream release.
* debian/control:
- replace libwncksync-dev by libbamf-dev
- replace libdbusmodel-dev by libdee-dev
-- Didier Roche <didrocks@ubuntu.com> Thu, 27 May 2010 19:07:31 +0200
unity (0.2.2-0ubuntu1) lucid; urgency=low
* New upstream release.
* debian/control:
- bump libclutk-dev, libdbusmodel-dev and libclutk-dev and libmutter-dev
build-dep
- add perceptualdiff build-dep
- libunity-places0 removed in favor of libunity0 containing the new library
for unity and the -private one.
* renamed *.install file accordingly
-- Didier Roche <didrocks@ubuntu.com> Fri, 16 Apr 2010 18:02:43 +0200
unity (0.1.24-0ubuntu1) lucid; urgency=low
* debian/control:
- add debug package to both unity and libunity-places0
- bump clutk, liblauncher and wncksync build-dep
* New upstream release.
-- Didier Roche <didrocks@ubuntu.com> Fri, 19 Mar 2010 15:40:10 +0100
unity (0.1.22-0ubuntu1) lucid; urgency=low
* New upstream release.
* debian/control:
- bump libclutk-dev and liblauncher-dev build-dep
* debian/rules:
- include gnome.mk to call dh_gconf
* debian/unity.install:
- install locales and gconf schema
-- Didier Roche <didrocks@ubuntu.com> Thu, 11 Mar 2010 20:36:49 +0100
unity (0.1.20-0ubuntu1) lucid; urgency=low
* New upstream release.
* debian/control:
- bump clutk, liblauncher and wncksync build-dep
-- Didier Roche <didrocks@ubuntu.com> Thu, 04 Mar 2010 20:47:17 +0100
unity (0.1.18-0ubuntu1) lucid; urgency=low
* New upstream release.
* debian/control:
- remove maximus as a recommend
- bump libclutk-dev and liblauncher-dev build-dep
-- Didier Roche <didrocks@ubuntu.com> Fri, 26 Feb 2010 13:44:42 +0100
unity (0.1.16-0ubuntu1) lucid; urgency=low
* New upstream release.
* debian/control:
- unity now depends on unity-asset-pool
- bump libclutk-dev and liblauncher-dev build-dep
- add intltool build-dep
- add indicator-datetime and chromium-browser as recommends
* debian/rules:
- remove -Wall from CFLAGS, FTFBS due to unused reference
-- Didier Roche <didrocks@ubuntu.com> Thu, 18 Feb 2010 20:15:25 +0100
unity (0.1.14-0ubuntu1) lucid; urgency=low
* New upstream release
* debian/control:
- bump libclutk-dev and liblauncher-dev build-dep
-- Didier Roche <didrocks@ubuntu.com> Thu, 11 Feb 2010 20:05:44 +0100
unity (0.1.12-0ubuntu1) lucid; urgency=low
* debian/control:
- remove netbook-launcher transitional package as the old one will
be shipped in lucid
- remove C/R/P as well
- recommends maximus and ubuntu-netbook-unity-default-settings as we
have no more meta-package for it
* debian/rules:
- remove DEB_DH_GENCONTROL_ARGS_netbook-launcher rule for
transitional package
* remove debian/unity.preinst as we don't remove netbook-launcher now
-- Didier Roche <didrocks@ubuntu.com> Mon, 08 Feb 2010 13:40:19 +0100
unity (0.1.12) lucid; urgency=low
* new upstream version:
* debian/control:
- bump libclutk build-dep
- dep on liblauncher-dev now
- add Breaks: mutter (<< 2.28.1~git20091208-1ubuntu5)
-- Didier Roche <didrocks@ubuntu.com> Thu, 04 Feb 2010 20:47:31 -0800
unity (0.1.10-0ubuntu1~ppa3) lucid; urgency=low
* debian/control:
- libunity-places-dev should depends on libunit-places0
-- Didier Roche <didrocks@ubuntu.com> Fri, 29 Jan 2010 14:58:50 +0100
unity (0.1.10-0ubuntu1~ppa2) lucid; urgency=low
* debian/control:
- add unity-place-applications as unity recommends
-- Didier Roche <didrocks@ubuntu.com> Fri, 29 Jan 2010 14:37:00 +0100
unity (0.1.10-0ubuntu1~ppa1) lucid; urgency=low
[ Martin Pitt ]
* debian/unity.preinst: Fix version comparison for cleaning up the obsolete
netbook-launcher autostart .desktop.
[ Didier Roche ]
* New upstream release
* debian/control:
- add libindicator-dev, libunity-misc and libdbusmodel-dev build-dep
- remove autotools-dev build-dep
- bump libclutk-dev and libmutter-dev build-dep
- add libunity-places0 and libunity-places-dev packages
* add debian/libunity-places0.install and debian/libunity-places-dev.install
-- Didier Roche <didrocks@ubuntu.com> Fri, 29 Jan 2010 12:14:44 +0100
unity (0.1.8-0ubuntu1~dxppa2) lucid; urgency=low
* Add DEBHELPER token to debian/unity.preinst
* debian/control: add unused ${misc:Depends} to netbook-launcher for
lintian cleaning
-- Didier Roche <didrocks@ubuntu.com> Thu, 21 Jan 2010 14:40:03 +0100
unity (0.1.8-0ubuntu1~dxppa1) lucid; urgency=low
[ Martin Pitt ]
* debian/control: Drop Vcs-Bzr headers, until unity is properly registered
in Launchpad.
[ Didier Roche ]
* new upstream release
* debian/control:
+ remove uneeded gnome-common build-dep (don't run autogen during build)
+ bump clutk build-dep
+ change maintainer field
* debian/rules: remove DEB_CONFIGURE_SCRIPT (don't run autogen)
-- Didier Roche <didrocks@ubuntu.com> Thu, 21 Jan 2010 14:33:30 +0100
unity (0.1.5+r69) lucid; urgency=low
* debian/rules: Fix the dpkg-gencontrol invocation.
-- Martin Pitt <martin.pitt@ubuntu.com> Tue, 12 Jan 2010 17:55:44 +0100
unity (0.1.5+r68) lucid; urgency=low
* debian/control: Add transitional netbook-launcher package, and have unity
C/R/P: netbook-launcher. This can be dropped after lucid's release.
* Add debian/unity.install (now needed because we build two binaries).
* debian/control: Explicitly add mutter dependency, since it's not covered
by shlibs.
* Add debian/unity.preinst: Remove netbook-launcher autostart .desktop
conffile on upgrade.
* debian/rules: Don't generate shlibs/maintainer script code for private
shared libraries.
* debian/rules: Force an epoch on the transitional netbook-launcher package,
since the original package has a higher version.
-- Martin Pitt <martin.pitt@ubuntu.com> Tue, 12 Jan 2010 17:25:43 +0100
unity (0.1.5+r60) lucid; urgency=low
* configure with libmutter-dev
-- Didier Roche <didrocks@ubuntu.com> Tue, 12 Jan 2010 14:23:23 +0100
unity (0.1.5+r58) lucid; urgency=low
* New release from trunk
* debian/control
- Add mutter as a dependency
-- Didier Roche <didrocks@ubuntu.com> Tue, 12 Jan 2010 11:27:57 +0100
unity (0.1.5-0ubuntu2) lucid; urgency=low
* debian/control
- Bumping build depends for libgee-dev to libgee-dev (>= 0.5.0)
-- Ken VanDine <ken.vandine@canonical.com> Mon, 21 Dec 2009 21:31:19 -0500
unity (0.1.5-0ubuntu1) lucid; urgency=low
* New snapshot
- Build-Depend on valac and libvala-dev (>= 0.7.8)
-- Ken VanDine <ken.vandine@canonical.com> Fri, 18 Dec 2009 15:57:55 -0500
unity (0.1.5) karmic; urgency=low
* New release
-- Neil J. Patel <neil.patel@canonical.com> Tue, 15 Dec 2009 12:24:03 +0000
unity (0.1.0~ppa2) karmic; urgency=low
* debian/control
- Added build dep for valac
-- Ken VanDine <ken.vandine@canonical.com> Fri, 06 Nov 2009 11:53:38 -0500
unity (0.1.0~ppa1) karmic; urgency=low
* Initial Packaging (LP: #474944)
-- Ken VanDine <ken.vandine@canonical.com> Fri, 06 Nov 2009 08:40:43 -0500
|