-
Notifications
You must be signed in to change notification settings - Fork 39
/
ChangeLog.pregit
23307 lines (19974 loc) · 904 KB
/
ChangeLog.pregit
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
2009-03-12 Bruno coudoin <[email protected]>
- From trunk
- Fixed a crash case by Miguel in the configuration.
in a languge setting configuration of an activity
if we change the language, gcompris crashes.
* src/gcompris/board_config_combo.c:
(gc_board_config_combo_locales_asset):
2009-06-21 Bruno coudoin <[email protected]>
- From trunk
Patch from Miguel that fixes the configuration
of python activities (tuxpaint and login was crashing).
* src/boards/Makefile.am:
* src/boards/py-mod-gcompris.c:
(py_gc_board_config_window_display),
(py_gc_board_config_boolean_box), (py_gc_board_config_combo_box),
(py_gc_board_config_radio_buttons), (py_gc_board_config_spin_int),
(py_gc_board_conf_separator), (py_gc_board_config_combo_locales),
(py_gc_board_config_combo_locales_asset),
(py_gc_board_config_textview):
* src/boards/python/login.py:
* src/boards/python/pythontest.py:
* src/boards/python/tuxpaint.py:
* src/gcompris/board_config_radio.c:
(gc_board_config_radio_buttons):
2009-06-21 Bruno coudoin <[email protected]>
- From trunk
- gnet is now enable by default.
* configure.in:
2009-06-21 Bruno coudoin <[email protected]>
- From trunk
- Patch from Miguel. On some windows manager, we were crashing
when opening a configuration windows while in fullscreen.
* src/gcompris/board_config.c: (gc_board_config_window_display):
2009-02-25 Bruno coudoin <[email protected]>
- Fixed strings:
* src/boards/reading.c: (reading_create_item):
* src/gcompris/board_config_wordlist.c: (gc_board_config_wordlist):
- Fixed bug, the configuration was crashing uppon startup from the admin mode
* src/boards/missingletter.c: (_init), (start_board),
(config_start):
* src/boards/missingletter_config.c:
* src/boards/python/admin/board_list.py:
2009-06-20 Bruno coudoin <[email protected]>
From trunk
- Miquel DE IZARRA Added support for editing the content
of the missing letter activity.
* boards/missing_letter/Makefile.am:
* boards/missing_letter/board1.xml.in:
* boards/missing_letter/board2.xml.in:
* boards/missing_letter/board3.xml.in:
* boards/missing_letter/board4.xml.in:
* src/boards/Makefile.am:
* src/boards/missingletter.c: (pause_board), (start_board),
(end_board), (set_level), (missing_letter_next_level),
(missing_letter_create_item), (game_won), (init_xml),
(add_xml_data), (missing_read_xml_file),
(missing_destroy_board_list), (conf_ok), (config_start):
* src/boards/missingletter_config.c: (new_clicked),
(delete_clicked), (valid_entry), (apply_clicked), (up_clicked),
(down_clicked), (_save), (save_clicked), (level_changed),
(text_changed), (selection_changed), (destroy_conf_data),
(configure_colummns), (config_missing_letter):
* src/boards/reading.c: (reading_create_item), (get_random_word):
* src/gcompris/board_config_wordlist.c: (gc_board_config_wordlist):
* src/gcompris/gc_net.c: (gc_net_get_url_from_file),
(gc_cache_import_pixmap):
* src/gcompris/gc_net.h:
* src/gcompris/gcompris.c: (main):
2009-06-20 Bruno coudoin <[email protected]>
From trunk.
Miguel DE IZARRA added support for online wordlist.
This save custom data in user_dir and make a content.txt (a md5sum
like file) listing custom files. Simply put this files in a web server
to diffuse in classroom.
GCompris clients are launch with --server and --cache-dir
On start, client download content.txt from server.
And when a client need a file:
- first he search in server list (from content.txt)
- if found, he check md5 of file in cache_dir
- if md5 isn't ok, file is download in cache_dir
file in cache_dir is used
- if not found, search in package_dir (like now)
* configure.in:
* src/boards/advanced_colors.c: (read_xml_file):
* src/boards/imageid.c: (read_xml_file):
* src/boards/missingletter.c: (read_xml_file):
* src/boards/python/admin/board_list.py:
* src/boards/read_colors.c: (read_xml_file):
* src/boards/shapegame.c: (read_xml_file):
* src/boards/superbrain.c: (mark_pieces):
* src/boards/wordprocessor.c: (load_buffer):
* src/gcompris/Makefile.am:
* src/gcompris/board_config_wordlist.c: (_return_clicked),
(gc_board_config_wordlist):
* src/gcompris/cache.c:
* src/gcompris/config.c: (set_locale_flag):
* src/gcompris/dialog.c:
* src/gcompris/gameutil.c: (gc_pixmap_load),
(gc_file_find_absolute), (gc_file_find_absolute_writeable):
* src/gcompris/gameutil.h:
* src/gcompris/gc_core.h:
* src/gcompris/gc_net.c: (load_md5file), (gc_net_init),
(gc_net_destroy), (gc_net_get_url_from_file), (gc_cache_init),
(gc_cache_get_relative), (gc_cache_add), (gc_cache_remove),
(_table_foreach), (gc_cache_save), (gc_cache_destroy):
* src/gcompris/gc_net.h:
* src/gcompris/gcompris.c: (setup_window), (cleanup), (main):
* src/gcompris/images_selector.c: (gc_selector_images_start),
(read_xml_file):
* src/gcompris/skin.c: (skin_xml_load):
* src/gcompris/wordlist.c: (gc_wordlist_save):
2009-06-20 Bruno coudoin <[email protected]>
From trunk
Vitali Perchonok is com gmail from vitali.pe
Fixed crash bug when changing level while dragging an item (2 click drag mode)
* src/boards/shapegame.c: (shapegame_next_level):
2009-06-20 Bruno coudoin <[email protected]>
From trunk
Vitali Perchonok is com gmail from vitali.pe
Fixed for RTL.
* src/boards/wordsgame.c: (wordsgame_create_item):
2009-06-20 Bruno coudoin <[email protected]>
From trunk.
Vitali Perchonok is com gmail from vitali.pe
Fixed small bug (2 player mode) -> show happy flower even if player 2 wins
* src/boards/python/connect4.py:
2009-06-20 Wolfram Sang <[email protected]>
- From trunk
* src/board/shapegame.c:
- Fix an off-by-one bug in the calculation of the amount of levels,
which made it possible to see the end-sequence just by clicking
the dice.
- When shuffling the items for the left bar, the last item was
skipped. As the upper limit for random-functions is exclusive,
we have to pass the whole list_size, not list_size - 1.
Also, simplify the code.
- Shapegames could crash if one tried to move an object while the
bonus-objectmaster (e.g. sad flower) was still shown.
Fix this by ensuring that the object to move or drop is the
same one that got dragged.
2009-06-20 Bruno coudoin <[email protected]>
- From trunk
Miguel DE IZARRA implemented the wordlist selector.
We need some improvement to save data in the ~/My GCompris
instead of the system datadir directory.
* src/boards/advanced_colors.c: (add_xml_data):
* src/boards/click_on_letter.c: (config_start):
* src/boards/colors.c: (colors_config_start):
* src/boards/gletters.c: (gletter_config_start):
* src/boards/imageid.c: (add_xml_data), (config_start):
* src/boards/missingletter.c: (config_start):
* src/boards/py-mod-gcompris.c: (py_gc_board_config_boolean_box),
(py_gc_board_config_combo_box), (py_gc_board_config_radio_buttons),
(py_gc_board_config_spin_int), (py_gc_board_conf_separator),
(py_gc_board_config_combo_locales),
(py_gc_board_config_combo_locales_asset),
(py_gc_board_config_textview):
* src/boards/reading.c: (reading_config_start):
* src/boards/scale.c: (config_start):
* src/boards/shapegame.c: (config_start):
* src/boards/smallnumbers.c: (smallnumber_config_start):
* src/boards/wordsgame.c: (start_board), (conf_ok),
(wordsgame_config_start), (wordsgame_config_stop):
* src/gcompris/Makefile.am:
* src/gcompris/board_config.c: (gc_board_conf_close),
(_response_board_conf), (_conf_window_configured),
(gc_board_config_window_display),
(gc_board_conf_boolean_box_toggled), (gc_board_config_boolean_box),
(spin_changed), (gc_board_config_spin_int),
(gc_board_conf_separator):
* src/gcompris/board_config.h:
* src/gcompris/wordlist.c: (gc_wordlist_get_from_file),
(gc_wordlist_dump), (gc_wordlist_get_levelwordlist),
(gc_wordlist_random_word_get), (gc_wordlist_free_level),
(gc_wordlist_free), (gc_wordlist_set_wordlist), (gc_wordlist_save):
* src/gcompris/wordlist.h:
2009-04-14 Bruno coudoin <[email protected]>
- Created photo hunter activity by Marc Le Douarain (http://membres.lycos.fr/mavati)
* configure.in:
* src/Makefile.am:
* src/photohunter-activity/.deps/advanced_colors.Plo:
* src/photohunter-activity/.deps/photohunter.Plo:
* src/photohunter-activity/Makefile.am:
* src/photohunter-activity/init_path.sh:
* src/photohunter-activity/photohunter.c:
* src/photohunter-activity/photohunter.svg:
* src/photohunter-activity/photohunter.xml.in:
* src/photohunter-activity/resources/Makefile.am:
* src/photohunter-activity/resources/photohunter/Makefile.am:
* src/photohunter-activity/resources/photohunter/euros0.csv:
2009-03-26 Bruno coudoin <[email protected]>
* src/boards/memory.c: (sound_callback): Hopefully fixed a race in which
tux could play several time alone or stop after a single play.
Merged from trunk 3800
2009-03-25 Bruno coudoin <[email protected]>
* src/boards/memory.c: (start_board), (memory_next_level): fixed a cased in which
the memory sound was in a fuzzy state if the level was changed by the user.
Merged from trunk 3795
2009-03-24 Bruno coudoin <[email protected]>
- Replaced a level in memory sound to make the difficulty always increasing
Merged from trunk 3790
* src/memory-activity/resources/memory/*.ogg: normalized
* src/memory-activity/memory.c: (start_board), (memory_next_level),
(hide_card), (check_win), (item_event), (tux_play),
(sound_callback):
2009-03-17 Bruno coudoin <[email protected]>
- Fixed a little issue. It was possible for the user in
memory sound against tux to click on as many card she wants
if she does not wait for the end of the sound.
merged from trunk 3782
* src/boards/memory.c: (memory_next_level), (check_win),
(item_event):
2009-03-15 Bruno coudoin <[email protected]>
- Replaced letter that differenciate blocks for
color blinds by ASCII symbols that are locale
agnostic.
Merged from trunk 3775
* src/hanoi-activity/hanoi.c: (hanoi_create_item):
2009-03-14 Bruno coudoin <[email protected]>
- Fixed an annoying bug in the locale selection.
Punjabi was twice in our internal list which makes
it impossible to access locale after Portuguese in
our list. It was possible to access locale by going
backward but really annoying.
Merged from trunk 3771
* src/gcompris/config.c:
2009-02-20 Bruno coudoin <[email protected]>
- Merged 3727 from trunk
- Should fix the empty date field in the log on Windows
* src/gcompris/log.c: (gc_log_end):
2009-01-27 Bruno coudoin <[email protected]>
Reworked login to no more need button_large2.png. Removed
this image as it is no more used.
There is a bug in board_list.py, the login cannot be edited.
* src/administration-activity/admin/board_list.py:
* src/administration-activity/resources/administration/Makefile.am:
* src/login-activity/login.py:
2009-01-27 Bruno coudoin <[email protected]>
New background image for the target activity by Mathieu Ignacio.
* src/target-activity/resources/target/Makefile.am:
* src/target-activity/target.c: (start_board), (display_windspeed),
(target_create_item), (request_score):
2009-01-26 Bruno coudoin <[email protected]>
Reworked target activity to no more use the button_large2 pixmap.
Instead we have a cute translucant background that follows the
text size.
* src/target-activity/target.c: (key_press), (request_score):
2009-01-26 Bruno coudoin <[email protected]>
Reworked shapegame code to:
- load the vertical selector from the skin
- allow a color_background_skin in the Title xml board files.
It display a background around the title text. It avoid text
being bigger than the fixed background.
* boards/skins/gartoon/hand.svg:
* boards/skins/gartoon/skin.xml:
* configure.in:
* src/babymatch-activity/resources/Makefile.am:
* src/babymatch-activity/resources/babymatch/board1_0.xml.in:
* src/babymatch-activity/resources/babymatch/board2_0.xml.in:
* src/babymatch-activity/resources/babymatch/board3_0.xml.in:
* src/babymatch-activity/resources/babymatch/board4_0.xml.in:
* src/babymatch-activity/resources/babymatch/board5_0.xml.in:
* src/babymatch-activity/resources/babymatch/board6_0.xml.in:
* src/babymatch-activity/resources/babymatch/board7_0.xml.in:
* src/babymatch-activity/resources/shapegame/Makefile.am:
* src/babymatch-activity/shapegame.c: (start_board), (end_board),
(add_shape_to_list_of_shapes), (create_title),
(add_xml_shape_to_data):
* src/babyshapes-activity/resources/babyshapes/board5_0.xml.in:
* src/babyshapes-activity/resources/babyshapes/board6_0.xml.in:
* src/babyshapes-activity/resources/babyshapes/board7_0.xml.in:
* src/chronos-activity/resources/chronos/board1_0.xml.in:
* src/chronos-activity/resources/chronos/board4_3.xml.in:
* src/doubleentry-activity/resources/doubleentry/board3_0.xml.in:
* src/imagename-activity/resources/imagename/board1_0.xml.in:
* src/imagename-activity/resources/imagename/board2_0.xml.in:
* src/imagename-activity/resources/imagename/board3_0.xml.in:
* src/imagename-activity/resources/imagename/board4_0.xml.in:
* src/imagename-activity/resources/imagename/board5_0.xml.in:
* src/imagename-activity/resources/imagename/board6_0.xml.in:
* src/imagename-activity/resources/imagename/board7_0.xml.in:
* src/paintings-activity/resources/paintings/board1_0.xml.in:
* src/paintings-activity/resources/paintings/board1_1.xml.in:
* src/paintings-activity/resources/paintings/board1_10.xml.in:
* src/paintings-activity/resources/paintings/board1_11.xml.in:
* src/paintings-activity/resources/paintings/board1_12.xml.in:
* src/paintings-activity/resources/paintings/board1_2.xml.in:
* src/paintings-activity/resources/paintings/board1_3.xml.in:
* src/paintings-activity/resources/paintings/board1_4.xml.in:
* src/paintings-activity/resources/paintings/board1_5.xml.in:
* src/paintings-activity/resources/paintings/board1_6.xml.in:
* src/paintings-activity/resources/paintings/board1_7.xml.in:
* src/paintings-activity/resources/paintings/board1_8.xml.in:
* src/paintings-activity/resources/paintings/board1_9.xml.in:
* src/paintings-activity/resources/paintings/board2_0.xml.in:
* src/paintings-activity/resources/paintings/board2_1.xml.in:
* src/paintings-activity/resources/paintings/board2_2.xml.in:
* src/paintings-activity/resources/paintings/board2_3.xml.in:
* src/paintings-activity/resources/paintings/board3_0.xml.in:
* src/paintings-activity/resources/paintings/board3_1.xml.in:
* src/paintings-activity/resources/paintings/board4_0.xml.in:
* src/paintings-activity/resources/paintings/board5_0.xml.in:
* src/paintings-activity/resources/paintings/board6_0.xml.in:
2009-01-24 Bruno coudoin <[email protected]>
Added a gc_set_default_background() api entry.
Exported it and gc_set_background_by_id() to python.
Removed the need for gcompris-bg.jpg which is now in skin.svg
* boards/skins/gartoon/skin.svg:
* src/administration-activity/administration.py:
* src/anim-activity/anim.py:
* src/awele-activity/awele.c: (awele_next_level):
* src/boards/py-mod-gcompris.c: (py_gc_set_background_by_id),
(py_gc_set_default_background):
* src/chat-activity/chat.py:
* src/chess_computer-activity/chess.c: (chess_next_level):
* src/electric-activity/electric.py:
* src/electric-activity/resources/electric/Makefile.am:
* src/fifteen-activity/fifteen.c: (fifteen_next_level):
* src/gcompris/gcompris.c: (_set_svg_background),
(gc_set_background), (gc_set_default_background):
* src/gcompris/gcompris.h:
* src/gnumch-equality-activity/gnumch.py:
* src/hanoi-activity/hanoi.c: (start_board):
* src/hanoi_real-activity/hanoi_real.c: (start_board):
* src/hexagon-activity/hexagon.py:
* src/magic_hat_minus-activity/magic_hat.c: (start_board):
* src/maze-activity/maze.c: (start_board), (twoDdisplay):
* src/pythontemplate-activity/pythontemplate.py:
* src/pythontest-activity/pythontest.py:
* src/redraw-activity/redraw.py:
* src/searace-activity/searace.py:
* src/sudoku-activity/sudoku.py:
* src/tuxpaint-activity/tuxpaint.py:
2009-01-19 Bruno coudoin <[email protected]>
Now shapegame tooltip is a a transparent rectangle instead
of a fixed button. The rectangle follow the tooltip size to
avoid the text growing after the button effect.
* boards/skins/gartoon/skin.svg:
* src/babymatch-activity/shapegame.c: (process_ok),
(shapegame_init_canvas), (item_event):
* src/imageid-activity/imageid.c: (imageid_create_item),
(highlight_selected):
2009-01-19 Bruno coudoin <[email protected]>
Now the target activity has a tooltip on each dart to let
the children know the value of it.
* src/target-activity/target.c: (start_board), (target_next_level),
(target_create_item), (request_score), (add_points),
(animate_items), (tooltip_event):
2008-12-22 Bruno coudoin <[email protected]>
use AC_CANONICAL_HOST rather than AC_CANONICAL_TARGET for cross-compile purposes.
Without this change, a --target option to ./configure is emitted without a good
reason, which is misleading.
* configure.in:
2009-01-11 Bruno coudoin <[email protected]>
Added support for detecting and loading .svg and .svgz files through rsvg
in our internal gc_pixmap_load() method.
More work towards full svg skin
* configure.in:
* src/Makefile.am:
* src/administration-activity/admin/board_list.py:
* src/administration-activity/admin/module.py:
* src/administration-activity/resources/administration/Makefile.am:
* src/doubleclick-activity/Makefile.am:
* src/doubleclick-activity/doubleclick.py:
* src/doubleclick-activity/doubleclick.svg:
* src/doubleclick-activity/doubleclick.xml.in:
* src/doubleclick-activity/gcompris:
* src/doubleclick-activity/init_path.sh:
* src/doubleclick-activity/resources/Makefile.am:
* src/doubleclick-activity/resources/doubleclick/Makefile.am:
* src/doubleclick-activity/resources/doubleclick/doubleclick.svg:
* src/doubleclick-activity/resources/doubleclick/foot.svg:
* src/doubleclick-activity/resources/doubleclick/foot_shadow.svg:
* src/doubleclick-activity/resources/doubleclick/penalty_bg.svg:
* src/doubleclick-activity/resources/doubleclick/teen_tux.svg:
* src/gcompris/gc_net.c: (path_represents_svg_image),
(gc_net_load_pixmap):
* src/penalty-activity/penalty.xml.in:
* src/penalty-activity/resources/penalty/Makefile.am:
2009-01-02 Bruno Coudoin,,, <[email protected]>
Added an autocrop feature in the svg goocanvas item.
* src/gcompris/config.c: (gc_config_start), (gc_config_stop),
(display_previous_next), (item_event_ok):
* src/goocanvas/src/goocanvassvg.c:
(goo_canvas_svg_install_common_properties), (_autocrop),
(_init_surface), (goo_canvas_svg_init),
(goo_canvas_svg_set_common_property):
* src/goocanvas/src/goocanvassvg.h:
2009-01-01 Bruno Coudoin,,, <[email protected]>
More integration of the single file skin.
* boards/skins/gartoon/skin.svg:
* src/boards/menu2.c: (menu_start), (menu_create_item):
* src/gcompris/about.c: (gc_about_start):
* src/gcompris/config.c: (gc_config_start):
* src/gcompris/dialog.c: (gc_dialog):
* src/gcompris/gcompris_confirm.c: (display_confirm):
* src/gcompris/help.c: (gc_help_start):
* src/gcompris/skin.c:
2009-01-01 Bruno Coudoin,,, <[email protected]>
Added an API entry gc_set_background_by_id to ease
SVG integration.
Now the menu uses the svg data from the skin.svg file.
* boards/skins/gartoon/skin.svg:
* src/boards/menu2.c: (menu_start):
* src/gcompris/bar.c: (gc_bar_start):
* src/gcompris/gameutil.h:
* src/gcompris/gcompris.c: (_clear_svg_background),
(_clear_pixmap_background), (gc_set_background),
(gc_set_background_by_id):
* src/gcompris/gcompris.h:
* src/gcompris/skin.c: (gc_skin_rsvg_get):
* src/gcompris/skin.h:
2008-12-22 Bruno coudoin <[email protected]>
More work to use more svg
* configure.in:
* src/babymatch-activity/resources/babymatch/fusee.svg:
* src/billard-activity/billard.c: (start_board):
* src/billard-activity/resources/billard/Makefile.am:
* src/followline-activity/followline.py:
* src/followline-activity/resources/followline/Makefile.am:
* src/followline-activity/resources/followline/water_spot.svg:
* src/imageid-activity/imageid.c: (start_board):
* src/imageid-activity/resources/imageid/Makefile.am:
* src/leftright-activity/resources/leftright/background.kpm:
* src/readingh-activity/reading.c: (start_board), (ask_ready),
(ask_yes_no):
* src/readingh-activity/resources/Makefile.am:
* src/tangram-activity/gtans.c: (start_board):
* src/tangram-activity/resources/tangram/Makefile.am:
2008-12-22 Bruno coudoin <[email protected]>
Integrated original svg images in the clockgame activity.
* src/clockgame-activity/clockgame.c: (start_board):
* src/clockgame-activity/resources/clockgame/Makefile.am:
2008-12-22 Bruno coudoin <[email protected]>
Integrated original svg images in the babymatch activity.
* src/babymatch-activity/resources/babymatch/Makefile.am:
* src/babymatch-activity/resources/babymatch/apple.svg:
* src/babymatch-activity/resources/babymatch/bell.svg:
* src/babymatch-activity/resources/babymatch/bicycle.svg:
* src/babymatch-activity/resources/babymatch/board1_0.xml.in:
* src/babymatch-activity/resources/babymatch/board2_0.xml.in:
* src/babymatch-activity/resources/babymatch/board3_0.xml.in:
* src/babymatch-activity/resources/babymatch/board4_0.xml.in:
* src/babymatch-activity/resources/babymatch/board5_0.xml.in:
* src/babymatch-activity/resources/babymatch/board6_0.xml.in:
* src/babymatch-activity/resources/babymatch/board7_0.xml.in:
* src/babymatch-activity/resources/babymatch/bottle.svg:
* src/babymatch-activity/resources/babymatch/car.svg:
* src/babymatch-activity/resources/babymatch/carrot.svg:
* src/babymatch-activity/resources/babymatch/castle.svg:
* src/babymatch-activity/resources/babymatch/crown.svg:
* src/babymatch-activity/resources/babymatch/egg.svg:
* src/babymatch-activity/resources/babymatch/eggpot.svg:
* src/babymatch-activity/resources/babymatch/fishingboat.svg:
* src/babymatch-activity/resources/babymatch/flower.svg:
* src/babymatch-activity/resources/babymatch/flowerpot.svg:
* src/babymatch-activity/resources/babymatch/football.svg:
* src/babymatch-activity/resources/babymatch/fusee.svg:
* src/babymatch-activity/resources/babymatch/glass.svg:
* src/babymatch-activity/resources/babymatch/house.svg:
* src/babymatch-activity/resources/babymatch/lamp.svg:
* src/babymatch-activity/resources/babymatch/lifebuoy.svg:
* src/babymatch-activity/resources/babymatch/light.svg:
* src/babymatch-activity/resources/babymatch/lighthouse.svg:
* src/babymatch-activity/resources/babymatch/minivan.svg:
* src/babymatch-activity/resources/babymatch/pencil.svg:
* src/babymatch-activity/resources/babymatch/postcard.svg:
* src/babymatch-activity/resources/babymatch/postpoint.svg:
* src/babymatch-activity/resources/babymatch/rape.svg:
* src/babymatch-activity/resources/babymatch/raquette.svg:
* src/babymatch-activity/resources/babymatch/sailingboat.svg:
* src/babymatch-activity/resources/babymatch/sofa.svg:
* src/babymatch-activity/resources/babymatch/sound.svg:
* src/babymatch-activity/resources/babymatch/star.svg:
* src/babymatch-activity/resources/babymatch/sun.svg:
* src/babymatch-activity/resources/babymatch/tree.svg:
* src/babymatch-activity/resources/babymatch/truck.svg:
* src/babymatch-activity/resources/babymatch/tuxhelico.svg:
* src/babymatch-activity/resources/babymatch/tuxplane.svg:
* src/babymatch-activity/resources/babymatch/umbrella.svg:
* src/babymatch-activity/resources/babymatch/windflag5.svg:
2008-12-21 Bruno coudoin <[email protected]>
Integrated original svg images in the algebra_guescount activity.
* src/algebra_guesscount-activity/algebra_guesscount.c:
(start_board), (algebra_guesscount_next_level), (game_won):
* src/algebra_guesscount-activity/resources/algebra_guesscount/1.sv
g:
* src/algebra_guesscount-activity/resources/algebra_guesscount/10.s
vg:
* src/algebra_guesscount-activity/resources/algebra_guesscount/100.
svg:
* src/algebra_guesscount-activity/resources/algebra_guesscount/2.sv
g:
* src/algebra_guesscount-activity/resources/algebra_guesscount/25.s
vg:
* src/algebra_guesscount-activity/resources/algebra_guesscount/3.sv
g:
* src/algebra_guesscount-activity/resources/algebra_guesscount/4.sv
g:
* src/algebra_guesscount-activity/resources/algebra_guesscount/5.sv
g:
* src/algebra_guesscount-activity/resources/algebra_guesscount/50.s
vg:
* src/algebra_guesscount-activity/resources/algebra_guesscount/6.sv
g:
* src/algebra_guesscount-activity/resources/algebra_guesscount/7.sv
g:
* src/algebra_guesscount-activity/resources/algebra_guesscount/8.sv
g:
* src/algebra_guesscount-activity/resources/algebra_guesscount/9.sv
g:
* src/algebra_guesscount-activity/resources/algebra_guesscount/Make
file.am:
* src/algebra_guesscount-activity/resources/algebra_guesscount/by.s
vg:
* src/algebra_guesscount-activity/resources/algebra_guesscount/div.
svg:
* src/algebra_guesscount-activity/resources/algebra_guesscount/equa
l.svg:
* src/algebra_guesscount-activity/resources/algebra_guesscount/minu
s.svg:
* src/algebra_guesscount-activity/resources/algebra_guesscount/plus
.svg:
2008-12-21 Bruno coudoin <[email protected]>
Integrated original svg images in the melody activity.
* src/Makefile.am:
* src/melody-activity/melody.py:
* src/melody-activity/resources/melody/Makefile.am:
* src/melody-activity/resources/melody/guitar_background.svg:
* src/melody-activity/resources/melody/guitar_cursor.svg:
* src/melody-activity/resources/melody/xylofon_background.svg:
* src/melody-activity/resources/melody/xylofon_son1.svg:
* src/melody-activity/resources/melody/xylofon_son2.svg:
* src/melody-activity/resources/melody/xylofon_son3.svg:
* src/melody-activity/resources/melody/xylofon_son4.svg:
2008-12-10 Yves Combe,,, <[email protected]>
Automaticly reduce font size if text is too wide.
TODO: pass this function (gcompris_adapt_font_size) in core.
* src/memory-activity/memory.c: (get_image), (create_item),
(gcompris_adapt_font_size):
2008-12-09 Yves Combe,,, <[email protected]>
- add new activity: memory_wordnumber. Icon by Mathieu.
* configure.in:
* src/Makefile.am:
* src/memory-activity/memory.c: (get_random_token), (start_board),
(get_image), (compare_card):
* src/memory_wordnumber-activity/Makefile.am:
* src/memory_wordnumber-activity/init_path.sh:
* src/memory_wordnumber-activity/memo_wordnumber.svg:
* src/memory_wordnumber-activity/memory_wordnumber.xml.in:
2008-12-13 Bruno Coudoin <[email protected]>
Removed deprecated menu description in lib/menu/gcompris
* Makefile.am:
* gcompris:
2008-12-09 Bruno Coudoin <[email protected]>
Ported the penalty activity. Reworked the graphism and
the implementation to be more goocanvas aware.
* configure.in:
* src/penalty-activity/Makefile.am:
* src/penalty-activity/gcompris:
* src/penalty-activity/init_path.sh:
* src/penalty-activity/penalty.py:
* src/penalty-activity/penalty.svg:
* src/penalty-activity/penalty.xml.in:
* src/penalty-activity/resources/Makefile.am:
* src/penalty-activity/resources/penalty/Makefile.am:
2008-12-08 Yves Combe <[email protected]>
- add new activity: memory_enumerate. Pictures by Mathieu.
* configure.in:
* po/POTFILES.in:
* src/Makefile.am:
* src/memory-activity/memory.c: (get_random_token), (start_board),
(get_image), (create_item), (compare_card):
* src/memory-activity/resources/memory/math_0.svg:
* src/memory-activity/resources/memory/math_1.svg:
* src/memory-activity/resources/memory/math_2.svg:
* src/memory-activity/resources/memory/math_3.svg:
* src/memory-activity/resources/memory/math_4.svg:
* src/memory-activity/resources/memory/math_5.svg:
* src/memory-activity/resources/memory/math_6.svg:
* src/memory-activity/resources/memory/math_7.svg:
* src/memory-activity/resources/memory/math_8.svg:
* src/memory-activity/resources/memory/math_9.svg:
* src/memory_enumerate-activity/Makefile.am:
* src/memory_enumerate-activity/init_path.sh:
* src/memory_enumerate-activity/memo_enumerate.svg:
* src/memory_enumerate-activity/memory_enumerate.xml.in:
2008-12-01 Bruno Coudoin
- Completed the canal lock rework based on the new graphism
by Stephane Cabaraux.
* src/canal_lock-activity/canal_lock.c: (start_board),
(canal_lock_next_level), (set_lock_event),
(canal_lock_create_item), (move_boat), (update_water),
(toggle_lock), (animate_step), (item_event), (update_lights):
* src/goocanvas/src/goocanvassvg.c: (_init_surface),
(goo_canvas_svg_finalize), (goo_canvas_svg_set_common_property):
* src/goocanvas/src/goocanvassvg.h:
2008-11-24 Bruno coudoin <[email protected]>
* src/boards/shapegame.c: (item_event_drag): Fixed a crash in case of multiple sound list.
This was especially the case in the level 3 of the double entry activity.
Merged from trunk Commit r3628
* src/canal_lock-activity/resources/canal_lock/canal_lock.svgz: Created by
Stéphane Cabaraux tef/cyberground/org
2008-11-24 Bruno coudoin <[email protected]>
* src/watercycle-activity/resources/watercycle/watercycle.svgz: Created by
Stephane Cabaraux tef/cyberground/org
2008-11-21 Bruno coudoin <[email protected]>
- Imported goocanvas commit r31, it allows animation to be
called again in an animation-finished event
- Improved watercycle, uncomplete yet
* src/goocanvas/src/goocanvasitem.c: (goo_canvas_item_animate_cb),
(goo_canvas_item_stop_animation):
* src/goocanvas/src/goocanvasitemmodel.c:
(goo_canvas_item_model_stop_animation):
* src/watercycle-activity/watercycle.py:
2008-11-19 Bruno coudoin <[email protected]>
- In progress watercycle.
- Grabed code from goocanvas trunk by Damon Chaplin to have
a signal "animation-finished"
- Removed hiy_detection to use pointer_events=None instead.
* src/boards/goocanvas.defs:
* src/boards/py-mod-utils.c: (py_gc_item_focus_remove):
* src/goocanvas/src/goocanvasitem.c: (goo_canvas_item_base_init),
(goo_canvas_item_animate_cb), (goo_canvas_item_stop_animation):
* src/goocanvas/src/goocanvasitem.h:
* src/goocanvas/src/goocanvasitemmodel.c:
(goo_canvas_item_model_base_init),
(goo_canvas_item_model_stop_animation):
* src/goocanvas/src/goocanvasitemmodel.h:
* src/goocanvas/src/goocanvassvg.c:
(goo_canvas_svg_install_common_properties), (goo_canvas_svg_init),
(goo_canvas_svg_set_common_property), (goo_canvas_svg_is_item_at):
* src/goocanvas/src/goocanvassvg.h:
* src/watercycle-activity/watercycle.py:
2008-11-10 Bruno coudoin <[email protected]>
Performance improvement of the goocanvas svg item. Now the
rsvg rendering is only done once in a sairo surface and copyed
again to the cairo target when needed.
* src/gcompris/config.c: (set_locale_flag):
* src/gcompris/gameutil.c: (gc_util_button_text):
* src/gcompris/gcompris.c: (_set_svg_background):
* src/goocanvas/src/goocanvassvg.c: (_init_surface),
(goo_canvas_svg_init), (goo_canvas_svg_new),
(goo_canvas_svg_paint), (goo_canvas_svg_finalize),
(goo_canvas_svg_set_common_property):
* src/goocanvas/src/goocanvassvg.h:
* src/magic_hat_minus-activity/magic_hat.c: (item_event):
* src/paratrooper-activity/paratrooper.c: (next_state):
* src/reversecount-activity/reversecount.c: (item_event):
* src/watercycle-activity/watercycle.py:
2008-11-09 Bruno coudoin <[email protected]>
API cleanup, now our svg item has the same API signature
as native goocanvas items: goo_canvas_svg_new()
* src/erase-activity/erase.c: (add_one_item):
* src/gcompris/about.c: (gc_about_start):
* src/gcompris/config.c: (gc_config_start):
* src/gcompris/dialog.c: (gc_dialog):
* src/gcompris/gcompris.c: (_set_svg_background):
* src/gcompris/gcompris_confirm.c: (display_confirm):
* src/gcompris/help.c: (gc_help_start):
* src/goocanvas/src/Makefile.am:
* src/goocanvas/src/goocanvas.h:
* src/goocanvas/src/goocanvassvg.c:
(goo_canvas_svg_install_common_properties), (goo_canvas_svg_init),
(goo_canvas_svg_new), (goo_canvas_svg_update),
(goo_canvas_svg_paint), (goo_canvas_svg_finalize),
(goo_canvas_svg_set_common_property),
(goo_canvas_svg_set_property), (goo_canvas_svg_is_item_at),
(goo_canvas_svg_class_init):
* src/goocanvas/src/goocanvassvg.h:
* src/goocanvas/src/svg-item.c:
* src/goocanvas/src/svg-item.h:
* src/magic_hat_minus-activity/magic_hat.c: (place_item):
* src/maze-activity/maze.c: (maze_next_level):
* src/money-activity/money.c: (money_next_level):
* src/money-activity/money_widget.c: (money_widget_add):
* src/paratrooper-activity/paratrooper.c: (paratrooper_next_level),
(paratrooper_create_cloud):
* src/planegame-activity/planegame.c: (planegame_next_level),
(planegame_create_item):
* src/reversecount-activity/reversecount.c:
(reversecount_create_item):
* src/smallnumbers-activity/smallnumbers.c:
(smallnumbers_create_item):
2008-11-09 Bruno coudoin <[email protected]>
Added support for svg-id in our goo canvas svg item.
Added missing cleanup code in it.
* src/goocanvas/src/svg-item.c:
(goo_svg_item_install_common_properties), (goo_svg_item_init),
(goo_svg_item_paint), (goo_svg_item_finalize),
(goo_svg_item_set_common_property), (goo_svg_item_class_init):
* src/goocanvas/src/svg-item.h:
2008-11-08 Bruno coudoin <[email protected]>
More New paintings from Marc Levivier:
* docs/C/texinfo.tex:
* install-sh:
* src/babymatch-activity/shapegame.c: (shapegame_init_canvas),
(create_title): fixed centered text
* src/paintings-activity/resources/paintings/Makefile.am:
* src/paintings-activity/resources/paintings/Makefile.in:
* src/paintings-activity/resources/paintings/board1_10.xml.in:
* src/paintings-activity/resources/paintings/board1_11.xml.in:
* src/paintings-activity/resources/paintings/board1_12.xml.in:
* src/paintings-activity/resources/paintings/board1_4.xml.in:
* src/paintings-activity/resources/paintings/board1_5.xml.in:
* src/paintings-activity/resources/paintings/board1_6.xml.in:
* src/paintings-activity/resources/paintings/board1_7.xml.in:
* src/paintings-activity/resources/paintings/board1_8.xml.in:
* src/paintings-activity/resources/paintings/board1_9.xml.in:
*** RELEASE 8.5PRE2 ***
2008-10-19 Bruno coudoin <[email protected]>
- synced translations with trunk
* po/af.po:
* po/ar.po:
* po/bg.po:
* po/ca.po:
* po/cs.po:
* po/el.po:
* po/en_GB.po:
* po/es.po:
* po/eu.po:
* po/fa.po:
* po/fr.po:
* po/he.po:
* po/hu.po:
* po/it.po:
* po/lt.po:
* po/ne.po:
* po/nl.po:
* po/nn.po:
* po/oc.po:
* po/pt.po:
* po/pt_BR.po:
* po/ro.po:
* po/ru.po:
* po/sv.po:
* po/uk.po:
* po/ur.po:
* po/vi.po:
* po/zh_CN.po:
* src/readingh-activity/resources/wordsgame/default-he.xml:
* src/readingh-activity/resources/wordsgame/default-uk.xml:
2008-08-19 Bruno coudoin <[email protected]>
Added support for Ukrainian by Ivan Onyshchuk (from trunk 3499)
* configure.in:
* po/ChangeLog:
* po/uk.po:
* src/gcompris/config.c:
2008-07-23 Bruno coudoin <[email protected]>
* src/gcompris/gcompris.c: (setup_window), (gc_fullscreen_set),
(main): fixed fullscreen to work again correctly on gnome. I had to
remove gtk_widget_hide() and gdk_window_set_functions(). These had been
added before to have the fullscreen on KDE. Need someone to check again.
2008-05-10 Bruno Coudoin <[email protected]>
Port of doubleclick activity from trunk
Rewrite of the anim activity (in progress)
* configure.in:
* src/anim-activity/AnimItem.py:
* src/anim-activity/Color.py:
* src/anim-activity/Timeline.py:
* src/anim-activity/anim.py:
* src/doubleclick-activity/Makefile.am:
* src/doubleclick-activity/doubleclick.py:
* src/doubleclick-activity/doubleclick.svg:
* src/doubleclick-activity/doubleclick.xml.in:
* src/doubleclick-activity/gcompris:
* src/doubleclick-activity/init_path.sh:
* src/doubleclick-activity/resources/Makefile.am:
* src/doubleclick-activity/resources/doubleclick/Makefile.am:
* src/doubleclick-activity/resources/doubleclick/doubleclick.svg:
* src/doubleclick-activity/resources/doubleclick/foot.svg:
* src/doubleclick-activity/resources/doubleclick/foot_shadow.svg:
* src/doubleclick-activity/resources/doubleclick/penalty_bg.svg:
* src/doubleclick-activity/resources/doubleclick/teen_tux.svg:
2008-05-04 Bruno coudoin <[email protected]>
2 New paintings from Marc Levivier (malev free fr):
Arcimboldo Spring
Arcimboldo Librarian
* configure.in:
* src/babymatch-activity/shapegame.c: (auto_process): fixed was winning all whatever
the placememnt was.
* src/gcompris/bar.c: (gc_bar_set_level), (item_event_bar): better management of
audio
* src/geo_country-activity/resources/geo_country/Makefile.am:
* src/geo_country-activity/resources/geo_country/argentina/Makefile
.am:
* src/geo_country-activity/resources/geo_country/france/Makefile.am
:
* src/geo_country-activity/resources/geo_country/germany/Makefile.a
m:
* src/geo_country-activity/resources/geo_country/norway/Makefile.am
:
* src/geo_country-activity/resources/geo_country/poland/Makefile.am
:
* src/geo_country-activity/resources/geo_country/turkey/Makefile.am
:
* src/paintings-activity/resources/paintings/Makefile.am:
* src/paintings-activity/resources/paintings/board1_1.xml.in:
* src/paintings-activity/resources/paintings/board1_2.xml.in:
* src/paintings-activity/resources/paintings/board1_3.xml.in:
* src/paintings-activity/resources/paintings/board2_0.xml.in:
* src/paintings-activity/resources/paintings/board3_1.xml.in:
2008-05-04 Bruno Coudoin <[email protected]>
Syncing goocanvas and pygoocanvas with upstream goocanvas 0.10
* src/boards/goocanvas.c:
(_wrap_GooCanvasItemSimple__proxy_do_simple_create_path),
(_wrap_GooCanvasItemSimple__proxy_do_simple_update),
(_wrap_GooCanvasItemSimple__proxy_do_simple_paint),
(_wrap_GooCanvasItemSimple__proxy_do_simple_is_item_at),
(_wrap_goo_canvas_text_get_natural_extents),
(_wrap_goo_canvas_item_get_child_property),
(_wrap_goo_canvas_item_set_child_property),
(_wrap_goo_canvas_item_get_simple_transform),
(_wrap_GooCanvasItem__proxy_do_update),
(_wrap_GooCanvasItem__proxy_do_paint),
(_wrap_GooCanvasItem__proxy_do_get_requested_area),
(_wrap_GooCanvasItem__proxy_do_allocate_area),
(_wrap_GooCanvasItem__proxy_do_get_requested_height),
(_wrap_goo_canvas_item_model_get_child_property),
(_wrap_goo_canvas_item_model_set_child_property),
(_wrap_goo_canvas_item_model_get_simple_transform),
(pygoocanvas_register_classes):
* src/goocanvas/src/CVS/Entries:
* src/goocanvas/src/CVS/Repository:
* src/goocanvas/src/CVS/Root:
* src/goocanvas/src/goocanvas.c: (goo_canvas_class_init),
(goo_canvas_init), (goo_canvas_get_default_line_width),
(goo_canvas_create_cairo_context), (goo_canvas_get_property),
(goo_canvas_set_property), (goo_canvas_expose_event),
(goo_canvas_render):
* src/goocanvas/src/goocanvas.h:
* src/goocanvas/src/goocanvasimage.c:
(goo_canvas_image_set_common_property):
* src/goocanvas/src/goocanvasitem.c: (goo_canvas_item_add_child),