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 | unity (3.6.2-0ubuntu1) natty; urgency=low * New upstream release: - unity-window-decorator crashed with SIGSEGV in g_cclosure_marshal_VOID__OBJECT() (LP: #724874) - blinking screen at searching "gn" (LP: #674022) - Top panel isn't multimonitor aware (LP: #675862) - Leaving fullscreen causes the launcher to rapidly appear and then disappear (LP: #718054) - migrate_favorites.py crashed with GError in __main__: Bad key or directory name: "/desktop/unity/launcher/favorites/app-Watch TV Shows.desktop/type": ` ' is an invalid character in key/directory names (LP: #722403) - does not display icons until hovered (LP: #726033) - Unintuative Application Matching (LP: #726711) - icons missing in the dash recent files and directory search returns (LP: #727824) - some result cache broke the dash search (LP: #728961) - Protect against conflicts with unity super keys (LP: #729166) - not installed apps sorting in global search (LP: #636996) - No 'safely remove' option is present in the unity menu when a usb disk is inserted (LP: #660010) - Dash - Implement new Dash design! (LP: #683762) - Expose or add missing nux functions for a11y support (LP: #701672) - Launcher - A single finger 'hold' on a Launcher app icon should open the quicklist (LP: #702486) - No "Search" default entry (LP: #710794) - Icon in Launcher should be home folder icon (LP: #721121) - Launcher bindings require Super to be held down to work (LP: #727580) - compiz crashed with SIGSEGV in nux::CairoGraphics::GetBitmap() (LP: #727636) - Unity "Lens" do not scroll to bottom (LP: #719616) - Double-click on panel to unmaximize only works in right half (LP: #725529) - clicking multiple time on the bfb makes the logo darker and darker (LP: #727146) - the launcher should go away if it has been open using the keyboard and the mouse is not moved while the cursor is on it (LP: #727746) - migrate_favorites.py crashed with OSError in makedirs(): [Errno 13] Permission denied: '/home/aquarius/.local/share/unity' (LP: #723656) - No feedback when unmounting busy device in Unity (LP: #730638) -- Didier Roche <didrocks@ubuntu.com> Mon, 07 Mar 2011 19:10:27 +0100 unity (3.6.0-0ubuntu2) natty; urgency=low * services/panel-indicator-entry-accessible.c: - Use dispose function, not finalize function, to notify ATK that an entry is removed. Fixes continual panel crashes. LP: #727788 -- Michael Terry <mterry@ubuntu.com> Wed, 02 Mar 2011 09:24:07 -0500 unity (3.6.0-0ubuntu1) natty; urgency=low * New upstream release. - Menu bar becomes blank periodically (LP: #683065) - Unity does not update when screen resolution changes (LP: #684539) - [dash] Keyboard navigation not implemented as specified (LP: #608132) - Dash - build the Desktop Dash (LP: #683719) - Quicklists not working (LP: #719780) - Launcher auto hide animation has a life of it's own / Unity launcher constantly sliding in and out without user interaction (LP: #717364) - compiz crashed with SIGSEGV in PrivateWindow::getModalTransient() (LP: #726235) - Don't show launcher number overlays on tap of super (LP: #726630) - Optimize texture memory usage for unexposed view icons (LP: #609994) - Unity should handle video-out keycodes that correspond to Super + P + Enter (LP: #632632) - dash - wrong count of remaining items to see (LP: #662605) - dash - x search box button visibility (LP: #662614) - Touch window management gesture previews (LP: #683688) - unity not working on rotated displays (LP: #694596) - unity main top bar in displays in wrong area (multi-head issue) (LP: #707209) - unity place group visual improvements (LP: #714528) - Implement ref_state_set for toplevel ATK objects in the panel service (LP: #715299) - Alt + F1 doesn't show the launcher if hidden (LP: #717125) - Keyboard navigation: Choosing a window from launcher doesn't change input focus. (LP: #721811) - Quicklists not closing when losing focus (LP: #724739) - wrong animation in the launcher (LP: #724956) - Window management - windows go below launcher and panel (LP: #725463) - Media and PrintScreen keys don't work (LP: #621887) - super-shortcuts should be "serializable" (LP: #638936) - Chromium icon in Unity is distorted / some scaled distored in the unity place applications (LP: #670169) - launcher stays on screen when it shouldn't | false show/hide positives on the launcher (LP: #711176) - Keyboard navigation: no public API to know the current Laucher Icon selected when key nav is activated (LP: #722660) - Require to implement AtkSelection on the Launcher (LP: #723804) - LauncherIcon accessibility support requires to expose the selection state (LP: #723806) - Add keyboard shortcuts for launching separate instances of applications (LP: #724865) * debian/control: - dep on latest nux -- Didier Roche <didrocks@ubuntu.com> Tue, 01 Mar 2011 14:27:16 +0100 unity (3.4.6-0ubuntu2) natty; urgency=low * Cherry-pick some fixes from trunk to ensure at least having those in alpha3: - stop make the launcher dance (LP: #717364) - fix FTBFS on armel (LP: #724615) -- Didier Roche <didrocks@ubuntu.com> Mon, 28 Feb 2011 20:58:19 +0100 unity (3.4.6-0ubuntu1) natty; urgency=low * New upstream release. - dash times out (LP: #662618) - possible memory leak in compiz when using places, dashboard (LP:#720446) - compiz crashed with SIGSEGV in IconTexture::~IconTexture() (LP: #721907) - dash - search string not always taken into account (LP: #701569) - Unity allows you to Quit itself (LP: #705536) - invisible window border problems (LP: #710271) - Slowliness in the file places (LP: #710791) - add super shortcuts to the launcher - logic (LP: #721264) - key navigation doesn't activate trash, keys, expo or places (LP:#723141) - Super-shortcuts for apps, files, and workspace switcher (LP: #617356) - New launcher tile super key overlay aesthetic (LP: #646712) - add cursor-key navigation to quicklists (LP: #701543) - Super key should open Dash (LP: #706713) - Dash view should use "Prefferred Applications" icons where appropriate (LP: #708479) - some partitions appear with questionmark icon (LP: #710809) - Unity wrongly resizes thumbnails after first opening of Files place (LP:#721123) - Change the fading and showing curve effect when hovering the bfb (LP:#721125) - Recent files appear duplicated in the Dash (LP: #646758) - All Applications tab only shows first 100 applications (LP: #660979) - slide animation typo in unity configuration (LP: #723354) - Place icons should be in their respective packages (LP: #672447) - Trash right click menu is positioned incorrectly (LP: #718880) - Require to use gconf to check on unity and the panel-service if the accessibility should be enabled (LP: #723699) * debian/control: - dep on latest nux -- Didier Roche <didrocks@ubuntu.com> Thu, 24 Feb 2011 20:16:29 +0100 unity (3.4.4-0ubuntu2) natty; urgency=low * debian/control - bump build depends for libindicator-dev to >= 0.3.19 -- Ken VanDine <ken.vandine@canonical.com> Thu, 17 Feb 2011 15:26:07 -0500 unity (3.4.4-0ubuntu1) natty; urgency=low * New upstream release: - add systray support (LP: #655140, #596879) - Dragging and holding a selection over an entry in the Launcher should spread out windows belonging to that application (LP: #607796) - Unity shouldn't allow to Quit itself (LP: #705536) - Launcher should not be locked in place until the pointer is actually in the corner (LP: #706146) - Top Panel does not respect GTK theme (LP: #663524) - Update Unity-Panel Style implementation (LP: #685830) - Add keyboard shortcut for the panel (LP: #701663) - clicking on the ubuntu logo doesn't close the dash dialog (LP: #708762) - "Escape" doesn't close the dash screen (LP: #711195) - migrate_favorites.py crashed with GError in __main__: Bad key or directory name: "/desktop/unity/launcher/favorites//type": Can't have two slashes '/' in a row (LP: #716382) - Icon state does not revert when remote libunity user closes (LP: #716863) - transparency in places window a bit too high (LP: #718357) - Navigating between menus briefly gives focus back to applications (LP: #690714) - pace on cursor navigation mode should act like middle click (LP: #717213) - Do not switch to fallback menu on mouse-over (LP: #703555) - Fix the panel service and menus atk object hierarchy (LP: #704350) - Expose home panel button via ATK (LP: #715295) * debian/source_unity.py: enhanced apport hook for incoming compiz hook * debian/control: - bump nux and libunity-misc dep -- Didier Roche <didrocks@ubuntu.com> Thu, 17 Feb 2011 20:37:42 +0100 unity (3.4.2-0ubuntu2) natty; urgency=low * backport some fixes from trunk like launcher can be wrongly shown (LP: #716803) -- Didier Roche <didrocks@ubuntu.com> Fri, 11 Feb 2011 09:43:29 +0100 unity (3.4.2-0ubuntu1) natty; urgency=low * New upstream release: - add --distro switch to remove local installation of unity with default options (LP: #715703) - global search and speedups in places - Using fade effect to cut the window Title when it's longer than the panel (LP: #694924) - Launcher - Add ability for apps to indicate progress through Launcher icon (LP: #676596) - calling unity should kill unity-panel-service (LP: #711289) - unity places should return a default icon when no matching icon is found (LP: #711200) - the launcher should start hidding when an icon is clicked (LP: #709178) - Highlight drag-friendly Launcher tiles when dragging a file (LP: #607782) - Fix migrate_favorites.py crashed with OSError in get_log_file(): [Errno 2] No such file or directory: '/home/ubuntu/.local/share/unity' (LP: #711964) - places should support wrong Icon= format (with extensions) (LP: #711189) - unity crashed with AttributeError in reset_unity_compiz_profile(): 'NoneType' object has no attribute 'get_default_value' (LP: #711105) - unity crashed with GError in reset_unity_compiz_profile() (LP: #710876) - Middle click on application icon should open a new window (LP: #709707) - Launcher - Add interaction to support dragging and dropping behind the launcher (LP: #702482) - Launcher - Enable dragging and dropping of files & folders to Launcher icons (LP: #676549) - Launcher - Add number notifier to Launcher icons (LP: #676455) - Support dragging files to trash to delete them (LP: #619686) - [launcher] Indicator-only applications showing as open applications (LP: #703396) - Unity does not accept mouse clicks (LP: #683328) - dash is empty (LP: #710792) * debian/control: - depends on latest nux -- Didier Roche <didrocks@ubuntu.com> Thu, 10 Feb 2011 20:45:47 +0100 unity (3.4.0-0ubuntu2) natty; urgency=low * Cherry-pick fix when the favorite migration tools is crashing on first run on new install (LP: #711964) -- Didier Roche <didrocks@ubuntu.com> Wed, 02 Feb 2011 18:00:35 +0100 unity (3.4.0-0ubuntu1) natty; urgency=low * New upstream release: - Add places back to unity - Add autoscroll to launcher (LP: #690096) - Fix performance issue due to redecorate windows (LP: #705427) - Change automaximize value to 75% of the workarea (LP: #708809) - The launcher should not let you dnd special icons (LP: #709119) - The launcher shouldn't move icon on right click dragging (LP: #709179) * Cherry-pick a small fix for not having places empty at start * debian/control: - recommends again places now that unity can support them -- Didier Roche <didrocks@ubuntu.com> Mon, 31 Jan 2011 18:40:50 +0100 unity (3.2.16-0ubuntu1) natty; urgency=low * New upstream release: - Add the Launcher BaseWindow to the a11y component only if a11y was initialized (LP: #705442) - Enable _NET_WM_WINDOW_TYPE_UTILITY windows (like gimp toolbox) to hide the Launcher (LP: #706109) - Fix the defaul indicators size, making them inconsistent (LP: #705803) - Always have the indicator session to the top right (LP: #705697) - Show launcher when places are activated (LP: #705948) - Fix memory leaks in dash (LP: #705705) - Support i18n (LP: #697166) - Enabling double click on the launcher to restore a maximized window (LP: #661049) - Update the title bar on tab change (LP: #691651) - Hide the launcher instantanly on key press or dash if we have already waited the launcher trigger time (LP: #705805) - Make sure keypad keys also work in the search entry (LP: #599902) - Dash elipsizes file and application names too soon, making them unreadable (LP: #632526) - Implement Places Group View (LP: #704493) * debian/control: - ensure we have latest bamf and nux -- Didier Roche <didrocks@ubuntu.com> Thu, 27 Jan 2011 14:43:29 +0100 unity (3.2.14-0ubuntu3) natty; urgency=low * debian/rules: - build .pot file now (LP: #697168) * debian/control: - rebuild for ABI break in compiz -- Didier Roche <didrocks@ubuntu.com> Thu, 27 Jan 2011 13:16:53 +0100 unity (3.2.14-0ubuntu2) natty; urgency=low * Backport a fix to remove invisible window on top at startup (LP: #705672) * debian/source_unity.py : - fixing typo (LP: #705702) -- Didier Roche <didrocks@ubuntu.com> Mon, 24 Jan 2011 17:38:22 +0100 unity (3.2.14-0ubuntu1) natty; urgency=low * New upstream release: - Use a padding of 6px for the appmenu and 3px for the other indicators. (LP: #684114) - appmenu doesn't correspond to currently focused application (LP: #69806) - Places tile view (LP: #697687) * remove inline patch to build tests against * debian/control: - recommends ubuntuone-control-panel-gtk - removed libunity*: seperate source now - bump libnux requirement * removed debian/libunity* * debian/source_unity.py: - enhance apport hook to report compiz (and xorg) information only on graphical bugs (the report can take time and would upload too many data for just a weird quick behavior bug for instance) -- Didier Roche <didrocks@ubuntu.com> Thu, 20 Jan 2011 19:24:47 +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
|