[Scummvm-git-logs] scummvm master -> 8983b1c79158ecc7646b47064116879a5a2beb15

mikrosk noreply at scummvm.org
Tue Nov 21 11:22:30 UTC 2023


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:
b21d4670bc CREDITS: Add handling of /č
8983b1c791 CREDITS: Add myself to credits


Commit: b21d4670bc3a978ae6874b2adc5616fecb2a35d2
    https://github.com/scummvm/scummvm/commit/b21d4670bc3a978ae6874b2adc5616fecb2a35d2
Author: Miro Kropacek (miro.kropacek at gmail.com)
Date: 2023-11-21T12:17:58+01:00

Commit Message:
CREDITS: Add handling of /č

Changed paths:
    devtools/credits.pl


diff --git a/devtools/credits.pl b/devtools/credits.pl
index 494d78334a6..035badd79b9 100755
--- a/devtools/credits.pl
+++ b/devtools/credits.pl
@@ -74,6 +74,7 @@ sub html_entities_to_ascii {
 	$text =~ s/ø/o/g;
 	$text =~ s/ú/u/g;
 	$text =~ s/ą/a/g;
+	$text =~ s/č/c/g;
 	$text =~ s/Ł/L/g;
 	$text =~ s/ł/l/g;
 	$text =~ s/ś/s/g;
@@ -107,6 +108,7 @@ sub html_entities_to_utf8 {
 	$text =~ s/ø/\xC3\xB8/g;
 	$text =~ s/ú/\xC3\xBA/g;
 	$text =~ s/ą/\xC4\x85/g;
+	$text =~ s/č/\xC4\x8D/g;
 	$text =~ s/Ł/\xC5\x81/g;
 	$text =~ s/ł/\xC5\x82/g;
 	$text =~ s/ś/\xC5\x9B/g;
@@ -138,6 +140,7 @@ sub html_entities_to_cpp {
 	$text =~ s/ø/\\303\\270/g;
 	$text =~ s/ú/\\303\\272/g;
 	$text =~ s/ą/\\304\\205/g;
+	$text =~ s/č/\\304\\215/g;
 	$text =~ s/Ł/\\305\\201/g;
 	$text =~ s/ł/\\305\\202/g;
 	$text =~ s/ś/\\305\\233/g;
@@ -172,6 +175,7 @@ sub html_entities_to_rtf {
 	$text =~ s/å/\\'8c/g;
 	# The following numerical values are decimal!
 	$text =~ s/ą/\\uc0\\u261 /g;
+	$text =~ s/č/\\uc0\\u269 /g;
 	$text =~ s/Ł/\\uc0\\u321 /g;
 	$text =~ s/ł/\\uc0\\u322 /g;
 	$text =~ s/ś/\\uc0\\u347 /g;


Commit: 8983b1c79158ecc7646b47064116879a5a2beb15
    https://github.com/scummvm/scummvm/commit/8983b1c79158ecc7646b47064116879a5a2beb15
Author: Miro Kropacek (miro.kropacek at gmail.com)
Date: 2023-11-21T12:21:25+01:00

Commit Message:
CREDITS: Add myself to credits

Changed paths:
    AUTHORS
    devtools/credits.pl
    doc/docportal/help/credits.rst
    gui/credits.h


diff --git a/AUTHORS b/AUTHORS
index 49eead7ec7a..a56762affef 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -591,6 +591,9 @@ ScummVM Team
 
   Backend Teams
   -------------
+    Atari:
+       Miro Kropacek
+
     Android:
        Andre Heider
        Angus Lees
diff --git a/devtools/credits.pl b/devtools/credits.pl
index 035badd79b9..1a684a79591 100755
--- a/devtools/credits.pl
+++ b/devtools/credits.pl
@@ -551,6 +551,10 @@ begin_credits("Credits");
 
 
 		begin_section("Backend Teams", "backend_teams");
+			begin_section("Atari");
+				add_person("Miro Kropáček", "mikrosk", "");
+			end_section();
+
 			begin_section("Android");
 				add_person("Andre Heider", "dhewg", "");
 				add_person("Angus Lees", "Gus", "");
diff --git a/doc/docportal/help/credits.rst b/doc/docportal/help/credits.rst
index 934cc213711..4eab9619a00 100644
--- a/doc/docportal/help/credits.rst
+++ b/doc/docportal/help/credits.rst
@@ -1489,6 +1489,15 @@ Z-Vision
 Backend Teams
 *************
 
+Atari
+^^^^^
+
+.. list-table::
+   :widths: 35 65
+
+   * - Miro Kropáček
+     -
+
 Android
 ^^^^^^^
 
diff --git a/gui/credits.h b/gui/credits.h
index 95a6380cf56..e93c932be49 100644
--- a/gui/credits.h
+++ b/gui/credits.h
@@ -729,6 +729,9 @@ static const char *credits[] = {
 "",
 "",
 "C1""Backend Teams",
+"C1""Atari",
+"C0""Miro Krop\303\241\304\215ek",
+"",
 "C1""Android",
 "C0""Andre Heider",
 "C0""Angus Lees",




More information about the Scummvm-git-logs mailing list