[Scummvm-cvs-logs] scummvm master -> 875cfa6e58e1f2133f717b813629f70075178d91

somaen einarjohants at gmail.com
Sat Apr 13 14:37:49 CEST 2013


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

Summary:
f9e436a1b7 WINTERMUTE: added md5 checksums for version 1.1 of Reversion: The Escape
08520377da WINTERMUTE: Fixed the Reversion 1.1 Entries
875cfa6e58 Merge pull request #295 from JenniBee/wintermute_md5_checksum


Commit: f9e436a1b7d10ba61096bffc44f2a4aa1f46c862
    https://github.com/scummvm/scummvm/commit/f9e436a1b7d10ba61096bffc44f2a4aa1f46c862
Author: JenniBee (mcjennibee at gmail.com)
Date: 2013-04-07T11:16:44-07:00

Commit Message:
WINTERMUTE: added md5 checksums for version 1.1 of Reversion: The Escape

Changed paths:
    engines/wintermute/detection_tables.h



diff --git a/engines/wintermute/detection_tables.h b/engines/wintermute/detection_tables.h
index 0c84310..1f3ffd5 100644
--- a/engines/wintermute/detection_tables.h
+++ b/engines/wintermute/detection_tables.h
@@ -35,7 +35,7 @@ static const PlainGameDescriptor wintermuteGames[] = {
 	{"julia",           "J.U.L.I.A."},
 	{"mirage",          "Mirage"},
 	{"pigeons",         "Pigeons in the Park"},
-	{"reversion",       "Reversion"},
+	{"reversion1",      "Reversion: The Escape"},
 	{"rosemary",        "Rosemary"},
 	{"thebox",          "The Box"},
 	{"twc",             "the white chamber"},
@@ -229,16 +229,94 @@ static const ADGameDescription gameDescriptions[] = {
 		ADGF_UNSTABLE,
 		GUIO0()
 	},
-	// Reversion
+	// Reversion: The Escape Version 1.0
 	{
-		"reversion",
-		"",
+		"reversion1",
+		"Version 1.0",
 		AD_ENTRY1s("data.dcp", "cd616f98ebfd047e0c540b50b4b70761", 254384531),
 		Common::EN_ANY,
 		Common::kPlatformWindows,
 		ADGF_UNSTABLE,
 		GUIO0()
 	},
+	// Reversion: The Escape Version 1.1 (Chinese)
+	{
+		"reversion1",
+		"Version 1.1",
+		{
+			{"chinese.dcp", 0, "cf97150739499a4c15f51dc534ff85a1", 6330561},
+		AD_ENTRY1s("data.dcp", "cd616f98ebfd047e0c540b50b4b70761", 254384531),
+		},
+		Common::ZH_CNA,
+		Common::kPlatformWindows,
+		ADGF_UNSTABLE,
+		GUIO0()
+	},
+	// Reversion: The Escape Version 1.1 (English)
+	{
+		"reversion1",
+		"Version 1.1",
+		{
+			{"english.dcp", 0, "7b2f061d7c91365c5d04605f1de032b3", 5702699},
+		AD_ENTRY1s("data.dcp", "cd616f98ebfd047e0c540b50b4b70761", 254384531),
+		},
+		Common::EN_ANY,
+		Common::kPlatformWindows,
+		ADGF_UNSTABLE,
+		GUIO0()
+	},
+	// Reversion: The Escape Version 1.1 (French)
+	{
+		"reversion1",
+		"Version 1.1",
+		{
+			{"french.dcp", 0, "214204b6022c5ed67fada44557690faf", 6327400},
+		AD_ENTRY1s("data.dcp", "cd616f98ebfd047e0c540b50b4b70761", 254384531),
+		},
+		Common::FR_FRA,
+		Common::kPlatformWindows,
+		ADGF_UNSTABLE,
+		GUIO0()
+	},
+	// Reversion: The Escape Version 1.1 (German)
+	{
+		"reversion1",
+		"Version 1.1",
+		{
+			{"german.dcp", 0, "96677823b36d580a4a29e3659071071c", 6340699},
+		AD_ENTRY1s("data.dcp", "cd616f98ebfd047e0c540b50b4b70761", 254384531),
+		},
+		Common::DE_DEU,
+		Common::kPlatformWindows,
+		ADGF_UNSTABLE,
+		GUIO0()
+	},
+	// Reversion: The Escape Version 1.1 (Italian)
+	{
+		"reversion1",
+		"Version 1.1",
+		{
+			{"italian.dcp", 0, "9ce80c1835108f10170a02969f71efe1", 6301836},
+		AD_ENTRY1s("data.dcp", "cd616f98ebfd047e0c540b50b4b70761", 254384531),
+		},
+		Common::IT_ITA,
+		Common::kPlatformWindows,
+		ADGF_UNSTABLE,
+		GUIO0()
+	},
+	// Reversion: The Escape Version 1.1 (Portuguese)
+	{
+		"reversion1",
+		"Version 1.1",
+		{
+			{"portugues.dcp", 0, "8772501afa2c630a7c697eb99e9c7bda", 5053303},
+		AD_ENTRY1s("data.dcp", "cd616f98ebfd047e0c540b50b4b70761", 254384531),
+		},
+		Common::PT_BRA,
+		Common::kPlatformWindows,
+		ADGF_UNSTABLE,
+		GUIO0()
+	},
 	// Rosemary
 	{
 		"rosemary",
@@ -273,3 +351,4 @@ static const ADGameDescription gameDescriptions[] = {
 };
 
 } // End of namespace Wintermute
+


Commit: 08520377daa85f7c97e563a4794c7062636b1c72
    https://github.com/scummvm/scummvm/commit/08520377daa85f7c97e563a4794c7062636b1c72
Author: JenniBee (mcjennibee at gmail.com)
Date: 2013-04-12T23:05:21-07:00

Commit Message:
WINTERMUTE: Fixed the Reversion 1.1 Entries

Changed paths:
    engines/wintermute/detection_tables.h



diff --git a/engines/wintermute/detection_tables.h b/engines/wintermute/detection_tables.h
index 1f3ffd5..f2a42ca 100644
--- a/engines/wintermute/detection_tables.h
+++ b/engines/wintermute/detection_tables.h
@@ -245,7 +245,8 @@ static const ADGameDescription gameDescriptions[] = {
 		"Version 1.1",
 		{
 			{"chinese.dcp", 0, "cf97150739499a4c15f51dc534ff85a1", 6330561},
-		AD_ENTRY1s("data.dcp", "cd616f98ebfd047e0c540b50b4b70761", 254384531),
+			("data.dcp", 0, "cd616f98ebfd047e0c540b50b4b70761", 254384531),
+			AD_LISTEND
 		},
 		Common::ZH_CNA,
 		Common::kPlatformWindows,
@@ -258,7 +259,8 @@ static const ADGameDescription gameDescriptions[] = {
 		"Version 1.1",
 		{
 			{"english.dcp", 0, "7b2f061d7c91365c5d04605f1de032b3", 5702699},
-		AD_ENTRY1s("data.dcp", "cd616f98ebfd047e0c540b50b4b70761", 254384531),
+			("data.dcp", 0, "cd616f98ebfd047e0c540b50b4b70761", 254384531),
+			AD_LISTEND
 		},
 		Common::EN_ANY,
 		Common::kPlatformWindows,
@@ -271,7 +273,8 @@ static const ADGameDescription gameDescriptions[] = {
 		"Version 1.1",
 		{
 			{"french.dcp", 0, "214204b6022c5ed67fada44557690faf", 6327400},
-		AD_ENTRY1s("data.dcp", "cd616f98ebfd047e0c540b50b4b70761", 254384531),
+			("data.dcp", 0, "cd616f98ebfd047e0c540b50b4b70761", 254384531),
+			AD_LISTEND
 		},
 		Common::FR_FRA,
 		Common::kPlatformWindows,
@@ -284,7 +287,8 @@ static const ADGameDescription gameDescriptions[] = {
 		"Version 1.1",
 		{
 			{"german.dcp", 0, "96677823b36d580a4a29e3659071071c", 6340699},
-		AD_ENTRY1s("data.dcp", "cd616f98ebfd047e0c540b50b4b70761", 254384531),
+			("data.dcp", 0, "cd616f98ebfd047e0c540b50b4b70761", 254384531),
+			AD_LISTEND
 		},
 		Common::DE_DEU,
 		Common::kPlatformWindows,
@@ -297,7 +301,8 @@ static const ADGameDescription gameDescriptions[] = {
 		"Version 1.1",
 		{
 			{"italian.dcp", 0, "9ce80c1835108f10170a02969f71efe1", 6301836},
-		AD_ENTRY1s("data.dcp", "cd616f98ebfd047e0c540b50b4b70761", 254384531),
+			("data.dcp", 0, "cd616f98ebfd047e0c540b50b4b70761", 254384531),
+			AD_LISTEND
 		},
 		Common::IT_ITA,
 		Common::kPlatformWindows,
@@ -310,7 +315,8 @@ static const ADGameDescription gameDescriptions[] = {
 		"Version 1.1",
 		{
 			{"portugues.dcp", 0, "8772501afa2c630a7c697eb99e9c7bda", 5053303},
-		AD_ENTRY1s("data.dcp", "cd616f98ebfd047e0c540b50b4b70761", 254384531),
+			("data.dcp", 0, "cd616f98ebfd047e0c540b50b4b70761", 254384531),
+			AD_LISTEND
 		},
 		Common::PT_BRA,
 		Common::kPlatformWindows,


Commit: 875cfa6e58e1f2133f717b813629f70075178d91
    https://github.com/scummvm/scummvm/commit/875cfa6e58e1f2133f717b813629f70075178d91
Author: Einar Johan Trøan Sømåen (einarjohants at gmail.com)
Date: 2013-04-13T05:37:13-07:00

Commit Message:
Merge pull request #295 from JenniBee/wintermute_md5_checksum

WINTERMUTE: added md5 checksum for version 1.1 of Reversion: The Escape

Changed paths:
    engines/wintermute/detection_tables.h









More information about the Scummvm-git-logs mailing list