[Scummvm-cvs-logs] SF.net SVN: scummvm:[46455] tools/branches/gsoc2009-gui

mthreepwood at users.sourceforge.net mthreepwood at users.sourceforge.net
Mon Dec 21 01:11:16 CET 2009


Revision: 46455
          http://scummvm.svn.sourceforge.net/scummvm/?rev=46455&view=rev
Author:   mthreepwood
Date:     2009-12-21 00:11:12 +0000 (Mon, 21 Dec 2009)

Log Message:
-----------
Create some consistency between the 'short helps' of the extraction tools.

Modified Paths:
--------------
    tools/branches/gsoc2009-gui/extract_gob_stk.cpp
    tools/branches/gsoc2009-gui/extract_kyra.cpp
    tools/branches/gsoc2009-gui/extract_mm_apple.cpp
    tools/branches/gsoc2009-gui/extract_mm_c64.cpp
    tools/branches/gsoc2009-gui/extract_mm_nes.cpp
    tools/branches/gsoc2009-gui/extract_scumm_mac.cpp
    tools/branches/gsoc2009-gui/extract_t7g_mac.cpp
    tools/branches/gsoc2009-gui/extract_zak_c64.cpp

Modified: tools/branches/gsoc2009-gui/extract_gob_stk.cpp
===================================================================
--- tools/branches/gsoc2009-gui/extract_gob_stk.cpp	2009-12-21 00:02:05 UTC (rev 46454)
+++ tools/branches/gsoc2009-gui/extract_gob_stk.cpp	2009-12-21 00:11:12 UTC (rev 46455)
@@ -48,7 +48,7 @@
 	input.format = "*.stk";
 	_inputPaths.push_back(input);
 
-	_shorthelp = "Extracts the files from a Stick file used by 'gob' engine (.STK/.ITK/.LTK).";
+	_shorthelp = "Extract the files from a Stick file used by 'gob' engine (.STK/.ITK/.LTK).";
 	_helptext  = "Usage: " + getName() + " [-o outputname] stickname\nwhere\n  ouputname is used to force the gob config filename (used by compress_gob)\n  stickname is the name of the file to extract/decompress";
 }
 

Modified: tools/branches/gsoc2009-gui/extract_kyra.cpp
===================================================================
--- tools/branches/gsoc2009-gui/extract_kyra.cpp	2009-12-21 00:02:05 UTC (rev 46454)
+++ tools/branches/gsoc2009-gui/extract_kyra.cpp	2009-12-21 00:11:12 UTC (rev 46455)
@@ -37,7 +37,7 @@
 	input.format = "*.*";
 	_inputPaths.push_back(input);
 
-	_shorthelp = "Used to extract The Legend of Kyrandia series data file contents.";
+	_shorthelp = "Extract data files from the The Legend of Kyrandia series of games.";
 	_helptext = 
 		"Usage: " + getName() + " [-o output] [params] <archivefile>\n" +
 		_shorthelp + "\n" +

Modified: tools/branches/gsoc2009-gui/extract_mm_apple.cpp
===================================================================
--- tools/branches/gsoc2009-gui/extract_mm_apple.cpp	2009-12-21 00:02:05 UTC (rev 46454)
+++ tools/branches/gsoc2009-gui/extract_mm_apple.cpp	2009-12-21 00:11:12 UTC (rev 46455)
@@ -51,7 +51,7 @@
 	input2.format = "*.dsk";
 	_inputPaths.push_back(input2);
 
-	_shorthelp = "Extract Maniac Mansion data files, from the Apple II version.";
+	_shorthelp = "Extract data files from the Apple II version of Maniac Mansion.";
 	_helptext = "\nUsage: " + _name + " [-o <output dir> = out/] <disk1.dsk> <disk2.dsk>\n\t" + _shorthelp + "\n";
 }
 

