[Scummvm-git-logs] scummvm master -> ca717aeca47738e19cd0614c4154556446eae078
tag2015
noreply at scummvm.org
Mon Oct 24 19:00:54 UTC 2022
This automated email contains information about 6 new commits which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .
Summary:
77c982f661 GLK: HUGO: Add detection for a couple new versions
b49c6b7fe6 GLK: ALAN2: Pass extra field when appending to gamelist
3ed2dd44ef GLK: HUGO: Pass extra field when appending to gamelist
8dbb9489ef GLK: JACL: Pass extra field when appending to gamelist
b6611d8fb6 GLK: MAGNETIC: Pass extra field when appending to gamelist
ca717aeca4 GLK: QUEST: Pass extra field when appending to gamelist
Commit: 77c982f661aa28af267d3280ec078bf47ab8208c
https://github.com/scummvm/scummvm/commit/77c982f661aa28af267d3280ec078bf47ab8208c
Author: Walter Agazzi (walter.agazzi at protonmail.com)
Date: 2022-10-24T20:09:52+02:00
Commit Message:
GLK: HUGO: Add detection for a couple new versions
Changed paths:
engines/glk/hugo/detection_tables.h
diff --git a/engines/glk/hugo/detection_tables.h b/engines/glk/hugo/detection_tables.h
index 050c8a0ccf6..de403e637d5 100644
--- a/engines/glk/hugo/detection_tables.h
+++ b/engines/glk/hugo/detection_tables.h
@@ -51,6 +51,7 @@ const PlainGameDescriptor HUGO_GAME_LIST[] = {
{ "ndrift", "Necrotic Drift" },
{ "nextday", "The Next Day" },
{ "nmnl", "Nothing More, Nothing Less" },
+ { "overbrook", "Overbrook, an Interactive House Tour" },
{ "partyarty", "Party Arty, Man of La Munchies" },
{ "paxless", "PAXLess, Quest to the IF Suite" },
{ "pirateadv", "Pirate Adventure" },
@@ -89,7 +90,8 @@ const GlkDetectionEntry HUGO_GAMES[] = {
DT_ENTRY1("down", "09-30-97", "7daf198e81a92b152bf6a0969210aa77", 94323),
DT_ENTRY0("dragonhunt", "93db9cdf1d2d2800715c93fff0d48a59", 68944),
DT_ENTRY0("eastofeastwood", "ebc4e37c66fca8a07b5782b57686ce07", 42445),
- DT_ENTRY0("fallacyofdawn", "8821566e2d3b301c6dc705f2bea54eb1", 729176),
+ DT_ENTRY1("fallacyofdawn", "1.05", "8821566e2d3b301c6dc705f2bea54eb1", 729176),
+ DT_ENTRY1("fallacyofdawn", "1.07", "bebb4427004a6cded72068b0ea04b7b6", 730694),
DT_ENTRY1("futureboy", "Demo", "cfce7ee7893bb5adc9ba4ea198f38201", 827396),
DT_ENTRY1("guiltybastards", "Text Only", "77efc9a102a406a3b123172bb37e87e7", 246971),
DT_ENTRY0("guiltybastards", "77efc9a102a406a3b123172bb37e87e7", 246971),
@@ -99,9 +101,11 @@ const GlkDetectionEntry HUGO_GAMES[] = {
DT_ENTRY0("htgessay", "c3b5bce395f3f54097077f830dad70ac", 142921),
DT_ENTRY0("hugozork", "b525f8bc83bc735fb5c62edd1b486499", 172150),
DT_ENTRY0("ish", "023c9083378fcd1a08d97e60910b54da", 113958),
- DT_ENTRY0("ndrift", "fea92564f4ae4c626841aa4c93fcb31e", 556591),
+ DT_ENTRY1("ndrift", "1.03", "fea92564f4ae4c626841aa4c93fcb31e", 556591),
+ DT_ENTRY1("ndrift", "1.04", "8e23d867e3fc13157c1b31195550244d", 556990),
DT_ENTRY0("nextday", "2c5a9b95f6fb079986f8a4b178c9fcb4", 136844),
DT_ENTRY0("nmnl", "cee4e1ffae1fd562d507d65c143739ef", 171732),
+ DT_ENTRY0("overbrook", "0ed7b671ed9cd3b6362419b5159366e3", 70752),
DT_ENTRY0("partyarty", "62dac43addf6ea21e5759e098998773b", 86845),
DT_ENTRY0("paxless", "db00b1242a4a0898c2d0d2d1c77103f4", 61973),
DT_ENTRY0("pirateadv", "81c961f121e4465adb4592eee2bcc2d5", 53915),
Commit: b49c6b7fe6c958ff1bc83bdc0825f8ea0a8987d1
https://github.com/scummvm/scummvm/commit/b49c6b7fe6c958ff1bc83bdc0825f8ea0a8987d1
Author: Walter Agazzi (walter.agazzi at protonmail.com)
Date: 2022-10-24T20:29:12+02:00
Commit Message:
GLK: ALAN2: Pass extra field when appending to gamelist
Required for DT_ENTRY1 macro to work properly
Changed paths:
engines/glk/alan2/detection.cpp
diff --git a/engines/glk/alan2/detection.cpp b/engines/glk/alan2/detection.cpp
index bdfbae905a7..d7419335f3d 100644
--- a/engines/glk/alan2/detection.cpp
+++ b/engines/glk/alan2/detection.cpp
@@ -78,7 +78,7 @@ bool Alan2MetaEngine::detectGames(const Common::FSList &fslist, DetectedGames &g
gameList.push_back(GlkDetectedGame(desc.gameId, desc.description, filename, md5, filesize));
} else {
PlainGameDescriptor gameDesc = findGame(p->_gameId);
- gameList.push_back(GlkDetectedGame(p->_gameId, gameDesc.description, filename));
+ gameList.push_back(GlkDetectedGame(p->_gameId, gameDesc.description, p->_extra, filename, p->_language));
}
}
Commit: 3ed2dd44efae783fbe0fdf22bcc7a7abe88c2a3b
https://github.com/scummvm/scummvm/commit/3ed2dd44efae783fbe0fdf22bcc7a7abe88c2a3b
Author: Walter Agazzi (tag2015 at gmail.com)
Date: 2022-10-24T20:48:49+02:00
Commit Message:
GLK: HUGO: Pass extra field when appending to gamelist
Required for DT_ENTRY1 macro to work properly
Changed paths:
engines/glk/hugo/detection.cpp
diff --git a/engines/glk/hugo/detection.cpp b/engines/glk/hugo/detection.cpp
index 25388c1b700..be48edb5f91 100644
--- a/engines/glk/hugo/detection.cpp
+++ b/engines/glk/hugo/detection.cpp
@@ -78,7 +78,7 @@ bool HugoMetaEngine::detectGames(const Common::FSList &fslist, DetectedGames &ga
gameList.push_back(GlkDetectedGame(desc.gameId, desc.description, filename, md5, filesize));
} else {
PlainGameDescriptor gameDesc = findGame(p->_gameId);
- gameList.push_back(GlkDetectedGame(p->_gameId, gameDesc.description, filename));
+ gameList.push_back(GlkDetectedGame(p->_gameId, gameDesc.description, p->_extra, filename, p->_language));
}
}
Commit: 8dbb9489ef0505907988d4c0d01d4a367cc66f8f
https://github.com/scummvm/scummvm/commit/8dbb9489ef0505907988d4c0d01d4a367cc66f8f
Author: Walter Agazzi (tag2015 at gmail.com)
Date: 2022-10-24T20:50:55+02:00
Commit Message:
GLK: JACL: Pass extra field when appending to gamelist
Required for DT_ENTRY1 macro to work properly
Changed paths:
engines/glk/jacl/detection.cpp
diff --git a/engines/glk/jacl/detection.cpp b/engines/glk/jacl/detection.cpp
index da57b03a30e..47882725574 100644
--- a/engines/glk/jacl/detection.cpp
+++ b/engines/glk/jacl/detection.cpp
@@ -73,7 +73,7 @@ bool JACLMetaEngine::detectGames(const Common::FSList &fslist, DetectedGames &ga
} else {
// Found a match
PlainGameDescriptor gameDesc = findGame(p->_gameId);
- gameList.push_back(GlkDetectedGame(p->_gameId, gameDesc.description, filename));
+ gameList.push_back(GlkDetectedGame(p->_gameId, gameDesc.description, p->_extra, filename, p->_language));
}
}
Commit: b6611d8fb62bc559c29841cb223d27c6c1e93d39
https://github.com/scummvm/scummvm/commit/b6611d8fb62bc559c29841cb223d27c6c1e93d39
Author: Walter Agazzi (tag2015 at gmail.com)
Date: 2022-10-24T20:52:03+02:00
Commit Message:
GLK: MAGNETIC: Pass extra field when appending to gamelist
Required for DT_ENTRY1 macro to work properly
Changed paths:
engines/glk/magnetic/detection.cpp
diff --git a/engines/glk/magnetic/detection.cpp b/engines/glk/magnetic/detection.cpp
index 87028cdd0a2..539ccc8ef3a 100644
--- a/engines/glk/magnetic/detection.cpp
+++ b/engines/glk/magnetic/detection.cpp
@@ -83,7 +83,7 @@ bool MagneticMetaEngine::detectGames(const Common::FSList &fslist, DetectedGames
gameList.push_back(GlkDetectedGame(desc.gameId, desc.description, filename, md5, filesize));
} else {
PlainGameDescriptor gameDesc = findGame(p->_gameId);
- gameList.push_back(GlkDetectedGame(p->_gameId, gameDesc.description, filename));
+ gameList.push_back(GlkDetectedGame(p->_gameId, gameDesc.description, p->_extra, filename, p->_language));
}
}
Commit: ca717aeca47738e19cd0614c4154556446eae078
https://github.com/scummvm/scummvm/commit/ca717aeca47738e19cd0614c4154556446eae078
Author: Walter Agazzi (tag2015 at gmail.com)
Date: 2022-10-24T20:52:38+02:00
Commit Message:
GLK: QUEST: Pass extra field when appending to gamelist
Required for DT_ENTRY1 macro to work properly
Changed paths:
engines/glk/quest/detection.cpp
diff --git a/engines/glk/quest/detection.cpp b/engines/glk/quest/detection.cpp
index acba21ed7be..4bc87a8e0c3 100644
--- a/engines/glk/quest/detection.cpp
+++ b/engines/glk/quest/detection.cpp
@@ -77,7 +77,7 @@ bool QuestMetaEngine::detectGames(const Common::FSList &fslist, DetectedGames &g
} else {
// Found a match
PlainGameDescriptor gameDesc = findGame(p->_gameId);
- gameList.push_back(GlkDetectedGame(p->_gameId, gameDesc.description, filename));
+ gameList.push_back(GlkDetectedGame(p->_gameId, gameDesc.description, p->_extra, filename, p->_language));
}
}
More information about the Scummvm-git-logs
mailing list