[Scummvm-cvs-logs] scummvm master -> 97da924791c7e01b461fe6e96767436856c2a04f

sev- sev at scummvm.org
Sun May 29 14:46:13 CEST 2016


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

Summary:
0d2ea47faf GUI: Make copyright "sign" consistent
a6786c28f4 Fix CGE copyright sign
3a3cc647d7 Fix CGE2 copyright sign
2715f47f88 Fix Hopkins copyright sign
f91cab147e Fix LAB copyright sign
02dedfe568 Fix MADS copyright sign
5216a4278a Fix TsAGE copyright sign
0413b350f1 Fix Voyeur copyright sign
751bdc10b0 Fix Wintermute copyright sign
97da924791 Merge pull request #767 from raziel-/patch-1


Commit: 0d2ea47faf7f564abd031937c7d1d81253d38b2e
    https://github.com/scummvm/scummvm/commit/0d2ea47faf7f564abd031937c7d1d81253d38b2e
Author: Hubert Maier (raziel- at users.noreply.github.com)
Date: 2016-05-29T15:04:41+03:00

Commit Message:
GUI: Make copyright "sign" consistent

In the About dialog the copyright "sign" (C) is lower case (c) in nine engines.
Making them consistent by using (C) on all engines

Changed paths:
    engines/access/detection.cpp



diff --git a/engines/access/detection.cpp b/engines/access/detection.cpp
index 2cd7e50..368753f 100644
--- a/engines/access/detection.cpp
+++ b/engines/access/detection.cpp
@@ -94,7 +94,7 @@ public:
 	}
 
 	virtual const char *getOriginalCopyright() const {
-		return "Access Engine (c) 1989-1994 Access Software";
+		return "Access Engine (C) 1989-1994 Access Software";
 	}
 
 	virtual bool hasFeature(MetaEngineFeature f) const;


Commit: a6786c28f460be2903575c5c6deeb14fc1dc6474
    https://github.com/scummvm/scummvm/commit/a6786c28f460be2903575c5c6deeb14fc1dc6474
Author: Hubert Maier (raziel- at users.noreply.github.com)
Date: 2016-05-29T15:11:02+03:00

Commit Message:
Fix CGE copyright sign

Changed paths:
    engines/cge/detection.cpp



diff --git a/engines/cge/detection.cpp b/engines/cge/detection.cpp
index 52168dc..82d27f8 100644
--- a/engines/cge/detection.cpp
+++ b/engines/cge/detection.cpp
@@ -123,7 +123,7 @@ public:
 	}
 
 	virtual const char *getOriginalCopyright() const {
-		return "Soltys (c) 1994-1996 L.K. Avalon";
+		return "Soltys (C) 1994-1996 L.K. Avalon";
 	}
 
 	virtual const ADGameDescription *fallbackDetect(const FileMap &allFiles, const Common::FSList &fslist) const;


Commit: 3a3cc647d7ad0a9a37156ffbe0cd325c34c83f9e
    https://github.com/scummvm/scummvm/commit/3a3cc647d7ad0a9a37156ffbe0cd325c34c83f9e
Author: Hubert Maier (raziel- at users.noreply.github.com)
Date: 2016-05-29T15:11:57+03:00

Commit Message:
Fix CGE2 copyright sign

Changed paths:
    engines/cge2/detection.cpp



diff --git a/engines/cge2/detection.cpp b/engines/cge2/detection.cpp
index 01119bb..2b84d16 100644
--- a/engines/cge2/detection.cpp
+++ b/engines/cge2/detection.cpp
@@ -119,7 +119,7 @@ public:
 	}
 
 	virtual const char *getOriginalCopyright() const {
-		return "Sfinx (c) 1994-1997 Janus B. Wisniewski and L.K. Avalon";
+		return "Sfinx (C) 1994-1997 Janus B. Wisniewski and L.K. Avalon";
 	}
 
 	virtual const ADGameDescription *fallbackDetect(const FileMap &allFiles, const Common::FSList &fslist) const;


Commit: 2715f47f8855c6e1baf30ed57b1036a717dac210
    https://github.com/scummvm/scummvm/commit/2715f47f8855c6e1baf30ed57b1036a717dac210
Author: Hubert Maier (raziel- at users.noreply.github.com)
Date: 2016-05-29T15:12:53+03:00

Commit Message:
Fix Hopkins copyright sign

Changed paths:
    engines/hopkins/detection.cpp



diff --git a/engines/hopkins/detection.cpp b/engines/hopkins/detection.cpp
index cc1e84f..cfdbf80 100644
--- a/engines/hopkins/detection.cpp
+++ b/engines/hopkins/detection.cpp
@@ -111,7 +111,7 @@ public:
 	}
 
 	virtual const char *getOriginalCopyright() const {
-		return "Hopkins FBI (c)1997-2003 MP Entertainment";
+		return "Hopkins FBI (C)1997-2003 MP Entertainment";
 	}
 
 	virtual bool hasFeature(MetaEngineFeature f) const;


Commit: f91cab147ec62ac3ddae23299952e05bf154613f
    https://github.com/scummvm/scummvm/commit/f91cab147ec62ac3ddae23299952e05bf154613f
Author: Hubert Maier (raziel- at users.noreply.github.com)
Date: 2016-05-29T15:13:27+03:00

Commit Message:
Fix LAB copyright sign

