[Scummvm-git-logs] scummvm master -> 1f40e32dc5cdacc50e20d8f8388b727afecedfab
bluegr
noreply at scummvm.org
Mon Apr 1 05:34:42 UTC 2024
This automated email contains information about 4 new commits which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .
Summary:
85111e71a9 GOB: add version number for LIT entries
01b5da8ad3 GOB: add 2.5 German variant of Adi 2
30d8432b6b GOB: add name to Amiga Adibou 1 version
1f40e32dc5 GOB: add copyright year of Coktel Vision to getOriginalCopyright()
Commit: 85111e71a95ce300b6cca2c728bb893363ac6988
https://github.com/scummvm/scummvm/commit/85111e71a95ce300b6cca2c728bb893363ac6988
Author: Benjamin Funke (bjnfne at web.de)
Date: 2024-04-01T08:34:37+03:00
Commit Message:
GOB: add version number for LIT entries
Changed paths:
engines/gob/detection/tables_lit.h
diff --git a/engines/gob/detection/tables_lit.h b/engines/gob/detection/tables_lit.h
index b2b0e209fc6..63608d536ff 100644
--- a/engines/gob/detection/tables_lit.h
+++ b/engines/gob/detection/tables_lit.h
@@ -249,7 +249,7 @@
{
{
"lit",
- "",
+ "v1.10",
AD_ENTRY1s("intro.stk", "0ddf39cea1ec30ecc8bfe444ebd7b845", 4207330),
EN_GRB,
kPlatformWindows,
@@ -262,7 +262,7 @@
{
{
"lit",
- "",
+ "v1.10",
AD_ENTRY1s("intro.stk", "0ddf39cea1ec30ecc8bfe444ebd7b845", 4207330),
FR_FRA,
kPlatformWindows,
@@ -275,7 +275,7 @@
{
{
"lit",
- "",
+ "v1.10",
AD_ENTRY1s("intro.stk", "0ddf39cea1ec30ecc8bfe444ebd7b845", 4207330),
ES_ESP,
kPlatformWindows,
@@ -288,7 +288,7 @@
{
{
"lit",
- "",
+ "v1.10",
AD_ENTRY1s("intro.stk", "0ddf39cea1ec30ecc8bfe444ebd7b845", 4219382),
DE_DEU,
kPlatformWindows,
@@ -301,7 +301,7 @@
{
{
"lit",
- "",
+ "v1.10",
AD_ENTRY1s("intro.stk", "0ddf39cea1ec30ecc8bfe444ebd7b845", 4219382),
FR_FRA,
kPlatformWindows,
Commit: 01b5da8ad3bf95d017315b5b0b3b1019b54b058a
https://github.com/scummvm/scummvm/commit/01b5da8ad3bf95d017315b5b0b3b1019b54b058a
Author: Benjamin Funke (bjnfne at web.de)
Date: 2024-04-01T08:34:37+03:00
Commit Message:
GOB: add 2.5 German variant of Adi 2
Changed paths:
engines/gob/detection/tables_adi2.h
diff --git a/engines/gob/detection/tables_adi2.h b/engines/gob/detection/tables_adi2.h
index 3f4d1517bae..8c048b3ba5b 100644
--- a/engines/gob/detection/tables_adi2.h
+++ b/engines/gob/detection/tables_adi2.h
@@ -152,6 +152,19 @@
kFeatures640x400,
"adi2.stk", "ediintro.tot", 0
},
+{
+ {
+ "adi2",
+ "Adi 2.5",
+ AD_ENTRY1s("adi2.stk", "f44526b8ce3a96f966ffce0ba81d6d25", 16918426),
+ DE_DEU,
+ kPlatformWindows,
+ ADGF_UNSTABLE | ADGF_CD,
+ GUIO1(GUIO_NOASPECT)
+ },
+ kFeatures640x400,
+ "adi2.stk", "ediintro.tot", 0
+},
// -- Spanish: Adi --
Commit: 30d8432b6b35ee3b179f31cd8d5ac3a0a2fea9d2
https://github.com/scummvm/scummvm/commit/30d8432b6b35ee3b179f31cd8d5ac3a0a2fea9d2
Author: Benjamin Funke (bjnfne at web.de)
Date: 2024-04-01T08:34:37+03:00
Commit Message:
GOB: add name to Amiga Adibou 1 version
Changed paths:
engines/gob/detection/tables_adibou1.h
diff --git a/engines/gob/detection/tables_adibou1.h b/engines/gob/detection/tables_adibou1.h
index 56aca4ad26c..12df3f84033 100644
--- a/engines/gob/detection/tables_adibou1.h
+++ b/engines/gob/detection/tables_adibou1.h
@@ -142,7 +142,7 @@
{
{
"adibou1",
- "",
+ "Adi Jnr",
AD_ENTRY1s("intro.stk", "71e7db034890885ac96dd1be43a21c38", 556834),
EN_ANY,
kPlatformAmiga,
Commit: 1f40e32dc5cdacc50e20d8f8388b727afecedfab
https://github.com/scummvm/scummvm/commit/1f40e32dc5cdacc50e20d8f8388b727afecedfab
Author: Benjamin Funke (bjnfne at web.de)
Date: 2024-04-01T08:34:37+03:00
Commit Message:
GOB: add copyright year of Coktel Vision to getOriginalCopyright()
Changed paths:
engines/gob/detection/detection.cpp
diff --git a/engines/gob/detection/detection.cpp b/engines/gob/detection/detection.cpp
index 3a0e6bf7e8e..29264be19fd 100644
--- a/engines/gob/detection/detection.cpp
+++ b/engines/gob/detection/detection.cpp
@@ -185,7 +185,7 @@ const char *GobMetaEngineDetection::getEngineName() const {
}
const char *GobMetaEngineDetection::getOriginalCopyright() const {
- return "Goblins Games (C) Coktel Vision";
+ return "Goblins Games (C) 1984-2011 Coktel Vision";
}
REGISTER_PLUGIN_STATIC(GOB_DETECTION, PLUGIN_TYPE_ENGINE_DETECTION, GobMetaEngineDetection);
More information about the Scummvm-git-logs
mailing list