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
|
2012-06-27 [paul] 0.30
0.30 released
2012-06-27 [paul] 0.29cvs5
* po/fr.po
* po/hu.po
* po/id_ID.po
* po/lt.po
* po/sk.po
updates by wwp, Pader Rezso, MSulchan Darmawan,
Mindaugas Baranauskas, Slavko
2012-01-06 [ticho] 0.29cvs4
* src/gettext.h
* src/notification_prefs.c
Exclude "Plugins" string from translation, since it will be
looked up from different gettext domain anyway.
2012-01-03 [mir] 0.29cvs3
* src/notification_popup.c
* src/notification_trayicon.c
We can load default icon.
2012-01-03 [mir] 0.29cvs2
* src/notification_plugin.c
* src/notification_popup.c
* src/notification_trayicon.c
Necessary changes to be able to load when
claws-mail is compiled to use the new
address book.
2012-01-02 [ticho] 0.29cvs1
* src/notification_prefs.c
Use "claws-mail" i18n domain for preference section path.
2011-12-16 [paul] 0.29
0.29 released
2011-12-16 [paul] 0.28cvs7
* po/ru.po
update
2011-12-16 [paul] 0.28cvs6
* configure.ac
* po/es.po
* po/fr.po
* po/id.po
* po/id_ID.po
* po/pt_BR.po
* po/sk.po
updates
2011-12-14 [holger] 0.28cvs5
* gtkhotkey/Makefile.am
Install include files into a Claws-Mail specific directory
2011-10-31 [colin] 0.28cvs4
* gtkhotkey/gtk-hotkey-error.h
* gtkhotkey/x11/tomboykeybinder.h
Fix build with GLib 2.31
2011-10-23 [colin] 0.28cvs3
* src/notification_foldercheck.c
enable_dotted_lines is no more.
2011-10-22 [colin] 0.28cvs2
* src/claws.def
* src/notification_core.c
* src/notification_plugin.c
* src/notification_trayicon.c
Update following Claws 3.7.10.41
2011-08-29 [colin] 0.28cvs1
* src/Makefile.am
Fix win32 libtool call
2011-08-27 [paul] 0.28
0.28 released
2011-08-26 [paul] 0.27cvs10
* configure.ac
* po/lt.po
new translation, submitted by Mindaugas Baranauskas
* po/fr.po
* po/sk.po
updated by wwp and Slavko
2011-08-20 [paul] 0.27cvs9
* configure.ac
fix check for indicate-0.5
2011-07-10 [holger] 0.27cvs8
* src/notification_indicator.c
Set attention hint whenever new messages are present
2011-06-13 [holger] 0.27cvs7
* configure.ac
Support libindicate 0.5
2011-06-13 [paul] 0.27cvs6
* po/ru.po
fix bug 2419, 'Russian localization of drop-down list
"Show banner" in section Plugins > Notification > Banner
is wrong'. thanks to Andrey Henneberg
2011-06-08 [holger] 0.27cvs5
* src/notification_trayicon.c
Don't try to attach the bubble with libnotify >= 0.7
Fix bug #2449
2011-06-06 [holger] 0.27cvs4
* ChangeLog
* commitHelper
Add another username
2011-06-02 [holger] 0.27cvs3
* configure.ac
* src/notification_popup.c
* src/notification_trayicon.c
Fix bug #2392
Based on patch by Christian Faulhammer
2011-04-12 [wwp] 0.27cvs2
* src/notification_prefs.c
Revert cvs1 (or can't compile w/ GTK+ 2.16 at least).
2011-04-10 [colin] 0.27cvs1
* src/notification_prefs.c
GtkComboBox undeprecation stuff.
2011-04-09 [paul] 0.27
* po/fr.po
updated by wwp
0.27 released
2011-04-03 [paul] 0.26cvs3
* src/notification_prefs.c
when unloading the plugin, also remove Hotkeys
prefs page
2011-04-03 [holger] 0.26cvs2
* configure.ac
Don't try to use libnotify >= 0.7.0,
it's API incompatible
2011-03-04 [colin] 0.26cvs1
* src/notification_trayicon.c
Hide widget before destroying it, or it's left as a ghost
on win32.
2010-11-19 [paul] 0.26
0.26 released
2010-11-19 [paul] 0.25cvs6
* po/ca.po
* po/cs.po
* po/fi.po
* po/fr.po
* po/hu.po
* po/id.po
* po/pt_BR.po
* po/sk.po
updated by Miquel Oliete, David Vachulka,
Flammie Pirinen, wwp, Pader Rezso, MSulchan
Darmawan, Frederico Goncalves Guimaraes, Slavko
2010-11-14 [holger] 0.25cvs5
* configure.ac
* src/notification_core.c
* src/notification_plugin.c
Don't disable deprecated symbols
2010-08-30 [ticho] 0.25cvs4
* src/notification_popup.c
* src/notification_trayicon.c
Really fix translation for popup message count texts by using
dngettext() instead of ngettext() for their translation.
2010-08-30 [ticho] 0.25cvs3
* src/notification_trayicon.c
Use correct translation domain for popup strings and trayicon
context menu.
2010-05-04 [colin] 0.25cvs2
* src/claws.def
Fix win32 build
2010-05-03 [holger] 0.25cvs1
* configure.ac
Require libindicate >= 0.3.0 for indicator module support
* src/notification_indicator.c
Update according to libindicate changes
* src/notification_prefs.c
Mark a string for translation
2010-05-01 [paul] 0.25
0.25 released
2010-04-30 [paul] 0.24cvs6
* po/cs.po
* po/fi.po
* po/hu.po
* po/nl.po
* po/pt_BR.po
* po/sk.po
updated by David Vachulka, Flammie Pirinen, Pader Rezso,
Marcel Pol, Frederico Goncalves Guimaraes, Slavko
2010-03-24 [pawel] 0.24cvs5
* commitHelper
- Portability fixes
- Add my name
* src/notification_core.c
* src/notification_plugin.c
* src/notification_trayicon.c
Fix build with GTK+ 2.19
2010-03-16 [holger] 0.24cvs4
* .cvsignore
More files to ignore
2010-02-23 [holger] 0.24cvs3
* src/notification_plugin.c
Fix type (thanks, Paul)
2010-02-23 [holger] 0.24cvs2
* src/notification_plugin.c
Hint at configuration
2010-02-09 [holger] 0.24cvs1
* configure.ac
* src/notification_foldercheck.c
Drop support for GTK+ < 2.10
2010-01-08 [paul] 0.24
0.24 released
2010-01-08 [paul] 0.23cvs13
* configure.ac
* po/nl.po
* po/sk.po
added by Marcel Pol and Slavko
* po/ca.po
* po/cs.po
* po/fi.po
* po/hu.po
* po/id.po
* po/ja.po
* po/pt_BR.po
updated by Miquel Oliete, David Vachulka, Tommi Pirinen,
Pader Rezso, MSulchan Darmawan, kazken3, and Frederico
Goncalves Guimaraes
2010-01-05 [colin] 0.23cvs12
* po/fr.po
Update french translation
2009-12-22 [holger] 0.23cvs11
* gtkhotkey/x11/tomboykeybinder.c
Turn off debug
2009-11-29 [holger] 0.23cvs10
* src/notification_plugin.c
* src/notification_trayicon.c
Forgotten includes
* src/notification_indicator.c
Select default inbox of the account when
clicking on an account in the indicator applet
2009-11-29 [holger] 0.23cvs9
* src/Makefile.am
* src/notification_hotkeys.c
* src/notification_hotkeys.h
* src/notification_plugin.c
* src/notification_prefs.c
* src/notification_prefs.h
* src/notification_trayicon.c
* src/notification_trayicon.h
Break global hotkeys out of trayicon as they also
make sense to be used in connection with the indicator applet
2009-11-29 [holger] 0.23cvs8
* src/notification_indicator.c
* src/notification_prefs.c
* src/notification_prefs.h
When using the indicator applet, allow
removing the Claws Mail from the window
list when it is minimized
2009-11-28 [holger] 0.23cvs7
* src/notification_prefs.c
Support registering Claws Mail in the
indicator applet. If registered, the applet
will provide an entry to launch Claws Mail
if it's not running
2009-11-25 [holger] 0.23cvs6
* configure.ac
* src/notification_indicator.c
* src/notification_plugin.c
Use new API to get .desktop file
2009-11-22 [holger] 0.23cvs5
* src/notification_indicator.c
* src/notification_indicator.h
Forgot to include new files on last commit
2009-11-22 [holger] 0.23cvs4
* configure.ac
* src/Makefile.am
* src/notification_core.c
* src/notification_core.h
* src/notification_plugin.c
* src/notification_prefs.c
* src/notification_prefs.h
* src/notification_trayicon.c
Add optional support for the indicator applet.
New configure switch --{en|dis}able-indicator
2009-10-21 [holger] 0.23cvs3
* src/notification_trayicon.c
Refuse to toggle window by hotkey when trayicon
is not visible
2009-10-17 [holger] 0.23cvs2
* src/notification_prefs.c
Fix build without libnotify, but with hotkey support
2009-10-16 [holger] 0.23cvs1
* Makefile.am
* configure.ac
* gtkhotkey/.cvsignore
* gtkhotkey/Makefile.am
* gtkhotkey/gtk-hotkey-error.c
* gtkhotkey/gtk-hotkey-error.h
* gtkhotkey/gtk-hotkey-info.c
* gtkhotkey/gtk-hotkey-info.h
* gtkhotkey/gtk-hotkey-key-file-registry.c
* gtkhotkey/gtk-hotkey-key-file-registry.h
* gtkhotkey/gtk-hotkey-listener.c
* gtkhotkey/gtk-hotkey-listener.h
* gtkhotkey/gtk-hotkey-marshal.c
* gtkhotkey/gtk-hotkey-marshal.h
* gtkhotkey/gtk-hotkey-registry.c
* gtkhotkey/gtk-hotkey-registry.h
* gtkhotkey/gtk-hotkey-utils.c
* gtkhotkey/gtk-hotkey-utils.h
* gtkhotkey/gtk-hotkey-x11-listener.c
* gtkhotkey/gtk-hotkey-x11-listener.h
* gtkhotkey/gtkhotkey.h
* gtkhotkey/x11/.cvsignore
* gtkhotkey/x11/eggaccelerators.c
* gtkhotkey/x11/eggaccelerators.h
* gtkhotkey/x11/tomboykeybinder.c
* gtkhotkey/x11/tomboykeybinder.h
* src/Makefile.am
* src/notification_prefs.c
* src/notification_prefs.h
* src/notification_trayicon.c
* src/notification_trayicon.h
Add support for global hotkeys to the trayicon
module. Ships a local copy of libgtkhotkey.
The hotkey support can be disabled at compile
time with the new --disable-hotkeys configure switch.
2009-10-09 [paul] 0.23
0.23 released
2009-08-22 [holger] 0.22cvs4
* m4/.cvsignore
More files to ignore
* src/notification_prefs.c
Increase maximum popup time to an hour,
and allow popups that never time out when
using libnotify
2009-07-10 [colin] 0.22cvs3
* src/claws.def
* src/notification_trayicon.c
Fix Windows build
2009-07-10 [holger] 0.22cvs2
* src/notification_plugin.c
Return FALSE from plugin_done() to avoid crash on unload
due to needed libraries.
2009-07-03 [mones] 0.22cvs1
* configure.ac
* po/es.po
Added Spanish translation
2009-07-03 [paul] 0.22
0.22 released
2009-07-03 [paul] 0.21cvs10
* configure.ac
* po/id.po
added by MSulchan Darmawan
* po/cs.po
* po/fi.po
* po/fr.po
* po/hu.po
* po/it.po
* po/ja.po
* po/pt_BR.po
* po/ru.po
updated by David Vachulka, Tommi Pirinen, Colin Leroy,
Pader Rezso, Andrea Spadaccini, kazken3, Frederico
Goncalves Guimaraes, and Aleksei Miheev
2009-05-22 [holger] 0.21cvs9
* src/notification_trayicon.c
Replace deprecated status icon tooltip function
2009-05-22 [holger] 0.21cvs8
* configure.ac
* src/notification_plugin.c
* src/notification_trayicon.c
Honour prefs_common.clean_on_exit, see
Claws Mail 3.7.1cvs60
2009-04-28 [holger] 0.21cvs7
* po/POTFILES.in
Add another missing file while I'm at it.
2009-04-28 [holger] 0.21cvs6
* po/POTFILES.in
Add missing file to potfiles.
Patch by Ilya Barygin <conscious@mail.ru>
2009-04-26 [holger] 0.21cvs5
* src/notification_popup.c
* src/notification_trayicon.c
Rework bubble logic to work better
with notify-osd
2009-04-07 [holger] 0.21cvs4
* configure.ac
* src/Makefile.am
* src/notification_core.c
* src/notification_prefs.c
* src/notification_prefs.h
Add optional support for the fd.o sound theme spec via canberra.
Support is build by default when libcanberra-gtk is present,
but can be turned off at compile time with
--disable-libcanberra-gtk or at run time on the main
prefs page.
Fixes reminder bug #1729.
2009-04-07 [holger] 0.21cvs3
* src/notification_core.c
* src/notification_plugin.c
* src/notification_plugin.h
* src/notification_prefs.c
* src/notification_prefs.h
Support setting the window manager urgency hint
when new and/or unread messages exist, configurable
on the Notification main prefs page.
The implementation is inspired by a patch from Dima Kogan <dkogan@cds.caltech.edu>
Fixes bug #1730
2009-03-08 [paul] 0.21cvs2
* configure.ac
* po/ja.po
add Japanese translation, submitted by kazken3
2009-03-06 [holger] 0.21cvs1
* src/notification_popup.c
* src/notification_trayicon.c
Revert the timeout part of 0.20cvs1. Being
annoying is better than racing. This needs a proper
fix along the lines of
https://wiki.ubuntu.com/NotificationDevelopmentGuidelines
2009-03-06 [paul] 0.21
0.21 released
2009-03-06 [paul] 0.20cvs2
* po/fi.po
* po/fr.po
* po/hu.po
* po/pt_BR.po
updated by Flammie Pirinen, Colin Leroy, Pader Rezso,
and Frederico Goncalves Guimaraes
2009-02-24 [colin] 0.20cvs1
* src/notification_popup.c
* src/notification_trayicon.c
Check for notification server "actions"
capability
2008-12-19 [paul] 0.20
0.20 released
2008-12-19 [paul] 0.19cvs3
* po/cs.po
* po/ru.po
updated by David Vachulka, Aleksei Miheev
2008-12-07 [paul] 0.19cvs2
* configure.ac
check for compiler before setting CFLAGS
2008-11-28 [colin] 0.19cvs2
* po/fr.po
Update
2008-11-18 [colin] 0.19cvs1
* src/notification_trayicon.c
Win32: Workaround GTK bug 552642
http://bugzilla.gnome.org/show_bug.cgi?id=552642
2008-10-10 [paul] 0.19
0.19 released
2008-10-04 [colin] 0.18cvs2
* src/claws.def
Fix symbols
2008-10-04 [colin] 0.18cvs1
* src/notification_plugin.c
Win32: set translation dir
2008-10-03 [paul] 0.18
0.18 released
2008-10-03 [paul] 0.17cvs7
* configure.ac
* po/ru.po
added by Aleksei Miheev
* po/ca.po
* po/fi.po
* po/fr.po
* po/hu.po
* po/zh_CN.po
updated by Miquel Oliete, Flammie Pirinen,
Colin Leroy, Pader Rezo, and Ralph Young
2008-09-26 [colin] 0.17cvs6
* configure.ac
* src/Makefile.am
* src/claws.def
* src/notification_banner.c
* src/notification_foldercheck.c
* src/notification_prefs.c
* src/notification_trayicon.c
* src/plugin.def
* src/version.rc
Prepare Win32 port
2008-08-07 [colin] 0.17cvs5
* src/notification_foldercheck.c
Undeprecate
2008-07-31 [colin] 0.17cvs4
* src/notification_banner.c
Get rid of the last (?) GtkItemFactory
2008-07-28 [holger] 0.17cvs3
* .cvsignore
More files to ignore
* src/notification_trayicon.c
Port trayicon popup menu to GtkUIManager
Heavily inspired by the trayicon plugin port (3.5.0cvs34)
2008-07-07 [holger] 0.17cvs2
* src/notification_banner.c
Don't lock mutex during gtk main loop iterations
2008-07-02 [wwp] 0.17cvs1
* src/notification_foldercheck.c
Fix compilation with older GTKs.
2008-06-27 [paul] 0.17
0.17 released
2008-06-27 [paul] 0.16cvs7
* po/fi.po
* po/pt_BR.po
updated by Flammie Pirinen and Frederico
Goncalves Guimaraes
2008-06-16 [holger] 0.16cvs6
* src/notification_prefs.c
Add comment to translators about "toast".
2008-06-12 [holger] 0.16cvs5
* src/notification_foldercheck.c
Obey tree view prefs. Patch by wwp.
2008-05-26 [holger] 0.16cvs4
* configure.ac
* src/notification_plugin.c
Update icons dynamically on theme change.
Patch heavily inspired by 3.4.0cvs70 of main
(on which this plugin now depends)
2008-05-25 [holger] 0.16cvs3
* src/notification_foldercheck.c
Maybe fix adjustment jumping around in
foldercheck window
2008-05-25 [holger] 0.16cvs2
* .cvsignore
More files to ignore
* src/notification_foldercheck.c
Close foldercheck dialog on ESC
2008-04-21 [colin] 0.16cvs1
* po/fr.po
Fix an ugly translation
2008-04-18 [paul] 0.16
0.16 released
* po/fr.po
added by wwp
* po/fi.po
* po/it.po
* po/pt_BR.po
updated by Flammie Pirinen, Andrea Spadaccini and
Frederico Goncalves Guimaraes
2008-03-15 [colin] 0.15cvs8
* src/notification_core.c
* src/notification_core.h
* src/notification_popup.c
* src/notification_trayicon.c
Factorize mainwindow show code, and fix
folderview's scroll like in Trayicon
2008-03-12 [colin] 0.15cvs7
* configure.ac
Enable -Wall
2008-03-05 [holger] 0.15cvs6
* src/notification_trayicon.c
Fix trayicon when compiled without
libnotify.
2008-02-25 [holger] 0.15cvs5
* src/notification_plugin.c
* src/notification_trayicon.c
* src/notification_trayicon.h
If the "hide on startup" trayicon option is
set, make sure that the trayicon is really
visible. Otherwise, the main window may
be hidden and inaccessible.
2008-02-17 [holger] 0.15cvs4
* src/notification_banner.c
Clean up (and fix) color inversion on mouse over
2008-02-16 [holger] 0.15cvs3
* src/notification_banner.c
* src/notification_plugin.c
* src/notification_prefs.c
* src/notification_prefs.h
Make banner width configurable. This is reasonable
on multi-monitor setups.
2008-02-16 [holger] 0.15cvs2
* src/notification_banner.c
* src/notification_core.c
* src/notification_core.h
Rework banner module widget hierarchy. Invert message
box color on mouse-over. Add right-click context menu
to reply to message.
2008-02-09 [paul] 0.15cvs1
* Makefile.am
enter the po/ dir sooner
2008-02-08 [paul] 0.15
0.15 released
2008-02-08 [paul] 0.14cvs5
* po/fi.po
* po/it.po
* po/zh_CN.po
updated by Flammie Pirinen, Andrea Spadaccini and
Ralph Young
2008-01-20 [holger] 0.14cvs4
* src/notification_trayicon.c
Use Stock icon for quit action in
trayicon context menu
2008-01-15 [holger] 0.14cvs3
* src/notification_pixbuf.c
Fix typo
2008-01-15 [holger] 0.14cvs2
* configure.ac
* src/Makefile.am
* src/notification_pixbuf.c
* src/notification_plugin.c
* src/raw_trayicon_newmail.h
* src/raw_trayicon_newmail_offline.h
* src/raw_trayicon_newmarkedmail.h
* src/raw_trayicon_newmarkedmail_offline.h
* src/raw_trayicon_nomail.h
* src/raw_trayicon_nomail_offline.h
* src/raw_trayicon_unreadmail.h
* src/raw_trayicon_unreadmail_offline.h
* src/raw_trayicon_unreadmarkedmail.h
* src/raw_trayicon_unreadmarkedmail_offline.h
Make trayicon themable.
2007-12-29 [holger] 0.14cvs1
* src/notification_core.c
* src/notification_prefs.c
Fix loading of plugin with disabled banner.
Also, fix remembering folder specific settings
for trayicon module when compiled without
libnotify.
Both problems reported by Dmitry Stegantsov <v@vsu.ru>
2007-12-17 [paul] 0.14.0
0.14.0 released
2007-12-17 [paul] 0.13cvs3
* po/hu.po
* po/it.po
updated by Pader Rezso and Andrea Spadaccini
2007-12-04 [holger] 0.13cvs2
* src/notification_prefs.h
Forgotten fix in last commit
2007-12-04 [holger] 0.13cvs1
* src/notification_popup.c
* src/notification_prefs.c
* src/notification_prefs.h
* src/notification_trayicon.c
Optionally show folder path in bubble.
Patch mostly by Salvatore De Paolis.
Also change some space indents to tabs.
2007-11-19 [paul] 0.13.0
0.13.0 released
2007-11-19 [paul] 0.12.1cvs9
* po/fi.po
* po/hu.po
* po/it.po
* po/pt_BR.po
* po/zh_CN.po
Updated by Flammie Pirinen, Pader Rezso, Andrea
Spadaccini, Frederico Goncalves Guimaraes, and
Ralph Young
2007-10-12 [holger] 0.12.1cvs8
* src/notification_plugin.c
Make unregistering the hooks the first thing
to do in plugin_done(). Thanks to Colin.
2007-10-12 [holger] 0.12.1cvs7
* src/notification_plugin.c
Destroy the trayicon on plugin unload. This call
was for sure missing, but doesn't fix the problem
that plugin unloading causes memory corruptions and
crashes. More debugging is necessary on this.
2007-10-11 [colin] 0.12.1cvs6
* src/notification_trayicon.c
Use ngettext for plurals
2007-10-11 [holger] 0.12.1cvs5
* configure.ac
* src/notification_plugin.c
Update required Claws-Mail version
* src/notification_popup.c
* src/notification_trayicon.c
If a single mail arrived and there is a picture
of the sender in the addressbook, use this picture
in the libnotify popup instead of the Claws Mail logo.
2007-10-04 [colin] 0.12.1cvs4
* src/notification_prefs.c
Verify success on writes
2007-09-26 [holger] 0.12.1cvs3
* src/notification_prefs.c
* src/notification_prefs.h
* src/notification_trayicon.c
* src/notification_trayicon.h
Fix compile without libnotify support.
Thanks to Brian Morrison for reporting.
2007-09-26 [holger] 0.12.1cvs2
* src/notification_core.c
* src/notification_core.h
* src/notification_lcdproc.c
* src/notification_lcdproc.h
* src/notification_plugin.c
* src/notification_prefs.c
* src/notification_trayicon.c
* src/notification_trayicon.h
Make trayicon and LCD obey global
folder preferences. Also, add "selected
folders only" option to the complete trayicon
module (and not only to the popups)
2007-09-20 [paul] 0.12.1cvs1
* configure.ac
* po/it.po
submitted by Andrea Spadaccini
2007-09-17 [paul] 0.12.1
* 0.12.1 released
2007-09-07 [holger] 0.12cvs2
* src/notification_popup.c
Fix typo in English popup string. Thanks to
Andrea Spadaccini for reporting.
2007-09-07 [holger] 0.12cvs1
* src/notification_lcdproc.c
Add missing include. Hopefully fixes build on FreeBSD.
Thanks to Martin Wilke (miwi) for reporting.
2007-09-03 [paul] 0.12
* 0.12 released
2007-09-03 [paul] 0.11cvs19
* po/ca.po
* po/fi.po
* po/hu.po
* po/pt_BR.po
* po/zh_CN.po
updated by Miquel Oliete, Flammie Pirinen,
Pader Rezso, Frederico Goncalves Guimaraes,
Ralph Young
2007-08-26 [holger] 0.11cvs18
* src/notification_trayicon.c
If a single mail message arrives, a click
on the trayicon popup now opens that mail
message in Claws-Mail.
2007-08-26 [holger] 0.11cvs17
* src/notification_trayicon.c
Fix compile without libnotify support.
2007-08-26 [holger] 0.11cvs16
* src/notification_trayicon.c
Add a menu item to the trayicon popup menu
to enable/disable the trayicon popups that have
been introduced in the last commit.
2007-08-26 [holger] 0.11cvs15
* src/notification_core.c
* src/notification_core.h
* src/notification_popup.c
* src/notification_prefs.c
* src/notification_prefs.h
* src/notification_trayicon.c
* src/notification_trayicon.h
Add support for the fd.o desktop notification spec
for the trayicon module if compiled with libnotify
support. This allows to have a passive toaster
popup attached to the trayicon when new mail arrives,
just like Rhythmbox and other GNOME apps. Some people
may prefer that over the toaster popups of the popup
module.
2007-08-24 [holger] 0.11cvs14
* src/notification_plugin.c
* src/notification_trayicon.c
Fix crash when the plugin was loaded when the
trayicon was disabled. Fixes (reopened)
Bug #1299.
Thanks to Zygfryd Homonto and
Charles A Edwards for the reports.
2007-08-24 [holger] 0.11cvs13
* src/Makefile.am
* src/notification_core.c
* src/notification_core.h
* src/notification_pixbuf.c
* src/notification_pixbuf.h
* src/notification_plugin.c
* src/notification_popup.c
* src/notification_prefs.c
* src/notification_prefs.h
* src/notification_trayicon.c
* src/notification_trayicon.h
* src/raw_trayicon_newmail.h
* src/raw_trayicon_newmail_offline.h
* src/raw_trayicon_newmarkedmail.h
* src/raw_trayicon_newmarkedmail_offline.h
* src/raw_trayicon_nomail.h
* src/raw_trayicon_nomail_offline.h
* src/raw_trayicon_unreadmail.h
* src/raw_trayicon_unreadmail_offline.h
* src/raw_trayicon_unreadmarkedmail.h
* src/raw_trayicon_unreadmarkedmail_offline.h
Add a new module: trayicon
This is a port of the standard trayicon plugin that ships
with Claws-Mail. It uses GTK+'s implementation of the
Freedesktop.org system tray specification instead of the
old, unmaintained and depreciated libeggtrayicon library.
2007-08-24 [holger] 0.11cvs12
* src/notification_lcdproc.c
Actually, do the call to shutdown() only on
non-Windows systems, since on Windows, shutdown()
is already called in sock_close()
2007-08-24 [holger] 0.11cvs11
* src/notification_lcdproc.c
Fix messages getting stuck at times on LCD by adding
a call to shutdown() for the socket before
calling sock_close(). Also make it easier to check
for return messages from the LCD deamon in the future.
2007-08-23 [holger] 0.11cvs10
* src/notification_lcdproc.c
Make messages appearing on LCD
translatable.
2007-08-23 [holger] 0.11cvs9
* configure.ac
* src/notification_core.c
* src/notification_lcdproc.c
* src/notification_lcdproc.h
As I was able to verify the lcdproc module with
real hardware now, built the module by default.
2007-08-21 [holger] 0.11cvs8
* COPYING
* src/notification_banner.c
* src/notification_banner.h
* src/notification_command.c
* src/notification_command.h
* src/notification_core.c
* src/notification_core.h
* src/notification_foldercheck.c
* src/notification_foldercheck.h
* src/notification_lcdproc.h
* src/notification_pixbuf.c
* src/notification_pixbuf.h
* src/notification_plugin.c
* src/notification_plugin.h
* src/notification_popup.c
* src/notification_popup.h
* src/notification_prefs.c
* src/notification_prefs.h
Change license to GPLv3 or later.
2007-08-21 [holger] 0.11cvs7
* src/notification_lcdproc.c
Don't even try to connect to LCDd
if the module is deactivated.
2007-08-21 [holger] 0.11cvs6
* src/notification_core.c
* src/notification_core.h
* src/notification_lcdproc.c
* src/notification_lcdproc.h
* src/notification_plugin.c
Better structure for notifications
of message counts.
2007-08-21 [holger] 0.11cvs5
* ChangeLog
* README
* configure.ac
* src/Makefile.am
* src/notification_lcdproc.c
* src/notification_lcdproc.h
* src/notification_plugin.c
* src/notification_prefs.c
* src/notification_prefs.h
Add a new module: lcdproc
to display the status of new and unread messages
on an external LCD. Needs a LCDd server up and running.
This is a rewrite of the former LCDProc plugin
for Sylpheed-Claws (GTK1 branch) which is copyrighted by
Leandro Pereira.
The module is not built by default until I can find my
soldering iron and actually test with my old LCD (instead
of just using the LCDd curses driver).
2007-08-20 [holger] 0.11cvs4
* src/notification_core.c
* src/notification_core.h
* src/notification_plugin.c
* src/notification_prefs.c
* src/notification_prefs.h
Add an option to restrict the maximum number of
messages in the banner module. Having too many messages there
causes too high system load. Defaults to 100. This restriction
can be deactivated by setting the option to 0.
Thanks to Mykilx and Paul for reporting.
2007-08-16 [paul] 0.11cvs3
* configure.ac
use pkgconfig to check for gtk and glib
2007-07-11 [colin] 0.11cvs2
* src/notification_plugin.c
Specify license better (GPL2+)
2007-07-07 [paul] 0.11cvs1
* configure.ac
* po/fi.po
added by Flammie Pirinen
2007-07-03 [paul] 0.11
* 0.11 released
2007-07-03 [paul] 0.10cvs7
* configure.ac
* po/zh_CN.po
added by Ralgh Young
* po/hu.po
* po/pt_BR.po
updated by Pader Rezso and Frederico
Goncalves Guimaraes
2007-06-21 [colin] 0.10cvs6
* src/notification_plugin.c
Update plugin API
2007-06-08 [wwp] 0.10cvs5
* configure.ac
Bumped required version.
2007-06-08 [colin] 0.10cvs4
* src/notification_popup.c
Fix build
2007-06-07 [paul] 0.10cvs3
* src/notification_popup.c
fix crash when Subject is empty
patch by Gianni Ceccarelli <dakkar@users.sf.net>
2007-04-20 [wwp] 0.10cvs2
* configure.ac
Bumped up the minimal Claws-Mail version this
plug-in requires.
2007-04-20 [wwp] 0.10cvs1
* src/notification_banner.c
Reflect changes to 2.9.1cvs5:
replaced nearly all uses of prefs_common.trans_hdr with a call
to prefs_common_translated_header_name().
2007-04-16 [paul] 0.10
0.10 released
2007-04-16 [paul] 0.9cvs10
* configure.ac
* po/ca.po
* po/hu.po
* po/pt_BR.po
added Catalan, Hungarian, and Brazilian
Portuguese translations by Miquel Oliete,
Pader Rezso, and Frederico Goncalves Guimaraes
2007-03-30 [holger] 0.9cvs9
* src/notification_core.c
Fix typo in debug string.
* src/notification_popup.c
If only a single message arrived, a click
on the popup will not only show the main window,
but also directly select the new message.
2007-03-17 [holger] 0.9cvs8
* po/.cvsignore
Another file to ignore.
2007-03-17 [holger] 0.9cvs7
* configure.ac
* po/LINGUAS *** removed ***
Follow Claws' standard for i18n
2007-03-17 [holger] 0.9cvs6
* ChangeLog
* Makefile.am
* configure.ac
* config/config.rpath
* m4/.cvsignore
* m4/Makefile.am
* m4/gettext.m4
* m4/iconv.m4
* m4/lib-ld.m4
* m4/lib-link.m4
* m4/lib-prefix.m4
* m4/nls.m4
* m4/po.m4
* m4/progtest.m4
* src/Makefile.am
* src/gettext.h
* src/notification_banner.c
* src/notification_foldercheck.c
* src/notification_plugin.c
* src/notification_popup.c
* src/notification_prefs.c
Add i18n support. This is a slightly modified
patch from Tim <timbrain@post.cz>, who is also
the author of the czech translation. Thanks a lot
him! I am a first-timer on i18n, so if it is broken,
it is most likely my fault.
2007-03-16 [holger] 0.9cvs5
* src/notification_core.c
Fix typo in debug string.
2007-03-13 [wwp] 0.9cvs4
* src/notification_popup.c
* config/.cvsignore
Candidate fix for bug #1148: gtk_window_present() is really not
enough to raise/show CM's mainwindow in all situations.
More files to ignore.
2007-03-08 [holger] 0.9cvs3
* Makefile.am
Fix bug 1146, 'cannot compile
notification-plugin from snapshot'
2007-03-02 [holger] 0.9cvs2
* src/notification_core.c
Fix a typo in a debug string.
2007-03-01 [wwp] 0.9cvs1
* src/notification_core.c
* src/notification_prefs.c
Add missing newline to few debug output/warning messages.
2007-02-26 [paul] 0.9
0.9 released
2007-02-04 [colin] 0.8cvs2
* src/notification_banner.c
* src/notification_foldercheck.c
* src/notification_popup.c
* src/notification_prefs.c
Set wmclass on windows
2007-01-23 [holger] 0.8cvs1
* src/notification_popup.c
Fix encoding of the displayed From and Subject
lines for the popup if using libnotify.
Thanks to Colin for helping me out on this.
2007-01-09 [paul] 0.8
0.8 released
2007-01-08 [holger] 0.7cvs4
* src/notification_popup.c
Deal with libnotify popup timeout function
error better.
2006-12-17 [holger] 0.7cvs3
* src/notification_popup.c
If a single mail message arrived,
show its from and subject headers in popup.
2006-12-15 [ticho] 0.7cvs2
* configure.ac
* src/notification_plugin.c
Use check_plugin_version() for version check.
2006-12-04 [holger] 0.7cvs1
* configure.ac
libnotify 0.4.3 seems to work well,
indeed. Make this one the required version
of libnotify (effectively activating
libnotify support from now on!).
2006-12-04 [paul] 0.7
0.7 released
2006-11-28 [paul] 0.6cvs3
* configure.ac
bump required version of Claws
following renaming
Thanks to Charles Edwards for the
reminder
2006-11-27 [paul] 0.6cvs2
* src/notification_plugin.c
* src/notification_prefs.c
renaming
2006-11-07 [paul] 0.6cvs1
* ChangeLog
* INSTALL
* PATCHSETS
* configure.ac
* src/Makefile.am
* src/notification_banner.c
* src/notification_banner.h
* src/notification_command.c
* src/notification_command.h
* src/notification_core.c
* src/notification_core.h
* src/notification_foldercheck.c
* src/notification_foldercheck.h
* src/notification_pixbuf.c
* src/notification_pixbuf.h
* src/notification_plugin.c
* src/notification_plugin.h
* src/notification_popup.c
* src/notification_popup.h
* src/notification_prefs.c
* src/notification_prefs.h
* src/raw_claws_mail_logo_64x64.h
* src/raw_sylpheed_claws_logo_64x64.h
Name change
2006-11-07 [paul] 0.6
* 0.6 released
2006-10-20 [holger] 0.5cvs5
* src/notification_core.c
* src/notification_core.h
* src/notification_plugin.c
Make banner module obey global folder
type limitations.
2006-10-15 [holger] 0.5cvs4
* configure.ac
* src/notification_popup.c
Fix off-by-one in message count when
using libnotify.
2006-10-15 [holger] 0.5cvs3
* src/notification_core.c
Fix typo in debug string
2006-10-14 [holger] 0.5cvs2
* src/notification_command.c
* src/notification_core.c
* src/notification_plugin.c
* src/notification_popup.c
* src/notification_prefs.c
* src/notification_prefs.h
Implement global configuration options
to include or exclude certain folder types
(mail, news, RSS, calendar) from notification.
2006-10-07 [holger] 0.5cvs1
* src/notification_command.c
* src/notification_command.h
* src/notification_prefs.c
* src/notification_prefs.h
Expand folder specific settings to
the command module.
2006-09-26 [colin] 0.5
* 0.5 released
2006-09-26 [holger] 0.4cvs1
* src/notification_popup.c
Fix several possible deadlock situations.
Thanks to Brian Morrison and Colin for
debugging this.
2006-09-25 [paul] 0.4
0.4 released
2006-09-24 [holger] 0.3cvs16
* src/notification_popup.c
Have seperate popups for incomming mail,
calendar messages, RSS feeds and news
messages when using libnotify.
2006-09-24 [colin] 0.3cvs15
* src/notification_prefs.c
Include main.h for sylpheed_is_exiting()
2006-09-23 [colin] 0.3cvs14
* src/notification_prefs.c
Don't do gtk stuff on exit
2006-09-23 [holger] 0.3cvs13
* src/notification_popup.c
Make code more flexible, preparing for
having seperate popups for different
types of incomming messages (will most
likely only get into the libnotify part).
2006-09-23 [holger] 0.3cvs12
* src/notification_prefs.c
Make it clear that the window manager is free
to ignore the popup width and position selected
by the user.
2006-09-22 [ticho] 0.3cvs11
* configure.ac
Update required claws-mail version to 2.4.0.200.
2006-09-22 [holger] 0.3cvs10
* src/notification_core.c
Add some debugging info.
* src/notification_command.c
* src/notification_popup.c
For now, ignore folders with foldertype
F_NEWS and F_UNKNOWN.
2006-09-21 [holger] 0.3cvs9
* src/notification_core.c
Make plugin safe against msgid set to NULL.
2006-09-18 [holger] 0.3cvs8
* src/notification_core.c
Change notification implementation in a way
that every msg is only warned about once,
distinguished by msgid. This will result in
getting only one notification for receiving
double messages, but this is probably the
smaller annoyance.
2006-09-17 [holger] 0.3cvs7
* commitHelper
Use the same version number in ChangeLog and plugin.
* configure.ac
Update to check for libnotify. Required libnotify version
is set to a high value. 0.4.3 or later will probably
work, but is not released yet, and I didn't verify
svn. Consider libnotify support to be deactivated for
now.
* src/Makefile.am
* src/notification_pixbuf.c
* src/notification_pixbuf.h
* src/notification_plugin.c
* src/notification_popup.c
* src/notification_prefs.c
* src/notification_prefs.h
* src/raw_claws_mail_logo_64x64.h
Include support for libnotify.
* src/notification_core.c
* src/notification_core.h
Try to make the notification also work on IMAP folders. This
requires major rework. The postfiltering-hook has been dropped
in favor of connecting to the folderitem update hook directly.
The implementation of this is likely to change again, though.
2006-09-01 [wwp] 0.3cvs6
* commitHelper
sync w/ commitHelper in claws-mail module:
use CVSEDITOR env. var. if set.
2006-08-27 [wwp] 0.3cvs5
* src/notification_plugin.c
fix plugin compilation (N_ undefined).
2006-08-27 [colin] 0.3cvs4
* src/notification_plugin.c
Implement plugin_provides()
2006-08-18 [paul] 0.3cvs3
* configure.ac
bump up GLib and GTK+ minimum required versions,
following Claws
2006-08-04 [holger] 0.3cvs2
* src/notification_foldercheck.c
* src/notification_popup.c
* src/notification_popup.h
* src/notification_prefs.c
* src/notification_prefs.h
Expand folder specific settings to the
popup module, and fix several bugs on the way.
2006-08-03 [holger] 0.3cvs1
* src/notification_foldercheck.c
Make specific folder list safe against deleted
folders. Fixes crasher when an already deleted
folder was accessed.
2006-08-02 [paul]
0.3 released
2006-07-27 [holger] 0.3
* src/Makefile.am
* src/notification_core.c
* src/notification_core.h
* src/notification_banner.h
* src/notification_plugin.c
* src/notification_prefs.c
* src/notification_prefs.h
* src/notification_foldercheck.c *** new file ***
* src/notification_foldercheck.h *** new file ***
Introduce restricting notification to certain
folders via the options page. Currently, the
new feature is only used in the "Banner" module,
but the others will follow soon. Hopefully.
2006-06-10 [holger] 0.2.1
* src/notification_prefs.c
Rework prefs page, to make greying out inactive
options easier.
2006-06-06 [wwp] 0.2cvs2
* configure.ac
* src/.cvsignore
fix/unify/simplify autostuff.
2006-06-03 [wwp] 0.2cvs1
* commitHelper
* PATCHSETS
introducing commitHelper for plugins too.
2006-05-25 [holger] 0.2
* configure.ac
* src/Makefile.am
* src/notification_plugin.c
* src/notification_prefs.c
* src/notification_prefs.h
* src/notification_command.c *** new file ***
* src/notification_command.h *** new file ***
Add new module: command
Executes a command line upon new mail arrival.
In contrast to the builtin-command support, the
command ist just issued when the mail is marked as
"new" after sorting. This way, one can get around
notifications when for example just Spam arrives.
2006-05-07 [holger] 0.1.2
* src/notification_plugin.c
Make sure the hooks are not called with
NULL as source. Fixes crasher.
2006-04-07 [colin] 0.1.1
* configure.ac
Optionnaly handle --prefix.
Patch by Pawel Pekala.
2006-03-18 [holger] 0.1
first public release
2006-03-16 [holger] 0.0.2
* refresh popup during filtering
2006-03-07 [holger] 0.0.1
* initial import
|