[Scummvm-git-logs] scummvm master -> 644e7354f57d40228dcfec6a4186114b7b5785cd

bluegr bluegr at gmail.com
Sun Aug 22 19:25:36 UTC 2021


This automated email contains information about 2 new commits which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
8a21f2bcb3 DEVTOOLS: Fix the order of engines in the credits
644e7354f5 CREDITS: Update credits


Commit: 8a21f2bcb31c2ed1db433ca017de8799247cb375
    https://github.com/scummvm/scummvm/commit/8a21f2bcb31c2ed1db433ca017de8799247cb375
Author: Cameron Cawley (ccawley2011 at gmail.com)
Date: 2021-08-22T22:25:33+03:00

Commit Message:
DEVTOOLS: Fix the order of engines in the credits

Changed paths:
    devtools/credits.pl


diff --git a/devtools/credits.pl b/devtools/credits.pl
index 224f12be0c..df6e091875 100755
--- a/devtools/credits.pl
+++ b/devtools/credits.pl
@@ -586,11 +586,16 @@ begin_credits("Credits");
 			# if one wants different sorting (e.g. based on the full engine name, not
 			# just the abbreviation used for the directory name), then somewhat more
 			# sophistication is needed
-			my $file;
-			my @files = `ls engines/*/credits.pl | sort`;
-			foreach $file (@files) {
-				my $credits_pl = readfile($file);
-				eval $credits_pl;
+			my $dir;
+			my @dirs = `ls -d engines/*/ | sort`;
+			foreach $dir (@dirs) {
+				my $file = "${dir}/credits.pl";
+				$file =~ s/\R//g;
+
+				if (-e $file) {
+					my $credits_pl = readfile($file);
+					eval $credits_pl;
+				}
 			}
 		end_section();
 


Commit: 644e7354f57d40228dcfec6a4186114b7b5785cd
    https://github.com/scummvm/scummvm/commit/644e7354f57d40228dcfec6a4186114b7b5785cd
Author: Cameron Cawley (ccawley2011 at gmail.com)
Date: 2021-08-22T22:25:33+03:00

Commit Message:
CREDITS: Update credits

Changed paths:
  A engines/cryo/credits.pl
  A engines/nancy/credits.pl
  A engines/saga2/credits.pl
  A engines/sludge/credits.pl
  A engines/startrek/credits.pl
    AUTHORS
    devtools/credits.pl
    doc/docportal/help/credits.rst
    gui/credits.h


diff --git a/AUTHORS b/AUTHORS
index 05c68fea11..f473187616 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -140,14 +140,21 @@ ScummVM Team
        Paul Gilbert
        Vincent Hamm                   - (retired)
 
+    Cryo:
+       Arnaud Boutonne
+       Filippos Karapetis
+       Retro-Junk;
+       Eugene Sandulenko
+
     Cryomni3D:
        Philippe Valembois
 
     Director:
        Eugene Sandulenko
+       Crane Yang                     - GSoC Student
        Dmitry Iskrich
-       Dylan Servilla
-       Nathanael Gentry
+       Dylan Servilla                 - GSoC Student
+       Nathanael Gentry               - GSoC Student
        Roland van Laar
        Scott Percival
        Steven Hoefel
@@ -300,6 +307,10 @@ ScummVM Team
     Myst 3:
        Bastien Bouclet
 
+    Nancy:
+       Kaloyan Chehlarski
+       Walter van Niftrik
+
     Neverhood:
        Benjamin Haisch
        Filippos Karapetis
@@ -345,6 +356,10 @@ ScummVM Team
        Andrew Kurushin
        Eugene Sandulenko
 
+    SAGA2:
+       Yuri Guimaraes                 - GSoC Student
+       Eugene Sandulenko
+
     SCI:
        Chris Benshoof
        Greg Frieger
@@ -386,11 +401,20 @@ ScummVM Team
        Oliver Kiehl                   - (retired)
        Joost Peters
 
+    SLUDGE:
+       Eugene Sandulenko
+       Simei Yin                      - GSoC Student
+
     Stark:
        Bastien Bouclet
        Einar Johan T. Somaaen
        Liu Zhaosong
 
+    Star Trek:
+       Matthew Hoops                  - (retired)
+       Filippos Karapetis
+       Matthew Stewart                - GSoC Student
+
     Supernova:
        Joseph-Eugene Winzer
        Jaromir Wysoglad
@@ -628,6 +652,7 @@ ScummVM Team
        Chris Page                     - Return to launcher, savestate
                                         improvements, leak fixes, ... (GSoC
                                         2008 task) (retired)
+       Coen Rampen                    - Sound improvements
        Robin Watts                    - ARM assembly routines for nice
                                         speedups on several ports;
                                         improvements to the sound mixer
diff --git a/devtools/credits.pl b/devtools/credits.pl
index df6e091875..b53eec4c7e 100755
--- a/devtools/credits.pl
+++ b/devtools/credits.pl
@@ -728,6 +728,7 @@ begin_credits("Credits");
 				add_person("Jochen Hoenicke", "hoenicke", "Speaker & PCjr sound support, AdLib work (retired)");
 				add_person("Daniël ter Laan", "NoiZe", "Restoring original Drascula tracks, and writing convert_dxa.bat");
 				add_person("Chris Page", "cp88", "Return to launcher, savestate improvements, leak fixes, ... (GSoC 2008 task) (retired)");
+				add_person("Coen Rampen", "NMIError", "Sound improvements");
 				add_person("Robin Watts", "robinwatts", "ARM assembly routines for nice speedups on several ports; improvements to the sound mixer");
 			end_section();
 		end_section();
diff --git a/doc/docportal/help/credits.rst b/doc/docportal/help/credits.rst
index 17edb7973d..8602dc3033 100644
--- a/doc/docportal/help/credits.rst
+++ b/doc/docportal/help/credits.rst
@@ -334,6 +334,21 @@ CruisE
    * - Vincent Hamm
      - (retired)
 
+Cryo
+^^^^
+
+.. list-table::
+   :widths: 35 65
+
+   * - Arnaud Boutonné
+     -
+   * - Filippos Karapetis
+     -
+   * - Retro-Junk;
+     -
+   * - Eugene Sandulenko
+     -
+
 Cryomni3D
 ^^^^^^^^^
 
@@ -351,12 +366,14 @@ Director
 
    * - Eugene Sandulenko
      -
+   * - Crane Yang
+     - GSoC Student
    * - Dmitry Iskrich
      -
    * - Dylan Servilla
-     -
+     - GSoC Student
    * - Nathanael Gentry
-     -
+     - GSoC Student
    * - Roland van Laar
      -
    * - Scott Percival
@@ -750,6 +767,17 @@ Myst 3
    * - Bastien Bouclet
      -
 
+Nancy
+^^^^^
+
+.. list-table::
+   :widths: 35 65
+
+   * - Kaloyan Chehlarski
+     -
+   * - Walter van Niftrik
+     -
+
 Neverhood
 ^^^^^^^^^
 
@@ -871,6 +899,17 @@ SAGA
    * - Eugene Sandulenko
      -
 
+SAGA2
+^^^^^
+
+.. list-table::
+   :widths: 35 65
+
+   * - Yuri Guimaraes
+     - GSoC Student
+   * - Eugene Sandulenko
+     -
+
 SCI
 ^^^
 
@@ -966,6 +1005,17 @@ Sky
    * - Joost Peters
      -
 
+SLUDGE
+^^^^^^
+
+.. list-table::
+   :widths: 35 65
+
+   * - Eugene Sandulenko
+     -
+   * - Simei Yin
+     - GSoC Student
+
 Stark
 ^^^^^
 
@@ -979,6 +1029,19 @@ Stark
    * - Liu Zhaosong
      -
 
+Star Trek
+^^^^^^^^^
+
+.. list-table::
+   :widths: 35 65
+
+   * - Matthew Hoops
+     - (retired)
+   * - Filippos Karapetis
+     -
+   * - Matthew Stewart
+     - GSoC Student
+
 Supernova
 ^^^^^^^^^
 
@@ -1574,6 +1637,8 @@ Miscellaneous
      - Restoring original Drascula tracks, and writing convert_dxa.bat
    * - Chris Page
      - Return to launcher, savestate improvements, leak fixes, ... (GSoC 2008 task) (retired)
+   * - Coen Rampen
+     - Sound improvements
    * - Robin Watts
      - ARM assembly routines for nice speedups on several ports; improvements to the sound mixer
 
diff --git a/engines/cryo/credits.pl b/engines/cryo/credits.pl
new file mode 100644
index 0000000000..03f22e4b8b
--- /dev/null
+++ b/engines/cryo/credits.pl
@@ -0,0 +1,6 @@
+begin_section("Cryo");
+	add_person("Arnaud Boutonné", "Strangerke", "");
+	add_person("Filippos Karapetis", "bluegr", "");
+	add_person("Retro-Junk;", "bambarbee", "");
+	add_person("Eugene Sandulenko", "sev", "");
+end_section();
diff --git a/engines/nancy/credits.pl b/engines/nancy/credits.pl
new file mode 100644
index 0000000000..2a480a2f0d
--- /dev/null
+++ b/engines/nancy/credits.pl
@@ -0,0 +1,4 @@
+begin_section("Nancy");
+	add_person("Kaloyan Chehlarski", "fracturehill", "");
+	add_person("Walter van Niftrik", "waltervn", "");
+end_section();
diff --git a/engines/saga2/credits.pl b/engines/saga2/credits.pl
new file mode 100644
index 0000000000..9a9c550373
--- /dev/null
+++ b/engines/saga2/credits.pl
@@ -0,0 +1,4 @@
+begin_section("SAGA2");
+	add_person("Yuri Guimaraes", "a-yyg", "GSoC Student");
+	add_person("Eugene Sandulenko", "sev", "");
+end_section();
diff --git a/engines/sludge/credits.pl b/engines/sludge/credits.pl
new file mode 100644
index 0000000000..ffe78afdbe
--- /dev/null
+++ b/engines/sludge/credits.pl
@@ -0,0 +1,4 @@
+begin_section("SLUDGE");
+	add_person("Eugene Sandulenko", "sev", "");
+	add_person("Simei Yin", "yinsimei", "GSoC Student");
+end_section();
diff --git a/engines/startrek/credits.pl b/engines/startrek/credits.pl
new file mode 100644
index 0000000000..195d3ed430
--- /dev/null
+++ b/engines/startrek/credits.pl
@@ -0,0 +1,5 @@
+begin_section("Star Trek");
+	add_person("Matthew Hoops", "clone2727", "(retired)");
+	add_person("Filippos Karapetis", "bluegr", "");
+	add_person("Matthew Stewart", "Drenn", "GSoC Student");
+end_section();
diff --git a/gui/credits.h b/gui/credits.h
index 56d8411a36..7e375a70bb 100644
--- a/gui/credits.h
+++ b/gui/credits.h
@@ -185,14 +185,24 @@ static const char *credits[] = {
 "C0""Vincent Hamm",
 "C2""(retired)",
 "",
+"C1""Cryo",
+"C0""Arnaud Boutonn\303\251",
+"C0""Filippos Karapetis",
+"C0""Retro-Junk;",
+"C0""Eugene Sandulenko",
+"",
 "C1""Cryomni3D",
 "C0""Philippe Valembois",
 "",
 "C1""Director",
 "C0""Eugene Sandulenko",
+"C0""Crane Yang",
+"C2""GSoC Student",
 "C0""Dmitry Iskrich",
 "C0""Dylan Servilla",
+"C2""GSoC Student",
 "C0""Nathanael Gentry",
+"C2""GSoC Student",
 "C0""Roland van Laar",
 "C0""Scott Percival",
 "C0""Steven Hoefel",
@@ -367,6 +377,10 @@ static const char *credits[] = {
 "C1""Myst 3",
 "C0""Bastien Bouclet",
 "",
+"C1""Nancy",
+"C0""Kaloyan Chehlarski",
+"C0""Walter van Niftrik",
+"",
 "C1""Neverhood",
 "C0""Benjamin Haisch",
 "C0""Filippos Karapetis",
@@ -415,6 +429,11 @@ static const char *credits[] = {
 "C0""Andrew Kurushin",
 "C0""Eugene Sandulenko",
 "",
+"C1""SAGA2",
+"C0""Yuri Guimaraes",
+"C2""GSoC Student",
+"C0""Eugene Sandulenko",
+"",
 "C1""SCI",
 "C0""Chris Benshoof",
 "C0""Greg Frieger",
@@ -468,11 +487,23 @@ static const char *credits[] = {
 "C2""(retired)",
 "C0""Joost Peters",
 "",
+"C1""SLUDGE",
+"C0""Eugene Sandulenko",
+"C0""Simei Yin",
+"C2""GSoC Student",
+"",
 "C1""Stark",
 "C0""Bastien Bouclet",
 "C0""Einar Johan T. S\303\270m\303\245en",
 "C0""Liu Zhaosong",
 "",
+"C1""Star Trek",
+"C0""Matthew Hoops",
+"C2""(retired)",
+"C0""Filippos Karapetis",
+"C0""Matthew Stewart",
+"C2""GSoC Student",
+"",
 "C1""Supernova",
 "C0""Joseph-Eugene Winzer",
 "C0""Jarom\303\255r Wysoglad",
@@ -762,10 +793,10 @@ static const char *credits[] = {
 "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",
 "C0""Coen Rampen",
 "C2""Sound improvements",
+"C0""Robin Watts",
+"C2""ARM assembly routines for nice speedups on several ports; improvements to the sound mixer",
 "",
 "",
 "C1""Website (code)",




More information about the Scummvm-git-logs mailing list