1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
|
gwibber (3.7.0bzr13.04.05-0ubuntu1) raring; urgency=low
* debian/control
- transitional package depending on the renamed friends-app package
-- Ken VanDine <ken.vandine@canonical.com> Fri, 05 Apr 2013 13:17:28 -0400
gwibber (3.7.0bzr13.04.04-0ubuntu1) raring; urgency=low
* debian/control
- build depend on dh-translations
* Don't pop more than one page off the PageStack when posting to
multiple accounts.
-- Ken VanDine <ken.vandine@canonical.com> Thu, 04 Apr 2013 01:26:26 -0400
gwibber (3.7.0bzr13.04.02-0ubuntu1) raring; urgency=low
* Ported to use Friends (LP: #1156979)
* New icons from Armando Lara
* debian/control
- added transitional packages for gwibber-* to friends-*
-- Ken VanDine <ken.vandine@canonical.com> Wed, 03 Apr 2013 01:03:12 -0400
gwibber (3.6.0-0ubuntu2) raring; urgency=low
* debian/patches/lp_1088775.patch
- Don't fail to refresh facebook data if privacy has no
description key (LP: #1088775)
-- Ken VanDine <ken.vandine@canonical.com> Mon, 14 Jan 2013 11:03:01 -0500
gwibber (3.6.0-0ubuntu1) quantal-proposed; urgency=low
* New upstream release
- Add disabling online search support, requires libunity 6.7 or
later, thanks to Didier Roche (LP: #1054746)
- Don't let the lens start gwibber-service unless data is
needed (LP: #1046360)
* debian/control
- bump build depends for libunity-dev to >= 6.8
-- Ken VanDine <ken.vandine@canonical.com> Thu, 04 Oct 2012 12:16:49 -0400
gwibber (3.5.91-0ubuntu1) quantal; urgency=low
* New upstream release
- Default action on the preview should be view, retweet could
be dangerous (LP: #1058222)
- work around bug in libunity's SocialPreview by explicitly
setting title and subtitle (LP: #1058198)
- decode the translated string for "at" (LP: #1055762)
-- Ken VanDine <ken.vandine@canonical.com> Fri, 28 Sep 2012 16:17:00 -0400
gwibber (3.5.90-0ubuntu2) quantal-proposed; urgency=low
* debian/patches/lp_1051801.patch
- Fixed SIGSEGV in gwibber-service (LP: #1051801)
-- Ken VanDine <ken.vandine@canonical.com> Thu, 20 Sep 2012 02:51:55 -0400
gwibber (3.5.90-0ubuntu1) quantal-proposed; urgency=low
* New upstream release
- Use Unity Previews in the lens (LP: #1049127)
- Translate gwibber.application (LP: #1052375)
* debian/control
- add recommends for unity-lens-gwibber (LP: #1049127)
- bump build dep for libunity-dev to >= 6.5.1
-- Ken VanDine <ken.vandine@canonical.com> Thu, 20 Sep 2012 01:44:44 -0400
gwibber (3.5.4-0ubuntu1) quantal-proposed; urgency=low
* New upstream release
- ported from libindicate to libmessaging-menu (LP: #1040259)
* debian/control
- changed gir1.2-indicate-0.7 depends to gir1.2-messagingmenu-1.0
-- Ken VanDine <ken.vandine@canonical.com> Mon, 27 Aug 2012 13:14:35 -0400
gwibber (3.5.3-0ubuntu2) quantal; urgency=low
* debian/control:
- add some missing internal package dependencies
-- Rico Tzschichholz <ricotz@ubuntu.com> Wed, 22 Aug 2012 14:05:43 +0200
gwibber (3.5.3-0ubuntu1) quantal; urgency=low
* New upstream release
- Ported to Ubuntu Online Accounts
- Fixed all the GTK warnings, thanks to Jeff Licquia
* debian/control
- Added depends for gir1.2-signon-1.0 to gwibber-service
- added build depends for libsignon-glib-dev and libaccounts-glib-dev
- added breaks, conflicts and replaces to handle soname change
* debian/gwibber.install
- remove gwibber-accounts related files
-- Ken VanDine <ken.vandine@canonical.com> Tue, 21 Aug 2012 17:08:05 -0400
gwibber (3.5.2-0ubuntu1) quantal; urgency=low
* New upstream release
- New twitter icons better matching twitter's guidelines, thanks
Mark Tully (LP: #1012408)
- foursquare: Changed to using urls based off Foursquare user ids rather
than 'canonicalurl' due to 'canonicalurl' being removed from
Foursquare's API (LP: #1012231)
- foursquare: Added support for displaying 'likes', new to Foursquare API
* debian/patches/lp_934530.patch
- Catch IOError when opening a url with urllib2, prevents crash for
connection reset errors (LP: #934530)
-- Ken VanDine <ken.vandine@canonical.com> Thu, 14 Jun 2012 22:56:53 -0400
gwibber (3.5.1-0ubuntu1) quantal; urgency=low
* New upstream release
- facebook: Handle unicode characters everywhere we set the
username (LP: #938667)
- Added inline python docs (Mark Tully) (LP: #576817)
-- Ken VanDine <ken.vandine@canonical.com> Sun, 10 Jun 2012 23:03:58 -0400
gwibber (3.5.0-0ubuntu1) quantal; urgency=low
* New upstream release
- Removed unsupported/unmaintained service plugins: buzz, digg,
friendfeed, qaiku, and pingfm
- Convert all mx.DateTime use to built-in datetime module. mx won't get
ported to python3 (Barry Warsaw) (LP: #990145)
- libgwibber-gtk: Fixed up the GwibberGtkEntry widget's alignment and
icon search path
* debian/patches/lp_38667.patch
- dropped, merged upstream
* debian/control
- removed dependency on python-egenix-mxdatetime
- removed gwibber-service-digg, gwibber-service-friendfeed,
gwibber-service-qaiku, and gwibber-service-pingfm packages
-- Ken VanDine <ken.vandine@canonical.com> Tue, 22 May 2012 15:16:24 -0400
gwibber (3.4.1-0ubuntu3) quantal; urgency=low
* debian/patches/lp_38667.patch
- facebook: Don't crash on unicode characters in a username (LP: #938667)
-- Ken VanDine <ken.vandine@canonical.com> Thu, 17 May 2012 17:11:26 -0400
gwibber (3.4.1-0ubuntu2) quantal; urgency=low
[ Ken VanDine ]
* debian/control
- dropped unneeded recommends for python-libproxy (LP: #997706)
- dropped unneeded depends for python-simplejson
* debian/gwibber.install
- dropped unused service icons for jaiku and brightkite
[ Robert Ancell ]
* debian/control:
- Use standards version 3.9.3
- Drop dependency on liblaunchpad-integration-3.0-dev
* debian/patches/01_lpi.patch:
- Dropped, we no longer do Launchpad integration
-- Robert Ancell <robert.ancell@canonical.com> Mon, 14 May 2012 17:39:39 +1200
gwibber (3.4.1-0ubuntu1) precise-proposed; urgency=low
* New stable release
- fallback to displaying full sender's name if the nickname is empty, even
if show-fullname is false (LP: #985801)
- catch GLib.GError instead of GLib.Error, fixes crasher (LP: #940182)
- Specify /usr/bin/python in gwibber-accounts instead of relying on
env (LP: #988385)
- lens: use category icons that match the rest of unity. This only affects
the unity-lens-gwibber package in universe.
* debian/patches/*.patch
- dropped, merged upstream
* debian/control
- Added depends on gir1.2-wnck-3.0, gwibber-accounts needs it (LP: #957272)
-- Ken VanDine <ken.vandine@canonical.com> Wed, 25 Apr 2012 16:22:20 -0400
gwibber (3.4.0-0ubuntu4) precise; urgency=low
* debian/patches/lp_975437.patch
- foursquare: Don't crash on unicode characters in a users
fullname, thanks to Raza Sayed (LP: #975437)
-- Ken VanDine <ken.vandine@canonical.com> Thu, 12 Apr 2012 14:51:08 -0400
gwibber (3.4.0-0ubuntu3) precise; urgency=low
* Move the gsettings schemas from gwibber to gwibber-service (LP: #912628)
-- Ken VanDine <ken.vandine@canonical.com> Tue, 10 Apr 2012 10:57:05 -0400
gwibber (3.4.0-0ubuntu2) precise; urgency=low
* debian/patches/lp_959068.patch
- work around a bug in libgee which causes the size of a HashMap to
change if you call unset while iterating it, which invalidates
the iterator (LP: #959068)
-- Ken VanDine <ken.vandine@canonical.com> Wed, 04 Apr 2012 17:04:37 -0400
gwibber (3.4.0-0ubuntu1) precise; urgency=low
* New upstream release
- Check shorten-urls setting in the dispatcher before attempting to
shorten, patch thanks to Martin T. (LP: #896639)
- Removing unnecessary 'Image' link from entries with images obtained
through imgpreview() (Mark Tully) (LP: #966285)
- Replace all instances of a hashtag's occurance in a tweet at once
rather than one at a time (Mark Tully) (LP: #966467)
- Replace all instances of a nick's occurance in a tweet at once rather
than one at a time (Mark Tully) (LP: #966467)
- Catch errors from creating the pixbuf separately from sending the
notification (LP: #940182)
- Encode URLs to UTF8 before using them. (LP: #954374)
-- Ken VanDine <ken.vandine@canonical.com> Tue, 03 Apr 2012 17:03:45 -0400
gwibber (3.3.93-0ubuntu1) precise; urgency=low
* New upstream release
- more fallbacks for dupe detection, try with link_name, image_name,
and video_name (LP: #826323)
- Protect against trying to create a pixbuf from an icon that doesn't
exist (LP: #949395)
-- Ken VanDine <ken.vandine@canonical.com> Wed, 21 Mar 2012 17:57:04 -0400
gwibber (3.3.92-0ubuntu1) precise; urgency=low
* New upstream release
- determine if we are DST or not, and set isdst in the time struct. This
fixes the time delta being off by an hour for DST.
- Make sure we don't keep references to Dee.ModelIter that has been
removed (LP: #937607)
- Use the SHA1 hash of the avatar URL instead of simply stripping the
slashes, to avoid the resulting filename being too long to be created
on ecryptfs volumes. (James Tait) (LP: #845374)
- improved error handling to UrlLib2Downloader (David Klasinc) (LP: #946049)
- facebook: try to handle data from facebook of type=question to
prevent empty posts in the feed
- since gtk+ 3.3.18 scroll events are getting blocked in the Gtk.Label
for message, so we need to add the event mask for it.
-- Ken VanDine <ken.vandine@canonical.com> Thu, 15 Mar 2012 17:03:40 -0400
gwibber (3.3.91-0ubuntu2) precise; urgency=low
* debian/patches/scroll_on_message.patch
- add GDK_SCROLL_MASK on the message label to keep it from blocking
scroll events with gtk+ >= 3.3.18
* debian/control
- remove the buzz plugin, it doesn't work (LP: #951090)
-- Ken VanDine <ken.vandine@canonical.com> Fri, 09 Mar 2012 14:39:05 -0500
gwibber (3.3.91-0ubuntu1) precise; urgency=low
* New upstream release
- Fix duplicate detection by falling back to comparing html,
link_description, image_url and video_url (LP: #933694)
- Fixed account migration path from 2.32 (desktopcouch) to
3.4 (sqlite) (LP: #740494)
- gwibber-accounts crashed with TypeError in function(): Item 0: must
be a subtype of gi.Boxed (LP: #936071)
- Fixed position tracking so page down and page up move the
appropriate number of tiles (LP: #629420)
- more escaping of text that pango markup can't support
- twitter: Use Twitter entities, improves getting hashtags, mentions,
links, images, and videos. Thanks to Mark Tully (LP: #948092)
-- Ken VanDine <ken.vandine@canonical.com> Thu, 08 Mar 2012 16:51:57 -0500
gwibber (3.3.90-0ubuntu1) precise; urgency=low
* New upstream release
- foursquare: display comments on checkins (Mark Tully)
- Update LINGUAS to use all the provided translations (Robert Ancell)
- make the messages stream default on startup
- Updated favorite information to include if you liked a post
- facebook: fixed dupes and empty posts (LP: #826323)
* debian/control
- drop Suggests for gwibber-service-buzz
-- Ken VanDine <ken.vandine@canonical.com> Thu, 23 Feb 2012 14:18:14 -0500
gwibber (3.3.6-0ubuntu3) UNRELEASED; urgency=low
* debian/control
- dropped depends for python-wnck
-- Ken VanDine <ken.vandine@canonical.com> Thu, 16 Feb 2012 17:00:17 -0500
gwibber (3.3.6-0ubuntu2) precise; urgency=low
* debian/control
- dropped the depends for python-gtk2 and python-notify
-- Ken VanDine <ken.vandine@canonical.com> Thu, 16 Feb 2012 16:43:43 -0500
gwibber (3.3.6-0ubuntu1) precise; urgency=low
* New upstream release
- Translation fixes from Gabor Kelemen (LP: #926665)
- Shutdown the service when using Quit from the menu if the unity lens
isn't running. (LP: #923863)
- Make searching in the lens faster using Dee's TreeIndex (Michal Hruby)
-- Ken VanDine <ken.vandine@canonical.com> Thu, 16 Feb 2012 16:13:17 -0500
gwibber (3.3.5-0ubuntu3) precise; urgency=low
* debian/patches/poster_icons.patch
- make sure the poster gets the icon theme search path
-- Ken VanDine <ken.vandine@canonical.com> Wed, 15 Feb 2012 22:12:09 -0500
gwibber (3.3.5-0ubuntu2) precise; urgency=low
* debian/patches/unicode.patch
- fix unicode character handling since the switch to urllib
-- Ken VanDine <ken.vandine@canonical.com> Wed, 15 Feb 2012 18:40:38 -0500
gwibber (3.3.5-0ubuntu1) precise; urgency=low
* New upstream release
* debian/libgwibber-gtk2.symbols
- new symbols
* debian/control
- dropped depends for python-gnomekeyring and added
gir1.2-gnomekeyring-1.0
- dropped depends for python-webkit and added
gir1.2-webkit-3.0
* debian/gwibber-service-foursquare.install debian/gwibber-service-
buzz.install
- moved the icons to the right binary
* debian/copyright
- updated to dep5 format
-- Ken VanDine <ken.vandine@canonical.com> Wed, 15 Feb 2012 16:31:21 -0500
gwibber (3.3.4-0ubuntu1) precise; urgency=low
* New upstream release
- Completed dropped python multiprocessing and refactored the service
threading. Including improving ability to catch individual
operation failures.
- Can't response or write to someone from their user information
page (LP: #926081)
- "Repeat" a status on StatusNet fails silently (Scott Sweeny) (LP: #923144)
-- Ken VanDine <ken.vandine@canonical.com> Tue, 14 Feb 2012 17:03:36 -0500
gwibber (3.3.3-0ubuntu2) precise; urgency=low
* debian/control
- bump depends for gir1.2-indicate-0.7
-- Ken VanDine <ken.vandine@canonical.com> Fri, 10 Feb 2012 13:48:54 -0500
gwibber (3.3.3-0ubuntu1) precise; urgency=low
* New upstream release
- Fixed memory leak in ActionBoxItem (LP: #909085)
- Fixed race conditions in async image loading while scrolling (LP: #911619)
- Hide window while gwibber exits (Michal Hruby)
- Improved scrolling by enclosing comments and image previews in a
Gtk.Expander, this fixes the tiles resizing while scrolling (LP: #875348)
- Ported to valac-0.16
* debian/control
- build depend on valac-0.16
-- Ken VanDine <ken.vandine@canonical.com> Mon, 30 Jan 2012 10:55:24 -0500
gwibber (3.3.2-0ubuntu2) precise; urgency=low
* debian/control, debian/rules
- Make sure we get the proper gir:Depends
-- Ken VanDine <ken.vandine@canonical.com> Fri, 20 Jan 2012 12:06:00 -0500
gwibber (3.3.2-0ubuntu1) precise; urgency=low
* New upstream release
- Drop the usage of threading.Thread and ensure the multiprocessing.Pool
is closed after the job is complete, this greatly reduces the system
load and stops the aggressive polling multiprocessing worker pools
used (LP: #906916)
- ported to libdee API changes
- ported to libunity API changes
* debian/gwibber-service.pyinstall, debian/gwibber-service.install
- Use a .pyinstall file to handle instaling stuff so we don't have to
copy custom.py
* debian/rules
- drop the copy of custom.py, it gets installed with .pyinstall file now
* debian/control
- bump build depends for libunity-dev and libdee-dev
- renamed build dep to gtkspell-3-dev
-- Ken VanDine <ken.vandine@canonical.com> Fri, 13 Jan 2012 12:38:23 +0100
gwibber (3.3.1-0ubuntu4) precise; urgency=low
* debian/patches/lp_863039.patch
- Translation fixes for plurals and time (LP: #863039)
* debian/patches/lp_911619.patch
- Cancel async image loading on tile reset, this breaks image previews but
fixes the crasher with gtk 3.3.6 (LP: #911619)
-- Ken VanDine <ken.vandine@canonical.com> Thu, 05 Jan 2012 16:24:22 -0500
gwibber (3.3.1-0ubuntu3) precise; urgency=low
* debian/rules
- Make sure custom.py can be imported, this was broken with the switch to
dh_python2
-- Ken VanDine <ken.vandine@canonical.com> Wed, 04 Jan 2012 16:27:09 -0500
gwibber (3.3.1-0ubuntu2) precise; urgency=low
* Build using dh_python2
-- Matthias Klose <doko@ubuntu.com> Sat, 17 Dec 2011 12:14:13 +0000
gwibber (3.3.1-0ubuntu1) precise; urgency=low
* New upstream release
- Added a "debug" settings key to allow debug logging without running from
a terminal.
- Ensure _profile is passed a dict, if not it failed
- Clean up indicator handling, setup the counts up front to ensure the
ordering is consistent.
- Only trim the padding off the entry if we are running in the client.
This fixes the gray bar that was displayed below the poster entry
in gwibber-poster.
- Translation fixes for liked and shared strings (LP: #833807)
- Added LINGUAS file to ensure the po files make it in the
DIST (LP: #866038)
- specify --shared-library when compiling the typelib, this fixes
GI (LP: #893125)
* lp_861903.patch, lp_882633.patch, and lp_884831.patch dropped, fixed
upstream
* debian/control
- build depend on valac-0.14
-- Ken VanDine <ken.vandine@canonical.com> Mon, 21 Nov 2011 09:29:54 -0500
gwibber (3.2.1-0ubuntu3) precise; urgency=low
* debian/patches/lp_882633.patch
- Don't use Gtk.main_quit when we aren't using a Gtk main
loop (LP: #882633)
* debian/patches/lp_884831.patch
- ensure the time label is the same height as the service icon to prevent
constant resizing when using a small font. (LP: #884831)
-- Ken VanDine <ken.vandine@canonical.com> Thu, 10 Nov 2011 16:22:52 -0500
gwibber (3.2.1-0ubuntu2) precise; urgency=low
* debian/patches/lp_861903.patch
- Revert fix for bug 812039 which caused a loop which drives CPU usage up
when the entry is being displayed. (LP: #861903)
-- Ken VanDine <ken.vandine@canonical.com> Wed, 26 Oct 2011 12:19:48 -0400
gwibber (3.2.1-0ubuntu1) precise; urgency=low
* New upstream release
- don't block the UI loading when creating the model (LP: #864727)
- Add an index to speed up retrieving messages (LP: #864727)
- Added profiling output
- only disconnect valid handlers
- lens: ensure we refresh the results when the lens becomes active, but
only if the stream_model has changed
- lens: don't clear the results model on an invalid search
-- Ken VanDine <ken.vandine@canonical.com> Mon, 24 Oct 2011 11:39:56 -0400
gwibber (3.2.0.1-0ubuntu1) oneiric; urgency=low
* New upstream release
- Properly get the retweeter's name instead of the original sender's
for identi.ca and status.net (Scott Sweeny) (LP: #834773)
- Fix lots of missing return values, (Vincent Untz) (LP: #866026)
-- Ken VanDine <ken.vandine@canonical.com> Tue, 04 Oct 2011 14:30:00 -0400
gwibber (3.2.0-0ubuntu2) oneiric; urgency=low
* Reverted the change to dh_python2, it broke loading of the custom.py
needed for setting the twitter API key (LP: #862876)
-- Ken VanDine <ken.vandine@canonical.com> Thu, 29 Sep 2011 21:32:07 -0400
gwibber (3.2.0-0ubuntu1) oneiric; urgency=low
* New upstream release
- Fixed some json errors in the services API
-- Ken VanDine <ken.vandine@canonical.com> Thu, 29 Sep 2011 11:54:37 -0400
gwibber (3.1.92-0ubuntu1) oneiric; urgency=low
* New upstream release
- Reflect changes in updated libunity API, from Mikkel Kamstrup
Erlandsen (LP: #844779)
- Mark some strings for translation, thanks to Gabor Kelemen (LP: #846032)
- Don't clean the pkgconfig files, thanks to Aaron Borden (LP: #846144)
- nick and hashtag parsing is not unicode aware, thanks to
Tom Callaway (LP: #812482)
- Don't claim to handle image mimetypes
- foursquare: actually include content from version 3 of the
foursquare API, thanks to Teester!
- Make sure we display valid menus for each service
- queue a redraw after showing the entry, thanks to Neil Patel (LP: #812039)
* debian/patches/new_libunity_API.patch
- Dropped, merged upstream
[Jeremy Bicha]
* debian/control
* debian/rules
- Port to dh_python2
* debian/pycompat: Dropped
-- Ken VanDine <ken.vandine@canonical.com> Tue, 27 Sep 2011 15:54:26 -0400
gwibber (3.1.90-0ubuntu2) oneiric; urgency=low
* debian/patches/new_libunity_API.patch:
- make it work with new libunity API
* debian/control:
- build-dep on latest libunity version
-- Didier Roche <didrocks@ubuntu.com> Thu, 08 Sep 2011 20:14:59 +0200
gwibber (3.1.90-0ubuntu1) oneiric; urgency=low
* New upstream release
- Ensure replies go to the proper nick name, with duplicate messages
replies didn't necessarily go to the right nick
- Ensure we have a name to display in the notification for "like"
- Don't spam with notifications for "prepared" and make sure the icon is
shown without relying on "prepared" spam
- Initialize i18n infrastructure, thanks Gabor Kelemen (LP: 837530)
- Fixed tooltips on the toolbar buttons, thanks David Klasnic. (LP: #837625)
- don't wait for an idle to refresh the StreamView
-- Ken VanDine <ken.vandine@canonical.com> Thu, 01 Sep 2011 16:42:34 -0400
gwibber (3.1.6-0ubuntu2) oneiric; urgency=low
* debian/patches/hide_image_uploader.patch
- image uploading never made it into the UI, so hiding the setting
in the preferences dialog.
-- Ken VanDine <ken.vandine@canonical.com> Thu, 25 Aug 2011 16:48:52 -0400
gwibber (3.1.6-0ubuntu1) oneiric; urgency=low
* New upstream release
- async loading of all images
- display thumbnails for images and videos
- display facebook comments inline
- round the corners of avatars and thumbnails
- significant performance improvements for rendering the stream views
* debian/libgwibber-gtk2.symbols
- added symbols
-- Ken VanDine <ken.vandine@canonical.com> Thu, 25 Aug 2011 15:36:16 -0400
gwibber (3.1.5.1-0ubuntu1) oneiric; urgency=low
* New upstream release
- tile sizing fixes, getting rid of wasted space
- revert back to python-wnck, we can't mix GIR and static
bindings (LP: #829186)
- use subprocess instead of Gio for handling gsettings. We can't mix GIR
and static bindings (LP: #829186)
- Fixes escaping of html elements properly (LP: #825204)
- Fixed data type checks that were causing failures (LP: #830839)
- Make sure we get time from the right json object
- Lots of json warnings and criticals cleaned up
- Don't crash the service if notifications fail (LP: #727568)
* debian/control
- Depend on python-wnck instead of gir1.2-wnck-1.0
-- Ken VanDine <ken.vandine@canonical.com> Tue, 23 Aug 2011 11:49:50 -0400
gwibber (3.1.5+r1143-0ubuntu1) oneiric; urgency=low
* New snapshot
- Don't allow public replies to private messages (LP: #828849)
- Use the new message signal to control the unseen_count (LP: #814718)
-- Ken VanDine <ken.vandine@canonical.com> Thu, 18 Aug 2011 11:45:30 -0400
gwibber (3.1.5-0ubuntu1) oneiric; urgency=low
* New upstream release
- Context menu for copying text/URI's (LP: #579275)
- gwibber-accounts crashed with TypeError in on_button_create_clicked():
iter must be a GtkTreeIter (LP: #720920)
- Buttons on information bar do not scale with font size (LP: #785599)
- messages window opens outside screen (LP: #804194)
- loses some of the messages from the bottom when switching
views (LP: #812049)
- service hangs if an avatar isn't obtained (LP: #828142)
-- Ken VanDine <ken.vandine@canonical.com> Wed, 17 Aug 2011 21:11:57 -0400
gwibber (3.1.4.2-0ubuntu1) oneiric; urgency=low
* New snapshot
- ported to libunity 4.0
- Fixed typo in log string, Unble to Unable (LP: #824423)
* debian/control
- build depends version of libunity-dev to >= 4.0.0
- Changed recommends for python-indicate depends for gir1.2-indicate-0.6
* debian/unity-lens-gwibber.install
- New paths
-- Ken VanDine <ken.vandine@canonical.com> Fri, 12 Aug 2011 09:03:59 -0400
gwibber (3.1.4.1+r1119-0ubuntu1) oneiric; urgency=low
* New snapshot
- Improvements to the user profile view
- Account selection bar and search entry for searching for users
* debian/libgwibber-gtk2.symbols
- New symbols
-- Ken VanDine <ken.vandine@canonical.com> Thu, 11 Aug 2011 12:45:34 -0400
gwibber (3.1.4.1-0ubuntu1) oneiric; urgency=low
* New upstream release
- Improved user streams
- New user_profile functions added for populating profile data
- follow/unfollow added for twitter, identica and statusnet
* debian/libgwibber2.symbols, debian/libgwibber-gtk2.symbols
- New symbols
-- Ken VanDine <ken.vandine@canonical.com> Mon, 08 Aug 2011 21:51:26 -0400
gwibber (3.1.4+r1103-0ubuntu1) oneiric; urgency=low
* New snapshot
- scrolling performance improvements
- hide streams until they are prepared
- better calculating of number of tiles to display
- perform a single operation to get a new user or search stream
- switch to the user or search view when clicking on a hash tag or user
* debian/libgwibber2.symbols, debian/libgwibber-gtk2.symbols
- updated
-- Ken VanDine <ken.vandine@canonical.com> Thu, 04 Aug 2011 17:19:32 -0400
gwibber (3.1.4+r1093-0ubuntu2) oneiric; urgency=low
* debian/preinst
- cleanup the cruft left from pycentral (LP: #811915)
-- Ken VanDine <ken.vandine@canonical.com> Thu, 04 Aug 2011 02:48:49 -0400
gwibber (3.1.4+r1093-0ubuntu1) oneiric; urgency=low
* New snapshot
- setlocale for COLLATE to ensure the collator filter does what we need
it to. This fixes the home stream not being sorted for some people
as well as the appearance of the streams not updating
- set wmclass so preferences, accounts and the client are associated
- support foursquare API v2 (LP: #803149)
- fixed some handling of filling the visible stream view
- fixed flickering of the bottom tile when scrolling 1 position at a time
-- Ken VanDine <ken.vandine@canonical.com> Thu, 04 Aug 2011 01:10:42 -0400
gwibber (3.1.4+r1086-0ubuntu1) oneiric; urgency=low
* New snapshot
- Make twitter login webview tall enough to see the authorize button
- prompt user to create an account on first run (LP: #819914)
-- Ken VanDine <ken.vandine@canonical.com> Tue, 02 Aug 2011 13:05:18 -0400
gwibber (3.1.4+r1083-0ubuntu2) oneiric; urgency=low
* debian/control
- fixed FTBFS, changed valac build depends to valac-0.12
-- Ken VanDine <ken.vandine@canonical.com> Sat, 30 Jul 2011 08:23:11 -0400
gwibber (3.1.4+r1083-0ubuntu1) oneiric; urgency=low
* New snapshot
- Added search input
- startup speedups
* debian/patches/no_wnck.patch
- dropped, upstream
* debian/libgwibber2.symbols, debian/libgwibber-gtk2.symbols
- updated
-- Ken VanDine <ken.vandine@canonical.com> Sat, 30 Jul 2011 02:13:59 -0400
gwibber (3.1.4-0ubuntu2) oneiric; urgency=low
* debian/control
- Drop depends for python-wnck and depend on gir1.2-wnck-1.0
* debian/patches/no_wnck.patch
- Don't use static python bindings for wnck (LP: #813182)
-- Ken VanDine <ken.vandine@canonical.com> Tue, 26 Jul 2011 00:34:23 -0400
gwibber (3.1.4-0ubuntu1) oneiric; urgency=low
* New upstream release
- Install app icons in hicolor
- Hide account icons in the target bar that aren't related to the account
being posted from, only applies to replies for now.
- disconnect from signals when needed, this caused a bug where avatars
clicked opened incorrect urls
- only clear models when initiallizing, otherwise just update as new
posts come in
- Attempt to use the dee resource manager, currently only working for
the transient model
- Spell check support in the entry
* debian/gwibber.install
- install the ubuntuone image uploader
- install the hicolor icons
* debian/libgwibber-gtk2.symbols, debian/libgwibber2.symbols
- Updated symbols
* debian/control
- Added new build depends for libgtkspell3-dev
-- Ken VanDine <ken.vandine@canonical.com> Mon, 25 Jul 2011 15:27:12 -0400
gwibber (3.1.3-0ubuntu1) oneiric; urgency=low
* New snapshot
- Don't try to save account edits before the account is
created (LP: #749903)
- Initial support for transient search streams
- fixes for replies, likes and retweets (LP: #812054)
- improved display of links and images metadata
* debian/control
- Added libsoup2.4-dev build depends
* debian/libgwibber*.symbols
- Updated symbols
-- Ken VanDine <ken.vandine@canonical.com> Thu, 21 Jul 2011 17:26:37 -0400
gwibber (3.1.2-0ubuntu2) oneiric; urgency=low
* debian/gwibber.desktop:
- Add Unity to OnlyShowIn value (LP: #803519)
-- Michael Terry <mterry@ubuntu.com> Tue, 19 Jul 2011 14:40:13 -0400
gwibber (3.1.2-0ubuntu1) oneiric; urgency=low
* New upstream release
- Native retweet support
- Display notifications when re-tweeting
- Added messages and public streams, made home stream display everything
- Scrolling timeline flickers between current and top (LP: #707320)
- About gwibber is a bit outdated (LP: #748348)
- Load more messages (LP: #559321)
- Gwibber puts the newest tweets at the top and oldest at
bottom (LP: #625863)
- Scrolling skips bottom of a large message (LP: #782275)
- should use gsettings rather than gconf (LP: #656329)
* debian/patches/lpi.patch
- Launchpad integration
* debian/libgwibber-gtk2.symbols
- Added symbols
* debian/gwibber.desktop
- Use gsettings for autostart key
-- Ken VanDine <ken.vandine@canonical.com> Fri, 15 Jul 2011 17:14:14 -0400
gwibber (3.1.0-0ubuntu2) oneiric; urgency=low
* debian/patches/race_on_start.patch
- Attempt to fix a race on startup
* debian/control
- bump standards version to 3.9.2
-- Ken VanDine <ken.vandine@canonical.com> Tue, 07 Jun 2011 13:38:48 -0400
gwibber (3.1.0-0ubuntu1) oneiric; urgency=low
* New upstream release
- Handle NetworkManager API changes, for version >= 0.8.998 (LP: #791548)
- Added support for imageshack uploading
* -debian/patches/lp_735609.patch, -debian/patches/lp_757451.patch
- Dropped patch, applied upstream
-- Ken VanDine <ken.vandine@canonical.com> Thu, 02 Jun 2011 16:07:13 -0400
gwibber (3.0.0.1-0ubuntu3) natty-proposed; urgency=low
* debian/patches/fix_facebook_ext_perms.patch
- Send "scope" to specify ext_perm needed for facebook permissions,
without this posting to facebook fails and requires removing and adding
the account again for the user to get the permissions fixed (LP: #772015)
-- Ken VanDine <ken.vandine@canonical.com> Wed, 27 Apr 2011 17:19:04 -0400
gwibber (3.0.0.1-0ubuntu2) natty; urgency=low
* debian/patches/lp_735609.patch
- Don't try to render service information for a service that isn't
installed (LP: #735609)
* debian/patches/lp_757451.patch
- Don't populate the actions menu or reply when rendering a message
from a service that no longer has the plugin installed (LP: #757451)
-- Ken VanDine <ken.vandine@canonical.com> Wed, 13 Apr 2011 14:39:05 -0400
gwibber (3.0.0.1-0ubuntu1) natty; urgency=low
* New upstream release
- Use a dynamic quick list so we don't display a Quit menu in the
launcher when gwibber isn't running (LP: #736501)
- Enforce a minimum allowed interval of 5m
* debian/patches/better_input_handling.patch
- Dropped, fixed upstream
-- Ken VanDine <ken.vandine@canonical.com> Fri, 08 Apr 2011 02:03:08 -0400
gwibber (3.0.0-0ubuntu2) natty; urgency=low
* debian/patches/better_input_handling.patch
- Don't set editable until the input is exposed (LP: #647406)
- Added optional content arg to GwibberPosterVBox, so consumers of the
API won't need to override the expose event to insert default
contents (LP: #739923)
-- Ken VanDine <ken.vandine@canonical.com> Wed, 06 Apr 2011 15:02:46 -0400
gwibber (3.0.0-0ubuntu1) natty; urgency=low
* New upstream release
- Assume online if NetworkManager isn't available on dbus (LP: #567037)
- Be less agressive starting a refresh when connection state changes
to online
- Less agressive purging of data
-- Ken VanDine <ken.vandine@canonical.com> Tue, 05 Apr 2011 15:01:55 -0400
gwibber (2.91.93-0ubuntu1) natty; urgency=low
* New upstream release
- Fixed posting comments/replies to your own posts
- facebook: handle a change in the data returned from the facebook API
for "likes" (LP: #740778)
- Fixed setting images stream for image data from twitter, identi.ca and
status.net
-- Ken VanDine <ken.vandine@canonical.com> Mon, 28 Mar 2011 10:22:42 -0400
gwibber (2.91.92-0ubuntu1) natty; urgency=low
* New upstream release
- Don't try to send a message if it is empty (LP: #737798)
- twitter: Only add the reply to url link if we have enough information
to create the url
- Updated unity static quicklists to match the latest spec
- Purge old data as well as data without an associated
account (LP: #727132)
* debian/rules
- Dropped scour workaround
-- Ken VanDine <ken.vandine@canonical.com> Sat, 19 Mar 2011 23:07:52 -0400
gwibber (2.91.91.1-0ubuntu1) natty; urgency=low
* New upstream release
- Remove the rounding in the last elif condition, to avoid an error when
the seconds part is between 59.5 and 60.0. (Per Ångström) (LP: #705424)
- Fixed handling of the in_reply_to data for twitter, and made minor
changes to make sure identi.ca and status.net behaves the same
way (LP: #677233)
-- Ken VanDine <ken.vandine@canonical.com> Fri, 11 Mar 2011 15:07:28 -0500
gwibber (2.91.91-0ubuntu1) natty; urgency=low
* New upstream release
- Flickr account doesn't appear in account tree (LP: #645584)
- Fixed storage of facebook stream types in the database as well as
displaying them in the appropriate stream in the client
- Don't display "None" for the name of a photo if it isn't set
- Don't display an empty notification for media posted without
text (LP: #697729)
-- Ken VanDine <ken.vandine@canonical.com> Wed, 09 Mar 2011 14:57:26 -0500
gwibber (2.91.90-0ubuntu1) natty; urgency=low
* New upstream release
- Added X-Ayatana-Desktop-Shortcuts entries to the gwibber launcher
to add menus to the launcher in Unity
- Added gwibber-client wrapper script for performing some operations
- facebook: If there is no name associated with a link, use the text
"link" instead of displaying None
- use load_uri instead of the deprecated webkit.WebView.open API
* debian/gwibber.install
- include the gwibber-client wrapper script
-- Ken VanDine <ken.vandine@canonical.com> Tue, 22 Feb 2011 22:43:22 -0500
gwibber (2.91.2-0ubuntu3) natty; urgency=low
* debian/rules
- Override dh_scour args to prevent losing the gradient in the icon
-- Ken VanDine <ken.vandine@canonical.com> Wed, 26 Jan 2011 10:35:42 -0500
gwibber (2.91.2-0ubuntu2) natty; urgency=low
- Added suggests for gwibber-service-statusnet,
gwibber-service-foursquare, gwibber-service-friendfeed,
gwibber-service-pingfm, gwibber-service-qaiku,
gwibber-service-flickr, gwibber-service-digg
-- Ken VanDine <ken.vandine@canonical.com> Tue, 25 Jan 2011 14:19:19 -0500
gwibber (2.91.2-0ubuntu1) natty; urgency=low
* New upstream release
- foursquare: fails if response contains a venue that has been
deleted (Teester) (LP: #687498)
- dispatcher: catch exception per every failing-message (Marco
Trevisan) (LP: #645512)
- Dump test data (~/.cache/gwibber/dump/) if GWIBBER_TEST_DUMP=1
- Don't use the deprecated htmllib escaping for html entities (LP: #554205)
-- Ken VanDine <ken.vandine@canonical.com> Tue, 14 Dec 2010 14:53:13 -0500
gwibber (2.91.1-0ubuntu2) natty; urgency=low
* debian/patches/first_run_dynamic_protocols.patch
- Don't fail to check for data in desktopcouch, dynamically import
available services. This fixes crash on first run.
-- Ken VanDine <ken.vandine@canonical.com> Fri, 10 Dec 2010 00:05:53 -0500
gwibber (2.91.1-0ubuntu1) natty; urgency=low
* New unstable release
- statusnet:
* Fixed an if statement that was causing errors to get lost in some cases
* Enable the public stream by default, it is useful for dedicated
status.net instances
- facebook:
* Ported to use the Graph API
* Fixed rendering of "likes", and improved display of links, videos,
photos, etc
* Tell facebook not to prepend "is " to posts (LP: #674894)
- dispatcher:
* Handle python-indicate from karmic, the indicator doesn't send
a timestamp
* Fixed failure to notify for private messages (LP: #663377)
* Treat strings starting with "www." as a href (LP: #324809)
- client:
* Merged in keyboard control from Michael Hall (LP: #621953)
* Don't traceback older version of pygtk which didn't have gtk.InfoBar
* added missing public.png icons, for 24x24 and 32x32
- accounts: Show the auth button if we know there was an auth failure
-- Ken VanDine <ken.vandine@canonical.com> Tue, 16 Nov 2010 21:36:50 -0500
gwibber (2.91.0-0ubuntu1) natty; urgency=low
* New unstable release
- Shouldn't display reply icon for messages from you (LP: #661330)
- Private messages shouldn't allow public replies (LP: #661358)
- Private messages shouldn't allow retweets (LP: #661359)
- Don't clear multi-column streams when activated by the messaging
indicator (LP: #643487)
- Save window size/position when it changes, so it doesn't get moved
unexpectedly when activated by the messaging indicator (LP: #614345)
- Split gwibber-service backends into plugins so they can be optional
- gwibber-service will now look for plugins in multiple paths
* $GWIBBER_PLUGIN_DIR, ~/.local/share/gwibber/plugins,
/usr/local/share/gwibber/plugins, /usr/share/gwibber/plugins
- Don't traceback if you attempt to delete an account when there is
no account selected (LP: #663948)
- Fixed dupe notifications as well as displaying dupes in the stream
- Plugins can now return tuples of errors instead of messages, which
signals the client to display the failure in an Infobar
- Remove all db access from the client, move all the logic to the service
- Add appindicator support, to get quicklists if using Unity
- Use counters in the messaging menu for unseen messages, replies and
private messages
- Fix for gwibber-poster man page from Kartik Mistry (LP: #638824)
- New gwibber-accounts man page from Kartik Mistry (LP: #638824)
- Clear input entry and account target bar on ESC (LP: #555689)
- Client will display the infobar with retry, edit account, and clear
buttons
- gwibber-accounts: added infobar to display errors passed in from
the client
- gwibber-service-statusnet - ported to use oauth1.0a
- gwibber-service-identica - ported to use oauth1.0a
* debian/control
- Dropped recommends for python-desktopcouch-records
- Split the gwibber-service plugins into separate packages
* gwibber-service-facebook
* gwibber-service-twitter
* gwibber-service-identica
* gwibber-service-flickr
* gwibber-service-digg
* gwibber-service-buzz
* gwibber-service-statusnet
* gwibber-service-foursquare
* gwibber-service-friendfeed
* gwibber-service-pingfm
* gwibber-service-qaiku
- Make the service plugins conflict with gwibber-service <= 2.33.0
* debian/patches/lp_report_to_ubuntu.patch
- Updated links to point to natty
-- Ken VanDine <ken.vandine@canonical.com> Mon, 18 Oct 2010 17:07:03 -0400
gwibber (2.32.0.2-0ubuntu1) maverick-proposed; urgency=low
* New upstream release (LP: #660693)
- Reuse the libproxy.ProxyFactory object to prevent a race
condition (LP: #651761)
- Facebook: Check for new messages since "updated_time" instead
of "created_time", to prevent losing status updates (LP: #541831)
- Facebook: Better handling of data returned from facebook (LP: #615339)
- Facebook: fixed matching of uid with profiles (LP: #524510)
- Facebook: fixed missing notifications (LP: #575394)
- Facebook: when checking for new content, use localtime
- Update existing record if it conflicts instead of just
ignoring it (LP: #541831)
- Added a missing import to properly log failure on avatar resize
- Fix for internal Digg errors, thanks Vadim Rutkovsky (LP: #352226)
- Branch fixes gwibber icon is broken on the right
side, thanks Vish. (LP: #655159)
- start gwibber-service anytime the client needs it, not just for
service operations
- dropped print statement used for debugging scrolling
-- Ken VanDine <ken.vandine@canonical.com> Wed, 13 Oct 2010 15:19:46 -0400
gwibber (2.32.0.1-0ubuntu1) maverick; urgency=low
* New upstream release
- Re-enable the first run experience, if there are no accounts configured
run gwibber-accounts (LP: #654811)
-- Ken VanDine <ken.vandine@canonical.com> Tue, 05 Oct 2010 09:57:28 -0400
gwibber (2.32.0-0ubuntu2) maverick; urgency=low
* debian/patches/lp_report_to_ubuntu.patch
- Fixed urls for translate and gethelp to be maverick specific,
thanks Omer Akram (LP: #641808)
* debian/patches/lp_653225.patch
- Don't try to store the locale and reset it after parsing the
timestamp, this was causing a failure to retrieve any messages
for anyone with a locale set without encoding. For example en_IN
instead of en_IN.UTF-8 which seems to be pretty common (LP: #653225)
-- Ken VanDine <ken.vandine@canonical.com> Fri, 01 Oct 2010 14:37:29 -0400
gwibber (2.32.0-0ubuntu1) maverick; urgency=low
* New upstream release
- Hide appmenu stubs for preferences and accounts
* debian/patches/hide_appmenu_stubs.patch
- Patch dropped, included in release
-- Ken VanDine <ken.vandine@canonical.com> Tue, 28 Sep 2010 11:40:00 -0400
gwibber (2.31.95-0ubuntu2) maverick; urgency=low
* debian/patches/hide_appmenu_stubs.patch
- Hide appmenu stubs for preferences and accounts
-- Ken VanDine <ken.vandine@canonical.com> Thu, 23 Sep 2010 09:11:37 -0400
gwibber (2.31.95-0ubuntu1) maverick; urgency=low
* New upstream release
- Don't crash if an account exists for a service that isn't available
- Don't fail if user["url"] is None
- Really quit when quit is selected (LP: #603598)
- Don't block the UI on map_async, fixes dbus call_blocking()
exceptions (LP: #628686)
-- Ken VanDine <ken.vandine@canonical.com> Fri, 17 Sep 2010 23:28:14 -0400
gwibber (2.31.94-0ubuntu1) maverick; urgency=low
* New upstream release
- Fixed render stream when font settings change, thanks Vadim
Rutkovsky (LP: #580417)
- Only set the font when there is a default font set (LP: #534098)
- Disable plugins for all the webkit.WebView instances, apparently it
can consume lots of CPU (LP: #629368)
- Translation fixes from Vadim Rutkovsky
-- Ken VanDine <ken.vandine@canonical.com> Wed, 15 Sep 2010 03:15:17 -0400
gwibber (2.31.93-0ubuntu2) maverick; urgency=low
* debian/patches/abount_window.patch
- Set the about dialog as transient for the main window, cleans up
menus using appmenu
-- Ken VanDine <ken.vandine@canonical.com> Tue, 14 Sep 2010 23:53:49 -0400
gwibber (2.31.93-0ubuntu1) maverick; urgency=low
* New upstream release
- Make authentication and network errors translatable, thanks Vadim
Rutkovsky (LP: #633411)
- Removed unnecessary stream update when send_enabled is toggled, thanks
Vadim Rutkovsky (LP: #636290)
- Improved notification settings in gwibber-preferences (LP: #621646)
-- Ken VanDine <ken.vandine@canonical.com> Thu, 09 Sep 2010 09:26:37 -0400
gwibber (2.31.92-0ubuntu1) maverick; urgency=low
* New upstream release
- Don't crash if there are streams configured for accounts that no longer
exist (LP: #631263)
- Delete associated streams when an account is deleted
- Reuse worker pool of threads (LP: #624918)
- Ensure the timer is reset on each refresh, prevents multiple timers
created to perform the refresh operations causing crashes (LP: #600010)
- Clicking on the message indicator should focus replies (LP: #549817)
- When focusing replies stream from the indicator, clear the
indicators (LP: #629623)
- gwibber-service crashed with IOError in get_avatar_path() (LP: #626068)
- gwibber-service crashed with GError in notify() (LP: #622812)
* debian/gwibber-service.py
- Added apport package-hook to attach the gwibber.log (LP: #384552)
-- Ken VanDine <ken.vandine@canonical.com> Fri, 03 Sep 2010 15:06:17 -0400
gwibber (2.31.91-0ubuntu2) maverick; urgency=low
* debian/patches/lp_628420+lp_628552.patch
- Prevent duplicate notifications and indicators (LP: #628420)
- Honor notify_mentions_only setting (LP: #628552)
-- Ken VanDine <ken.vandine@canonical.com> Wed, 01 Sep 2010 21:37:44 -0400
gwibber (2.31.91-0ubuntu1) maverick; urgency=low
* New upstream release
- Port twitter service to OAuth, basic auth is no longer
supported (LP: #627565)
- Delay setting the position of the vertical splitter
- Fix PerformOp for single operation, including delete and
like (LP: #616798)
- Make the string for the Translate action i18n
friendly (Vadim Rutkovsky)
- Convert identi.ca groups (!) to hashtags (#) for re-denting if
global_retweet is true (Vadim Rutkovsky) (LP: #539786)
- Handle null responses gracefully (James Ogley) (LP: #623309)
- recognize valid unicode URLs (LP: #333390)
- Don't crash if there is an invalid value for a preference (LP: #623335)
* debian/gwibber-service.install
- Install files needed for twitter oauth
-- Ken VanDine <ken.vandine@canonical.com> Mon, 23 Aug 2010 23:35:05 -0400
gwibber (2.31.90-0ubuntu1) maverick; urgency=low
* New upstream release
- gwibber-accounts: Display Add/Create buttons at the appropriate time
- gwibber-accounts: Handle cases where there are missing keyring
entries, prompt the user and insert them into the keyring
- gwibber-accounts: Don't crash when attempting to migrate accounts
from desktopcouch if couch is installed but there is no
gwibber_accounts DB
- gwibber-service: Don't crash if creditials can't be found in the keyring
- Fix service error handling, displaying an error dialog or raising
gwibber-accounts as appropriate
- Limit the number of notifications display for old mentions
-- Ken VanDine <ken.vandine@canonical.com> Fri, 20 Aug 2010 15:01:04 -0400
gwibber (2.31.5-0ubuntu1) maverick; urgency=low
* New upstream release
- Added tooltips for Menu and Reply (LP: #577486)
- Handle messages that might have missing sender data
- Added Messages interface to com.Gwibber.Streams
- Added Start method to com.Gwibber.Service
-- Ken VanDine <ken.vandine@canonical.com> Thu, 12 Aug 2010 11:02:28 -0400
gwibber (2.31.4-0ubuntu2) maverick; urgency=low
* debian/patches/missing_sender.patch
- Handle messages that might have missing sender data
-- Ken VanDine <ken.vandine@canonical.com> Tue, 10 Aug 2010 12:51:07 -0400
gwibber (2.31.4-0ubuntu1) maverick; urgency=low
* New upstream release
- Merged back in i18n fixes from before the sqlite merge, they seem to
have gotten lost (LP: #538981)
- Make "Lists" translatable
- Make "Search" translatable
- Order the result of new_items by time so we get notifications in the correct
order (LP: #499323)
- Only notify for the last 10 messages (except responses), as it is that is
100 seconds of notifications displaying.
- Always notify for responses (mentions)
- Cache avatars for notifications and client (LP: #527446)
- Fixed scrolling problems including scrollwheel support (LP: #611276)
* debian/gwibber.desktop
- Changed the key looked at for autostart
* debian/control
- Added depends on python-oauth, required for buzz
-- Ken VanDine <ken.vandine@canonical.com> Tue, 03 Aug 2010 16:27:45 -0400
gwibber (2.31.3-0ubuntu2) maverick; urgency=low
* debian/control
- Removed python-pysqlite2 depends, sqlite3 is provided by python
-- Ken VanDine <ken.vandine@canonical.com> Thu, 29 Jul 2010 08:17:23 -0400
gwibber (2.31.3-0ubuntu1) maverick; urgency=low
* New upstream release
- Move backend storage from desktopcouch to sqlite
- Don't scroll to the top on every refresh (LP: #327172)
* debian/control
- Added a Depends for python-pysqlite2
- Dropped python-desktopcouch-records to a Recommends (still needed
for account migration, but not strickly required)
- Made python-libproxy and python-indicate Recommends instead
of depends
- Bumped standards version to 3.9.1
* -debian/patches/lp_539017.patch
- Merged upstream
* debian/patches/no_tray_icon_pref_ui.patch
- Hide the tray_icon preferences
-- Ken VanDine <ken.vandine@canonical.com> Wed, 28 Jul 2010 10:19:29 -0400
gwibber (2.31.2-0ubuntu3) maverick; urgency=low
* debian/patches/lp_539017.patch
- Fixed another import from util (LP: #605357)
-- Ken VanDine <ken.vandine@canonical.com> Wed, 14 Jul 2010 07:54:40 -0400
gwibber (2.31.2-0ubuntu2) maverick; urgency=low
* debian/patches/lp_539017.patch
- Moved SettingsMonitor, getbus and service_is_running to
gwibber.microblog.utils to fix failed imports from the public API when
only gwibber-service is installed (LP: #539017)
-- Ken VanDine <ken.vandine@canonical.com> Tue, 13 Jul 2010 16:43:17 -0400
gwibber (2.31.2-0ubuntu1) maverick; urgency=low
* New upstream release
- Better facebook api_key handling
- Only download content from facebook that we haven't already downloaded
yet (LP: #595265)
- Cache the results of the friends query from facebook so we don't make so
many redundant calls and download duplicate data (LP: #595265)
- Added a CouchDB view for getting max_message_time and a method for
looking it up per operation, using this value to only get content
newer than the latest record we have stored
- All of these fixes are related to reducing the number of calls we
we make to facebook and reducing the size of the result. Facebook
throttles application wide, not per-user based on usage. This throttling
is the root cause for (LP: #552227) and (LP: #595265) and probably many
other bug reports where facebook rejects gwibber.
- Merged in the latest version of facelib.py
- Don't fail when we get valid error codes back from facebook, log them.
- Bump the map_async timeout up to make sure it is higher than the pycurl
timeouts
- Bump the pycurl.TIMEOUT to 150 and use default for pycurl.CONNECTTIMEOUT
-- Ken VanDine <ken.vandine@canonical.com> Thu, 08 Jul 2010 15:38:18 -0400
gwibber (2.31.1-0ubuntu1) maverick; urgency=low
* New upstream release
- Added GetVersion method to the API
- added libproxy support for gwibber-service (LP: #259830)
-- Ken VanDin <ken.vandine@canonical.com> Thu, 24 Jun 2010 12:37:14 -0400
gwibber (2.30.0.1-0ubuntu4) maverick; urgency=low
* debian/patches/fix_poster.patch
- Fixed signals in the poster widget
-- Ken VanDine <ken.vandine@canonical.com> Sat, 15 May 2010 12:10:05 +0200
gwibber (2.30.0.1-0ubuntu3) lucid-proposed; urgency=low
* debian/patches/lp_569543.patch
- Don't allow people to click "Add" before we have enough information
from facebook to add the account (LP: #569543)
-- Ken VanDine <ken.vandine@canonical.com> Mon, 03 May 2010 10:58:47 -0400
gwibber (2.30.0.1-0ubuntu2) lucid-proposed; urgency=low
* debian/patches/handle_facebook_keyring.patch
- Handle prompting the user to authorize gwibber to use facebook in cases
where the account was synced and there is no local key stored in the
keyring (LP: #571224)
* debian/patches/dont_spawn_multiple_accounts_dialogs.patch
- Don't fire gwibber-accounts for each failure, only spawn it
once (LP: #564741)
-- Ken VanDine <ken.vandine@canonical.com> Tue, 27 Apr 2010 16:47:17 -0400
gwibber (2.30.0.1-0ubuntu1) lucid; urgency=low
* New upstream release
- Fixed account creation for accounts previously deleted (LP: #535263)
- Fixed support for Qaiku (LP: #342536) (LP: #544129)
- Fixed identi.ca search URL
-- Ken VanDine <ken.vandine@canonical.com> Thu, 15 Apr 2010 09:31:50 -0400
gwibber (2.30.0-0ubuntu1) lucid; urgency=low
* New upstream release
- gwibber crashed with KeyError in action() (LP: #520492)
- Strings in the side panel are not translatable (LP: #538981)
- Strings in the *mako templates are not translatable (LP: #538987)
- gwibber crashed with AttributeError in action() (LP: #444654)
-- Ken VanDine <ken.vandine@canonical.com> Wed, 14 Apr 2010 16:22:09 -0400
gwibber (2.29.95-0ubuntu5) lucid; urgency=low
* debian/patches/lp_539781.patch
- Fix handling of raising the keyring error (LP: #539781)
* debian/patches/lp_560008.patch
- Removed, incorporated in lp_539781.patch
-- Ken VanDine <ken.vandine@canonical.com> Wed, 14 Apr 2010 11:22:09 -0400
gwibber (2.29.95-0ubuntu4) lucid; urgency=low
* debian/patches/lp_560008.patch
- Added missing import for exceptions (LP: #560008)
-- Ken VanDine <ken.vandine@canonical.com> Tue, 13 Apr 2010 09:22:31 -0400
gwibber (2.29.95-0ubuntu3) lucid; urgency=low
* debian/control
- Depend on python-indicate instead of recommend (LP: #548814)
-- Ken VanDine <ken.vandine@canonical.com> Tue, 13 Apr 2010 09:10:29 -0400
gwibber (2.29.95-0ubuntu2) lucid; urgency=low
* debian/patches/lp_559151.patch
- create the view if it doesn't already exist (LP: #559151)
-- Ken VanDine <ken.vandine@canonical.com> Fri, 09 Apr 2010 11:16:51 -0400
gwibber (2.29.95-0ubuntu1) lucid; urgency=low
* New upstream release
- Fixed threadlock in keyring call which made gwibber-service
utilize 100% of a CPU (LP: #554005)
- Handle parsing of bad message content better
- Fixed color handling regression in gwibber-accounts
- Respect full name preference in notification bubbles
- Reset refresh interval to pick up changes in settings (LP: #487266)
-- Ken VanDine <ken.vandine@canonical.com> Thu, 08 Apr 2010 16:36:07 -0400
gwibber (2.29.94-0ubuntu1) lucid; urgency=low
* New upstream release
- Use the keyring to store private account fields (LP: #400120)
- Store window state information in gconf instead of desktopcouch
to prevent syncing
* debian/control
- Added depends on python-gnomekeyring
* debian/patches/lp_report_to_ubuntu.patch
- Updated to also point translations and questions to
downstream (LP: #551535)
-- Ken VanDine <ken.vandine@canonical.com> Tue, 30 Mar 2010 22:14:41 -0400
gwibber (2.29.93-0ubuntu1) lucid; urgency=low
* New upstream release
- Use MAX_MESSAGE_LENGTH for max length instead of hard coding 140
- Changed the views to not emit the entire doc as a value
- Set default focus to the text input widget (LP: #528302)
- Made a string translatable, requested by the translations
team (LP: #534667)
- Patch from Gabor Kelemen setting translation domain for .ui
files (LP: #538846)
- Mark strings translatable, thanks Kelemen Gábor (LP: #520462)
- Added X-GNOME-Gettext-Domain to allow translations of the desktop
files to be loaded at runtime (LP: #538851
- Use the desktopcouch API for excluding the DB and handle
errors (LP: #539583)
- Set window icons properly so they scale nicely
- Set account IDs in desktopcouch to force merging on sync instead of
creating dupes (LP: #535263)
* debian/patches/lp_report_to_ubuntu.patch
- File bugs against the package (LP: #551132)
-- Ken VanDine <ken.vandine@canonical.com> Wed, 17 Mar 2010 13:20:24 -0400
gwibber (2.29.92.1-0ubuntu1) lucid; urgency=low
* Upstream release 2.29.92.1
- fixes for friendfeed which require a remote key (LP: #520537)
- fixes for qaiku and friendfeed which both require an API key (LP: #538160)
- string change for the preferences menu (LP: #534952)
* debian/gwibber.install
- Don't install the launcher for gwibber-accounts (LP: #533076)
-- Ken VanDine <ken.vandine@canonical.com> Fri, 12 Mar 2010 18:10:57 +0100
gwibber (2.29.92-0ubuntu2) lucid; urgency=low
* debian/patches/lp_538083.patch
- when network exception is caught, CPU usage hits 100% (LP: #538083)
-- Ken VanDine <ken.vandine@canonical.com> Fri, 12 Mar 2010 08:42:41 -0500
gwibber (2.29.92-0ubuntu1) lucid; urgency=low
* new upstream release 2.29.92
- Raise errors for auth failures
- don't sync the gwibber_messages to ubuntuone (LP: #520687)
- use dbus names to check for existing service (LP: #534922)
* debian/gwibber.install
- Added files needs for raising error dialogs
-- Ken VanDine <ken.vandine@canonical.com> Thu, 11 Mar 2010 12:20:52 -0500
gwibber (2.29.91-0ubuntu1) lucid; urgency=low
* new upstream release 2.29.91
- fixed a bug that prevented mentions/replies to get added to the
messaging indicator
- added more debug level logging
- Fixed raising the client via dbus, missed a variable rename
- Added signatures to the URLShorten dbus methods, fixes (LP: #517723)
- URL shortening should be async (LP: #521974)
- don't fail if desktopcouch is slow to start
- Make "Name" more descriptive, it is displayed on UNE and in
GNOME Shell (LP: #522180)
- Fixed calls to print_exc that failed
- Gwibber stops working after suspending (LP: #518550)
- Fixed notifications for mentions only (LP: #528270)
- Set the autostart gconf key if it wasn't set at all before
- Internationalization fixed from David Planella (LP: #520462)
- use human readable time string in save to tomboy (LP: #532730)
- imported translations from LP
- Moved the init_design_doc method call to MessageMonitor, this fixes a
bug loading the design document before it is created
- fixed a problem with configuring accounts spawning two services
- check to see if gwibber-service is already running before starting
* debian/gwibber.desktop
- Make gwibber-service autostart with a delay of 60s if accounts are
configured
-- Ken VanDine <ken.vandine@canonical.com> Fri, 19 Feb 2010 16:42:07 -0500
gwibber (2.29.90.1-0ubuntu2) lucid; urgency=low
* No-change upload to get translations stripped and imported, now that the
package is in main.
-- Martin Pitt <martin.pitt@ubuntu.com> Mon, 01 Mar 2010 09:39:09 +0100
gwibber (2.29.90.1-0ubuntu1) lucid; urgency=low
* New upstream release 2.29.90.1
- Removed legacy home.mako templates, they aren't used anymore
- don't include the 32x32 icons in the dist, they aren't used
* debian/control, debian/gwibber.install, debian/gwibber-themes.install
- Split the extra themes out into a separate gwibber-themes package
* debian/control
- updated descriptions to reflect current gwibber features
- added Suggests for gwibber-themes
- make gwibber-themes replace gwibber << 2.29.90.1
-- Ken VanDine <ken.vandine@canonical.com> Thu, 18 Feb 2010 22:07:33 -0500
gwibber (2.29.90-0ubuntu1) lucid; urgency=low
[ Ken VanDine ]
* New upstream release 2.29.90
- ported Qaiku, StatusNet and Digg to 2.29.x
- Added logging, now outputs logs in $HOME/.cache/gwibber/
- Added url shortening to the python API
- Updated docstrings for epydoc friendly API docs
[ Didier Roche ]
* debian/control:
- bump Standard-Version
-- Ken VanDine <ken.vandine@canonical.com> Wed, 17 Feb 2010 14:47:15 -0500
gwibber (2.29.1-0ubuntu1) lucid; urgency=low
* new release 2.29.1
* debian/patches/theme.patch
- Set default theme to "ubuntu"
* debian/copyright
- updated references for files removed or moved
* dropped debian/{dirs,docs}, not needed anymore
-- Ken VanDine <ken.vandine@canonical.com> Mon, 08 Feb 2010 14:19:52 -0500
gwibber (2.29.1~bzr557-0ubuntu1) lucid; urgency=low
* new snapshot
- new messages theme for ubuntu
- updated jquery
-- Ken VanDine <ken.vandine@canonical.com> Sat, 06 Feb 2010 11:14:30 -0800
gwibber (2.29.1~bzr550-0ubuntu1) lucid; urgency=low
* new snapshot
- handle failures better in account import
- force a refresh after migrating accounts from gconf
-- Ken VanDine <ken.vandine@canonical.com> Fri, 05 Feb 2010 16:03:32 -0800
gwibber (2.29.1~bzr548-0ubuntu3) lucid; urgency=low
* debian/gwibber.install
- added upgrade.py
-- Ken VanDine <ken.vandine@canonical.com> Fri, 05 Feb 2010 15:38:11 -0800
gwibber (2.29.1~bzr548-0ubuntu2) lucid; urgency=low
* new snapshot
- added missing upgrade.py (LP: #517646)
- Use Twitter's home timeline instead of the deprecated friends timeline
- Consolidate all of our databases and monitors into the Model class
- Applied Cimi's box-shadow improvement to the Gwilouche theme
-- Ken VanDine <ken.vandine@canonical.com> Fri, 05 Feb 2010 15:25:28 -0800
gwibber (2.29.1~bzr543-0ubuntu1) lucid; urgency=low
* new snapshot
- Account creation/edit dialogs should have capitalized
titles (LP: #504979)
- Create dialog don't use a verb in the button (LP: #316219)
- Save and create buttons should be in an hbuttonbar (LP: #517229)
- Facebook account creation dialog is displayed above Facebook
authorization window (LP: #504966)
- Search entry should show clear icon if and only if the entry is not
empty (LP: #505248)
- migrate old accounts out of gconf
- no private messages for Identi.ca (LP: #517211)
- Re-render the messages when the theme or font is changed (LP: #498454)
-- Ken VanDine <ken.vandine@canonical.com> Fri, 05 Feb 2010 00:10:36 -0800
gwibber (2.29.1~bzr533-0ubuntu1) lucid; urgency=low
* new snapshot
- re-enabled message themes
- Added send button and moved character counter to an overlay
-- Ken VanDine <ken.vandine@canonical.com> Thu, 04 Feb 2010 09:35:50 -0800
gwibber (2.29.1~bzr529-0ubuntu1) lucid; urgency=low
* new snapshot
- Ported URLShorten and hooked it up in the UI
* debian/gwibber-service.install
- urlshorten moved under gwibber/microblog/
-- Ken VanDine <ken.vandine@canonical.com> Wed, 03 Feb 2010 11:51:33 -0800
gwibber (2.29.1~bzr526-0ubuntu1) lucid; urgency=low
* new snapshot
- Fixed an import error in gwibber-accounts
-- Ken VanDine <ken.vandine@canonical.com> Wed, 03 Feb 2010 10:42:16 -0800
gwibber (2.29.1~bzr525-0ubuntu1) lucid; urgency=low
* new snapshot
- fixed interface name for dbus service activation for the backend
-- Ken VanDine <ken.vandine@canonical.com> Wed, 03 Feb 2010 09:04:55 -0800
gwibber (2.29.1~bzr523-0ubuntu1) lucid; urgency=low
* new snapshot
- really raise/focus the client when called via dbus
-- Ken VanDine <ken.vandine@canonical.com> Tue, 02 Feb 2010 17:51:52 -0800
gwibber (2.29.1~bzr518-0ubuntu1) lucid; urgency=low
* new snapshot
- renames the dbus interface names to match the object path
-- Ken VanDine <ken.vandine@canonical.com> Tue, 02 Feb 2010 14:23:13 -0800
gwibber (2.29.1~bzr516-0ubuntu1) lucid; urgency=low
* new snapshot
* don't crash if gtkspell can't work for specified locale (LP: #439146)
-- Ken VanDine <ken.vandine@canonical.com> Mon, 01 Feb 2010 17:08:19 -0800
gwibber (2.29.1~bzr515-0ubuntu1) lucid; urgency=low
* new snapshot
-- Ken VanDine <ken.vandine@canonical.com> Mon, 01 Feb 2010 16:52:10 -0800
gwibber (2.29.1~bzr514-0ubuntu1) lucid; urgency=low
* new snapshot
* debian/gwibber.install
- include gwibber.lib.gtk
* debian/gwibber-service.install
- include gwibber.lib
-- Ken VanDine <ken.vandine@canonical.com> Mon, 01 Feb 2010 16:34:35 -0800
gwibber (2.29.1~bzr503-0ubuntu1) UNRLEASED; urgency=low
* new snapshot
-- Fabien Tassin <fta@ubuntu.com> Sun, 31 Jan 2010 03:00:51 +0100
gwibber (2.29.0~bzr496-0ubuntu1) lucid; urgency=low
* new snapshot
- fixes a problem starting the client when the service isn't running yet
-- Ken VanDine <ken.vandine@canonical.com> Sat, 30 Jan 2010 00:25:51 -0500
gwibber (2.29.0~bzr494-0ubuntu1) lucid; urgency=low
* new snapshot from the overhaul branch
* split the daemon out into gwibber-service (LP: #421285)
* use desktopcouch for message storage, displays messages (LP: #501676)
-- Ken VanDine <ken.vandine@canonical.com> Fri, 29 Jan 2010 23:50:27 -0500
gwibber (2.0.0~bzr488-0ubuntu1) lucid; urgency=low
* new snapshot
-- Ken VanDine <ken.vandine@canonical.com> Tue, 01 Dec 2009 14:48:24 -0500
gwibber (2.0.0~bzr486-0ubuntu2) karmic; urgency=low
* debian/control
- removed depends for python-gnome2-desktop and python-cairo
- added depends for python-wnck
-- Ken VanDine <ken.vandine@canonical.com> Fri, 27 Nov 2009 01:49:48 -0500
gwibber (2.0.0~bzr486-0ubuntu1) UNRELEASED; urgency=low
* Large font size, cannot be changed or overridden (LP: #460069)
* Gwibber doesn't honor refresh interval preference (LP: #487266)
* Added beginings of a public python API and simplified the submition
of an operation over dbus
* debian/patches/01_lp455943.patch
- removed, merged upstream
[Mike Basinger]
* Added python-gtkspell as a dependency to fix spellchecking (LP: #451374)
-- Ken VanDine <ken.vandine@canonical.com> Mon, 23 Nov 2009 17:10:45 -0500
gwibber (2.0.0~bzr476-0ubuntu3) karmic; urgency=low
* backout previous fix for font offset, which only adjusted offset, rather than fixing
the bug "gwibber does not honour font settings from UI"
-- Alexander Sack <asac@ubuntu.com> Sun, 25 Oct 2009 16:32:44 +0100
gwibber (2.0.0~bzr476-0ubuntu2) karmic; urgency=low
* adjusted font size so it stays with system font size rather than having a
+2pt offset (LP: #460069)
-- Jordan Hall <jordan@hall05.co.uk> Sun, 25 Oct 2009 00:07:39 +0100
gwibber (2.0.0~bzr476-0ubuntu1) karmic; urgency=low
* new upstream snapshot - r476
- fixes multithreading issues in gwibber-daemon probably causing a lot of random issues
- reduce number of threads to minimum by running OperationManager and OperatinResultHandler
run in glib mainloop
- fix flickr time parsing issues that can trigger random sorting of messages in frontend
- fix digg time parsing issues that can trigger random sorting of messages in frontend
- quit gwibber daemon if you explicitly quit gwibber UI
* remove round borders from css to fix invisible avatars for some graphic drivers (LP: #455943)
- add debian/patches/01_lp455943.patch
-- Alexander Sack <asac@ubuntu.com> Fri, 23 Oct 2009 10:48:06 +0200
gwibber (2.0.0~bzr467-0ubuntu1) karmic; urgency=low
* New upstream snapshot - r467
- set timeouts for connection and calls to facebook (LP: #422864)
-- Ken VanDine <ken.vandine@canonical.com> Mon, 19 Oct 2009 10:48:40 -0400
gwibber (2.0.0~bzr466-0ubuntu1) karmic; urgency=low
* New upstream snapshot - r466
- Fixed theme handling when the theme configured doesn't
exist (LP: #447733) and (LP: #446661)
-- Ken VanDine <ken.vandine@canonical.com> Fri, 09 Oct 2009 22:29:29 -0400
gwibber (2.0.0~bzr465-0ubuntu1) karmic; urgency=low
* New upstream snapshot - r465
- Fixes for dbus call blocking crashes (LP: #422726) (LP: #434833)
- dbus client and server now follow name changes (LP: #439325) (LP: #434592)
- Remember previous window size and position (LP: #422525)
- Remember previous account tree splitter position
- Remember previous input area size
- Do not change input area height when resizing main window (LP: #422532)
- Version themes to ensure only compatible themes are available
- fix dict handling for facebook replies (LP: #436690)
- facebook now uses pycurl instead of urllib2, fixes hangs (LP: #422864)
* debian/preinst:
- Moved from debian/postinst and added version compare
* debian/control:
- depend on python-pycurl, urllib2 was causing terrible problems
with facebook (LP: #422864)
-- Ken VanDine <ken.vandine@canonical.com> Sun, 04 Oct 2009 20:40:40 -0400
gwibber (2.0.0~bzr449-0ubuntu1) karmic; urgency=low
* New upstream snapshot - r449
- Fixed notifications (LP: #421021)
- Fixed time displayed in the messaging menu
- Merged fix from James Ogley for retweets (LP: #423026)
- Moved the indicator launcher to /usr/share (LP: #434097)
* debian/postinst:
- remove the old indicator from /etc and remove the directory
if it is empty
-- Ken VanDine <ken.vandine@canonical.com> Thu, 24 Sep 2009 01:31:03 -0400
gwibber (2.0.0~bzr436-0ubuntu1) karmic; urgency=low
* New upstream snapshot - r436 (LP: #428109)
- Fixed failure to refresh on start
- Fixed default configuration not being applied (LP: #418058)
- Fixed url shortening when resulting urls are more than 20 chars
- Updated the indicator to use v2 of the libindicate API (LP: #428109)
- Made the client launchable via dbus activation as well, enabling
the daemon to launch it when clicked in the messaging menu
- Bug fixes in the indicator (LP: #428112)
- Raise the client window when select in the indicator (LP: #398713)
- Add messaging menu launcher for gwibber (LP: #428110)
- Fixed starting/stopping of the throbber while the daemon is performing
operations (LP: #421655)
- Show menu icons when it makes sense
-- Ken VanDine <ken.vandine@canonical.com> Fri, 18 Sep 2009 16:28:03 -0400
gwibber (2.0.0~bzr396-0ubuntu1) karmic; urgency=low
* New upstream snapshot
- Improved first run experience
- Split backend and frontend into separate services
- Added launcher used in the messaging indicator
* debian/control:
* Bump minimum python version to >=2.6
* Added Suggests for python-desktopcouch-records
* Added Vcs-Browser
[ Alexander Sack ]
* fix LP: #389497 - "Do not depend on libwebkit directly"; dropping libwebkit
dependency and replacing transitional python-webkitgtk with python-webkit
in debian/control
* break long Depends: in multiple lines in debian/control
* fix LP: #366546 - "Gwibber missing dependency on python-glade2"; adjust Depends
in debian/control accordingly
-- Ken VanDine <ken.vandine@canonical.com> Tue, 25 Aug 2009 23:00:17 -0400
gwibber (1.2.0~bzr346-0ubuntu1) karmic; urgency=low
* snapshot 1.2.0~bzr346 fixes: LP: #304033
[ Fabien Tassin ]
* New upstream snapshot
* Add python-mako to Depends
-- Alexander Sack <asac@ubuntu.com> Fri, 03 Jul 2009 20:32:57 +0200
gwibber (0.9.2~bzr263-0ubuntu3) karmic; urgency=low
* Bah! libwebkit version is hard-coded in debian/control. Fix it for -2.
-- Steve Kowalik <stevenk@ubuntu.com> Sun, 14 Jun 2009 00:03:44 +1000
gwibber (0.9.2~bzr263-0ubuntu2) karmic; urgency=low
* No-change rebuild for libwebkit-1.0-1 -> libwebkit-1.0-2 transition.
-- Steve Kowalik <stevenk@ubuntu.com> Fri, 12 Jun 2009 10:14:00 +1000
gwibber (0.9.2~bzr263-0ubuntu1) karmic; urgency=low
[ Fabien Tassin ]
* New upstream snapshot
* Add python-xdg to Depends
[ Alexander Sack ]
* Fix typo s/DATA__BASE_DIRS/DATA_BASE_DIRS/ causing startup issues
[ David Futcher ]
* debian/control: Improve long description
* Install gwibber manpage (LP: #364813)
- debian/copyright: Update to include manpage license terms
- debian/gwibber.manpages: Add manpage
-- David Futcher <bobbo@ubuntu.com> Tue, 28 Apr 2009 16:59:01 +0100
gwibber (0.8-0ubuntu3) jaunty; urgency=low
* Initial release: 0.8 (as of lp:gwibber/1.0 #239)
* Packaging by Jorge O. Castro <jorge@ubuntu.com> and
Fabien Tassin <fta@ubuntu.com>
-- Fabien Tassin <fta@ubuntu.com> Fri, 20 Feb 2009 14:45:57 +0100
|