-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathChangeLog
991 lines (628 loc) · 29.6 KB
/
ChangeLog
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
2009-04-03 13:11 +0000 [r331] ga:
* trunk/po/eu.po: 2 small format fixes
2009-04-03 11:10 +0000 [r330] ga:
* trunk/src/preferences.h, trunk/src/main.h, trunk/src/callbacks.c,
trunk/src/preferences.c, trunk/gnome-inm-glade.glade,
trunk/src/callbacks.h, trunk/src/main.c: License copyright year
range updated. Added translations credits to the about dialog.
2009-04-03 08:40 +0000 [r329] ga:
* trunk/po/eu.po: Basque translation updated by Ander Elortondo.
Mila esker!
2009-04-02 12:04 +0000 [r328] ga:
* trunk/debian/control: Added the new features
2009-04-01 23:23 +0000 [r327] ga:
* trunk/debian/control: Going back to Standards-Version: 3.8.1,
since it is the default one on Debian.
2009-04-01 16:05 +0000 [r326] ga:
* trunk/debian/control: Downgrade the Standards-Version, since the
current one is 3.8.0
2009-04-01 07:07 +0000 [r325] ga:
* trunk/debian/copyright: Point to the right copyright version file
instead of the default one.
2009-04-01 07:02 +0000 [r324] ga:
* trunk/debian/rules: Remove temporal Makefile which prevented to
rebuild cleanly the deb packages
2009-03-31 15:51 +0000 [r323] ga:
* trunk/src/main.c: It seems that I did not merge the fix for this
bug http://bugs.debian.org/513109. Thanks to Eduardo Pérez Ureta
for report it.
2009-03-31 12:44 +0000 [r322] ga:
* trunk/AUTHORS: Format updated
2009-03-31 12:34 +0000 [r321] ga:
* trunk/THANKS (added): Time to recognized the contributed work.
2009-03-31 07:15 +0000 [r320] ga:
* trunk/debian/control, trunk/debian/copyright: debian/control and
debian/copyright updated
2009-03-30 22:59 +0000 [r319] ga:
* trunk/configure: New package version
2009-03-30 22:56 +0000 [r318] ga:
* trunk/configure.in: New package version
2009-03-30 22:49 +0000 [r317] ga:
* trunk/debian/watch: watch file improved
2009-03-30 22:37 +0000 [r316] ga:
* trunk/po/es.po: Spanish translation updated with latest strings
2009-03-30 16:16 +0000 [r315] ga:
* trunk/src/main.c: Initialize the GNOME VFS subsystem. This caused
to not load the weather forecast information. Thanks to Benoit
Buratti for report it (https://bugs.launchpad.net/bugs/351398)
2009-02-11 23:47 +0000 [r314] ga:
* trunk/po/ca.po (added), trunk/po/LINGUAS: We lost the catalonian
translation by mistake. We add it again.
2009-02-11 22:28 +0000 [r312-313] ga:
* trunk/po/es.po: Spanish translation updated
* trunk/src/main.c: Fixed typo on the preferences dialog (altitude)
2009-02-11 22:15 +0000 [r311] ga:
* trunk/GNOME_INM_menu.xml: Fixed a typo in the lightinings menu
name
2009-02-11 07:50 +0000 [r310] ga:
* trunk/src/main.c: Hide the morning forecast of the current day at
the afternoon, since it's removed by the AEMET as well.
2009-01-28 23:57 +0000 [r307] ga:
* trunk/src/main.h, trunk/src/main.c: Define a constant of the
maximum days we display on the panel
2009-01-28 23:52 +0000 [r306] ga:
* trunk/src/main.h, trunk/src/main.c: Preeliminary version of the
save_forecast_report() function
2009-01-28 20:17 +0000 [r305] ga:
* trunk/src/main.c: Only tokenize the buffer if it is valid
2009-01-28 07:44 +0000 [r304] ga:
* trunk/src/main.c: Every afternoon AEMET deletes the morning
forecast, so we hide it. But the next day morning we were not
showing it again, so now we do.
2009-01-28 07:41 +0000 [r303] ga:
* trunk/src/main.c: Decrease the allocated number of bytes for the
theme path
2009-01-28 00:19 +0000 [r302] ga:
* trunk/src/callbacks.c: Do not call directly
gtk_combo_box_get_active_text(), since ir returns a new string
which must be freed
2009-01-28 00:02 +0000 [r301] ga:
* trunk/src/callbacks.c: Freed allocated memory blocks at exit
2009-01-27 20:55 +0000 [r300] ga:
* trunk/src/main.c: Free the forecast report xml object
2009-01-26 23:17 +0000 [r299] ga:
* trunk/src/preferences.c: Removed unneeded variables. Free
allocated objects at close. Comment not used code
2009-01-26 23:03 +0000 [r298] ga:
* trunk/src/callbacks.c: Free recursively allocated data at exit
2009-01-26 22:50 +0000 [r297] ga:
* trunk/src/callbacks.c: Free allocated data at exit
2009-01-26 21:50 +0000 [r296] ga:
* trunk/src/main.c: Use g_free() instead of free(), since if we
pass a null var to free() will crash, but g_free() don't
2009-01-25 23:52 +0000 [r295] ga:
* trunk/src/main.h, trunk/GNOME_INM_menu.xml, trunk/src/main.c:
Added marine forecasts
2009-01-25 20:39 +0000 [r294] ga:
* trunk/src/main.h, trunk/src/callbacks.c,
trunk/GNOME_INM_menu.xml, trunk/src/callbacks.h,
trunk/src/main.c: Added lightining images
2009-01-25 20:26 +0000 [r293] ga:
* trunk/src/main.h, trunk/src/callbacks.c,
trunk/GNOME_INM_menu.xml, trunk/src/callbacks.h,
trunk/src/main.c: Added satellite radar images
2009-01-25 19:39 +0000 [r292] ga:
* trunk/src/main.h, trunk/src/callbacks.c,
trunk/gnome-inm-glade.glade, trunk/src/callbacks.h,
trunk/src/main.c: Added all the satellite radar images. Clean up
the functions which displays them
2009-01-25 19:08 +0000 [r291] ga:
* trunk/src/main.h, trunk/src/callbacks.c,
trunk/GNOME_INM_menu.xml, trunk/gnome-inm-glade.glade,
trunk/src/callbacks.h, trunk/src/main.c: Added air mass radars
2009-01-25 17:22 +0000 [r290] ga:
* trunk/src/main.h, trunk/GNOME_INM_menu.xml, trunk/src/main.c:
Added the mountain weather forecast
2009-01-25 03:10 +0000 [r289] ga:
* trunk/src/main.c: Display the meteorological station altitude
2009-01-24 14:20 +0000 [r288] ga:
* trunk/src/main.c: Free the var returned by the
panel_applet_gconf_* function
2009-01-24 14:03 +0000 [r287] ga:
* trunk/src/main.h, trunk/src/main.c: Get the theme to use only
once, instead of call to panel_applet_gconf_get_string() for
every location update
2009-01-23 21:27 +0000 [r285-286] ga:
* trunk/src/preferences.c: Fixed an Invalid write of size 1,
detected with valgrind.
* trunk/src/main.c: A wrong comparison what causing to write out of
bounds in the array of days. Detected by Eduardo Pérez Ureta.
Thank you!
2008-11-12 23:07 +0000 [r284] ga:
* trunk/src/main.c: Ensure that the variables are set up to 0x0
after free() them
2008-11-12 22:57 +0000 [r283] ga:
* trunk/src/main.c: Fixed a double free() getting the snowfalls
data
2008-09-29 18:18 +0000 [r282] ga:
* trunk/gnome-inm-glade.glade: Fixed an issue updating the "days to
show" option on the preferences window, which caused to show only
1 day on the panel in Ubuntu Intrepid. This fix solves the
problem, but in any case the old version works aswell. Thanks to
Benoit Buratti for report it.
2008-07-22 20:05 +0000 [r281] ga:
* trunk/po/LINGUAS, trunk/po/eu.po (added): Basque translation
added by Ander Elortondo
2008-07-22 20:01 +0000 [r280] ga:
* trunk/po/es.po: Spanish translation updated
2008-07-14 08:41 +0000 [r279] ga:
* trunk/src/main.c: New patch by Luciano Campal
([email protected]): When the applet was loaded for the
first time after init the session,the number of images to be
shown on the panel saved as preferences were not used. So now
they are.
2008-07-08 18:30 +0000 [r278] ga:
* trunk/GNOME_INM_menu.xml, trunk/gnome-inm-glade.glade: Added the
rainfall probability maps
2008-07-08 09:44 +0000 [r277] ga:
* trunk/src/main.h, trunk/src/callbacks.c, trunk/src/callbacks.h,
trunk/src/main.c: Added the rainfall probability maps.
2008-07-07 14:48 +0000 [r276] ga:
* trunk/gnome-inm-forecast.spec, trunk/gnome-inm-forecast.spec.in:
Execute the bootstrap script when building RPM packages
2008-07-05 13:12 +0000 [r275] ga:
* trunk/src/main.c: Prevent the prefs window to be shown twice.
fress xml aboutdialog object. Use g_signal_connect_swapped()
function when there's only one widget to connect and destroy.
2008-07-05 12:41 +0000 [r274] ga:
* trunk/src/preferences.c: Ensure that the window object is null,
so we can prevent in this way showing the prefs dialog twice.
Initialize some objects to null.
2008-06-24 13:06 +0000 [r273] ga:
* trunk/src/main.c: Free the xml object after loading the GTK+
widgets
2008-06-24 11:05 +0000 [r272] ga:
* trunk/src/callbacks.c: Fixed a mem leak. The image data was not
freed when the window was closed.
2008-06-16 21:12 +0000 [r264] ga:
* trunk/debian/control: Indent correctly the list of features
2008-06-16 20:32 +0000 [r263] ga:
* trunk/debian/rules: add dh_installdocs to debian/rules
2008-06-16 18:01 +0000 [r262] ga:
* trunk/xmalloc.c (removed), trunk/debian/control, trunk/xmalloc.h
(removed), trunk/ChangeLog, trunk/debian/watch, trunk/debian/docs
(removed), trunk/system.h (removed), trunk/debian/rules: debian/*
files cleaned up
2008-06-16 11:39 +0000 [r261] ga:
* trunk/debian/postinst (removed), trunk/debian/postrm (removed):
Remove non needed files (postinst, postrm)
2008-06-13 12:12 +0000 [r260] ga:
* trunk/src/main.c: Remove deprecated timeout functions
gtk_timeout* and used the new ones g_timeout*
2008-06-13 12:08 +0000 [r259] ga:
* trunk/src/main.c: Fix for not display the last image in the
afternoon
2008-06-11 14:24 +0000 [r258] ga:
* trunk/src/main.c: Fixed a problem displaying the pop up with the
information of the day, where the pop ups of all the days had the
same information.
2008-06-05 11:29 +0000 [r256-257] ga:
* trunk/gnome_inm-opt.h (removed), trunk/gnome_inm-opt.c (removed),
trunk/gnome_inm.c (removed): Remove automatic generated files
from autotools which are no needed anymore
* trunk/src/preferences.h, trunk/src/main.h, trunk/src/callbacks.h:
Package name updated on the headers copyright text
2008-06-04 23:04 +0000 [r247-248] ga:
* trunk/README, trunk/gnome-inm-forecast.1: Update the README file
with the right package name. Completed a bit better the man page
* trunk/debian/watch (added): debian/watch file added for control
new upstream versions
2008-06-02 08:30 +0000 [r246] ga:
* trunk/src/callbacks.c, trunk/src/preferences.c, trunk/src/main.c:
Update the package name of the copyright license in each source
file
2008-06-01 19:49 +0000 [r245] ga:
* trunk/debian/rules: Execute the ./bootstrap script before
./configure
2008-05-30 23:34 +0000 [r244] ga:
* trunk/debian/copyright: debian/copyright file updated with the
correct package name
2008-05-30 23:30 +0000 [r243] ga:
* trunk/debian/rules: Fix a lintian warning in debian/rules
regarding the distclean problem
2008-05-30 17:14 +0000 [r242] ga:
* trunk/configure, trunk/gnome-inm-forecast.spec,
trunk/configure.in, trunk/ChangeLog,
trunk/gnome-inm-forecast.spec.in, trunk/debian/changelog: New
version released: 0.6.1
2008-05-30 17:02 +0000 [r241] ga:
* trunk/debian/control: Changed the Section from X11 to gnome
2008-05-30 16:57 +0000 [r239-240] ga:
* trunk/gnome-inm-forecast.spec, trunk/gnome-inm-forecast.spec.in:
Do not distribute meteorological stations list since it is not
used anymore
* trunk/debian/control: libgnomevfs2-extra is a mandatory
dependency in order to do aync http connections.
2008-05-30 08:28 +0000 [r238] ga:
* trunk/debian/gnome-inm-forecast.install, trunk/Makefile.am: Do
not distribute the meteorological stations list anymore, since it
is not used
2008-05-30 08:17 +0000 [r237] ga:
* trunk/debian/control: Convert debian/control to UTF-8
2008-05-29 22:04 +0000 [r236] ga:
* trunk/configure, trunk/gnome-inm-forecast.spec,
trunk/configure.in, trunk/ChangeLog,
trunk/gnome-inm-forecast.spec.in, trunk/debian/changelog: New
revision released: 0.6.0.5
2008-05-29 21:33 +0000 [r235] ga:
* trunk/pixmaps/gnome-inm-forecast.png: Removed executable
properties on the applet logo.
2008-05-29 21:20 +0000 [r234] ga:
* trunk/debian/control, trunk/debian/copyright: Fix debian package
files warnings
2008-05-29 20:46 +0000 [r233] ga:
* trunk/pixmaps/gnome-inm-forecast.png: Removed execution
permissions on the program logo.
2008-05-21 14:32 +0000 [r232] ga:
* trunk/gnome-inm-glade.glade: It seems to be there a funny bug in
glade3, because I have removed a gtk_image from a dialog, and it
has renamed to buttons of another window. Renaming them again to
the original name.
2008-05-21 11:08 +0000 [r231] ga:
* trunk/debian/control: debian/control file updated with new
descriptions and fields
2008-05-21 10:49 +0000 [r229-230] ga:
* trunk/src/gconf_callbacks.c (removed),
trunk/src/gconf_callbacks.h (removed): Remove
gconf_callbacks.[ch] files which are no longer used
* trunk/src/Makefile.am, trunk/src/Makefile.in, trunk/src/main.c:
Remove gconf_callbacks.[ch] files which are no longer used
2008-05-21 10:30 +0000 [r228] ga:
* trunk/gnome-inm-glade.glade, trunk/src/main.c: Remove non needed
image gtk object in the temperatures window
2008-05-20 07:30 +0000 [r227] ga:
* trunk/GNOME_inm-forecast.server_rpm,
trunk/GNOME_inm-forecast.server: applet information file updated
with the new agency name
2008-05-20 06:42 +0000 [r226] ga:
* trunk/po/es.po: Spanish translation updated
2008-05-19 21:36 +0000 [r225] ga:
* trunk/debian/gnome-inm-forecast.doc-base.EX (removed): Delete non
needed files under debian/ directory
2008-05-19 21:31 +0000 [r224] ga:
* trunk/src/main.c: Snowfalls reports and weather reports improved
2008-05-19 14:49 +0000 [r223] ga:
* trunk/debian/cron.d.ex (removed), trunk/debian/postinst.ex
(removed), trunk/debian/menu.ex (removed), trunk/debian/postrm.ex
(removed), trunk/debian/preinst.ex (removed),
trunk/debian/init.d.ex (removed), trunk/debian/prerm.ex
(removed), trunk/debian/emacsen-remove.ex (removed),
trunk/debian/watch.ex (removed), trunk/debian/manpage.1.ex
(removed), trunk/debian/manpage.xml.ex (removed),
trunk/debian/manpage.sgml.ex (removed),
trunk/debian/emacsen-startup.ex (removed),
trunk/debian/gnome-inm-forecast-default.ex (removed),
trunk/debian/emacsen-install.ex (removed): Remove unneeded files
under debian/ directory
2008-05-19 14:21 +0000 [r222] ga:
* trunk/debian/README.Debian (removed): Remove README.Debian
default file. Remove execution permissions to the logo image
2008-05-15 11:59 +0000 [r221] ga:
* trunk/src/main.c: Replace \t by a simple space in the forecast
weather reports.
2008-05-14 10:50 +0000 [r220] ga:
* trunk/configure, trunk/gnome-inm-forecast.spec,
trunk/configure.in, trunk/ChangeLog,
trunk/gnome-inm-forecast.spec.in, trunk/debian/changelog: New
revision released: 0.6.0.4
2008-05-13 18:33 +0000 [r219] ga:
* trunk/src/main.c: Discard garbage showing the weather reports
2008-05-13 15:56 +0000 [r218] ga:
* trunk/src/main.c: Fixed the weather reports.
2008-04-23 10:42 +0000 [r217] ga:
* trunk/GNOME_inm-forecast.server_rpm,
trunk/GNOME_inm-forecast.server, trunk/debian/control,
trunk/po/es.po, trunk/gnome-inm-glade.glade, trunk/src/main.c:
Change the string Gnome by GNOME, which is the right name for the
GNOME project
2008-04-09 14:46 +0000 [r216] ga:
* trunk/src/main.c: main timer remove function deleted by error
2008-03-18 08:42 +0000 [r215] ga:
* trunk/configure, trunk/gnome-inm-forecast.spec,
trunk/configure.in, trunk/ChangeLog,
trunk/gnome-inm-forecast.spec.in, trunk/debian/changelog: New
revision released: 0.6.0.3
2008-03-18 07:39 +0000 [r214] ga:
* trunk/src/main.c: Mem leak cheecking if the last image as null or
not fixed
2008-03-17 23:26 +0000 [r212-213] ga:
* trunk/configure, trunk/gnome-inm-forecast.spec,
trunk/configure.in, trunk/ChangeLog,
trunk/gnome-inm-forecast.spec.in, trunk/debian/changelog: New
revision released: 0.6.0.2
* trunk/INSTALL: Added an small note about where to find DEB and
RPM packages
2008-03-17 23:21 +0000 [r211] ga:
* trunk/po/es.po: spanish translation updated
2008-03-17 23:09 +0000 [r210] ga:
* trunk/src/main.c: Do not display the monday morning information
in the tooltips if it's afternoon
2008-03-17 22:52 +0000 [r209] ga:
* trunk/src/main.c: Do not display the monday morning information
if it's in the afternoon
2008-03-16 23:00 +0000 [r205-208] ga:
* trunk/po/es.po: Spanish translation updated
* trunk/GNOME_INM_menu.xml: Add new entry for catalonian snowfall
reports
* trunk/gnome-inm-glade.glade: Expand a little more the width of
the forecast window
* trunk/src/main.h, trunk/src/main.c: Snowfall reports fixed
2008-03-14 13:43 +0000 [r204] ga:
* trunk/src/main.c: Do not display de last item on the panel if
it's afternoon
2008-03-13 17:42 +0000 [r203] ga:
* trunk/src/main.c: Update correctly the snow information
2008-03-13 16:00 +0000 [r202] ga:
* trunk/po/es.po, trunk/ChangeLog, trunk/GNOME_INM_menu.xml: Change
on the menu INM by AEMET and update the spanish translation
2008-03-13 15:50 +0000 [r201] ga:
* trunk/src/main.c: Fixed a terrible memory leak getting the
last_update information, plus minor fixes
2008-03-12 23:27 +0000 [r200] ga:
* trunk/README, trunk/GNOME_inm-forecast.server_rpm,
trunk/debian/README.Debian, trunk/GNOME_inm-forecast.server,
trunk/configure, trunk/debian/gnome-inm-forecast.install,
trunk/po/es.po, trunk/debian/dirs, trunk/gnome-inm-forecast.spec,
trunk/gnome-inm-forecast.lsm, trunk/configure.in,
trunk/gnome-inm-forecast.spec.in, trunk/debian/changelog,
trunk/gnome-inm-forecast.1, trunk/gnome-inm-glade.glade: Applet
updated to the new www.aemet.es website.
2008-03-12 23:17 +0000 [r199] ga:
* trunk/src/main.c: Change "inm" by "aemet" Handle better the per
day information Clean the code
2008-03-12 07:36 +0000 [r197] ga:
* trunk/gnome-inm-glade.glade: Disable the meterological stations
settings for now
2008-03-12 00:53 +0000 [r196] ga:
* trunk/gnome-inm-glade.glade: Do not hide windows from the window
manager
2008-03-12 00:48 +0000 [r194-195] ga:
* trunk/pixmaps/aemet/11.png (added), trunk/pixmaps/aemet/12.png
(added), trunk/pixmaps/aemet/13.png (added),
trunk/pixmaps/aemet/14.png (added), trunk/pixmaps/aemet/23.png
(added), trunk/pixmaps/aemet/15.png (added),
trunk/pixmaps/aemet/24.png (added), trunk/pixmaps/aemet/33.png
(added), trunk/pixmaps/aemet/16.png (added),
trunk/pixmaps/aemet/25.png (added), trunk/pixmaps/aemet/34.png
(added), trunk/pixmaps/aemet/26.png (added),
trunk/pixmaps/aemet/35.png (added), trunk/pixmaps/aemet/36.png
(added), trunk/pixmaps/aemet (added): The new images of the
INM/Aemet website added as a new theme called "aemet"
* trunk/src/main.h, trunk/src/preferences.c, trunk/src/main.c:
gforecast adapted to the new INM/Aemet website. Some features has
been removed :(, but I'll add more soon :) First commit of this
revision. Will be there more for sure
2007-12-12 10:51 +0000 [r192-193] ga:
* trunk/ChangeLog: ChangeLog updated to 0.5.2 release
* trunk/configure, trunk/gnome-inm-forecast.spec,
trunk/configure.in, trunk/debian/changelog: 0.5.2 revision
released
2007-12-12 10:09 +0000 [r191] ga:
* trunk/src/preferences.c: Ensure that the interval update time is
60 if the gconf value is less than 0 or greater than 60
2007-12-12 09:54 +0000 [r190] ga:
* trunk/src/preferences.c: Load only as themes the directories
inside /usr/share/PROGRAM/pixmaps/
2007-12-11 23:40 +0000 [r189] ga:
* trunk/src/preferences.c, trunk/GNOME_INM_menu.xml: *
preferences.c - By default use minutes for interval update, and
60 mins * GNOME_IN_menu.xml - Fix a typo
2007-12-11 16:15 +0000 [r187-188] ga:
* trunk/ChangeLog: ChangeLog updated to 0.5.1 release
* trunk/configure, trunk/gnome-inm-forecast.spec,
trunk/configure.in, trunk/debian/changelog: 0.5.1 revision
released
2007-12-11 15:48 +0000 [r186] ga:
* trunk/configure, trunk/debian/control, trunk/configure.in:
Require gtk 2.8 and libglib 2.6 as minimum
2007-12-11 15:33 +0000 [r185] ga:
* trunk/src/main.c: Do not depend on g_regex* functions since they
are only available on libglib2.0 >= 2.14
2007-12-11 10:07 +0000 [r184] ga:
* trunk/debian/control: Fixed build dependencies
2007-12-07 09:30 +0000 [r183] ga:
* trunk/ChangeLog: 0.5.0v
2007-12-07 09:27 +0000 [r182] ga:
* trunk/gnome-inm-forecast.spec, trunk/configure.in,
trunk/gnome-inm-forecast.spec.in, trunk/debian/changelog: 0.5.0
version released.
2007-12-07 08:00 +0000 [r181] ga:
* trunk/debian/gnome-inm-forecast.install,
trunk/gnome-inm-forecast.spec, trunk/gnome-inm-forecast.spec.in,
trunk/pixmaps/espcan.jpg (added): Added the background spanish
image for max&min temperatures
2007-12-07 07:49 +0000 [r180] ga:
* trunk/stations_list_es.txt: Remove an space at the end of each
line in order to tidy up the cities correctly
2007-12-07 07:43 +0000 [r179] ga:
* trunk/po/es.po: spanish translation updated
2007-12-07 07:00 +0000 [r178] ga:
* trunk/src/main.c: Fix snow forecast reports removing html tags.
It could fail if the text is non-valid utf-8
2007-11-29 21:57 +0000 [r177] ga:
* trunk/po/es.po, trunk/gnome-inm-glade.glade, trunk/src/main.c:
More gettextized strings
2007-11-29 12:12 +0000 [r176] ga:
* trunk/gnome_inm.schemas: Use minutes as interval update data. And
update the data each hour by default
2007-11-29 11:59 +0000 [r175] ga:
* trunk/src/main.c: Make enough space for display the translations
of the met. stations fields
2007-11-29 09:46 +0000 [r174] ga:
* trunk/src/main.c: Display the station data on the panel at
startup if it is defined in the gconf. Fix a memleak getting the
station data and general sanity checks
2007-11-28 18:55 +0000 [r172-173] ga:
* trunk/src/preferences.c: Update the met. station data double
clicking on an entry. General sanity checks
* trunk/src/main.h, trunk/gnome-inm-glade.glade, trunk/src/main.c:
2 memleaks fixed. New function for update only the met. stations
data. Use minutes instead of seconds for update the information
2007-11-27 23:30 +0000 [r171] ga:
* trunk/src/main.c: Do not display (by now) any popup clicking on
the met. station hbox
2007-11-27 23:03 +0000 [r170] ga:
* trunk/src/main.c: Update the met. station data hitting the update
button
2007-11-27 17:45 +0000 [r168-169] ga:
* trunk/src/main.h: Added the needed timer variable for met.
stations
* trunk/src/preferences.h, trunk/src/preferences.c: Reorganize a
bit the code
2007-11-27 17:24 +0000 [r167] ga:
* trunk/src/main.c: Fixed the last commit. Display a message on the
tooltip when the connection to the www.inm.es is broken
2007-11-27 17:13 +0000 [r166] ga:
* trunk/src/main.c: Display a message when there is no data
available for a particular station
2007-11-27 16:44 +0000 [r164-165] ga:
* trunk/po/es.po: Spanish translation updated again with the latest
changes
* trunk/src/main.c: Added more fields to the met. stations tooltip.
More strings gettextized
2007-11-27 15:47 +0000 [r163] ga:
* trunk/src/main.c: Makes the hbox not homogeneous in order to
avoid stranges behaviours adding the met. stations. Gettextize 2
strings aswell
2007-11-27 15:12 +0000 [r162] ga:
* trunk/po/es.po: spanish translation updated with the latest
additions
2007-11-27 15:08 +0000 [r161] ga:
* trunk/gnome-inm-glade.glade: Do not use non-utf8 strings by
default. I forgot it
2007-11-27 13:16 +0000 [r160] ga:
* trunk/src/preferences.c: General sanity checks
2007-11-27 13:04 +0000 [r159] ga:
* trunk/debian/gnome-inm-forecast.install,
trunk/gnome-inm-forecast.spec, trunk/gnome-inm-forecast.spec.in,
trunk/Makefile.am: Add the stations list to the install files
2007-11-27 12:40 +0000 [r158] ga:
* trunk/stations_list_es.txt (added): Added the list of
meteorological stations
2007-11-27 12:30 +0000 [r157] ga:
* trunk/gnome-inm-glade.glade: Enable the number of days to show.
Do not allow to choose which met. station field
2007-11-27 12:25 +0000 [r156] ga:
* trunk/gnome_inm.schemas: Display by default 10 days (7 days) and
choose the Bilbao airport meteorological station
2007-11-27 11:53 +0000 [r155] ga:
* trunk/src/main.c: Added some meteorological stations fields to
the station tooltip
2007-11-27 11:47 +0000 [r154] ga:
* trunk/src/preferences.c, trunk/src/main.c: Added the option for
choose the number of weather forecast days to show on the panel
2007-11-26 23:48 +0000 [r153] ga:
* trunk/src/preferences.h, trunk/src/main.h,
trunk/src/preferences.c, trunk/gnome_inm.schemas,
trunk/gnome-inm-glade.glade, trunk/src/main.c: First
meteorological station implementation
2007-11-24 13:04 +0000 [r152] ga:
* trunk/src/main.c: Clean up the tooltips when the connection has
failed
2007-11-23 14:21 +0000 [r149-151] ga:
* trunk/bootstrap (added): Added an small script for prepare the
precompilation tasks
* trunk/INSTALL: Added some little explanations about how to start
compiling the applet
* trunk/configure, trunk/configure.in: Add the version and the
maintainer to the configure.in
2007-11-23 09:48 +0000 [r147-148] ga:
* trunk/src/main.h, trunk/src/main.c: Added links for warnings
weathers
* trunk/po/es.po, trunk/GNOME_INM_menu.xml: Tidy up the popup menu
into submenus. Spanish translation updated
2007-11-21 22:57 +0000 [r146] ga:
* trunk/src/main.h, trunk/po/es.po, trunk/src/callbacks.c,
trunk/GNOME_INM_menu.xml, trunk/gnome-inm-glade.glade,
trunk/src/callbacks.h, trunk/src/main.c: Added the next days (min
and max) temperature map
2007-11-14 11:54 +0000 [r145] ga:
* trunk/gnome-inm-forecast.spec, trunk/ChangeLog,
trunk/gnome-inm-forecast.spec.in, trunk/debian/changelog: 0.1.1-4
version released
2007-11-14 10:59 +0000 [r144] ga:
* trunk/src/main.c: Several sanity checks fixes a crash getting the
snow data
2007-10-17 21:19 +0000 [r143] ga:
* trunk/gnome-inm-glade.glade: Deactivate 3 preferences options
until they are implemented
2007-10-16 20:24 +0000 [r142] ga:
* trunk/src/main.c: Hitting the about dialog close button closes
the about dialog as it is supposed to work. Closes (#4)
2007-10-11 10:33 +0000 [r141] ga:
* trunk/gnome_inm-opt.h (added), intltool-merge (removed), updater
(removed), intltool-merge.in (removed), trunk/updater (added),
trunk/intltool-merge.in (added), Makefile.am (removed), missing
(removed), system.h (removed), trunk/Makefile.am (added),
intltool-extract (removed), trunk/missing (added), xmalloc.c
(removed), trunk/install-sh (added), Makefile.in (removed),
trunk/xmalloc.c (added), xmalloc.h (removed), trunk/Makefile.in
(added), trunk/xmalloc.h (added), intltool-update.in (removed),
stamp-h1 (removed), trunk/intltool-merge (added),
gnome_inm-opt.def (removed), manpage.tpl (removed), INSTALL
(removed), trunk/gnome_inm-opt.def (added), trunk/manpage.tpl
(added), trunk/INSTALL (added), trunk/system.h (added),
install-sh (removed), trunk/intltool-extract (added),
mkinstalldirs (removed), intltool-extract.in (removed),
trunk/mkinstalldirs (added), trunk/intltool-extract.in (added),
intltool-update (removed), local_codes.txt (removed),
trunk/intltool-update (added), trunk/local_codes.txt (added),
gnome_inm-opt.c (removed), trunk/intltool-update.in (added),
trunk/gnome_inm-opt.c (added), trunk/stamp-h1 (added),
gnome_inm-opt.h (removed): Moving files to trunk/
2007-10-11 10:24 +0000 [r110-140] ga:
* trunk/gpl.texinfo (added), gpl.texinfo (removed): Moving files to
trunk/
* gnome_inm.schemas (removed), trunk/gnome_inm.schemas (added):
Moving files to trunk/
* GNOME_INM_menu.xml (removed), trunk/GNOME_INM_menu.xml (added):
Moving files to trunk/
* gnome-inm-glade.glade (removed), trunk/gnome-inm-glade.glade
(added): Moving files to trunk/
* trunk/GNOME_inm-forecast.server_rpm (added),
GNOME_inm-forecast.server_rpm (removed): Moving files to trunk/
* GNOME_inm-forecast.server (removed),
trunk/GNOME_inm-forecast.server (added): Moving files to trunk/
* gnome-inm-forecast.spec.in (removed),
trunk/gnome-inm-forecast.spec.in (added): Moving files to trunk/
* gnome-inm-forecast.spec (removed), trunk/gnome-inm-forecast.spec
(added): Moving files to trunk/
* gnome-inm-forecast.lsm.in (removed),
trunk/gnome-inm-forecast.lsm.in (added): Moving files to trunk/
* gnome-inm-forecast.lsm (removed), trunk/gnome-inm-forecast.lsm
(added): Moving files to trunk/
* gnome-inm-forecast.1 (removed), trunk/gnome-inm-forecast.1
(added): Moving files to trunk/
* gnome_inm.c (removed), trunk/gnome_inm.c (added): Moving files to
trunk/
* depcomp (removed), trunk/depcomp (added): Moving files to trunk/
* configure.in (removed), trunk/configure.in (added): Moving files
to trunk/
* configure (removed), trunk/configure (added): Moving files to
trunk/
* config.rpath (removed), trunk/config.rpath (added): Moving files
to trunk/
* config.h.in (removed), trunk/config.h.in (added): Moving files to
trunk/
* config.h (removed), trunk/config.h (added): Moving files to
trunk/
* ChangeLog (removed), trunk/ChangeLog (added): Moving files to
trunk/
* trunk/aclocal.m4 (added), aclocal.m4 (removed): Moving files to
trunk/
* acinclude.m4 (removed), trunk/acinclude.m4 (added): Moving files
to trunk/
* ABOUT-NLS (removed), trunk/ABOUT-NLS (added): Moving files to
trunk/
* COPYING (removed), trunk/COPYING (added): Moving files to trunk/
* AUTHORS (removed), trunk/AUTHORS (added): Moving files to trunk/
* NEWS (removed), trunk/NEWS (added): Moving files to trunk/
* trunk/README (added), README (removed): Moving files to trunk/
* debian (removed), trunk/debian (added): Moving files to trunk/
* m4 (removed), trunk/m4 (added): Moving files to trunk/
* trunk/po (added), po (removed): Moving files to trunk/
* pixmaps (removed), trunk/pixmaps (added): Moving files to trunk/
* src (removed), trunk/src (added): Moving files to trunk/
2007-10-11 10:04 +0000 [r109] ga:
* trunk (added), branch (added): 2 new directories in order to have
one branch "stable" and a new one with new features