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
|
==============
Version 3.36.1
==============
This version works around the unavailability of the NOAA weather services
by using very short-term forecasts as current weather conditions.
==============
Version 3.36.0
==============
This version contains translation updates, addition of a number of cities
and airports, some memory leak and possible crash fixes. The
gweather_location_get_english_name() function is also exported.
==============
Version 3.34.0
==============
This version contains translation updates.
===============
Version 3.33.92
===============
This version fixes a bug when using the yr.no and NOAA weather services
together failing in some circumstances, and also fix the iwin service.
==============
Version 3.33.0
==============
This version of the library bumps the soname after an ABI break in 3.31.91
that went unnoticed. If you see strange crashes, make sure to bump the
required version of libgweather to 3.31.91 or newer.
==============
Version 3.32.1
==============
* Fix location deserialisation not working for locations
without a weather station code (eg. cities)
* Make more debug available for weather fetching
* Translation updates
==============
Version 3.32.0
==============
* Fix a warning when the location text entry is used
* Remove closed Bristol Filton weather station
* Translation updates
===============
Version 3.31.91
===============
This version of the library contains all the bug fixes already present
in version 3.28.3, but also:
* Disconnect cities from weather stations and remove duplicated
weather stations
* Remove <province> sub-division
* Location database updates
==============
Version 3.28.0
==============
* Fix translations not being used [#794027]
* Translation updates
* Location database updates and fixes for Israel
==============
Version 3.27.4
==============
* Deprecated API was removed; this caused a soname bump. All dependent software must
be rebuilt [Bastien Nocera, #791313]
* New API: a new level of locations, called "named timezones" was added, to represent
well known timezones with no associated location. Two named timezones are included:
UTC and AoE (Anywhere on Earth) [Bastien Nocera, Giovanni Campagna, #791066]
* It is now possible to have cities in the database with no associated weather station;
the nearest weather station is chosen if necessary
* Matching of search terms to location names was improved [#791066, #791403]
* The Yahoo Weather backend was removed; it was not well tested and unused by
most applications and distributions [Bastien Nocera, #791084]
* More tests were added [Bastien Nocera, #791307, #791313, #791317, #791319, #791402]
* Misc bug fixes [Bastien Nocera, #789080]
* Build system fixes [Piotr Drag; Emmanuele Bassi; Bastien Nocera, #791088, #791086]
* Translation bug fixes [Piotr Drag, #781364]
* Location database updates and fixes [Bastien Nocera, #791095, #620897, #727186,
#643928, #789951, #791323, #599880, #642634, #606557, #617689, #768309, #635534,
#597989, #625270, #625270, #583644, #534047, #572675; Amit Pundir, #611945;
Fabio Duran Verdugo, #640877; Silvara, #778707]
* Updated translations
==============
Version 3.27.1
==============
* This is the first version to use the meson build system.
* Updated translations
==============
Version 3.26.0
==============
* Updated translations
===============
Version 3.25.92
===============
* Location database fixes
* Updated translations
===============
Version 3.25.91
===============
* New API to show uncapitalized weather [Florian Muellner, #779872]
* Memory management fixes [Florian Muellner, #781828]
* User visible string fixes [#785274]
* Location database updates and fixes [Piotr Drag, #780244]
* Updated translations
==============
Version 3.24.1
==============
* Memory management fixes [Florian Muellner, #780278; Andreas Brauchli, #782760]
* Updated translations
==============
Version 3.24.0
==============
* New API to find a country by code [#753332]
* Location entry now respects country when choosing the closest
weather station [#753332]
* Misc bug fixes [Will Thompson, #776170; #770979; Piotr Drag, #772758]
* Location database updates and fixes [#775737; #776337; #770579]
* Updated translations
==============
Version 3.20.4
==============
* Updated translations
==============
Version 3.20.3
==============
* NOAA shut down their METAR provider service, so libgweather
switched to a different provider [Frank Dana, #770321]
* Updates translations
==============
Version 3.20.2
==============
* Fixed NOAA API URL [Daniel Aleksandersen, #765322]
* Updated translations
==============
Version 3.20.1
==============
* Updated translations
==============
Version 3.20.0
==============
* Updated translations
===============
Version 3.19.92
===============
* Update to new yr.no API [Daniel Aleksandersen, #763175]
* Updated translations
===============
Version 3.19.90
===============
* Build system updates
* Fix build with Clang [Ting-Wei Lan, #760178]
* libsoup dependency bumped to 2.44
* Updated translations
==============
Version 3.18.1
==============
* Build system fixes
* Updated translations
==============
Version 3.18.0
==============
* Updated translations
===============
Version 3.17.92
===============
* Updated translations
==============
Version 3.17.2
==============
* New API to resolve default values for units (only temperature for now)
* Reduced use of deprecated APIs
* Updated translations
==============
Version 3.17.1
==============
* API break: some include files were renamed, and single includes
are now mandatory. Binary compatibility was preserved.
* Misc bug fixes to the search in the database [#747017, #748299]
* Location database fixes [Changwoo Ryu, #747155]
* Build system updates to improve operation with GNOME Builder
* Build system fixes [Emmanuele Bassi, #747837] [#747890]
==============
Version 3.16.1
==============
* Updated translations
==============
Version 3.16.0
==============
* Updated translations
===============
Version 3.15.92
===============
* Improved integration with geocode-glib (which avoids showing the
country name twice now)
* Misc bug fixes
* Updated translations
===============
Version 3.15.91
===============
* Updated translations
===============
Version 3.15.90
===============
* New API: gweather_location_new_detached(), for easier integration
with services that provide only a description, latitude and longitude
* New and improved documentation
* Updated translations
==============
Version 3.15.1
==============
* Location database fixes [Maksim Kraev, #743092, #743111, #743112]
* Updated translations
==============
Version 3.14.3
==============
* Fixed a crash in the location entry [Matthias Clasen, #739899]
* Location database fixes [#740932, #721446]
* Updated translations
==============
Version 3.14.1
==============
* The yahoo weather backend now uses HTTPS for privacy [#737566]
* The yr.no weather backend was fixed (it regressed in 3.13.92)
[#738307]
* Updated translations
==============
Version 3.14.0
==============
* Updated translations
===============
Version 3.13.92
===============
* The yr.no backend has been updated to the 1.9 API [#736334]
* Updated translations
===============
Version 3.13.91
===============
* Fixed timezones of all cities (used in gnome-clocks,
among others) [#734272]
* Misc bug fixes and utility API additions [Paolo Borelli, #734876]
* Location database fixes
* Updated translations
===============
Version 3.13.90
===============
* GWeatherLocationEntry no longer shows different airports
for the same city separately [#732315]
* Misc bug fixes [#732728]
* Location database fixes [#721134]
* Updated translations
==============
Version 3.13.4
==============
* Expanded the range of cities offered in the location
entry through the use of geocode-glib [Saurabh, #731466]
* Misc bug fixes
* Location database fixes [Bastien Nocera, #733269]
* Updated translations
==============
Version 3.13.3
==============
* Removed support for moon phase icons, and removed the
icons from the package
* Fixed GWeatherLocationEntry localization [#726897]
* Location database fixes [Yury Khomchyk, #731394]
* Updated translations
==============
Version 3.13.2
==============
* Serialization format for locations was changed. Existing
serialized locations are recognized, but variants produced
by the new library are not compatible.
The new format is compatible with dbus-1, so locations
can now be sent across dbus.
* Updated translations
==============
Version 3.13.1
==============
* Added support for a find_nearest_city() method that
takes a filter function [Saurabh_P, #726186]
* Added support for reverse geocoding to find_nearest_city()
[Saurabh_P, #725842]
* Build and warning fixes
* Updated translations
==============
Version 3.12.0
==============
* Updated translations
===============
Version 3.11.92
===============
* Fixed SoupSession handling with multiple GWeatherInfos
* Miscellaneous bug fixes [Saurabh_P, #725671]
* Location database additions [Giselle Machado, #707603] [#726016]
* Build fixes
* Updated translations
===============
Version 3.11.91
===============
* Add a version information API [Javier, #724676]
* Improved developer documentation [Javier]
* Updated translations
===============
Version 3.11.90
===============
* Unset the location when the entry is cleared [#724416]
* Location database additions [#722625]
* Updated translations
==============
Version 3.11.5
==============
* Location database additions [#721446, #720871,
#720777, #722301]
* Fixed invalid yr.no URLs
* Updated translations
==============
Version 3.11.4
==============
* Updated translations
==============
Version 3.11.3
==============
* Restore support for systems without
_NL_MEASUREMENT_MEASUREMENT (BSDs) [Javier Jardon]
* Add utility function to find the nearest city
[#677268, Jasper St Pierre]
* Add method to get the timezone by ID [Jasper]
* C standard and build warning fixes fixes [#720207,
#720208, Ryan Lortie]
* Database updates
* Updated translations
==============
Version 3.10.1
==============
* Updated translations
* Misc bug fixes [#708586, Sjoerd Simons]
==============
Version 3.10.0
==============
* Updated translations
==============
Version 3.9.92
==============
* Updated translations
==============
Version 3.9.91
==============
* Add optional vala support
* Location database fixes
* Updated translations
==============
Version 3.9.90
==============
* Location database fixes
* Updated translations
=============
Version 3.9.5
=============
* Translations for the locations database are now
stored in separate mo files and looked up at runtime,
cutting build times and installed size
* A number of minor API breaks, such as the removal of
forecast-type GObject property and accessors; most
apps still build fine
* New backend: OpenWeatherMap
* Updated translations
=============
Version 3.9.4
=============
* Fixed handling of detached locations
* Updated translations
=============
Version 3.9.3
=============
* ABI break: GWeatherLocationEntry now is a subclass of
GtkSearchEntry
* Updated translations and location database fixes
=============
Version 3.9.2
=============
* There is now a single hierarchy of GWeatherLocation
structures, and gweather_location_new_world() returns
a singleton object
* Therefore, constructors which accepted a @world parameter
have been deprecated.
* GWeatherInfo now emits ::updated in response to GSettings
changes
* A Glade catalog was added, covering the Gtk widgets
* Updated translations
=============
Version 3.9.1
=============
* Miscellaneuous fixes to the METAR, Yahoo
and yr.no backends
* GWeatherLocationEntry will autocomplete when pressing
enter (if activates-default is true)
* GWeatherInfo now enables automatic disk caching
of network request and gzip encoding (where available)
* New API added to flush the cache to disk, only
for language bindings with a GC (ie JS). C, Vala or Python
apps get this for free
* Default measure units are now derived from LC_MEASUREMENTS,
not LC_MESSAGES, thus respecting the configuration in the
Region & Language control center panel.
* Lots of translation updates
=============
Version 3.8.1
=============
* Translation updates
=============
Version 3.8.0
=============
* Translation updates
==============
Version 3.7.90
==============
* Added a gweather.h global include, which is also
referenced from the GIR file
* Fixed introspection annotations
* Fixed sunrise and sunset getters requiring forecast data
* Added translation context to ambiguous strings
* Translation updates
=============
Version 3.7.5
=============
* Translation updates
=============
Version 3.7.4
=============
* We no longer use libsoup-gnome, and instead depend
on a newer libsoup (>= 2.34) which uses libproxy to
access proxy configuration
* Location update scripts have been ported to Python 3
* Vincent Untz stepped down as a maintainer. Thanks for
all the work he did in the past!
=============
Version 3.7.3
=============
* Two new backends for GWeatherInfo: Yahoo! Weather
and Yr.no.
Work has started to include Yahoo location data (WOEID) in
the offline database.
* GWeatherInfo backends can now be enabled and
disabled individually from the application side.
* GWeatherXML was removed from the public API. No users
of it are known, however the soname was bumped.
* GWeatherLocation is now serializable to GVariant for
storage in GSettings.
* GWeatherInfo no longer requires network access for
astronomical data.
* Unmaintained Windows support was removed.
* Translation updates
=============
Version 3.7.2
=============
* Fixed deprecation warnings for modern GLib
* Translation updates
=============
Version 3.6.0
=============
* Translation updates
==============
Version 3.5.92
==============
Translators
* Brasilian Portoguese (Djavan Fagundes)
* British English (Bruce Cowan)
* Catalan (Carles Ferrando, Gil Forcada)
* Czech (Marek Černocký)
* Danish (Ask H. Larsen)
* Finnish (Timo Jyrinki)
* French (Alexandre Franke)
* Galician (Fran Diéguez)
* Greek (Tom Tryfonidis)
* Gujarati (Sweta Kothari)
* Hungarian (Gabor Kelemen)
* Indonesian (Andika Triwidada, Dirgita)
* Italian (Milo Casagrande)
* Korean (Changwoo Ryu)
* Malayalam (Ani Peter)
* Marathi (Sandeep Sheshrao Shedmake)
* Persian (Arash Mousavi)
* Polish (Piotr Drąg)
* Portoguese (Duarte Loreto)
* Russian (Yuri Myasoedov)
* Simplified Chinese (Tuhaihe)
* Thai (Theppitak Karoonboonyanan)
==============
Version 3.5.91
==============
Locations database
* Updated coordinates of two Italian cities (Guido Trentalancia)
Translators
* Russian (Aleksej Kabanov)
* Lithuanian (Aurimas Černius)
* Spanish (Daniel Mustieles)
* Swedish (Daniel Nylander)
* Galician (Fran Diéguez)
* Norwegian bokmål (Kjartan Maraas)
* Slovenian (Matej Urbančič)
* Assamese (Nilamdyuti Goswami)
* Polish (Piotr Drąg)
==============
Version 3.5.90
==============
Translators
* Serbian (Мирослав Николић)
* Assamese (Nilamdyuti Goswami)
* Marathi (Sandeep Sheshrao Shedmake)
* Italian (Milo Casagrande)
=============
Version 3.5.5
=============
Translators
* Traditional Chinese (Chao-Hsiung Liao)
=============
Version 3.5.4
=============
Translators
* Bulgarian (Alexander Shopov)
* Arabic (Khaled Hosny)
* Norwegian bokmål (Kjartan Maraas)
* Vietnamese (Nguyễn Thái Ngọc Duy)
* Assamese (Nilamdyuti Goswami)
=============
Version 3.5.1
=============
libgweather
* Various introspection updates and fixes (Giovanni Campagna)
* GWeatherLocation is now a boxed type and used
as such through out the library (Giovanni Campagna)
* Each GWeatherLocation is now strongly associated
with world level location, and this is reflected
in GWeatherInfo (Giovanni Campagna)
* Fixed retrieving US weather for non US locales
(Giovanni Campagna)
* Applied symbol filtering to avoid exposing non
public API (Giovanni Campagna)
Translators
* Greek (Tom Tryfonidis)
* Telugu (Sasi Bhushan Boddepalli)
=============
Version 3.5.0
=============
libgweather
* Port to GSettings (Giovanni Campagna)
Misc
* Use upstream gettext (Javier Jardón)
* Autotools build system fixes (Javier Jardón)
Translators
* Spanish (Daniel Mustieles)
* Norwegian (Kjartan Maraas
* Slovak (Pavol Klačanský)
* Punjabi (A S Alam)
* Hebrew (Yaron Shahrabani)
* Galician (Fran Diéguez)
* Bulgarian (Alexander Shopov)
* Gujarati (Sweta Kothari)
* Russian (Yuri Kozlov)
* Slovenian (Matej Urbančič)
* Belarusian (Ihar Hrachyshka)
=============
Version 3.4.1
=============
Misc
* linking with libm explicity (Dominique Leuenberger)
* Set the URL for the package's home page in AC_INIT
=============
Version 3.4.0
=============
Misc
* Move API documentation to inline comments (Javier)
* Improve autotools configuration a bit (Javier, Vincent)
Translators
* Ahmed Noor Kader Mustajir Md Eusoff (ms)
* Jovan Naumovski (mk)
* Arash Mousavi (fa)
* Kjartan Maraas (nb)
=============
Version 3.2.1
=============
libgweather
* Fix fetching forecast from bom.gov.au (Johnny, Vincent)
* Fix fetching forecasts from the Met Office (Vincent)
* Fix introspection build with builddir != srcdir (Vincent)
=============
Version 3.2.0
=============
Translators
* Abderrahim Kitouni (ar)
* Ihar Hrachyshka (be)
* Andika Triwidada (id)
* Aurimas Fišeras (lt)
* Pavol Klačanský (sk)
=============
Version 3.1.3
=============
Misc
* Modernize build system a bit (Vincent)
Translators
* Kristjan SCHMIDT (eo)
* Takayuki KUSANO (ja)
* Gheyret Kenji (ug)
* Korostil Daniel (uk)
=============
Version 3.0.0
=============
libgweather
* Build fixes (Kevin Easton, Craig Keogh)
Translators
* Joan Duran (ca)
* Gabor Kelemen (hu)
* Gheyret Kenji (ug)
* Korostil Daniel (uk)
* Clytie Siddall (vi)
* Chao-Hsiung Liao (zh_HK)
* Chao-Hsiung Liao (zh_TW)
==============
Version 2.91.6
==============
libgweather
* Fix linking with gcc-4.5 (Martin Pitt)
Translators
* Joan Duran (ca@valencia)
* Mattias Põldaru (et)
* Mahyar Moghimi (fa)
* Fran Diéguez (gl)
* Changwoo Ryu (ko)
* Gheyret Kenji (ug)
==============
Version 2.91.0
==============
Note to distributors: this release replaces the python bindings with
introspection support. It should also be parallel-installable with the
GTK+ 2 version of the library. Mostly, at least.
libgweather
* Port to GTK+ 3 (Vincent)
* Add introspection support (Vincent)
Python bindings
* Remove python bindings (Vincent)
Locations.xml.in
* Update for tzdata 2010k (Vincent)
Misc
* Help with parallel-installability (Christian Persch, Vincent)
* Update information in README and other files (Vincent)
Translators
* Mattias Põldaru (et)
* Fran Diéguez (gl)
* Takayuki KUSANO (ja)
* Matej Urbančič (sl)
* Gheyret Kenji (ug)
* Aron Xu (zh_CN)
==============
Version 2.30.2
==============
Translators
* F Wolff (af)
* Joan Duran (ca@valencia)
* Reşat SABIQ (crh)
* Thomas Thurman (en@shaw)
* Kristjan SCHMIDT (eo)
* Shankar Prasad (kn)
* Peteris Krisjanis (lv)
* Wouter Bolsterlee (nl)
* Manoj Kumar Giri (or)
* Maxim Dziumanenko (uk)
==============
Version 2.30.0
==============
Translators
* Alexander Shopov (bg)
* Jamil Ahmed (bn)
* Petr Kovar (cs)
* Ask Larsen (da)
* Nikos Bakaoukas (el)
* Simos Xenitellis (el)
* Inaki Larranaga Murgoitio (eu)
* Tommi Vainikainen (fi)
* Claude Paroz (fr)
* Changwoo Ryu (ko)
* Gintautas Miliauskas (lt)
* Torstein Adolf Winterseth (nn)
* A S Alam (pa)
* Claudia Cotună (ro)
* Adi Roiban (ro)
* T Vasudeven (ta)
* Maxim V. Dziumanenko (uk)
===============
Version 2.29.92
===============
Translators
* Alexander Shopov (bg)
* Joan Duran (ca)
* Mario Blättermann (de)
* Bruce Cowan (en_GB)
* Jorge González (es)
* Claude Paroz (fr)
* Fran Diéguez (gl)
* Yaron Sharabani (he)
* Gabor Kelemen (hu)
* Milo Casagrande (it)
* Praveen Arimbrathodiyil (ml)
* Kjartan Maraas (nb)
* Torstein Adolf Winterseth (nn)
* Piotr Drąg (pl)
* Duarte Loreto (pt)
* Antonio Fernandes C. Neto (pt_BR)
* Leonid Kanter (ru)
* Matej Urbančič (sl)
* Daniel Nylander (sv)
===============
Version 2.29.91
===============
Locations.xml.in
* Andrew (Mulhouse, FR and Basel, CH)
* David Bortz (Boulder CO US)
* Harry Dance (Castle Donington, UK)
* Arne Goetje (Tiawan cities)
* Emilio Pozuelo Monfort (Canberra, AU)
* Frank Solensky (St. Moritz, CH and Ankara, TR)
* Vincent Untz (Antartica)
Translators
* Alexander Shopov (bg)
* Petr Kovar (cs)
* Mario Blättermann (de)
* Jorge González (es)
* Mattias Põldaru (et)
* Bruno Brouard (fr)
* Claude Paroz (fr)
* Fran Diéguez (gl)
* Milo Casagrande (it)
* Kjartan Maraas (nb)
* Vladimir Melo (pt_BO)
* Lucian Adrian Grijincu (ro)
* Marcel Telka (sk)
* Matej Urbančič (sl)
* I. Felix (ta)
===============
Version 2.29.90
===============
Locations.xml.in
* Andrew (Mulhouse, FR and Basel, CH)
* David Bortz (Boulder CO US)
* Harry Dance (Castle Donington, UK)
* Arne Goetje (Tiawan cities)
* Emilio Pozuelo Monfort (Canberra, AU)
* Frank Solensky (St. Moritz, CH and Ankara, TR)
* Vincent Untz (Antartica)
Translators
* Alexander Shopov (bg)
* Petr Kovar (cs)
* Mario Blättermann (de)
* Jorge González (es)
* Mattias Põldaru (et)
* Bruno Brouard (fr)
* Claude Paroz (fr)
* Fran Diéguez (gl)
* Milo Casagrande (it)
* Kjartan Maraas (nb)
* Vladimir Melo (pt_BO)
* Lucian Adrian Grijincu (ro)
* Marcel Telka (sk)
* Matej Urbančič (sl)
* I. Felix (ta)
* vasudeven (ta)
===============
Version 2.29.90
===============
Locations.xml.in
* Marcin Banasiak (Lodz, PL)
* bigbrovar@gmail.com (Abuja, NG)
* Vassily Gavrilyak (Tbilisi, GE)
* Federico Mena Quintero (Krasnoyarsk, RU)
* rodrigodonado@gmail.com (Port-au-Prince, HT)
Translators
* Khaled Hosny (ar)
* Krasimir Chonov (bg)
* Jamil Ahmed (bn)
* Mario Blättermann (de)
* Jorge González (es)
* Claude Paroz (fr)
* Erdal Ronahi (ku)
* Kjartan Maraas (nb)
* Torstein Adolf Winterseth (nn)
* Antonio Fernandes C. Neto (pt_BR)
* Matej Urbančič (sl)
* Aron Xu (zh_CN)
==============
Version 2.29.5
==============
Translators
* Xandru Armesto Fernandez (ast)
* Jorge González (es)
* Matej Urbančič (sl)
* Daniel Nylander (sv)
==============
Version 2.29.4
==============
libgweather
* Unwind change that limited each city to one location (Frank)
* Add entries missing from data/major-cities.txt (Frank)
Locations.xml.in
* ERA (Vantaa, FI)
* Tobias Kunze Briseno (Windhoek, NA)
* Kyle J. Harms (St. Louis, US)
* Boris Kudryashov (Tyumen, RU)
* Brian Marshall (multiple WA, US)
* Rajeesh K. Nambiar (Bangalore, Kochi, Pune IN)
* Amit Pundir (multiple IN)
* Frank Solensky (Tromsø NO)
* Matt Turdel (Montreal CA)
* Ali Onur Uyan (multiple CO)
Translators
* Mario Blättermann (de)
* Jorge González (es)
* Sander Pientka (nl)
* Daniel Nylander (sv)
==============
Version 2.29.3
==============
libgweather
* Phase-of-moon support, icons (Frank)
* Remove, check for obsolete tzdata identifiers (Phillipe Gauthier)
* Fix 'radar' spelling (Thomas Thurman)
Translators
* Denis ARNAUD (br)
* Gil Forcada (ca)
* Joe Hansen (da)
* Thomas Thurman (en@shaw)
* Andika Triwidada (id)
* Sveinn í Felli (is)
* Nils-Christoph Fiedler (nds)
* Leonid Kanter (ru)
==============
Version 2.28.0
==============
Misc
* Improve configure summary (Vincent)
* Use pygobject-codegen-2.0 instead of pygtk-codegen-2.0 (Vincent)
Translators
* Amitakhya Phukan (as)
* Joan Duran (ca)
* Kenneth Nielsen (da)
* Mario Blättermann (de)
* Bruce Cowan (en_GB)
* Sweta Kothari (gu)
* Rajesh Ranjan (hi)
* Gabor Kelemen (hu)
* Shankar Prasad (kn)
* Changwoo Ryu (ko)
* Gintautas Miliauskas (lt)
* Sangeeta Kumari (mai)
* Peter Ani (ml)
* Sandeep Shedmake (mr)
* Manoj Kumar Giri (or)
* A S Alam (pa)
* Lucian Adrian Grijincu (ro)
* Matej Urbančič (sl)
* Krishna Babu K (te)
* Aron Xu (zh_CN)
===============
Version 2.27.92
===============
libgweather
* Fix compiler warning (Vincent)
Python bindings
* Do not set executable bit for __init__.py (Emilio Pozuelo Monfort)
Misc
* Fix out-of-tree build (Emilio Pozuelo Monfort)
Translators
* Alexander Nyakhaychyk (be)
* Runa Bhattacharjee (bn_IN)
* Joan Duran (ca)
* Carles Ferrando Garcia (ca@valencia)
* Pavel Šefránek (cs)
* Iñaki Larrañaga Murgoitio (eu)
* Claude Paroz (fr)
* Milo Casagrande (it)
* Takayuki KUSANO (ja)
* Kjartan Maraas (nb)
* Tomasz Dominikowski (pl)
* Djavan Fagundes (pt_BR)
* Данило Шеган (sr)
* Danilo Šegan (sr@latin)
* Baris Cicek (tr)
===============
Version 2.27.91
===============
libgweather
* More work for the windows port (Fridrich Strba, Tor Lillqvist)
* Replace svn.gnome.org references by git.gnome.org (Claude Paroz)
* Add gweather_timezone_get_utc() to get the UTC timezone (Vincent)
* Add the UTC timezone in the timezone menu (Vincent)
* Make gweather_location_entry_set_city() return a boolean (Vincent)
* Add gweather_location_entry_has_custom_text() API (Vincent)
Misc
* Check for regex library (Fridrich Strba)
* Use silent-rules for quiet build (Vincent)
* Build fixes (Vincent)
Translators
* Khaled Hosny (ar)
* Alexander Shopov (bg)
* Petr Kovar (cs)
* Jorge González (es)
* Ivar Smolin (et)
* Iestyn Pryce (cy)
* Tommi Vainikainen (fi)
* Seán de Búrca (ga)
* Antón Méixome (gl)
* Yaron Shahrabani (he)
* Kjartan Maraas (nb)
* Duarte Loreto (pt)
* André Gondim (pt_BR)
* Daniel Nylander (sv)
* I. Felix (ta)
* Theppitak Karoonboonyanan (th)
* wanderlust (uk)
libgweather 2.26.1
==================
libgweather
* Don't crash if the user provided an invalid URL for the radar check
(Dan)
Translators
* Khaled Hosny (ar)
* Fotis Tsamis (el)
* Mattias Põldaru (et)
* Gabor Kelemen (hu)
* Shankar Prasad (kn)
* Tomasz Dominikowski (pl)
libgweather 2.26.0
==================
Locations.xml
* Remove a duplicate copy of Warsaw (Dan)
* Strip out the automated Canadian stations that (badly) duplicate
non-automated stations. This fixes Edmonton (Dan)
* Regenerate with only currently-reporting locations. This fixes Berlin
(Dan)
Translators
* Amitakhya Phukan (as)
* Alexander Shopov (bg)
* Runa Bhattacharjee (bn_IN)
* Joan Duran (ca)
* Pavel Šefránek (cs)
* Kenneth Nielsen (da)
* Hendrik Richter (de)
* Jennie Petoumenou (el)
* Philip Withnall (en_GB)
* Jorge González (es_ES)
* Jorge González (es)
* Iñaki Larrañaga Murgoitio (eu)
* Ilkka Tuohela (fi)
* Suso Baleato (gl)
* Ankit Patel (gu)
* Mark Krapivner (he)
* Rajesh Ranjan (hi)
* Takeshi AIHANA (ja)
* Shankar Prasad (kn)
* Erdal Ronahi (ku)
* Žygimantas Beručka (lt)
* Rajesh Ranjan (mai)
* Praveen Arimbrathodiyil (ml)
* Sandeep Shedmake (mr)
* Kjartan Maraas (nb)
* Wouter Bolsterlee (nl)
* Manoj Kumar Giri (or)
* Krishnababu K (te)
* Deniz Kocak (tr)
* Theppitak Karoonboonyanan (th)
libgweather 2.25.92
===================
libgweather
* Mark "Unknown" as translatable in the timezone menu (Vincent)
Translators
* Ihar Hrachyshka (be@latin)
* Yavor Doganov (bg)
* David Lodge (en_GB)
* Bruno Brouard (fr)
* Milo Casagrande (it)
* Takeshi AIHANA (ja)
* Shankar Prasad (kn)
* Praveen Arimbrathodiyil (ml)
* Wouter Bolsterlee (nl)
* Og Maciel (pt_BR)
* Duarte Loreto (pt)
* Adi Roiban (ro)
* Nickolay V. Shmyrev (ru)
* Daniel Nylander (sv)
* Tirumurthi Vasudevan (ta)
libgweather 2.25.91
===================
Locations.xml
* Use Asia/Kathmandu instead of Asia/Katmandu (Vincent)
Misc
* Make it easier to regenerate locations.pot (Claude Paroz)
Translators
* Alexander Shopov (bg)
* Runa Bhattacharjee (bn_IN)
* Gil Forcada (ca)
* Kenneth Nielsen (da)
* Christian Kirbach (de)
* Iñaki Larrañaga Murgoitio (eu)
* Yair Hershkovitz (he)
* Gabor Kelemen (hu)
* Milo Casagrande (it)
* Takeshi AIHANA (ja)
* Changwoo Ryu (ko)
* Raivis Dejus (lv)
* Subhransu Behera (or)
* Tomasz Dominikowski (pl)
* Enrico Nicoletto (pt_BR)
* Adi Roiban (ro)
* Theppitak Karoonboonyanan (th)
* Clytie Siddall (vi)
libgweather 2.25.5
==================
Translators
* Joan Duran (ca)
* Christian Kirbach (de)
* Ilkka Tuohela (fi)
* Gabor Kelemen (hu)
* Kjartan Maraas (nb)
* Daniel Nylander (sv)
libgweather 2.25.4
==================
libgweather
* Add gweather_xml_free_locations() API (Milan Crha)
* Fix leaks (Milan Crha)
Translators
* Jorge Gonzalez (es)
* Kjartan Maraas (nb)
libgweather 2.25.3
==================
libgweather
* Make libgweather work on Win32 (Tor Lillqvist, Vincent)
Misc
* Improve regeneration framework for po file for Locations.xml (Dan)
Translators
* Claude Paroz (fr)
* Yair Hershkovitz (he)
* Erdal Ronahi (ku)
* Fábio Nogueira (pt_BR)
libgweather 2.25.2
==================
libgweather
* Add new API to directly get WeatherInfo values instead of strings
(Milan Crha)
* Use the degree sign followed by "C" or "F" rather than using the
combined "degrees C" and "degrees F" glyphs (Dan)
* Handle wind reports in m/s (Dan)
* Use new libsoup 2.25.1 API for proxy instead of some custom code
(Dan)
* Use single includes for gtk/glib (Maxim Ermilov)
* Do not use deprecated libsoup API (Dan)
* Do not care about sub-city locations and only use the first child
(Dan)
* Handle compressed Locations.xml files (Vincent)
* Code cleanups (Vincent, Dan)
Locations.xml
* Do not localize sub-city locations since they won't be used in the UI
(Dan)
* Add "Bahamas" to the list of countries whose name we put "the" before
in comments (Dan)
* Add msgctxt attributes to the XML for duplicate names (Dan)
* When given a location name like "Covington / Cincinnati", only create
an entry for one of the two cities (Dan)
* Fix spelling of local vs international names (Dan)
* Do not assume a weather station is in the same country as a city.
This fixes Luxembourg not appearing in the list of countries (Dan)
Misc
* Make sure that the shipped COPYING file is GPLv2 (Dan)
* Add various flags like -DG_DISABLE_SINGLE_INCLUDES and
_DISABLE_DEPRECATED flags (Dan, Vincent)
* Remove locations_file from the pkg-config pc file (Dan, Vincent)
* Require intltool 0.40.3 (Dan)
* Add --enable-locations-compression configure flag to compress
Locations.xml files with gzip (Vincent)
* Add some (incomplete) API documentation with gtk-doc (Vincent, Dan)
Translators
* Jorge González (es_ES)
* Jorge González (es)
* Daniel Nylander (sv)
libgweather 2.24.2
==================
Translators
* Jiri Eischmann (cs)
* Ivar Smolin (et)
libgweather 2.24.1
==================
libgweather
* Make sure the returned strings are UTF-8 (Minoru Hashima, Dan)
* Code cleanups (Dan)
* Fix crash if a timezone in Locations.xml is not known (Dan)
* Use the proxy settings (Dan)
* Add weather_info_network_error() API to know the type of error
when getting the weather (Dan)
Locations.xml
* Mexican states of Chihuahua, Nayarit, Sinaloa, and Sonora are in
Mountain Time, not Central Time (Christopher Aillon)
Misc
* Distribute gweather.defs so python bindings are buildable (Emilio
Pozuelo Monfort)
* Add -lm to the build (Frederic Peters, Dan)
Translators
* Alaksandar Navicki (be@latin)
* Fábio Nogueira (pt_BR)
* Vasiliy Faronov (ru)
* Danishka Navin (si)
libgweather 2.24.0
==================
Translators
* Khaled Hosny (ar)
* Amitakhya Phukan (as)
* Runa Bhattacharjee (bn_IN)
* Joan Duran (ca)
* Petr Kovar (cs)
* Kenneth Nielsen (da)
* Christian Kirbach (de)
* Kostas Papadimas (el)
* Jorge González (es)
* Ivar Smolin (et)
* Ankit Patel (gu)
* Rajesh Ranjan (hi)
* Launchpad Translations Administrators (hr)
* Gabor Kelemen (hu)
* Luca Ferretti (it)
* Takeshi AIHANA (ja)
* Shankar Prasad (kn)
* Changwoo Ryu (ko)
* Rêzan Tovjîn (ku)
* Žygimantas Beručka (lt)
* Arangel Angov (mk)
* Hari Vishnu (ml)
* Sandeep Shedmake (mr)
* Kjartan Maraas (nb)
* Wouter Bolsterlee (nl)
* Fábio Nogueira (pt_BR)
* Nickolay V. Shmyrev (ru)
* Danishka Navin (si)
* Laurent Dhima (sq)
* Данило Шеган (sr)
* I. Felix (ta)
* Baris Cicek (tr)
* Chao-Hsiung Liao (zh_HK)
* Chao-Hsiung Liao (zh_TW)
libgweather 2.23.92
===================
libgweather
* Prepare code for python bindings (Dan)
Python bindings
* New in this release. The API is unstable. (Dan)
Misc
* Clean up GPL notices, copyrights and #includes (Dan)
* Make some files LGPL. The library is still GPL (Dan)
* Add --enable-python configure flag (Dan)
Translators
* Alexander Shopov (bg)
* Runa Bhattacharjee (bn_IN)
* David Lodge (en_GB)
* Priit Laes (et)
* Wouter Bolsterlee (nl)
* Tirumurthi Vasudevan (ta)
* Baris Cicek (tr)
libgweather 2.23.91
===================
libgweather
* Fix build with old gcc (Jens Granseuer)
* Parse decimal degrees rather than d/m/s (Dan)
Locations.xml
* Fix a regexp to not mangle the spacing around "/" in some cases (Dan)
* Fix various comments in Locations.xml (Dan)
* Drop a lot of cities that are not useful in this database (Dan)
* Make <coordinates> use decimal degrees rather than converting them to
degrees/minutes/seconds (Dan)
* Fix Bangkok, Thailand (Dan)
* Fix typo in MMGL so it appears again (Guadalajara, Mexico) (Dan)
Misc
* Make --with-zoneinfo-dir configure flag work (Matt Keenan)
* Build system fixes for Locations.xml (Dan)
* Add a gweather-uninstalled.pc.in file (Damien Carbery, Vincent)
Translators
* Djihed Afifi (ar)
* Runa Bhattacharjee (bn_IN)
* Andre Klapper (de)
* Jorge Gonzalez (es)
* Iñaki Larrañaga Murgoitio (eu)
* Ilkka Tuohela (fi)
* Claude Paroz (fr)
* Seán de Búrca (ga)
* Ignacio Casal Quinteiro (gl)
* Yair Hershkovitz (he)
* Shankar Prasad (kn)
* Arangel Angov (mk)
* Kjartan Maraas (nb)
* Tomasz Dominikowski (pl)
* Fábio Nogueira (pt_BR)
* Duarte Loreto (pt)
* Daniel Nylander (sv)
* Theppitak Karoonboonyanan (th)
* Nguyễn Thái Ngọc Duy (vi)
libgweather 2.23.6
==================
libgweather
* Fixes weather information not showing up in the clock applet
(Matthias Clasen)
* Add translator comment (Claude Paroz)
* Use a new Locations.xml.in parser (Dan)
* Add GWeatherTimezone type to represent a timezone (Dan)
* Add GWeatherLocation type to represent a location. It will eventually
replace WeatherLocation (Dan)
* Add new GWeatherLocationEntry widget to select a location (Dan)
* Add new GWeatherTimezoneMenu widget to select a timezone (Dan)
Locations.xml
* Completely reworked (Dan):
- the file can be easily regenerated with some scripts
- every <location> node is inside a <city> node with a real city name
- we should have better & more consistent data now
* Add information about timezones (Dan)
Translators
* Djihed Afifi (ar)
* Claude Paroz (fr)
* Ignacio Casal Quinteiro (gl)
* Yair Hershkovitz (he)
* Takeshi AIHANA (ja)
libgweather 2.23.5
==================
libgweather
* Code cleanups & choose one unique coding style (Dan)
* Use libsoup for http (Dan)
* Make the XML parsing more future-proof (Dan)
* Change cvs.gnome.org references to svn.gnome.org (Jan Tichavský)
Locations.xml
* Fix spelling of Ulaanbaatar, Mongolia (DULMANDAKH Sukhbaatar)
* Remove duplicate copy of Gadsden, Alabama, US and of other locations
(Sebastien Bacher, Dan)
* Fix BOM codes for Alice Springs and Darwin, Australia (Andrew Burton)
* Reorganize Brazil into <state>s, with proper timezone hints (Grazieno
Pellegrino)
* Fix South African locations to not be based on out-of-date airport
names (Adrian Frith)
* Add Łódź, Poland (Marcin Banasiak)
* Split "Serbia and Montenegro" into "Serbia" and "Montenegro" (Dan)
* Move various locations to the right country or continent (Dan)
* Mark some locations as translatable (Dan)
* Reorganize countries exactly according to ISO 3166 (Dan)
Misc
* Require libsoup and drop gnome-vfs dependency (we also explicitly
require gconf now) (Dan)
Translators
* Jorge González (es)
* Ivar Smolin (et)
* Ignacio Casal Quinteiro (gl)
* Yair Hershkovitz (he)
* Kjartan Maraas (nb)
* Wouter Bolsterlee (nl)
* Yannig Marchegay (Kokoyaya) (oc)
* Daniel Nylander (sv)
* Theppitak Karoonboonyanan (th)
libgweather 2.23.4
==================
libgweather
* Use the new URL for the Weather Phenomena Matrix (Gabor Kelemen)
Misc
* Require intltool 0.40.0 (Vincent)
Translators
* Khaled Hosny (ar)
* Claure Paroz (fr)
* Yair Hershkovitz (he)
* Gabor Kelemen (hu)
* Kjartan Maraas (nb)
* Funda Wang (zh_CN)
libgweather 2.23.3
==================
Locations.xml
* Fix Louisiana spelling (Dan Winship)
Translators
* Khaled Hosny (ar)
* Yavor Doganov (bg)
* Hendrik Richter (de)
* Jorge Gonzalez (es)
* Ignacio Casal Quinteiro (gl)
* Wouter Bolsterlee (nl)
* Clytie Siddall (vi)
libgweather 2.23.2
==================
Locations.xml
* Added the East-Flanders region of Belgium (Tibault Damman, Callum
McKenzie)
* Complete the entries for New Zealand (Callum McKenzie)
Translators
* Adam Weinberger (en_CA)
* Jorge Gonzalez (es)
* Ignacio Casal Quinteiro (gl)
* Gabor Kelemen (hu)
* Wouter Bolsterlee (nl)
* Kjartan Maraas (nb)
libgweather 2.23.1
==================
libgweather
* Parse the localized Locations.xml if available (Vincent)
* When parsing Locations.xml, merge a city with its location when
there's only one location (Vincent)
* Do not keep region/country/state/city without locations (Vincent)
Locations.xml
* Updated Russian tz-hints (Nickolay V. Shmyrev)
* Add correct tz-hint for Valparaiso, IN (Shaun McCance)
* Fix many tz-hints (Dan Winship)
* Add script to check the tz-hints are valid (Dan Winship, Vincent)
* Add some documentation about the format of the file (Dan Winship)
* Create per-locale XML files if asked so to improve performance
(Vincent)
* Divide Mexico locations into states (Federico Mena Quintero)
* Update data for Santiago (Jaap A. Haitsma)
* Fix coordinates for Nefta (Jaap A. Haitsma)
Misc
* Add new --enable-all-translations-in-one-xml configure flag to keep
the old behavior of building one XML file with all translations
instead of creating per-locale XML files (Vincent)
* List the right libraries requirements in gweather.pc (Vincent)
* Fix build when LINGUAS is set (Vincent)
* Fix build with -jX (Vincent)
Translators
* Bastien Nocera (en_GB)
* Jorge Gonzalez (es)
* Vincent Untz (fr)
* Yair Hershkovitz (he)
* Kjartan Maraas (nb)
* Wouter Bolsterlee (nl)
* Daniel Nylander (sv)
libgweather 2.22.1.1
====================
Misc
* Change the soname of the library :-) (Vincent)
libgweather 2.22.1
==================
The API/ABI has been broken in this release.
libgweather
* Add API to parse Locations.xml, based on the code from
gnome-applets/gnome-panel (Dan Winship)
* Parse country codes and timezone hints [breaks API/ABI] (Dan Winship)
Locations.xml
* Add country codes and timezone hints to Locations.xml (Dan Winship)
* Make the file valid (Vincent)
* Add make check rule (Dan Winship)
Misc
* Distribute Locations.xml.in and relevant translations (Loïc Minier,
Sebastian Dröge)
Translators
* Simos Xenitellis (el)
* Ivar Smolin (et)
* Eskild Hustvedt (nn)
libgweather 2.22.0
==================
Translators
* Alexander Nyakhaychyk (be)
* Runa Bhattacharjee (bn_IN)
* Kenneth Nielsen (da)
* David Lodge (en_GB)
* Claude Paroz (fr)
* Gabor Kelemen (hu)
* Luca Ferretti (it)
* Sandeep Shedmake (mr)
* Yannig Marchegay (Kokoyaya) (oc)
* Vasiliy Faronov (ru)
* I. Felix (ta)
* Baris Cicek (tr)
* Maxim V. Dziumanenko (uk)
libgweather 2.21.92
==================
Translators
* Khaled Hosny (ar)
* Amitakhya Phukan (as)
* Alaksandar Navicki (be@latin)
* Xavier Conde Rueda (ca)
* Petr Kovar (cs)
* Andre Klapper (de)
* Ilkka Tuohela (fi)
* Seán de Búrca (ga)
* Ignacio Casal Quinteiro (gl)
* Yair Hershkovitz (he)
* Takeshi AIHANA (ja)
* Shankar Prasad (kn)
* Changwoo Ryu (ko)
* Žygimantas Beručka (lt)
* Arangel Angov (mk)
* Wouter Bolsterlee (nl)
* Tomasz Dominikowski (pl)
* Jonh Wendell (pt_BR)
* Duarte Loreto (pt)
* Danishka Navin (si)
* Matej Urbančič (sl)
* Daniel Nylander (sv)
* Theppitak Karoonboonyanan (th)
* Yang Zhang (zh_CN)
* Woodman Tuen (zh_HK)
* Woodman Tuen (zh_TW)
libgweather 2.21.1
==================
This is the first release of libgweather as a standalone
library. libgweather provides access to weather information from the
net and is used by programs such as the weather report applet.
The library was previously part of the gnome-applets package and this
release corresponds with the 2.21.3 release of gnome-applets. Since
the last release of gnome-applets, the following changes have been
made to libgweather:
- Locations.xml has been moved from gweather to libgweather and a
pkg-config variable has been added to let applications find it.
- Units are now marked for translation.
- New functions to parse temperatures and wind speeds.
- Locations.xml fixes.
|