[Scummvm-git-logs] scummvm master -> a04af59c0eb7baf80986f4e5c4895973065e788a

sev- noreply at scummvm.org
Mon May 5 10:34:53 UTC 2025


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

Summary:
82326758de ALG: Added missing POTFILES
efb7ee2baf AWE: Fix POTFILES paths
a786cf161a DIRECTOR: Add missing file to POTFILE
35c41721e8 DIRECTOR: Remove full stops from GUI tooltips in engine options
f85a4368a7 EFH: Added missing POTFILES
f0567e04b9 GOT: Remove unneeded include
15aed92fb6 MEDIASTATION: Remove unneeded include
627633b268 PLAYGROUND3D: Added missing POTFILES
a04af59c0e TINSEL: Added missing file to POTFILES


Commit: 82326758de0b6fa9be56287a96156c38bb3cd166
    https://github.com/scummvm/scummvm/commit/82326758de0b6fa9be56287a96156c38bb3cd166
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2025-05-05T12:32:10+02:00

Commit Message:
ALG: Added missing POTFILES

Changed paths:
  A engines/alg/POTFILES


diff --git a/engines/alg/POTFILES b/engines/alg/POTFILES
new file mode 100644
index 00000000000..dd3c6abfdd4
--- /dev/null
+++ b/engines/alg/POTFILES
@@ -0,0 +1 @@
+engines/alg/metaengine.cpp


Commit: efb7ee2bafa93c58fbfbf75f50ee32fd486d5b4f
    https://github.com/scummvm/scummvm/commit/efb7ee2bafa93c58fbfbf75f50ee32fd486d5b4f
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2025-05-05T12:32:17+02:00

Commit Message:
AWE: Fix POTFILES paths

Changed paths:
    engines/awe/POTFILES


diff --git a/engines/awe/POTFILES b/engines/awe/POTFILES
index 6761df5774e..e414445c8ee 100644
--- a/engines/awe/POTFILES
+++ b/engines/awe/POTFILES
@@ -1 +1 @@
-engines/awe//metaengine.cpp
+engines/awe/metaengine.cpp


Commit: a786cf161a6a57ba8344aed7d85db0319888f689
    https://github.com/scummvm/scummvm/commit/a786cf161a6a57ba8344aed7d85db0319888f689
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2025-05-05T12:32:17+02:00

Commit Message:
DIRECTOR: Add missing file to POTFILE

Changed paths:
    engines/director/POTFILES


diff --git a/engines/director/POTFILES b/engines/director/POTFILES
index 99d3e5df47f..3ac1da50ca8 100644
--- a/engines/director/POTFILES
+++ b/engines/director/POTFILES
@@ -1,3 +1,4 @@
 engines/director/events.cpp
+engines/director/metaengine.cpp
 engines/director/lingo/lingo-builtins.cpp
 engines/director/lingo/xlibs/jitdraw3.cpp


Commit: 35c41721e8c14037945ca43c874b3314e68b67b7
    https://github.com/scummvm/scummvm/commit/35c41721e8c14037945ca43c874b3314e68b67b7
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2025-05-05T12:32:17+02:00

Commit Message:
DIRECTOR: Remove full stops from GUI tooltips in engine options

Changed paths:
    engines/director/metaengine.cpp