Changed paths:
    engines/lab/detection.cpp



diff --git a/engines/lab/detection.cpp b/engines/lab/detection.cpp
index 1fd3ca8..30890b5 100644
--- a/engines/lab/detection.cpp
+++ b/engines/lab/detection.cpp
@@ -127,7 +127,7 @@ public:
 	}
 
 	virtual const char *getOriginalCopyright() const {
-		return "Labyrinth of Time (c) 2004 The Wyrmkeep Entertainment Co. and Terra Nova Development";
+		return "Labyrinth of Time (C) 2004 The Wyrmkeep Entertainment Co. and Terra Nova Development";
 	}
 
 	virtual bool createInstance(OSystem *syst, Engine **engine, const ADGameDescription *desc) const {


Commit: 02dedfe5681f0fd79486455ccd7c93a868c4ea2f
    https://github.com/scummvm/scummvm/commit/02dedfe5681f0fd79486455ccd7c93a868c4ea2f
Author: Hubert Maier (raziel- at users.noreply.github.com)
Date: 2016-05-29T15:14:19+03:00

Commit Message:
Fix MADS copyright sign

Changed paths:
    engines/mads/detection.cpp



diff --git a/engines/mads/detection.cpp b/engines/mads/detection.cpp
index b3ba60b..4736503 100644
--- a/engines/mads/detection.cpp
+++ b/engines/mads/detection.cpp
@@ -149,7 +149,7 @@ public:
 	}
 
 	virtual const char *getOriginalCopyright() const {
-		return "MADS (c)";
+		return "MADS (C)";
 	}
 
 	virtual bool hasFeature(MetaEngineFeature f) const;


Commit: 5216a4278a34a909e1cd2c1848c3573524faa2aa
    https://github.com/scummvm/scummvm/commit/5216a4278a34a909e1cd2c1848c3573524faa2aa
Author: Hubert Maier (raziel- at users.noreply.github.com)
Date: 2016-05-29T15:14:55+03:00

Commit Message:
Fix TsAGE copyright sign

Changed paths:
    engines/tsage/detection.cpp



diff --git a/engines/tsage/detection.cpp b/engines/tsage/detection.cpp
index fe555f2..584ad87 100644
--- a/engines/tsage/detection.cpp
+++ b/engines/tsage/detection.cpp
@@ -83,7 +83,7 @@ public:
 	}
 
 	virtual const char *getOriginalCopyright() const {
-		return "(c) Tsunami Media";
+		return "(C) Tsunami Media";
 	}
 
 	virtual bool hasFeature(MetaEngineFeature f) const {


Commit: 0413b350f1636d00870a8a61e9af5314e921aa54
    https://github.com/scummvm/scummvm/commit/0413b350f1636d00870a8a61e9af5314e921aa54
Author: Hubert Maier (raziel- at users.noreply.github.com)
Date: 2016-05-29T15:15:26+03:00

Commit Message:
Fix Voyeur copyright sign

Changed paths:
    engines/voyeur/detection.cpp



diff --git a/engines/voyeur/detection.cpp b/engines/voyeur/detection.cpp
index 9e5320a..7b9fa67 100644
--- a/engines/voyeur/detection.cpp
+++ b/engines/voyeur/detection.cpp
@@ -75,7 +75,7 @@ public:
 	}
 
 	virtual const char *getOriginalCopyright() const {
-		return "Voyeur (c) Philips P.O.V. Entertainment Group";
+		return "Voyeur (C) Philips P.O.V. Entertainment Group";
 	}
 
 	virtual bool hasFeature(MetaEngineFeature f) const;


Commit: 751bdc10b0993aff14fdcd499ae0da62cf2ec8a3
    https://github.com/scummvm/scummvm/commit/751bdc10b0993aff14fdcd499ae0da62cf2ec8a3
Author: Hubert Maier (raziel- at users.noreply.github.com)
Date: 2016-05-29T15:16:05+03:00

Commit Message:
Fix Wintermute copyright sign

Changed paths:
    engines/wintermute/detection.cpp



diff --git a/engines/wintermute/detection.cpp b/engines/wintermute/detection.cpp
index f77eb5c..4e8eab5 100644
--- a/engines/wintermute/detection.cpp
+++ b/engines/wintermute/detection.cpp
@@ -85,7 +85,7 @@ public:
 	}
 
 	virtual const char *getOriginalCopyright() const {
-		return "Copyright (c) 2011 Jan Nedoma";
+		return "Copyright (C) 2011 Jan Nedoma";
 	}
 
 	virtual const ADGameDescription *fallbackDetect(const FileMap &allFiles, const Common::FSList &fslist) const {


Commit: 97da924791c7e01b461fe6e96767436856c2a04f
    https://github.com/scummvm/scummvm/commit/97da924791c7e01b461fe6e96767436856c2a04f
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2016-05-29T14:46:06+02:00

Commit Message:
Merge pull request #767 from raziel-/patch-1

GUI: Make (C) sign consistent in all engines

Changed paths:
    engines/access/detection.cpp
    engines/cge/detection.cpp
    engines/cge2/detection.cpp
    engines/hopkins/detection.cpp
    engines/lab/detection.cpp
    engines/mads/detection.cpp
    engines/tsage/detection.cpp
    engines/voyeur/detection.cpp
    engines/wintermute/detection.cpp









More information about the Scummvm-git-logs mailing list