aboutsummaryrefslogtreecommitdiff
path: root/gui/credits.h
blob: c8cae04a8ff0bb64c7284ddae5d30fcded5d647d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
// This file was generated by credits.pl. Do not edit by hand!
static const char *credits[] = {
"C1""ScummVM Team",
"",
"C1""Project Leader",
"C0""Eugene Sandulenko",
"",
"C1""PR Office",
"A0""Arnaud Boutonne",
"C0""Arnaud Boutonn\351",
"C2""Public Relations Officer, Project Administrator",
"C0""Eugene Sandulenko",
"C2""Project Leader",
"",
"C1""Retired Project Leaders",
"C0""James Brown",
"C0""Vincent Hamm",
"C2""ScummVM co-founder, Original Cruise/CinE author",
"C0""Max Horn",
"C0""Ludvig Strigeus",
"C2""Original ScummVM and SimonVM author",
"",
"C1""Engine Teams",
"C1""SCUMM",
"A0""Torbjorn Andersson",
"C0""Torbj\366rn Andersson",
"C0""James Brown",
"C2""(retired)",
"C0""Jonathan Gray",
"C2""(retired)",
"C0""Vincent Hamm",
"C2""(retired)",
"C0""Max Horn",
"C2""(retired)",
"C0""Travis Howell",
"C0""Pawel Kolodziejski",
"C2""Codecs, iMUSE, Smush, etc.",
"C0""Gregory Montoir",
"C2""(retired)",
"C0""Eugene Sandulenko",
"C2""FT INSANE, MM NES, MM C64, game detection, Herc/CGA",
"C0""Ludvig Strigeus",
"C2""(retired)",
"",
"C1""HE",
"C0""Jonathan Gray",
"C2""(retired)",
"C0""Travis Howell",
"C0""Gregory Montoir",
"C2""(retired)",
"C0""Eugene Sandulenko",
"",
"C1""Access",
"A0""Arnaud Boutonne",
"C0""Arnaud Boutonn\351",
"C0""Paul Gilbert",
"",
"C1""ADL",
"C0""Walter van Niftrik",
"",
"C1""AGI",
"C0""Stuart George",
"C0""Matthew Hoops",
"C2""(retired)",
"C0""Filippos Karapetis",
"C0""Martin Kiewitz",
"C0""Pawel Kolodziejski",
"C0""Walter van Niftrik",
"C0""Kari Salminen",
"C0""Eugene Sandulenko",
"C0""David Symonds",
"C2""(retired)",
"",
"C1""AGOS",
"A0""Torbjorn Andersson",
"C0""Torbj\366rn Andersson",
"C0""Paul Gilbert",
"C0""Travis Howell",
"C0""Oliver Kiehl",
"C2""(retired)",
"C0""Ludvig Strigeus",
"C2""(retired)",
"",
"C1""Avalanche",
"A0""Peter Bozso",
"C0""Peter Bozs\363",
"A0""Arnaud Boutonne",
"C0""Arnaud Boutonn\351",
"",
"C1""BBVS",
"C0""Benjamin Haisch",
"",
"C1""Blade Runner",
"C0""Thanasis Antoniou",
"C0""Thomas Fach-Pedersen",
"C0""Peter Kohaut",
"C0""Eugene Sandulenko",
"",
"C1""CGE",
"A0""Arnaud Boutonne",
"C0""Arnaud Boutonn\351",
"C0""Paul Gilbert",
"",
"C1""CGE2",
"A0""Peter Bozso",
"C0""Peter Bozs\363",
"A0""Arnaud Boutonne",
"C0""Arnaud Boutonn\351",
"C0""Paul Gilbert",
"",
"C1""Chewy",
"C0""Filippos Karapetis",
"",
"C1""Cine",
"C0""Vincent Hamm",
"C2""(retired)",
"C0""Pawel Kolodziejski",
"C0""Gregory Montoir",
"C2""(retired)",
"C0""Kari Salminen",
"C0""Eugene Sandulenko",
"",
"C1""Composer",
"C0""Alyssa Milburn",
"",
"C1""CruisE",
"C0""Paul Gilbert",
"C0""Vincent Hamm",
"C2""(retired)",
"",
"C1""Cryomni3D",
"C0""Philippe Valembois",
"",
"C1""Director",
"C0""Eugene Sandulenko",
"C0""Dmitry Iskrich",
"C0""Steven Hoefel",
"C0""Tobia Tesan",
"",
"C1""DM",
"A0""Arnaud Boutonne",
"C0""Arnaud Boutonn\351",
"A0""Bendeguz Nagy",
"C0""Bendeg\372z Nagy",
"",
"C1""Draci",
"C0""Denis Kasak",
"C0""Robert Spalek",
"",
"C1""Drascula",
"C0""Filippos Karapetis",
"C0""Pawel Kolodziejski",
"C0""Thierry Crozat",
"",
"C1""DreamWeb",
"A0""Torbjorn Andersson",
"C0""Torbj\366rn Andersson",
"C0""Bertrand Augereau",
"C0""Filippos Karapetis",
"C0""Vladimir Menshakov",
"C0""Willem Jan Palenstijn",
"",
"C1""Fullpipe",
"C0""Eugene Sandulenko",
"",
"C1""ScummGlk",
"C0""Paul Gilbert",
"C0""Tor Andersson",
"C2""GarGlk library",
"C0""Stefan Jokisch",
"C2""Frotz interpreter",
"C0""Andrew Plotkin",
"C2""Glulxe interpreter",
"C0""Alan Cox",
"C2""ScottFree interpreter",
"C0""Michael J. Roberts",
"C2""TADS interpreter",
"",
"C1""Gnap",
"A0""Arnaud Boutonne",
"C0""Arnaud Boutonn\351",
"C0""Benjamin Haisch",
"",
"C1""Gob",
"A0""Torbjorn Andersson",
"C0""Torbj\366rn Andersson",
"A0""Arnaud Boutonne",
"C0""Arnaud Boutonn\351",
"C0""Sven Hesse",
"C0""Eugene Sandulenko",
"",
"C1""Groovie",
"C0""Henry Bush",
"C0""Scott Thomas",
"C0""Jordi Vilalta Prat",
"",
"C1""HDB",
"C0""Eugene Sandulenko",
"C0""Nipun Garg",
"C2""GSoC student",
"",
"C1""Hopkins",
"A0""Arnaud Boutonne",
"C0""Arnaud Boutonn\351",
"C0""Paul Gilbert",
"",
"C1""Hugo",
"A0""Arnaud Boutonne",
"C0""Arnaud Boutonn\351",
"C0""Oystein Eftevaag",
"C0""Eugene Sandulenko",
"",
"C1""Illusions",
"C0""Benjamin Haisch",
"C0""Eric Fry",
"",
"C1""Kyra",
"A0""Torbjorn Andersson",
"C0""Torbj\366rn Andersson",
"C2""VQA Player",
"C0""Oystein Eftevaag",
"C0""Florian Kagerer",
"C0""Gregory Montoir",
"C2""(retired)",
"C0""Johannes Schickel",
"C2""(retired)",
"",
"C1""Lab",
"A0""Arnaud Boutonne",
"C0""Arnaud Boutonn\351",
"C0""Filippos Karapetis",
"C0""Willem Jan Palenstijn",
"C0""Eugene Sandulenko",
"",
"C1""Lastexpress",
"C0""Matthew Hoops",
"C2""(retired)",
"C0""Jordi Vilalta Prat",
"C0""Julien Templier",
"",
"C1""Lilliput",
"A0""Arnaud Boutonne",
"C0""Arnaud Boutonn\351",
"",
"C1""Lure",
"C0""Paul Gilbert",
"",
"C1""MacVenture",
"C0""Borja Lorente",
"C2""GSoC student",
"",
"C1""MADE",
"C0""Benjamin Haisch",
"C0""Filippos Karapetis",
"",
"C1""MADS",
"A0""Arnaud Boutonne",
"C0""Arnaud Boutonn\351",
"C0""Paul Gilbert",
"C0""Filippos Karapetis",
"",
"C1""Mohawk",
"C0""Bastien Bouclet",
"C0""Matthew Hoops",
"C2""(retired)",
"C0""Filippos Karapetis",
"C0""Alyssa Milburn",
"C0""Eugene Sandulenko",
"C0""David Turner",
"C0""David Fioramonti",
"",
"C1""Mortevielle",
"A0""Arnaud Boutonne",
"C0""Arnaud Boutonn\351",
"C0""Paul Gilbert",
"",
"C1""MutationOfJB",
"A0""Lubomir Remak",
"C0""Lubom\355r Rem\341k",
"A0""Miroslav Remak",
"C0""Miroslav Rem\341k",
"",
"C1""Neverhood",
"C0""Benjamin Haisch",
"C0""Filippos Karapetis",
"",
"C1""Parallaction",
"C0""peres",
"",
"C1""Pegasus",
"C0""Matthew Hoops",
"C2""(retired)",
"",
"C1""Pink",
"C0""Andrei Prykhodko",
"C0""Eugene Sandulenko",
"",
"C1""Plumbers",
"C0""Retro-Junk;",
"",
"C1""Prince",
"C0""Eugene Sandulenko",
"C0""Lukasz Watka",
"A0""Kamil Zbrog",
"C0""Kamil Zbr\363g",
"",
"C1""Queen",
"C0""David Eriksson",
"C2""(retired)",
"C0""Gregory Montoir",
"C2""(retired)",
"C0""Joost Peters",
"",
"C1""SAGA",
"A0""Torbjorn Andersson",
"C0""Torbj\366rn Andersson",
"C0""Daniel Balsom",
"C2""Original engine reimplementation author (retired)",
"C0""Filippos Karapetis",
"C0""Andrew Kurushin",
"C0""Eugene Sandulenko",
"",
"C1""SCI",
"C0""Chris Benshoof",
"C0""Greg Frieger",
"C0""Paul Gilbert",
"C0""Max Horn",
"C2""(retired)",
"C0""Filippos Karapetis",
"C0""Martin Kiewitz",
"C0""Walter van Niftrik",
"C0""Willem Jan Palenstijn",
"C0""Jordi Vilalta Prat",
"C0""Lars Skovlund",
"C0""Colin Snover",
"",
"C1""Sherlock",
"C0""Paul Gilbert",
"C0""Martin Kiewitz",
"",
"C1""Sky",
"A0""Robert Goeffringmann",
"C0""Robert G\366ffringmann",
"C2""(retired)",
"C0""Oliver Kiehl",
"C2""(retired)",
"C0""Joost Peters",
"",
"C1""Supernova",
"C0""Joseph-Eugene Winzer",
"A0""Jaromir Wysoglad",
"C0""Jarom\355r Wysoglad",
"C0""Thierry Crozat",
"",
"C1""Sword1",
"C0""Fabio Battaglia",
"C2""PSX version support",
"C0""Thierry Crozat",
"C2""Mac version support",
"A0""Robert Goeffringmann",
"C0""Robert G\366ffringmann",
"C2""(retired)",
"",
"C1""Sword2",
"A0""Torbjorn Andersson",
"C0""Torbj\366rn Andersson",
"C0""Fabio Battaglia",
"C2""PSX version support",
"C0""Jonathan Gray",
"C2""(retired)",
"",
"C1""Sword2.5",
"A0""Torbjorn Andersson",
"C0""Torbj\366rn Andersson",
"C0""Paul Gilbert",
"C0""Max Horn",
"C2""(retired)",
"C0""Filippos Karapetis",
"C0""Eugene Sandulenko",
"",
"C1""TeenAgent",
"C0""Robert Megone",
"C2""Help with callback rewriting",
"C0""Vladimir Menshakov",
"",
"C1""Tinsel",
"A0""Torbjorn Andersson",
"C0""Torbj\366rn Andersson",
"C0""Fabio Battaglia",
"C2""PSX version support",
"C0""Paul Gilbert",
"C0""Sven Hesse",
"C0""Max Horn",
"C2""(retired)",
"C0""Filippos Karapetis",
"C0""Joost Peters",
"",
"C1""Titanic",
"C0""David Fioramonti",
"C0""Paul Gilbert",
"C0""Colin Snover",
"",
"C1""Toltecs",
"C0""Benjamin Haisch",
"C0""Filippos Karapetis",
"",
"C1""Tony",
"A0""Arnaud Boutonne",
"C0""Arnaud Boutonn\351",
"C0""Paul Gilbert",
"C0""Alyssa Milburn",
"",
"C1""Toon",
"C0""Sylvain Dupont",
"",
"A1""Touche",
"C1""Touch\351",
"C0""Gregory Montoir",
"C2""(retired)",
"",
"C1""TsAGE",
"A0""Arnaud Boutonne",
"C0""Arnaud Boutonn\351",
"C0""Paul Gilbert",
"",
"C1""Tucker",
"C0""Gregory Montoir",
"C2""(retired)",
"",
"C1""Voyeur",
"A0""Arnaud Boutonne",
"C0""Arnaud Boutonn\351",
"C0""Paul Gilbert",
"",
"C1""WAGE",
"C0""Eugene Sandulenko",
"",
"C1""Wintermute",
"A0""Einar Johan T. Somaaen",
"C0""Einar Johan T. S\370m\345en",
"C0""Tobia Tesan",
"",
"C1""Xeen",
"C0""Paul Gilbert",
"C0""David Goldsmith",
"C2""(analysis)",
"C0""Matt Taylor",
"C2""(analysis)",
"",
"C1""Z-Vision",
"C0""Adrian Astley",
"C0""Filippos Karapetis",
"C0""Anton Yarcev",
"",
"",
"C1""Backend Teams",
"C1""Android",
"C0""Andre Heider",
"C0""Angus Lees",
"C0""Lubomyr Lisen",
"",
"C1""Dreamcast",
"C0""Marcus Comstedt",
"",
"C1""GCW0",
"C0""Eugene Sandulenko",
"",
"C1""GPH Devices (GP2X, GP2XWiz & Caanoo)",
"C0""John Willis",
"",
"C1""iPhone / iPad",
"C0""Oystein Eftevaag",
"A0""Vincent Benony",
"C0""Vincent B\351nony",
"C0""Thierry Crozat",
"",
"C1""LinuxMoto",
"C0""Lubomyr Lisen",
"",
"C1""Maemo",
"C0""Frantisek Dufka",
"C2""(retired)",
"C0""Tarek Soliman",
"",
"C1""Nintendo 3DS",
"C0""Thomas Edvalson",
"",
"C1""Nintendo 64",
"C0""Fabio Battaglia",
"",
"C1""Nintendo DS",
"C0""Bertrand Augereau",
"C2""HQ software scaler",
"C0""Neil Millstone",
"",
"C1""Nintendo Switch",
"C0""Cpasjuste",
"C0""rsn8887",
"",
"C1""OpenPandora",
"C0""John Willis",
"",
"C1""PocketPC / WinCE",
"C0""Nicolas Bacca",
"C2""(retired)",
"C0""Ismail Khatib",
"C2""(retired)",
"C0""Kostas Nakos",
"C2""(retired)",
"",
"C1""PlayStation 2",
"A0""Robert Goeffringmann",
"C0""Robert G\366ffringmann",
"C2""(retired)",
"C0""Max Lingua",
"",
"C1""PSP (PlayStation Portable)",
"C0""Yotam Barnoy",
"C0""Joost Peters",
"",
"C1""PlayStation Vita",
"C0""Cpasjuste",
"C0""rsn8887",
"",
"C1""SDL (Win/Linux/OS X/etc.)",
"C0""Max Horn",
"C2""(retired)",
"C0""Eugene Sandulenko",
"C2""Asm routines, GFX layers",
"",
"C1""SymbianOS",
"C0""Jurgen Braam",
"C0""Lars Persson",
"C0""Fedor Strizhniou",
"",
"C1""Tizen / BADA",
"C0""Chris Warren-Smith",
"",
"C1""WebOS",
"C0""Klaus Reimer",
"",
"C1""Wii",
"C0""Andre Heider",
"",
"C1""Raspberry Pi",
"C0""Manuel Alfayate",
"",
"",
"C1""Other subsystems",
"C1""Infrastructure",
"C0""Max Horn",
"C2""Backend & Engine APIs, file API, sound mixer, audiostreams, data structures, etc. (retired)",
"C0""Eugene Sandulenko",
"C0""Johannes Schickel",
"C2""(retired)",
"",
"C1""GUI",
"C0""Max Horn",
"C2""(retired)",
"C0""Vicent Marti",
"C0""Eugene Sandulenko",
"C0""Johannes Schickel",
"C2""(retired)",
"",
"C1""Miscellaneous",
"C0""David Corrales-Lopez",
"C2""Filesystem access improvements (GSoC 2007 task) (retired)",
"C0""Jerome Fisher",
"C2""MT-32 emulator",
"C0""Benjamin Haisch",
"C2""Heavily improved de-/encoder for DXA videos",
"C0""Jochen Hoenicke",
"C2""Speaker & PCjr sound support, AdLib work (retired)",
"A0""Daniel ter Laan",
"C0""Dani\353l ter Laan",
"C2""Restoring original Drascula tracks, and writing convert_dxa.bat",
"C0""Chris Page",
"C2""Return to launcher, savestate improvements, leak fixes, ... (GSoC 2008 task) (retired)",
"C0""Robin Watts",
"C2""ARM assembly routines for nice speedups on several ports; improvements to the sound mixer",
"",
"",
"C1""Website (code)",
"C0""Fredrik Wendel",
"C2""(retired)",
"",
"C1""Website (maintenance)",
"C0""James Brown",
"C2""IRC Logs maintainer",
"C0""Thierry Crozat",
"C2""Wiki maintainer",
"C0""Andre Heider",
"C2""Buildbot maintainer",
"C0""Joost Peters",
"C2""Doxygen Project Documentation maintainer",
"C0""Jordi Vilalta Prat",
"C2""Wiki maintainer",
"C0""Eugene Sandulenko",
"C2""Forum, IRC channel, Screen Shots and Mailing list maintainer",
"C0""John Willis",
"C0""Matan Bareket",
"C2""Site maintainer",
"",
"C1""Website (content)",
"C0""All active team members",
"C0""",
"",
"C1""Documentation",
"C0""Thierry Crozat",
"C2""Numerous contributions to documentation",
"C0""Joachim Eberhard",
"C2""Numerous contributions to documentation (retired)",
"C0""Matthew Hoops",
"C2""Numerous contributions to documentation (retired)",
"",
"C1""Retired Team Members",
"C0""Chris Apers",
"C2""Former PalmOS porter",
"C0""Ralph Brorsen",
"C2""Help with GUI implementation",
"C0""Jamieson Christian",
"C2""iMUSE, MIDI, all things musical",
"C0""Felix Jakschitsch",
"C2""Zak256 reverse engineering",
"C0""Mutwin Kraus",
"C2""Original MacOS porter",
"C0""Peter Moraliyski",
"C2""Port: GP32",
"C0""Jeremy Newman",
"C2""Former webmaster",
"C0""Lionel Ulmer",
"C2""Port: X11",
"C0""Won Star",
"C2""Former GP32 porter",
"",
"",
"C1""Other contributions",
"",
"C1""Packages",
"C1""AmigaOS 4",
"A0""Hans-Joerg Frieden",
"C0""Hans-J\366rg Frieden",
"C2""(retired)",
"C0""Hubert Maier",
"A0""Juha Niemimaki",
"C0""Juha Niemim\344ki",
"C2""(retired)",
"",
"C1""Atari/FreeMiNT",
"C0""Keith Scroggins",
"",
"C1""BeOS",
"C0""Stefan Parviainen",
"C2""(retired)",
"C0""Luc Schrijvers",
"",
"C1""Debian GNU/Linux",
"C0""Tore Anderson",
"C2""(retired)",
"C0""David Weinehall",
"",
"C1""Fedora / RedHat",
"C0""Willem Jan Palenstijn",
"",
"C1""Haiku",
"C0""Luc Schrijvers",
"",
"C1""macOS",
"C0""Max Horn",
"C2""(retired)",
"C0""Oystein Eftevaag",
"C0""Thierry Crozat",
"",
"C1""Mandriva",
"C0""Dominik Scherer",
"C2""(retired)",
"",
"C1""MorphOS",
"C0""Fabien Coeurjoly",
"A0""Ruediger Hanke",
"C0""R\374diger Hanke",
"C2""(retired)",
"",
"C1""OS/2",
"C0""Paul Smedley",
"",
"C1""RISC OS",
"C0""Cameron Cawley",
"",
"C1""SlackWare",
"C0""Robert Kelsen",
"",
"C1""Solaris x86",
"C0""Laurent Blume",
"",
"C1""Solaris SPARC",
"C0""Markus Strangl",
"",
"C1""Win32",
"C0""Travis Howell",
"",
"C1""Win64",
"C0""Chris Gray",
"C2""(retired)",
"C0""Johannes Schickel",
"C2""(retired)",
"",
"",
"C1""GUI Translations",
"C0""Thierry Crozat",
"C2""Translation Lead",
"C1""Basque",
"C0""Mikel Iturbe Urretxa",
"",
"C1""Belarusian",
"C0""Ivan Lukyanov",
"",
"C1""Catalan",
"C0""Jordi Vilalta Prat",
"",
"C1""Czech",
"A0""Zbynik Schwarz",
"C0""Zbyn\354k Schwarz",
"",
"C1""Danish",
"C0""Steffen Nyeland",
"",
"C1""Dutch",
"C0""Ben Castricum",
"",
"C1""Finnish",
"C0""Toni Saarela",
"",
"C1""French",
"C0""Thierry Crozat",
"",
"C1""Galician",
"C0""Santiago G. Sanz",
"",
"C1""German",
"C0""Simon Sawatzki",
"C0""Lothar Serra Mari",
"",
"C1""Hungarian",
"C0""Alex Bevilacqua",
"C0""George Kormendi",
"",
"C1""Italian",
"C0""Matteo Angelino",
"",
"A1""Norwegian (Bokmaal)",
"C1""Norwegian (Bokm\345l)",
"A0""Einar Johan Somaaen",
"C0""Einar Johan S\370m\345en",
"",
"C1""Norwegian (Nynorsk)",
"A0""Einar Johan Somaaen",
"C0""Einar Johan S\370m\345en",
"",
"C1""Polish",
"C0""GrajPoPolsku.pl Team",
"",
"C1""Brazilian Portuguese",
"C0""ScummBR Team",
"",
"C1""Russian",
"C0""Eugene Sandulenko",
"",
"C1""Spanish",
"A0""Tomas Maidagan",
"C0""Tom\341s Maidagan",
"C0""Jordi Vilalta Prat",
"",
"C1""Swedish",
"C0""Hampus Flink",
"",
"C1""Ukrainian",
"C0""Lubomyr Lisen",
"",
"",
"C1""Game Translations",
"C1""CGE",
"C0""Dan Serban",
"C2""Soltys English translation",
"A0""Victor Gonzalez",
"C0""V\355ctor Gonz\341lez",
"C2""Soltys Spanish translation",
"A0""Alejandro Gomez de la Munoza",
"C0""Alejandro G\363mez de la Mu\361oza",
"C2""Soltys Spanish translation",
"",
"C1""CGE2",
"A0""Arnaud Boutonne",
"C0""Arnaud Boutonn\351",
"C2""Sfinx English translation",
"C0""Thierry Crozat",
"C2""Sfinx English translation",
"A0""Peter Bozso",
"C0""Peter Bozs\363",
"C2""Sfinx English translation editor",
"C0""Ryan Clark",
"C2""Sfinx English translation editor",
"",
"C1""Drascula",
"C0""Thierry Crozat",
"C2""Improve French translation",
"",
"C1""Mortevielle",
"C0""Hugo Labrande",
"C2""Improve English translation",
"C0""Thierry Crozat",
"C2""Improve English translation",
"",
"C1""Supernova",
"C0""Joseph-Eugene Winzer",
"C2""English translation",
"C0""Thierry Crozat",
"C2""English translation",
"",
"",
"C1""Websites (design)",
"A0""Dobo Balazs",
"C0""Dob\363 Bal\341zs",
"C2""Website design",
"C0""William Claydon",
"C2""Skins for doxygen, buildbot and wiki",
"C0""Yaroslav Fedevych",
"C2""HTML/CSS for the website",
"C0""Jean Marc Gimenez",
"C2""ScummVM logo",
"C0""David Jensen",
"C2""SVG logo conversion",
"C0""Raina",
"C2""ScummVM forum buttons",
"",
"C1""Code contributions",
"C0""Ori Avtalion",
"C2""Subtitle control options in the GUI; BASS GUI fixes",
"C0""Stuart Caie",
"C2""Decoders for Amiga and AtariST data files (AGOS engine)",
"C0""Paolo Costabel",
"C2""PSP port contributions",
"C0""Martin Doucha",
"C2""CinE engine objectification",
"C0""Thomas Fach-Pedersen",
"C2""ProTracker module player, Smacker video decoder",
"C0""Tobias Gunkel",
"C2""Sound support for C64 version of MM/Zak, Loom PCE support",
"C0""Janne Huttunen",
"C2""V3 actor mask support, Dig/FT SMUSH audio",
"A0""Kovacs Endre Janos",
"C0""Kov\341cs Endre J\341nos",
"C2""Several fixes for Simon1",
"C0""Jeroen Janssen",
"C2""Numerous readability and bugfix patches",
"C0""Keith Kaisershot",
"C2""Several Pegasus Prime patches",
"C0""Andreas Karlsson",
"C2""Initial port for SymbianOS",
"C0""Stefan Kristiansson",
"C2""Initial work on SDL2 support",
"C0""Claudio Matsuoka",
"C2""Daily Linux builds",
"C0""Thomas Mayer",
"C2""PSP port contributions",
"C0""Sean Murray",
"C2""ScummVM tools GUI application (GSoC 2007 task)",
"C0""n0p",
"C2""Windows CE port aspect ratio correction scaler and right click input method",
"C0""Mikesch Nepomuk",
"C2""MI1 VGA floppy patches",
"C0""Nicolas Noble",
"C2""Config file and ALSA support",
"C0""Tim Phillips",
"C2""Initial MI1 CD music support",
"C0""Quietust",
"C2""Sound support for Amiga SCUMM V2/V3 games, MM NES support",
"C0""Robert Crossfield",
"C2""Improved support for Apple II/C64 versions of MM",
"A0""Andreas Roever",
"C0""Andreas R\366ver",
"C2""Broken Sword I & II MPEG2 cutscene support",
"C0""Edward Rudd",
"C2""Fixes for playing MP3 versions of MI1/Loom audio",
"C0""Daniel Schepler",
"C2""Final MI1 CD music support, initial Ogg Vorbis support",
"A0""Andre Souza",
"C0""Andr\351 Souza",
"C2""SDL-based OpenGL renderer",
"C0""Tom Frost",
"C2""WebOS port contributions",
"",
"C1""FreeSCI Contributors",
"C0""Francois-R Boyer",
"C2""MT-32 information and mapping code",
"C0""Rainer Canavan",
"C2""IRIX MIDI driver and bug fixes",
"C0""Xiaojun Chen",
"C0""Paul David Doherty",
"C2""Game version information",
"C0""Vyacheslav Dikonov",
"C2""Config script improvements",
"C0""Ruediger Hanke",
"C2""Port to the MorphOS platform",
"C0""Matt Hargett",
"C2""Clean-ups, bugfixes, Hardcore QA, Win32",
"C0""Max Horn",
"C2""SetJump implementation",
"C0""Ravi I.",
"C2""SCI0 sound resource specification",
"C0""Emmanuel Jeandel",
"C2""Bugfixes and bug reports",
"C0""Dmitry Jemerov",
"C2""Port to the Win32 platform, numerous bugfixes",
"C0""Chris Kehler",
"C2""Makefile enhancements",
"C0""Christopher T. Lansdown",
"C2""Original CVS maintainer, Alpha compatibility fixes",
"C0""Sergey Lapin",
"C2""Port of Carl's type 2 decompression code",
"C0""Rickard Lind",
"C2""MT-32->GM MIDI mapping magic, sound research",
"C0""Hubert Maier",
"C2""AmigaOS 4 port",
"C0""Johannes Manhave",
"C2""Document format translation",
"C0""Claudio Matsuoka",
"C2""CVS snapshots, daily builds, BeOS and cygwin ports",
"C0""Dark Minister",
"C2""SCI research (bytecode and parser)",
"C0""Carl Muckenhoupt",
"C2""Sources to the SCI resource viewer tools that started it all",
"C0""Anders Baden Nielsen",
"C2""PPC testing",
"C0""Walter van Niftrik",
"C2""Ports to the Dreamcast and GP32 platforms",
"C0""Rune Orsval",
"C2""Configuration file editor",
"C0""Solomon Peachy",
"C2""SDL ports and much of the sound subsystem",
"C0""Robey Pointer",
"C2""Bug tracking system hosting",
"C0""Magnus Reftel",
"C2""Heap implementation, Python class viewer, bugfixes",
"C0""Christoph Reichenbach",
"C2""UN*X code, VM/Graphics/Sound/other infrastructure",
"C0""George Reid",
"C2""FreeBSD package management",
"C0""Lars Skovlund",
"C2""Project maintenance, most documentation, bugfixes, SCI1 support",
"C0""Rink Springer",
"C2""Port to the DOS platform, several bug fixes",
"C0""Rainer De Temple",
"C2""SCI research",
"C0""Sean Terrell",
"C0""Hugues Valois",
"C2""Game selection menu",
"C0""Jordi Vilalta",
"C2""Numerous code and website clean-up patches",
"C0""Petr Vyhnak",
"C2""The DCL-INFLATE algorithm, many Win32 improvements",
"C0""Bas Zoetekouw",
"C2""Man pages, debian package management, CVS maintenance",
"C0""Special thanks to Prof. Dr. Gary Nutt for allowing the FreeSCI VM extension as a course project in his Advanced OS course.",
"C0""",
"C0""Special thanks to Bob Heitman and Corey Cole for their support of FreeSCI.",
"C0""",
"",
"C0""And to all the contributors, users, and beta testers we've missed. Thanks!",
"C0""",
"",
"C1""Special thanks to",
"",
"C0""Daniel Balsom",
"C2""For the original Reinherit (SAGA) code",
"C0""Sander Buskens",
"C2""For his work on the initial reversing of Monkey2",
"C0""Dean Beeler",
"C2""For the original MT-32 emulator",
"C0""Kevin Carnes",
"C2""For Scumm16, the basis of ScummVM's older gfx codecs",
"C0""Curt Coder",
"C2""For the original TrollVM (preAGI) code",
"C0""Patrick Combet",
"C2""For the original Gobliiins ADL player",
"C0""Ivan Dubrov",
"C2""For contributing the initial version of the Gobliiins engine",
"C0""Henrik Engqvist",
"C2""For generously providing hosting for our buildbot, SVN repository, planet and doxygen sites as well as tons of HD space",
"C0""DOSBox Team",
"C2""For their awesome OPL2 and OPL3 emulator",
"C0""Yusuke Kamiyamane",
"C2""For contributing some GUI icons",
"C0""Till Kresslein",
"C2""For design of modern ScummVM GUI",
"C0""Jezar Wakefield",
"C2""For his freeverb filter implementation",
"C0""Jim Leiterman",
"C2""Various info on his FM-TOWNS/Marty SCUMM ports",
"C0""Lloyd Rosen",
"C2""For deep tech details about C64 Zak & MM",
"C0""Sarien Team",
"C2""Original AGI engine code",
"A0""Jimmi Thogersen",
"C0""Jimmi Th\370gersen",
"C2""For ScummRev, and much obscure code/documentation",
"C0""Tristan Matthews",
"C2""For additional work on the original MT-32 emulator",
"C0""James Woodcock",
"C2""Soundtrack enhancements",
"C0""Anton Yartsev",
"C2""For the original re-implementation of the Z-Vision engine",
"C0""Tony Warriner and everyone at Revolution Software Ltd. for sharing with us the source of some of their brilliant games, allowing us to release Beneath a Steel Sky as freeware... and generally being supportive above and beyond the call of duty.",
"C0""",
"C0""John Passfield and Steve Stamatiadis for sharing the source of their classic title, Flight of the Amazon Queen and also being incredibly supportive.",
"C0""",
"C0""Joe Pearce from The Wyrmkeep Entertainment Co. for sharing the source of their famous title Inherit the Earth, for sharing the source of The Labyrinth of Time and for always replying promptly to our questions.",
"C0""",
"C0""Aric Wilmunder, Ron Gilbert, David Fox, Vince Lee, and all those at LucasFilm/LucasArts who made SCUMM the insane mess to reimplement that it is today. Feel free to drop us a line and tell us what you think, guys!",
"C0""",
"C0""Alan Bridgman, Simon Woodroffe and everyone at Adventure Soft for sharing the source code of some of their games with us.",
"C0""",
"C0""John Young, Colin Smythe and especially Terry Pratchett himself for sharing the source code of Discworld I & II with us.",
"C0""",
"C0""Emilio de Paz Aragon from Alcachofa Soft for sharing the source code of Drascula: The Vampire Strikes Back with us and his generosity with freewaring the game.",
"C0""",
"C0""David P. Gray from Gray Design Associates for sharing the source code of the Hugo trilogy.",
"C0""",
"C0""Broken Sword 2.5 team for providing sources of their engine and their great support.",
"C0""",
"C0""Neil Dodwell and David Dew from Creative Reality for providing the source of Dreamweb and for their tremendous support.",
"C0""",
"C0""Janusz Wisniewski and Miroslaw Liminowicz from Laboratorium Komputerowe Avalon for providing full source code for Soltys and Sfinx and letting us redistribute the games.",
"C0""",
"C0""Jan Nedoma for providing the sources to the Wintermute-engine, and for his support while porting the engine to ScummVM.",
"C0""",
"C0""Bob Bell, Michel Kripalani, Tommy Yune, from Presto Studios for providing the source code of The Journeyman Project: Pegasus Prime.",
"C0""",
"C0""Electronic Arts IP Preservation Team, particularly Stefan Serbicki, and Vasyl Tsvirkunov of Electronic Arts for providing the source code of the two Lost Files of Sherlock Holmes games. James M. Ferguson and Barry Duncan for their tenacious efforts to recover the sources.",
"C0""",
"C0""The mindFactory team for writing Broken Sword 2.5, a splendid fan-made sequel, and for sharing the source code with us.",
"C0""",
"C0""John Romero for sharing the source code of Hyperspace Delivery Boy! with us.",
"C0""",
"C0""Steffen Dingel for sharing the source code of the Mission Supernova game with us.",
"C0""",
"",
};