[Scummvm-cvs-logs] scummvm master -> 4cae92a7d4c2dedee7c8bf72728572b37d77a723

sev- sev at scummvm.org
Sat Apr 9 17:20:19 CEST 2016


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:
3bac16d57d WAGE: Added debug code for dumping CODE resource fork
20b2b15d63 UPDATES: Specify version for manual Sparkle download
4cae92a7d4 UPDATES: Fix appcast URL


Commit: 3bac16d57daf43f2a14bf0b7662afa2e9a6703c8
    https://github.com/scummvm/scummvm/commit/3bac16d57daf43f2a14bf0b7662afa2e9a6703c8
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2016-04-09T15:54:21+02:00

Commit Message:
WAGE: Added debug code for dumping CODE resource fork

Changed paths:
    engines/wage/world.cpp



diff --git a/engines/wage/world.cpp b/engines/wage/world.cpp
index 40b1555..ae7a0ea 100644
--- a/engines/wage/world.cpp
+++ b/engines/wage/world.cpp
@@ -105,6 +105,18 @@ bool World::loadWorld(Common::MacResManager *resMan) {
 	Common::SeekableReadStream *res;
 	Common::MacResIDArray::const_iterator iter;
 
+	// Dumping interpreter code
+#if 1
+	res = resMan->getResource(MKTAG('C','O','D','E'), 1);
+	warning("code size: %d", res->size());
+	byte *buf = (byte *)malloc(res->size());
+	res->read(buf, res->size());
+	Common::DumpFile out;
+	out.open("code.bin");
+	out.write(buf, res->size());
+	out.close();
+#endif
+
 	if ((resArray = resMan->getResIDArray(MKTAG('G','C','O','D'))).size() == 0)
 		return false;
 


Commit: 20b2b15d63e9f3fc8d3fedb72f00db8dc275d13a
    https://github.com/scummvm/scummvm/commit/20b2b15d63e9f3fc8d3fedb72f00db8dc275d13a
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2016-04-09T15:54:41+02:00

Commit Message:
UPDATES: Specify version for manual Sparkle download

Changed paths:
    dists/macosx/scummvm_appcast.xml



diff --git a/dists/macosx/scummvm_appcast.xml b/dists/macosx/scummvm_appcast.xml
index a4a15a2..ffd691e 100644
--- a/dists/macosx/scummvm_appcast.xml
+++ b/dists/macosx/scummvm_appcast.xml
@@ -24,6 +24,7 @@
 			<sparkle:releaseNotesLink>
 				https://www.scummvm.org/frs/scummvm/1.7.0/ReleaseNotes
 			</sparkle:releaseNotesLink>
+			<sparkle:version>1.7.0</sparkle:version>
 			<pubDate>Tue, 29 Jul 2014 07:58:00 +0000</pubDate>
 			<link>https://www.scummvm.org/frs/scummvm/1.7.0/</link>
 		</item>


Commit: 4cae92a7d4c2dedee7c8bf72728572b37d77a723
    https://github.com/scummvm/scummvm/commit/4cae92a7d4c2dedee7c8bf72728572b37d77a723
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2016-04-09T15:59:58+02:00

Commit Message:
UPDATES: Fix appcast URL

Changed paths:
    dists/macosx/scummvm_appcast.xml



diff --git a/dists/macosx/scummvm_appcast.xml b/dists/macosx/scummvm_appcast.xml
index ffd691e..3d47c94 100644
--- a/dists/macosx/scummvm_appcast.xml
+++ b/dists/macosx/scummvm_appcast.xml
@@ -2,7 +2,7 @@
 <rss version="2.0" xmlns:sparkle="http://www.andymatuschak.org/xml-namespaces/sparkle"  xmlns:dc="http://purl.org/dc/elements/1.1/">
 	<channel>
 		<title>ScummVM Changelog</title>
-		<link>https://www.scummvm.org/scummvm_appcast.xml</link>
+		<link>https://www.scummvm.org/appcasts/macosx/release.xml</link>
 		<description>Most recent changes with links to updates.</description>
 		<language>en</language>
 		<item>






More information about the Scummvm-git-logs mailing list