Modified: tools/branches/gsoc2009-gui/extract_mm_c64.cpp
===================================================================
--- tools/branches/gsoc2009-gui/extract_mm_c64.cpp	2009-12-21 00:02:05 UTC (rev 46454)
+++ tools/branches/gsoc2009-gui/extract_mm_c64.cpp	2009-12-21 00:11:12 UTC (rev 46455)
@@ -52,7 +52,7 @@
 	input2.format = "*.d64";
 	_inputPaths.push_back(input2);
 
-	_shorthelp = "Extract Maniac Mansion data files, from the C64 version.";
+	_shorthelp = "Extract data files from the C64 version of Maniac Mansion.";
 	_helptext = "\nUsage: " + _name + " [-o <output dir> = out/] <disk1.d64> <disk2.d64>\n\t" + _shorthelp + "\n";
 }
 

Modified: tools/branches/gsoc2009-gui/extract_mm_nes.cpp
===================================================================
--- tools/branches/gsoc2009-gui/extract_mm_nes.cpp	2009-12-21 00:02:05 UTC (rev 46454)
+++ tools/branches/gsoc2009-gui/extract_mm_nes.cpp	2009-12-21 00:11:12 UTC (rev 46455)
@@ -1117,7 +1117,7 @@
 	input.format = "*.PRG";
 	_inputPaths.push_back(input);
 
-	_shorthelp = "Extract Maniac Mansion data files, from the NES version.";
+	_shorthelp = "Extract data files from the NES version of Maniac Mansion.";
 	_helptext = 
 		"\nUsage: " + _name + " [-o <output dir> = out/] <infile.PRG>\n" +
 		"\t" + _shorthelp + "\n" +

Modified: tools/branches/gsoc2009-gui/extract_scumm_mac.cpp
===================================================================
--- tools/branches/gsoc2009-gui/extract_scumm_mac.cpp	2009-12-21 00:02:05 UTC (rev 46454)
+++ tools/branches/gsoc2009-gui/extract_scumm_mac.cpp	2009-12-21 00:11:12 UTC (rev 46455)
@@ -34,8 +34,7 @@
 	input.format = "*.*";
 	_inputPaths.push_back(input);
 
-	_shorthelp = "Extract data from Lucas Art CDs, sometimes the CD appears to only hold an \n"
-		"application but there is a hidden data file.";
+	_shorthelp = "Extract data files from the single data file of later LucasArts Macintosh SCUMM games.";
 	_helptext =
 		"\nUsage: " + getName() + " [-o <output dir> = out/] <file>\n" +
 		_shorthelp + "\n";

Modified: tools/branches/gsoc2009-gui/extract_t7g_mac.cpp
===================================================================
--- tools/branches/gsoc2009-gui/extract_t7g_mac.cpp	2009-12-21 00:02:05 UTC (rev 46454)
+++ tools/branches/gsoc2009-gui/extract_t7g_mac.cpp	2009-12-21 00:11:12 UTC (rev 46455)
@@ -36,7 +36,7 @@
 	input.format = "*.*";
 	_inputPaths.push_back(input);
 
-	_shorthelp = "Used to the 7th guest data files.";
+	_shorthelp = "Extract data files from the The 7th Guest Macintosh data file.";
 	_helptext = 
 		"Usage: " + getName() + " [params] [-o outputdir] <archivefile>\n" +
 		_shorthelp + "\n";

Modified: tools/branches/gsoc2009-gui/extract_zak_c64.cpp
===================================================================
--- tools/branches/gsoc2009-gui/extract_zak_c64.cpp	2009-12-21 00:02:05 UTC (rev 46454)
+++ tools/branches/gsoc2009-gui/extract_zak_c64.cpp	2009-12-21 00:11:12 UTC (rev 46455)
@@ -52,7 +52,7 @@
 	input2.format = "*.d64";
 	_inputPaths.push_back(input2);
 
-	_shorthelp = "Extract Zak McKraken data files from the C64 version.";
+	_shorthelp = "Extract data files from the C64 version of Zak McKracken.";
 	_helptext = "\nUsage: " + _name + " [-o <output dir> = out/] <disk1.d64> <disk2.d64>\n\t" + _shorthelp + "\n";
 }
 


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.




More information about the Scummvm-git-logs mailing list