1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216
|
Evolution-Data-Server 2.22.3 2008-06-30
---------------------------------------
Bug Fixes:
#213072: Fix for folder/summary or message-list/preview mismatch (Srinivasa Ragavan)
#340838: Use the whole URL even when not the proxy set, because the URL can contain parameters, which are not part of the path (Milan Crha)
#374616: Show server's error message on "BYE" if available (Milan Crha)
#394654: (Novell Bugzilla) Fixes a EDS crasher (Chenthill Palanisamy)
#509721: Do not delete original message if exception occurred (Milan Crha)
#528902: Insufficient timezone handling (Patrick Ohly)
#530241: Recognize no-flag situation properly and in that case use two commands, one set and one unset (Milan Crha)
#531712: Do not reset flags on no-flag situation, rather add and remove there the \Seen flag (Milan Crha)
#534111: Copying past the end of the buffer can cause core dumps (Paul Smith)
#534946: Clean password when writing changes to another gnome-keyring (Srinivasa Ragavan)
#536154: Do use the Winsock getaddrinfo() andgetnameinfo(). It should be OK to ignore Windows 2000 by now (Tor Lillqvist)
#540516: Sanitize user input while accepting path/filename of the backup (Tobias Mueller)
Other Contributors:
Drop the Win32 fsync() implementation. Instead just use _commit() in the Microsoft C library which does the same (Tor Lillqvist)
Updated Translations:
Hedayat Vatankhah (fa)
Clytie Siddall (vi)
Evolution-Data-Server 2.22.2 2008-05-26
---------------------------------------
Bug Fixes:
#325882: If a parent window was given, make the password dialog transient for the parent and center it over the parent. (Matthew Barnes)
#354923: Store passwords in the keyring by server, username and protocol (Matthew Barnes)
#388579: (Novell Bugzilla) Exchange crashes everytime on startup. A regression patch for the leak fixes. (Chenthill Palanisamy)
#517244: Add test for nl_langinfo(CODESET). Defines HAVE_CODESET (Matthew Barnes)
#523541: Fix a memory leak (Milan Crha)
#530514: Added a necessary condition to handle a specific server response and to prevent a crash (Sankar P)
#530543: Large memory leak while syncing mails for offline usage (Sankar P)
#530763: Return NULL if the value of dest_folder is disturbed to prevent the crash (Bharath Acharya)
#531009: Use the right iterator to prevent a crash in offline mail movement (Sankar P)
#531439: Prevent GPG passphrases from destroying other passwords (Matthew Barnes)
#532284: Fixes a double free (Sankar P)
#533058: Enable GROUPWISE_DEBUG logs. (Sankar P)
#534077: Don't use freed memory (Paul Smith)
Updated Translations:
Ivar Smolin (et)
Gil Forcada (ca)
Luca Ferretti (it)
Jorge Gonzalez (es)
Jonh Wendell (pt_BR)
Theppitak Karoonboonyanan (th)
Evolution-Data-Server 2.22.1.1 2008-05-02
-----------------------------------------
Bug Fixes:
#274316: Also copy user tags when copying messages between folders (Milan Crha)
#338330: (Novell Bugzilla) Internet Based Calendar Events Are Declined By Evolution/GroupWise (Chenthill Palanisamy)
#350143: (Novell Bugzilla) Fix a severe memory leak in evolution-data-server (Chenthill Palanisamy)
#358584: (Novell Bugzilla) Display of web calendars ignores timezones (Chenthill Palanisamy)
#358644: (Novell Bugzilla) Retracted groupwise appointments should disappear as soon as they are retracted. (Chenthill Palanisamy)
#358650: (Novell Bugzilla) International clock applet is crashing (Chenthill Palanisamy)
#381307: Run a single delta-thread to fetch changes from the server, instead of spawning multiple threads (Ashish Shrivastava)
#473880: Fixed a few compiler warnings (Suman Manjunath)
#475616: Use recursive mutex (Milan Crha)
#502899: Fix a crash (Milan Crha)
#514300: Make sure we do the Inbox -> INBOX translation at the right place (Christian Kellner)
#520532: Support migration from password file to keyring (Matthew Barnes)
#529339: Fixed a crash when searching with an expression (Milan Crha)
#530139: Do not ship .svn files (Matthew Barnes)
#530323: Don't free the same variable twice (Sebastien Bacher)
Other Contributors:
Load addressbook conditionally (Srinivasa Ragavan)
Evolution-Data-Server 2.22.1 2008-04-07
---------------------------------------
Bug Fixes:
#524704: Better support for non RFC 2047 subject line with encoded words (Milan Crha)
#521015: IMAP custom/user flags are now synced in summary between two Evolutions (Milan Crha)
#520526: Stop work as soon as we know application is going to exit (Milan Crha)
#522433: Open files with O_LARGEFILE flag (Milan Crha)
#525485: Removed some infinite loops and corrected the conditional statement (Sankar P)
#523528,372383: (Novell Bugzilla) Some mails with attachments do not have an attachment icon. Mail size is not shown for some mails and not all related recurring appointments are deleted as well (Sankar P)
#522389: Use correct type for g_base64_decode to fix stack corruption on x86_64. (Stanislav Brabec)
#500389: Fall back to simple binds if the global catalog server does not support NTLM binds. (Matthew Barnes)
#523023: Fix a severe memory leak when using exchange (Matthew Barnes)
#494311: Don't terminate connection after sucessful reconnect by ORBit. (Ondrej Jirman)
#523126: Initialize variable to NULL, so do not free random memory (Milan Crha)
#303067: Random crash looking up addresses in new email (Milan Crha)
Updated Translations:
Yuriy Penkin (ru)
Philip Withnall (en_GB)
Jorge Gonzalez (es)
Krishna Babu K (te)
Ivar Smolin (et)
Yavor Doganov (bg)
Evolution-Data-Server 2.22.0 2008-03-10
----------------------------------------
Bug Fixes:
#327851: Try find timezone if entered only as a location name (Milan Crha)
#518728: Fix linking order of libecal-1.2 and libedata-cal-1.2. (Patrick Ohly)
#520362: Put all declarations at the beginnings of code blocks to make older compilers happy (Jens Granseuer)
Other Contributors:
Minor API documentation updates (Matthew Barnes)
Updated Translations:
Maxim Dziumanenko (uk)
Ankit Patel (gu)
Sandeep Shedmake (mr)
David Planella (ca)
Gabor Kelemen (hu)
Kenneth Nielsen (da)
Laurent Dhima (sq)
Evolution-Data-Server 2.21.92 2008-02-25
----------------------------------------
Bug Fixes:
#163982: (Novell Bugzilla) Do not keep popping up error dialogs in case of failure (Chenthill Palanisamy)
#164140: (Novell Bugzilla) Fixes a crash (Chenthill Palanisamy)
#167638: Dont try downloading while exitting (Jeffrey Stedfast, Sankar P)
#183819: (Novell Bugzilla) Fixes a crashwhile closing evolution in offline mode (Chenthill Palanisamy)
#445489: Handle emails without '<>' in DLs.
#459468: Return proper error codes from e_gw_* if no items aren't return (Milan Crha)
#469119: Check also for correct date values if parse is OK (Milan Crha)
#489043: Do not store quotes in param values when quoting, it is not allowed (Milan Crha)
#489810: Remember Google calendar passwords in keyring (Srinivasa Ragavan)
#510949: Memory leak fixes. (Milan Crha)
#514836: Memory leak fixes (Milan Crha)
#516074: Don't assume NI_MAXHOST and NI_MAXSERV are defined in <netdb.h> since these are GNU extensions (Matthew Barnes)
#516408: Memory leak fixes (Chenthill Palanisamy)
#516474: Query on EContact should work for custom fields too (Milan Crha)
#517190: Fix a crash when refreshing mail folders (Jeff Cai)
#517885: Do not compare value/parameter names case sensitively (Milan Crha)
Other Contributors:
Fix for some warnings (Chenthill Palanisamy)
Updated Translations:
Jiri Eischmann (cs)
Washington Lins (pt_BR)
Changwoo Ryu (ko)
Jorge Gonzalez (es)
Ilkka Tuohela (fi)
Baris Cicek (tr)
Wadim Dziedzic (pl)
Shankar Prasad (kn)
Robert-André Mauchin, Stéphane Raimbault (fr)
Ignacio Casal Quinteiro (gl)
Pawan Chitrakar (ne)
Evolution-Data-Server 2.21.91 2008-02-11
----------------------------------------
Bug Fixes:
#211353 - Make labels work during filtering. (Milan Crha)
#324804 - Report all mails that Evolution receives first as new mails and apply filters (Milan Crha)
#395939 - Memory leak fix (Milan Crha)
#505806 - Check for permenant flags before storing on the IMAP server (Milan Crha)
#509776 - Fix broken alarm failure (Milan Crha)
#510949 - Fix memory leaks in EDS (Milan Crha, Chenthill)
#511208 - e-d-s free-memory read/write ... (Chenthill)
#513389 - Crash in camel-url (Milan Crha)
#513646 - Fixes libsoup infinite authentication (Dan Winship)
#514407 - e-d-s crash while syncing palm with Groupwise calendars (Hein-Pieter van Braam)
#514487 - CalDAV backend doesn't accept mime types "text/calendar" with charset information (Peteris Krisjanis)
#514555 - Evolution mail tree uses "Trash" but menu item uses "Wastebasket" (Bastien Nocera)
#514682 - Build Fixes (Paul Smith)
#515054 - Do better spam filtering - Upsync SPAM flags (Milan Crha)
Other Contributors:
Windows build fixes (Tor Lillqvist)
Updated Translations:
Djihed Afifi (ar)
Yannig Marchegay (oc)
Andre Klapper (de)
Takeshi AIHANA (ja)
Duarte Loreto (pt)
Chao-Hsiung Liao (zh_HK)
Chao-Hsiung Liao (zh_TW)
Theppitak Karoonboonyanan (th)
Inaki Larranaga Murgoitio (eu)
Arangel Angov (mk)
Evolution-Data-Server 2.21.90 2008-01-28
----------------------------------------
New in 2.21.90
Speed up spam filtering and spam whitelist implementation (Srinivasa Ragavan)
Bug Fixes:
#213072: Avoids the infinite loop that might be caused in case of broken mbox files or null From addresses. (Sankar P)
#213072: Remove the error condition that inits and persists the infamous "folder summary mismatch" bug (Sankar P)
#300098: Set proper dependencies for stand-alone programs linking against camel. (Øystein Gisnås)
#324168: Crash while disabling/Deleting accounts (Milan Crha)
#335217: Memory leak fixes + Invalid memory read (Chenthill)
#386157: crash in Evolution (Milan Crha)
#445309: Save certificates before cleaning up (Matthew Barnes)
#450840: Do not crash if a message is not there in the summary (Srinivasa Ragavan)
#456019: Use 'pop' as service name, instead of 'pop3', in the digest-uri (hggdh2)
#475781: Fix memory leaks (Milan Crha)
#481699: Don't crash if the server returns you bad COPYUID (Srinivasa Ragavan)
#482940: Make the maildir summary check thread safe. May be needed for other functions too. (Srinivasa Ragavan)
#496081: Can't find string in phone field, but can in all fields (Milan Crha)
#498977: Prevent encoding to base64 of no data in the content buffer. (Milan Crha)
#506250: Improvements in password prompt (Matthew Barnes)
#509124: Check pointer for NULL (Matthew Barnes)
#509644: Use the correct response codes for the dialog buttons. (Matthew Barnes)
#509985: Refactor the keyring logic and emit more informative warning messages when a keyring operation fails (Matthew Barnes)
#510168: Ensure slave gone in dispose function of the backend (Milan Crha)
#510303: Escape the authentication error message so the markup parser will parse it verbatim (Matthew Barnes)
#510409: Fix memory leaks (Milan Crha)
#511235: Changed prototype to reflect actual libsoup (Milan Crha/Dan Winship)
#511301: Crash on Exchange startup (Dan Winship)
#511717: Add gettext imap folders (Takao Fujiwara)
Other Contributors:
Camel mime fixes (Jeffrey Stedfast)
Implement byte order for win32 (Tor Lillqvist)
Changed error message to a better string (Sankar P)
Remove unused libsoup includes and update for libsoup 2.4 (Dan Winship)
Adapt to newer libsoup (Kjartan Maraas)
Updated Translations:
Daniel Nylander (sv)
Ivar Smolin (et)
Kjartan Maraas (nb)
Inaki Larranaga Murgoitio (eu)
Jorge Gonzalez (es)
Evolution-Data-Server 2.21.5 2008-01-14
---------------------------------------
New in 2.21.5
- Improved Mime header decoding (Jeffrey Stedfast)
Bug Fixes:
#224026: Do not send headers in UTF-8 (Jeffrey Stedfast)
#327965: Fixed multiple password prompts in an exchange account (Sushma Rai)
#329692: Get the decoded content size of a MIME part (Jean-Christophe BEGUE)
#339813: Always store birthday of contact with 4-digit year and modify it according to locale setting upon display (Milan Crha)
#341579: Improve SMTP error reporting (Milan Crha)
#348149: Convert a g_assert to g_warning. (Sankar P)
#361972: Fix a crash if the action is not recognised by soup. So if the message is null return (Srinivasa Ragavan)
#379896: Check the value for NULL before comparing. (Srinivasa Ragavan)
#405497: Don't pass events if the object is being destroyed. (Srinivasa Ragavan)
#474118: Downsyncs all the messages from folders marked for offline use (Bharath Acharya)
#500233: Handle empty strings (Srinivasa Ragavan)
#503400: Remove excessive whitespace on password dialogs (Ted Percival)
#504837: Do not ignore HELO failed message (Milan Crha)
#506457: Fixed a crash in calendar (Ondrej Jirman)
#508438: Extract error only if it is there (Srinivasa Ragavan)
Updated Translations:
Inaki Larranaga Murgoitio (eu)
Washington Lins (pt_BR)
Clytie Siddall (vi)
Yannig Marchegay (oc)
Wadim Dziedzic (pl)
Daniel Nylander (sv)
Ivar Smolin (et)
Seán de Búrca (ga)
Andre Klapper (de)
Evolution-Data-Server 2.21.4 2007-12-17
---------------------------------------
Bug Fixes:
#322917: Change mnemonics for Contacts, Address Book labels. Add mnemonic for Category label (Alex Kloss)
#336074: Check for mail only in active folders (Milan Crha)
#339510: Accept time inputs with 4 figures (e.g. '1830' would be converted to '18:30') (James "Doc" Livingston)
#462593: Prevent from crash on invalid uri (Milan Crha)
#466499: Added mnemonics to configuration options (David Turner)
#486126: Fixed an incorrect format string usage that can lead to crashes (Evil Ninja Squirrel)
#487687: Do not dereference NULL when a geo parsing error occurs. (Christian Krause)
#501548: Fix leaks (Milan Crha)
#501622: Fixes broken Digest-MD5 authentication (Matthew Barnes)
#501969: Passwords should not be forgotten on all errors (Sankar P)
#502866: Allow get the VJOURNAL component at once same as other components (Milan Crha)
Updated Translations:
Kjartan Maraas (nb)
Jorge Gonzalez (es)
Matej Urbanči (sl)
Andre Klapper (de)
Evolution-Data-Server 2.21.3 2007-12-03
---------------------------------------
Bug Fixes:
#308815: Colors for categories can now be changed (Milan Crha)
#376425: Use proxy if user uses it. Do not crash if have proxy without name and password (Milan Crha)
#415817: Update start/end time for recurrence instances even when only end time has been changed (Milan Crha)
#461979: Fixed a repeatable crash when entering an IMAP folder (Milan Crha)
#492426: Do not iterate beyond bounds of the array (Robert Noland)
#494314: Don't leak Cal object reference (Ondrej Jirman)
Updated Translations:
Matej Urbanči (sl)
Ivar Smolin (et)
Yannig Marchegay (oc)
Changwoo Ryu (ko)
Evolution-Data-Server 2.21.2 2007-11-12
---------------------------------------
Bug Fixes:
#318842: Task lists should be sorted (Milan Crha)
#345135: Disable SSLv2 compatible HELLO on SSL stream when SSLv2 is disabled (Niels Vorgaard Christensen)
#359267: Not all memos are showed in calendar view (Milan Crha)
#430420: Returned size <= 0 is an error (Milan Crha)
#460649: Meeting UI Needs To Show Color Of Selected Calendar Source (Matthew Barnes, Milan Crha)
#487229: Use GKeyFile instead of gnome-config to access stored passwords (Matthew Barnes)
#488156: Minimize use of the WITH_GNOME_KEYRING macro (Matthew Barnes)
#492130: ESourceSelector uses pointers to ESource (Milan Crha)
#494304: Fix leak (Ondrej Jirman)
Updated Translations:
Ignacio Casal Quinteiro (gl)
Priit Laes (et)
Evolution-Data-Server 2.21.1 2007-10-29
---------------------------------------
New in 2.21.1:
Support for Google Calendar (Ebby Wiselyn)
Bug Fixes:
#203480: (Novell Bugzilla) Compiler warning fix for usage ofunintialized variable (Srinivasa Ragavan)
#231178: New symbol 'set-label' defined and added corresponding callback (Milan Crha)
#271777: Keep character's case as user types (Milan Crha)
#417999: Don't use deprecated GTK+ symbols (Matthew Barnes)
#420167: e-d-s now exits with gnome-session (Milan Crha)
#469657: Better use of GHashTable (Matthew Barnes)
#474000: Use GLib's Base64 API instead of Camel's (Matthew Barnes)
#475487: When creating the default contact, print errors to the console (Ross Burton)
#475493: Use G_DEFINE_TYPE (Ross Burton)
#475494: Use G_LOCK instead of a static mutex for clearer code (Ross Burton)
#478404: Reset the id to zero (Srinivasa Ragavan)
#483301: Remove an unused variable (Matthew Barnes)
#487270: Fix typo in documentation (Tollef Fog Heen)
#488173: Remove __FUNCTION__, which is a gcc-ism (Jeff Cai)
#488351: Fix an addressbook error on a fresh install (Matthew Barnes)
Other Contributors:
Protect against a NULL subject string. (Jeffrey Stedfast)
Updated Translations:
Anas Husseini (ar_
Matej Urbanči (sl)
Yavor Doganov (bg)
Theppitak Karoonboonyanan (th)
Ignacio Casal Quinteiro (gl)
Evolution-Data-Server 1.12.0 2007-09-17
---------------------------------------
Bug Fixes:
#275990: (Novell Bugzilla) Handle errors from ldap for duplicate fields. (Rashmi C)
#348149: Convert a g_assert to g_warning (Sankar P)
#402506: Remembers idle and timeout calls and removes them when finalizing (Milan Crha)
#426421: Fixed a crash when deleting two addressbooks (Chenthill Palanisamy)
#469007: Skip white spaces at the beginning of header value when running filters (Milan Crha)
#473880: Fixed serious compiler warnings (Milan Crha)
Other Contributors:
Updated the timezones. (Chenthill Palanisamy)
Updated Translations:
Nickolay V. Shmyrev (ru)
David Planella (ca)
Amitakhya Phukan (as)
Inaki Larranaga Murgoitio (eu)
Mugurel Tudor (ro)
Gabor Kelemen (hu)
Laurent Dhima (sq)
Danishka Navin (si)
Jamil Ahmed (bn)
Igor Nestorovi (sr)
Maxim Dziumanenko (uk)
Kenneth Nielsen (da)
Washington Lins (pt_BR)
Clytie Siddall (vi)
Jovan Naumovski (mk)
Luca Ferretti (it)
Evolution-Data-Server 1.11.92 2007-09-03
----------------------------------------
Bug Fixes:
#271841: Fix AIX compile errors (Ross Burton)
#290330: (Novell Bugzilla) Fetch FOLDER_CLASS and PERMANENT_URL properties for public folders as well. (Varadhan)
#298095: (Novell Bugzilla) Added a function to fetch the system folder flag (Chenthill Palanisamy)
#298788: (Novell Bugzilla) Fixes crash in 64 bit architectures. (Chenthill Palanisamy)
#301263: (Novell Bugzilla) Subscribed calendar requires restart (Chenthill Palanisamy)
#302038: (Novell Bugzilla) remove warnings and make them debug statements (Sankar)
#330185: Searching Evolution addressbooks only works for some fields (Ross Burton)
#378759: Fixed a crash when entering S/MIME password (Milan Crha)
#470445: Fix FSF address (Tobias Mueller)
Updated Translations:
Kjartan Maraas (nb)
Takeshi AIHANA (ja)
Ivar Smolin (et)
Ilkka Tuohela (fi)
Ankit Patel (gu)
Tirumurthi Vasudevan (ta)
Wadim Dziedzic (pl)
Jorge Gonzalez (es)
Daniel Nylander (sv)
Theppitak Karoonboonyanan (th)
Clytie Siddall (vi)
Duarte Loreto (pt)
Stéphane Raimbault (fr)
Evolution-Data-Server 1.11.91 2007-08-27
----------------------------------------
Bug Fixes:
#261084: Translator comments for "match-all" and "match-threads"(Jared Moore)
#256878: Set the correct message for valid signatures (Vincent Untz)
#332979: Fixes a thread synchronization issue while doing autocompletion (Srinivasa Ragavan)
#337454: Fixed a crash when modifying a calendar entry (Milan Crha)
#350539: Check for NULL MIME part (Milan Crha)
#351756: Fixed a crash when modifying a datefield/date_entry (Milan Crha)
#354855: CalDAV: Support response with relative URLs (Christian Kellner)
#355659: CalDAV: New appointments disappear for 1 minute, and then reappear (Christian Kellner)
#356176: Importing .vcf replaces line breaks with literal \n in NOTE (Patrick Ohly)
#365213: Evolution can't show attachments in an attachment. (Wang Xin)
#367760: Fix multiple issues with Save / Save All attachment button (Milan Crha)
#381548: Fixed a crash in exchange (John D. Ramsdell)
#394571: Fixed a caldav request bug (Jari Urpalainen)
#437331: Read NSS certificate files more reliably (Matthew Barnes)
#458715: Fixed a crash in GW proxy setting (Johnny Jacob)
#464569: Plug memory leak and incorrect creation of gnome keyring attributes lists (Kevin Piche)
#464636: In groupwise account sender field does not display anything (Ashish)
#466309: Fix build with gcc 2.x (Jens Granseuer)
#466987: Fix compilation errors caused by glibc's new "open" macro (Matthew Barnes)
#467883: Add argument checks to several public functions (Matthew Barnes)
#469870: Simply return from _get_ functions and don't show error warning (Milan Crha)
Other Contributons:
Add new debugging framework which can be controlled during
runtime with the CALDAV_DEBUG debug enviroment variable
(Christian Kellner)
Updated Translations:
Adam Weinberger (en_CA)
Duarte Loreto (pt)
Washington Lins (pt_BR)
Daniel Nylander (sv)
Hendrik Richter (de)
Ivar Smolin (et)
Ankit Patel (gu)
Takeshi AIHANA (ja)
Claude Paroz and Stéphane Raimbault (fr)
Kjartan Maraas (nb)
Tirumurthi Vasudevan (ta)
Theppitak Karoonboonyanan (th)
Gabor Kelemen (hu)
Evolution-Data-Server 1.11.90 2007-08-13
-----------------------------------------
Bug Fixes:
#261084 - "match-all" and "match-threads" in evolution camel needs translator comments (Jared Moore)
#313221 - Import of vcards misses type information (Milan Crha)
#314709 - Add GEO field to EVCard and EContact (Cosimo Cecchi)
#327977 - Crash in e_account_set_string at e-account.c:929 (Milan Crha)
#352346 - Cannot create Maildir account (Milan Crha)
#355640 - crash on invalid response to the IMAP command "XX FETCH 1 BODY" (Sankar)
#387806 - camel_text_index_new() faults instead of handling allocation failure (Rob Bradford)
#415891 - Use EFlag for synchronization (Matthew Barnes)
#420462 - Crash while clicking refresh in folder subscription (Srini)
#427469 - Incorrect importing of VCard (Milan Crha)
#439147 - Don't print pages of debug information (Jeff Cai)
#451003 - Build fails because SOUP_SESSION_TIMEOUT is undefined (Ross Burton)
#455799 - Remove all .cvsignore and update svn:ignore porperty in whole directories (Hiroyuki Ikezoe)
#458670 - Crash while autocompleting in composer (Srini)
#460999 - Crashing while looking up passwords (Srini)
#461989 - Memory leaks fixes on e-categories* (Hiroyuki Ikezoe)
#464252 - Use /usr/share/lib/zoneinfo/tab/zone_sun.tab on Solaris (Jeff Cai)
#465419 - crash in e_gw_item_append_to_soap_message (Suman)
Updated Translations:
Jorge Gonzalez (es)
Daniel Nylander (sv)
Ankit Patel (gu)
Kjartan Maraas (nb)
Ilkka Tuohela (fi)
Takeshi AIHANA (ja)
Runa Bhattacharjee (bn_IN)
Danishka Navin (si)
Daniel Nylander (sv)
Kjartan Maraas (nb)
Priit Laes (et)
Evolution-Data-Server 1.11.6.1 2007-07-31
-----------------------------------------
Bug fixes:
#327851: Partially fixes a critical warning crasher allowing
the events to appear properly in the view.
Updated Translations:
Jorge Gonzalez (es)
Other Contributors:
Fixed a warning (Matthew Barnes)
Look for the libedataserver header files from the source rather
than install area (Chenthill Palanisamy)
Only send remove notifications if the contact was in the view
originally. (Ross Burton)
Fixes annoying "Is a Directory" error,All (un)read count fixes should
have been ported, Moved items from sent-items are lost is fixed (Sankar P)
Install the timezone files only on win32 systems. (Chenthill Palanisamy)
Evolution-Data-Server 1.11.6 2007-07-30
---------------------------------------
New in 1.11.6
Add username & password entries to webcal dialog (Milan Crha)
Bug fixes:
#268162: Add username & password entries to webcal dialog (Milan
Crha)
#342164: Harmonize error strings (Lakke Wankhede and Jared Moore)
#380534: Collect all the required package versions in one place and
explicitly require GTK+ 2.10 or higher (Matthew Barnes)
#402925: Use strong SSL/TLS encryption (hggdh)
#455796: Fixed a crash when starting evolution (Srinivasa Ragavan)
#456565: Added support for Memos to webcal protocol, which is used
for memos 'On The Web' (Milan Crha)
#457523: Fixed parse error in quick search bar (Johnny Jacob)
#460649: Used image menu item and using sources colors when
possible. Didn't work for collapsed state (Milan Crha)
#460681: Always report connection status when connecting (Karl
Relton)
#460861: Add some sanity checks in camel (Ross Burton)
#460867: Fixed a crash in calendar (Srinivasa Ragavan)
Updated Translations:
Inaki Larranaga Murgoitio (eu)
Andre Klapper (de)
Priit Laes (et)
Pramod (te)
Wouter Bolsterlee (nl)
Daniel Nylander (sv)
Ilkka Tuohela (fi)
Theppitak Karoonboonyanan (th)
Other Contributors:
Plugged memory leak (Hiroyuki Ikezoe)
Evolution-Data-Server 1.11.5 2007-07-09
---------------------------------------
New in 1.11.5
Exchange delegation support (Bharath and Suman)
Bug fixes:
#307410: Fix prompting for IMAP password a second time after
canceling first request (Milan Crha)
#311098: Changes to appointment is visible across restarts (Milan
Crha)
#352284: Do not fetch the message from server - instead use the
header information to calculate the expiry period. (Veerapuram
Varadhan)
#364731: Fix error dialog when creating searches with negative score
(Milan Crha)
#394572: Include a missing forward http proxy in caldav module (Jari
Urpalainen)
#410823: Fixed a crash when clicking on an URL and then closing the
browser (Srinivasa Ragavan)
#412735: Fix a typo avoiding open_brace to be initialized (Pascal
Terjan)
#434356: Fix USENET crash when retrieving gmane.linux.kernel
(Jindrich Makovicka)
#448947: Fixed a cyclic configure option (Karsten Bräckelmann)
#449531: Fix partial email display when GPG verification fails
(Milan Crha)
#452996: Fix a typo and wording (Christian Kirbach)
#454570: Fix build with gcc 2.x (Jens Granseuer)
Updated Translations:
Ankit Patel (gu)
Jorge Gonzalez (es)
Nguyễn Thái Ngọc Duy (vi)
Clytie Siddall (vi)
Daniel Nylander (sv)
Funda Wang (zh_CN)
I. Felix (ta)
Evolution-Data-Server 1.11.4 2007-06-18
---------------------------------------
Bug fixes:
#312854: Fix a hang while renaming folders twice for exchange
(Matthew Barnes)
#331099: Fix calculation of array index to avoid negative values
(Matthew Barnes)
#344728: Add headers for Sun Kerberos v5 (Irene Huang)
#352284: Do not fetch the message from server - instead use the
header information to calculate the expiry period. (Veerapuram
Varadhan)
#437751: Fix time display in Windows (Andreas Köhler)
#443705: Fixed build break due to incorrect macro (Loïc Minier)
#443958: Add support for help string. (Sebastien Tandel)
#447414: Security bugfix - negative index of an array (Philip Van
Hoof)
#447753, #447749: Fix a memory leak (Matthew Barnes)
#448589: Add support for automake 1.6 (Tobias Mueller)
Other Contributors:
Check entire IMAP4 summary to remove non-existent messages (Jeffrey
Stedfast)
Fetches "Sent Items" in all folders. Also, fixed some bugs in moving
mails across folders. (Sankar P)
Updated Translations:
Priit Laes (et)
Pema Geyleg (dz)
Jorge Gonzalez (es)
Evolution-Data-Server 1.11.3 2007-06-04
---------------------------------------
New in 1.11.3:
Addressbook optimizations (Ross Burton)
Introduced search capabilities in calendar (Keshav Upadhyaya,
Abhishek Parwal)
Bug fixes:
#360114: Use g_list_prepend/reverse rather than append (Paolo
Borelli)
#409542: Fix various linking issues in e-d-s (Loic Minier)
#425129: Added timezone for Asia/Jerusalem, Australia/Perth and
fixed the crash when there is no tzname. (Pascal Terjan)
#438577: Fix some distcheck errors (Matthew Barnes)
#438577: Don't install implementation detail headers (Ross Burton)
#438727: Hide implementation details from public headers (Ross
Burton)
#438928: Add --disable-calendar to build without any calendar
support (Ross Burton)
#440524: Memory leak fixes (Srinivasa Ragavan)
#442187: Fix to open default memo component (John Stowers)
#438928: Ability to build EDS with just addressbook only.
Evolution-Data-Server 1.11.2 2007-05-14
---------------------------------------
New in this release:
* EContact optimization from (Oystein Gisnas and Milan Crha)
Bug fixes:
#420496: Add support to cut/copy contacts in composer (Ebby Wiselyn)
#339160: Implement the sync method for Addressbook backends (Ross Burton)
#414191: Type fixes for EContact ints (Loïc Minier)
#433782 and #336574: Optimise vCard folding (Oystein Gisnas and
Milan Crha)
#431135: Fix a crash when modifying a calendar event (Rob
Bradford)
#274035: Importing a Vcard with attached photo data is now possible
(Jonty Wareing)
#361138: Fix a crash when double clicking text widget in calendar
in indic locales (Matthew Barnes)
Other Contributors:
Jules Colding
Updated Translations:
Jorge Gonzalez (es)
Evolution-Data-Server 1.11.1 2007-04-23
---------------------------------------
Bug fixes:
#383686: Use g_mkdir_with_parents (Ross Burton)
#322105: Fix for non-junk messages to learn ham. (Srinivasa Ragavan)
#418971: E-D-S requires GLib 2.10 now; remove dead
backward-compatibility code for GLib < 2.8 (Matthew Barnes)
#360240: Remove unused variable. (Matthew Barnes)
#360619: Fix "incompatible pointer type" warnings (Matthew Barnes)
#405495: Don't mix declarations and code (Jens Granseuer)
#360807: Fix a couple of memory leaks (Chris Heath)
#400970: Remove marshallers that are in GLib already (Ross Burton)
#413173: Fix up the documentation (Ross Burton & Matthew Barnes)
#420933: Copy the recurrence ID string so it doesn't disappear on us.
(Patrick Ohly)
#426893: Added support from address fields in LDAP addressbook. (Caolan
McNamara)
#422883: Build fix for SUN LDAP (Wang Xin)
#424837: Allow contact creation to fail, and propagate the error back
(Ross Burton)
#422932: Make EContact extendable (Ross Burton)
#428183: BDBB backend cleanups (Ross Burton)
#425512: Fix issue with creating a new addressbook (Xiurong Simon Zheng)
#426564: Misc cleanups (Ross Burton)
#385078: Don't go via GObject properties when calling e_contact_get (Ross
Burton)
#425464: e-vcard optimizations (Ross Burton)
#422652: Return decent error codes, and convert errors to human readable
strings for the console. (Ross Burton)
#421445: Fix build logic for e-name-western-tables.h (Ross Burton)
#421683: Fix broken dispose/finalise in e-book-backend-file.c (Ross
Burton)
#359806: Non-ascii characters generate trash in address lists (Matthew
Barnes and Makuchaku)
#373117: Use the new ESource color API. (Matthew Barnes)
#425535: Dont submit path of EDS for segv_handler. (Frederic Crozat)
#423382: Convert messages from gnupg to UTF-8 (Pascal Terjan)
#415891: Introduce EFlag in libedataserver (Matthew Barnes)
#388789: Make the libiconv test program returns a value (Matthew Barnes)
#388788: Fix autotools checks for iconv (Elijah Newren)
Other Contributors:
Debug statements should be conditional (Sankar P)
Fix compiler warnings and other code cleanups (Kjartan Maraas)
Many IMAP fixes. (Jeffrey Stedfast)
Improved GroupWise mailer component (Sankar P)
Updated Translations:
Funda Wang (zh_CN)
Djihed Afifi (ar)
Duarte Loreto (pt)
Laurent Dhima (sq)
David Lodge (en_GB)
Evolution-Data-Server 1.10.0 2007-03-12
---------------------------------------
Changes since Evolution-Data-Server 1.9.92 :
Harish Krishnaswamy
Matthew Barnes
Ross Burton
Updated Translations:
Igor Nestorivić (sr)
Mugurel Tudor (ro)
Tino Meinen (nl)
Alexander Shopov (bg)
Jovan Naumovski (mk)
Takeshi AIHANA (ja)
Maxim Dziumanenko (uk)
Gintautas Miliauskas (lt)
Chao-Hsiung Liao (zh_HK, zh_TW)
Ankit Patel (gu)
Leonid Kanter (ru)
Evolution-Data-Server 1.9.92 2007-02-26
---------------------------------------
Updated Translations:
Gabor Kelemen (hu)
Luca Ferretti (it)
Artur Flinta (pl)
Priit Laes (et)
Contributors:
Gilles Dartiguelongue
Matthew Barnes
Evolution-Data-Server 1.9.91 2007-02-12
---------------------------------------
Updated Translations:
Duarte Loreto (pt)
Pema Geyleg (dz)
Djihed Afifi (ar)
Changwoo Ryu (ko)
Daniel Nylander (sv)
Raphael Higino (pt_BR)
Hendrik Richter (de)
Priit Laes and Ivar Smolin (et)
Contributors:
Sankar P
Harish Krishnaswamy
Kjartan Maraas
Priit Laes
Patrick Ohly
Ross Burton
Trond Myklebust
Evolution-Data-Server 1.9.6 2007-01-22
--------------------------------------
Updated Translations:
Stéphane Raimbault (fr), Priit Laes (et),
Daniel Nylander (sv)
Contributors:
Nickolay V. Shmyrev : #353060
Sankar P : IMAP Configurable Headers
Srinivasa Ragavan: Fallback code for Gnome Keyring
Harish Krishnaswamy: Fixes calling glib methods
Evolution-Data-Server 1.9.5 2007-01-08
--------------------------------------
Updated Translations:
Francisco Javier F. Serrador (es), Djihed Afifi (ar), Kjartan Maraas (nb),
Theppitak Karoonboonyanan (th), David Lodge (en_GB),
Christophe Fergeau (fr), Clytie Siddall (vi)
Bug Fixes: 362638, 387397, 387638 and other downstream fixes
Contributors:
Mathew Barnes, Veerapuram Varadhan, Chenthill Palaniswamy, Jeff Cai
Evolution-Data-Server 1.9.4 2006-12-18
--------------------------------------
Updated Translations:
Djihed Afifi (ar), Ilkka Tuohela (fi).
Bug fixes : 349445, 346728, 268412, 363445,
208395, 222605 (bugzilla.novell.com), memory leak and
other cleanup fixes.
Contributors:
Veerapuram Varadhan, Harish Krishnaswamy, Srinivasa Ragavan,
Ross Burton, Tor Lillqvist, Bastien Nocera
Evolution-Data-Server 1.9.3 2006-12-04
--------------------------------------
Updated Translations:
Alexander Shopov (bg), Josep Puigdemont i Casamajó (ca),
Ivar Smolin (et).
Bug fixes : 330157, 350880, 328836, 348123, 365000, 353924.
174655, 222605, 219729, 208318, 207960. (bugzilla.novell.com)
plus miscellaneous code clean-ups and memory leak fixes.
Contributors :
Harish Krishnaswamy, Sankar, Srinivasa Ragavan, Chenthill,
Claudio Saavedra, Ross Burton, Matthew Barnes, Andrew Ruthven.
Evolution-Data-Server 1.9.2 2006-11-07
--------------------------------------
Updated Translations:
Ivar Smolin (et), Francisco Javier F. Serrador (es).
Bug fixes :
330157, 369368, 312348, 365000.
Contributors :
Srinivasa Ragavan, Hans Petter Jansson, Harish Krishnaswamy,
Claudio Saavedra.
Evolution-Data-Server 1.9.1 2006-10-16
--------------------------------------
Updated Translations:
Ilkka Tuohela (fi), Priit Laes (et),
Ignacio Casal Quinteiro (gl),
Ivar Smolin (et)
Contributors:
Steffen Eschenbacher, Tor Lillqvist,
Srinivasa Ragavan, Matthew Barnes, Harish Krishnaswamy
Evolution-Data-Server 1.8.1 2006-10-02
--------------------------------------
Updated Translations:
Ivar Smolin (et), Marco Ciampa (it), Luca Ferretti (it),
Åsmund Skjæveland (nn), David Lodge (en_GB).
Bug fixes :
350907, 350617, 347811, 357666, 351330, 352596, 352872, 356051.
Contributors:
Li Yuan, Veerapuram Varadhan, Sankar, Chenthill Palanisamy,
Matthew Barnes, Mikael Nilsson, Devashish Sharma, Ross Burton,
Harish Krishnaswamy.
Evolution-Data-Server 1.8.0 2006-09-04
--------------------------------------
Evolution -Data-Server 1.8 Stable Release for GNOME 2.16.0.
Evolution-Data-Server 1.7.92, 2006-08-21
------------------------------------------
Updated Translations
Hendrik Richter (de), Alexander Shopov (bg), Rahul Bhalerao (mr),
Satoru SATOH (ja), Kjartan Maraas (nb), Artur Flinta (pl),
Žygimantas Beručka (lt), Daniel Nylander (sv), Runa Bhattacharjee (bn_IN),
Gabor Kelemen (hu), Leonid Kanter (ru), Matic Žgur (sl),
Clytie Siddall (vi), Funda Wang (zh_CN), Changwoo Ryu (ko),
Vladimer Sichinava (ka), Xavier Conde Rueda (ca), Maxim Dziumanenko (uk),
Guntupalli Karunakar (dz), Theppitak Karoonboonyanan (th),
Priit Laes (et).
Bug Fixes:
Ricardo Markiewicz, Chenthill, Harish, Kjartan Maraas,
j@bitron.ch
Evolution-Data-Server 1.7.91, 2006-08-07
------------------------------------------
Updated Translations
Francisco Javier F. Serrador (es), Inaki Larranaga (eu), Ilkka Tuohela (fi),
Christophe Merlet (fr), Ahmad Riza H Nst (id), Kjartan Maraas (nb),
Vincent van Adrighem (nl), Jovan Naumovski (mk), Theppitak Karoonboonyanan (th)
New in EDS 1.7.91:
- Add filters to Groupwise SOAP calls so that each component fetches items of
its own type and none other. (Harish)
- Memory fixes in Addressbook (Hans Peters Jansson)
Bug Fixes:
Matthew Barnes, Chenthill Palanisamy, Devashish Sharma, Srinivasa Ragavan,
Tor Lillqvist, Harish Krishnaswamy, Ed Catmur, Ross Burton,
Wouter Bolsterlee
Evolution-Data-Server 1.7.90.1, 2006-07-25
------------------------------------------
Fix a dist bug in tarball.
Evolution-Data-Server 1.7.90, 2006-07-24
----------------------------------------
Updated Translations contributed by:
Funda Wangi (zh_CN), Christophe Merlet (fr),
Jonathan Ernst (fr), Changwoo Ryu (ko),
Kostas Papadimas (el), Dzongkhalinux team, DIT (dz),
Ilkka Tuohela (fi), Ankit Patel (gu), Daniel Nylander (sv),
Priit Laes (et), Francisco Javier F. Serrador (es),
Raivis Dejus (lv).
New in EDS 1.7.90 :
Support for GW Reminder Notes (Chenthill)
Split cache for less memory, better performance (Harish)
Support for security-classifications in GW send options (Sankar)
Support for default alarms in GW (Harish)
Support for Gadu Gadu IM in Contact Entries
(Artur Flinta, Fryderyk Dziarmagowski)
Memory reduction and Performance improvements in Contacts (Ross Burton)
Bug fixes :
Andre Klapper, Shreyas Srinivasan, Sushma Rai, Vandana Shenoy,
Harish Krishnaswamy, Devashish Sharma, Hiroyuki Ikezoe, Srinivasa Ragavan.
Luca Ferretti
Evolution-Data-Server 1.7.4, 2006-07-10
---------------------------------------
Updated Translations contributed by:
Inaki Larranaga, Ilkka Tuohela,
Vincent van Adrighem, Runa Bhattacharjee,
Changwoo Ryu, I.Felix, Rajesh Ranjan,
Dzongkhalinux, Yair Hershkovitz, Kjartan Maraas,
Chao-Hsiung Liao, Ignacio Casal Quienteiro,
Theppitak Karoonboonyan, Francisco Javier F. Serrador,
Ankit Patel, Hendrik Richter.
Bug fixes:
Harish Krishnaswamy, Jeffrey Stedfast, Sankar P,
Tor Lillqvist, Andre Klapper, ,Parthasarathi,
Srinivasa Ragavan, Chenthill, Wang Xin, Ross Burton,
Devashish Sharma, Boby Wang, Simon Zheng, Hiroyuki
Ikezoe, Frederic Peters.
Evolution-Data-Server 1.7.3, 2006-06-12
---------------------------------------
Updated Translations contributed by:
Kjartan Maraas, Francisco Javier F. Serrador,
Gabor Kelemen, Ignacio Casal Quinteiro,
Ankit Patel, Pema Geyleg, Inaki Larranaga,
Clytie Siddall, Emil Hessman.
Bug fixes and other changes :
Chris Heath , Tor Lillqvist, Srinivasa Ragavan,
Jeffrey Stedfast, Parthasarathi Susarla,
Sankar P, Harish Krishnaswamy, Ross Burton, Wang Xin
Simon Zheng, Devashish Sharma, Hiroyuki Ikezoe,
Frederic Peters.
Evolution-Data-Server 1.7.1, 2006-04-24
----------------------------------------
First release of 1.7 development series.
What is new ?
-------------
* Capability to link dynamically to libdb.
* Integration with gnome-keyring.
Evolution-Data-Server 1.5.92, 2006-02-27
----------------------------------------
Bug fixes since last release :
http://go-evolution.org/Evo2.5.92#Evolution-Data-Server
Updated Translations:
- ca (Josep Puigdemont i Casamajó)
- el (Kostas Papadimas)
- et (Priit Laes)
- eu (Inaki Larranag)
- lt (Žygimantas Beručka)
- pl (Artur Flinta)
- th (Theppitak Karoonboonyanan)
Evolution-Data-Server 1.5.91, 2006-02-13
----------------------------------------
Bug fixes since last release :
http://go-evolution.org/Evo2.5.91#Evolution-Data-Server
Updated Translations:
- cs (Lukas Novotny)
- cs (Miloslav Trmac)
- cy (Rhys Jones)
- et (Ivar Smolin)
- fi (Ilkka Tuohela)
- ja (Takeshi AIHANA)
- pt (Duarte Loreto)
- ru (Leonid Kanter)
- sq (Laurent Dhima)
- sr, sr@Latn (Slobodan D. Sredojevic)
- th (Supranee Thirawatthanasuk)
- th (Theppitak Karoonboonyanan)
Evolution-Data-Server 1.5.90, 2006-01-30
----------------------------------------
What's new:
Bug fixes sinces 1.5.5 :
http://bugzilla.gnome.org/buglist.cgi?query_format=advanced&short_desc_type=allwordssubstr&short_desc=&classification=Desktop&product=Evolution-Data-Server&long_desc_type=substring&long_desc=&status_whiteboard_type=allwordssubstr&status_whiteboard=&keywords_type=allwords&keywords=&bug_status=RESOLVED&resolution=FIXED&resolution=WONTFIX&resolution=DUPLICATE&resolution=NOTABUG&resolution=NOTGNOME&resolution=INCOMPLETE&resolution=INVALID&resolution=GNOME1.x&resolution=MOVED&resolution=OBSOLETE&resolution=NOTXIMIAN&emailassigned_to1=1&emailtype1=substring&email1=&emailassigned_to2=1&emailreporter2=1&emailqa_contact2=1&emailcc2=1&emailtype2=substring&email2=&bugidtype=include&bug_id=&chfieldfrom=2006-01-17&chfieldto=Now&chfield=bug_status&chfieldvalue=RESOLVED&cmdtype=doit&order=Reuse+same+sort+as+last+time&field0-0-0=noop&type0-0-0=noop&value0-0-0=
Updated Translations:
- en_CA (Adam Weinberger)
- es (Francisco Javier F. Serrador)
- et (Ivar Smolin)
- fi (Ilkka Tuohela)
- gl (Ignacio Casal Quinteiro)
- gu (Ankit Patel)
- gu (Ankit Patel)
- ko (Changwoo Ryu)
- nb, no (Kjartan Maraas)
- nl (Tino Meinen)
- vi (Clytie Siddall)
- zh_CN (Funda Wang)
- zh_TW, zh_HK (Chao-Hsiung Liao)
Evolution-Data-Server 1.5.5, 2006-01-16
----------------------------------------
Bugzilla bugs fixed (see http://bugzilla.gnome.org/show_bug.cgi):
#321812 – crash during Draft saving in offline mode (Shreyas)
#314841 – gw: Don't Mark Trash As New Messages (Parthasarathi)
#323570 – gw: Forward Of Multiple Messages At Once Loses Formatting (Parthasarathi)
#320898 – gw: Inserted Images Appears As Broken Link Image (Parthasarathi)
#303998 – In 'Exchange Connector' GAL should be selected for 'Autocompletion by default (Sushma)
#323115 – --force-shutdown does not shutdown e-d-s (Harish)
#326060 – Exchange password expiry handling is broken (Sushma)
#267402 – can not specify https URL for a remote calendar location (Tony Tsui)
#324518 – Webcal Entries Duplicated In Calendar (Chenthill)
#324741 – Critical Warning on Command Line (Chenthill)
#214977 – Contact lists on LDAP server are broken (Sushma)
#320065 – Fix GList leaks (Ross Burton)
#325959 – Subscribe to other user's folder not working (Sushma)
#242966 – Focus Problem, Screen Entry on "Select Contacts From Address Book" screen (Johnny Jacob)
Other Fixes :
- Merge Calendar backend bits from evolution-caldav module into EDS (Harish)
- Code cleanup (Simon Zheng, Kjartan Maraas, Parthasarathi)
- Win32 fixes (Tor Lillqvist)
Updated Translations:
- bg (Alexander Shopov)
- ca (Josep Puigdemont i Casamajó)
- gl (Ignacio Casal Quinteiro)
- ja (Takeshi AIHANA)
- lt (Žygimantas Beručka)
- nl (Vincent van Adrighem)
Evolution-Data-Server 1.5.4, 2006-01-02
----------------------------------------
Bugzilla bugs fixed (see http://bugzilla.gnome.org/show_bug.cgi):
#323106 - IMAP drawers with non-ASCII UTF-8 names do not work (Tor Lillqvist)
#317794 - Groupwise mail folder not visible (Parthasarathi)
#324483 - Memory leak in Exchange connector (Sushma)
#305006 - Fixed vCalendar file import without UID (Chenthill)
#267330 - Fixed a crash/hang while accepting exchange meeting invititation (Chenthill)
#324009 - Hang in Evolution Calendar (Chenthill)
#317411 - Fixed Evolution crash while synchronizing with palm device. (Varadhan)
#238979 - Added Support to expand contact lists inline in name selector entry
Other Fixes :
- Added option to select emails in contacts/lists in name selector
entry (Srinivasa Ragavan)
- Modifications to use gstdio wrappers (Tor Lillqvist)
- Exchange fixes (Sushma)
- Network Manager Support (Shreyas)
- Win32 fixes (Tor Lillqvist)
Updated Translations:
- en_CA (Adam Weinberger)
- es (Francisco Javier F. Serrador)
- fi (Ilkka Tuohela)
- gl (Ignacio Casal Quinteiro)
- gu (Ankit Patel)
- ja (Takeshi AIHANA)
- nb, no (Kjartan Maraas)
- nn (Åsmund Skjæveland)
- vi (Clytie Siddall)
Evolution-Data-Server 1.5.3, 2005-12-12
----------------------------------------
Bugzilla bugs fixed (see http://bugzilla.gnome.org/show_bug.cgi):
#323433 - Evolution crashes when folding vfolder subfolders while in one,
wont restart (Jeff Cai)
#321139 - evolution will crash on solaris when print error message (Shi Pu)
#321515 - Lazy-bind loaded modules in camel (Ross Burton)
#322408 - creating new folder causes evolution to hang on the uw-imapd
server (Jeff Cai)
#317322 - crash when delete a imported recurrent event (Chenthill)
#318777 - recurrence editing ... (Chenthill)
#323349 - Evolution data server, Configuration failed on Solaris (Irene Huang)
#319592 - Use GLib for determining host endian (Ross Burton)
#319591 - Use G_DEFINE_TYPE in libedataserver (Ross Burton)
#321830 - GW - Not All Email In Sent Items Appearing In Evolution (Parthasarathi)
Other Fixes :
- Numerous fixes in Camel/Libebook/libedataserver for Win32 support (Tor Lillqvist)
- Hula provider fixes (Harish)
- Exchange : Use remembered password for authentication (Irene Huang)
- Exchange : fix compiler warnings (Sushma)
- Build fixes (Dave Malcolm)
Updated Translations:
- be (Vital Khilko)
- bg (Alexander Shopov)
- cs (Miloslav Trmac)
- en_CA (Adam Weinberger)
- es (Francisco Javier F. Serrador)
- fa (Meelad Zakaria)
- fr (Christophe Merlet)
- gl (Ignacio Casal Quinteiro)
- gu (Ankit Patel)
- ja (Takeshi AIHANA)
- nb, no (Kjartan Maraas)
- zh_CN (Funda Wang)
Evolution-Data-Server 1.5.2, 2005-11-14
---------------------------------------
New Features:
- Camel Hula Provider (Harish)
Bugzilla bugs fixed (see http://bugzilla.gnome.org/show_bug.cgi):
#320095 - Empty Trash Deletes From GW POA, But Doesn't Delete Headers
In Trash Folders (Parthasarathi)
#314476 - Fixes to inform the Over quota issue in groupwise to
user (Sankar)
#320736 - Fixed a possible crash due to a invalid buffer
(Parthasarathi)
#317804 - Fix Macao timezone issue (Harish)
#318130 - Fix to include e-cal-time-util.h for
e-cal-backend-http.c to solve a build issue. (Matthew Daniel)
#319612 - Stop warnings from e-destination about xmlChar when
compiling using gcc4 (Ross Burton)
#319848 - Multiple Select for To/CC/BCC in Name selector dialog.
(Sushma)
Other Fixes:
- Changed the string so as to be consistent with Win32 client error
messages. (Sankar)
Update Translations:
- ca (Adam Weinberger)
- cs (Miloslav Trmac)
- es (Francisco Javier F. Serrador)
- fi (Ilkka Tuohela)
- ja (Takeshi AIHANA)
- ku (Erdal Ronahi)
Evolution-Data-Server 1.5.1, 2005-10-25
---------------------------------------
New Features : Support for Memos component (Nathan Owens)
Other fixes :
- Win32 related bits and code clean-up (Tor Lillqvist)
- Remove Bonobo/GnomeProgram dependencies in
contact store/name selector (Ross Burton)
- Fix for API/Base Version mismatches causing issues in
Solaris where libdir==libexecdir (Irene Huang)
Updated Translations:
- en_CA (Adam Weinberger)
- es (Francisco Javier F. Serrador)
- gl (Ignacio Casal Quinteiro)
Evolution-Data-Server 1.3.8, 2005-08-22
---------------------------------------
Bugzilla bugs fixed (see http://bugzilla.gnome.org/show_bug.cgi):
#242032 - color labels stored to imap message store (Michael Zucchi)
#247706 - Automatically add comma after autocompleting an address (Devashish)
#271894 - PGP-encrypted attached messages not displayed (Michael Zucchi)
#271969 - Synchronize doesn't work for Tasks and Calendar (Armin Bauer, Varadhan, Mubeen)
#300115 - RFC2047 encoding always separates the last non-ASCII UTF-8 character. (Changwoo)
#300891 - Now camel should specify the translation domain explicitly to use gettext (Changwoo)
#302835 - Mailbox does not appear on top in offline mode (Parthasarathi)
#302963 - Status tracking does not work for some items (Vivek)
#309499 - Additional mail is sent to delegate(s) in Groupwise. (Chakravarthi)
#310325 - Meeting request mail cannot be sent for Meeting created in 'Personal' calendar (Vivek)
#310496 - 'make check' fails on gpg test (Michael Zucchi)
#310956 - gw: trying to copy the mailbox folder when online copies the folder below the mailbox folder (Parthasarathi)
#311078 - Calendar loading progress information goes beyond 100% (Chakravarthi)
#311639 - mh: Renaming parent folder loses subfolders (Michael Zucchi)
#311831 - sometimes clicking on a meeting request mail or any mail related to assigned task crashes evolution (Chenthill)
#312184 - Signature shown as attachment (Parthasarathi)
#312578 - In GW calendar user should be able to delegate all instances together (Chenthill)
#312668 - Unable to go back to Online mode after clicking offline button (Michael Zucchi)
#312715 - Evolution crashes moving IMAP folder to local folder (Michael Zucchi)
#312831 - crash in camel-folder-thread.c:sort_node when generating message list (Michael Zucchi)
#312857 - gw: Evolution crashes while starting up (Parthasarathi)
#312988 - Regressing 274308 - EDS crashed (Sushma)
#313058 - gw: Unable to create a new folder(subfolder) with names like Mailbox, Sent Items, etc (Vivek)
#313091 - Useless assignment in e-vcard (Ross Burton)
#313284 - camel indexing valgrind hits (Michael Zucchi)
#313381 - gw: evo crashes while trying to refresh the folder (Vivek)
#313574 - crash viewing IMAP mail (Michael Zucchi)
#313593 - imap4: sub folders not working (Michael Zucchi)
#313657 - IOP: Implement Outlook-like handling of recurrence corner-cases (Carsten Guenther)
#313806 - cannot decrypt an encrypted message (Parthasarathi)
Updated Translations:
- bg (Rostislav Raykov)
- ca (Xavier Conde)
- de (Frank Arnold)
- de (Kostas Papadimas)
- el (Kostas Papadimas)
- et (Ivar Smolin)
- hu (Gabor Kelemen)
- lt (Justina Klingaitė)
- sr, sr@Latn (Igor Nestorivić)
- sq (Laurent Dhima)
Evolution-Data-Server 1.3.7, 2005-08-08
---------------------------------------
Bugzilla bugs fixed (see http://bugzilla.gnome.org/show_bug.cgi):
#274382 - Multiple CC headers are not processed properly (Michael Zucchi)
#310198 - Grammar errors failing Sun's compiler 'Vulcan / Forte' (Mengjie Yu)
#309237 - broken imap server workaround (Michael Zucchi)
#311658 - 1.3.6 lists a pile of old folders (Michael Zucchi)
#300048 - configure script fails to detect getaddrinfo (Harish)
#312535 - GW: Fwded message headers are not displayed (Parthasarathi)
#305304 - Description does not appear completely when using the ITIP FORMATTER plugin (Dinesh Layek)
#312190 - problems with junk test in filters (Vivek Jain)
#312185 - Configuring same account for IMAP and GroupWise troubles Proxy Login (Sankar)
#302968 - GW: Some mails do not get delivered (Sankar)
#305590 - GW: don't see schedules from people in other post offices. (Chenthill)
#310328 - Cannot create recurring 'All Day event' in groupwise calendar (Chenthill)
#311684 - evolution-data-server crashes trying to reply all (Wolfgang Ocker)
#303111 - GW long delays & no status (Sushma Rai)
#308512 - Key /apps/evolution/lock/mail/accounts/save_password does not work correctly
Updated Translations:
- cs (Miloslav Trmac)
- es (Francisco Javier F. Serrador)
- et (Ivar Smolin)
- fi (Ilkka Tuohela)
- gu (Ankit Patel)
- id (Imam Musthaqim)
- it (Marco Ciampa)
- ja (Takeshi AIHANA)
- nb,no (Terance Sola)
- nl (Reinout van Schouwen)
- pl (GNOME PL Team)
- pt_BR (Raphael Higino)
- vi (Clytie Siddall)
- zh_CN (Funda Wang)
- zh_TW (Chao-Hsiung Liao)
Evolution-Data-Server 1.3.6, 2005-07-26
---------------------------------------
Bugzilla bugs fixed (see http://bugzilla.gnome.org/show_bug.cgi):
Addressbook :
#260851 - "Edit Contact" option in Contact name popup menu (Sushma)
#301922 - Composer Section (To: CC: BCC:) Fields Flip Order Of Names (Antony)
Calendar :
#303548 - Missing Calendar Items in GW (Chenthill)
#310752 - Multiple mails and multiple appointments created for a non recurring
appointment (Chenthill)
#310767 - Cannot Accept GW Appointments Without Error (Chenthill)
Mailer:
#301871 - uninitialized variable in evo-data-server pop3 and imap backend
(meissner@suse.de)
#272505 - GroupWise" spelled inconsistently in evolution-data-server (Parthasarathi)
#310953 - reproducible crash trying to "add signature" in preferences (Parthasarathi)
#310716 - trying to delete a subfolder crashed evolution (Parthasarathi)
Exchange :
#310483 - Check Remember password option, and enter wrong password - Evolution unusable
(Arunprakash)
Others :
#271837 - handle _PRETTY_FUNCTION_ for Sun compilers
(The Written Word)
- Copy folder contents locally by default. (Shreyas)
- camel store/folder refactoring (Michael)
- camel docs breakage fix (Shreyas)
- camel imap store - if the folder is on disk, just get it
offline, only go to the server if we need to. (Michael)
- align ESource uri handling in Exchange addressbook to the
calendar uris (Praveen)
- remove esource removal to exchange plugins code (Sarfraaz)
- support for timed refresh of GW system addressbook (Sushma)
- freezing the cache while updating and writing to disk at once
(Sushma)
- make Name selector dialog more intuitive (Vivek)
- send a cancel reply to kill a e-password dialog (Jedy Wang)
Updated Translations:
- cs (Miloslav Trmac)
- de (Frank Arnold)
- en_CA (Adam Weinberger)
- es (Francisco Javier F. Serrador)
- et (Ivar Smolin)
- et (Priit Laes)
- fi (Ilkka Tuohela)
- gu (Ankit Patel)
- hu (Gabor Kelemen)
- id (Imam Musthaqim)
- ja (Takeshi AIHANA)
- nb, no (Kjartan Maraas)
- nl (Vincent van Adrighem)
- POTFILES (Adam Weinberger)
- POTFILES (Sarfraaz Ahmed)
- pt_BR (Raphael Higino)
- sr, sr@Latn (Igor Nestorivia)
- vi (Clytie Siddall)
- zh_CN (Funda Wang)
Evolution-Data-Server 1.3.5, 2005-07-12
---------------------------------------
Bugzilla bugs fixed (see http://bugzilla.gnome.org/show_bug.cgi):
#309175 - Error compiling e-d-s based applications with GCC4 (Sushma)
#309276 - "is" sexp queries not working with E_CONTACT_UID (Sushma)
#308209 - SASL LOGIN mechanism protocol violation (Greg Hudson)
#309684 - Contact text entry leaks threads (Ross Burton)
#242165 - "search in any field" produces wrong results (Sushma)
#302965 - Names begin with a comma in GW Sent Items folder (Partha)
New features :
GroupWise Proxy support (Sankar, Shreyas)
Other fixes and changes :
- Support for getting e-mail ids from a contact list for GW
addressbooks (Sushma)
- Addressbook memory leak fixes (Kjartan Maraas, Ross Burton)
- Update GW address book only if marked for offline usage (Sushma)
- Optimize e_cal_is_read_only calls (Viren)
- Handle GW recurrences in Evolution (This and All) as in GW clients
(Harish)
- Optimize calendar attachment retrievals (Chenthill)
- Fix miscellaneous compiler versions (Harish)
- Use read cursors request instead of getQM calls in GW backend (Chen)
- Improve Junk Mail Handling support (Vivek)
- Background folder refresh in GW store (Partha)
- Make name selector dialog modal (Sushma)
- Remove e-mail addresses more easily in name-selector (Philip Van Hoof)
- Fetch folder size in Exchange store (Sarfraaz)
- Exchange Foreign hierarchy support (Shakti Sen)
- Improved error handling in Exchange store (Arun Prakash)
Updated Translations:
- bg (Rostislav Raykov)
- cs (Miloslav Trmac)
- de (Jens Seidel)
- en_CA (Adam Weinberger)
- es (Francisco Javier F. Serrador)
- et (Ivar Smolin)
- nb, no (Terance Sola)
- vi (Clytie Siddall)
- zh_TW (Chao Hsiung Liao)
Evolution-Data-Server 1.3.4, 2005-07-02
----------------------------------------
Bugzilla bugs fixed (see http://bugzilla.gnome.org/show_bug.cgi):
Camel
#303225 - Left pane is not updated with maildir (Michael Zucchi)
Addressbook
#302006 - Autocompletion does not work properly (Hans Petter Jansson)
Calendar
#309079 Memory leaks when syncing PDA on FC4 (Harish)
Other fixes and changes:
- Inline PGP signature support (Matt Brown)
- Add exchange as a supported backend to e-d-s
- remove checks for unused fields in camel local provider (Michael
Zucchi)
- Display GW events based on date of appointment not on the received
time. (Parthasarathi)
- Remove redundant linking of http backend to the file (Chen)
- Define static capability for delegation to multiple recipients (Chen)
- Support --no-undefined option on windows while building evolution
and drop superfluous inclusion of pthread.h in Addressbook (Tor Lillqvist)
- Switch to GThread API instead of pthreads for the main loop in Addressbook
(Tor Lillqvist)
- Ignore 'any field contains' query in LDAP address book refresh
(Sushma)
- Build system addressbook cache if marked for offline usage (Sushma)
- Update addressbook cache with changes in GW System Address book
(Srinivasa Ragavan)
- Use GtkFileChooserButton instead of GnomeFileEntry (Ross Burton)
- store the change type of a Groupwise item while getting the changes
(Chenthill)
- Miscellaneous compiler warning fixes (Harish)
Updated Translations:
- bg (Vladimir Petkov)
- cs (Miloslav Trmac)
- da (Martin Willemoes Hansen)
- en_CA (Adam Weinberger)
- et (Ivar Smolin)
- et (Priit Laes)
- et (Priit Laes)
- nb, no (Kjartan Maraas)
- zh_CN (Funda Wang)
- zh_TW (Abel Cheung)
- zh_TW (Chao-Hsiung Liao)
- POTFILES.in (Sarfraaz Ahmed)
Evolution-Data-Server 1.3.3, 2005-06-07
----------------------------------------
Bugzilla bugs fixed (see http://bugzilla.gnome.org/show_bug.cgi):
IMAP
#274407 IMAP4rev1: moved message pops up as new (Jeffrey Stedfast)
Groupwise
#300599 Mail folders not getting refreshed for GW account (Partha)
Addressbook
#271901 GroupWise naming consistency (Daniel van Eeden)
#300290 GALview does not show Complete name.(Sushma)
Other Features and Fixes:
- Added support for delegating meetings in Groupwise (Chenthill)
- Memory leak in Addressbook File backend (Ross Burton)
- updates to camel session fixes for Groupwise backend (Parthasarathi)
- fix incorrect naming of camel function (Jeffrey Stedfast)
Updated Translations:
- es (Francisco Javier F. Serrador)
- en_CA (Adam Weinberger)
- nb (Terance Sola)
- vi (Clytie Siddall)
- cs (Miloslav Trmac)
- zh_CN (Funda Wang)
- cy (Dafydd Harries)
- ja (Takeshi AIHANA)
Evolution-Data-Server 1.3.2, 2005-05-18
----------------------------------------
Bugzilla bugs fixed (see http://bugzilla.gnome.org/show_bug.cgi):
Groupwise
#274194 Filters do not filter all messages (Partha)
#273246 email is visible with mime.822 file attached (Partha)
#273243 external HTML mail is an attachment not viewed inline (Partha)
#256874 Anniversaries in B&A calendar have the Birthday category (Shreyas)
#301116 libedataserverui needs to specify the translation domain explicitly
(Changwoo Ryu)
#303540 F10 + Shift Key' doesn't work in evolution contacts (Mengjie Yu)
#272504 spell GW rightly (Chenthill)
#272503 Typo fix (Thierry Moisan)
Other Features and Fixes:
API docs (Hans Petter Jansson, Rodrigo Moya)
Misc pc file, configure fixes (Harish)
GW Backend Memory leaks (Ulrich Neumann)
const keyword additions to camel files (Ross Burton)
Added a new flag CAMEL_PROVIDER_DISABLE_SENT_FOLDER (Sankar)
Memory leak fixes (Sushma)
Checks for Win32 (mingw) (Tor Lillqvist)
Copy the flags field when converting from CamelStoreInfo to CamelFolderInfo.
(Alessandro Decina)
VJOURNAL backend (Rodrigo Moya)
Updated Translations:
- bg (Rostislav Raykov)
- el (Kostas Papadimas)
- da (Martin Willemoes Hansen)
Evolution Data Server 1.3.1, 2005-04-26
---------------------------------------
Bugzilla bugs fixed (see http://bugzilla.gnome.org/show_bug.cgi):
* Camel
#301037 - Handle case where the path doesn't exist in the url (Jeff)
#273945 - If camel_charset_best() returns NULL, default to UTF-8 (Jeff)
* Groupwise Provider
#274257 - Automatically synchronize account locally option does not work (Jeff)
#74369 - enable viewing shared folder notifications (Sankar)
#72032 - update summary with items that have been deleted from the server (Partha)
#72310 - deleted mail is not visible in Trash Folder (Partha)
#74183 - Expunge does not expunge all (Sankar)
#274409 - hang while reading Email (Chenthill)
* Calendar
#270035 - incompatible calendar.ics created with mozilla (Rodrigo)
* Addressbook
#268533 - evolution-alarm-notify appears to cause a leak in e-d-s (JP)
#273330 - Crash adding attendee under gw calendar - (Siva)
Other Bugs
* Camel
- Fix for systems where read is a macro (David Malcolm)
- don't set exceptions for failed date commands in NNTP (Michael)
- abort if we fail to get the date in NNTP (Alessandro Decina)
- Don't try to EXPUNGE in READ-ONLY mode (Jeff)
* Groupwise Provider
- Remove redundant getQuickMessageRequest (Partha)
* Address Book
- multiple authentication prompts for addressbook (Hans)
Updated Translations:
* et (Ivar Smolin)
* fa (Meelad Zakaria)
* it (Marco Ciampa)
* cs (Miloslav Trmac)
* en_CA (Adam Weinberger)
Evolution Data Server 1.2.0, 2005-03-07
---------------------------------------
Bugzilla bugs fixed (see http://bugzilla.ximian.com/show_bug.cgi):
* Addressbook
#73226 - Missing symbol in e-destination (JP)
* Addressbook
#72454 - Crash for webcals with gnome proxy setting (Rodrigo)
* All
#73010 - Cannot cancel/close 'Category icon' popup (Harry Lu)
Updated Translations:
- pt_BR (Raphael Higino)
- hu (Laszlo Dvornik)
- sr (Igor Nestorovic)
- sr@Latn (Igor Nestorovic)
- ca (Xavier Conde Rueda)
Evolution Data Server 1.1.6, 2005-02-28
---------------------------------------
Bugzilla bugs fixed (see http://bugzilla.ximian.com/show_bug.cgi):
* Addressbook
#72806 - EDS is crashing while trying to add a contact to Groupwise book (Siva)
#70908 - Can't remove e-mail addresses assigned to types evolution doesn't know about (Siva)
#67541 - LDAP password not remembered (Siva)
* Calendar
#71490 - Events shows up multiple times (Chen)
#71545 - Crash At Startup of Evolution 2.1 (Rodrigo)
#72107 - Evolution is hanging if you go offline and then come online (Chen)
#73008 - Recipients in CC and BCC field gets added into the TO field and not in their intended place (Sankar)
#72965 - Unable to rename a groupwise folder (Partha)
#72285 - groupwise backend crashes on a GWPOA generated email (Sankar)
#72907 - Few mails are not available for offline in groupwise (Siva)
* Camel
#68459 - Answering to Usenet article doesn't consider the "Followup-To:" field (Michael)
#71747 - IMAP host lookup on 'hostname;noselect=yes' (Jeff)
#71752 - Make sure auth_domain is 'Groupwise' (Vivek)
#72106 - New mails are in "READ" state (Partha)
#61468 - From and Subject information is missing from Inbox mailbox (Michael)
#57185 - MH file mode changes and broken links (Michael)
#59507 - tries to write junk cmeta in local spool (Michael)
#71812 - folders are stored way too often (Michael)
#70590 - Filters mark mail as read when it really isn't (Michael)
#72609 - Crash everytime when read the article (Michael)
* All
#9605 - Let "Delete" remove selected contact from the name selector (Harry Lu)
#73011 - Evolution crashed when clicked on new category (Rodrigo)
Other bugs
* Addressbook
- Make sure editors are always read-only in offline mode (Siva)
- Destroy groupwise connection hash tables correctly (Chen)
- Migration issue with non-ASCII quoted printable chars in contact notes (Siva)
* Calendar
- Return the weather calendar capabilities properly (Rodrigo)
- Fix getQM issues in groupwise backend so we don't miss events (Harish, Chen)
- Locking fixes to prevent races in backend (JP, Rodrigo)
- Download groupwise calendar attachments only if not already in cache (Harish)
- Destroy groupwise connection hash tables correctly (Chen)
- Make sure groupwise item creation date exists before using (Chen)
- Fix crash during migration if e-d-s is not available (Rodrigo)
- Set detached instance recurid and start/end properly (Rodrigo)
* Camel
- Make junk code use camel debug (Rodo)
- Use groupwise getQM call with correct timestamp to prevent missing messages (Harish)
- Fix deletion of groupwise mail (Chen)
- Fix server version display in warning (Vivek)
- Show correct time for mails (Partha)
- Rename inbox/INBOX to Inbox, so it is translatable (Björn Torkelsson)
- Use XGMOVE if possible in IMAP4 (Jeff)
- Flag IMAP4 inbox properly (Björn Torkelsson)
- Just search the cache if IMAP4 is in offline mode (Jeff)
* All
- PPC fixes (Hans)
- Allow name selector to auth books properly (Hans)
- Leak fix (Kjartan Maraas)
Updated Translations:
- el (Kostas Papadimas, Nikos Charonitakis)
- nl (Vincent van Adrighem)
- hu (Laszlo Dvornik)
- da (Martin Willemoes Hansen)
- gu (Ankit Patel) <ankit644@yahoo.com>
- pl (Artur Flinta)
- uk (Maxim Dziumanenko)
- fr (Thierry Moisan)
- pt (Duarte Loreto)
- it (Marco Ciampa)
- nb (Kjartan Maraas)
- no (Kjartan Maraas)
- bg (Vladimir Petkov)
- fi (Ilkka Tuohela)
- ru (Leonid Kanter)
- sq (Laurent Dhima)
- bg (Vladimir Petkov)
- lt (Zygimantas Berucka)
- en_GB (David Lodge)
- ja (Takeshi AIHANA)
- ko (Changwoo Ryu)
- sv (Christian Rose)
- en_CA (Adam Weinberger)
- es (Francisco Javier F. Serrador)
- de (Frank Arnold)
- cs (Miloslav Trmac)
Evolution Data Server 1.1.5, 2005-02-07
---------------------------------------
Bugzilla bugs fixed (see http://bugzilla.ximian.com/show_bug.cgi):
* Addressbook
#1069 - Support REV field in VCard (Siva)
#67267 - Auto-complete misses contacts with 'Title' set (Siva)
#68172 - Don't include function names in e-d-s messages (Siva)
#70918 - Importing kontact vcard causes inifinite loop (Siva)
#71116 - Wrong gettext initialization breaks translation (Christophe)
#71827 - Search after a contact with Name begins with, only searches
for first name (Siva)
* Calendar
#68541 - Invalid Response From Server Message (Chenthill)
#64682 - Moving a appts from one calendar to another sends update (Chenthill)
#72004 - Invalid connection error message (popup) - Suddenly (Chenthill)
#72117 - EDS crashed - Trying to create meeting appointments (Chenthill)
* Camel
#36142 - Don't use acronyms as verbs in messages (Michael)
#38671 - filtering on specific-headers needs to check each matching header
(Michael)
#38791 - GPG can make evo hang if keyserver unreachable (Michael)
#65329 - Regression in default folder name localisation (Michael)
#68741 - Evolution 2 hides Junk folder created in 1.4 (Michael)
#70303 - PGP signature invalid with very short emails (Michael)
#71847 - IMAP is broken (Jeff)
#72020 - Error parsing filter: Unknown identifier: adjust-score (Michael)
* All
#69909 - EDS logger doesn't restore logging when it shuts down (JP)
#72172 - Cannot delete a GW Shared folder (Partha)
Other bugs
* Addressbook
- Changed default Groupwise port to 7191 (Siva)
- Online/offline fixes in LDAP backend (Siva)
- Build backends as modules (Hans Petter)
- Check Groupwise server version and notify user (Vivek)
* Calendar
- Changed default Groupwise port to 7191 (Siva)
- Fixed idle saving in file backend (Rodrigo)
- Fixed leak in e_cal_send_objects (JP)
- Removed categories-related methods in backends (Rodrigo)
- Improvements in communication with GW servers for tasks (Harish)
- Build backends as modules (Hans Petter)
- Fixed conflicts in IDL file (Hans Petter)
- Check Groupwise server version and notify user (Vivek)
- getQuickMessages support in GW backend (Chenthill)
* Camel
- Added old imap code back to build (Jeff)
- Improve moving between folders in GW provider (Partha)
- IMAP/IMAP4 compatibility work (Jeff)
- Updated tests to use IMAP4 (Jeff)
- getQuickMessages support in GW provider (Partha)
- Use GW SOAP mailer code to be the default (Siva)
- Changed default Groupwise port to 7191 (Siva)
- GW SOAP mailer code improvements (Partha)
* All
- Added 'searchable' flag for categories (Rodrigo)
- Fixed saving of categories config changes (Rodrigo)
- Use glib's i18n headers (Ross)
- Removed useless libgnome use (Ross)
- a11y improvements (Hao)
Updated Translations:
- ca (Jordi Mallach)
- cs (Miloslav Trmac)
- de (Frank Arnold)
- el (Kostas Papadimas)
- en_CA (Adam Weinberger)
- en_GB (David Lodge)
- es (Francisco Javier F. Serrador)
- et (Priit Laes)
- ja (Takeshi AIHANA)
- ko (Changwoo Ryu)
- lt (Žygimantas Beručka)
- nb (Kjartan Maraas)
- nl (Vincent van Adrighem)
- no (Kjartan Maraas)
- pt (Duarte Loreto)
- pt_BR (Raphael Higino)
- sq (Laurent Dhima)
- sv (Christian Rose)
Evolution Data Server 1.1.4, 2005-01-24
----------------------------------------
Bugzilla bugs fixed (see http://bugzilla.ximian.com/show_bug.cgi):
* Calendar
#57567 - calendar migration speed (Rodrigo)
#67974 - use proxy if necessary for webcal (Rodrigo)
* Camel
#65178 - newly created folder on local maildir doesn't show until evolution restart (Michael)
#71082 - Authenticated SMTP and TLS work very slowly (Jeff)
#69024 - Doesn't update NNTP folder in a Virtual folder (Michael)
#47824 - nested, identical multipart boundaries dont parse properly (Michael)
#70095 - deleting vfolder causes evo to hang (Michael)
* All
#70067 - Mask GW password when GROUPWISE_DEBUG=1 is used (Siva)
#28532 - Don't allow duplicate categories (Rodrigo)
Other bugs
* Addressbook
- Fix full name queries (Siva)
- Order of magnitude speed fix for fetching list of contacts (Siva)
* Calendar
- Comply with new server api changes (Harish)
- Default to UTC timezone if nothing else (Chen)
- Handle cancelling instances via itip (Rodrigo)
- Handle case where events are only instances (no master) (Rodrigo)
- Don't save unless the file is actually dirty in the file backend (Rodrigo)
- Use single metric/imperial setting (David Trowbridge)
* Camel
- Make imap4 code have the same summary as imap (Jeff)
- Make imap4 code handle imap:// uri (Jeff)
- Fix offline syncing and journalling for imap, groupwise and exchange (Jeff)
- Be able to get the message status in groupwise (Partha)
- Restrict path lengths to 65k in lock helper (Michael, Max Vozeler)
- Fix groupwise offline transfers (Jeff)
- retain label settings in IMAP4 when offline for UIDPLUS servers (Jeff)
- 64 bit fixes (Michael)
* All
- emit source changed property if properties are totally removed (Siva)
- complete properly if the widget loses focus via tab (Hans)
- display all email addresses for a user again (Hans)
- fix crash pressing enter in empty completion widget (Hans)
Updated Translations:
- it (Marco Ciampa)
- de (Frank Arnold)
- et (Priit Laes)
- cs (Miloslav Trmac)
- nb (Kjartan Maraas)
- lt (Zygimantas Berucka)
- ja (Takeshi AIHANA)
- es (Francisco Javier F. Serrador)
- en_CA (Adam Weinberger)
Evolution Data Server 1.1.3, 2005-01-10
----------------------------------------
Bugzilla bugs fixed (see http://bugzilla.ximian.com/show_bug.cgi):
* Calendar
#68533 - evolution-alarm-notify appears to cause an e_data_book leak (Harish)
* Camel
#70556 - Unable load messages info from MS Exchange by IMAP (Michael)
#70919 - Crash during fetching mail (mail has gpg signature) (Michael)
Other bugs
* Addressbook
- Merge offline support for groupwise, ldap (Siva, Chen, Hans)
* Calendar
- Backend attachment support (Harish)
- Weather calendar (David Trowbridge)
- Handle send options for groupwise (Chen)
- Fixed problems when items only had detached instances (Rodrigo)
- Merge offline support for groupwise, ldap, webcal (Siva, Chen)
* Camel
- Merge groupwise SOAP mailer (Partha)
- IMAP4 offline support (Jeff)
- Groupwise offline support (JP, Jeff, Partha)
- 64 bit fixes (David Mosberger-Tang)
* All
- move e-categories and rewrite (Rodrigo)
- emit source_changed signal if properties change (David Trowbridge)
- implement e-name-selector class, without bonobo (Hans)
Updated Translations:
- bg (Vladimir Petkov)
- ja (Takeshi AIHANA)
- ru (Leonid Kanter)
Evolution Data Server 1.1.2, 2004-12-20
----------------------------------------
Bugzilla bugs fixed (see http://bugzilla.ximian.com/show_bug.cgi):
* Calendar
#70127 - Evolution Calendar does not use a User-Agent (JP)
#70267 - O(n^2) activity writing cache files when opening an ics webcal
#file (Rodrigo)
* Addressbook
#68454 - Ldap organizationalUnit show up in contact list (Siva)
* Camel
#69776 -Signed Mail with attachments displays everything with
multipart/boundaries stuff (NotZed)
#69533 - GW imap mail becomes invisble/unavailable (NotZed)
Other bugs
* Addressbook
- implement is_open accessor on ebook (Hans)
- move e-destination (Hans)
* Calendar
- Merge recurrence work, support for detached instances (Rodrigo)
- Add support for passing a modified object from sync backends (Anders Carlsson)
- Add static capabilities for send options (Chen)
- Leak fixes (Harish)
* Camel
- Move camel here (NotZed)
- Fix non-SSL build (Jeff)
- Add offline journalling for IMAP4 (Jeff)
* All
- implement a gtktreemodel contact store (Hans)
Updated Translations:
- lt (Zygimantas Berucka)
- it (Marco Ciampa)
Evolution Data Server 1.1.1, 2004-11-28
----------------------------------------
Bugzilla bugs fixed (see http://bugzilla.ximian.com/show_bug.cgi):
* Calendar
#69624 - make changes in evo corresponding to soap schema changes (Siva)
* All
#69056 - Translations set to wrong version (Ryan Skadzberg)
#68737 - Crash on Migrating (JP)
Other bugs
* Addressbook
- add API to determine required fields (Siva)
* All
- allow access to primary source selector (Harish)
Updated Translations:
- sr (Danilo Segan)
- sr@Latn (Danilo Segan)
- cs (Miloslav Trmac)
- sq (Laurent Dhima)
- en_CA (Adam Weinberger)
- en_GB (David Lodge)
Evolution Data Server 1.1.0, 2004-11-01
----------------------------------------
Bugzilla bugs fixed (see http://bugzilla.ximian.com/show_bug.cgi):
* Calendar
#64673 - Cannot view free/busy for GroupWise users for users outside POA (Harish)
#67031 - Groupwise task completion not showing (Chen)
* Address Book
#42165 - "search in any field" produces wrong results (Siva)
#64298 - G/W failure to authenticate (Siva)
* All
#65200 - GroupWise backend crash
#67031 - (Partial) show completed status properly for GroupWise tasks
Other bugs
* Address Book
- Fix e_book_commit_contact multiple usage crash (Diego Gonzalez)
- Make groupwise IM names searchable (Nat)
* Calendar
- Speed up free/busy gathering (Harish)
- Speed up getting detached instance information (Rodrigo)
* All
- loadable backend modules (Toshok)
- create libedataserverui (JP)
Updated Translations:
- sr (Danilo Segan)
- sr@Latn (Danilo Segan)
- cs (Miloslav Trmac)
- sq (Laurent Dhima)
- en_CA (Adam Weinberger)
- en_GB (David Lodge)
Evolution Data Server 1.0.2, 2004-10-11
----------------------------------------
Bugzilla bugs fixed (see http://bugzilla.ximian.com/show_bug.cgi):
* Calendar
#62868 - Permission denied accepting a GroupWise meeting a second time (Chen)
#67513 - Evolution corrupts memory if backend autobooks meeting attendees (JP)
#66230 - tasks from online iCal duplicate after auto-refresh (Rodrigo)
* Address Book
#66368 - VCard parser doesn't add "File under" (Hans)
#66574 - Make e_book_get_self work (Diego Gonzalez
#67600 - fix e-d-s issues on x86_64 machines (Hans)
* All
#65200 - GroupWise backend crash
#67031 - (Partial) show completed status properly for GroupWise tasks
Other bugs
* Address Book
- Restrict system address book queries to groupwise server for performance reasons (Siva)
* Calendar
- load system tasks backend correctly
Updated Translations:
- fr (Craig Jeffares)
- zh_TW (Craig Jeffares)
- sk (Stanislav Visnovsky)
- fa (Roozbeh Pournader)
- id (Mohammad DAMT)
- ar (Arafat Medini)
Evolution Data Server 1.0.1, 2004-09-24
----------------------------------------
Bugzilla bugs fixed (see http://bugzilla.ximian.com/show_bug.cgi):
* Calendar
#66383 - Warning fixes in calendar code (Dave Malcom)
#64955 - C99-ism in libecal (Vincent Noel)
#59904 - Calendar query caching (Rodrigo)
#65167 - Crash sending task to GroupWise (Chen)
#64685 - Appointment requests that have been replied to give "Invalid Object" error (Chen)
#63513 - G/W appointment acceptance fails ('invalid object') (Chen)
#64688 - mixing UTC and localtime in Appointment view (Chen)
* All
#66209 - only first source color change is saved to gconf (Michael)
#64062 - new all day recurring events do not show busy time or as all day appts (Chen)
Other bugs
* Address Book
- disable debugging noise (William Jon McCann)
- don't search summary for groupwise system address book (Siva)
* Calendar
- support groupwise all day events
* All
- fix e-d-s issues on NPTL and AMD machines (Chris, Frederic Crozat, Hans, Dave Malcolm)
Updated Translations:
- fr (Craig Jeffares)
- zh_TW (Craig Jeffares)
- sk (Stanislav Visnovsky)
- fa (Roozbeh Pournader)
- id (Mohammad DAMT)
- ar (Arafat Medini)
Evolution Data Server 1.0.0, 2004-09-13
----------------------------------------
Bugzilla bugs fixed (see http://bugzilla.ximian.com/show_bug.cgi):
* Addressbook
#59582 - Contact incompletely updated to LDAP store, address information lost/not editable
#63385 - Evolution crash - Adding two email ids with same name
* Calendar
#57443 - ics import crashes
Updated Translations:
- da (Martin Willemoes Hansen)
- ar (Arafat Medini)
- nn (Åsmund Skjæveland)
- en_GB (David Lodge)
- cy (Telsa Gwynne)
- el (Kostas Papadimas)
- tr (Baris Cicek)
Evolution Data Server 0.0.99, 2004-08-27
----------------------------------------
Bugzilla bugs fixed (see http://bugzilla.ximian.com/show_bug.cgi):
* Addressbook
#63844 - avoid locking if authentication needed during auto completion (Siva)
#63255 - ignore name prefixes when completing (Siva)
* Calendar
#62857 - display recurring events upon creation for groupwise (Chen)
#61782 - handle importing objects with no UID (Rodrigo)
#62655 - don't crash with NULL uri (Hans)
* All
#63051 - solaris build fixes (notzed)
Other bugs
* Calendar
- add has-alarms-in-range query type (Rodrigo)
- always set return value for e_cal_set_default_timezone (Frederic Crozat)
- don't set the same default timezone multiple times (JP)
- don't get all items from the groupwise server every time (Chen)
* Addressbook
- and thread safety flag for libdb (Toshok)
- throw error when deleting system address book (Siva)
- avoid unfiltered system address book searchs (Siva)
- use cursors to populate the groupwise cache (Siva)
- prevent groupwise server crash by not doing to cursor requests at the same time (Chen)
- immediately show meeting status updates in GUI for groupwise (Chen)
* All
- fix warnings (Frederic Crozat)
- set cache file name properly (Siva)
Updated Translations:
- pt_BR (Gustavo Maciel Dias Vieira)
- es (Francisco Javier F. Serrador)
- da (Martin Willemoes Hansen)
- de (Christian Neumair)
- hu (Laszlo Dvornik)
- nb (Kjartan Maraas)
- no (Kjartan Maraas)
- sq (Laurent Dhima)
- uk (Maxim Dziumanenko)
- az (Metin Amiroff)
- ja (Takeshi AIHANA)
- pt (Duarte Loreto)
- fi (Ilkka Tuohela, Tommi Vainikainen)
|