-
Notifications
You must be signed in to change notification settings - Fork 5
/
DIFFSTAT
5256 lines (5187 loc) · 236 KB
/
DIFFSTAT
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 4.9.1 **
(git diff -b --stat --summary -M v4.9.0 HEAD)
backend.c | 14 +-
configure.ac | 2 +-
dialogs.c | 7 +-
gtk/xboard.c | 1 -
moves.c | 15 +
po/da.po | 856 ++++++++++++++++++++++++++---------------------------
po/de.po | 856 ++++++++++++++++++++++++++---------------------------
po/es.po | 856 ++++++++++++++++++++++++++---------------------------
po/fr.po | 856 ++++++++++++++++++++++++++---------------------------
po/it.po | 856 ++++++++++++++++++++++++++---------------------------
po/nl.po | 856 ++++++++++++++++++++++++++---------------------------
po/pl.po | 856 ++++++++++++++++++++++++++---------------------------
po/ru.po | 856 ++++++++++++++++++++++++++---------------------------
po/sr.po | 856 ++++++++++++++++++++++++++---------------------------
po/tr.po | 856 ++++++++++++++++++++++++++---------------------------
po/uk.po | 856 ++++++++++++++++++++++++++---------------------------
po/vi.po | 856 ++++++++++++++++++++++++++---------------------------
po/xboard.pot | 858 +++++++++++++++++++++++++++---------------------------
po/zh_CN.po | 856 ++++++++++++++++++++++++++---------------------------
po/zh_HK.po | 856 ++++++++++++++++++++++++++---------------------------
po/zh_TW.po | 856 ++++++++++++++++++++++++++---------------------------
winboard/config.h | 6 +-
22 files changed, 6881 insertions(+), 6862 deletions(-)
** Version 4.9.0 **
(git diff -b --stat --summary -M v4.8.0 HEAD)
COPYRIGHT | 2 +-
Makefile.am | 72 +-
args.h | 73 +-
autogen.sh | 3 +-
backend.c | 1171 ++++++--
backend.h | 12 +-
backendz.h | 3 +-
board.c | 195 +-
board.h | 3 +-
book.c | 75 +-
childio.c | 3 +-
childio.h | 3 +-
cmail.in | 2 +-
common.h | 51 +-
conf/chu | 2 +-
conf/shogi | 4 +
configure.ac | 30 +-
copyright.texi | 2 +-
dialogs.c | 505 +++-
dialogs.h | 19 +-
draw.c | 301 +-
draw.h | 6 +-
engine-intf.html | 23 +-
engineoutput.c | 37 +-
engineoutput.h | 5 +-
evalgraph.c | 3 +-
evalgraph.h | 3 +-
frontend.h | 9 +-
gamelist.c | 5 +-
gtk/xboard.c | 237 +-
gtk/xboard.h | 5 +-
gtk/xengineoutput.c | 3 +-
gtk/xoptions.c | 304 +-
gtk/xtimer.c | 6 +-
history.c | 3 +-
lists.c | 3 +-
lists.h | 3 +-
menus.c | 58 +-
menus.h | 6 +-
moves.c | 301 +-
moves.h | 14 +-
nengineoutput.c | 3 +-
nevalgraph.c | 3 +-
ngamelist.c | 5 +-
nhistory.c | 2 +-
osxapp/Info.plist.in | 2 +-
osxapp/OSX-theme/gtk-2.0/assets/handle.png | Bin 186 -> 0 bytes
.../gtk-2.0/assets/l-checkbox-checked-18.png | Bin 814 -> 0 bytes
.../assets/l-checkbox-checked-insensitive-18.png | Bin 639 -> 0 bytes
.../gtk-2.0/assets/l-checkbox-unchecked-18.png | Bin 413 -> 0 bytes
.../assets/l-checkbox-unchecked-insensitive-18.png | Bin 356 -> 0 bytes
.../gtk-2.0/assets/l-radio-selected-18.png | Bin 890 -> 0 bytes
.../assets/l-radio-selected-insensitive-18.png | Bin 643 -> 0 bytes
.../gtk-2.0/assets/l-radio-unselected-18.png | Bin 606 -> 0 bytes
.../assets/l-radio-unselected-insensitive-18.png | Bin 546 -> 0 bytes
.../gtk-2.0/assets/notebook-gap-bottom.png | Bin 159 -> 0 bytes
.../OSX-theme/gtk-2.0/assets/notebook-gap-left.png | Bin 85 -> 0 bytes
.../gtk-2.0/assets/notebook-gap-right.png | Bin 84 -> 0 bytes
.../OSX-theme/gtk-2.0/assets/notebook-gap-top.png | Bin 158 -> 0 bytes
osxapp/OSX-theme/gtk-2.0/assets/notebook.png | Bin 227 -> 0 bytes
osxapp/OSX-theme/gtk-2.0/assets/null.png | Bin 1164 -> 0 bytes
.../OSX-theme/gtk-2.0/assets/scroll-background.png | Bin 155 -> 0 bytes
.../OSX-theme/gtk-2.0/assets/slider-horizontal.png | Bin 828 -> 0 bytes
.../OSX-theme/gtk-2.0/assets/tab-bottom-active.png | Bin 924 -> 0 bytes
osxapp/OSX-theme/gtk-2.0/assets/tab-bottom.png | Bin 888 -> 0 bytes
.../OSX-theme/gtk-2.0/assets/tab-left-active.png | Bin 451 -> 0 bytes
osxapp/OSX-theme/gtk-2.0/assets/tab-left.png | Bin 763 -> 0 bytes
.../OSX-theme/gtk-2.0/assets/tab-right-active.png | Bin 453 -> 0 bytes
osxapp/OSX-theme/gtk-2.0/assets/tab-right.png | Bin 787 -> 0 bytes
osxapp/OSX-theme/gtk-2.0/assets/tab-top-active.png | Bin 920 -> 0 bytes
osxapp/OSX-theme/gtk-2.0/assets/tab-top.png | Bin 897 -> 0 bytes
osxapp/OSX-theme/gtk-2.0/assets/toolbar.png | Bin 214 -> 0 bytes
osxapp/OSX-theme/gtk-2.0/gtkrc | 798 -----
osxapp/XBoard.gtklauncher | 5 +-
osxapp/gtk2-themes/Mac/gtk-2.0/gtkrc | 672 +++++
osxapp/gtkrc | 11 +-
osxapp/info.command | 2 -
osxapp/logos/207.99.83.228.png | Bin 16710 -> 19696 bytes
.../logos/{69.36.243.188.png => freechess.org.png} | Bin
osxapp/man.command | 2 -
osxapp/osx-localization/.DS_Store | Bin 6148 -> 0 bytes
.../da.lproj/GtkosxApplication.strings | Bin 1056 -> 0 bytes
.../de.lproj/GtkosxApplication.strings | Bin 1104 -> 0 bytes
.../en.lproj/GtkosxApplication.strings | Bin 1066 -> 0 bytes
.../es.lproj/GtkosxApplication.strings | Bin 1078 -> 0 bytes
.../it.lproj/GtkosxApplication.strings | Bin 1116 -> 0 bytes
.../nl.lproj/GtkosxApplication.strings | Bin 1100 -> 0 bytes
.../pl.lproj/GtkosxApplication.strings | Bin 1084 -> 0 bytes
.../ru.lproj/GtkosxApplication.strings | Bin 1088 -> 0 bytes
.../tr.lproj/GtkosxApplication.strings | Bin 1038 -> 0 bytes
.../uk.lproj/GtkosxApplication.strings | Bin 610 -> 0 bytes
.../vi.lproj/GtkosxApplication.strings | Bin 1064 -> 0 bytes
.../zh_CN.lproj/GtkosxApplication.strings | Bin 944 -> 0 bytes
.../zh_HK.lproj/GtkosxApplication.strings | Bin 934 -> 0 bytes
.../zh_TW.lproj/GtkosxApplication.strings | Bin 944 -> 0 bytes
osxapp/pango.modules | 5 -
osxapp/{ => themes}/default/eo_Analyzing.png | Bin
osxapp/{ => themes}/default/eo_Black.png | Bin
osxapp/{ => themes}/default/eo_Clear.png | Bin
osxapp/{ => themes}/default/eo_Ponder.png | Bin
osxapp/{ => themes}/default/eo_Thinking.png | Bin
osxapp/{ => themes}/default/eo_Unknown.png | Bin
osxapp/{ => themes}/default/eo_White.png | Bin
osxapp/{ => themes}/default/icon_black.png | Bin
osxapp/{ => themes}/default/icon_white.png | Bin
parser.c | 295 +-
parser.h | 7 +-
pgntags.c | 7 +-
png/{xqboard.png => xqboard-9x10.png} | Bin
png/{xqwood.png => xqwood-9x10.png} | Bin
po/LINGUAS | 2 +-
po/da.po | 1598 +++++-----
po/de.po | 2568 ++++++++--------
po/es.po | 1600 +++++-----
po/fr.po | 3173 ++++++++++++++++++++
po/it.po | 1586 +++++-----
po/lng2po.sh | 2 +-
po/nl.po | 1691 ++++++-----
po/pl.po | 1591 +++++-----
po/ru.po | 2596 ++++++++--------
po/sr.po | 3170 +++++++++++++++++++
po/tr.po | 1576 +++++-----
po/uk.po | 1606 +++++-----
po/vi.po | 1586 +++++-----
po/xboard.pot | 1571 +++++-----
po/zh_CN.po | 3136 ++++++++++---------
po/zh_HK.po | 1587 +++++-----
po/zh_TW.po | 1587 +++++-----
svg/BlackAxe.svg | 107 +
svg/BlackButterfly.svg | 173 ++
svg/BlackCamel.svg | 109 +
svg/BlackCopper.svg | 109 +
svg/BlackCub.svg | 172 ++
svg/BlackDragon.svg | 119 +
svg/BlackDuck.svg | 112 +
svg/BlackFlag.svg | 139 +
svg/BlackGnu.svg | 154 +
svg/BlackHat.svg | 112 +
svg/BlackIron.svg | 163 +
svg/BlackLShield.svg | 176 ++
svg/BlackLeft.svg | 173 ++
svg/BlackPegasus.svg | 142 +
svg/BlackRShield.svg | 177 ++
svg/BlackRight.svg | 172 ++
svg/BlackTower.svg | 135 +
svg/BlackUnicorn.svg | 37 +-
svg/BlackViking.svg | 113 +
svg/BlackWizard.svg | 164 +
svg/BlackWolf.svg | 86 +
svg/BlackZebra.svg | 118 +
svg/WhiteAxe.svg | 85 +
svg/WhiteButterfly.svg | 157 +
svg/WhiteCamel.svg | 110 +
svg/WhiteClaw.svg | 24 +-
svg/WhiteCopper.svg | 100 +
svg/WhiteCub.svg | 171 ++
svg/WhiteDolphin.svg | 31 +-
svg/WhiteDragon.svg | 105 +
svg/WhiteDuck.svg | 112 +
svg/WhiteFlag.svg | 103 +
svg/WhiteGnu.svg | 176 ++
svg/WhiteHSword.svg | 19 +-
svg/WhiteHat.svg | 112 +
svg/WhiteIron.svg | 171 ++
svg/WhiteLShield.svg | 170 ++
svg/WhiteLeft.svg | 185 ++
svg/WhiteLeopard.svg | 91 +-
svg/WhiteLion.svg | 85 +-
svg/WhitePegasus.svg | 112 +
svg/WhitePromoHSword.svg | 18 +-
svg/WhitePromoSword.svg | 18 +-
svg/WhiteRShield.svg | 171 ++
svg/WhiteRight.svg | 186 ++
svg/WhiteSword.svg | 29 +-
svg/WhiteTower.svg | 138 +
svg/WhiteUnicorn.svg | 37 +-
svg/WhiteViking.svg | 109 +
svg/WhiteWizard.svg | 158 +
svg/WhiteWolf.svg | 71 +
svg/WhiteZebra.svg | 126 +
themes/shogi/{BlackJewled.svg => BlackZebra.svg} | 0
themes/shogi/{WhiteJewled.svg => WhiteZebra.svg} | 0
uci.c | 3 +-
usounds.c | 5 +-
usystem.c | 49 +-
usystem.h | 3 +-
winboard/bitmaps/camel49o.bmp | Bin 0 -> 454 bytes
winboard/bitmaps/camel49s.bmp | Bin 0 -> 454 bytes
winboard/bitmaps/camel49w.bmp | Bin 0 -> 454 bytes
winboard/bitmaps/camel72o.bmp | Bin 0 -> 926 bytes
winboard/bitmaps/camel72s.bmp | Bin 0 -> 926 bytes
winboard/bitmaps/camel72w.bmp | Bin 0 -> 926 bytes
winboard/bitmaps/wolf49o.bmp | Bin 0 -> 454 bytes
winboard/bitmaps/wolf49s.bmp | Bin 0 -> 454 bytes
winboard/bitmaps/wolf49w.bmp | Bin 0 -> 454 bytes
winboard/bitmaps/wolf72o.bmp | Bin 0 -> 926 bytes
winboard/bitmaps/wolf72s.bmp | Bin 0 -> 926 bytes
winboard/bitmaps/wolf72w.bmp | Bin 0 -> 926 bytes
winboard/bitmaps/zebra49o.bmp | Bin 0 -> 454 bytes
winboard/bitmaps/zebra49s.bmp | Bin 0 -> 454 bytes
winboard/bitmaps/zebra72o.bmp | Bin 0 -> 926 bytes
winboard/bitmaps/zebra72s.bmp | Bin 0 -> 926 bytes
winboard/config.h | 6 +-
winboard/defaults.h | 7 +-
winboard/help.c | 2 +-
winboard/help/html/24.htm | 2 +-
winboard/jaws.c | 5 +-
winboard/language.txt | 2 +-
winboard/wchat.c | 3 +-
winboard/wclipbrd.c | 7 +-
winboard/wclipbrd.h | 3 +-
winboard/wedittags.c | 3 +-
winboard/wengineoutput.c | 3 +-
winboard/wevalgraph.c | 3 +-
winboard/wgamelist.c | 3 +-
winboard/whistory.c | 3 +-
winboard/winboard.c | 136 +-
winboard/winboard.h | 3 +-
winboard/winboard.rc | 56 +-
winboard/wlayout.c | 3 +-
winboard/woptions.c | 17 +-
winboard/woptions.h | 3 +-
winboard/wsettings.c | 31 +-
winboard/wsockerr.c | 2 +-
winboard/wsockerr.h | 2 +-
xaw/xboard.c | 27 +-
xaw/xboard.h | 3 +-
xaw/xengineoutput.c | 2 +-
xaw/xgamelist.c | 2 +-
xaw/xgamelist.h | 2 +-
xaw/xhistory.c | 2 +-
xaw/xhistory.h | 2 +-
xaw/xoptions.c | 32 +-
xboard.conf | 11 +-
xboard.texi | 1495 ++++++---
xboard2.h | 3 +-
zippy.c | 2 +-
zippy.h | 2 +-
238 files changed, 31374 insertions(+), 14328 deletions(-)
delete mode 100755 osxapp/OSX-theme/gtk-2.0/assets/handle.png
delete mode 100755 osxapp/OSX-theme/gtk-2.0/assets/l-checkbox-checked-18.png
delete mode 100644 osxapp/OSX-theme/gtk-2.0/assets/l-checkbox-checked-insensitive-18.png
delete mode 100755 osxapp/OSX-theme/gtk-2.0/assets/l-checkbox-unchecked-18.png
delete mode 100644 osxapp/OSX-theme/gtk-2.0/assets/l-checkbox-unchecked-insensitive-18.png
delete mode 100755 osxapp/OSX-theme/gtk-2.0/assets/l-radio-selected-18.png
delete mode 100644 osxapp/OSX-theme/gtk-2.0/assets/l-radio-selected-insensitive-18.png
delete mode 100755 osxapp/OSX-theme/gtk-2.0/assets/l-radio-unselected-18.png
delete mode 100644 osxapp/OSX-theme/gtk-2.0/assets/l-radio-unselected-insensitive-18.png
delete mode 100755 osxapp/OSX-theme/gtk-2.0/assets/notebook-gap-bottom.png
delete mode 100755 osxapp/OSX-theme/gtk-2.0/assets/notebook-gap-left.png
delete mode 100755 osxapp/OSX-theme/gtk-2.0/assets/notebook-gap-right.png
delete mode 100755 osxapp/OSX-theme/gtk-2.0/assets/notebook-gap-top.png
delete mode 100755 osxapp/OSX-theme/gtk-2.0/assets/notebook.png
delete mode 100755 osxapp/OSX-theme/gtk-2.0/assets/null.png
delete mode 100755 osxapp/OSX-theme/gtk-2.0/assets/scroll-background.png
delete mode 100755 osxapp/OSX-theme/gtk-2.0/assets/slider-horizontal.png
delete mode 100755 osxapp/OSX-theme/gtk-2.0/assets/tab-bottom-active.png
delete mode 100755 osxapp/OSX-theme/gtk-2.0/assets/tab-bottom.png
delete mode 100755 osxapp/OSX-theme/gtk-2.0/assets/tab-left-active.png
delete mode 100755 osxapp/OSX-theme/gtk-2.0/assets/tab-left.png
delete mode 100755 osxapp/OSX-theme/gtk-2.0/assets/tab-right-active.png
delete mode 100755 osxapp/OSX-theme/gtk-2.0/assets/tab-right.png
delete mode 100755 osxapp/OSX-theme/gtk-2.0/assets/tab-top-active.png
delete mode 100755 osxapp/OSX-theme/gtk-2.0/assets/tab-top.png
delete mode 100755 osxapp/OSX-theme/gtk-2.0/assets/toolbar.png
delete mode 100755 osxapp/OSX-theme/gtk-2.0/gtkrc
create mode 100644 osxapp/gtk2-themes/Mac/gtk-2.0/gtkrc
delete mode 100755 osxapp/info.command
rename osxapp/logos/{69.36.243.188.png => freechess.org.png} (100%)
delete mode 100755 osxapp/man.command
delete mode 100644 osxapp/osx-localization/.DS_Store
delete mode 100755 osxapp/osx-localization/da.lproj/GtkosxApplication.strings
delete mode 100755 osxapp/osx-localization/de.lproj/GtkosxApplication.strings
delete mode 100755 osxapp/osx-localization/en.lproj/GtkosxApplication.strings
delete mode 100755 osxapp/osx-localization/es.lproj/GtkosxApplication.strings
delete mode 100755 osxapp/osx-localization/it.lproj/GtkosxApplication.strings
delete mode 100755 osxapp/osx-localization/nl.lproj/GtkosxApplication.strings
delete mode 100755 osxapp/osx-localization/pl.lproj/GtkosxApplication.strings
delete mode 100755 osxapp/osx-localization/ru.lproj/GtkosxApplication.strings
delete mode 100755 osxapp/osx-localization/tr.lproj/GtkosxApplication.strings
delete mode 100755 osxapp/osx-localization/uk.lproj/GtkosxApplication.strings
delete mode 100755 osxapp/osx-localization/vi.lproj/GtkosxApplication.strings
delete mode 100755 osxapp/osx-localization/zh_CN.lproj/GtkosxApplication.strings
delete mode 100755 osxapp/osx-localization/zh_HK.lproj/GtkosxApplication.strings
delete mode 100755 osxapp/osx-localization/zh_TW.lproj/GtkosxApplication.strings
delete mode 100644 osxapp/pango.modules
rename osxapp/{ => themes}/default/eo_Analyzing.png (100%)
rename osxapp/{ => themes}/default/eo_Black.png (100%)
rename osxapp/{ => themes}/default/eo_Clear.png (100%)
rename osxapp/{ => themes}/default/eo_Ponder.png (100%)
rename osxapp/{ => themes}/default/eo_Thinking.png (100%)
rename osxapp/{ => themes}/default/eo_Unknown.png (100%)
rename osxapp/{ => themes}/default/eo_White.png (100%)
rename osxapp/{ => themes}/default/icon_black.png (100%)
rename osxapp/{ => themes}/default/icon_white.png (100%)
rename png/{xqboard.png => xqboard-9x10.png} (100%)
rename png/{xqwood.png => xqwood-9x10.png} (100%)
create mode 100644 po/fr.po
create mode 100644 po/sr.po
create mode 100644 svg/BlackAxe.svg
create mode 100644 svg/BlackButterfly.svg
create mode 100644 svg/BlackCamel.svg
create mode 100644 svg/BlackCopper.svg
create mode 100644 svg/BlackCub.svg
create mode 100644 svg/BlackDragon.svg
create mode 100644 svg/BlackDuck.svg
create mode 100644 svg/BlackFlag.svg
create mode 100644 svg/BlackGnu.svg
create mode 100644 svg/BlackHat.svg
create mode 100644 svg/BlackIron.svg
create mode 100644 svg/BlackLShield.svg
create mode 100644 svg/BlackLeft.svg
create mode 100644 svg/BlackPegasus.svg
create mode 100644 svg/BlackRShield.svg
create mode 100644 svg/BlackRight.svg
create mode 100644 svg/BlackTower.svg
create mode 100644 svg/BlackViking.svg
create mode 100644 svg/BlackWizard.svg
create mode 100644 svg/BlackWolf.svg
create mode 100644 svg/BlackZebra.svg
create mode 100644 svg/WhiteAxe.svg
create mode 100644 svg/WhiteButterfly.svg
create mode 100644 svg/WhiteCamel.svg
create mode 100644 svg/WhiteCopper.svg
create mode 100644 svg/WhiteCub.svg
create mode 100644 svg/WhiteDragon.svg
create mode 100644 svg/WhiteDuck.svg
create mode 100644 svg/WhiteFlag.svg
create mode 100644 svg/WhiteGnu.svg
create mode 100644 svg/WhiteHat.svg
create mode 100644 svg/WhiteIron.svg
create mode 100644 svg/WhiteLShield.svg
create mode 100644 svg/WhiteLeft.svg
create mode 100644 svg/WhitePegasus.svg
create mode 100644 svg/WhiteRShield.svg
create mode 100644 svg/WhiteRight.svg
create mode 100644 svg/WhiteTower.svg
create mode 100644 svg/WhiteViking.svg
create mode 100644 svg/WhiteWizard.svg
create mode 100644 svg/WhiteWolf.svg
create mode 100644 svg/WhiteZebra.svg
rename themes/shogi/{BlackJewled.svg => BlackZebra.svg} (100%)
rename themes/shogi/{WhiteJewled.svg => WhiteZebra.svg} (100%)
create mode 100644 winboard/bitmaps/camel49o.bmp
create mode 100644 winboard/bitmaps/camel49s.bmp
create mode 100644 winboard/bitmaps/camel49w.bmp
create mode 100644 winboard/bitmaps/camel72o.bmp
create mode 100644 winboard/bitmaps/camel72s.bmp
create mode 100644 winboard/bitmaps/camel72w.bmp
create mode 100644 winboard/bitmaps/wolf49o.bmp
create mode 100644 winboard/bitmaps/wolf49s.bmp
create mode 100644 winboard/bitmaps/wolf49w.bmp
create mode 100644 winboard/bitmaps/wolf72o.bmp
create mode 100644 winboard/bitmaps/wolf72s.bmp
create mode 100644 winboard/bitmaps/wolf72w.bmp
create mode 100644 winboard/bitmaps/zebra49o.bmp
create mode 100644 winboard/bitmaps/zebra49s.bmp
create mode 100644 winboard/bitmaps/zebra72o.bmp
create mode 100644 winboard/bitmaps/zebra72s.bmp
** Version 4.8.0 **
(git diff -b --stat --summary -M v4.7.3 HEAD)
.gitignore | 20 +
ABOUT-NLS | 1282 --------
ChangeLog | 1623 +++++++++++
DIFFSTAT | 439 +++
Makefile.am | 172 +-
NEWS | 89 +
SHORTLOG | 365 +++
args.h | 108 +-
autogen.sh | 3 +-
backend.c | 1314 +++++++--
backend.h | 26 +-
board.c | 15 +-
book.c | 12 +
common.h | 66 +-
conf/chu | 42 +
conf/ics | 10 +
conf/judkins | 19 +
conf/judkins.fen | 2 +
conf/mini | 24 +
conf/mini.fen | 2 +
conf/sho | 28 +
conf/sho.fen | 2 +
conf/shogi | 41 +
conf/xiangqi | 30 +
conf/xq | 36 +
config.rpath | 672 -----
configure.ac | 173 +-
dialogs.c | 713 ++++-
dialogs.h | 17 +-
draw.c | 136 +-
draw.h | 3 +-
engine-intf.html | 182 +-
engineoutput.c | 148 +-
engineoutput.h | 1 +
evalgraph.c | 15 +-
evalgraph.h | 3 +-
frontend.h | 7 +-
gamelist.c | 10 +-
gtk/xboard.c | 341 ++-
gtk/xboard.h | 39 +-
gtk/xengineoutput.c | 21 +-
gtk/xoptions.c | 179 +-
m4/gettext.m4 | 383 ---
m4/iconv.m4 | 214 --
m4/lib-ld.m4 | 110 -
m4/lib-link.m4 | 774 -----
m4/lib-prefix.m4 | 224 --
m4/nls.m4 | 32 -
m4/po.m4 | 449 ---
m4/progtest.m4 | 92 -
menus.c | 152 +-
menus.h | 3 +
moves.c | 1028 +++++--
moves.h | 12 +-
nengineoutput.c | 14 +-
nevalgraph.c | 17 +-
ngamelist.c | 13 +-
nhistory.c | 2 +-
osxapp/Info.plist.in | 188 ++
osxapp/OSX-theme/gtk-2.0/assets/handle.png | Bin 0 -> 186 bytes
.../gtk-2.0/assets/l-checkbox-checked-18.png | Bin 0 -> 814 bytes
.../assets/l-checkbox-checked-insensitive-18.png | Bin 0 -> 639 bytes
.../gtk-2.0/assets/l-checkbox-unchecked-18.png | Bin 0 -> 413 bytes
.../assets/l-checkbox-unchecked-insensitive-18.png | Bin 0 -> 356 bytes
.../gtk-2.0/assets/l-radio-selected-18.png | Bin 0 -> 890 bytes
.../assets/l-radio-selected-insensitive-18.png | Bin 0 -> 643 bytes
.../gtk-2.0/assets/l-radio-unselected-18.png | Bin 0 -> 606 bytes
.../assets/l-radio-unselected-insensitive-18.png | Bin 0 -> 546 bytes
.../gtk-2.0/assets/notebook-gap-bottom.png | Bin 0 -> 159 bytes
.../OSX-theme/gtk-2.0/assets/notebook-gap-left.png | Bin 0 -> 85 bytes
.../gtk-2.0/assets/notebook-gap-right.png | Bin 0 -> 84 bytes
.../OSX-theme/gtk-2.0/assets/notebook-gap-top.png | Bin 0 -> 158 bytes
osxapp/OSX-theme/gtk-2.0/assets/notebook.png | Bin 0 -> 227 bytes
osxapp/OSX-theme/gtk-2.0/assets/null.png | Bin 0 -> 1164 bytes
.../OSX-theme/gtk-2.0/assets/scroll-background.png | Bin 0 -> 155 bytes
.../OSX-theme/gtk-2.0/assets/slider-horizontal.png | Bin 0 -> 828 bytes
.../OSX-theme/gtk-2.0/assets/tab-bottom-active.png | Bin 0 -> 924 bytes
osxapp/OSX-theme/gtk-2.0/assets/tab-bottom.png | Bin 0 -> 888 bytes
.../OSX-theme/gtk-2.0/assets/tab-left-active.png | Bin 0 -> 451 bytes
osxapp/OSX-theme/gtk-2.0/assets/tab-left.png | Bin 0 -> 763 bytes
.../OSX-theme/gtk-2.0/assets/tab-right-active.png | Bin 0 -> 453 bytes
osxapp/OSX-theme/gtk-2.0/assets/tab-right.png | Bin 0 -> 787 bytes
osxapp/OSX-theme/gtk-2.0/assets/tab-top-active.png | Bin 0 -> 920 bytes
osxapp/OSX-theme/gtk-2.0/assets/tab-top.png | Bin 0 -> 897 bytes
osxapp/OSX-theme/gtk-2.0/assets/toolbar.png | Bin 0 -> 214 bytes
osxapp/OSX-theme/gtk-2.0/gtkrc | 798 +++++
osxapp/PkgInfo | 1 +
osxapp/XBoard.gtklauncher | 74 +
osxapp/default/eo_Analyzing.png | Bin 0 -> 462 bytes
osxapp/default/eo_Black.png | Bin 0 -> 292 bytes
osxapp/default/eo_Clear.png | Bin 0 -> 159 bytes
osxapp/default/eo_Ponder.png | Bin 0 -> 607 bytes
osxapp/default/eo_Thinking.png | Bin 0 -> 492 bytes
osxapp/default/eo_Unknown.png | Bin 0 -> 467 bytes
osxapp/default/eo_White.png | Bin 0 -> 400 bytes
osxapp/default/icon_black.png | Bin 0 -> 36898 bytes
osxapp/default/icon_white.png | Bin 0 -> 36619 bytes
osxapp/gtkrc | 4 +
osxapp/icons/XBoard.icns | Bin 0 -> 200555 bytes
osxapp/icons/fen.icns | Bin 0 -> 160673 bytes
osxapp/icons/pgn.icns | Bin 0 -> 165002 bytes
osxapp/icons/trn.icns | Bin 0 -> 161616 bytes
osxapp/icons/xop.icns | Bin 0 -> 167993 bytes
osxapp/info.command | 2 +
osxapp/launcher_rc | 1 +
osxapp/logos/207.99.83.228.png | Bin 0 -> 16710 bytes
osxapp/logos/69.36.243.188.png | Bin 0 -> 7260 bytes
osxapp/logos/dummy.png | Bin 0 -> 9465 bytes
osxapp/logos/winboard.nl.png | Bin 0 -> 28755 bytes
osxapp/man.command | 2 +
osxapp/osx-localization/.DS_Store | Bin 0 -> 6148 bytes
.../da.lproj/GtkosxApplication.strings | Bin 0 -> 1056 bytes
.../de.lproj/GtkosxApplication.strings | Bin 0 -> 1104 bytes
.../en.lproj/GtkosxApplication.strings | Bin 0 -> 1066 bytes
.../es.lproj/GtkosxApplication.strings | Bin 0 -> 1078 bytes
.../it.lproj/GtkosxApplication.strings | Bin 0 -> 1116 bytes
.../nl.lproj/GtkosxApplication.strings | Bin 0 -> 1100 bytes
.../pl.lproj/GtkosxApplication.strings | Bin 0 -> 1084 bytes
.../ru.lproj/GtkosxApplication.strings | Bin 0 -> 1088 bytes
.../tr.lproj/GtkosxApplication.strings | Bin 0 -> 1038 bytes
.../uk.lproj/GtkosxApplication.strings | Bin 0 -> 610 bytes
.../vi.lproj/GtkosxApplication.strings | Bin 0 -> 1064 bytes
.../zh_CN.lproj/GtkosxApplication.strings | Bin 0 -> 944 bytes
.../zh_HK.lproj/GtkosxApplication.strings | Bin 0 -> 934 bytes
.../zh_TW.lproj/GtkosxApplication.strings | Bin 0 -> 944 bytes
osxapp/pango.modules | 5 +
parser.c | 29 +-
pgntags.c | 8 +
pixmaps/ANALYZING_14.xpm | 23 -
pixmaps/BLACK_14.xpm | 23 -
pixmaps/CLEAR_14.xpm | 23 -
pixmaps/PONDER_14.xpm | 23 -
pixmaps/THINKING_14.xpm | 23 -
pixmaps/UNKNOWN_14.xpm | 23 -
pixmaps/WHITE_14.xpm | 23 -
pixmaps/board32.png | Bin 0 -> 291 bytes
pixmaps/board32.xpm | 42 -
pixmaps/board48.png | Bin 0 -> 306 bytes
pixmaps/board48.xpm | 58 -
pixmaps/cross32.png | Bin 0 -> 370 bytes
pixmaps/cross32.xpm | 42 -
pixmaps/cross48.png | Bin 0 -> 390 bytes
pixmaps/cross48.xpm | 58 -
pixmaps/ini32.png | Bin 0 -> 339 bytes
pixmaps/ini32.xpm | 41 -
pixmaps/ini48.png | Bin 0 -> 388 bytes
pixmaps/ini48.xpm | 57 -
png/xqboard.png | Bin 4423 -> 2534 bytes
po/LINGUAS | 2 +-
po/Makefile.in.in | 446 ---
po/Makevars.template | 41 -
po/Rules-quot | 47 -
po/boldquot.sed | 10 -
po/da.po | 1656 ++++++-----
po/de.po | 1851 ++++++------
po/[email protected] | 25 -
po/[email protected] | 22 -
po/es.po | 2783 +++++++++---------
po/insert-header.sin | 23 -
po/it.po | 1612 +++++-----
po/nl.po | 3014 +++++++++++++++++++
po/pl.po | 3077 ++++++++++++++++++++
po/quot.sed | 6 -
po/remove-potcdate.sin | 19 -
po/ru.po | 1607 +++++-----
po/tr.po | 1588 +++++-----
po/uk.po | 1682 ++++++-----
po/vi.po | 1596 +++++-----
po/xboard.pot | 1573 +++++-----
po/zh_CN.po | 1604 +++++-----
po/zh_HK.po | 1605 +++++-----
po/zh_TW.po | 1604 +++++-----
sounds/roar.wav | Bin 0 -> 24664 bytes
svg/BlackClaw.svg | 162 ++
svg/BlackDolphin.svg | 104 +
svg/BlackHCrown.svg | 129 +
svg/BlackHSword.svg | 115 +
svg/BlackLeopard.svg | 168 ++
svg/BlackLion.svg | 172 ++
svg/BlackPromoBishop.svg | 92 +
svg/BlackPromoDragon.svg | 109 +
svg/BlackPromoHSword.svg | 110 +
svg/BlackPromoHorse.svg | 88 +
svg/BlackPromoRook.svg | 104 +
svg/BlackPromoSword.svg | 108 +
svg/BlackSword.svg | 113 +
svg/WhiteClaw.svg | 161 +
svg/WhiteDolphin.svg | 105 +
svg/WhiteHCrown.svg | 129 +
svg/WhiteHSword.svg | 107 +
svg/WhiteLeopard.svg | 169 ++
svg/WhiteLion.svg | 173 ++
svg/WhitePromoBishop.svg | 84 +
svg/WhitePromoDragon.svg | 100 +
svg/WhitePromoHSword.svg | 102 +
svg/WhitePromoHorse.svg | 80 +
svg/WhitePromoRook.svg | 94 +
svg/WhitePromoSword.svg | 100 +
svg/WhiteSword.svg | 105 +
themes/shogi/BlackAdvisor.svg | 193 +-
themes/shogi/BlackBishop.svg | 149 +-
themes/shogi/BlackCrownedBishop.svg | 120 +-
themes/shogi/BlackCrownedRook.svg | 159 +-
themes/shogi/BlackElephant.svg | 65 +
themes/shogi/BlackGold.svg | 179 +-
themes/shogi/BlackGoldKnight.svg | 95 +-
themes/shogi/BlackGoldLance.svg | 97 +-
themes/shogi/BlackGoldPawn.svg | 87 +-
themes/shogi/BlackGoldSilver.svg | 109 +-
themes/shogi/BlackJewled.svg | 88 +
themes/shogi/BlackKing.svg | 151 +-
themes/shogi/BlackKnight.svg | 164 +-
themes/shogi/BlackLance.svg | 162 +-
themes/shogi/BlackPawn.svg | 136 +-
themes/shogi/BlackPrince.svg | 70 +
themes/shogi/BlackRook.svg | 160 +-
themes/shogi/WhiteAdvisor.svg | 177 +-
themes/shogi/WhiteBishop.svg | 132 +-
themes/shogi/WhiteCrownedBishop.svg | 98 +-
themes/shogi/WhiteCrownedRook.svg | 125 +-
themes/shogi/WhiteElephant.svg | 65 +
themes/shogi/WhiteGold.svg | 165 +-
themes/shogi/WhiteGoldKnight.svg | 81 +-
themes/shogi/WhiteGoldLance.svg | 83 +-
themes/shogi/WhiteGoldPawn.svg | 73 +-
themes/shogi/WhiteGoldSilver.svg | 87 +-
themes/shogi/WhiteJewled.svg | 82 +
themes/shogi/WhiteKing.svg | 142 +-
themes/shogi/WhiteKnight.svg | 150 +-
themes/shogi/WhiteLance.svg | 148 +-
themes/shogi/WhitePawn.svg | 122 +-
themes/shogi/WhitePrince.svg | 70 +
themes/shogi/WhiteRook.svg | 148 +-
usounds.c | 13 +-
usystem.c | 39 +-
usystem.h | 1 +
winboard/bitmaps/ln33o.bmp | Bin 0 -> 326 bytes
winboard/bitmaps/ln33s.bmp | Bin 0 -> 326 bytes
winboard/bitmaps/ln33w.bmp | Bin 0 -> 326 bytes
winboard/bitmaps/ln49o.bmp | Bin 0 -> 454 bytes
winboard/bitmaps/ln49s.bmp | Bin 0 -> 454 bytes
winboard/bitmaps/ln49w.bmp | Bin 0 -> 454 bytes
winboard/bitmaps/ln72o.bmp | Bin 0 -> 926 bytes
winboard/bitmaps/ln72s.bmp | Bin 0 -> 926 bytes
winboard/bitmaps/ln72w.bmp | Bin 0 -> 926 bytes
winboard/config.h | 8 +-
winboard/defaults.h | 2 +-
winboard/resource.h | 13 +-
winboard/wclipbrd.c | 5 +-
winboard/wedittags.c | 53 +-
winboard/wengineoutput.c | 3 +-
winboard/wevalgraph.c | 11 +-
winboard/wgamelist.c | 38 +-
winboard/winboard.c | 159 +-
winboard/winboard.h | 9 +
winboard/winboard.rc | 97 +-
winboard/woptions.c | 66 +-
winboard/wsettings.c | 13 +-
winboard/wsnap.c | 72 +-
xaw/xboard.c | 249 +-
xaw/xboard.h | 2 +-
xaw/xengineoutput.c | 54 +-
xaw/xoptions.c | 71 +-
xboard.conf.in => xboard.conf | 33 +-
xboard.texi | 185 +-
xboard2.h | 2 +-
zic2xpm.c | 597 ----
zic2xpm.man | 73 -
268 files changed, 30688 insertions(+), 19408 deletions(-)
delete mode 100644 ABOUT-NLS
create mode 100644 conf/chu
create mode 100644 conf/ics
create mode 100644 conf/judkins
create mode 100644 conf/judkins.fen
create mode 100644 conf/mini
create mode 100644 conf/mini.fen
create mode 100644 conf/sho
create mode 100644 conf/sho.fen
create mode 100644 conf/shogi
create mode 100644 conf/xiangqi
create mode 100644 conf/xq
delete mode 100755 config.rpath
delete mode 100644 m4/gettext.m4
delete mode 100644 m4/iconv.m4
delete mode 100644 m4/lib-ld.m4
delete mode 100644 m4/lib-link.m4
delete mode 100644 m4/lib-prefix.m4
delete mode 100644 m4/nls.m4
delete mode 100644 m4/po.m4
delete mode 100644 m4/progtest.m4
create mode 100644 osxapp/Info.plist.in
create mode 100755 osxapp/OSX-theme/gtk-2.0/assets/handle.png
create mode 100755 osxapp/OSX-theme/gtk-2.0/assets/l-checkbox-checked-18.png
create mode 100644 osxapp/OSX-theme/gtk-2.0/assets/l-checkbox-checked-insensitive-18.png
create mode 100755 osxapp/OSX-theme/gtk-2.0/assets/l-checkbox-unchecked-18.png
create mode 100644 osxapp/OSX-theme/gtk-2.0/assets/l-checkbox-unchecked-insensitive-18.png
create mode 100755 osxapp/OSX-theme/gtk-2.0/assets/l-radio-selected-18.png
create mode 100644 osxapp/OSX-theme/gtk-2.0/assets/l-radio-selected-insensitive-18.png
create mode 100755 osxapp/OSX-theme/gtk-2.0/assets/l-radio-unselected-18.png
create mode 100644 osxapp/OSX-theme/gtk-2.0/assets/l-radio-unselected-insensitive-18.png
create mode 100755 osxapp/OSX-theme/gtk-2.0/assets/notebook-gap-bottom.png
create mode 100755 osxapp/OSX-theme/gtk-2.0/assets/notebook-gap-left.png
create mode 100755 osxapp/OSX-theme/gtk-2.0/assets/notebook-gap-right.png
create mode 100755 osxapp/OSX-theme/gtk-2.0/assets/notebook-gap-top.png
create mode 100755 osxapp/OSX-theme/gtk-2.0/assets/notebook.png
create mode 100755 osxapp/OSX-theme/gtk-2.0/assets/null.png
create mode 100755 osxapp/OSX-theme/gtk-2.0/assets/scroll-background.png
create mode 100755 osxapp/OSX-theme/gtk-2.0/assets/slider-horizontal.png
create mode 100755 osxapp/OSX-theme/gtk-2.0/assets/tab-bottom-active.png
create mode 100755 osxapp/OSX-theme/gtk-2.0/assets/tab-bottom.png
create mode 100755 osxapp/OSX-theme/gtk-2.0/assets/tab-left-active.png
create mode 100755 osxapp/OSX-theme/gtk-2.0/assets/tab-left.png
create mode 100755 osxapp/OSX-theme/gtk-2.0/assets/tab-right-active.png
create mode 100755 osxapp/OSX-theme/gtk-2.0/assets/tab-right.png
create mode 100755 osxapp/OSX-theme/gtk-2.0/assets/tab-top-active.png
create mode 100755 osxapp/OSX-theme/gtk-2.0/assets/tab-top.png
create mode 100755 osxapp/OSX-theme/gtk-2.0/assets/toolbar.png
create mode 100755 osxapp/OSX-theme/gtk-2.0/gtkrc
create mode 100644 osxapp/PkgInfo
create mode 100755 osxapp/XBoard.gtklauncher
create mode 100644 osxapp/default/eo_Analyzing.png
create mode 100644 osxapp/default/eo_Black.png
create mode 100644 osxapp/default/eo_Clear.png
create mode 100644 osxapp/default/eo_Ponder.png
create mode 100644 osxapp/default/eo_Thinking.png
create mode 100644 osxapp/default/eo_Unknown.png
create mode 100644 osxapp/default/eo_White.png
create mode 100644 osxapp/default/icon_black.png
create mode 100644 osxapp/default/icon_white.png
create mode 100644 osxapp/gtkrc
create mode 100644 osxapp/icons/XBoard.icns
create mode 100644 osxapp/icons/fen.icns
create mode 100644 osxapp/icons/pgn.icns
create mode 100644 osxapp/icons/trn.icns
create mode 100644 osxapp/icons/xop.icns
create mode 100755 osxapp/info.command
create mode 100644 osxapp/launcher_rc
create mode 100644 osxapp/logos/207.99.83.228.png
create mode 100644 osxapp/logos/69.36.243.188.png
create mode 100644 osxapp/logos/dummy.png
create mode 100644 osxapp/logos/winboard.nl.png
create mode 100755 osxapp/man.command
create mode 100644 osxapp/osx-localization/.DS_Store
create mode 100755 osxapp/osx-localization/da.lproj/GtkosxApplication.strings
create mode 100755 osxapp/osx-localization/de.lproj/GtkosxApplication.strings
create mode 100755 osxapp/osx-localization/en.lproj/GtkosxApplication.strings
create mode 100755 osxapp/osx-localization/es.lproj/GtkosxApplication.strings
create mode 100755 osxapp/osx-localization/it.lproj/GtkosxApplication.strings
create mode 100755 osxapp/osx-localization/nl.lproj/GtkosxApplication.strings
create mode 100755 osxapp/osx-localization/pl.lproj/GtkosxApplication.strings
create mode 100755 osxapp/osx-localization/ru.lproj/GtkosxApplication.strings
create mode 100755 osxapp/osx-localization/tr.lproj/GtkosxApplication.strings
create mode 100755 osxapp/osx-localization/uk.lproj/GtkosxApplication.strings
create mode 100755 osxapp/osx-localization/vi.lproj/GtkosxApplication.strings
create mode 100755 osxapp/osx-localization/zh_CN.lproj/GtkosxApplication.strings
create mode 100755 osxapp/osx-localization/zh_HK.lproj/GtkosxApplication.strings
create mode 100755 osxapp/osx-localization/zh_TW.lproj/GtkosxApplication.strings
create mode 100644 osxapp/pango.modules
delete mode 100644 pixmaps/ANALYZING_14.xpm
delete mode 100644 pixmaps/BLACK_14.xpm
delete mode 100644 pixmaps/CLEAR_14.xpm
delete mode 100644 pixmaps/PONDER_14.xpm
delete mode 100644 pixmaps/THINKING_14.xpm
delete mode 100644 pixmaps/UNKNOWN_14.xpm
delete mode 100644 pixmaps/WHITE_14.xpm
create mode 100644 pixmaps/board32.png
delete mode 100644 pixmaps/board32.xpm
create mode 100644 pixmaps/board48.png
delete mode 100644 pixmaps/board48.xpm
create mode 100644 pixmaps/cross32.png
delete mode 100644 pixmaps/cross32.xpm
create mode 100644 pixmaps/cross48.png
delete mode 100644 pixmaps/cross48.xpm
create mode 100644 pixmaps/ini32.png
delete mode 100644 pixmaps/ini32.xpm
create mode 100644 pixmaps/ini48.png
delete mode 100644 pixmaps/ini48.xpm
delete mode 100644 po/Makefile.in.in
delete mode 100644 po/Makevars.template
delete mode 100644 po/Rules-quot
delete mode 100644 po/boldquot.sed
delete mode 100644 po/[email protected]
delete mode 100644 po/[email protected]
delete mode 100644 po/insert-header.sin
create mode 100644 po/nl.po
create mode 100644 po/pl.po
delete mode 100644 po/quot.sed
delete mode 100644 po/remove-potcdate.sin
create mode 100644 sounds/roar.wav
create mode 100644 svg/BlackClaw.svg
create mode 100644 svg/BlackDolphin.svg
create mode 100644 svg/BlackHCrown.svg
create mode 100644 svg/BlackHSword.svg
create mode 100644 svg/BlackLeopard.svg
create mode 100644 svg/BlackLion.svg
create mode 100644 svg/BlackPromoBishop.svg
create mode 100644 svg/BlackPromoDragon.svg
create mode 100644 svg/BlackPromoHSword.svg
create mode 100644 svg/BlackPromoHorse.svg
create mode 100644 svg/BlackPromoRook.svg
create mode 100644 svg/BlackPromoSword.svg
create mode 100644 svg/BlackSword.svg
create mode 100644 svg/WhiteClaw.svg
create mode 100644 svg/WhiteDolphin.svg
create mode 100644 svg/WhiteHCrown.svg
create mode 100644 svg/WhiteHSword.svg
create mode 100644 svg/WhiteLeopard.svg
create mode 100644 svg/WhiteLion.svg
create mode 100644 svg/WhitePromoBishop.svg
create mode 100644 svg/WhitePromoDragon.svg
create mode 100644 svg/WhitePromoHSword.svg
create mode 100644 svg/WhitePromoHorse.svg
create mode 100644 svg/WhitePromoRook.svg
create mode 100644 svg/WhitePromoSword.svg
create mode 100644 svg/WhiteSword.svg
create mode 100644 themes/shogi/BlackElephant.svg
create mode 100644 themes/shogi/BlackJewled.svg
create mode 100644 themes/shogi/BlackPrince.svg
create mode 100644 themes/shogi/WhiteElephant.svg
create mode 100644 themes/shogi/WhiteJewled.svg
create mode 100644 themes/shogi/WhitePrince.svg
create mode 100644 winboard/bitmaps/ln33o.bmp
create mode 100644 winboard/bitmaps/ln33s.bmp
create mode 100644 winboard/bitmaps/ln33w.bmp
create mode 100644 winboard/bitmaps/ln49o.bmp
create mode 100644 winboard/bitmaps/ln49s.bmp
create mode 100644 winboard/bitmaps/ln49w.bmp
create mode 100644 winboard/bitmaps/ln72o.bmp
create mode 100644 winboard/bitmaps/ln72s.bmp
create mode 100644 winboard/bitmaps/ln72w.bmp
rename xboard.conf.in => xboard.conf (65%)
delete mode 100644 zic2xpm.c
delete mode 100644 zic2xpm.man
** Version 4.7.3 **
(git diff -b --stat --summary -M v4.7.2 HEAD)
COPYRIGHT | 2 +-
README | 1 -
args.h | 10 +-
autogen.sh | 2 +-
backend.c | 27 +++-
backend.h | 42 +-----
backendz.h | 2 +-
board.c | 2 +-
board.h | 2 +-
book.c | 3 +
childio.c | 2 +-
childio.h | 2 +-
cmail.in | 2 +-
common.h | 42 +++++-
configure.ac | 4 +-
copyright.texi | 2 +-
dialogs.c | 14 +-
dialogs.h | 2 +-
doc-maint/release.org | 0
draw.c | 2 +-
draw.h | 2 +-
engineoutput.c | 4 +-
engineoutput.h | 2 +-
evalgraph.c | 2 +-
evalgraph.h | 2 +-
frontend.h | 4 +-
gamelist.c | 2 +-
gtk/xboard.c | 84 +++++++++---
gtk/xboard.h | 2 +-
gtk/xengineoutput.c | 2 +-
gtk/xoptions.c | 55 ++++++--
gtk/xtimer.c | 2 +-
history.c | 2 +-
lists.c | 2 +-
lists.h | 2 +-
menus.c | 4 +-
menus.h | 2 +-
moves.c | 4 +-
moves.h | 2 +-
nengineoutput.c | 2 +-
nevalgraph.c | 2 +-
ngamelist.c | 2 +-
nhistory.c | 2 +-
parser.c | 6 +-
parser.h | 2 +-
pgntags.c | 2 +-
po/da.po | 280 +++++++++++++++++++-------------------
po/de.po | 280 +++++++++++++++++++-------------------
po/es.po | 280 +++++++++++++++++++-------------------
po/it.po | 280 +++++++++++++++++++-------------------
po/lng2po.sh | 2 +-
po/ru.po | 280 +++++++++++++++++++-------------------
po/tr.po | 280 +++++++++++++++++++-------------------
po/uk.po | 282 +++++++++++++++++++--------------------
po/vi.po | 280 +++++++++++++++++++-------------------
po/xboard.pot | 282 +++++++++++++++++++--------------------
po/zh_CN.po | 280 +++++++++++++++++++-------------------
po/zh_HK.po | 280 +++++++++++++++++++-------------------
po/zh_TW.po | 280 +++++++++++++++++++-------------------
themes/xiangqi/.DS_Store | Bin 6148 -> 0 bytes
uci.c | 2 +-
usounds.c | 2 +-
usystem.c | 2 +-
usystem.h | 2 +-
winboard/config.h | 6 +-
winboard/defaults.h | 2 +-
winboard/help.c | 2 +-
winboard/help/html/24.htm | 2 +-
winboard/jaws.c | 2 +-
winboard/language.txt | 2 +-
winboard/language/deutsch.lng | 2 +-
winboard/language/italiano.lng | 2 +-
winboard/language/nederlands.lng | 2 +-
winboard/language/romanian.lng | 2 +-
winboard/language/russian.lng | 2 +-
winboard/language/spanish.lng | 2 +-
winboard/language/vietnamese.lng | 2 +-
winboard/makefile.gcc | 5 +-
winboard/wchat.c | 2 +-
winboard/wclipbrd.c | 2 +-
winboard/wclipbrd.h | 2 +-
winboard/wedittags.c | 2 +-
winboard/wengineoutput.c | 2 +-
winboard/wevalgraph.c | 2 +
winboard/wgamelist.c | 2 +-
winboard/whistory.c | 2 +
winboard/winboard.c | 46 +++++--
winboard/winboard.h | 4 +-
winboard/winboard.rc | 4 +-
winboard/wlayout.c | 14 +-
winboard/woptions.c | 2 +-
winboard/woptions.h | 2 +-
winboard/wsettings.c | 23 ++++
winboard/wsockerr.c | 2 +-
winboard/wsockerr.h | 2 +-
xaw/xboard.c | 3 +-
xaw/xboard.h | 2 +-
xaw/xengineoutput.c | 3 +-
xaw/xgamelist.c | 2 +-
xaw/xgamelist.h | 2 +-
xaw/xhistory.c | 2 +-
xaw/xhistory.h | 2 +-
xaw/xoptions.c | 14 +-
xboard2.h | 22 +++
zippy.README | 0
zippy.c | 2 +-
zippy.h | 2 +-
zippy.lines | 0
108 files changed, 2077 insertions(+), 1867 deletions(-)
delete mode 100644 themes/xiangqi/.DS_Store
** Version 4.7.2 **
(git diff -b --stat --summary -M v4.7.1 HEAD)
backend.c | 10 ++++++----
book.c | 4 +++-
parser.c | 4 +++-
winboard/winboard.c | 8 ++++++--
winboard/wsettings.c | 9 ++++++---
zippy.c | 2 +-
6 files changed, 25 insertions(+), 12 deletions(-)
** Version 4.7.1 **
(git diff -b --stat --summary -M v4.7.0 HEAD)
args.h | 10 ++-
backend.c | 120 +++++++++++++++++------------
backend.h | 6 +-
configure.ac | 2 +-
dialogs.c | 19 ++---
gtk/xboard.c | 40 +++++++---
gtk/xoptions.c | 16 ++--
po/da.po | 2 +-
po/de.po | 61 ++++++++++-----
po/es.po | 2 +-
po/it.po | 2 +-
po/ru.po | 2 +-
po/tr.po | 2 +-
po/uk.po | 213 +++++++++++++++++++---------------------------------
po/vi.po | 2 +-
po/xboard.pot | 4 +-
po/zh_CN.po | 2 +-
po/zh_HK.po | 2 +-
po/zh_TW.po | 2 +-
winboard/config.h | 6 +-
winboard/wchat.c | 11 ++-
xaw/xboard.c | 3 +-
xaw/xengineoutput.c | 4 +-
xaw/xhistory.c | 2 +-
xaw/xoptions.c | 3 +-
xboard.texi | 145 ++++++++++++++++++-----------------
zippy.README | 9 ++-
27 files changed, 368 insertions(+), 324 deletions(-)
** Version 4.7.0 **
(git diff -b --stat --summary -M v4.6.2 HEAD)
AUTHORS | 2117 +----------
COPYRIGHT | 2 +-