-
Notifications
You must be signed in to change notification settings - Fork 0
/
NEWS
1421 lines (1113 loc) · 31.6 KB
/
NEWS
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
===============
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)
* [email protected] (Abuja, NG)
* Vassily Gavrilyak (Tbilisi, GE)
* Federico Mena Quintero (Krasnoyarsk, RU)
* [email protected] (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