[Scummvm-git-logs] scummvm master -> 63a2dc438859b483c304599158cc85240422ece9
bluegr
noreply at scummvm.org
Sun Jan 15 09:46:50 UTC 2023
This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .
Summary:
63a2dc4388 DETECTION: Convert all GOG strings to GOG.com
Commit: 63a2dc438859b483c304599158cc85240422ece9
https://github.com/scummvm/scummvm/commit/63a2dc438859b483c304599158cc85240422ece9
Author: Walter Agazzi (walter.agazzi at protonmail.com)
Date: 2023-01-15T11:46:46+02:00
Commit Message:
DETECTION: Convert all GOG strings to GOG.com
Changed paths:
engines/ags/detection_tables.h
engines/icb/detection.cpp
engines/saga/detection_tables.h
engines/stark/detection.cpp
engines/sword1/detection_tables.h
engines/twine/detection.cpp
engines/wintermute/detection_tables.h
diff --git a/engines/ags/detection_tables.h b/engines/ags/detection_tables.h
index c0c32c3d236..662cdaf57ba 100644
--- a/engines/ags/detection_tables.h
+++ b/engines/ags/detection_tables.h
@@ -3217,10 +3217,10 @@ const char *const PRE_25 = "Pre 2.5";
STABLE_ENTRY(ID, FILENAME, MD5, SIZE, Common::EN_ANY, "Steam")
#define GAME_ENTRY_GOG(ID, FILENAME, MD5, SIZE) \
- STABLE_ENTRY(ID, FILENAME, MD5, SIZE, Common::UNK_LANG, "GOG")
+ STABLE_ENTRY(ID, FILENAME, MD5, SIZE, Common::UNK_LANG, "GOG.com")
#define GAME_ENTRY_EN_GOG(ID, FILENAME, MD5, SIZE) \
- STABLE_ENTRY(ID, FILENAME, MD5, SIZE, Common::EN_ANY, "GOG")
+ STABLE_ENTRY(ID, FILENAME, MD5, SIZE, Common::EN_ANY, "GOG.com")
#define GAME_ENTRY_PLATFORM(ID, FILENAME, MD5, SIZE, PLATFORM) \
STABLE_ENTRY(ID, FILENAME, MD5, SIZE, Common::UNK_LANG, PLATFORM)
@@ -3241,16 +3241,16 @@ const char *const PRE_25 = "Pre 2.5";
STABLE_ENTRY_PLUGIN(ID, FILENAME, MD5, SIZE, Common::EN_ANY, "Steam", PLUGIN_ARR)
#define GAME_ENTRY_PLUGIN_GOG(ID, FILENAME, MD5, SIZE, PLUGIN_ARR) \
- STABLE_ENTRY_PLUGIN(ID, FILENAME, MD5, SIZE, Common::UNK_LANG, "GOG", PLUGIN_ARR)
+ STABLE_ENTRY_PLUGIN(ID, FILENAME, MD5, SIZE, Common::UNK_LANG, "GOG.com", PLUGIN_ARR)
#define GAME_ENTRY_PLUGIN_GOG_EN(ID, FILENAME, MD5, SIZE, PLUGIN_ARR) \
- STABLE_ENTRY_PLUGIN(ID, FILENAME, MD5, SIZE, Common::EN_ANY, "GOG", PLUGIN_ARR)
+ STABLE_ENTRY_PLUGIN(ID, FILENAME, MD5, SIZE, Common::EN_ANY, "GOG.com", PLUGIN_ARR)
#define GAME_ENTRY_PLUGIN_STEAM_NOLAUNCHLOAD(ID, FILENAME, MD5, SIZE, PLUGIN_ARR) \
STABLE_ENTRY_PLUGIN_GUIO(ID, FILENAME, MD5, SIZE, Common::UNK_LANG, "Steam", GUIO2(GUIO_NOLANG, GUIO_NOLAUNCHLOAD), PLUGIN_ARR)
#define GAME_ENTRY_PLUGIN_GOG_NOLAUNCHLOAD(ID, FILENAME, MD5, SIZE, PLUGIN_ARR) \
-STABLE_ENTRY_PLUGIN_GUIO(ID, FILENAME, MD5, SIZE, Common::UNK_LANG, "GOG", GUIO2(GUIO_NOLANG, GUIO_NOLAUNCHLOAD), PLUGIN_ARR)
+STABLE_ENTRY_PLUGIN_GUIO(ID, FILENAME, MD5, SIZE, Common::UNK_LANG, "GOG.com", GUIO2(GUIO_NOLANG, GUIO_NOLAUNCHLOAD), PLUGIN_ARR)
static const PluginVersion AGSTEAM_WADJETEYE[] = { { "agsteam", kWadjetEye }, { nullptr, 0 } };
static const PluginVersion AGS_FLASHLIGHT[] = { { "agsflashlight", 0 }, { nullptr, 0 } };
@@ -3859,8 +3859,8 @@ const AGSGameDescription GAME_DESCRIPTIONS[] = {
GAME_ENTRY_EN_STEAM("timegentlemenplease", "tgp.exe", "86a5359bac7c88f0dfa060478800dd61", 74077811),
GAME_ENTRY_EN_STEAM("unavowed", "ac2game.dat", "b1ff7d96667707daf4266975cea2bf90", 1755457364), // Mac
GAME_ENTRY_EN_STEAM("unavowed", "ac2game.dat", "140570a663877cb81e3656b4f29c63f6", 1752922600), // Mac
- GAME_ENTRY_EN_PLATFORM("unavowed", "Unavowed.exe", "b1ff7d96667707daf4266975cea2bf90", 1755451248, "Steam/GOG"), // TODO: split
- GAME_ENTRY_EN_PLATFORM("unavowed", "Unavowed.exe", "52c411caa3bfb65788ed8768ceaa0c30", 1756036604, "Steam/GOG"), // Linux/Windows v0.9.0 (GOG v1.2)
+ GAME_ENTRY_EN_PLATFORM("unavowed", "Unavowed.exe", "b1ff7d96667707daf4266975cea2bf90", 1755451248, "Steam/GOG.com"), // TODO: split
+ GAME_ENTRY_EN_PLATFORM("unavowed", "Unavowed.exe", "52c411caa3bfb65788ed8768ceaa0c30", 1756036604, "Steam/GOG.com"), // Linux/Windows v0.9.0 (GOG v1.2)
GAME_ENTRY_EN_STEAM("unavowed", "Unavowed.exe", "52c411caa3bfb65788ed8768ceaa0c30", 1756040045), // Linux (and Windows?) v1.0.0
GAME_ENTRY_EN_STEAM("unavowed", "Unavowed.exe", "52c411caa3bfb65788ed8768ceaa0c30", 1756041684), // Windows v1.0.2
GAME_ENTRY_EN_GOG("unavowed", "Unavowed.exe", "52c411caa3bfb65788ed8768ceaa0c30", 1756037170), // Linux/Windows v.0.9.0 (GOG v1.3)
diff --git a/engines/icb/detection.cpp b/engines/icb/detection.cpp
index af29c1a04dd..b87e8258340 100644
--- a/engines/icb/detection.cpp
+++ b/engines/icb/detection.cpp
@@ -37,7 +37,7 @@ static const IcbGameDescription gameDescriptions[] = {
// In Cold Blood
// English GOG Version
"icb",
- "GOG",
+ "GOG.com",
AD_ENTRY2s("g/speech.clu", "ced60009bdffa9a1055863bf10d2e79e", 7683040, "g/g", "ebe9e5377ee9d231e7a7e33666eb517b", 63892),
Common::EN_ANY,
Common::kPlatformWindows,
diff --git a/engines/saga/detection_tables.h b/engines/saga/detection_tables.h
index 8f70dd169f8..dbe184e4ed0 100644
--- a/engines/saga/detection_tables.h
+++ b/engines/saga/detection_tables.h
@@ -384,7 +384,7 @@ static const SAGAGameDescription gameDescriptions[] = {
{
{
"ite",
- "GOG CD Mac v1.1",
+ "GOG.com CD Mac v1.1",
{
{"ite_i.rsc", GAME_RESOURCEFILE, "a6433e34b97b15e64fe8214651012db9", 8927165},
{"scripts_i.rsc", GAME_SCRIPTFILE, "a891405405edefc69c9d6c420c868b84", 335927},
diff --git a/engines/stark/detection.cpp b/engines/stark/detection.cpp
index 2655afbc5db..2fe23037055 100644
--- a/engines/stark/detection.cpp
+++ b/engines/stark/detection.cpp
@@ -73,7 +73,7 @@ static const ADGameDescription gameDescriptions[] = {
// The Longest Journey
// GOG edition
{
- "tlj", "GOG",
+ "tlj", "GOG.com",
AD_ENTRY2s("x.xarc", "a0559457126caadab0cadac02d35f26f", 3032,
"chapters.ini", "5b5a1f1dd2297d9ce0d3d12216d5d2c5", 485),
Common::EN_ANY,
diff --git a/engines/sword1/detection_tables.h b/engines/sword1/detection_tables.h
index 614042b7d98..4a5089ca8f8 100644
--- a/engines/sword1/detection_tables.h
+++ b/engines/sword1/detection_tables.h
@@ -140,7 +140,7 @@ static const ADGameDescription gameDescriptions[] = {
{
"sword1",
- "GoG.com",
+ "GOG.com",
AD_ENTRY4s("clusters/scripts.clu", "72b10193714e8c6e4daca51791c0db0c", 1088292,
"clusters/swordres.rif", "5463362dc77b6efc36e46ac84998bd2f", 59788,
"clusters/text.clu", "76f93f5feecc8915435105478f3c6615", 3193159,
diff --git a/engines/twine/detection.cpp b/engines/twine/detection.cpp
index c21267426a2..a4bb735f66c 100644
--- a/engines/twine/detection.cpp
+++ b/engines/twine/detection.cpp
@@ -225,7 +225,7 @@ static const ADGameDescription twineGameDescriptions[] = {
// Little Big Adventure - GOG Version
// LBA.GOG
// 11 October 2011 at 17:30
- TWINE_DETECTION_ENTRY("lba", "GOG Version", AD_ENTRY1s("LBA.GOG", "6dc00342c80bc41b4ff5a43c560c7abc", 380666496), Common::kPlatformDOS, ADGF_NO_FLAGS),
+ TWINE_DETECTION_ENTRY("lba", "GOG.com Version", AD_ENTRY1s("LBA.GOG", "6dc00342c80bc41b4ff5a43c560c7abc", 380666496), Common::kPlatformDOS, ADGF_NO_FLAGS),
{
"lba",
@@ -278,21 +278,21 @@ static const ADGameDescription twineGameDescriptions[] = {
// Little Big Adventure - GOG Version 3.2.0 (56122)
// TLBA1C.exe
// 1st June 2022 02:18
- TWINE_DETECTION_ENTRY("lba", "GOG Classic Version", AD_ENTRY1s("TLBA1C.exe", "e377d036e997acbf543bc3023ce72be6", 4404224), Common::kPlatformWindows, TwinE::TF_LBA1_CLASSIC),
+ TWINE_DETECTION_ENTRY("lba", "GOG.com Classic Version", AD_ENTRY1s("TLBA1C.exe", "e377d036e997acbf543bc3023ce72be6", 4404224), Common::kPlatformWindows, TwinE::TF_LBA1_CLASSIC),
// Little Big Adventure - GOG Version 3.2.1 (56604)
// TLBA1C.exe
// 17 Jun 2022 00:30
- TWINE_DETECTION_ENTRY("lba", "GOG Classic Version", AD_ENTRY1s("TLBA1C.exe", "e86192e4a491805dc011dda5ca83c608", 4404736), Common::kPlatformWindows, TwinE::TF_LBA1_CLASSIC),
+ TWINE_DETECTION_ENTRY("lba", "GOG.com Classic Version", AD_ENTRY1s("TLBA1C.exe", "e86192e4a491805dc011dda5ca83c608", 4404736), Common::kPlatformWindows, TwinE::TF_LBA1_CLASSIC),
// Little Big Adventure - GOG Version 3.2.2
// TLBA1C.exe
// 1 Jul 2022
- TWINE_DETECTION_ENTRY("lba", "GOG Classic Version", AD_ENTRY1s("TLBA1C.exe", "76b227e87038c17a3376b1c681f15474", 4402688), Common::kPlatformWindows, TwinE::TF_LBA1_CLASSIC),
+ TWINE_DETECTION_ENTRY("lba", "GOG.com Classic Version", AD_ENTRY1s("TLBA1C.exe", "76b227e87038c17a3376b1c681f15474", 4402688), Common::kPlatformWindows, TwinE::TF_LBA1_CLASSIC),
// Little Big Adventure - GOG Version 3.2.3.1 (58613)
// TLBA1C.exe
- TWINE_DETECTION_ENTRY("lba", "GOG Classic Version", AD_ENTRY1s("TLBA1C.exe", "252216e83f83dc770fafc7fd787a6da5", 4432896), Common::kPlatformWindows, TwinE::TF_LBA1_CLASSIC),
+ TWINE_DETECTION_ENTRY("lba", "GOG.com Classic Version", AD_ENTRY1s("TLBA1C.exe", "252216e83f83dc770fafc7fd787a6da5", 4432896), Common::kPlatformWindows, TwinE::TF_LBA1_CLASSIC),
// FAN Translations - http://lba.fishos.net/bit/index.html
diff --git a/engines/wintermute/detection_tables.h b/engines/wintermute/detection_tables.h
index ead9de55d72..ea4fb20b9bc 100644
--- a/engines/wintermute/detection_tables.h
+++ b/engines/wintermute/detection_tables.h
@@ -1645,32 +1645,32 @@ static const WMEGameDescription gameDescriptions[] = {
"data_hd.dcp", "da3508bd60025bac35211fb6fc959d88", 5655554), Common::ES_ESP, ADGF_UNSTABLE | GF_IGNORE_SD_FILES, WME_LITE),
// J.U.L.I.A.: Among the Stars (HD Ready Version) (GOG) (English)
- WME_WINENTRY("juliastars", "HD Ready Version/GOG",
+ WME_WINENTRY("juliastars", "HD Ready Version/GOG.com",
WME_ENTRY2s("data_sd.dcp", "da1f147a5f2ee6eb0750678a8b955c93", 4526792,
"data_sd.dcp", "da1f147a5f2ee6eb0750678a8b955c93", 4526792), Common::EN_ANY, ADGF_UNSTABLE | GF_IGNORE_HD_FILES, WME_LITE),
// J.U.L.I.A.: Among the Stars (Full HD Version) (GOG) (English)
- WME_WINENTRY("juliastars", "Full HD Version/GOG",
+ WME_WINENTRY("juliastars", "Full HD Version/GOG.com",
WME_ENTRY2s("data_hd.dcp", "91dcb65523da943f22fca0c025a2ce8e", 5281911,
"data_hd.dcp", "91dcb65523da943f22fca0c025a2ce8e", 5281911), Common::EN_ANY, ADGF_UNSTABLE | GF_IGNORE_SD_FILES, WME_LITE),
// J.U.L.I.A.: Among the Stars (HD Ready Version) (GOG) (German)
- WME_WINENTRY("juliastars", "HD Ready Version/GOG",
+ WME_WINENTRY("juliastars", "HD Ready Version/GOG.com",
WME_ENTRY2s("data_sd.dcp", "070d13b70e35cd95855ddc1687446631", 4526795,
"german_sd.dcp", "85eb39225083465225c30261a6bcd63e", 123326134), Common::DE_DEU, ADGF_UNSTABLE | GF_IGNORE_HD_FILES, WME_LITE),
// J.U.L.I.A.: Among the Stars (Full HD Version) (GOG) (German)
- WME_WINENTRY("juliastars", "Full HD Version/GOG",
+ WME_WINENTRY("juliastars", "Full HD Version/GOG.com",
WME_ENTRY2s("data_hd.dcp", "7973ca635255d3791123fd750cb848f2", 5281925,
"german_hd.dcp", "19a771b1a933b71b889026d53734b0c0", 152500044), Common::DE_DEU, ADGF_UNSTABLE | GF_IGNORE_SD_FILES, WME_LITE),
// J.U.L.I.A.: Among the Stars (HD Ready Version) (GOG) (Spanish fanmade translation)
- WME_WINENTRY("juliastars", "HD Ready Version/GOG",
+ WME_WINENTRY("juliastars", "HD Ready Version/GOG.com",
WME_ENTRY2s("data_sd.dcp", "29f4856cc1514bdb86d3b19a39d86d76", 5877935,
"data_sd.dcp", "29f4856cc1514bdb86d3b19a39d86d76", 5877935), Common::ES_ESP, ADGF_UNSTABLE | GF_IGNORE_HD_FILES, WME_LITE),
// J.U.L.I.A.: Among the Stars (Full HD Version) (GOG) (Spanish fanmade translation)
- WME_WINENTRY("juliastars", "Full HD Version/GOG",
+ WME_WINENTRY("juliastars", "Full HD Version/GOG.com",
WME_ENTRY2s("data_hd.dcp", "29f4856cc1514bdb86d3b19a39d86d76", 5877935,
"data_hd.dcp", "29f4856cc1514bdb86d3b19a39d86d76", 5877935), Common::ES_ESP, ADGF_UNSTABLE | GF_IGNORE_SD_FILES, WME_LITE),
@@ -1679,7 +1679,7 @@ static const WMEGameDescription gameDescriptions[] = {
WME_ENTRY1s("data.dcp", "fe995e26253f6e0a925dd7850fce17a9", 26459827), Common::EN_ANY, ADGF_UNSTABLE, WME_LITE),
// J.U.L.I.A.: Untold (GOG)
- WME_WINENTRY("juliauntold", "GOG",
+ WME_WINENTRY("juliauntold", "GOG.com",
WME_ENTRY1s("data.dcp", "b0aefd82647a26425fe3ee21aabb6283", 26462676), Common::EN_ANY, ADGF_UNSTABLE, WME_LITE),
// Klaymen Episodes: Pilot
More information about the Scummvm-git-logs
mailing list