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
|
2024-12-21 Mike Gabriel
* Release 0.4 (HEAD -> main, tag: 0.4)
* Merge branch 'personal/gberh/lomiri-renaming' into 'main' (e749ccf)
2024-08-13 Guido Berhoerster
* Rename to lomiri-account-polld (94af381)
2024-12-21 Mike Gabriel
* Merge branch 'personal/gberh/noble' into 'main' (e757621)
2024-12-20 Marius Gripsgard
* debian: Remove dh-translations (1598aa4)
* tests: Make sure out runtime path has the correct perm (586bdf2)
* tests: signond mock: path got changed to object path (6c0f7f5)
* Don't disable rtti (765f657)
2024-08-19 Guido Berhoerster
* Show error in debug mode if plugin cannot be executed (b38476c)
* Adjust to changed DBus method signatures in signond (5229a47)
2024-08-13 Guido Berhoerster
* Replace obsolete QSet<T> QList::toSet() const method (cdf6b8d)
* Replace obsolete QByteArray &QByteArray::operator+=(const QString
&str) method (851bdec)
* Replace obsolete QList<T> QSet::toList() method (ddbfb5c)
* Replace obsolete QProcess::start(const QString &command, ...)
method (7c90146)
* Adjust dependencies for noble (920377d)
2022-09-27 Ratchanan Srirattanamet
* Merge branch 'port-to-focal' into 'main' (09c2c65)
2022-09-09 Guido Berhoerster
* Remove obsolete bzr-builddeb files (96da987)
* Rename from Ubuntu to Lomiri (1c7ae92)
* Port to focal (54fc4fe)
* Fix failing DBus tests (ee21e21)
* Modernize and move Jenkinsfile to debian/ (00dcc01)
2018-03-11 Dan Chapman
* Fix wrong versioning (58fee9c)
* Update changelog (1de680a)
* Add jenkinsfile (7435730)
2017-06-02 Alberto Mardegan
* Changelog for version 0.2 (60143fc)
2017-04-16 Alberto Mardegan
* Merge pull request #1 from mardy/mardy_external-plugins (124cfe0)
2016-09-21 Alberto Mardegan
* Fix reauthentication logic, add a test for that (4f1e1f4)
2016-09-20 Alberto Mardegan
* Handle sigterm signal (5b9aacd)
2016-09-19 Alberto Mardegan
* Avoid cyclical deps (5389074)
* Update dependencies and description (57b7ec4)
2016-09-16 Alberto Mardegan
* Update VCS link (eec6ee5)
2016-09-15 Alberto Mardegan
* Tests: wait till method returns (5fe0f79)
* more of the same (81dfb9f)
* Tests: increase plugin timeout (6acd490)
* Fix push object path (9881b9d)
2016-09-14 Alberto Mardegan
* Make tests more robust (d66efc0)
* Pass oauth client app data to plugin (4e70d07)
* Skip invalid applications (b948646)
2016-09-13 Alberto Mardegan
* Fix hook (70bb4f8)
* fix creation of dir (dfec1df)
* Rename output file (16e15d6)
* Hook: create dir if missing (d22b468)
2016-09-09 Alberto Mardegan
* Enable C++11 for all components (81d96df)
2016-09-08 Alberto Mardegan
* comma (ee1e683)
* Add python deps (9df7943)
* Update build dependencies (78e1378)
* Merge from trunk (8f8acc6)
* Recommend go plugins (768ea0e)
* Avoid removing the hook script (37ec24e)
2016-09-07 Alberto Mardegan
* Test click hooks (23d9aa3)
2016-09-06 Alberto Mardegan
* Add missing files, add .bzrignore (149977a)
2016-09-05 Alberto Mardegan
* test authentiction (fdf79f2)
* Improve tests, fix issues (8d3c174)
2016-09-02 Alberto Mardegan
* WIP tests (fcce810)
* Fix a few signal connections (116a89a)
* Register AccountData metatype (232f499)
* Fix dbus registration, emission of Done signal (86bda30)
* Add click hook program (3e3e5c3)
2016-09-01 Alberto Mardegan
* Putting things together (4a312fd)
* Add push client (285f0cd)
* Add plugin class (e3bee5f)
* Exclude unwanted services (9271587)
2016-08-31 Alberto Mardegan
* Implement authentication (60cd8c1)
* Add bzrignore (c68256b)
* wip (ca61a16)
2016-08-30 Alberto Mardegan
* Register D-Bus service (e963435)
* Add stub of poll service (b6706f5)
* Remove plugins and support libs (0097964)
2016-08-12 Launchpad Translations on behalf of ubuntu-push-hackers
* Launchpad automatic translations update. (5b944f0)
2016-08-11 Alberto Mardegan
* Skeleton (c152011)
2016-08-04 Bileto Bot
* Releasing 0.1+16.10.20160804-0ubuntu1 (42f0af5)
2016-08-04 Renato Araujo Oliveira Filho
* Implement the caldav plugin to query for changes on caldav sources.
(560fd6b)
2016-08-03 Renato Araujo Oliveira Filho
* Remove debug messages. (d600efc)
2016-08-02 Renato Araujo Oliveira Filho
* Merged: lp:~mardy/account-polld/dekko-gmail (f56dd5b)
* Format code. (cbf54b9)
* Rever changes on account_manager.go (5fcb0eb)
2016-08-01 Renato Araujo Oliveira Filho
* Query events using UTC time. (2e3877e)
2016-07-31 Renato Araujo Oliveira Filho
* Query for changes in localtime format if UTC returns empty values.
(b1193fc)
* Fix startDate. (d455d8f)
2016-07-30 Renato Araujo Oliveira Filho
* Retrieve changed events one miture before last sync. (d4a24cb)
* Fix utc conversion. (a931c56)
2016-07-29 Renato Araujo Oliveira Filho
* Use UTC date on end date. (575f941)
* Trunk merged. (8a17a76)
* print debug message. (210de10)
* Do not use hard coded urls. (69f47aa)
2016-07-22 Alberto Mardegan
* Update notification URL (35bc94e)
* Support Dekko's service (b8e3122)
* Merge from no-account-watching branch (0e0f8d2)
* Skip unsupported services (8400220)
* Use accountId/serviceId as keys, not service type (3e4a225)
* Remove serviceType constants (dc8120a)
* Cleanup after all debugging and PPA builds (4f306aa)
2016-07-22 Launchpad Translations on behalf of ubuntu-push-hackers
* Launchpad automatic translations update. (c98d3a6)
2016-07-21 Bileto Bot
* Resync trunk. (3dd8ca4)
2016-07-20 Alberto Mardegan
* resolved conflict (adb6c28)
* from trunk (3500c98)
2016-07-20 Launchpad Translations on behalf of ubuntu-push-hackers
* Launchpad automatic translations update. (bad9cf8)
2016-07-19 Bileto Bot
* Releasing 0.1+16.10.20160719.2-0ubuntu1 (0dfa1f5)
2016-07-19 Renato Araujo Oliveira Filho
* Check for changes on each calendar. (e5bccf8)
* Merged: lp:~artmello/account-polld/account-polld-notifications, to
fix build problems. (53fa56e)
* Trunk merged. (0fdd55d)
2016-07-12 Renato Araujo Oliveira Filho
* Implement the caldav plugin to query for changes on caldav sources.
(de0168f)
* Added prefix "calendar" to log. (dc89c50)
2016-07-06 Bileto Bot
* Releasing 0.1+16.10.20160706.1-0ubuntu1 (6daf8be)
2016-07-06 Arthur Mello
* Still run the plugins even when notifications are disabled
(43b6038)
* Merge with trunk (e92d48d)
2016-07-01 Launchpad Translations on behalf of ubuntu-push-hackers
* Launchpad automatic translations update. (f708030)
2016-06-30 Arthur Mello
* Still run the plugins even when notifications are disabled
(d89dfc8)
2016-06-28 Renato Araujo Oliveira Filho
* Return error to plugin manager in case of 'ErrTokenExpired'.
(3119a43)
* Encode calendar names before query for changes. (af722b1)
* Extra debug. (4352532)
* Added debug messages. (f58acd9)
2016-06-28 Alberto Mardegan
* Restore authData setup (c7375b3)
* Fix list lookup (24d3fe3)
2016-06-27 Alberto Mardegan
* Enable debug (2e567b4)
* Refresh account list (3bf78a9)
2016-06-23 Renato Araujo Oliveira Filho
* Use calendar id to retrieve last sync date. (61d57bd)
2016-06-22 Renato Araujo Oliveira Filho
* Sync new calendars. (4360da7)
2016-06-21 Renato Araujo Oliveira Filho
* Request sync using calendar id. (8d5332c)
* Update to use new sync monitor API. (5cccf5d)
2016-06-17 Renato Araujo Oliveira Filho
* Use the correct calendar id to check for changes. (4254d20)
2016-06-17 Alberto Mardegan
* Renew account list everytime, don't watch changes (4e654ce)
2016-06-16 Alberto Mardegan
* Rename AccountManager to AccountService (998df68)
2016-06-15 Alberto Mardegan
* Add plugin for Dekko/gmail (ac16c4f)
2016-06-09 Renato Araujo Oliveira Filho
* Check if sync monitor is 'idle' before query for information.
(5b8af8a)
2016-05-30 Renato Araujo Oliveira Filho
* More debug messages. (3444ec0)
* Check for changes on each calendar. (db12fce)
2016-05-08 Launchpad Translations on behalf of ubuntu-push-hackers
* Launchpad automatic translations update. (c13583d)
2016-04-30 CI Train Bot
* Releasing 0.1+16.04.20160430-0ubuntu1 (8010317)
* Create gcalendar plugin. Approved by: PS Jenkins bot, Jonas G.
Drange (4604f59)
2016-04-29 Launchpad Translations on behalf of ubuntu-push-hackers
* Launchpad automatic translations update. (1ae36f2)
2016-04-28 CI Train Bot
* Resync trunk. (115fb31)
2016-04-28 Launchpad Translations on behalf of ubuntu-push-hackers
* Launchpad automatic translations update. (66e591d)
2016-04-21 CI Train Bot
* Releasing 0.1+16.04.20160421-0ubuntu1 (16cdf92)
2016-04-21 Renato Araujo Oliveira Filho
* Create gcalendar plugin. Approved by: Jonas G. Drange, PS Jenkins
bot (16685b9)
2016-04-20 CI Train Bot
* Releasing 0.1+16.04.20160420-0ubuntu1 (589d0ea)
2016-04-20 jonas-drange
* Emit haptic and audible feedback only on the first notification in
a batch of notifications.
Fixes: #1570415 Approved by: PS
Jenkins bot (32cebc5)
* revert limit (6da8c2e)
* tweak params for vibrate (ce96b35)
* fix case #2 and lower notf limit (12a53bf)
2016-04-19 Renato Araujo Oliveira Filho
* Fix polling problem. (6cad737)
2016-04-19 jonas-drange
* disable sound on > 0 notifs (29d9431)
* only vibrate on first message in a batch (f9cc3f8)
2016-04-14 Renato Araujo Oliveira Filho
* Removed debug messages. (395e6e9)
* Format code. (cb195b8)
2016-04-13 Renato Araujo Oliveira Filho
* Does not continue sync if it fails to retrieve last sync date.
(a95b2ca)
* Revert changes on main.go. (84ee603)
* Revert changes on main.go Does not continue sync if it fails to
retrieve last sync date. (7436f11)
2016-04-12 Renato Araujo Oliveira Filho
* Does not try to pull calendar accounts if sync-monitor is not
available. (8fc421f)
* Refactory account pull code to support multiple account types.
(d334c88)
2016-04-11 Renato Araujo Oliveira Filho
* replace spaces to tabs. (a8d0392)
* Fix dbus method signature. (a18f5dd)
* Integrate with sync-monitor. (d95f85f)
2016-04-08 Renato Araujo Oliveira Filho
* Check for calendar accounts. (79d4044)
* Fixed calendar service name. (fb336fd)
* Parse the correct url. (f4b8e8e)
* Update lastSync date after sync. (ec64ba9)
* Create gcalendar plugin. (5768149)
2016-03-23 Launchpad Translations on behalf of ubuntu-push-hackers
* Launchpad automatic translations update. (0ad08e5)
2016-03-16 Launchpad Translations on behalf of ubuntu-push-hackers
* Launchpad automatic translations update. (8d645cd)
2016-03-08 CI Train Bot
* Releasing 0.1+16.04.20160308.1-0ubuntu1 (39238db)
2016-03-08 Niklas Wenzel
* Fix vibrations format for notifications
Fixes: #1431887 Approved
by: Jonas G. Drange (d7f9d13)
2016-03-08 jonas-drange
* do not ignore the mangled address Approved by: Niklas Wenzel
(6d6fa1b)
* Drop filter on category, limit the query in time (the same day).
Also, fix bug where emails violating rfc2047 would not
produce notifications.
Fixes: #1495904 Approved by: PS
Jenkins bot (ff1b078)
* bump (5b84f2a)
2016-02-24 jonas-drange
* 1d (ebc856f)
* use mangled addr (acf7e3e)
* more nikwen addressing (14f1ce6)
* addressing nikwen's comments (01409e7)
2016-02-08 Niklas Wenzel
* Fix vibrations format for notifications (1a33555)
* Remove old struct (031f104)
* Pick 3 (3d0d1ad)
* Pick 2 (44d5fee)
* Pick 1 (f9924fe)
2016-01-25 jonas-drange
* add newer_than in our query, fix bug where empty name would prevent
notification (500c36b)
2015-12-29 Launchpad Translations on behalf of ubuntu-push-hackers
* Launchpad automatic translations update. (9d22b78)
2015-12-21 CI Train Bot
* Releasing 0.1+16.04.20151221-0ubuntu1 (ed32057)
2015-12-21 jonas-drange
* - Force parsing of email address even if it violates RFC 5322. -
Encode icon file paths since unity-notifications require
it. - Summarize notification bubbles when > 10 in a batch,
but never summarize in the indicator.
Fixes: #1429276
Approved by: PS Jenkins bot, John Lenton (2752221)
* explain2 (5594f74)
* add reason why we're not checking the error message specifically
(b912d39)
* style fixes (b823fbc)
* fix url here (88a620b)
2015-12-19 jonas-drange
* don't compile the re every time (61055bf)
* add mangling (8002b4d)
2015-12-18 jonas-drange
* debug (77f9f8c)
2015-12-17 jonas-drange
* show everything in the indicator, but summarize more than 10
notifaction bubbles (f415075)
2015-12-16 jonas-drange
* define oftag outside if (4a47e71)
* better approach, whenever there's something overflowing, we notify
but with no persist (74814f5)
* different approach (cb6315e)
2015-11-11 Launchpad Translations on behalf of ubuntu-push-hackers
* Launchpad automatic translations update. (b603896)
2015-11-03 CI Train Bot
* Releasing 0.1+16.04.20151103-0ubuntu1 (eeacbe5)
2015-11-03 Niklas Wenzel
* Fix a timeout error in the qtcontacts module which occured when a
notification was shown directly after creating an account
(fixes LP: #1498214)
Fixes: #1498214 Approved by: Jonas G.
Drange (4aa20aa)
* Fix the timeout logic in the qtcontacts module (part of LP:
#1498214)
Fixes: #1498214 Approved by: Jonas G. Drange
(7ebe817)
2015-10-30 Niklas Wenzel
* Revert removing a go routine (c188e99)
2015-10-28 Launchpad Translations on behalf of ubuntu-push-hackers
* Launchpad automatic translations update. (ffe2db5)
2015-10-24 Launchpad Translations on behalf of ubuntu-push-hackers
* Launchpad automatic translations update. (6e5f23e)
2015-10-16 CI Train Bot
* Releasing 0.1+15.10.20151016.1-0ubuntu1 (164b10a)
2015-10-16 Alberto Mardegan
* Remove non working Facebook plugin (7eaed14)
2015-10-16 Niklas Wenzel
* When authentification of an account fails continuously, we should
wait a bit before trying again (part of the issue
experienced in LP: #1496773)
Fixes: #1496773 (0052bdb)
* Tell libsignon-glib not to open a trust session by passing
SIGNON_POLICY_NO_USER_INTERACTION as the
SIGNON_SESSION_DATA_UI_POLICY value (part of the issue
experienced in LP: #1496773)
Fixes: #1496773 Approved by:
Alberto Mardegan, Jonas G. Drange (bb61d5d)
2015-10-15 Niklas Wenzel
* Remove remaining TODO comment (cd9cdbf)
* Comment changes (aa27b92)
* Comment fixes (8260733)
* Refactoring (2cfda31)
* Minor changes (0ee7ce5)
* Add log output (026f800)
* Fix minor issue (8156fc7)
* Try to fix immediate reauth issue (9128c0a)
* Reset failedAuthenticationTries counter properly in token expiry
cases (151b97d)
* Prevent endless refreshes on password changes (a5337f8)
* Treat token expiry the same as auth errors (0b42f0e)
2015-10-12 Alberto Mardegan
* Update changelog (5079758)
2015-10-07 Launchpad Translations on behalf of ubuntu-push-hackers
* Launchpad automatic translations update. (3585880)
2015-10-04 Niklas Wenzel
* Fix a timeout error in the qtcontacts module when a notification is
shown directly after creating an account (294bc24)
* Fix the timeouts logic in the qtcontacts module (part of LP:
#1498214) (5fb2285)
2015-09-27 Niklas Wenzel
* Fix possible race condition (7c04022)
2015-09-25 Niklas Wenzel
* Logic fix (c157880)
2015-09-24 Niklas Wenzel
* Remove debug output (1b06f50)
* Increase auth failure penalty, add comments (6af1280)
* Fix build error (38e4a42)
* Fix logic error where failedAuthenticationTries counter would be
reset on every reauthentication (6911c6a)
* Do not open a trust session as we have no UI (5518088)
2015-09-23 Niklas Wenzel
* Add debug output (f983b77)
2015-09-22 Niklas Wenzel
* Fix typo in other file as well (eeda5fb)
* Fix typo (9fcedf1)
* gofmt (0eb16b0)
* Use modified form of the penalty count for authentification
failures (9dda79f)
2015-09-10 Alberto Mardegan
* Sync changelog from archive (7a435de)
2015-09-09 Alberto Mardegan
* Remove non-working Facebook plugin (d767d85)
2015-09-04 Launchpad Translations on behalf of ubuntu-push-hackers
* Launchpad automatic translations update. (ba4ac5b)
2015-07-31 Launchpad Translations on behalf of ubuntu-push-hackers
* Launchpad automatic translations update. (d8aa54e)
2015-07-26 Launchpad Translations on behalf of ubuntu-push-hackers
* Launchpad automatic translations update. (32721bc)
2015-06-27 Launchpad Translations on behalf of ubuntu-push-hackers
* Launchpad automatic translations update. (72ce978)
2015-06-26 Launchpad Translations on behalf of ubuntu-push-hackers
* Launchpad automatic translations update. (a9f0c45)
2015-06-11 Launchpad Translations on behalf of ubuntu-push-hackers
* Launchpad automatic translations update. (0b8af77)
2015-06-06 Launchpad Translations on behalf of ubuntu-push-hackers
* Launchpad automatic translations update. (146de16)
2015-05-20 Launchpad Translations on behalf of ubuntu-push-hackers
* Launchpad automatic translations update. (bf17876)
2015-05-07 Launchpad Translations on behalf of ubuntu-push-hackers
* Launchpad automatic translations update. (ffeaa3e)
2015-04-28 Launchpad Translations on behalf of ubuntu-push-hackers
* Launchpad automatic translations update. (1c5df39)
2015-04-22 Launchpad Translations on behalf of ubuntu-push-hackers
* Launchpad automatic translations update. (3685810)
2015-04-21 Launchpad Translations on behalf of ubuntu-push-hackers
* Launchpad automatic translations update. (7dc52c7)
2015-04-19 Launchpad Translations on behalf of ubuntu-push-hackers
* Launchpad automatic translations update. (a4efe5a)
2015-04-18 Launchpad Translations on behalf of ubuntu-push-hackers
* Launchpad automatic translations update. (820eb2b)
2015-04-17 Launchpad Translations on behalf of ubuntu-push-hackers
* Launchpad automatic translations update. (5464481)
2015-04-16 Launchpad Translations on behalf of ubuntu-push-hackers
* Launchpad automatic translations update. (649e7de)
2015-04-15 Launchpad Translations on behalf of ubuntu-push-hackers
* Launchpad automatic translations update. (deb1742)
2015-04-10 CI Train Bot
* Releasing 0.1+15.04.20150410-0ubuntu1 (9602b4d)
2015-04-10 John R. Lenton
* Fix an unfortunate wording (lp:1365206); also, re-ran the
update_translations script.
Fixes: #1365206 Approved by:
Sergio Schvezov, PS Jenkins bot (9705d83)
2015-04-03 Launchpad Translations on behalf of ubuntu-push-hackers
* Launchpad automatic translations update. (3ea38a6)
2015-04-02 Launchpad Translations on behalf of ubuntu-push-hackers
* Launchpad automatic translations update. (9a1537e)
2015-03-27 John R. Lenton
* fixed wording as per popey on lp:1365206; ran updated
update_translations.sh (546dcc1)
2015-03-26 Launchpad Translations on behalf of ubuntu-push-hackers
* Launchpad automatic translations update. (60ff85c)
2015-03-25 Launchpad Translations on behalf of ubuntu-push-hackers
* Launchpad automatic translations update. (8cfbb55)
2015-03-20 Niklas Wenzel
* [r=chipaca] handle auth failure better (18904b7)
* [r=chipaca] make poll() always send over doneChan (c015d3b)
* [r=chipaca] directly poll with new account fix (18a5256)
2015-03-20 John R. Lenton
* Stripped authors from copyright notices; it's a maintenance
nightmare and serves no purpose. (e333e2c)
2015-03-17 Sergio Schvezov
* fix update_translations.sh (c66adda)
2015-03-16 Launchpad Translations on behalf of ubuntu-push-hackers
* Launchpad automatic translations update. (e9895fa)
2015-03-02 Launchpad Translations on behalf of ubuntu-push-hackers
* Launchpad automatic translations update. (d9806c9)
2015-02-21 Launchpad Translations on behalf of ubuntu-push-hackers
* Launchpad automatic translations update. (e9185fe)
2015-02-17 Launchpad Translations on behalf of ubuntu-push-hackers
* Launchpad automatic translations update. (676463b)
2015-02-14 Launchpad Translations on behalf of ubuntu-push-hackers
* Launchpad automatic translations update. (692ad37)
2015-01-21 Launchpad Translations on behalf of ubuntu-push-hackers
* Launchpad automatic translations update. (d4b5042)
2014-12-27 Niklas Wenzel
* Fix LP: #1405651 as well (4d15f4d)
2014-12-26 Niklas Wenzel
* Fix issue with closures (c65435d)
2014-12-25 Niklas Wenzel
* Do fix properly (fad6ad2)
2014-12-18 Launchpad Translations on behalf of ubuntu-push-hackers
* Launchpad automatic translations update. (1e7ca91)
2014-12-10 CI Train Bot
* Releasing 0.1+15.04.20141210.1-0ubuntu1 (5738ca6)
2014-12-10 John R. Lenton
* first pass at grouping notifications by plugin (next pass: make
gmail track threads, not messages).
Fixes: #1400749
Approved by: Roberto Alsina, PS Jenkins bot (9acf7e8)
2014-12-09 John R. Lenton
* fixes lp:1400749 (6e979e3)
2014-12-02 Niklas Wenzel
* Do fix properly (dba3a33)
* Revert last implementation (afe9169)
* Fix compilation error (1903d54)
* Do fix properly (70bec46)
* Remove last 'fix' (5fc0c23)
2014-10-28 Launchpad Translations on behalf of ubuntu-push-hackers
* Launchpad automatic translations update. (5b3fe66)
2014-10-21 Niklas Wenzel
* Fix issues with closures in goroutines (9388798)
2014-10-20 Niklas Wenzel
* Existing accounts which have new account data will now directly
poll the server (6aa4541)
* When an account fails to authenticate once, it needs to try to
login again afterwards. (bb1cf60)
* Fix authors (5030f38)
* The poll() function in "cmd/account-polld/account_manager.go"
always needs to provide an output to a.doneChan. Otherwise
the select in Poll() does not know poll() has finished and
produces a timeout. (024e289)
2014-10-18 Launchpad Translations on behalf of ubuntu-push-hackers
* Launchpad automatic translations update. (c72c098)
2014-10-17 Launchpad Translations on behalf of ubuntu-push-hackers
* Launchpad automatic translations update. (dca468f)
2014-10-15 Launchpad Translations on behalf of ubuntu-push-hackers
* Launchpad automatic translations update. (2b999e3)
2014-10-14 John R. Lenton
* api change! partial inversion of control to better coalesce
messages between plugin invocations (f27df5f)
2014-10-06 CI bot
* Releasing 0.1+14.10.20141006.1-0ubuntu1 (3f4f372)
2014-10-06 Guillermo Gonzalez
* Log unseen value when skipping a message Approved by: Roberto
Alsina (dcb36fa)
2014-10-06 Roberto Alsina
* Use identifiers and API keys provided by the respective webapps
which are the official end points for the notification.
Respect blacklist gsetting to skip polling for
notifications that are not going to be shown Approved by:
Sergio Schvezov, PS Jenkins bot, Alberto Mardegan
(fc3a19e)
2014-10-02 Roberto Alsina
* skip blacklisted apps (ad666bc)
* merged lp:~dbarth/account-polld/use-webapps-ids (c959096)
2014-10-01 David Barth
* Use identifiers and API keys provided by the respective webapps
which are the official + end points for the
notifications (5fbac63)
2014-10-01 Launchpad Translations on behalf of ubuntu-push-hackers
* Launchpad automatic translations update. (efd18be)
2014-09-25 Guillermo Gonzalez
* log unseen value when skipping a message (4ed426d)
2014-09-24 Launchpad Translations on behalf of ubuntu-push-hackers
* Launchpad automatic translations update. (9a5a34f)
2014-09-23 Launchpad Translations on behalf of ubuntu-push-hackers
* Launchpad automatic translations update. (308a13e)
2014-09-19 Launchpad Translations on behalf of ubuntu-push-hackers
* Launchpad automatic translations update. (8c0532c)
2014-09-18 Launchpad Translations on behalf of ubuntu-push-hackers
* Launchpad automatic translations update. (122bc0d)
2014-09-16 Launchpad Translations on behalf of ubuntu-push-hackers
* Launchpad automatic translations update. (2d92357)
2014-09-13 Launchpad Translations on behalf of ubuntu-push-hackers
* Launchpad automatic translations update. (3131153)
2014-09-11 Launchpad Translations on behalf of ubuntu-push-hackers
* Launchpad automatic translations update. (461973b)
2014-09-10 CI bot
* Releasing 0.1+14.10.20140910-0ubuntu1 (1518d34)
2014-09-10 Guillermo Gonzalez
* Add a 5 min constraint to the facebook chat notifications, only
send it if it is 5min old. Also new unittests for the
facebook plugin. Approved by: Roberto Alsina, PS Jenkins
bot (1ef32c7)
2014-09-10 Launchpad Translations on behalf of ubuntu-push-hackers
* Launchpad automatic translations update. (0ac9e11)
2014-09-08 Launchpad Translations on behalf of ubuntu-push-hackers
* Launchpad automatic translations update. (4aa25a1)
2014-09-07 Launchpad Translations on behalf of ubuntu-push-hackers
* Launchpad automatic translations update. (6e655a0)
2014-09-05 Launchpad Translations on behalf of ubuntu-push-hackers
* Launchpad automatic translations update. (067cb9b)
2014-09-03 Launchpad Translations on behalf of ubuntu-push-hackers
* Launchpad automatic translations update. (7ff11f4)
2014-09-02 Guillermo Gonzalez
* add more tests for the facebook plugin (db9c8e6)
2014-09-01 Guillermo Gonzalez
* merge with trunk (3b4485f)
* update pot file (5431dfd)
* add a 5 min constraint to the facebook chat notifications, only
send it if the time is older then 5min from "now"
(fb3196f)
2014-09-01 Launchpad Translations on behalf of ubuntu-push-hackers
* Launchpad automatic translations update. (1b0c005)
2014-08-31 Launchpad Translations on behalf of ubuntu-push-hackers
* Launchpad automatic translations update. (ecf3a78)
2014-08-30 Launchpad Translations on behalf of ubuntu-push-hackers
* Launchpad automatic translations update. (561ee36)
2014-08-28 CI bot
* Releasing 0.1+14.10.20140828-0ubuntu1 (f2a47f1)
2014-08-28 Guillermo Gonzalez
* Initial version of inbox/messages polling. Approved by: Sergio
Schvezov, PS Jenkins bot (abd2bc5)
* simplify return stmt of decodeResponse (5797036)
* revert x bit changes and update translations (eb53a69)
* merge with trunk (161b5ee)
* revert account-manager change (2c98f28)
* remove Makefile, precommit hook and check_fmt script (676bea6)
* use fmt.Errorf instead of errors.New (a45ba8e)
2014-08-27 Guillermo Gonzalez
* update translations (c06504a)
* add coverage-html target (8107728)
* new tests (5000570)
* refactor notifications filter loop to be used by both parseResponse
and parseInboxResponse (0bc1ae4)
2014-08-27 Launchpad Translations on behalf of ubuntu-push-hackers
* Launchpad automatic translations update. (f69a1a1)
2014-08-26 Guillermo Gonzalez
* - factor out building of []plugins.PushMessagein parser* methods -
add test for consolidated notifications (0ffbe80)
* fix error handling in Poll method. (a509ba7)
2014-08-26 CI bot
* Resync trunk (ac438c2)
2014-08-26 Launchpad Translations on behalf of ubuntu-push-hackers
* Launchpad automatic translations update. (ba5453e)
2014-08-26 Guillermo Gonzalez
* use Notification interface for notification/thread handling
(de3e461)
2014-08-25 Guillermo Gonzalez
* - initial version of facebook messages notifications - refactored
some common code, as a first step to unify response
handling (a90df14)
2014-08-25 CI bot
* Releasing 0.1+14.10.20140825.1-0ubuntu1 (284f1b2)
* Switch from self polling to being polled by the push client that
manages the power state Approved by: Roberto Alsina, PS
Jenkins bot (792b80a)
2014-08-25 Sergio Schvezov
* Adding gmail avatar's through QtContacts Approved by: Roberto
Alsina, PS Jenkins bot (27fa1eb)
* Merging poll (d9c34cc)
2014-08-25 Launchpad Translations on behalf of ubuntu-push-hackers
* Launchpad automatic translations update. (46d9d92)
2014-08-23 Sergio Schvezov
* Adding dependencies (de7df5e)
* remove outdated code (bc436a5)
* initial working implementation (b4a4d39)
* Merged qtcontact into loop. (27b2b04)
* Merging trunk (501191a)
* initial qt loop migration (6c6f17e)
2014-08-23 Launchpad Translations on behalf of ubuntu-push-hackers
* Launchpad automatic translations update. (b482370)
2014-08-22 Guillermo Gonzalez
* add basic tolling to run tests, build and check/apply format
(1d53f6a)
2014-08-22 Launchpad Translations on behalf of ubuntu-push-hackers
* Launchpad automatic translations update. (22a17bf)
2014-08-21 Sergio Schvezov
* remove obsolete interval envvar and use a preset bootstrap timeout
time (a2ae30f)
* To poll or be polled, that's the question (b19cf11)
2014-08-21 Launchpad Translations on behalf of ubuntu-push-hackers
* Launchpad automatic translations update. (f905cdc)
2014-08-20 Launchpad Translations on behalf of ubuntu-push-hackers
* Launchpad automatic translations update. (9ae9839)
2014-08-19 Launchpad Translations on behalf of ubuntu-push-hackers
* Launchpad automatic translations update. (2e4b71e)
2014-08-18 Launchpad Translations on behalf of ubuntu-push-hackers
* Launchpad automatic translations update. (61011a8)
2014-08-17 Launchpad Translations on behalf of ubuntu-push-hackers
* Launchpad automatic translations update. (9102461)
2014-08-16 Launchpad Translations on behalf of ubuntu-push-hackers
* Launchpad automatic translations update. (eb2d1e4)
2014-08-15 Launchpad Translations on behalf of ubuntu-push-hackers
* Launchpad automatic translations update. (5a4f015)
2014-08-14 Launchpad Translations on behalf of ubuntu-push-hackers
* Launchpad automatic translations update. (db0c1b8)
2014-08-13 Launchpad Translations on behalf of ubuntu-push-hackers
* Launchpad automatic translations update. (2e2f2a5)
2014-08-12 Launchpad Translations on behalf of ubuntu-push-hackers
* Launchpad automatic translations update. (d81898f)
2014-08-11 CI bot
* Releasing 0.1+14.10.20140811.1-0ubuntu1 (977e175)
2014-08-11 Sergio Schvezov
* Facebook pretty notifications, persistence (with multiple account
support) Approved by: Roberto Alsina, PS Jenkins bot
(1b25392)
* Persist gmail reported ids and recover on boot Approved by: Roberto
Alsina, PS Jenkins bot (67393f8)
* Updated translation template (49b8dfc)
* Filter notifications for facebook at start, don't do a consolidated
message if no usernames where collected log more for
facebook for now (4e97f29)
2014-08-11 Launchpad Translations on behalf of ubuntu-push-hackers
* Launchpad automatic translations update. (ca5c308)
2014-08-10 Launchpad Translations on behalf of ubuntu-push-hackers
* Launchpad automatic translations update. (18bdf64)
2014-08-09 Launchpad Translations on behalf of ubuntu-push-hackers
* Launchpad automatic translations update. (47c29e4)
2014-08-08 Sergio Schvezov
* Updated translation template (990e948)
* Taking into account multiple accounts when storing and logging
(172cee9)
* Merged gmail_persist into facebook_tweaks. (b4c423b)
* Merging trunk (1287537)
* Common persist (f1683b4)
2014-08-08 Launchpad Translations on behalf of ubuntu-push-hackers
* Launchpad automatic translations update. (00a3729)
2014-08-07 Sergio Schvezov
* Adding ugly persistance to facebook (4d0a102)
* Adding author (ddc2cf7)
* Don't notify everything in facebook (1eb6375)
* Updating tests (c13e49e)
* Initial facebook polish (3538bcd)
2014-08-07 CI bot
* Resync trunk (7a1de11)
2014-08-07 Launchpad Translations on behalf of ubuntu-push-hackers
* Launchpad automatic translations update. (adea962)
2014-08-06 Sergio Schvezov
* Persist gmail state on poll and recover on start (4e8859c)
2014-08-06 CI bot
* Releasing 0.1+14.10.20140806.1-0ubuntu1 (d3b7d1a)
2014-08-06 Sergio Schvezov
* Packaging fixes: remove host arch from debian/rules, install to bin
instead of lib; start only when the push client session is
available Approved by: Ricardo Salveti, PS Jenkins bot
(192e7d5)
* Translation fixes Approved by: David Planella, PS Jenkins bot
(64be656)
* Removing host arch from debian/rules installing to bin instead of
lib and starting on ubuntu-push-client instead of dbus.
Also tagging a bug to why dh_strip is skipped. (55cdeee)
* Adding translation install (c605947)
* Adding note of what is being commited (1b89dbf)
* Updated translation template (89f9d49)
* Adding easy translation script (636883c)
2014-08-06 Launchpad Translations on behalf of ubuntu-push-hackers
* Launchpad automatic translations update. (f331d87)
2014-08-06 CI bot
* Releasing 0.1+14.10.20140806-0ubuntu1 (769d73d)
2014-08-06 Sergio Schvezov
* Only tweet since daemon start and use https for actions Approved
by: Roberto Alsina, PS Jenkins bot (9673967)
* GMail consolidate messages and date limit email check Approved by:
Roberto Alsina, PS Jenkins bot (a7b1d4a)
* Poll on start and polling result logs Approved by: Roberto Alsina,
PS Jenkins bot (8b9d94b)
2014-08-05 Sergio Schvezov
* Merged gmail_tweaks into twitter_tweaks. (8311a58)
* Don't format print (27fca3f)
* Merged gmail_tweaks into twitter_tweaks. (f954872)
* Correctly substracting (9ca8c83)
* Merged gmail_tweaks into twitter_tweaks. (e7c2316)
* Adding word to card. (e191cfd)
* Merged gmail_tweaks into twitter_tweaks. (efc2f02)
* Max - 1 and nicer total (cd676d2)
* Merged gmail_tweaks into twitter_tweaks. (4d56fe2)
* Adding message limit to gmail (96854d0)
* Logging skipped gmail messages (99ebf5d)
* Switching action to https (e041473)
* Merged gmail_delta_check into twitter_boot. (0ff2b52)
* Adding the account "word" to a log line (0e46967)
* Fixing logic and moving block one line up to avoid useless append
(0a18452)
* Merged gmail_delta_check into twitter_boot. (67cd67b)
* Adding some poll logs and initial polling trigger (dc6f24c)
* Don't report twitter messages on launch. (ce056f2)
* Don't report messages that are too old (647ba28)
2014-08-05 Launchpad Translations on behalf of ubuntu-push-hackers
* Launchpad automatic translations update. (8888f39)
2014-08-01 CI bot
* Releasing 0.1+14.10.20140801.2-0ubuntu1 (6bd1dac)
2014-08-01 Sergio Schvezov
* Use the timestamp entry for cards. Approved by: Roberto Alsina, PS
Jenkins bot (dfad25d)
* When logging account refresh limit to logging the corresponding
account id only. Approved by: Roberto Alsina, PS Jenkins
bot (39f0ae9)
* Using a more indicative icon to display in the account
configuration. Approved by: Roberto Alsina, PS Jenkins bot
(c40c7dd)
* Using the designed sound file. Approved by: Roberto Alsina, PS
Jenkins bot (d72043b)
* Using the proper mobile site gmail url. Approved by: Roberto
Alsina, PS Jenkins bot (c03025b)
* Card strings updated according to designs. Approved by: David
Planella, PS Jenkins bot, Roberto Alsina (fa3a129)
2014-08-01 Roberto Alsina
* Translation support for account-polld Approved by: David Planella,
PS Jenkins bot (96f4793)
2014-08-01 Sergio Schvezov
* Merged token_less into timestamp. (21c0af6)
* Merged account_icon into token_less. (1065193)
* Merged sound into account_icon. (f13b512)
* Merged gmail_url into sound. (99b6eaa)
* Merged design_updates_for_card_strings into gmail_url. (e139830)
* Fixing inverse logic for address parse (a6389e9)
* Fix misshap on epoch vs 0 (d6fbcd4)
* epoch for facebook too (9fde9a0)
* Set the epoch for the card (dbc4f57)
* Remove account data refresh verbosity (a1f9b95)
* Merged sound into account_icon. (493b10b)
* Merged gmail_url into sound. (f737e77)
* Merged design_updates_for_card_strings into gmail_url. (375e41c)
* Updating tests (a65d4dc)
* Merged sound into account_icon. (e3893dc)
* Merged gmail_url into sound. (4699676)
* Merged design_updates_for_card_strings into gmail_url. (125b737)
* Fixing translation typos (b44fa8a)
* Merged sound into account_icon. (2aa501b)
* Merged gmail_url into sound. (067a030)
* Merged design_updates_for_card_strings into gmail_url. (6f329ab)
* recreated .pot by running xgettext -kGettext -c -o
po/account-polld.pot plugins/gmail/gmail.go
plugins/twitter/twitter.go (d16499c)
* Fixing message string and adding missing TRANSLATORS text (1e484dc)
* Add translator comments in the code (9f7fc44)
* Merged sound into account_icon. (4a732df)
* Merged gmail_url into sound. (95e7693)
* pump (3c4b560)
* Pumping code updates from lp:~ralsina/account-polld/i18n (implies
trunk) (1678ccd)
2014-08-01 Roberto Alsina
* merged trunk (c834e55)
* separate unrelated code, removed bogus changelog entry (3b0cb0d)
2014-08-01 Sergio Schvezov
* Changing icon to indicator-messages (7a59287)
* Using new design sound Blip (9fbd59b)
* Adding proper gmail url for dispatching (64a28e4)
* Design updates for strings (b082dad)
2014-07-31 CI bot
* Releasing 0.1+14.10.20140731-0ubuntu1 (6cbe26a)
* Notification function with common parameters Approved by: Roberto
Alsina, PS Jenkins bot (7c3599b)
2014-07-31 Sergio Schvezov
* Icons as links or empty for default contact icon Approved by:
Roberto Alsina, PS Jenkins bot (d215665)
2014-07-31 Roberto Alsina
* add X-Ubuntu-Use-Langpack: yes (361d522)
* merged newer code from sergiusens (021a875)
* use dh_translations (8519494)
2014-07-30 Sergio Schvezov
* Adding license headers (07bd835)
* working version of avatars for gmail (3d877b0)
2014-07-29 Sergio Schvezov
* Merging mapping of qtimesingle shot (ee7589c)
2014-07-29 Manuel de la Peña
* Do get the method to execute using a signal mapper. (999dcac)
2014-07-29 Roberto Alsina
* remove gettext tests, they require data files etc (0b1074d)
* formatting, removed unused import (e67ef30)
* suggestions by dpm (6f16418)
* removed binary (3616fa9)
* added spanish .mo (32c8fe0)
* better initialization code (e8288c6)
* copyright information (7bbf208)
* initialize gettext (f334a08)
2014-07-29 Sergio Schvezov
* Merged base_notification into icon_fixes. (94dfaf1)
* Adding Tag (e48a688)
2014-07-29 Roberto Alsina
* full spanish translation (e35125a)
* initial translation (c0689d7)
2014-07-29 Sergio Schvezov
* test qtcontact (b7d5101)
2014-07-29 Roberto Alsina
* gettext package (923c687)
* fix permissions (86c197a)
2014-07-29 Sergio Schvezov
* Removing logic to download icons and passing link to upper layer.
Also setting icon to empty when not available to use the
default contact icon. (e64fe63)
* Creating function to create new base notification to avoid
duplication. (651dc09)
2014-07-28 CI bot
* Releasing 0.1+14.10.20140728.2-0ubuntu1 (7716ecc)
2014-07-28 Sergio Schvezov
* Set the default sound to a path relative to an XDG_DATA_DIR as the
push client searches within those paths. Approved by:
Roberto Alsina, PS Jenkins bot (3fb225e)
* Reset poll on success even when no new notifications come in.
Approved by: PS Jenkins bot, Manuel de la Peña (5961c03)
* If the twitter user's avatar is available use it in the
notification card's icon Approved by: Roberto Alsina, PS
Jenkins bot (a3562aa)
* Return ErrTokenExpired on google auth errors Approved by: Roberto
Alsina, PS Jenkins bot (d73b98c)
* Fix typo (9b53e93)
* Sound path relative to a XDG_DATA_DIR (72d8f03)
2014-07-27 Sergio Schvezov
* Reset poll on success even when no new notifications come in.
(ffdd0ce)
2014-07-26 Sergio Schvezov
* Download into cache instead and make DownloadAvatar worth it's
name. (b1648d0)
* Using the twitter avatar where possible. (8f25d36)
* Report specific error when google needs a token refresh. (600a4c0)
2014-07-25 CI bot
* Releasing 0.1+14.10.20140725-0ubuntu1 (b71c09c)
2014-07-25 Sergio Schvezov
* Add support for handling token expiry. Approved by: PS Jenkins bot
(68cd940)
* Only create a max of 2 notifications and 1 consolidated one for
each status and direct messages poll in the twitter
plugin. Approved by: PS Jenkins bot, Manuel de la Peña
(acdc940)
* Normalizing notifications. Approved by: PS Jenkins bot, Manuel de
la Peña (a18c650)
* Setting the interval to a more reasonable value. Allowing to
override on start with an envvar Approved by: Roberto
Alsina, PS Jenkins bot (706934b)
* Click installation check before poll Approved by: Roberto Alsina,
PS Jenkins bot (051a8ef)
* Minor fixes to paths and updates to use the system credentials.
Approved by: PS Jenkins bot (007644d)
* Running goimports on remaining files (5ca28dc)
* Running goimports (e38b8e7)
* Merging lp:~jamesh/account-polld/account-refresh into pipeline
(8517eb7)
* Updating tests (918920c)
* Removing the mistery from the magic numbers (164cce5)
* Missing one sep for Join (950995f)
* Polish text (e0ef5cc)
* Only sending 2 full notifications and 1 consolidated notification
for each card. (cc517cb)
2014-07-24 Sergio Schvezov
* Merged interval into card_q. (14947f2)
* Merged click_poll_check into interval. (cf207bc)
* Adding libclick (ebfc10a)
* Normalizing notifications. (e94494a)
* Setting the interval to a more reasonable value. Allowing to
override on start with an envvar (734861b)
* Click installation check before poll (c5054c2)
* Now that the gmail API can be used by the system account we should
switch back to that. (a140cf8)
2014-07-24 James Henstridge
* Fix typo. (d789a4e)
* Install additional online accounts files. (746159e)
* Merge from trunk (83b18b6)
* Disable the debug spew from account-watcher.c (cbd7345)
* Switch to the new prototype for accounts.NewWatcher() and the new
service names for Twitter and Facebook. (0eea3fc)
* Fix up a crash when we are reporting errors to Go and no session
data is available. (65b50e6)
* Add service files for Facebook and Twitter, and a service type file
that lets us select them along with GMail. (86744b3)
* Convert account watcher to track a single service type rather than
a set of service names. This is needed to properly
receive enabled event notifications. (6a3b15e)
2014-07-24 CI bot
* Releasing 0.1+14.10.20140724-0ubuntu1 (7743632)
* Boarding the (ci) train (013f735)
2014-07-23 Sergio Schvezov
* Initial packaging (5856947)
* Initial packaging (e97b4d8)
* Adding gmail plugin implementation. (11f676f)
* Only get the headers from payload (03414f6)
2014-07-23 James Henstridge
* Don't poll if we got an authentication failure. (964b82d)
* Send login failure notifications up to the Go layer. (9948656)
* Make twitter backend report expired tokens, and update tests.
(6880ecb)
* Merge from trunk (bb948aa)
* Add the Twitter polling plugin. (30dca27)
* Embed the OAuth 1 library, since we don't have it packaged.
(5b7dfb4)
* Add icon to Twitter messages. (b505e32)
* Convert Facebook token expired errors to ErrTokenExpired. (b549121)
2014-07-22 Sergio Schvezov
* Add a nice gmail icon to improve the notifications. (eb84a39)
* Review items addressed and added an envvar for gmail token
(a0f379a)
2014-07-22 James Henstridge
* Make account_manager check for expired tokens and request
reauthentication. (c4a0c93)
* Add ErrTokenExpired error. (c578c57)
* Add accounts.Watcher.Refresh() method. (19a2c49)
* Expose an accounts.Watcher type so we have something to hang
methods off. accounts.WatchForService() has been replaced
with accounts.NewWatcher(). (3c32566)
* Silence the warning, but include some code that will warn if the Go
callback prototype changes unexpectedly. (0cb8099)
* Don't use the NO_USER_INTERACTION flag for the auth session: this
prevents signin-ui from displaying dialogs, which is not
what we're after. On the phone the dialogs will come up
as snap decisions. (ddc9b02)
* Add account_watcher_refresh() method to trigger reauthentication
for a particular account ID. (f2f8647)
2014-07-21 James Henstridge
* Fix up comment, and run through gofmt. (7b7cbc9)
2014-07-20 Sergio Schvezov
* Updating the way we store reported messages. (925e899)
2014-07-18 Sergio Schvezov
* persisting cards and popping them up (459cb2b)
* gmail polling implementation. (2f24306)
2014-07-18 James Henstridge
* Hook up Twitter plugin to main program. (3daebae)
* Fix up Facebook tests. (20340ab)
* Add Twitter plugin, producing messages for mentions and direct
messages. (ff845bb)
2014-07-17 Sergio Schvezov
* Ubuntu Online Accounts resources with specific service file for
gmail (pending proper client keys). (a76ad5d)
* Switching to own client id and secret and renaming the service.
(d8bdb8d)
* Postal API updates with actual posting to the postal service.
(7267413)
* Merging trunk. (1478952)
* Add Facebook plugin. It currently doesn't support paginated
results, and requires a token with "manage_notifications"
permission. (1c2b4d7)
2014-07-17 James Henstridge
* Use gocheck for the tests. (0d93f5a)
* Run code through gofmt. (beca7f0)
* Fix plugin's app ID, and a few other small issues brought up in
review. (448bb29)
2014-07-16 Sergio Schvezov
* Adding UOA resources to be able to use on the device. (233cfc0)
* Updating Notifications with API defined in
http://ralsina.me/stories/push-docs.html (ca1c6c6)
* Adding mutex to account access. (d906b0a)
2014-07-16 James Henstridge
* Don't bother passing around pointers to slices unnecessarily.
(ac0d7e2)
* Wire in FB plugin. (ebc6deb)
* Make use a pointer for the error values. (d4a9217)
* Add some links to the API docs in the code. (9c6f37e)
* Add copyright header to test file. (0768db7)
* Keep track of the last update we saw so we don't post existing
notifications multiple times. (1719d72)
* Add some simple tests for the response parsing. (d81df15)
* Add basic FB plugin. (c6be948)
2014-07-15 Sergio Schvezov
* Mutex on auth data updates (ab8da81)
* Monitoring accounts with the accounts internal package. (d425c72)
2014-07-14 Sergio Schvezov
* Add affected account when logging poll interval (ca49c6c)
* Review changes (6cb7f3e)
* Log account changes (for early debugging purposes). (87ded4c)
2014-07-11 Sergio Schvezov
* Implementing account watch and looping a poll for it. (7915dd2)
* Update and refactor the online-accounts binding to support tracking
multiple services and multiple instances of each service.
(2f87fd8)
* Bootstrapping project layout (075f765)
2014-07-11 James Henstridge
* Remove unneeded includes. (bd074a0)
* Properly set AuthData.Enabled (db063d2)
* Add a simple test program to drive the account watcher through the
Go interface. (36638de)
* Port Go code over to new AccountWatcher. (12e9fac)
* Refactor the accounts code to handle multiple service types, and
multiple accounts providing the same service. Not yet
integrated with the Go API. (4d3103a)
2014-07-09 Sergio Schvezov
* Merged gmail_plugin into daemon. (421a141)
* Merged account into gmail_plugin. (6cc41c3)
* Adding accounts files (e8244c9)
* Merged gmail_plugin into daemon. (f12cfe3)
* Merged account into gmail_plugin. (a1aeb93)
* Adding accounts as a package to help signon (9c62876)
* Initial daemon implementation. (d45b176)
2014-07-08 Sergio Schvezov
* Adapting gmail plugin to new interface (7c76acf)
* Merged plugin_interface into gmail_plugin. (c6c4f48)
* Interface cleanup. (4e1b622)
* Merged plugin_interface into gmail_plugin. (68ac05d)
* Adding unregister (da83736)
* Initial gmail plugin (dce3c0c)
* Initial plugin interface (100874c)
|