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
|
software-center (2.0.7debian7) unstable; urgency=low
* po: Fix cases where the translation of 'Software Center' contains
'Ubuntu', and replace all mentions of 'Ubuntu' in the translations
of 'Provided by Debian' by 'Debian' (and unfuzzy them).
* Fix cases where translations of categories do not appear (Closes: #602026)
* Bring back license information by removing a hard-coded Ubuntu check,
Closes: #603782
-- Julian Andres Klode <jak@debian.org> Wed, 24 Nov 2010 17:37:20 +0100
software-center (2.0.7debian6) unstable; urgency=low
* Fallback to applications-other icon if the requested icon is
not available (Closes: #592289)
* Replace Ubuntu-specific parts of the help (finally Closes: #564276)
* Import translation updates from Launchpad
* po/help: Add a German help translation, based on Ubuntu's one.
* "Correctly" build the documentation translations.
* po: Add fixed pt_BR Translations by Sergio Cipolla (Closes: #601755)
-- Julian Andres Klode <jak@debian.org> Mon, 22 Nov 2010 20:38:30 +0100
software-center (2.0.7debian5) unstable; urgency=medium
* urgency=medium as the previous versions are unusable.
* Update to new Xapian API (Closes: #596079); fix based on patch by
Olly Betts.
-- Julian Andres Klode <jak@debian.org> Mon, 13 Sep 2010 08:19:45 +0200
software-center (2.0.7debian4) unstable; urgency=low
* Determine CODENAME, DISTRO, RELEASE in version.py at run-time using
lsb_release instead of defining them at build-time.
-- Julian Andres Klode <jak@debian.org> Tue, 10 Aug 2010 17:31:39 +0200
software-center (2.0.7debian3) unstable; urgency=low
* Depend on lsb_release instead of recommending it; otherwise the program
does not start at all (because it calls lsb_release).
-- Julian Andres Klode <jak@debian.org> Sun, 08 Aug 2010 16:00:14 +0200
software-center (2.0.7debian2) unstable; urgency=low
* debian/changelog:
- Change distribution of 2.0.7debian1 to unstable (the old one was wrong).
* debian/control:
- Do not recommend python-launchpad-integration (Closes: #592175)
-- Julian Andres Klode <jak@debian.org> Sun, 08 Aug 2010 14:46:19 +0200
software-center (2.0.7debian1) unstable; urgency=low
* Merge versions 2.0.4, 2.0.5, 2.0.6, 2.0.7 from Ubuntu lucid:
- Fixes Canonical Partners handling (Closes: #579663)
* Merge the unbranded icons from trunk (revno 772) and use them.
* Cherry pick revisions 789 and 790 from trunk, and replace our own hack.
- data/unbranded-software-center.desktop.in:
+ add unbranded desktop file
- softwarecenter/distro/__init__.py:
+ add new "get_app_name", "get_app_description" methods for easier
branding of downstreams
* Upgrade Standards-Version to 3.9.1, no changes needed.
* setup.py: Handle + and - in changelog version number (Closes: #577108).
* Update Czech translation (Closes: #590856) [although translations should
normally be done in Launchpad for increased collaboration].
-- Julian Andres Klode <jak@debian.org> Mon, 02 Aug 2010 16:21:21 +0200
software-center (2.0.7) lucid-proposed; urgency=low
* softwarecenter/view/viewswitcher.py:
- fix crash if partner channel cannot be detected
(LP: #606452)
-- Gary Lasker <gary.lasker@canonical.com> Sat, 17 Jul 2010 01:35:07 -0400
software-center (2.0.6) lucid-proposed; urgency=low
[ Gary Lasker ]
* softwarecenter/view/viewswitcher.py:
- only reselect a channel node when a model is available
(LP: #578497)
[ Michael Vogt ]
* softwarecenter/view/viewswitcher.py:
- remove specal cases for partner now that soyuz
LP: #552560 is fixed (LP: #604693)
-- Michael Vogt <michael.vogt@ubuntu.com> Wed, 14 Jul 2010 18:01:38 +0200
software-center (2.0.5) lucid-proposed; urgency=low
[ Olivier Tilloy ]
* Fix the database update when run with a Turkish locale
(patch by M. Vefa Bicakci). LP: #581207
[ Michael Vogt ]
* softwarecenter/view/installedpane.py:
- do not crash if model is None (LP: #586306)
[ Matthew McGowan ]
* Fix draw artifacts in the back/forward buttons when the widgets
are resized (lp:~mmcg069/software-center/backforward-redraw-fix)
Fixes LP: #582143
-- Michael Vogt <michael.vogt@ubuntu.com> Mon, 17 May 2010 09:44:05 +0200
software-center (2.0.4) lucid-proposed; urgency=low
* Re-claim used memory after updating an existing AppStore with a
new one (LP: #577540), thanks to Olivier Tilloy
-- Michael Vogt <michael.vogt@ubuntu.com> Tue, 11 May 2010 23:32:56 +0200
software-center (2.0.3debian1) unstable; urgency=low
* Merge from Ubuntu lucid branch.
* debian/control:
- Only conflict with gnome-app-install versions << 1 (Closes: #579534).
* softwarecenter/view/catview.py:
- Use "Software Center" instead of "Ubuntu Software Center" on non-Ubuntu.
* debian/rules:
- Do not use "Debian Software Center", but "Software Center"; and replace
"for Debian" with "for your system" (Closes: #573776)
-- Julian Andres Klode <jak@debian.org> Thu, 29 Apr 2010 18:40:59 +0200
software-center (2.0.3) lucid-proposed; urgency=low
[ Michael Vogt ]
* debian/control:
- updated Vcs-Bzr location to point to lucid branch
* softwarecenter/apt/aptcache.py:
- fix flickering when a application is instaleld (LP: #563163)
[ Olivier Tilloy ]
* data/templates/AppDetailsView.html:
- fix missing padding for small details window sizes (LP: #560026)
* softwarecenter/view/widgets/searchentry.py:
- Set the search entry's text color to black when not empty.
This makes it readable on dark themes with a light text color by
default (LP: #500174)
* softwarecenter/app.py:
- avoid 100% usage when waiting for software-sources to finish
(LP: #459521)
* softwarecenter/view/navhistory.py:
- keep the search terms updated to ensure the navigation history
always has the latest used search terms (LP: #537512)
[ Kiwinote ]
* data/featured.menu.in:
- Update featured applications list per Desktop team (LP: #548534)
- Feature 'fretsonfire-game' rather than 'fretsonfire' (LP: #538646)
-- Michael Vogt <michael.vogt@ubuntu.com> Tue, 27 Apr 2010 19:06:44 +0200
software-center (2.0.2) lucid; urgency=low
* softwarecenter/view/appview.py:
- improve responsiveness of the listview by caching the
rendered icons (LP: #556290)
-- Michael Vogt <michael.vogt@ubuntu.com> Sun, 18 Apr 2010 13:42:50 +0200
software-center (2.0.1) lucid; urgency=low
[ Olivier Tilloy ]
* When computing the size of a PathPart, always set the requested height
of the parent PathBar. This prevents the navigation bar from
"disappearing" (its height was somehow set to 1) (LP: #564042)
[ Michael Vogt ]
* cherry r730 lp:~mmcg069/software-center/minor-change/changes:
- fix CellRendererAppView text rendering when using hicolor gtk theme
(LP: #564694)
* softwarecenter/view/viewswitcher.py:
- fix displaying duplicated entries in the partner channel
(LP: #564789)
* softwarecenter/view/availablepane.py,
softwarecenter/view/channelpane.py,
softwarecenter/view/installedpane.py:
- only send size information signals if we actually have a model
(LP: #564756)
* softwarecenter/view/availablepane.py:
- if we get a "search-terms-changed" signal while in the applicatin
details page it got delivered asynchronously and must be discarded
(LP: #563524)
-- Michael Vogt <michael.vogt@ubuntu.com> Fri, 16 Apr 2010 23:27:14 +0200
software-center (2.0) lucid; urgency=low
[ Michael Vogt ]
* softwarecenter/view/channelpane.py:
- fix crash when gdk window is not (yet) available (LP: #560320)
* softwarecenter/view/appdetailsview.py,
softwarecenter/distro/__init__.py,
softwarecenter/distro/Ubuntu.py:
- do not show "Free" for packages from the partner repository, we
don't know the status of the freeness there (LP: #552830)
* merged lp:~vish.../software-center/avoidmonochromeicon, many thanks
* re-enable action button if confirm dialog got canceled (LP: #562810)
* merged lp:~zkrynicki/software-center/improve-html, many thanks
(final bits for LP: #455320), add simple test
[ Matthew McGowan ]
* softwarecenter/view/availablepane.py:
- ensure we have a model before sending changed signal (LP: #560967)
* softwarecenter/view/dialogs.py:
- ensure image size does not grow out of proportion (LP: #560021)
* softwarecenter/view/appview.py:
- make rows more dynamic (LP: #557798)
* softwarecenter/view/widgets/pathbar_gtk_atk.py:
- fix resizing bugs in style-set events
[ Gary Lasker ]
* softwarecenter/view/navhistory.py:
- clear forward navigation history items from the
stack on an direct navigation, fixes regression
(LP: #563128)
* softwarecenter/view/channelpane.py:
- ensure we have a model before sending app-list-changed
signal (LP: #560716)
-- Michael Vogt <michael.vogt@ubuntu.com> Thu, 15 Apr 2010 01:25:12 +0200
software-center (1.1.26) lucid; urgency=low
[ Gary Lasker ]
* softwarecenter/app.py,
softwarecenter/view/softwarepane.py:
- correctly refresh the availablepane view on a
change to software sources (LP: #559539)
* softwarecenter/app.py,
softwarecenter/view/availablepane.py,
softwarecenter/view/navhistory.py:
- clear navigation history on a software channel refresh
because packages in the history stack might no longer
be available
[ Michael Vogt ]
* softwarecenter/view/appdetailsview.py:
- fix displaying removal warning when listview interface buttons
are used (LP: #561018)
-- Michael Vogt <michael.vogt@ubuntu.com> Tue, 13 Apr 2010 22:57:30 +0200
software-center (1.1.25) lucid; urgency=low
[ Gary Lasker ]
* softwarecenter/view/viewswitcher.py:
- fix intermittent AttributeError if a model doesn't
exist when checking node expanded state (LP: #554388)
* softwarecenter/view/viewswitcher.py:
- fix nasty list view errors when disabling partner
repository (LP: #556995)
* softwarecenter/view/appview.py:
- fix intermittent AttributeError in row selection
(LP: #552224)
* softwarecenter/view/availablepane.py:
- fix double call to set_category method
* softwarecenter/view/channelpane.py,
softwarecenter/view/installedpane.py:
- fix bug where clicking the "Search Results" navigation
button in the "Installed View" or in a PPA/channel
view has no effect (LP: #559732)
* softwarecenter/view/channelpane.py:
- fix bug where selecting a new PPA/channel while
a search is in effect in the current PPA/channel
does not display the new PPA/channel (LP: #559742)
[ Michael Vogt ]
* softwarecenter/apt/aptcache.py:
- add file monitor to detect changes in the dpkg status
when apt is run outside of software-center (LP: #432555)
* softwarecenter/view/appdetailsview.py:
- only show "needs updating" message if we have a component
associated with the software-item (LP: #542892)
* softwarecenter/db/database.py:
- when we have no package and no information no how to get it,
display unavailable message instead of a empty summary line
* merged lp:~mmcg069/software-center/pathbar-atk
- this makes the pathbar on top fully accessible with e.g.
orca (LP: #526384). Also fixes intermittent TypeError bug
(LP: #558895) and nav button visual artifact when selecting
a channel (LP: #531724). Many thanks!
* softwarecenter/view/appview.py:
- avoid blocking if a operation takes long
[ Zygmunt Krynicki ]
* softwarecenter/view/appdetailsview.py:
- use package name when application name is not available (LP: #549011)
-- Michael Vogt <michael.vogt@ubuntu.com> Sat, 10 Apr 2010 16:29:10 +0200
software-center (1.1.24) lucid; urgency=low
[ Michael Vogt ]
* softwarecenter/view/appview.py:
- make the applist better accessible by providing a text only
description of the selected item (LP: #455307)
* data/templates/AppDetailsView.html:
- make the app details view better accessible with orca/accersier
[ Gary Lasker ]
* softwarecenter/app.py,
softwarecenter/view/softwarepane.py,
softwarecenter/view/appview.py,
softwarecenter/view/appdetailsview.py,
softwarecenter/backend/aptd.py:
- maintain install/remove button sensitivity based on
status of individual rows to restore the ability
to do multiple simultaneous install/removes (LP: #529529)
- keep all install/remove menu items and buttons in
sync (LP: #551417)
- set "Install" button in details view insensitive when
switching to it from the list view during an install
(LP: #541844)
- use correct color for the list view "Install" button
when it is insensitive (LP: #550915)
* softwarecenter/view/appdetailsview.py:
- don't try to execute enable_action_button() if the
details view page has not yet been loaded (LP: #551419)
-- Michael Vogt <michael.vogt@ubuntu.com> Thu, 01 Apr 2010 11:22:00 +0200
software-center (1.1.23) lucid; urgency=low
[ Gary Lasker ]
* softwarecenter/app.py,
softwarecenter/view/viewswitcher.py:
- persist the state of the "Get Software" node expansion
between sessions (LP: #552307)
[ Michael Vogt ]
* softwarecenter/backend/aptd.py:
- run a-x-i when channels are added/removed
* softwarecenter/view/viewswitcher.py:
- fix UI glitch when new channels are found
* softwarecenter/view/appdetailsview.py:
- fix display of software unavailable for the given architecture
-- Michael Vogt <michael.vogt@ubuntu.com> Wed, 31 Mar 2010 11:08:23 +0200
software-center (1.1.22) lucid; urgency=low
* softwarecenter/db/update.py:
- fix crash when locale is not supported
* apt-xapian-index-plugin/*.py:
- fix deprecation warnings (LP: #548665)
* merged lp:~gary-lasker/software-center/channel-reloads, many
thanks!
* when the sources.list changes, detect that and update the list
dynamically (software-center-non-applications spec)
-- Michael Vogt <michael.vogt@ubuntu.com> Tue, 30 Mar 2010 16:50:34 +0200
software-center (1.1.21debian2) unstable; urgency=low
* softwarecenter/db/database.py:
- Fix a typo introduced in the last upload which caused exceptions.
* Complete the python-apt API fixes (Closes: #572073).
-- Julian Andres Klode <jak@debian.org> Mon, 29 Mar 2010 16:18:50 +0200
software-center (1.1.21debian1) unstable; urgency=low
* Merge with Ubuntu.
* Backport from Ubuntu bzr:
- softwarecenter/db/update.py:
+ fix crash when locale is not supported
- apt-xapian-index-plugin/*.py:
+ fix deprecation warnings (LP: #548665)
* softwarecenter/view/appview.py:
- Add from __future__ import with_statement for Python 2.5
* Update to new python-apt API and stop using has_key (Closes: #572073).
* debian/control:
- Depend on python-xdg (Closes: #574779)
- Recommend software-properties-gtk (Closes: #575202)
-- Julian Andres Klode <jak@debian.org> Mon, 29 Mar 2010 14:51:38 +0200
software-center (1.1.21) UNRELEASED; urgency=low
* softwarecenter/db/update.py:
- fix crash when locale is not supported
* apt-xapian-index-plugin/*.py:
- fix deprecation warnings (LP: #548665)
* merge branch from michaelforrest that does not empty box
for unavailalbe screenshots
* allow enabling components via "Use this source" button when
a software-item is in a component that is not yet enabled (like
"universe" on the live-cd)
-- Michael Vogt <michael.vogt@ubuntu.com> Thu, 25 Mar 2010 20:45:35 +0100
software-center (1.1.20) lucid; urgency=low
* merged lp:~mpt/software-center/help-2.0, many thanks!
* softwarecenter/distro/Ubuntu.py:
- show correct maintenance status for packages in the partner
channel
* softwarecenter/app.py:
- use glib.timeout_add_seconds()
* softwarecenter/distro/__init__.py, softwarecenter/distro/Ubuntu.py:
- add/implement "is_supported()"
* softwarecenter/view/appview.py:
- fix supported only view for packages
-- Michael Vogt <michael.vogt@ubuntu.com> Thu, 25 Mar 2010 17:53:43 +0100
software-center (1.1.19) lucid; urgency=low
[ Gary Lasker ]
* softwarecenter/view/channelpane.py:
- hide ratings in channel pane also (LP: #538129)
[ Michael Vogt ]
* softwarecenter/view/catview.py:
- fix i18n bug in category list (LP: #545102)
* merge lp:~kiwinote/software-center/use_new_icons, many
thanks!
* fix i18n issue in featured application (LP: #545095)
* merge lp:~kiwinote/software-center/bug530187, many thanks to
"Kiwinote" (LP: #530187)
-- Michael Vogt <michael.vogt@ubuntu.com> Thu, 25 Mar 2010 09:48:54 +0100
software-center (1.1.18) lucid; urgency=low
[ Michael Vogt ]
* data/templates/AppDetailsView.html:
- cherry pick progress nice bar improvements from
Michael Forrest (many thanks)
* softwarecenter/view/appdetailsview.py:
- show correct maintenance status for non applications
(LP: #538172)
* softwarecenter/view/appview.py:
- use "ubuntu-almost-fixed-height-mode" when available
to speed up the treeview drawing significantly
(LP: #514879)
* softwarecenter/view/softwarepane.py:
- set show_ratings to "false" because ratings&reviews are
cancelt for lucid (LP: #538129)
* softwarecenter/view/appview.py:
- only show active pane ratings if show_ratings is true
[ Gary Lasker ]
* data/ui/SoftwareCenter.ui:
- don't translate available pane notebook labels
(LP: #539371)
* softwarecenter/view/viewswitcher.py:
- when collapsing a node in the left pane (e.g. "Get Software"),
select the node (LP: 532774)
* softwarecenter/view/appview.py:
- tweak padding in list view buttons (LP: #537524)
* data/templates/AppDetailsView.html,
data/templates/CategoriesView.html:
- set following items as not draggable; screenshot thumbnail
in details view, "Featured Applications" icon and general
images in categories view (LP: #530163)
-- Michael Vogt <michael.vogt@ubuntu.com> Tue, 23 Mar 2010 10:13:26 +0100
software-center (1.1.17) lucid; urgency=low
[ Gary Lasker ]
* softwarecenter/view/navhistory.py:
- unescape the nav button label text (LP: #531689)
- fix up and just use a single __str__ method (LP: #531780)
* softwarecenter/view/availablepane.py,
softwarecenter/view/channelpane.py:
- fix intermittent AttributeError when a previous
model does not exist when refreshing the apps view
(LP: #531820)
[ Michael Vogt ]
* merged lp:~mpt/software-center/bug-499893 (thanks)
* merged lp:~mpt/software-center/categorization (thanks)
* merged lp:~michaelforrest/software-center/ui-changes (thanks)
* data/icons/scalable/apps/partner.svg:
- add partner icon (LP: #531694)
* softwarecenter/view/catview.py:
- do not show header in subsection view
* softwarecenter/view/availablepane.py:
- fix race in initial part creation (LP: #531798)
* debian/control:
- add gnome-app-install transitional package (closes: #572941)
-- Michael Vogt <michael.vogt@ubuntu.com> Thu, 11 Mar 2010 16:58:00 +0100
software-center (1.1.16.1) lucid; urgency=low
* softwarecenter/view/navhistory.py:
- fix missing import
-- Michael Vogt <michael.vogt@ubuntu.com> Wed, 03 Mar 2010 22:56:11 +0100
software-center (1.1.16) lucid; urgency=low
[ Matthew McGowan ]
* softwarecenter/view/widget/backforward.py:
- add new widget for use in back/forward navigation feature
[ Michael Vogt ]
* data/software-center.menu.in:
- merge "System Tools" into "Accessories"
- rename "System Packages" to "System"
- add "Fonts" section
- remove all sub-sections of "System", its one big list again
- remove "Other" category and move it into "System"
(as per spec)
* softwarecenter/db/database.py:
- add prefix "pkg_fuzzy"
* add .menu term "SCPkgnameWildcard" to support wildcard based
pkgname searches
* softwarecenter/view/catview.py:
- fix parsing when inline translations are available in the xml
* softwarecenter/view/catview.py:
- fix tests
* softwarecenter/backend/channel.py:
- add query for channels that are not yet enabled
(via the app-install-data mechanism)
* softwarecenter/distro/__init__.py:
- add get_codename
* fix inconsistency in naming (LP: #530368)
* show (summary, name) for non-apps (LP: #530422)
* merged lp:~mpt/software-center/categorization to improve
categorization (many thanks)
* merged lp:~mvo/software-center/back-forward-nav
[ Gary Lasker ]
* softwarecenter/backend/channel.py:
- add to reimplement channels as instances of a new SoftwareChannel
class, supports fixing the issues below
* softwarecenter/app.py,
softwarecenter/view/viewswitcher.py,
softwarecenter/view/channelpane.py:
- enable Canonical partner channel repository view (LP: #530401)
- fix crash when searching while in "Provided by Ubuntu"
view (LP: #523781)
- show all software items in the "Provided by Ubuntu"
view (LP: #528043)
- enable maintenance filter in the "Provided by Ubuntu"
view (LP: #528057)
- fix navigation button text for the "Provided by Ubuntu"
view (LP: #530398)
* softwarecenter/view/navhistory.py,
softwarecenter/view/softwarepane.py,
softwarecenter/view/availablepane.py,
softwarecenter/view/widgets/pathbar2.py:
- add navhistory.py, implement forward/back history feature for
the "Get Software" section (using Matthew McGowan's
BackForwardButton, many thanks!). (LP: #423754)
* po/POTFILES.in:
- add softwarecenter/backend/channel.py
* data/ui/SoftwareCenter.ui:
- in "View" menu, change "Applications" to "Software" (LP: #530377)
* softwarecenter/view/installedpane.py:
- hide searchentry field in details view (LP: 528121)
* softwarecenter/view/availablepane.py,
softwarecenter/view/channelpane.py,
softwarecenter/view/installedpane.py:
- change "Application(s)" to "Item(s)" in the status
bar text (LP: #530374)
-- Michael Vogt <michael.vogt@ubuntu.com> Wed, 03 Mar 2010 22:41:20 +0100
software-center (1.1.15) lucid; urgency=low
[ Michael Vogt ]
* softwarecenter/view/widgets/animatedimage.py:
- fix crash when image property is not set
* updated po/th.po:
- thanks to Sira Nokyoonhtong
* data/featured.menu.in: updated, based on
https://lists.ubuntu.com/archives/ubuntu-desktop/2010-March/002448.html
[ Gary Lasker ]
* data/ui/SoftwareCenter.ui:
- tweak default window width to restore four-column view
in the categories screen (LP: #528082)
* softwarecenter/view/channelpane.py:
- make status bar text for individual channel views
consistent with that in the "Get Software" section
(LP: #528055)
* softwarecenter/view/availablepane.py:
- don't show search entry in app details view (LP: #528121)
- fix missing status text at startup (LP: #528040)
- fix intermittent attribute error when searching
from the main category screen (LP: #524209)
-- Michael Vogt <michael.vogt@ubuntu.com> Mon, 01 Mar 2010 14:43:54 +0100
software-center (1.1.14) lucid; urgency=low
* softwarecenter/view/:
- add a bunch of missing atk description to the widgets
* softwarecenter/view/widgets/pathbar2.py:
- make the PathParts subclasses of atk.Objects and add atk
descriptions/parent relations
* debian/control:
- add missing po4a b-d
-- Michael Vogt <michael.vogt@ubuntu.com> Wed, 24 Feb 2010 20:56:13 +0100
software-center (1.1.13) lucid; urgency=low
[ Michael Vogt ]
* data/featured.menu.in:
- add scribus, blender
- fix missing i18n
* data/software-center.menu.in:
- add a bunch of missing _
* softwarecenter/backend/aptd.py:
- fix cache reload functionality
- fix display of update/external transactions (LP: #514861)
* po/help/po4a.conf:
- make help translatable via po4a (LP: #439353)
* po/help/software-center-doc.pot:
- add help pot
* setup.py:
- build help translations automatically
[ Gary Lasker ]
* softwarecenter/view/viewswitcher.py:
- fix ValueError in on_transactions_changed (LP: #523420)
- fix AttributeError in do_render (LP: #523341)
* softwarecenter/view/installedpane.py:
- fix AttributeError in refresh_apps() (LP: #520097)
* softwarecenter/view/widgets/pathbar2.py:
- fix typo in PathBarThemeHumanClearlooks class,
gave an AttributeError in __expose_cb() (LP: #523452)
* softwarecenter/app.py,
softwarecenter/backend/aptd.py:
- update to use new backend reload API (LP: #496058)
-- Michael Vogt <michael.vogt@ubuntu.com> Tue, 23 Feb 2010 15:29:53 +0100
software-center (1.1.12) lucid; urgency=low
[ Michael Vogt ]
* merged lp:~mmcg069/software-center/spinner (many thanks)
* merged lp:~mmcg069/software-center/fixes-and-tweaks (many thanks)
[ Gary Lasker ]
* implement standalone presentation of individual software
repositories
[ Michael Vogt ]
* README:
- document menu.d/ directory
* softwarecenter/view/catview.py:
- add SCPkgname xml filter
* apt-xapian-index-plugin/software-center.py:
- add custom apt-xapian-index plugins for indexing
"XB-Softwarecenter-Appname" in debian/control
* apt-xapian-index-plugin/origin.py:
- add custom apt-xapian-index plugins for indexing the origins
* softwarecenter/distro/Ubuntu.py:
- add abstraction for distro_channel_{name,description}
* softwarecenter/distro/__init__.py:
- make get_distro() return a singleton
* softwarecenter/view/channelpane.py:
- for the main distro channel, show only apps, not all packages
* data/featured.menu.in:
- add a "Featured" category
-- Michael Vogt <michael.vogt@ubuntu.com> Wed, 17 Feb 2010 10:13:41 +0100
software-center (1.1.11debian1) unstable; urgency=low
* Merge 1.1.11.
* softwarecenter/db/update.py:
- Use logging.warning instead of logging.exception (Closes: #568941)
* debian/rules:
- Replace Ubuntu by Debian in some files when not building on Ubuntu.
- Use system-software-install as the icon on Debian.
* debian/control:
- Build depend on dpkg-dev >= 1.15.1 to use dpkg-vendor.
* softwarecenter/app.py:
- When not running on Ubuntu, remove the Views menu.
* softwarecenter/apt/aptcache.py:
- Use dep_type_untranslated instead of UntranslatedDepType if available.
-- Julian Andres Klode <jak@debian.org> Thu, 11 Feb 2010 18:37:35 +0100
software-center (1.1.11) lucid; urgency=low
[ Michael Vogt ]
* make action buttons in the appview insensitive while a action
is in progress
* added po/th.po:
- thanks to Sira Nokyoonhtong
* merge lp:~tomeu/software-center/bug-fixes that makes the
"No screenshot available" text translatable, thanks to
Tomeu Vizoso (LP: #443066)
* softwarecenter/backend/aptd.py:
- only set meta-data that is actually available (LP: #499392)
* utils/update-software-center:
- warn if locale can not be set (LP: #516266)
* merge branch lp:~juliank/software-center/debian (many thanks)
* merge lp:~mvo/software-center/spinner, this gives us inline
progress
[ Gary Lasker ]
* softwarecenter/view/viewswitcher.py:
- add support for using the up/down arrow keys to select
items in the navigation pane (LP: #517271)
* softwarecenter/distro/Ubuntu.py,
po/software-center.pot:
- fix typo for apps with unknown maintenance status,
refreshed .pot file (LP: #519090)
-- Michael Vogt <michael.vogt@ubuntu.com> Tue, 09 Feb 2010 16:45:47 +0100
software-center (1.1.10debian2) unstable; urgency=low
* softwarecenter/db/update.py:
- Use logging.warning instead of logging.exception (Closes: #568941)
-- Julian Andres Klode <jak@debian.org> Tue, 09 Feb 2010 07:40:07 +0100
software-center (1.1.10debian1) unstable; urgency=low
* Merge with Ubuntu.
* debian/control:
- Reindent with spaces only.
- Require at least version 0.7.93.1 of python-apt.
- Set Standards-Version to 3.8.4.
- Conflicts, Replaces, Provides gnome-app-install.
* softwarecenter/distro/Debian.py:
- Replace import from aptutils with apt.utils.
* data/icons/scalable/apps/softwarecenter.svg:
- Remove the execute bit from the file.
* man/update-software-center.8:
- Add a manpage for update-software-center.
* debian/manpages:
- Add man/update-software-center.8 to the list of manpages.
-- Julian Andres Klode <jak@debian.org> Fri, 05 Feb 2010 17:49:29 +0100
software-center (1.1.10) lucid; urgency=low
[ Michael Vogt ]
* softwarecenter/distro/aptutils.py:
- removed, moved into python-apt
* softwarecenter/view/appview.py:
- ignore negative ratings (LP: #510409)
* softwarecenter/db/database.py:
- assert we have a popcon_max value
* debian/control:
- updated dependencies to latest python-apt
* softwarecenter/view/availablepane.py:
- fix name for Search Results (LP: #504379)
* softwarecenter/view/installedpane.py:
- add Search Results pathbar
* debian/control:
- drop python-sexy from the dependencies
* softwarecenter/view/widgets/searchentry.py:
- merge patch from Javier Jardón to use gtk.Entry instead
of sexy.Entry (LP: #506811) - many thanks!
* merged from lp:~gary-lasker/software-center/active_app,
many thanks!
* softwarecenter/distro/Ubuntu.py:
- add support for the new "Supported" tag in the Packages file
* merged lp:~mmcg069/software-center/bug-fixes with lots of nice
fixes in the pathbar and appview code (many thanks!)
[ Gary Lasker ]
* softwarecenter/view/widgets/pathbar2.py,
softwarecenter/app.py,
data/ui/SoftwareCenter.ui:
- add support for using backspace key to navigate up one
level in the hierarchy (LP: #509783)
* softwarecenter/app.py, softwarecenter/view/installedpane.py,
softwarecenter/view/softwarepane.py:
- fixes in the on_application_selected() code
* softwarecenter/view/installedpane.py,
softwarecenter/view/softwarepane.py:
- remove is_search_in_progress, it's not needed
* softwarecenter/view/appview.py:
- comment out the install/remove button set insensitive
call temporarily, will restore after we are cleanly
setting it sensitive again after transaction completed
-- Michael Vogt <michael.vogt@ubuntu.com> Wed, 27 Jan 2010 20:51:27 +0100
software-center (1.1.9) lucid; urgency=low
[ Gary Lasker ]
* softwarecenter/app.py,
softwarecenter/view/softwarepane.py:
- add code to reselect the app in the list view on
a tree model refresh
* softwarecenter/view/widgets/pathbar2.py:
- remove explicit callback when a button is appended
to the pathbar as it is not needed
* softwarecenter/app.py:
- fix double call to the all/supported only menu
item handlers
[ Michael Vogt ]
* softwarecenter/apt/aptcache.py:
- properly fix removal warning (needs latest python-apt)
* debian/control:
- depend on latest python-apt
* merged lp:~mmcg069/software-center/matts-pathbar-integration
Many thanks to Matthew McGowan
This gives us much nicer layout and a popcon column
-- Michael Vogt <michael.vogt@ubuntu.com> Wed, 20 Jan 2010 14:56:15 +0100
software-center (1.1.8) lucid; urgency=low
* softwarecenter/view/appdetailsview.py:
- replace thumbnail checking thread with (much nicer) gio
code
* softwarecenter/app.py:
- simplify state save logic
- save window size
- fix crash in ConfigParser (LP: #494899)
* softwarecenter/view/installedpane.py:
- fix search in installed section (LP: #504380)
* softwarecenter/apt/aptcache.py:
- fix missing warning on removal for non-english systems
(LP: #486474)
* softwarecenter/view/widgets/imagedialog.py:
- fix crash because of missing import
-- Michael Vogt <michael.vogt@ubuntu.com> Wed, 13 Jan 2010 14:39:35 +0100
software-center (1.1.7) lucid; urgency=low
[ Michael Vogt ]
* softwarecenter/view/availablepane.py:
- fixes in the search when in a category with sub-categories
* data/software-center.menu.in:
- use SCDontDisplay and SCType in System Packages menu to
allow searching in all system packages again
* README:
- updated to include section term
* data/software-center.menu.in:
- move the previous seperate applications.menu in here to support
subcategories that mix applications and non-applications
this makes /usr/share/app-install/desktop/applications.menu
obsolete for software-center
- update to reflect the sub-category layout from the spec
* softwarecenter/db/database.py:
- fix sorting for mixed app/package display
* softwarecenter/db/update.py:
- write out archive section (mail, admin, ...) into the xapian DB
* softwarecenter/view/catview.py:
- fix sub-category jumping back to (0,0) on going back
- support mixed app/package section querries
- support menu additions via "/usr/share/app-install/menu.d/*.menu"
- support SCChannel as match for (sub)menus
* softwarecenter/db/database.py:
- simplfy get get_query_list_from_search_entry() code
* softwarecenter/view/availablepane.py:
- fix performance problem for empty queries and simply the code
[ Gary Lasker ]
* softwarecenter/distro/Ubuntu.py:
- merged string fix from Shane Fagan, many thanks (LP: #494845)
* po/software-center.pot:
- updated
-- Michael Vogt <michael.vogt@ubuntu.com> Wed, 06 Jan 2010 19:03:28 +0100
software-center (1.1.6) lucid; urgency=low
[ Michael Vogt ]
* softwarecenter/view/pendingview.py:
- fix race in _append_transaction()
* softwarecenter/view/availablepane.py:
- fix count of available applications in the status bar
- append a pathbar element if a search is performed
* softwarecenter/apt/apthistory.py:
- add inteface to new /var/log/apt/history.log file
- add find_terminal_log() that gives the matching terminal output
* softwarecenter/db/database.py, softwarecenter/view/appview.py:
- add higher ranks for exact package name matches
* merged from lp:~lucian.grijincu/software-center/lucian
(many thanks)
* softwarecenter/apt/aptcache.py:
- add get_installed_automatic_depends_for_pkg() for better
support for automatic removal
* softwarecenter/backend/aptd.py:
- remove no longer used dependencies on removal (LP: #467539)
* softwarecenter/view/appview.py:
- ensure we do not add duplicated entries on searches
[ Jonathan Thomas ]
* Correct dependency on the KDE PolicyKit 1 frontend (policykit-1-qt ->
policykit-1-kde)
-- Michael Vogt <michael.vogt@ubuntu.com> Mon, 04 Jan 2010 13:40:15 +0100
software-center (1.1.5) lucid; urgency=low
* merged from lp:~gary-lasker/software-center/menu-install-remove-fix,
many thanks!
* merged lp:~mvo/software-center/sub-categories
* data/software-center.menu.in, setup.cfg:
- additional .menu file with custom extensions to structure
sub-categories for packages (stub only currently)
- use new <SCType> tag
* softwarecenter/view/availablepane.py:
- if a subcategory list does not have applications, hide the
application view
- make subqueries more flexible
- reset subcategories if a search is reset
- support "SCDontDisplay" tag in categories
* softwarecenter/view/catview.py:
- move "System Packages" from hardcoded Section into a XML
file
- add <Or> support for <Include>
- support empty queries in .menu
- support extra tags "SCIcon", "SCDontDisplay"
- support gettext without directory in .menu file
- support additional software-center.menu file
* softwarecenter/view/catview.py:
- fix incompatibility with the development version of xapian
(thanks to Richard Boulton)
- fix <Not> tag handling
- add SCType that matches
-- Michael Vogt <michael.vogt@ubuntu.com> Wed, 16 Dec 2009 13:41:09 +0100
software-center (1.1.4) lucid; urgency=low
* softwarecenter/db/update.py:
- honor X-AppInstall-Ignore=true
* merge from lp:~glatzor/software-center/glatzor, many thanks
* fixes missing icons/appnames in the progress pane (LP: #493775)
* debian/control:
- update aptdaemon dependency
-- Michael Vogt <michael.vogt@ubuntu.com> Mon, 14 Dec 2009 11:38:05 +0100
software-center (1.1.3) lucid; urgency=low
* merge from lp:~robert-ancell/software-center/trunk,
many thanks
-- Michael Vogt <michael.vogt@ubuntu.com> Wed, 09 Dec 2009 19:49:52 +0100
software-center (1.1.2) lucid; urgency=low
* merge lp:~rugby471/software-center/software-store-andrew,
many thanks
* softwarecenter/backend/aptd.py:
- add "reload" function
* softwarecenter/view/appdetailsview.py:
- if a package is available in the data but we do not have apt
data for it offer a "reload" button (LP: #466321)
- fix description for not yet enabled channels (LP: #488060)
- improve regexp that parses "*" and "-" lists (LP: #493679)
-- Michael Vogt <michael.vogt@ubuntu.com> Tue, 08 Dec 2009 15:30:41 +0100
software-center (1.1.1) lucid; urgency=low
* Hide packages that are also part of a application. This
means that abiword will only show up once in the center
(as a application) and not as a package at all.
* profiling and search improvements
* merge lp:~benweissmann/software-center/search-greylist, many
thanks
* merge lp:~glatzor/software-center/glatzor, many thanks
* softwarecenter/db/database.py:
- support comma expansion as in https://wiki.ubuntu.com/SoftwareCenter
under "Searching for multiple package names"
* softwarecenter/distro/Ubuntu.py:
- string fixes (thanks to shane fagan), LP: #493618
-- Michael Vogt <michael.vogt@ubuntu.com> Mon, 07 Dec 2009 18:32:13 +0100
software-center (1.1debian1) unstable; urgency=low
* Initial upload to Debian (Closes: #558692)
* debian/control:
- Change maintainer to jak@debian.org
- Point Vcs-Bzr to a debian branch
- Remove references to Ubuntu from the description
* debian/copyright: Add Source field to header section, listing the
branches this package is derived from and the launchpad entry.
* debian/TODO: Add file with list of items which have to be done in the
Debian package.
-- Julian Andres Klode <jak@debian.org> Mon, 30 Nov 2009 18:38:36 +0100
software-center (1.1) lucid; urgency=low
[ Michael Vogt ]
* merged from Andrew Higginson, many thanks
- fix hardcoded fonts (LP:#456604)
- changed paste menu item to be ctrl+V
* merged from Luke Symes, many thanks:
- add suppoprt for authenticated proxies
* softwarecenter/view/appdetailsview.py:
- support uris in the app description (LP: #454246)
- fix in details view
- use regexp
- fix test
* softwarecenter/view/dialogs.py:
- make removal dialog modal (LP: #455327)
* debian/control:
- add recommends on python-launchpad-integration
* softwarecenter/distro/Ubuntu.py:
- add distro backend class that dynamically detects what distro
to use and move distro specifc stuff (like screenshot url etc)
there
- move maitainance end calculation here
* softwarecenter/view/softwarepane.py:
- default to new pathbar
* softwarecenter/backend/aptd.py:
- move the aptdaemon backend code here
* softwarecenter/utils.py:
- move proxy code into a generic utility function
* debian/control:
- add recommends to apt-xapian-index to enable support for
non-application packages
* merge the lp:~mvo/software-center/non-apps branch
[ Julian Andres Klode ]
* softwarecenter/distro/Debian.py:
- introduce the Debian version of Ubuntu.py.
* softwarecenter/view/{catview.py,appdetailsview.py}:
- return the int of self._get_font_description_property("weight")
if it has no member named 'real'.
* Fix indentation in various files.
-- Michael Vogt <michael.vogt@ubuntu.com> Mon, 30 Nov 2009 17:49:56 +0100
software-center (1.0.2) karmic; urgency=low
* debian/triggers:
- trigger on language-pack updates to ensure we get updated
translations on app-install-data-ubuntu into the xapian
database (LP: #456459)
* utils/update-software-center:
- when triggered from a langpack update compare mo file
time in order to prevent unneeded updates
-- Michael Vogt <michael.vogt@ubuntu.com> Fri, 23 Oct 2009 11:24:07 +0200
software-center (1.0.1) karmic; urgency=low
* debian/control:
- update vcs link to lp:~ubuntu-core-dev/software-center/karmic
* softwarecenter/view/dialogs.py:
- merge fix from Andrew Higginson for modal dialog bug (#455327)
* softwarecenter/view/appdetailsview.py:
- do not crash if gconfd is not running (LP: #452559)
-- Michael Vogt <michael.vogt@ubuntu.com> Tue, 20 Oct 2009 15:04:14 +0200
software-center (1.0) karmic; urgency=low
* softwarecenter/view/appdetailsview.py:
- use screenshots.ubuntu.com as screenshot url
* softwarecenter/view/catview.py:
- do not crash for unavailable categories with <OnlyUnallocated>
(LP: #451922)
-- Michael Vogt <michael.vogt@ubuntu.com> Thu, 15 Oct 2009 18:35:58 +0200
software-center (0.5.2) karmic; urgency=low
[ Michael Vogt ]
* softwarecenter/view/appdetailsview.py:
- deal with connection refused errors properly
- use shorter default socket timeout to avoid hangs when
the screenshot site is unavailable
* softwarecenter/db/database.py:
- require explicit open() to avoid possible race (LP: #449385)
* softwarecenter/view/widgets/imagedialog.py:
- fix crash when unknown error happend during screenshot download
(LP: #4479829)
* data/ui/SoftwareCenter.ui:
- change unicode "..." to three "." to work around bug in
gtkbuilder/intltool that makes strings with them untranslatable
(https://bugzilla.gnome.org/show_bug.cgi?id=596205) (LP: #450600)
* po/*:
- sync from rosetta and unfuzzy the strings that move
from ߪ to "..." (LP: #450600)
* softwarecenter/view/catview.py
- do not crash if a desktop-directory can not be foudn or is
invalid (LP: #450842)
* utils/update-software-center:
- do not crash if glib is not available (e.g. during a upgrade)
(LP: #450793)
* install the softwarecenter-installed emblem into a private dir
to make not show up in the nautilus emblems folder (LP: #437385)
[ Josh Holland ]
* Fixed up man page (LP: #448896)
-- Michael Vogt <michael.vogt@ubuntu.com> Wed, 14 Oct 2009 11:51:26 +0200
software-center (0.5.1) karmic; urgency=low
* icon updates from Kenneth Wimer
* softwarecenter/db/update.py:
- fix index bug in pkgname handling
* make screenshots scrollable (LP: #439420)
* fix reopen() handling by not using xapian.Database.reopen()
but instead do a full open of the db (LP: #430603)
* softwarecenter/view/appdetailsview.py:
- add support for http proxies (LP: #446069)
- fix crash in cdrom handling (LP: #446269)
- do not show error when a transaction is cancelt
(LP: #440941)
* softwarecenter/view/widgets/imagedialog.py:
- change default window size to match the default image
size from screenshots.debian.net (LP: #445938)
* debian/control:
- depend on the latest aptdaemon for working proxy support
-- Michael Vogt <michael.vogt@ubuntu.com> Mon, 12 Oct 2009 18:25:10 +0200
software-center (0.5.0) karmic; urgency=low
* softwarecenter/db/update.py:
- when using getdefaultlocale() change the order of the environment
variable that are checked to 'LANGUAGE','LANG','LC_CTYPE','LC_ALL'
LP: #444316
* add support RTL in the webkit widgets
* Merged from Matthew McGowan:
- better integration of the arrow button with the used theme
- update arrow button when style changes (supports high contrast
themes and somesuch now too)
- support RTL langauges with the arrow button
- new pathbar can be activated via SOFTWARE_CENTER_NEW_PATHBAR=1
in the environment (not used by default)
-- Michael Vogt <michael.vogt@ubuntu.com> Wed, 07 Oct 2009 15:52:40 +0200
software-center (0.4.6) karmic; urgency=low
* debian/control:
- add versionized dependency to aptdaemon (needs some of the
latest API for the async calls) LP: #444218
* softwarecenter/view/pendingview.py:
- display the operation (Install Packages, Remove Packages,
Applying Changes) for operations that come from outside
software-center (LP: #444254)
* softwarecenter/app.py:
- do not crah on corrupted database
* utils/update-software-center:
- ignore if dbus can not be imported (e.g. because we are in
the middle of a upgrade and python packages are unavailable)
LP: #443177)
- do not show full stacktrace if dbus is not available
(LP: #444089)
- add a small delay between dubs rebuild signal and actual rebuild
(LP: #438639)
-- Michael Vogt <michael.vogt@ubuntu.com> Tue, 06 Oct 2009 11:27:09 +0200
software-center (0.4.5) karmic; urgency=low
* softwarecenter/view/appdetailsview.py:
- avoid blocking if the authentication dialog comes up
(LP: #436413)
* softwarecenter/view/appdetailsview.py:
- switch to use urls that return 404 if a package has no
screenshot
* softwarecenter/view/widgets/imagedialog.py,
softwarecenter/view/appdetailsview.py:
- merge lp:~mvo/software-center/ubuntu-404 that implements 404
handling and show ubuntu branded dummy image (LP: #425874)
* softwarecenter/view/appview.py:
- support environment to switch sorting for searches:
SOFTWARE_CENTER_SEARCHES_SORT_MODE={popcon,alphabetic,xapian}
(to be able to test the different mode quickly)
* softwarecenter/view/appdetailsview.py:
- fix crash when no icon can be found (LP: #442040, LP: #440306)
* softwarecenter/view/catview.py:
- do not crash if no icon can be found (LP: #441171)
* data/templates/CategoriesView.html:
- disable drag-n-drop (LP: #440446)
-- Michael Vogt <michael.vogt@ubuntu.com> Mon, 05 Oct 2009 18:23:27 +0200
software-center (0.4.4) karmic; urgency=low
* debian/rules:
- cleanup, we do not need python-central, all the python code is
in a private dir
* softwarecenter/view/appview.py:
- display the package name in parenthesis if the application name
appears multiple times in the database (e.g. for a generic name
like "Terminal") LP: #434625
* softwarecenter/app.py, softwarecenter/view/viewswitcher.py:
- automatically switch back to the previous view if the progress
view is empty and the user has not navigated away manually
(LP: #431907)
* po/ro.po:
- added Romanian translation (thanks to Alex Eftimie)
-- Michael Vogt <michael.vogt@ubuntu.com> Fri, 02 Oct 2009 18:18:16 +0200
software-center (0.4.3) karmic; urgency=low
* debian/rules:
- remove .PHONY again, it breaks building with DH7
-- Michael Vogt <michael.vogt@ubuntu.com> Tue, 29 Sep 2009 09:26:32 +0200
software-center (0.4.2) karmic; urgency=low
[ Michael Vogt ]
* softwarecenter/view/pendingview.py:
- fix empty progress view when the daemon exited in between
(LP: #437685)
* softwarecenter/view/appdetailsview.py:
- fix crash when no candidate for a package can be found
[ Loïc Minier ]
* Add .PHONY to rules.
-- Michael Vogt <michael.vogt@ubuntu.com> Mon, 28 Sep 2009 17:05:20 +0200
software-center (0.4.1) karmic; urgency=low
[ Michael Vogt ]
* softwarecenter/view/widgets/imagedialog.py:
- ignore gconf errors when trying to read the proxy settings
(LP: #436129)
* fix some leftovers from the rename
* softwarecenter/view/widgets/searchentry.py:
- fix search icon not being displayed (thanks to Marcus Carlson
and Matthew Joseph Mcgowan) LP: #437431
* remove po/software-store.pot, we use po/software-center.pot now
* softwarecenter/view/widgets/animatedimage.py:
- fix crash in animatediamge.py (LP: #437662)
* po/en_GB.po:
- fix spelling in en_GB (LP: #437652)
* help/C/software-center-C.omf:
- fix help (LP: #437859)
* merged lp:~mdke/software-center/help-fixes (many thanks!)
-- Michael Vogt <michael.vogt@ubuntu.com> Mon, 28 Sep 2009 11:04:22 +0200
software-center (0.4.0) karmic; urgency=low
[ Michael Vogt ]
* renamed to "Ubuntu Software Center" and software-center (LP: #436648)
[ Loïc Minier ]
* data/ubuntu-software-store.desktop.in: add missing semi-colon at end of
Categories.
* Use https instead of http in Vcs-Bzr URL.
-- Michael Vogt <michael.vogt@ubuntu.com> Fri, 25 Sep 2009 17:34:34 +0200
software-store (0.3.10) karmic; urgency=low
* disable borders around the (internal) notebook widgets
* softwarestore/view/installedpane.py:
- fix crash when now app_model is available yet (LP: #435464)
* softwarestore/view/pendingview.py:
- fix crash in cancel handling (LP: #435454)
* softwarestore/view/appdetailsview.py:
- add translator comment for the price (LP: #435405)
* data/templates/AppDetailsView.html:
- simplify the html, disable DnD (LP: #434236), thanks to
Istvan Nyitrai
* move common code into softwarepane.py
* update license to GPLv3
* update translators comment for "Ubuntu Software Store"
-- Michael Vogt <michael.vogt@ubuntu.com> Thu, 24 Sep 2009 18:56:42 +0200
software-store (0.3.9) karmic; urgency=low
[ Michael Vogt ]
* softwarestore/view/appdetailsview.py, data/templates/AppDetailsView.html:
- add basic license information to each package
* softwarestore/app.py:
- set default focus on the search entry and focus categories
("departments") on key-down (LP: #433828)
* data/templates/CategoriesView.html:
- arrow key navigation added (thanks to Stuart Langridge)
* softwarestore/db/database.py:
- move query parser code into a proper place and default to
AND for multiple search terms (LP: #432978)
- support boolean expressions in the search terms (AND, OR, NOT)
* disable warning if a package gets removed that another package
recommends (its not part of the spec how to handle this)
* softwarestore/db/update.py:
- do not fail if no locale is defined (LP: #434699)
[ Andrew Higginson ]
* debian/control:
- add python-gconf dependencies (needed in the image fetch code to
get the proxy from gconf)
* softwarestore/view/appdetailsview.py, softwarestore/view/dialogs.py:
- make the remove dialog conform to the spec
-- Michael Vogt <michael.vogt@ubuntu.com> Wed, 23 Sep 2009 12:07:31 +0200
software-store (0.3.8) karmic; urgency=low
* softwarestore/db/update.py:
- ensure that empty strings are not tried to be translated
(LP: #432995)
* softwarestore/view/appdetailsview.py:
- support config file prompts and media change requests
* debian/control:
- add dependency to python-aptdaemon-gtk for the media change
dialog
* softwarestore/view/dialogs.py:
- new DetailsMessageDialog class
* softwarestore/view/widgets/wkwidget.py:
- disable webkit plugins (can cause hangs from flash player)
* software-store:
- import pygst with pygst.require to ensure that it does not
fail later (LP: #427621)
-- Michael Vogt <michael.vogt@ubuntu.com> Tue, 22 Sep 2009 13:51:23 +0200
software-store (0.3.7.1) karmic; urgency=low
* data/ubuntu-software-store.desktop.in:
- drop NoDisplay (LP: #431882)
-- Michael Vogt <michael.vogt@ubuntu.com> Mon, 21 Sep 2009 18:47:42 +0200
software-store (0.3.7) karmic; urgency=low
* i18n fixes, thanks to Istvan Nyitrai
* code cleanup
* show different status bar label based on if it is a search
or a not (LP: #426252) - thanks to István Nyitrai
* Show empty status bar on viewing details, thanks to
István Nyitrai LP: #425876
* fix crash when clicking "Install" (LP: #432645)
* add border around navigation pane (LP: #433520)
* do not raise if entering the password takes too long (LP: #432704)
* softwarestore/view/appview.py:
- fix bug in on_iter_nth_child()
* when a transaction is triggered and there is no other transaction
already queued, jump to the "in progress" view (LP: #426257)
* Fix usage of "Pending" to "In progress" (LP: #434088)
* softwarestore/view/appdetailsview.py:
- use aptdaemons {install,upgrade,remove}_packages instead
of commit_packages
-- Michael Vogt <michael.vogt@ubuntu.com> Mon, 21 Sep 2009 17:50:10 +0200
software-store (0.3.6.1) karmic; urgency=low
* debian/control:
- add missing build-depend to lsb-release
-- Michael Vogt <michael.vogt@ubuntu.com> Fri, 18 Sep 2009 18:00:54 +0200
software-store (0.3.6) karmic; urgency=low
[ Michael Vogt ]
* data/ui/SoftwareStore.ui
- use © instead (c) (LP: #431298)
* softwarestore/SimpleGtkbuilderApp.py, softwarestore/app.py:
- fix gettext domain in gtkbuilder (thanks to sianis)
* po/hu.po:
- new translation, thanks to Gabor Kelemen
* softwarestore/view/basepane.py:
- fix crash when no adjustment is available (LP: #432126)
* setup.py:
- auto-generate softwarestore/version.py on build to ensure
version information is always valid
* softwarestore/view/appdetailsview.py:
- set user-agent string to software-store
* softwarestore/view/pendingview.py:
- do not crash if a transaction can not be canceled, but log
a error instead
* implement dbus service that informs the GUI if the database
is rebuild in the background and make the UI insensitive
while a rebuild is in progress
[ Andrew Higginson ]
* debian/control:
- better description
- add depedency to python-sexy (LP: #432173)
-- Michael Vogt <michael.vogt@ubuntu.com> Fri, 18 Sep 2009 17:16:46 +0200
software-store (0.3.4) karmic; urgency=low
* softwarestore/view/appview.py:
- fix crash in on_iter_children() LP: #427630
* merged lp:~sil/software-store/run-uninstalled, many
thanks to Stuart Langridge
* merged lp:~sil/software-store/disable-install-button, many
thanks to Stuart Langridge (this is cleaner than the previous
way)
* merged lp:~rugby471/software-store/software-store-andrew, many
thanks to Andrew Higginson
* softwarestore/db/update.py:
- fix i18n reading from the app-install-data files
- add X-Ubuntu-Gettext-Domain support
- Don't crash if we cannot write to ./data/xapian,
print that we cannot write to the directory.
* softwarestore/view/appdetailsview.py
- extend show_app() to take (appname, pkgname)
* softwarestore/view/appview.py:
- ensure correct icons for overlapping application names
- fix bug in the "only installed" filter (LP: #430838)
* softwarestore/view/widgets/imagedialog.py:
- make the download fully threaded
* softwarestore/db/database.py:
- cleanup and move common code here
* softwarestore/app.py:
- fix crash when no pane is active (LP: #430912)
* utils/update-software-store:
- fix crash when setlocale() fails (LP: #431099)
* softwarestore/view/appdetailsview.py:
- shwo proper error message (LP: #431100)
* softwarestore/view/dialogs.py:
- improve dialog handling by adding optional details
* po/POTFILES.in:
- updated
-- Michael Vogt <michael.vogt@ubuntu.com> Thu, 17 Sep 2009 12:21:57 +0200
software-store (0.3.3) karmic; urgency=low
[ Andrew Higginson ]
* softwarestore/view/widgets/searchentry.py:
- Included clearing of the main pane timeout
when clicking the clear button in the search
entry (LP: #423747)
- Added correct behaviour when the search icon
in the search entry is clicked
* softwarestore/data/ui/SoftwareStore.ui:
- Made menu items have images (if they are enabled)
- Added Undo, Redo, Cut, Copy, Paste, Delete Menu
items (LP: #426218)
- Version bump and correct logo in about
dialog (LP: #428677)
* softwarestore/app.py:
- Added functions for when the Edit menu items are
clicked (but not for Undo/Redo yet).
- Added code to hide the Edit menu items when the
search entry is not focused
* data/icons/scalable/apps/software-store.svg:
- removed obselete file
* data/icons/*/status/softwarestore-progress-*.png:
- re-exported icons to be 24x24 and optimised
* software-store:
- version bump
* data/templates/AppDetailsView.html:
- made install/remove button disable itself
after click
* softwarestore/view/appdetailsview.py:
- removed implemented FIXME
[ Michael Vogt ]
* softwarestore/view/appdetailsview.py:
- ensure the gnome debconf frontend is used
- make screenshot loading url configurable
- cleanup
- use internal viewer for large screenshot display
(thanks to Andrew Higginson)
- made install/remove button enable again if the user
cancels the action
- use the new ShowImageDialog
- detect if a package is not available for the given
architecture
- add maintainance time to the status (LP: #427266)
* softwarestore/view/widgets/imagedialog.py:
- new widget for the large screenshot display
* merged the help xml fixes from Matthew East (many thanks!)
LP: #429897
* fix icon display in the progress view (LP: #428679)
* softwarestore/view/appview.py:
- fix crash for applications with no summary
* softwarestore/view/widgets/searchentry.py:
- add undo/redo (LP: #428291)
* softwarestore/app.py:
- simply the copy/cut/paste
- use undo/redo from searchentry
- fix crash for packages not available in cache (LP #428356)
-- Michael Vogt <michael.vogt@ubuntu.com> Tue, 15 Sep 2009 11:35:48 +0200
software-store (0.3.2) karmic; urgency=low
* softwarestore/view/viewswitcher.py:
- make the iconsize 24px (LP: #425797)
* data/ubuntu-software-store.desktop.in:
- add "NoDisplay=true", we enforce showing it at a special
location via a gnome-panel patch (LP: #426209)
* merge fixes from rugby471, many thanks!
* softwarestore/view/appview.py:
- sort in locale friendly way
* softwarestore/app.py:
- call setlocale() to ensure python-apt provides translated
package descriptions
* do not display progress circle once the screenshot has
loaded (LP: #425859) - thanks to rugby471
-- Michael Vogt <michael.vogt@ubuntu.com> Fri, 11 Sep 2009 23:25:57 +0200
software-store (0.3.1) karmic; urgency=low
* softwarestore/app.py, softwarestore/view/appdetailsview.py:
- send pkgname instead of apt.Package object in the selected
signal (LP: #427157)
* softwarestore/view/availablepane.py:
- Show installed software in the "Get Free Software" pane
as well (as the spec says) LP: #427014
* softwarestore/view/appview.py:
- log icon_load errors only in loglevel DEBUG to avoid
noise on the console
* softwarestore/view/searchentry.py:
- grab focus when clear icon is clicked (LP: #421552)
* data/ui/SoftwareStore.ui:
- adjust default size so that all icons fit into the
window in a english locale (thanks to mac_v)
* updated icon (LP: #427279)
* properly update the current app list (ensure installed emblems
are good) if the cache is re-opened
* when the cache is refreshed, ensure that the scrolled position
is kept
-- Michael Vogt <michael.vogt@ubuntu.com> Thu, 10 Sep 2009 16:13:57 +0200
software-store (0.3.0) karmic; urgency=low
* merged from rugby471:
- documentation updates
- i18n fixes
* softwarestore/view/gbwidget.py:
- add new Gtkbuilder widget base class
* softwarestore/view/appview.py:
- allow a empty AppView
* softwarestore/view/installedpane.py:
- composited widget that contains navigation, applist and search
for the installed software
* softwarestore/view/availablepane.py:
- composited widget that contains navigation, applist and search
for the available software
* softwarestore/view/searchentry.py:
- make the icon_theme optional
* make the status bar display the current number of items displayed
* center the status bar (LP: #424895)
* make menuitems "Copy", "Copy Weblink", "Software Sources" work
* updated po files from rosetta
* make the default size bigger (LP: #425862)
* merged the fixes from Murat Güneş (many thanks!)
* when using the navigation bar to navigate back one (or more)
elements, remove the elements from the navigation bar
(LP: #425810)
* do not show "Search in Category", "Search in all" buttons.
Instead do the follwing:
- If the user clicks on "Get Free Software" while doing a search
in a sub-Category clear the search and go to the Category screen.
- If the user does click on the same button while doing a search
that originates from the Category screen do not clear the search
and go back to the list of the search results (and not to the
Category screen). The search must be cleared with the cleared
via the search field in this case.
(LP: #425809)
* softwarestore/view/searchentry.py:
- show/hide the clear item based on if there is text in it
or not
* help updates (thanks to Matthew Paul Thomas)
* make the progress bar less cramped (LP: #426281)
* make default icon size in category view 48px
* merged lp:~mpt/software-store/css branch (many thanks)
-- Michael Vogt <michael.vogt@ubuntu.com> Wed, 09 Sep 2009 23:54:06 +0200
software-store (0.2.2) karmic; urgency=low
* softwarestore/view/appdetailsview.py:
- fix icon theme name
* softwarestore/view/appview.py:
- ignore Unknown file format errors
- no longer use single click, but use a custom CellRenderer
instead that provides a single-click arrow at the end of
the app description column (LP: #419791)
- add custom CellRenderer that can draw generic overlay
icons
- use the overlay icon cell renderer to draw the installed
icon as a overlay to the regular icon of the app
* softwarestore/view/appview.py:
- fix incorrect type mixing in iter_next (LP: #422036)
* softwarestore/view/appdetailsview.py:
- if the package is not available in the archive and there
is no channel for it, do not display any buttons (LP: #424473)
* utils/update-software-store:
- use "Comment", "GenericName" and pkg.summary (in this order)
for the application summary
- add missing "locale.setlocale()"
* add a stub help page
-- Michael Vogt <michael.vogt@ubuntu.com> Mon, 07 Sep 2009 18:05:49 +0200
software-store (0.2.1) karmic; urgency=low
* data/ui/SoftwareStore.ui:
- add menu shortcuts (thanks to seb128)
* show loading animation when fetching screenshots
(thanks to rugby471)
* softwarestore/app.py:
- fix crash when searching in sub-categories
* softwarestore/view/appdetailsview.py:
- add workaround for missing xpm rendering with webkit
- scale icons to default icon size
- fix icon loading from the custom icon path
* softwarestore/app.py:
- when started multiple times, focus the already running
one
-- Michael Vogt <michael.vogt@ubuntu.com> Fri, 04 Sep 2009 17:33:33 +0200
software-store (0.2.0) karmic; urgency=low
* merge from rugby471, lots of fixes, improvements,
many thanks!
* merge the "webkit" branch:
- improved layout for the application details view
- improved layout for the categories view
- support for screenshots from screenshots.debian.net
- add dependency to python-webkit
* add man-page (thanks to rugby471)
* software-store:
- improve test if running from a local checkout (LP: #420784)
* add animation to the pending view
* fix bug in search clearning
* show find icon in the search entry
* open on the center of the screen by default (thanks to mac_v)
* show overlay icon in the details view for installed software
-- Michael Vogt <michael.vogt@ubuntu.com> Thu, 03 Sep 2009 11:35:43 +0200
software-store (0.1.3) karmic; urgency=low
* deal with apps that require adding repositories (like
the stuff from the partner repository)
* exit when the main window is closed
* debian/postrm:
- fix bug on purge (LP: #420042)
* softwarestore/app.py, data/ui/SoftwareStore.ui:
- add launchpad integration help (if available)
* softwarestore/view/viewswitcher.py:
- reconnect to the daemon if it dies (e.g. because of
inactivity) LP: #420124
* softwarestore/view/appdetailsview.py:
- show number of installed dependencies in the description
- warn on removal if the application is a dependency of
ubuntu-desktop or if it has additional reverse dependencies
* softwarestore/view/pkgview.py:
- add new view that shows a bunch of packages with meta-information
* softwarestore/app.py:
- fix sensitive/insensitive state of the install/remove button
- do not clean the navigation bar on "home" button click
(thanks to rugby471)
-- Michael Vogt <michael.vogt@ubuntu.com> Sat, 29 Aug 2009 00:28:58 +0200
software-store (0.1.2) karmic; urgency=low
* softwarestore/view/appdetailsview.py:
- fix crash when no canidate is available (LP: #419258)
* softwarestore/view/catview.py:
- fix markup escape issue (LP: #419263)
- render the category text one pango shrink step smaller
* softwarestore/view/appdetailsview.py:
- ignore dbus errors resulting from canceling the authentication
dialog
* softwarestore/view/catview.py:
- fix crash in non english languages when parsing the
applications.menu (LP: #419356)
* improve the search entry (LP: #419740, LP: #419744) and do not
loose focus when typing in it
* fix background cache opening
* softwarestore/view/catview.py
- be more keybaod friedly
-- Michael Vogt <michael.vogt@ubuntu.com> Thu, 27 Aug 2009 13:55:52 +0200
software-store (0.1.1) karmic; urgency=low
* fix icon loading/installing
* add dependencies:
- gnome-menus (LP: #419152)
- python-xapian (LP: #418580)
- policykit-1-gnome | policykit-1-qt (LP: #419154)
* add about dialog
* use gtk-missing-image if no image is available (LP: #418805)
* fix unneeded scrollbar (LP: #418817)
* highlight present location in navigation bar (LP: #418791)
* change category sort order to conform with the spec (LP: #418580)
* show the summary in the software list
-- Michael Vogt <michael.vogt@ubuntu.com> Wed, 26 Aug 2009 15:24:02 +0200
software-store (0.1) karmic; urgency=low
* Initial release
-- Michael Vogt <michael.vogt@ubuntu.com> Fri, 21 Aug 2009 14:52:41 +0200
|