diff --git a/engines/director/metaengine.cpp b/engines/director/metaengine.cpp
index d3c8ef18719..85c20a3b0d5 100644
--- a/engines/director/metaengine.cpp
+++ b/engines/director/metaengine.cpp
@@ -68,7 +68,7 @@ static const ADExtraGuiOptionsMap optionsList[] = {
 		GAMEOPTION_GAMMA_CORRECTION,
 		{
 			_s("Enable gamma correction"),
-			_s("Brighten the graphics to simulate a Macintosh monitor."),
+			_s("Brighten the graphics to simulate a Macintosh monitor"),
 			"gamma_correction",
 			false,
 			0,
@@ -79,7 +79,7 @@ static const ADExtraGuiOptionsMap optionsList[] = {
 		GAMEOPTION_TRUE_COLOR,
 		{
 			_s("Force true color"),
-			_s("Use true color graphics mode, even if the game is not designed for it."),
+			_s("Use true color graphics mode, even if the game is not designed for it"),
 			"true_color",
 			false,
 			0,


Commit: f85a4368a7cc4b8dc737728f04668730684d791f
    https://github.com/scummvm/scummvm/commit/f85a4368a7cc4b8dc737728f04668730684d791f
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2025-05-05T12:32:39+02:00

Commit Message:
EFH: Added missing POTFILES

Changed paths:
  A engines/efh/POTFILES


diff --git a/engines/efh/POTFILES b/engines/efh/POTFILES
new file mode 100644
index 00000000000..2cea42f3dc1
--- /dev/null
+++ b/engines/efh/POTFILES
@@ -0,0 +1 @@
+engines/efh/metaengine.cpp


Commit: f0567e04b9933d823db10a5f47e77908a23cea7b
    https://github.com/scummvm/scummvm/commit/f0567e04b9933d823db10a5f47e77908a23cea7b
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2025-05-05T12:32:43+02:00

Commit Message:
GOT: Remove unneeded include

Changed paths:
    engines/got/detection.cpp


diff --git a/engines/got/detection.cpp b/engines/got/detection.cpp
index 273133c950a..08bf8b794c8 100644
--- a/engines/got/detection.cpp
+++ b/engines/got/detection.cpp
@@ -24,7 +24,6 @@
 #include "common/file.h"
 #include "common/md5.h"
 #include "common/str-array.h"
-#include "common/translation.h"
 #include "common/util.h"
 #include "got/detection.h"
 #include "got/detection_tables.h"


Commit: 15aed92fb6fbb0929996fe6c15daa35d945f0fff
    https://github.com/scummvm/scummvm/commit/15aed92fb6fbb0929996fe6c15daa35d945f0fff
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2025-05-05T12:32:43+02:00

Commit Message:
MEDIASTATION: Remove unneeded include

Changed paths:
    engines/mediastation/detection.cpp


diff --git a/engines/mediastation/detection.cpp b/engines/mediastation/detection.cpp
index b456cf893b0..fa788957b2e 100644
--- a/engines/mediastation/detection.cpp
+++ b/engines/mediastation/detection.cpp
@@ -25,7 +25,6 @@
 #include "common/file.h"
 #include "common/md5.h"
 #include "common/str-array.h"
-#include "common/translation.h"
 #include "common/util.h"
 
 #include "mediastation/detection.h"


Commit: 627633b26873dc5c6fbe4dfeca80ae4180c038eb
    https://github.com/scummvm/scummvm/commit/627633b26873dc5c6fbe4dfeca80ae4180c038eb
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2025-05-05T12:34:10+02:00

Commit Message:
PLAYGROUND3D: Added missing POTFILES

Changed paths:
  A engines/playground3d/POTFILES


diff --git a/engines/playground3d/POTFILES b/engines/playground3d/POTFILES
new file mode 100644
index 00000000000..0c40d21ce4b
--- /dev/null
+++ b/engines/playground3d/POTFILES
@@ -0,0 +1 @@
+engines/playground3d/metaengine.cpp


Commit: a04af59c0eb7baf80986f4e5c4895973065e788a
    https://github.com/scummvm/scummvm/commit/a04af59c0eb7baf80986f4e5c4895973065e788a
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2025-05-05T12:34:16+02:00

Commit Message:
TINSEL: Added missing file to POTFILES

Changed paths:
    engines/tinsel/POTFILES


diff --git a/engines/tinsel/POTFILES b/engines/tinsel/POTFILES
index db4fbdeb8b7..d1d342525aa 100644
--- a/engines/tinsel/POTFILES
+++ b/engines/tinsel/POTFILES
@@ -1,3 +1,4 @@
 engines/tinsel/detection_tables.h
 engines/tinsel/metaengine.cpp
 engines/tinsel/saveload.cpp
+engines/tinsel/tinsel.cpp




More information about the Scummvm-git-logs mailing list