[Scummvm-cvs-logs] scummvm-web master -> 459d55e8e4419a109e4db4205b4860c289202d4c

sev- sev at scummvm.org
Sun Mar 20 15:19:44 CET 2016


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

Summary:
a2af096dc1 WEB: Implement ranges in screenshots to save space
6e82aca7df WEB: More sanity check for screenshot ranges
7ef6da000f WEB: Switched LEC sshots to ranges
09ec38df41 WEB: Switched to the range schema screenshot up to SCI games
459d55e8e4 WEB: Switched Sierra game shots to range schema


Commit: a2af096dc1e152b91b82520b81ebfd4b9d23c2b8
    https://github.com/scummvm/scummvm-web/commit/a2af096dc1e152b91b82520b81ebfd4b9d23c2b8
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2016-03-20T14:05:35+01:00

Commit Message:
WEB: Implement ranges in screenshots to save space

Changed paths:
    data/screenshots.xml
    include/Objects/Screenshot.php



diff --git a/data/screenshots.xml b/data/screenshots.xml
index c23f24a..493c8f1 100644
--- a/data/screenshots.xml
+++ b/data/screenshots.xml
@@ -1320,63 +1320,8 @@
 			<name>Broken Sword 2.5: The Return of the Templars (fan-made)</name>
 			<category>sword25</category>
 			<image>
-				<file>revolution/sword25/sword25-de-01</file>
-				<caption>Broken Sword 2.5: The Return of the Templars (German)</caption>
-			</image>
-			<image>
-				<file>revolution/sword25/sword25-de-02</file>
-				<caption>Broken Sword 2.5: The Return of the Templars (German)</caption>
-			</image>
-			<image>
-				<file>revolution/sword25/sword25-de-03</file>
-				<caption>Broken Sword 2.5: The Return of the Templars (German)</caption>
-			</image>
-			<image>
-				<file>revolution/sword25/sword25-de-04</file>
-				<caption>Broken Sword 2.5: The Return of the Templars (German)</caption>
-			</image>
-			<image>
-				<file>revolution/sword25/sword25-de-05</file>
-				<caption>Broken Sword 2.5: The Return of the Templars (German)</caption>
-			</image>
-			<image>
-				<file>revolution/sword25/sword25-de-06</file>
-				<caption>Broken Sword 2.5: The Return of the Templars (German)</caption>
-			</image>
-			<image>
-				<file>revolution/sword25/sword25-de-07</file>
-				<caption>Broken Sword 2.5: The Return of the Templars (German)</caption>
-			</image>
-			<image>
-				<file>revolution/sword25/sword25-de-08</file>
-				<caption>Broken Sword 2.5: The Return of the Templars (German)</caption>
-			</image>
-			<image>
-				<file>revolution/sword25/sword25-de-09</file>
-				<caption>Broken Sword 2.5: The Return of the Templars (German)</caption>
-			</image>
-			<image>
-				<file>revolution/sword25/sword25-de-10</file>
-				<caption>Broken Sword 2.5: The Return of the Templars (German)</caption>
-			</image>
-			<image>
-				<file>revolution/sword25/sword25-de-11</file>
-				<caption>Broken Sword 2.5: The Return of the Templars (German)</caption>
-			</image>
-			<image>
-				<file>revolution/sword25/sword25-de-12</file>
-				<caption>Broken Sword 2.5: The Return of the Templars (German)</caption>
-			</image>
-			<image>
-				<file>revolution/sword25/sword25-de-13</file>
-				<caption>Broken Sword 2.5: The Return of the Templars (German)</caption>
-			</image>
-			<image>
-				<file>revolution/sword25/sword25-de-14</file>
-				<caption>Broken Sword 2.5: The Return of the Templars (German)</caption>
-			</image>
-			<image>
-				<file>revolution/sword25/sword25-de-15</file>
+				<file>revolution/sword25/sword25-de-#n#</file>
+				<range from="1" to="15" format="%02d" />
 				<caption>Broken Sword 2.5: The Return of the Templars (German)</caption>
 			</image>
 		</game>
diff --git a/include/Objects/Screenshot.php b/include/Objects/Screenshot.php
index c0d30f6..7211fd7 100644
--- a/include/Objects/Screenshot.php
+++ b/include/Objects/Screenshot.php
@@ -14,12 +14,28 @@ class Screenshot extends BasicObject {
 		$this->_category = $data['category'];
 		$this->_files = array();
 		if (isset($data['image'])) {
-			#parent::toArray($data['image']);
+			if (!isset($data['image'][0]))
+				parent::toArray($data['image']);
+
 			foreach ($data['image'] as $value) {
-				$this->_files[] = array(
-					'filename' => $value['file'],
-					'caption' => $value['caption'],
-				);
+				if (isset($value['range'])) {
+					$attr = $value['range']['@attributes'];
+					if (!isset($attr['from']) || !isset($attr['to']) || !isset($attr['format'])) {
+						throw new ErrorException('Invalid range format');
+					}
+					$pat = str_replace("#n#", $attr['format'], $value['file']);
+					for ($num = $attr['from']; $num <= $attr['to']; $num++) {
+						$this->_files[] = array(
+							'filename' => sprintf($pat, $num),
+							'caption' => $value['caption'],
+						);
+					}
+				} else {
+					$this->_files[] = array(
+						'filename' => $value['file'],
+						'caption' => $value['caption'],
+					);
+				}
 			}
 		}
 	}


Commit: 6e82aca7df40de80be141ea905035bc1a6069edb
    https://github.com/scummvm/scummvm-web/commit/6e82aca7df40de80be141ea905035bc1a6069edb
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2016-03-20T14:16:38+01:00

Commit Message:
WEB: More sanity check for screenshot ranges

Changed paths:
    include/Objects/Screenshot.php



diff --git a/include/Objects/Screenshot.php b/include/Objects/Screenshot.php
index 7211fd7..2a5848b 100644
--- a/include/Objects/Screenshot.php
+++ b/include/Objects/Screenshot.php
@@ -20,7 +20,7 @@ class Screenshot extends BasicObject {
 			foreach ($data['image'] as $value) {
 				if (isset($value['range'])) {
 					$attr = $value['range']['@attributes'];
-					if (!isset($attr['from']) || !isset($attr['to']) || !isset($attr['format'])) {
+					if (!isset($attr['from']) || !isset($attr['to']) || !isset($attr['format']) || !strstr($value['file'], '#n#')) {
 						throw new ErrorException('Invalid range format');
 					}
 					$pat = str_replace("#n#", $attr['format'], $value['file']);


Commit: 7ef6da000f01ddef89c7a38cfc4d194e443212ff
    https://github.com/scummvm/scummvm-web/commit/7ef6da000f01ddef89c7a38cfc4d194e443212ff
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2016-03-20T14:26:02+01:00

Commit Message:
WEB: Switched LEC sshots to ranges

Changed paths:
    data/screenshots.xml
    include/Objects/Screenshot.php



diff --git a/data/screenshots.xml b/data/screenshots.xml
index 493c8f1..8be9185 100644
--- a/data/screenshots.xml
+++ b/data/screenshots.xml
@@ -8,43 +8,23 @@
 			<name>Maniac Mansion</name>
 			<category>maniac</category>
 			<image>
-				<file>lec/maniac/scummvm_0_0_0</file>
+				<file>lec/maniac/scummvm_0_0_#n#</file>
+				<range from="0" to="1" format="%d" />
 				<caption>Maniac Mansion (NES)</caption>
 			</image>
 			<image>
-				<file>lec/maniac/scummvm_0_0_1</file>
-				<caption>Maniac Mansion (NES)</caption>
-			</image>
-			<image>
-				<file>lec/maniac/scummvm_0_0_2</file>
+				<file>lec/maniac/scummvm_0_0_#n#</file>
+				<range from="2" to="3" format="%d" />
 				<caption>Maniac Mansion</caption>
 			</image>
 			<image>
-				<file>lec/maniac/scummvm_0_0_3</file>
-				<caption>Maniac Mansion</caption>
-			</image>
-			<image>
-				<file>lec/maniac/scummvm_0_0_4</file>
-				<caption>Maniac Mansion (Enhanced)</caption>
-			</image>
-			<image>
-				<file>lec/maniac/scummvm_0_0_5</file>
+				<file>lec/maniac/scummvm_0_0_#n#</file>
+				<range from="4" to="5" format="%d" />
 				<caption>Maniac Mansion (Enhanced)</caption>
 			</image>
 			<image>
-				<file>lec/maniac/maniac-amiga-0</file>
-				<caption>Maniac Mansion (Amiga)</caption>
-			</image>
-			<image>
-				<file>lec/maniac/maniac-amiga-1</file>
-				<caption>Maniac Mansion (Amiga)</caption>
-			</image>
-			<image>
-				<file>lec/maniac/maniac-amiga-2</file>
-				<caption>Maniac Mansion (Amiga)</caption>
-			</image>
-			<image>
-				<file>lec/maniac/maniac-amiga-3</file>
+				<file>lec/maniac/maniac-amiga-#n#</file>
+				<range from="0" to="3" format="%d" />
 				<caption>Maniac Mansion (Amiga)</caption>
 			</image>
 			<image>
@@ -68,27 +48,13 @@
 				<caption>Zak McKracken and the Alien Mindbenders (Amiga)</caption>
 			</image>
 			<image>
-				<file>lec/zak/scummvm_0_1_3</file>
+				<file>lec/zak/scummvm_0_1_#n#</file>
+				<range from="3" to="4" format="%d" />
 				<caption>Zak McKracken and the Alien Mindbenders (FM-TOWNS)</caption>
 			</image>
 			<image>
-				<file>lec/zak/scummvm_0_1_4</file>
-				<caption>Zak McKracken and the Alien Mindbenders (FM-TOWNS)</caption>
-			</image>
-			<image>
-				<file>lec/zak/zak-fm-2</file>
-				<caption>Zak McKracken and the Alien Mindbenders (FM-TOWNS)</caption>
-			</image>
-			<image>
-				<file>lec/zak/zak-fm-3</file>
-				<caption>Zak McKracken and the Alien Mindbenders (FM-TOWNS)</caption>
-			</image>
-			<image>
-				<file>lec/zak/zak-fm-4</file>
-				<caption>Zak McKracken and the Alien Mindbenders (FM-TOWNS)</caption>
-			</image>
-			<image>
-				<file>lec/zak/zak-fm-5</file>
+				<file>lec/zak/zak-fm-#n#</file>
+				<range from="2" to="5" format="%d" />
 				<caption>Zak McKracken and the Alien Mindbenders (FM-TOWNS)</caption>
 			</image>
 		</game>
@@ -96,11 +62,8 @@
 			<name>Indiana Jones and the Last Crusade</name>
 			<category>indy3</category>
 			<image>
-				<file>lec/indy3/scummvm_0_2_0</file>
-				<caption>Indiana Jones and the Last Crusade (EGA)</caption>
-			</image>
-			<image>
-				<file>lec/indy3/scummvm_0_2_1</file>
+				<file>lec/indy3/scummvm_0_2_#n#</file>
+				<range from="0" to="1" format="%d" />
 				<caption>Indiana Jones and the Last Crusade (EGA)</caption>
 			</image>
 			<image>
@@ -108,11 +71,8 @@
 				<caption>Indiana Jones and the Last Crusade (Amiga)</caption>
 			</image>
 			<image>
-				<file>lec/indy3/scummvm_0_2_3</file>
-				<caption>Indiana Jones and the Last Crusade (VGA)</caption>
-			</image>
-			<image>
-				<file>lec/indy3/scummvm_0_2_4</file>
+				<file>lec/indy3/scummvm_0_2_#n#</file>
+				<range from="3" to="4" format="%d" />
 				<caption>Indiana Jones and the Last Crusade (VGA)</caption>
 			</image>
 		</game>
@@ -132,27 +92,18 @@
 				<caption>Loom (Amiga)</caption>
 			</image>
 			<image>
-				<file>lec/loom/scummvm_0_6_3</file>
-				<caption>Loom (VGA)</caption>
-			</image>
-			<image>
-				<file>lec/loom/scummvm_0_6_4</file>
+				<file>lec/loom/scummvm_0_6_#n#</file>
+				<range from="3" to="4" format="%d" />
 				<caption>Loom (VGA)</caption>
 			</image>
 			<image>
-				<file>lec/loom/scummvm_0_6_5</file>
+				<file>lec/loom/scummvm_0_6_#n#</file>
+				<range from="5" to="6" format="%d" />
 				<caption>Loom (PC-Engine USA)</caption>
 			</image>
 			<image>
-				<file>lec/loom/scummvm_0_6_6</file>
-				<caption>Loom (PC-Engine USA)</caption>
-			</image>
-			<image>
-				<file>lec/loom/scummvm_0_6_7</file>
-				<caption>Loom (PC-Engine Japanese)</caption>
-			</image>
-			<image>
-				<file>lec/loom/scummvm_0_6_8</file>
+				<file>lec/loom/scummvm_0_6_#n#</file>
+				<range from="7" to="8" format="%d" />
 				<caption>Loom (PC-Engine Japanese)</caption>
 			</image>
 		</game>
@@ -168,11 +119,8 @@
 				<caption>The Secret of Monkey Island (CGA)</caption>
 			</image>
 			<image>
-				<file>lec/monkey/scummvm_0_4_2</file>
-				<caption>The Secret of Monkey Island (EGA)</caption>
-			</image>
-			<image>
-				<file>lec/monkey/scummvm_0_4_3</file>
+				<file>lec/monkey/scummvm_0_4_#n#</file>
+				<range from="2" to="3" format="%d" />
 				<caption>The Secret of Monkey Island (EGA)</caption>
 			</image>
 			<image>
@@ -192,15 +140,8 @@
 				<caption>The Secret of Monkey Island (DOS CD)</caption>
 			</image>
 			<image>
-				<file>lec/monkey/monkey-cd-1</file>
-				<caption>The Secret of Monkey Island (DOS CD)</caption>
-			</image>
-			<image>
-				<file>lec/monkey/monkey-cd-2</file>
-				<caption>The Secret of Monkey Island (DOS CD)</caption>
-			</image>
-			<image>
-				<file>lec/monkey/monkey-cd-3</file>
+				<file>lec/monkey/monkey-cd-#n#</file>
+				<range from="1" to="3" format="%d" />
 				<caption>The Secret of Monkey Island (DOS CD)</caption>
 			</image>
 			<image>
@@ -220,15 +161,8 @@
 				<caption>Monkey Island 2: LeChuck's Revenge</caption>
 			</image>
 			<image>
-				<file>lec/monkey2/monkey2-1</file>
-				<caption>Monkey Island 2: LeChuck's Revenge</caption>
-			</image>
-			<image>
-				<file>lec/monkey2/monkey2-2</file>
-				<caption>Monkey Island 2: LeChuck's Revenge</caption>
-			</image>
-			<image>
-				<file>lec/monkey2/monkey2-3</file>
+				<file>lec/monkey2/monkey2-#n#</file>
+				<range from="1" to="3" format="%d" />
 				<caption>Monkey Island 2: LeChuck's Revenge</caption>
 			</image>
 			<image>
@@ -244,11 +178,8 @@
 			<name>Indiana Jones and the Fate of Atlantis</name>
 			<category>atlantis</category>
 			<image>
-				<file>lec/atlantis/scummvm_0_3_0</file>
-				<caption>Indiana Jones and the Fate of Atlantis</caption>
-			</image>
-			<image>
-				<file>lec/atlantis/scummvm_0_3_1</file>
+				<file>lec/atlantis/scummvm_0_3_#n#</file>
+				<range from="0" to="1" format="%d" />
 				<caption>Indiana Jones and the Fate of Atlantis</caption>
 			</image>
 			<image>
@@ -260,11 +191,8 @@
 			<name>Day of the Tentacle</name>
 			<category>tentacle</category>
 			<image>
-				<file>lec/tentacle/scummvm_0_8_0</file>
-				<caption>Day of the Tentacle</caption>
-			</image>
-			<image>
-				<file>lec/tentacle/scummvm_0_8_1</file>
+				<file>lec/tentacle/scummvm_0_8_#n#</file>
+				<range from="0" to="1" format="%d" />
 				<caption>Day of the Tentacle</caption>
 			</image>
 			<image>
@@ -272,15 +200,8 @@
 				<caption>Day of the Tentacle (French)</caption>
 			</image>
 			<image>
-				<file>lec/tentacle/tentacle-de-1</file>
-				<caption>Day of the Tentacle (German)</caption>
-			</image>
-			<image>
-				<file>lec/tentacle/tentacle-de-2</file>
-				<caption>Day of the Tentacle (German)</caption>
-			</image>
-			<image>
-				<file>lec/tentacle/tentacle-de-3</file>
+				<file>lec/tentacle/tentacle-de-#n#</file>
+				<range from="1" to="3" format="%d" />
 				<caption>Day of the Tentacle (German)</caption>
 			</image>
 		</game>
@@ -288,27 +209,13 @@
 			<name>Sam & Max Hit the Road </name>
 			<category>samnmax</category>
 			<image>
-				<file>lec/samnmax/scummvm_0_7_0</file>
+				<file>lec/samnmax/scummvm_0_7_#n#</file>
+				<range from="0" to="2" format="%d" />
 				<caption>Sam & Max Hit the Road</caption>
 			</image>
 			<image>
-				<file>lec/samnmax/scummvm_0_7_1</file>
-				<caption>Sam & Max Hit the Road</caption>
-			</image>
-			<image>
-				<file>lec/samnmax/scummvm_0_7_2</file>
-				<caption>Sam & Max Hit the Road</caption>
-			</image>
-			<image>
-				<file>lec/samnmax/samnmax-3</file>
-				<caption>Sam & Max Hit the Road</caption>
-			</image>
-			<image>
-				<file>lec/samnmax/samnmax-4</file>
-				<caption>Sam & Max Hit the Road</caption>
-			</image>
-			<image>
-				<file>lec/samnmax/samnmax-5</file>
+				<file>lec/samnmax/samnmax-#n#</file>
+				<range from="3" to="5" format="%d" />
 				<caption>Sam & Max Hit the Road</caption>
 			</image>
 		</game>
@@ -316,43 +223,18 @@
 			<name>Full Throttle</name>
 			<category>ft</category>
 			<image>
-				<file>lec/ft/scummvm_0_9_0</file>
-				<caption>Full Throttle</caption>
-			</image>
-			<image>
-				<file>lec/ft/scummvm_0_9_1</file>
-				<caption>Full Throttle</caption>
-			</image>
-			<image>
-				<file>lec/ft/scummvm_0_9_2</file>
+				<file>lec/ft/scummvm_0_9_#n#</file>
+				<range from="0" to="2" format="%d" />
 				<caption>Full Throttle</caption>
 			</image>
 			<image>
-				<file>lec/ft/ft-3</file>
+				<file>lec/ft/ft-#n#</file>
+				<range from="3" to="5" format="%d" />
 				<caption>Full Throttle</caption>
 			</image>
 			<image>
-				<file>lec/ft/ft-4</file>
-				<caption>Full Throttle</caption>
-			</image>
-			<image>
-				<file>lec/ft/ft-5</file>
-				<caption>Full Throttle</caption>
-			</image>
-			<image>
-				<file>lec/ft/ft-br-0</file>
-				<caption>Full Throttle (Brazilian-Portuguese)</caption>
-			</image>
-			<image>
-				<file>lec/ft/ft-br-1</file>
-				<caption>Full Throttle (Brazilian-Portuguese)</caption>
-			</image>
-			<image>
-				<file>lec/ft/ft-br-2</file>
-				<caption>Full Throttle (Brazilian-Portuguese)</caption>
-			</image>
-			<image>
-				<file>lec/ft/ft-br-3</file>
+				<file>lec/ft/ft-br-#n#</file>
+				<range from="0" to="3" format="%d" />
 				<caption>Full Throttle (Brazilian-Portuguese)</caption>
 			</image>
 		</game>
@@ -360,27 +242,13 @@
 			<name>The Dig</name>
 			<category>dig</category>
 			<image>
-				<file>lec/dig/scummvm_0_10_0</file>
-				<caption>The Dig</caption>
-			</image>
-			<image>
-				<file>lec/dig/scummvm_0_10_1</file>
-				<caption>The Dig</caption>
-			</image>
-			<image>
-				<file>lec/dig/scummvm_0_10_2</file>
+				<file>lec/dig/scummvm_0_10_#n#</file>
+				<range from="0" to="2" format="%d" />
 				<caption>The Dig</caption>
 			</image>
 			<image>
-				<file>lec/dig/dig-3</file>
-				<caption>The Dig</caption>
-			</image>
-			<image>
-				<file>lec/dig/dig-4</file>
-				<caption>The Dig</caption>
-			</image>
-			<image>
-				<file>lec/dig/dig-5</file>
+				<file>lec/dig/dig-#n#</file>
+				<range from="3" to="5" format="%d" />
 				<caption>The Dig</caption>
 			</image>
 		</game>
@@ -388,43 +256,23 @@
 			<name>The Curse of Monkey Island</name>
 			<category>comi</category>
 			<image>
-				<file>lec/comi/scummvm_0_11_0</file>
+				<file>lec/comi/scummvm_0_11_#n#</file>
+				<range from="0" to="2" format="%d" />
 				<caption>The Curse of Monkey Island</caption>
 			</image>
 			<image>
-				<file>lec/comi/scummvm_0_11_1</file>
+				<file>lec/comi/comi-#n#</file>
+				<range from="3" to="5" format="%d" />
 				<caption>The Curse of Monkey Island</caption>
 			</image>
 			<image>
-				<file>lec/comi/scummvm_0_11_2</file>
-				<caption>The Curse of Monkey Island</caption>
-			</image>
-			<image>
-				<file>lec/comi/comi-3</file>
-				<caption>The Curse of Monkey Island</caption>
-			</image>
-			<image>
-				<file>lec/comi/comi-4</file>
-				<caption>The Curse of Monkey Island</caption>
-			</image>
-			<image>
-				<file>lec/comi/comi-5</file>
-				<caption>The Curse of Monkey Island</caption>
-			</image>
-			<image>
-				<file>lec/comi/comi-zh-0</file>
-				<caption>The Curse of Monkey Island (Chinese (Taiwan))</caption>
-			</image>
-			<image>
-				<file>lec/comi/comi-zh-1</file>
+				<file>lec/comi/comi-zh-#n#</file>
+				<range from="0" to="1" format="%d" />
 				<caption>The Curse of Monkey Island (Chinese (Taiwan))</caption>
 			</image>
 			<image>
-				<file>lec/comi/comi-de-1</file>
-				<caption>The Curse of Monkey Island (German)</caption>
-			</image>
-			<image>
-				<file>lec/comi/comi-de-2</file>
+				<file>lec/comi/comi-de-#n#</file>
+				<range from="1" to="2" format="%d" />
 				<caption>The Curse of Monkey Island (German)</caption>
 			</image>
 		</game>
diff --git a/include/Objects/Screenshot.php b/include/Objects/Screenshot.php
index 2a5848b..c5672e8 100644
--- a/include/Objects/Screenshot.php
+++ b/include/Objects/Screenshot.php
@@ -21,7 +21,7 @@ class Screenshot extends BasicObject {
 				if (isset($value['range'])) {
 					$attr = $value['range']['@attributes'];
 					if (!isset($attr['from']) || !isset($attr['to']) || !isset($attr['format']) || !strstr($value['file'], '#n#')) {
-						throw new ErrorException('Invalid range format');
+						throw new ErrorException('Invalid range format for ' . $value['file']);
 					}
 					$pat = str_replace("#n#", $attr['format'], $value['file']);
 					for ($num = $attr['from']; $num <= $attr['to']; $num++) {


Commit: 09ec38df410280d36612fdd245c645e414f88f4e
    https://github.com/scummvm/scummvm-web/commit/09ec38df410280d36612fdd245c645e414f88f4e
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2016-03-20T14:43:15+01:00

Commit Message:
WEB: Switched to the range schema screenshot up to SCI games

Changed paths:
    data/screenshots.xml



diff --git a/data/screenshots.xml b/data/screenshots.xml
index 8be9185..c718d7f 100644
--- a/data/screenshots.xml
+++ b/data/screenshots.xml
@@ -284,31 +284,13 @@
 			<name>Leather Goddesses of Phobos 2</name>
 			<category>lgop2</category>
 			<image>
-				<file>made/lgop-0</file>
+				<file>made/lgop-#n#</file>
+				<range from="0" to="4" format="%d" />
 				<caption>Leather Goddesses of Phobos 2</caption>
 			</image>
 			<image>
-				<file>made/lgop-1</file>
-				<caption>Leather Goddesses of Phobos 2</caption>
-			</image>
-			<image>
-				<file>made/lgop-2</file>
-				<caption>Leather Goddesses of Phobos 2</caption>
-			</image>
-			<image>
-				<file>made/lgop-3</file>
-				<caption>Leather Goddesses of Phobos 2</caption>
-			</image>
-			<image>
-				<file>made/lgop-4</file>
-				<caption>Leather Goddesses of Phobos 2</caption>
-			</image>
-			<image>
-				<file>made/lgop-de-0</file>
-				<caption>Leather Goddesses of Phobos 2 (German)</caption>
-			</image>
-			<image>
-				<file>made/lgop-de-1</file>
+				<file>made/lgop-de-#n#</file>
+				<range from="0" to="1" format="%d" />
 				<caption>Leather Goddesses of Phobos 2 (German)</caption>
 			</image>
 		</game>
@@ -316,27 +298,8 @@
 			<name>The Manhole</name>
 			<category>manhole</category>
 			<image>
-				<file>made/manhole-0</file>
-				<caption>The Manhole</caption>
-			</image>
-			<image>
-				<file>made/manhole-1</file>
-				<caption>The Manhole</caption>
-			</image>
-			<image>
-				<file>made/manhole-2</file>
-				<caption>The Manhole</caption>
-			</image>
-			<image>
-				<file>made/manhole-3</file>
-				<caption>The Manhole</caption>
-			</image>
-			<image>
-				<file>made/manhole-4</file>
-				<caption>The Manhole</caption>
-			</image>
-			<image>
-				<file>made/manhole-5</file>
+				<file>made/manhole-#n#</file>
+				<range from="0" to="5" format="%d" />
 				<caption>The Manhole</caption>
 			</image>
 		</game>
@@ -344,35 +307,13 @@
 			<name>Return to Zork</name>
 			<category>rtz</category>
 			<image>
-				<file>made/rtz-0</file>
-				<caption>Return to Zork</caption>
-			</image>
-			<image>
-				<file>made/rtz-1</file>
-				<caption>Return to Zork</caption>
-			</image>
-			<image>
-				<file>made/rtz-2</file>
-				<caption>Return to Zork</caption>
-			</image>
-			<image>
-				<file>made/rtz-3</file>
-				<caption>Return to Zork</caption>
-			</image>
-			<image>
-				<file>made/rtz-4</file>
+				<file>made/rtz-#n#</file>
+				<range from="0" to="5" format="%d" />
 				<caption>Return to Zork</caption>
 			</image>
 			<image>
-				<file>made/rtz-5</file>
-				<caption>Return to Zork</caption>
-			</image>
-			<image>
-				<file>made/rtz-de-0</file>
-				<caption>Return to Zork (German)</caption>
-			</image>
-			<image>
-				<file>made/rtz-de-1</file>
+				<file>made/rtz-de-#n#</file>
+				<range from="0" to="1" format="%d" />
 				<caption>Return to Zork (German)</caption>
 			</image>
 		</game>
@@ -380,27 +321,8 @@
 			<name>Rodney's Funscreen</name>
 			<category>rodney</category>
 			<image>
-				<file>made/rodney-0</file>
-				<caption>Rodney's Funscreen</caption>
-			</image>
-			<image>
-				<file>made/rodney-1</file>
-				<caption>Rodney's Funscreen</caption>
-			</image>
-			<image>
-				<file>made/rodney-2</file>
-				<caption>Rodney's Funscreen</caption>
-			</image>
-			<image>
-				<file>made/rodney-3</file>
-				<caption>Rodney's Funscreen</caption>
-			</image>
-			<image>
-				<file>made/rodney-4</file>
-				<caption>Rodney's Funscreen</caption>
-			</image>
-			<image>
-				<file>made/rodney-5</file>
+				<file>made/rodney-#n#</file>
+				<range from="0" to="5" format="%d" />
 				<caption>Rodney's Funscreen</caption>
 			</image>
 		</game>
@@ -412,27 +334,13 @@
 			<name>Simon the Sorcerer series</name>
 			<category>simon</category>
 			<image>
-				<file>agos/simon/scummvm_2_4_0</file>
-				<caption>Simon the Sorcerer</caption>
-			</image>
-			<image>
-				<file>agos/simon/scummvm_2_4_1</file>
-				<caption>Simon the Sorcerer</caption>
-			</image>
-			<image>
-				<file>agos/simon/simon1-2</file>
-				<caption>Simon the Sorcerer</caption>
-			</image>
-			<image>
-				<file>agos/simon/simon1-3</file>
-				<caption>Simon the Sorcerer</caption>
-			</image>
-			<image>
-				<file>agos/simon/simon1-4</file>
+				<file>agos/simon/scummvm_2_4_#n#</file>
+				<range from="0" to="1" format="%d" />
 				<caption>Simon the Sorcerer</caption>
 			</image>
 			<image>
-				<file>agos/simon/simon1-5</file>
+				<file>agos/simon/simon1-#n#</file>
+				<range from="2" to="5" format="%d" />
 				<caption>Simon the Sorcerer</caption>
 			</image>
 			<image>
@@ -440,19 +348,8 @@
 				<caption>Simon the Sorcerer 2</caption>
 			</image>
 			<image>
-				<file>agos/simon/simon2-1</file>
-				<caption>Simon the Sorcerer 2</caption>
-			</image>
-			<image>
-				<file>agos/simon/simon2-2</file>
-				<caption>Simon the Sorcerer 2</caption>
-			</image>
-			<image>
-				<file>agos/simon/simon2-3</file>
-				<caption>Simon the Sorcerer 2</caption>
-			</image>
-			<image>
-				<file>agos/simon/simon2-4</file>
+				<file>agos/simon/simon2-#n#</file>
+				<range from="1" to="4" format="%d" />
 				<caption>Simon the Sorcerer 2</caption>
 			</image>
 			<image>
@@ -460,35 +357,23 @@
 				<caption>Simon the Sorcerer 2 (DOS Hebrew)</caption>
 			</image>
 			<image>
-				<file>agos/simon/scummvm_2_4_4</file>
-				<caption>Simon the Sorcerer's Puzzle Pack - D.I.M.P.</caption>
-			</image>
-			<image>
-				<file>agos/simon/scummvm_2_4_5</file>
+				<file>agos/simon/scummvm_2_4_#n#</file>
+				<range from="4" to="5" format="%d" />
 				<caption>Simon the Sorcerer's Puzzle Pack - D.I.M.P.</caption>
 			</image>
 			<image>
-				<file>agos/simon/scummvm_2_4_6</file>
+				<file>agos/simon/scummvm_2_4_#n#</file>
+				<range from="6" to="7" format="%d" />
 				<caption>Simon the Sorcerer's Puzzle Pack - Jumble</caption>
 			</image>
 			<image>
-				<file>agos/simon/scummvm_2_4_7</file>
-				<caption>Simon the Sorcerer's Puzzle Pack - Jumble</caption>
-			</image>
-			<image>
-				<file>agos/simon/scummvm_2_4_8</file>
+				<file>agos/simon/scummvm_2_4_#n#</file>
+				<range from="8" to="9" format="%d" />
 				<caption>Simon the Sorcerer's Puzzle Pack - NoPatience</caption>
 			</image>
 			<image>
-				<file>agos/simon/scummvm_2_4_9</file>
-				<caption>Simon the Sorcerer's Puzzle Pack - NoPatience</caption>
-			</image>
-			<image>
-				<file>agos/simon/scummvm_2_4_10</file>
-				<caption>Simon the Sorcerer's Puzzle Pack - Swampy Adventures</caption>
-			</image>
-			<image>
-				<file>agos/simon/scummvm_2_4_11</file>
+				<file>agos/simon/scummvm_2_4_#n#</file>
+				<range from="10" to="11" format="%d" />
 				<caption>Simon the Sorcerer's Puzzle Pack - Swampy Adventures</caption>
 			</image>
 		</game>
@@ -496,43 +381,13 @@
 			<name>Elvira series</name>
 			<category>elvira</category>
 			<image>
-				<file>agos/elvira/elvira-1</file>
-				<caption>Elvira - Mistress of the Dark (DOS/English)</caption>
-			</image>
-			<image>
-				<file>agos/elvira/elvira-2</file>
-				<caption>Elvira - Mistress of the Dark (DOS/English)</caption>
-			</image>
-			<image>
-				<file>agos/elvira/elvira-3</file>
-				<caption>Elvira - Mistress of the Dark (DOS/English)</caption>
-			</image>
-			<image>
-				<file>agos/elvira/elvira-4</file>
-				<caption>Elvira - Mistress of the Dark (DOS/English)</caption>
-			</image>
-			<image>
-				<file>agos/elvira/elvira-5</file>
+				<file>agos/elvira/elvira-#n#</file>
+				<range from="1" to="5" format="%d" />
 				<caption>Elvira - Mistress of the Dark (DOS/English)</caption>
 			</image>
 			<image>
-				<file>agos/elvira/elvira2-amiga-1</file>
-				<caption>Elvira II - The Jaws of Cerberus (Amiga/English)</caption>
-			</image>
-			<image>
-				<file>agos/elvira/elvira2-amiga-2</file>
-				<caption>Elvira II - The Jaws of Cerberus (Amiga/English)</caption>
-			</image>
-			<image>
-				<file>agos/elvira/elvira2-amiga-3</file>
-				<caption>Elvira II - The Jaws of Cerberus (Amiga/English)</caption>
-			</image>
-			<image>
-				<file>agos/elvira/elvira2-amiga-4</file>
-				<caption>Elvira II - The Jaws of Cerberus (Amiga/English)</caption>
-			</image>
-			<image>
-				<file>agos/elvira/elvira2-amiga-5</file>
+				<file>agos/elvira/elvira2-amiga-#n#</file>
+				<range from="1" to="5" format="%d" />
 				<caption>Elvira II - The Jaws of Cerberus (Amiga/English)</caption>
 			</image>
 		</game>
@@ -540,39 +395,8 @@
 			<name>The Feeble Files</name>
 			<category>feeble</category>
 			<image>
-				<file>agos/feeble/feeble-0</file>
-				<caption>The Feeble Files (Windows)</caption>
-			</image>
-			<image>
-				<file>agos/feeble/feeble-1</file>
-				<caption>The Feeble Files (Windows)</caption>
-			</image>
-			<image>
-				<file>agos/feeble/feeble-2</file>
-				<caption>The Feeble Files (Windows)</caption>
-			</image>
-			<image>
-				<file>agos/feeble/feeble-3</file>
-				<caption>The Feeble Files (Windows)</caption>
-			</image>
-			<image>
-				<file>agos/feeble/feeble-4</file>
-				<caption>The Feeble Files (Windows)</caption>
-			</image>
-			<image>
-				<file>agos/feeble/feeble-5</file>
-				<caption>The Feeble Files (Windows)</caption>
-			</image>
-			<image>
-				<file>agos/feeble/feeble-6</file>
-				<caption>The Feeble Files (Windows)</caption>
-			</image>
-			<image>
-				<file>agos/feeble/feeble-7</file>
-				<caption>The Feeble Files (Windows)</caption>
-			</image>
-			<image>
-				<file>agos/feeble/feeble-8</file>
+				<file>agos/feeble/feeble-#n#</file>
+				<range from="0" to="8" format="%d" />
 				<caption>The Feeble Files (Windows)</caption>
 			</image>
 		</game>
@@ -580,19 +404,8 @@
 			<name>Waxworks</name>
 			<category>waxworks</category>
 			<image>
-				<file>agos/waxworks/waxworks-1</file>
-				<caption>Waxworks (DOS/English)</caption>
-			</image>
-			<image>
-				<file>agos/waxworks/waxworks-2</file>
-				<caption>Waxworks (DOS/English)</caption>
-			</image>
-			<image>
-				<file>agos/waxworks/waxworks-3</file>
-				<caption>Waxworks (DOS/English)</caption>
-			</image>
-			<image>
-				<file>agos/waxworks/waxworks-4</file>
+				<file>agos/waxworks/waxworks-#n#</file>
+				<range from="1" to="4" format="%d" />
 				<caption>Waxworks (DOS/English)</caption>
 			</image>
 			<image>
@@ -608,23 +421,13 @@
 			<name>Bargon Attack</name>
 			<category>bargon</category>
 			<image>
-				<file>gob/bargon/scummvm_2_11_0</file>
-				<caption>Bargon Attack (DOS)</caption>
-			</image>
-			<image>
-				<file>gob/bargon/scummvm_2_11_1</file>
-				<caption>Bargon Attack (DOS)</caption>
-			</image>
-			<image>
-				<file>gob/bargon/scummvm_2_11_2</file>
+				<file>gob/bargon/scummvm_2_11_#n#</file>
+				<range from="0" to="2" format="%d" />
 				<caption>Bargon Attack (DOS)</caption>
 			</image>
 			<image>
-				<file>gob/bargon/bargon-fr-1</file>
-				<caption>Bargon Attack (DOS/French)</caption>
-			</image>
-			<image>
-				<file>gob/bargon/bargon-fr-2</file>
+				<file>gob/bargon/bargon-fr-#n#</file>
+				<range from="1" to="2" format="%d" />
 				<caption>Bargon Attack (DOS/French)</caption>
 			</image>
 		</game>
@@ -632,67 +435,33 @@
 			<name>The Bizarre Adventures of Woodruff and the Schnibble</name>
 			<category>woodruff</category>
 			<image>
-				<file>gob/woodruff/woodruff-0</file>
+				<file>gob/woodruff/woodruff-#n#</file>
+				<range from="0" to="4" format="%d" />
 				<caption>The Bizarre Adventures of Woodruff and the Schnibble</caption>
 			</image>
 			<image>
-				<file>gob/woodruff/woodruff-1</file>
-				<caption>The Bizarre Adventures of Woodruff and the Schnibble</caption>
-			</image>
-			<image>
-				<file>gob/woodruff/woodruff-2</file>
-				<caption>The Bizarre Adventures of Woodruff and the Schnibble</caption>
-			</image>
-			<image>
-				<file>gob/woodruff/woodruff-3</file>
-				<caption>The Bizarre Adventures of Woodruff and the Schnibble</caption>
-			</image>
-			<image>
-				<file>gob/woodruff/woodruff-4</file>
-				<caption>The Bizarre Adventures of Woodruff and the Schnibble</caption>
-			</image>
-			<image>
-				<file>gob/woodruff/woodruff-gb-1</file>
-				<caption>The Bizarre Adventures of Woodruff and the Schnibble (English (GB))</caption>
-			</image>
-			<image>
-				<file>gob/woodruff/woodruff-gb-2</file>
-				<caption>The Bizarre Adventures of Woodruff and the Schnibble (English (GB))</caption>
-			</image>
-			<image>
-				<file>gob/woodruff/woodruff-gb-3</file>
+				<file>gob/woodruff/woodruff-gb-#n#</file>
+				<range from="1" to="3" format="%d" />
 				<caption>The Bizarre Adventures of Woodruff and the Schnibble (English (GB))</caption>
 			</image>
 			<image>
-				<file>gob/woodruff/woodruff-fr-1</file>
-				<caption>The Bizarre Adventures of Woodruff and the Schnibble (French)</caption>
-			</image>
-			<image>
-				<file>gob/woodruff/woodruff-fr-2</file>
+				<file>gob/woodruff/woodruff-fr-#n#</file>
+				<range from="1" to="2" format="%d" />
 				<caption>The Bizarre Adventures of Woodruff and the Schnibble (French)</caption>
 			</image>
 			<image>
-				<file>gob/woodruff/woodruff-de-1</file>
-				<caption>The Bizarre Adventures of Woodruff and the Schnibble (German)</caption>
-			</image>
-			<image>
-				<file>gob/woodruff/woodruff-de-2</file>
+				<file>gob/woodruff/woodruff-de-#n#</file>
+				<range from="1" to="2" format="%d" />
 				<caption>The Bizarre Adventures of Woodruff and the Schnibble (German)</caption>
 			</image>
 			<image>
-				<file>gob/woodruff/woodruff-it-1</file>
-				<caption>The Bizarre Adventures of Woodruff and the Schnibble (Italian)</caption>
-			</image>
-			<image>
-				<file>gob/woodruff/woodruff-it-2</file>
+				<file>gob/woodruff/woodruff-it-#n#</file>
+				<range from="1" to="2" format="%d" />
 				<caption>The Bizarre Adventures of Woodruff and the Schnibble (Italian)</caption>
 			</image>
 			<image>
-				<file>gob/woodruff/woodruff-es-1</file>
-				<caption>The Bizarre Adventures of Woodruff and the Schnibble (Spanish)</caption>
-			</image>
-			<image>
-				<file>gob/woodruff/woodruff-es-2</file>
+				<file>gob/woodruff/woodruff-es-#n#</file>
+				<range from="1" to="2" format="%d" />
 				<caption>The Bizarre Adventures of Woodruff and the Schnibble (Spanish)</caption>
 			</image>
 		</game>
@@ -700,75 +469,38 @@
 			<name>Fascination</name>
 			<category>fascination</category>
 			<image>
-				<file>gob/fascination/fascination-1</file>
-				<caption>Fascination (CD English)</caption>
-			</image>
-			<image>
-				<file>gob/fascination/fascination-2</file>
-				<caption>Fascination (CD English)</caption>
-			</image>
-			<image>
-				<file>gob/fascination/fascination-3</file>
-				<caption>Fascination (CD English)</caption>
-			</image>
-			<image>
-				<file>gob/fascination/fascination-4</file>
-				<caption>Fascination (CD English)</caption>
-			</image>
-			<image>
-				<file>gob/fascination/fascination-5</file>
-				<caption>Fascination (CD English)</caption>
-			</image>
-			<image>
-				<file>gob/fascination/fascination-6</file>
+				<file>gob/fascination/fascination-#n#</file>
+				<range from="1" to="6" format="%d" />
 				<caption>Fascination (CD English)</caption>
 			</image>
 			<image>
-				<file>gob/fascination/fascination-fr-1</file>
-				<caption>Fascination (CD/French)</caption>
-			</image>
-			<image>
-				<file>gob/fascination/fascination-fr-2</file>
+				<file>gob/fascination/fascination-fr-#n#</file>
+				<range from="1" to="2" format="%d" />
 				<caption>Fascination (CD/French)</caption>
 			</image>
 			<image>
-				<file>gob/fascination/fascination-de-1</file>
-				<caption>Fascination (CD/German)</caption>
-			</image>
-			<image>
-				<file>gob/fascination/fascination-de-2</file>
+				<file>gob/fascination/fascination-de-#n#</file>
+				<range from="1" to="2" format="%d" />
 				<caption>Fascination (CD/German)</caption>
 			</image>
 			<image>
-				<file>gob/fascination/fascination-it-1</file>
-				<caption>Fascination (CD/Italian)</caption>
-			</image>
-			<image>
-				<file>gob/fascination/fascination-it-2</file>
+				<file>gob/fascination/fascination-it-#n#</file>
+				<range from="1" to="2" format="%d" />
 				<caption>Fascination (CD/Italian)</caption>
 			</image>
 			<image>
-				<file>gob/fascination/fascination-es-1</file>
-				<caption>Fascination (CD/Spanish)</caption>
-			</image>
-			<image>
-				<file>gob/fascination/fascination-es-2</file>
+				<file>gob/fascination/fascination-es-#n#</file>
+				<range from="1" to="2" format="%d" />
 				<caption>Fascination (CD/Spanish)</caption>
 			</image>
 			<image>
-				<file>gob/fascination/fascination-amiga-de-1</file>
-				<caption>Fascination (Amiga/German)</caption>
-			</image>
-			<image>
-				<file>gob/fascination/fascination-amiga-de-2</file>
+				<file>gob/fascination/fascination-amiga-de-#n#</file>
+				<range from="1" to="2" format="%d" />
 				<caption>Fascination (Amiga/German)</caption>
 			</image>
 			<image>
-				<file>gob/fascination/fascination-amiga-fr-1</file>
-				<caption>Fascination (Amiga/French)</caption>
-			</image>
-			<image>
-				<file>gob/fascination/fascination-amiga-fr-2</file>
+				<file>gob/fascination/fascination-amiga-fr-#n#</file>
+				<range from="1" to="2" format="%d" />
 				<caption>Fascination (Amiga/French)</caption>
 			</image>
 		</game>
@@ -776,39 +508,13 @@
 			<name>Geisha</name>
 			<category>geisha</category>
 			<image>
-				<file>gob/geisha/geisha-1</file>
-				<caption>Geisha (DOS/English)</caption>
-			</image>
-			<image>
-				<file>gob/geisha/geisha-2</file>
-				<caption>Geisha (DOS/English)</caption>
-			</image>
-			<image>
-				<file>gob/geisha/geisha-3</file>
+				<file>gob/geisha/geisha-#n#</file>
+				<range from="1" to="6" format="%d" />
 				<caption>Geisha (DOS/English)</caption>
 			</image>
 			<image>
-				<file>gob/geisha/geisha-4</file>
-				<caption>Geisha (DOS/English)</caption>
-			</image>
-			<image>
-				<file>gob/geisha/geisha-5</file>
-				<caption>Geisha (DOS/English)</caption>
-			</image>
-			<image>
-				<file>gob/geisha/geisha-6</file>
-				<caption>Geisha (DOS/English)</caption>
-			</image>
-			<image>
-				<file>gob/geisha/geisha-amiga-1</file>
-				<caption>Geisha (Amiga/English)</caption>
-			</image>
-			<image>
-				<file>gob/geisha/geisha-amiga-2</file>
-				<caption>Geisha (Amiga/English)</caption>
-			</image>
-			<image>
-				<file>gob/geisha/geisha-amiga-3</file>
+				<file>gob/geisha/geisha-amiga-#n#</file>
+				<range from="1" to="3" format="%d" />
 				<caption>Geisha (Amiga/English)</caption>
 			</image>
 		</game>
@@ -816,115 +522,58 @@
 			<name>Gobliiins series</name>
 			<category>gob</category>
 			<image>
-				<file>gob/gob/scummvm_2_1_0</file>
-				<caption>Gobliiins</caption>
-			</image>
-			<image>
-				<file>gob/gob/scummvm_2_1_1</file>
-				<caption>Gobliiins</caption>
-			</image>
-			<image>
-				<file>gob/gob/gob1-2</file>
-				<caption>Gobliiins</caption>
-			</image>
-			<image>
-				<file>gob/gob/gob1-3</file>
-				<caption>Gobliiins</caption>
-			</image>
-			<image>
-				<file>gob/gob/gob1-4</file>
+				<file>gob/gob/scummvm_2_1_#n#</file>
+				<range from="0" to="1" format="%d" />
 				<caption>Gobliiins</caption>
 			</image>
 			<image>
-				<file>gob/gob/gob1-5</file>
+				<file>gob/gob/gob1-#n#</file>
+				<range from="2" to="5" format="%d" />
 				<caption>Gobliiins</caption>
 			</image>
 			<image>
-				<file>gob/gob/gob1-pl-1</file>
-				<caption>Gobliiins (DOS/Polish)</caption>
-			</image>
-			<image>
-				<file>gob/gob/gob1-pl-2</file>
+				<file>gob/gob/gob1-pl-#n#</file>
+				<range from="1" to="2" format="%d" />
 				<caption>Gobliiins (DOS/Polish)</caption>
 			</image>
 			<image>
-				<file>gob/gob/scummvm_2_1_2</file>
-				<caption>Gobliins 2 (CD)</caption>
-			</image>
-			<image>
-				<file>gob/gob/scummvm_2_1_3</file>
-				<caption>Gobliins 2 (CD)</caption>
-			</image>
-			<image>
-				<file>gob/gob/gob2-3</file>
-				<caption>Gobliins 2 (CD)</caption>
-			</image>
-			<image>
-				<file>gob/gob/gob2-4</file>
+				<file>gob/gob/scummvm_2_1_#n#</file>
+				<range from="2" to="3" format="%d" />
 				<caption>Gobliins 2 (CD)</caption>
 			</image>
 			<image>
-				<file>gob/gob/gob2-5</file>
+				<file>gob/gob/gob2-#n#</file>
+				<range from="3" to="5" format="%d" />
 				<caption>Gobliins 2 (CD)</caption>
 			</image>
 			<image>
-				<file>gob/gob/gob2-pl-1</file>
-				<caption>Gobliins 2 (CD/Polish)</caption>
-			</image>
-			<image>
-				<file>gob/gob/gob2-pl-2</file>
+				<file>gob/gob/gob2-pl-#n#</file>
+				<range from="1" to="2" format="%d" />
 				<caption>Gobliins 2 (CD/Polish)</caption>
 			</image>
 			<image>
-				<file>gob/gob/gob2-amiga-de-1</file>
-				<caption>Gobliins 2 (Amiga/German)</caption>
-			</image>
-			<image>
-				<file>gob/gob/gob2-amiga-de-2</file>
+				<file>gob/gob/gob2-amiga-de-#n#</file>
+				<range from="1" to="2" format="%d" />
 				<caption>Gobliins 2 (Amiga/German)</caption>
 			</image>
 			<image>
-				<file>gob/gob/scummvm_2_1_5</file>
-				<caption>Goblins Quest 3 (DOS)</caption>
-			</image>
-			<image>
-				<file>gob/gob/scummvm_2_1_6</file>
-				<caption>Goblins Quest 3 (DOS)</caption>
-			</image>
-			<image>
-				<file>gob/gob/scummvm_2_1_7</file>
-				<caption>Goblins Quest 3 (DOS)</caption>
-			</image>
-			<image>
-				<file>gob/gob/gob3-3</file>
-				<caption>Goblins Quest 3 (DOS)</caption>
-			</image>
-			<image>
-				<file>gob/gob/gob3-4</file>
+				<file>gob/gob/scummvm_2_1_#n#</file>
+				<range from="5" to="7" format="%d" />
 				<caption>Goblins Quest 3 (DOS)</caption>
 			</image>
 			<image>
-				<file>gob/gob/gob3-5</file>
+				<file>gob/gob/gob3-#n#</file>
+				<range from="3" to="5" format="%d" />
 				<caption>Goblins Quest 3 (DOS)</caption>
 			</image>
 			<image>
-				<file>gob/gob/gob3-pl-1</file>
-				<caption>Goblins Quest 3 (DOS CD/Polish)</caption>
-			</image>
-			<image>
-				<file>gob/gob/gob3-pl-2</file>
-				<caption>Goblins Quest 3 (DOS CD/Polish)</caption>
-			</image>
-			<image>
-				<file>gob/gob/gob3-pl-3</file>
+				<file>gob/gob/gob3-pl-#n#</file>
+				<range from="1" to="3" format="%d" />
 				<caption>Goblins Quest 3 (DOS CD/Polish)</caption>
 			</image>
 			<image>
-				<file>gob/gob/gob3-amiga-fr-1</file>
-				<caption>Goblins Quest 3 (Amiga/French)</caption>
-			</image>
-			<image>
-				<file>gob/gob/gob3-amiga-fr-2</file>
+				<file>gob/gob/gob3-amiga-fr-#n#</file>
+				<range from="1" to="2" format="%d" />
 				<caption>Goblins Quest 3 (Amiga/French)</caption>
 			</image>
 		</game>
@@ -932,15 +581,8 @@
 			<name>Lost In Time</name>
 			<category>lostintime</category>
 			<image>
-				<file>gob/lostintime/lostintime-1</file>
-				<caption>Lost in Time (CD DOS)</caption>
-			</image>
-			<image>
-				<file>gob/lostintime/lostintime-2</file>
-				<caption>Lost in Time (CD DOS)</caption>
-			</image>
-			<image>
-				<file>gob/lostintime/lostintime-3</file>
+				<file>gob/lostintime/lostintime-#n#</file>
+				<range from="1" to="3" format="%d" />
 				<caption>Lost in Time (CD DOS)</caption>
 			</image>
 			<image>
@@ -960,51 +602,13 @@
 			<name>Once Upon A Time: Little Red Riding Hood</name>
 			<category>littlered</category>
 			<image>
-				<file>gob/littlered/littlered-gb-1</file>
+				<file>gob/littlered/littlered-gb-#n#</file>
+				<range from="1" to="10" format="%d" />
 				<caption>Once Upon A Time: Little Red Riding Hood (DOS/English)</caption>
 			</image>
 			<image>
-				<file>gob/littlered/littlered-gb-2</file>
-				<caption>Once Upon A Time: Little Red Riding Hood (DOS/English)</caption>
-			</image>
-			<image>
-				<file>gob/littlered/littlered-gb-3</file>
-				<caption>Once Upon A Time: Little Red Riding Hood (DOS/English)</caption>
-			</image>
-			<image>
-				<file>gob/littlered/littlered-gb-4</file>
-				<caption>Once Upon A Time: Little Red Riding Hood (DOS/English)</caption>
-			</image>
-			<image>
-				<file>gob/littlered/littlered-gb-5</file>
-				<caption>Once Upon A Time: Little Red Riding Hood (DOS/English)</caption>
-			</image>
-			<image>
-				<file>gob/littlered/littlered-gb-6</file>
-				<caption>Once Upon A Time: Little Red Riding Hood (DOS/English)</caption>
-			</image>
-			<image>
-				<file>gob/littlered/littlered-gb-7</file>
-				<caption>Once Upon A Time: Little Red Riding Hood (DOS/English)</caption>
-			</image>
-			<image>
-				<file>gob/littlered/littlered-gb-8</file>
-				<caption>Once Upon A Time: Little Red Riding Hood (DOS/English)</caption>
-			</image>
-			<image>
-				<file>gob/littlered/littlered-gb-9</file>
-				<caption>Once Upon A Time: Little Red Riding Hood (DOS/English)</caption>
-			</image>
-			<image>
-				<file>gob/littlered/littlered-gb-10</file>
-				<caption>Once Upon A Time: Little Red Riding Hood (DOS/English)</caption>
-			</image>
-			<image>
-				<file>gob/littlered/littlered-de-1</file>
-				<caption>Once Upon A Time: Little Red Riding Hood (DOS/German)</caption>
-			</image>
-			<image>
-				<file>gob/littlered/littlered-de-2</file>
+				<file>gob/littlered/littlered-de-#n#</file>
+				<range from="1" to="2" format="%d" />
 				<caption>Once Upon A Time: Little Red Riding Hood (DOS/German)</caption>
 			</image>
 			<image>
@@ -1012,19 +616,13 @@
 				<caption>Once Upon A Time: Little Red Riding Hood (DOS/Spanish)</caption>
 			</image>
 			<image>
-				<file>gob/littlered/littlered-fr-1</file>
-				<caption>Once Upon A Time: Little Red Riding Hood (DOS/French)</caption>
-			</image>
-			<image>
-				<file>gob/littlered/littlered-fr-2</file>
+				<file>gob/littlered/littlered-fr-#n#</file>
+				<range from="1" to="2" format="%d" />
 				<caption>Once Upon A Time: Little Red Riding Hood (DOS/French)</caption>
 			</image>
 			<image>
-				<file>gob/littlered/littlered-it-1</file>
-				<caption>Once Upon A Time: Little Red Riding Hood (DOS/Italian)</caption>
-			</image>
-			<image>
-				<file>gob/littlered/littlered-it-2</file>
+				<file>gob/littlered/littlered-it-#n#</file>
+				<range from="1" to="2" format="%d" />
 				<caption>Once Upon A Time: Little Red Riding Hood (DOS/Italian)</caption>
 			</image>
 		</game>
@@ -1032,27 +630,8 @@
 			<name>Urban Runner</name>
 			<category>urban</category>
 			<image>
-				<file>gob/urban/urban-1</file>
-				<caption>Urban Runner</caption>
-			</image>
-			<image>
-				<file>gob/urban/urban-2</file>
-				<caption>Urban Runner</caption>
-			</image>
-			<image>
-				<file>gob/urban/urban-3</file>
-				<caption>Urban Runner</caption>
-			</image>
-			<image>
-				<file>gob/urban/urban-4</file>
-				<caption>Urban Runner</caption>
-			</image>
-			<image>
-				<file>gob/urban/urban-5</file>
-				<caption>Urban Runner</caption>
-			</image>
-			<image>
-				<file>gob/urban/urban-6</file>
+				<file>gob/urban/urban-#n#</file>
+				<range from="1" to="6" format="%d" />
 				<caption>Urban Runner</caption>
 			</image>
 		</game>
@@ -1060,35 +639,18 @@
 			<name>Ween: The Prophecy</name>
 			<category>ween</category>
 			<image>
-				<file>gob/ween/scummvm_2_9_0</file>
-				<caption>Ween: The Prophecy</caption>
-			</image>
-			<image>
-				<file>gob/ween/scummvm_2_9_1</file>
-				<caption>Ween: The Prophecy</caption>
-			</image>
-			<image>
-				<file>gob/ween/scummvm_2_9_2</file>
-				<caption>Ween: The Prophecy</caption>
-			</image>
-			<image>
-				<file>gob/ween/scummvm_2_9_3</file>
+				<file>gob/ween/scummvm_2_9_#n#</file>
+				<range from="0" to="3" format="%d" />
 				<caption>Ween: The Prophecy</caption>
 			</image>
 			<image>
-				<file>gob/ween/ween-amiga-fr-1</file>
-				<caption>Ween: The Prophecy (Amiga/French)</caption>
-			</image>
-			<image>
-				<file>gob/ween/ween-amiga-fr-2</file>
+				<file>gob/ween/ween-amiga-fr-#n#</file>
+				<range from="1" to="2" format="%d" />
 				<caption>Ween: The Prophecy (Amiga/French)</caption>
 			</image>
 			<image>
-				<file>gob/ween/ween-amiga-it-1</file>
-				<caption>Ween: The Prophecy (Amiga/Italian)</caption>
-			</image>
-			<image>
-				<file>gob/ween/ween-amiga-it-2</file>
+				<file>gob/ween/ween-amiga-it-#n#</file>
+				<range from="1" to="2" format="%d" />
 				<caption>Ween: The Prophecy (Amiga/Italian)</caption>
 			</image>
 		</game>
@@ -1100,11 +662,8 @@
 			<name>Beneath a Steel Sky</name>
 			<category>sky</category>
 			<image>
-				<file>revolution/sky/scummvm_2_5_0</file>
-				<caption>Beneath a Steel Sky</caption>
-			</image>
-			<image>
-				<file>revolution/sky/scummvm_2_5_1</file>
+				<file>revolution/sky/scummvm_2_5_#n#</file>
+				<range from="0" to="1" format="%d" />
 				<caption>Beneath a Steel Sky</caption>
 			</image>
 		</game>
@@ -1112,23 +671,13 @@
 			<name>Broken Sword: The Shadow of the Templars</name>
 			<category>sword</category>
 			<image>
-				<file>revolution/sword/scummvm_2_0_0</file>
-				<caption>Broken Sword: The Shadow of the Templars</caption>
-			</image>
-			<image>
-				<file>revolution/sword/scummvm_2_0_1</file>
+				<file>revolution/sword/scummvm_2_0_#n#</file>
+				<range from="0" to="1" format="%d" />
 				<caption>Broken Sword: The Shadow of the Templars</caption>
 			</image>
 			<image>
-				<file>revolution/sword/sword1-de-1</file>
-				<caption>Broken Sword: The Shadow of the Templars (Windows German)</caption>
-			</image>
-			<image>
-				<file>revolution/sword/sword1-de-2</file>
-				<caption>Broken Sword: The Shadow of the Templars (Windows German)</caption>
-			</image>
-			<image>
-				<file>revolution/sword/sword1-de-3</file>
+				<file>revolution/sword/sword1-de-#n#</file>
+				<range from="1" to="3" format="%d" />
 				<caption>Broken Sword: The Shadow of the Templars (Windows German)</caption>
 			</image>
 		</game>
@@ -1136,31 +685,18 @@
 			<name>Broken Sword II: The Smoking Mirror</name>
 			<category>sword2</category>
 			<image>
-				<file>revolution/sword/scummvm_2_0_2</file>
-				<caption>Broken Sword II: The Smoking Mirror</caption>
-			</image>
-			<image>
-				<file>revolution/sword/scummvm_2_0_3</file>
+				<file>revolution/sword/scummvm_2_0_#n#</file>
+				<range from="2" to="3" format="%d" />
 				<caption>Broken Sword II: The Smoking Mirror</caption>
 			</image>
 			<image>
-				<file>revolution/sword/sword2-de-1</file>
-				<caption>Broken Sword II: The Smoking Mirror (Windows German)</caption>
-			</image>
-			<image>
-				<file>revolution/sword/sword2-de-2</file>
-				<caption>Broken Sword II: The Smoking Mirror (Windows German)</caption>
-			</image>
-			<image>
-				<file>revolution/sword/sword2-de-3</file>
+				<file>revolution/sword/sword2-de-#n#</file>
+				<range from="1" to="3" format="%d" />
 				<caption>Broken Sword II: The Smoking Mirror (Windows German)</caption>
 			</image>
 			<image>
-				<file>revolution/sword/sword2-pl-1</file>
-				<caption>Broken Sword II: The Smoking Mirror (Windows Polish)</caption>
-			</image>
-			<image>
-				<file>revolution/sword/sword2-pl-2</file>
+				<file>revolution/sword/sword2-pl-#n#</file>
+				<range from="1" to="2" format="%d" />
 				<caption>Broken Sword II: The Smoking Mirror (Windows Polish)</caption>
 			</image>
 		</game>
@@ -1177,27 +713,8 @@
 			<name>Lure of the Temptress</name>
 			<category>lure</category>
 			<image>
-				<file>revolution/lure/lure-1</file>
-				<caption>Lure of the Temptress (DOS VGA)</caption>
-			</image>
-			<image>
-				<file>revolution/lure/lure-2</file>
-				<caption>Lure of the Temptress (DOS VGA)</caption>
-			</image>
-			<image>
-				<file>revolution/lure/lure-3</file>
-				<caption>Lure of the Temptress (DOS VGA)</caption>
-			</image>
-			<image>
-				<file>revolution/lure/lure-4</file>
-				<caption>Lure of the Temptress (DOS VGA)</caption>
-			</image>
-			<image>
-				<file>revolution/lure/lure-5</file>
-				<caption>Lure of the Temptress (DOS VGA)</caption>
-			</image>
-			<image>
-				<file>revolution/lure/lure-6</file>
+				<file>revolution/lure/lure-#n#</file>
+				<range from="1" to="6" format="%d" />
 				<caption>Lure of the Temptress (DOS VGA)</caption>
 			</image>
 		</game>


Commit: 459d55e8e4419a109e4db4205b4860c289202d4c
    https://github.com/scummvm/scummvm-web/commit/459d55e8e4419a109e4db4205b4860c289202d4c
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2016-03-20T15:19:18+01:00

Commit Message:
WEB: Switched Sierra game shots to range schema

Changed paths:
    data/screenshots.xml



diff --git a/data/screenshots.xml b/data/screenshots.xml
index c718d7f..f028234 100644
--- a/data/screenshots.xml
+++ b/data/screenshots.xml
@@ -726,23 +726,8 @@
 			<name>The Black Cauldron</name>
 			<category>bc</category>
 			<image>
-				<file>agi/bc/scummvm_3_1_0</file>
-				<caption>The Black Cauldron (2.00 1987-06-14/DOS/English)</caption>
-			</image>
-			<image>
-				<file>agi/bc/scummvm_3_1_1</file>
-				<caption>The Black Cauldron (2.00 1987-06-14/DOS/English)</caption>
-			</image>
-			<image>
-				<file>agi/bc/scummvm_3_1_2</file>
-				<caption>The Black Cauldron (2.00 1987-06-14/DOS/English)</caption>
-			</image>
-			<image>
-				<file>agi/bc/scummvm_3_1_3</file>
-				<caption>The Black Cauldron (2.00 1987-06-14/DOS/English)</caption>
-			</image>
-			<image>
-				<file>agi/bc/scummvm_3_1_4</file>
+				<file>agi/bc/scummvm_3_1_#n#</file>
+				<range from="0" to="4" format="%d" />
 				<caption>The Black Cauldron (2.00 1987-06-14/DOS/English)</caption>
 			</image>
 		</game>
@@ -750,27 +735,13 @@
 			<name>Gold Rush</name>
 			<category>gr</category>
 			<image>
-				<file>agi/goldrush/scummvm_3_2_0</file>
-				<caption>Gold Rush! (2.01 1988-12-22 3.5"/DOS/English)</caption>
-			</image>
-			<image>
-				<file>agi/goldrush/scummvm_3_2_1</file>
-				<caption>Gold Rush! (2.01 1988-12-22 3.5"/DOS/English)</caption>
-			</image>
-			<image>
-				<file>agi/goldrush/scummvm_3_2_2</file>
-				<caption>Gold Rush! (2.01 1988-12-22 3.5"/DOS/English)</caption>
-			</image>
-			<image>
-				<file>agi/goldrush/scummvm_3_2_3</file>
+				<file>agi/goldrush/scummvm_3_2_#n#</file>
+				<range from="0" to="3" format="%d" />
 				<caption>Gold Rush! (2.01 1988-12-22 3.5"/DOS/English)</caption>
 			</image>
 			<image>
-				<file>agi/goldrush/gr-amiga-0</file>
-				<caption>Gold Rush! (1.01 1989-01-13 aka 2.05 1989-03-09/Amiga/English)</caption>
-			</image>
-			<image>
-				<file>agi/goldrush/gr-amiga-1</file>
+				<file>agi/goldrush/gr-amiga-#n#</file>
+				<range from="0" to="1" format="%d" />
 				<caption>Gold Rush! (1.01 1989-01-13 aka 2.05 1989-03-09/Amiga/English)</caption>
 			</image>
 		</game>
@@ -778,75 +749,28 @@
 			<name>King's Quest series</name>
 			<category>kq</category>
 			<image>
-				<file>agi/kq/scummvm_3_3_0</file>
-				<caption>King's Quest I: Quest for the Crown (2.0F 1987-05-05 5.25"/3.5"/DOS/English)</caption>
-			</image>
-			<image>
-				<file>agi/kq/scummvm_3_3_1</file>
-				<caption>King's Quest I: Quest for the Crown (2.0F 1987-05-05 5.25"/3.5"/DOS/English)</caption>
-			</image>
-			<image>
-				<file>agi/kq/scummvm_3_3_2</file>
-				<caption>King's Quest I: Quest for the Crown (2.0F 1987-05-05 5.25"/3.5"/DOS/English)</caption>
-			</image>
-			<image>
-				<file>agi/kq/scummvm_3_3_3</file>
+				<file>agi/kq/scummvm_3_3_#n#</file>
+				<range from="0" to="3" format="%d" />
 				<caption>King's Quest I: Quest for the Crown (2.0F 1987-05-05 5.25"/3.5"/DOS/English)</caption>
 			</image>
 			<image>
-				<file>agi/kq/scummvm_3_3_4</file>
-				<caption>King's Quest II: Romancing the Stone (2.1 1987-04-10/DOS/English)</caption>
-			</image>
-			<image>
-				<file>agi/kq/scummvm_3_3_5</file>
+				<file>agi/kq/scummvm_3_3_#n#</file>
+				<range from="4" to="5" format="%d" />
 				<caption>King's Quest II: Romancing the Stone (2.1 1987-04-10/DOS/English)</caption>
 			</image>
 			<image>
-				<file>agi/kq/scummvm_3_3_6</file>
-				<caption>King's Quest II: Romancing the Throne (2.2 1987-05-07 5.25"/3.5"/DOS/English)</caption>
-			</image>
-			<image>
-				<file>agi/kq/scummvm_3_3_7</file>
+				<file>agi/kq/scummvm_3_3_#n#</file>
+				<range from="6" to="7" format="%d" />
 				<caption>King's Quest II: Romancing the Throne (2.2 1987-05-07 5.25"/3.5"/DOS/English)</caption>
 			</image>
 			<image>
-				<file>agi/kq/scummvm_3_3_8</file>
-				<caption>King's Quest III: To Heir Is Human (2.14 1988-03-15 3.5"/DOS/English)</caption>
-			</image>
-			<image>
-				<file>agi/kq/scummvm_3_3_9</file>
+				<file>agi/kq/scummvm_3_3_#n#</file>
+				<range from="8" to="12" format="%d" />
 				<caption>King's Quest III: To Heir Is Human (2.14 1988-03-15 3.5"/DOS/English)</caption>
 			</image>
 			<image>
-				<file>agi/kq/scummvm_3_3_10</file>
-				<caption>King's Quest III: To Heir Is Human (2.14 1988-03-15 3.5"/DOS/English)</caption>
-			</image>
-			<image>
-				<file>agi/kq/scummvm_3_3_11</file>
-				<caption>King's Quest III: To Heir Is Human (2.14 1988-03-15 3.5"/DOS/English)</caption>
-			</image>
-			<image>
-				<file>agi/kq/scummvm_3_3_12</file>
-				<caption>King's Quest III: To Heir Is Human (2.14 1988-03-15 3.5"/DOS/English)</caption>
-			</image>
-			<image>
-				<file>agi/kq/scummvm_3_3_13</file>
-				<caption>King's Quest IV: The Perils of Rosella (2.0 1988-07-27 3.5"/DOS/English)</caption>
-			</image>
-			<image>
-				<file>agi/kq/scummvm_3_3_14</file>
-				<caption>King's Quest IV: The Perils of Rosella (2.0 1988-07-27 3.5"/DOS/English)</caption>
-			</image>
-			<image>
-				<file>agi/kq/scummvm_3_3_15</file>
-				<caption>King's Quest IV: The Perils of Rosella (2.0 1988-07-27 3.5"/DOS/English)</caption>
-			</image>
-			<image>
-				<file>agi/kq/scummvm_3_3_16</file>
-				<caption>King's Quest IV: The Perils of Rosella (2.0 1988-07-27 3.5"/DOS/English)</caption>
-			</image>
-			<image>
-				<file>agi/kq/scummvm_3_3_17</file>
+				<file>agi/kq/scummvm_3_3_#n#</file>
+				<range from="13" to="17" format="%d" />
 				<caption>King's Quest IV: The Perils of Rosella (2.0 1988-07-27 3.5"/DOS/English)</caption>
 			</image>
 		</game>
@@ -854,47 +778,18 @@
 			<name>Leisure Suit Larry</name>
 			<category>lsl</category>
 			<image>
-				<file>agi/lsl/lsl1-1</file>
-				<caption>Leisure Suit Larry in the Land of the Lounge Lizards (1.00 1987-06-01 5.25"/3.5"/DOS/English)</caption>
-			</image>
-			<image>
-				<file>agi/lsl/lsl1-2</file>
-				<caption>Leisure Suit Larry in the Land of the Lounge Lizards (1.00 1987-06-01 5.25"/3.5"/DOS/English)</caption>
-			</image>
-			<image>
-				<file>agi/lsl/lsl1-3</file>
-				<caption>Leisure Suit Larry in the Land of the Lounge Lizards (1.00 1987-06-01 5.25"/3.5"/DOS/English)</caption>
-			</image>
-			<image>
-				<file>agi/lsl/lsl1-4</file>
+				<file>agi/lsl/lsl1-#n#</file>
+				<range from="1" to="4" format="%d" />
 				<caption>Leisure Suit Larry in the Land of the Lounge Lizards (1.00 1987-06-01 5.25"/3.5"/DOS/English)</caption>
 			</image>
 			<image>
-				<file>agi/lsl/lsl1-amiga-1</file>
-				<caption>Leisure Suit Larry in the Land of the Lounge Lizards (1.05 1987-06-26/Amiga/English)</caption>
-			</image>
-			<image>
-				<file>agi/lsl/lsl1-amiga-2</file>
+				<file>agi/lsl/lsl1-amiga-#n#</file>
+				<range from="1" to="2" format="%d" />
 				<caption>Leisure Suit Larry in the Land of the Lounge Lizards (1.05 1987-06-26/Amiga/English)</caption>
 			</image>
 			<image>
-				<file>agi/lsl/lsl1-pl-1</file>
-				<caption>Leisure Suit Larry in the Land of the Lounge Lizards (2.00 2001-12-11/DOS/Polish)</caption>
-			</image>
-			<image>
-				<file>agi/lsl/lsl1-pl-2</file>
-				<caption>Leisure Suit Larry in the Land of the Lounge Lizards (2.00 2001-12-11/DOS/Polish)</caption>
-			</image>
-			<image>
-				<file>agi/lsl/lsl1-pl-3</file>
-				<caption>Leisure Suit Larry in the Land of the Lounge Lizards (2.00 2001-12-11/DOS/Polish)</caption>
-			</image>
-			<image>
-				<file>agi/lsl/lsl1-pl-4</file>
-				<caption>Leisure Suit Larry in the Land of the Lounge Lizards (2.00 2001-12-11/DOS/Polish)</caption>
-			</image>
-			<image>
-				<file>agi/lsl/lsl1-pl-5</file>
+				<file>agi/lsl/lsl1-pl-#n#</file>
+				<range from="1" to="5" format="%d" />
 				<caption>Leisure Suit Larry in the Land of the Lounge Lizards (2.00 2001-12-11/DOS/Polish)</caption>
 			</image>
 		</game>
@@ -902,51 +797,13 @@
 			<name>Manhunter series</name>
 			<category>mh</category>
 			<image>
-				<file>agi/mh/scummvm_3_5_0</file>
-				<caption>Manhunter 1: New York (1.22 1988-08-31/DOS/English)</caption>
-			</image>
-			<image>
-				<file>agi/mh/scummvm_3_5_1</file>
-				<caption>Manhunter 1: New York (1.22 1988-08-31/DOS/English)</caption>
-			</image>
-			<image>
-				<file>agi/mh/scummvm_3_5_2</file>
-				<caption>Manhunter 1: New York (1.22 1988-08-31/DOS/English)</caption>
-			</image>
-			<image>
-				<file>agi/mh/scummvm_3_5_3</file>
-				<caption>Manhunter 1: New York (1.22 1988-08-31/DOS/English)</caption>
-			</image>
-			<image>
-				<file>agi/mh/scummvm_3_5_4</file>
-				<caption>Manhunter 1: New York (1.22 1988-08-31/DOS/English)</caption>
-			</image>
-			<image>
-				<file>agi/mh/scummvm_3_5_5</file>
+				<file>agi/mh/scummvm_3_5_#n#</file>
+				<range from="1" to="5" format="%d" />
 				<caption>Manhunter 1: New York (1.22 1988-08-31/DOS/English)</caption>
 			</image>
 			<image>
-				<file>agi/mh/scummvm_3_5_6</file>
-				<caption>Manhunter 2: San Francisco (3.02 1989-07-26 3.5"/DOS/English)</caption>
-			</image>
-			<image>
-				<file>agi/mh/scummvm_3_5_7</file>
-				<caption>Manhunter 2: San Francisco (3.02 1989-07-26 3.5"/DOS/English)</caption>
-			</image>
-			<image>
-				<file>agi/mh/scummvm_3_5_8</file>
-				<caption>Manhunter 2: San Francisco (3.02 1989-07-26 3.5"/DOS/English)</caption>
-			</image>
-			<image>
-				<file>agi/mh/scummvm_3_5_9</file>
-				<caption>Manhunter 2: San Francisco (3.02 1989-07-26 3.5"/DOS/English)</caption>
-			</image>
-			<image>
-				<file>agi/mh/scummvm_3_5_10</file>
-				<caption>Manhunter 2: San Francisco (3.02 1989-07-26 3.5"/DOS/English)</caption>
-			</image>
-			<image>
-				<file>agi/mh/scummvm_3_5_11</file>
+				<file>agi/mh/scummvm_3_5_#n#</file>
+				<range from="6" to="11" format="%d" />
 				<caption>Manhunter 2: San Francisco (3.02 1989-07-26 3.5"/DOS/English)</caption>
 			</image>
 		</game>
@@ -954,27 +811,8 @@
 			<name>Mixed-Up Mother Goose</name>
 			<category>mumg</category>
 			<image>
-				<file>agi/mixedup/scummvm_3_6_0</file>
-				<caption>Mixed-Up Mother Goose (1987-11-10/DOS/English)</caption>
-			</image>
-			<image>
-				<file>agi/mixedup/scummvm_3_6_1</file>
-				<caption>Mixed-Up Mother Goose (1987-11-10/DOS/English)</caption>
-			</image>
-			<image>
-				<file>agi/mixedup/scummvm_3_6_2</file>
-				<caption>Mixed-Up Mother Goose (1987-11-10/DOS/English)</caption>
-			</image>
-			<image>
-				<file>agi/mixedup/scummvm_3_6_3</file>
-				<caption>Mixed-Up Mother Goose (1987-11-10/DOS/English)</caption>
-			</image>
-			<image>
-				<file>agi/mixedup/scummvm_3_6_4</file>
-				<caption>Mixed-Up Mother Goose (1987-11-10/DOS/English)</caption>
-			</image>
-			<image>
-				<file>agi/mixedup/scummvm_3_6_5</file>
+				<file>agi/mixedup/scummvm_3_6_#n#</file>
+				<range from="0" to="5" format="%d" />
 				<caption>Mixed-Up Mother Goose (1987-11-10/DOS/English)</caption>
 			</image>
 		</game>
@@ -982,35 +820,13 @@
 			<name>Police Quest</name>
 			<category>pq</category>
 			<image>
-				<file>agi/pq/scummvm_3_7_0</file>
-				<caption>Police Quest I: In Pursuit of the Death Angel (2.0G 1987-12-03/DOS/English)</caption>
-			</image>
-			<image>
-				<file>agi/pq/scummvm_3_7_1</file>
-				<caption>Police Quest I: In Pursuit of the Death Angel (2.0G 1987-12-03/DOS/English)</caption>
-			</image>
-			<image>
-				<file>agi/pq/scummvm_3_7_2</file>
-				<caption>Police Quest I: In Pursuit of the Death Angel (2.0G 1987-12-03/DOS/English)</caption>
-			</image>
-			<image>
-				<file>agi/pq/scummvm_3_7_3</file>
-				<caption>Police Quest I: In Pursuit of the Death Angel (2.0G 1987-12-03/DOS/English)</caption>
-			</image>
-			<image>
-				<file>agi/pq/scummvm_3_7_4</file>
-				<caption>Police Quest I: In Pursuit of the Death Angel (2.0G 1987-12-03/DOS/English)</caption>
-			</image>
-			<image>
-				<file>agi/pq/scummvm_3_7_5</file>
+				<file>agi/pq/scummvm_3_7_#n#</file>
+				<range from="0" to="5" format="%d" />
 				<caption>Police Quest I: In Pursuit of the Death Angel (2.0G 1987-12-03/DOS/English)</caption>
 			</image>
 			<image>
-				<file>agi/pq/pq-amiga-0</file>
-				<caption>Police Quest I: In Pursuit of the Death Angel (2.0B 1989-02-22/Amiga/English)</caption>
-			</image>
-			<image>
-				<file>agi/pq/pq-amiga-1</file>
+				<file>agi/pq/pq-amiga-#n#</file>
+				<range from="0" to="1" format="%d" />
 				<caption>Police Quest I: In Pursuit of the Death Angel (2.0B 1989-02-22/Amiga/English)</caption>
 			</image>
 		</game>
@@ -1018,51 +834,13 @@
 			<name>Space Quest series</name>
 			<category>sq</category>
 			<image>
-				<file>agi/sq/scummvm_3_8_0</file>
-				<caption>Space Quest I: The Sarien Encounter (1.1A 1986-11-13/DOS/English)</caption>
-			</image>
-			<image>
-				<file>agi/sq/scummvm_3_8_1</file>
-				<caption>Space Quest I: The Sarien Encounter (1.1A 1986-11-13/DOS/English)</caption>
-			</image>
-			<image>
-				<file>agi/sq/scummvm_3_8_2</file>
-				<caption>Space Quest I: The Sarien Encounter (1.1A 1986-11-13/DOS/English)</caption>
-			</image>
-			<image>
-				<file>agi/sq/scummvm_3_8_3</file>
-				<caption>Space Quest I: The Sarien Encounter (1.1A 1986-11-13/DOS/English)</caption>
-			</image>
-			<image>
-				<file>agi/sq/scummvm_3_8_4</file>
-				<caption>Space Quest I: The Sarien Encounter (1.1A 1986-11-13/DOS/English)</caption>
-			</image>
-			<image>
-				<file>agi/sq/scummvm_3_8_5</file>
+				<file>agi/sq/scummvm_3_8_#n#</file>
+				<range from="0" to="5" format="%d" />
 				<caption>Space Quest I: The Sarien Encounter (1.1A 1986-11-13/DOS/English)</caption>
 			</image>
 			<image>
-				<file>agi/sq/scummvm_3_8_6</file>
-				<caption>Space Quest II: Vohaul's Revenge (2.0A 1987-11-06 5.25"/DOS/English)</caption>
-			</image>
-			<image>
-				<file>agi/sq/scummvm_3_8_7</file>
-				<caption>Space Quest II: Vohaul's Revenge (2.0A 1987-11-06 5.25"/DOS/English)</caption>
-			</image>
-			<image>
-				<file>agi/sq/scummvm_3_8_8</file>
-				<caption>Space Quest II: Vohaul's Revenge (2.0A 1987-11-06 5.25"/DOS/English)</caption>
-			</image>
-			<image>
-				<file>agi/sq/scummvm_3_8_9</file>
-				<caption>Space Quest II: Vohaul's Revenge (2.0A 1987-11-06 5.25"/DOS/English)</caption>
-			</image>
-			<image>
-				<file>agi/sq/scummvm_3_8_10</file>
-				<caption>Space Quest II: Vohaul's Revenge (2.0A 1987-11-06 5.25"/DOS/English)</caption>
-			</image>
-			<image>
-				<file>agi/sq/scummvm_3_8_11</file>
+				<file>agi/sq/scummvm_3_8_#n#</file>
+				<range from="6" to="11" format="%d" />
 				<caption>Space Quest II: Vohaul's Revenge (2.0A 1987-11-06 5.25"/DOS/English)</caption>
 			</image>
 		</game>
@@ -1070,83 +848,28 @@
 			<name>Fanmade games</name>
 			<category>fan</category>
 			<image>
-				<file>agi/fanmade/enclosure-0</file>
-				<caption>Enclosure 1 (v1.03)</caption>
-			</image>
-			<image>
-				<file>agi/fanmade/enclosure-1</file>
-				<caption>Enclosure 1 (v1.03)</caption>
-			</image>
-			<image>
-				<file>agi/fanmade/enclosure-2</file>
-				<caption>Enclosure 1 (v1.03)</caption>
-			</image>
-			<image>
-				<file>agi/fanmade/enclosure-3</file>
+				<file>agi/fanmade/enclosure-#n#</file>
+				<range from="0" to="3" format="%d" />
 				<caption>Enclosure 1 (v1.03)</caption>
 			</image>
 			<image>
-				<file>agi/fanmade/scummvm_3_9_0</file>
-				<caption>Serguei's Destiny 1 (v1.1 2003 Apr 10/DOS/English)</caption>
-			</image>
-			<image>
-				<file>agi/fanmade/scummvm_3_9_1</file>
-				<caption>Serguei's Destiny 1 (v1.1 2003 Apr 10/DOS/English)</caption>
-			</image>
-			<image>
-				<file>agi/fanmade/scummvm_3_9_2</file>
+				<file>agi/fanmade/scummvm_3_9_#n#</file>
+				<range from="0" to="2" format="%d" />
 				<caption>Serguei's Destiny 1 (v1.1 2003 Apr 10/DOS/English)</caption>
 			</image>
 			<image>
-				<file>agi/fanmade/scummvm_3_9_3</file>
-				<caption>Space Quest 0: Replicated (v1.04/DOS/English)</caption>
-			</image>
-			<image>
-				<file>agi/fanmade/scummvm_3_9_4</file>
-				<caption>Space Quest 0: Replicated (v1.04/DOS/English)</caption>
-			</image>
-			<image>
-				<file>agi/fanmade/scummvm_3_9_5</file>
-				<caption>Space Quest 0: Replicated (v1.04/DOS/English)</caption>
-			</image>
-			<image>
-				<file>agi/fanmade/scummvm_3_9_6</file>
+				<file>agi/fanmade/scummvm_3_9_#n#</file>
+				<range from="3" to="7" format="%d" />
 				<caption>Space Quest 0: Replicated (v1.04/DOS/English)</caption>
 			</image>
 			<image>
-				<file>agi/fanmade/scummvm_3_9_7</file>
-				<caption>Space Quest 0: Replicated (v1.04/DOS/English)</caption>
-			</image>
-			<image>
-				<file>agi/fanmade/scummvm_3_9_8</file>
-				<caption>Space Quest X: The Lost Chapter (v10.0 Jul 18/DOS/English)</caption>
-			</image>
-			<image>
-				<file>agi/fanmade/scummvm_3_9_9</file>
-				<caption>Space Quest X: The Lost Chapter (v10.0 Jul 18/DOS/English)</caption>
-			</image>
-			<image>
-				<file>agi/fanmade/scummvm_3_9_10</file>
-				<caption>Space Quest X: The Lost Chapter (v10.0 Jul 18/DOS/English)</caption>
-			</image>
-			<image>
-				<file>agi/fanmade/scummvm_3_9_11</file>
+				<file>agi/fanmade/scummvm_3_9_#n#</file>
+				<range from="8" to="13" format="%d" />
 				<caption>Space Quest X: The Lost Chapter (v10.0 Jul 18/DOS/English)</caption>
 			</image>
 			<image>
-				<file>agi/fanmade/scummvm_3_9_12</file>
-				<caption>Space Quest X: The Lost Chapter (v10.0 Jul 18/DOS/English)</caption>
-			</image>
-			<image>
-				<file>agi/fanmade/scummvm_3_9_13</file>
-				<caption>Space Quest X: The Lost Chapter (v10.0 Jul 18/DOS/English)</caption>
-			</image>
-			<image>
-				<file>agi/fanmade/scummvm_3_9_14</file>
-				<caption>Voodoo Girl - Queen of the Darned (v1.2 2002 Jan 1/DOS/English)</caption>
-			</image>
-			<image>
-				<file>agi/fanmade/scummvm_3_9_15</file>
+				<file>agi/fanmade/scummvm_3_9_#n#</file>
+				<range from="14" to="15" format="%d" />
 				<caption>Voodoo Girl - Queen of the Darned (v1.2 2002 Jan 1/DOS/English)</caption>
 			</image>
 		</game>
@@ -1154,19 +877,13 @@
 			<name>Mickey's Space Adventure</name>
 			<category>mickey</category>
 			<image>
-				<file>agi/preagi/mickey-1</file>
-				<caption>Mickey's Space Adventure (DOS)</caption>
-			</image>
-			<image>
-				<file>agi/preagi/mickey-2</file>
+				<file>agi/preagi/mickey-#n#</file>
+				<range from="1" to="2" format="%d" />
 				<caption>Mickey's Space Adventure (DOS)</caption>
 			</image>
 			<image>
-				<file>agi/preagi/mickey-cga-1</file>
-				<caption>Mickey's Space Adventure (DOS CGA)</caption>
-			</image>
-			<image>
-				<file>agi/preagi/mickey-cga-2</file>
+				<file>agi/preagi/mickey-cga-#n#</file>
+				<range from="1" to="2" format="%d" />
 				<caption>Mickey's Space Adventure (DOS CGA)</caption>
 			</image>
 		</game>
@@ -1174,15 +891,8 @@
 			<name>Troll's Tale</name>
 			<category>troll</category>
 			<image>
-				<file>agi/preagi/troll-1</file>
-				<caption>Troll's Tale (DOS)</caption>
-			</image>
-			<image>
-				<file>agi/preagi/troll-2</file>
-				<caption>Troll's Tale (DOS)</caption>
-			</image>
-			<image>
-				<file>agi/preagi/troll-3</file>
+				<file>agi/preagi/troll-#n#</file>
+				<range from="1" to="3" format="%d" />
 				<caption>Troll's Tale (DOS)</caption>
 			</image>
 		</game>
@@ -1190,27 +900,8 @@
 			<name>Winnie the Pooh in the Hundred Acre Wood</name>
 			<category>winnie</category>
 			<image>
-				<file>agi/preagi/winnie-1</file>
-				<caption>Winnie the Pooh in the Hundred Acre Wood (DOS)</caption>
-			</image>
-			<image>
-				<file>agi/preagi/winnie-2</file>
-				<caption>Winnie the Pooh in the Hundred Acre Wood (DOS)</caption>
-			</image>
-			<image>
-				<file>agi/preagi/winnie-3</file>
-				<caption>Winnie the Pooh in the Hundred Acre Wood (DOS)</caption>
-			</image>
-			<image>
-				<file>agi/preagi/winnie-4</file>
-				<caption>Winnie the Pooh in the Hundred Acre Wood (DOS)</caption>
-			</image>
-			<image>
-				<file>agi/preagi/winnie-5</file>
-				<caption>Winnie the Pooh in the Hundred Acre Wood (DOS)</caption>
-			</image>
-			<image>
-				<file>agi/preagi/winnie-6</file>
+				<file>agi/preagi/winnie-#n#</file>
+				<range from="1" to="6" format="%d" />
 				<caption>Winnie the Pooh in the Hundred Acre Wood (DOS)</caption>
 			</image>
 		</game>
@@ -1222,31 +913,8 @@
 			<name>Conquests of Camelot</name>
 			<category>camelot</category>
 			<image>
-				<file>sci/camelot/camelot-1</file>
-				<caption>Conquests of Camelot (DOS)</caption>
-			</image>
-			<image>
-				<file>sci/camelot/camelot-2</file>
-				<caption>Conquests of Camelot (DOS)</caption>
-			</image>
-			<image>
-				<file>sci/camelot/camelot-3</file>
-				<caption>Conquests of Camelot (DOS)</caption>
-			</image>
-			<image>
-				<file>sci/camelot/camelot-4</file>
-				<caption>Conquests of Camelot (DOS)</caption>
-			</image>
-			<image>
-				<file>sci/camelot/camelot-5</file>
-				<caption>Conquests of Camelot (DOS)</caption>
-			</image>
-			<image>
-				<file>sci/camelot/camelot-6</file>
-				<caption>Conquests of Camelot (DOS)</caption>
-			</image>
-			<image>
-				<file>sci/camelot/camelot-7</file>
+				<file>sci/camelot/camelot-#n#</file>
+				<range from="1" to="7" format="%d" />
 				<caption>Conquests of Camelot (DOS)</caption>
 			</image>
 		</game>
@@ -1254,67 +922,18 @@
 			<name>Conquests of the Longbow</name>
 			<category>longbow</category>
 			<image>
-				<file>sci/longbow/longbow-vga-1</file>
-				<caption>Conquests of the Longbow (VGA/English)</caption>
-			</image>
-			<image>
-				<file>sci/longbow/longbow-vga-2</file>
-				<caption>Conquests of the Longbow (VGA/English)</caption>
-			</image>
-			<image>
-				<file>sci/longbow/longbow-vga-3</file>
-				<caption>Conquests of the Longbow (VGA/English)</caption>
-			</image>
-			<image>
-				<file>sci/longbow/longbow-vga-4</file>
-				<caption>Conquests of the Longbow (VGA/English)</caption>
-			</image>
-			<image>
-				<file>sci/longbow/longbow-vga-5</file>
-				<caption>Conquests of the Longbow (VGA/English)</caption>
-			</image>
-			<image>
-				<file>sci/longbow/longbow-vga-6</file>
+				<file>sci/longbow/longbow-vga-#n#</file>
+				<range from="1" to="6" format="%d" />
 				<caption>Conquests of the Longbow (VGA/English)</caption>
 			</image>
 			<image>
-				<file>sci/longbow/longbow-vga-de-1</file>
-				<caption>Conquests of the Longbow (VGA/German)</caption>
-			</image>
-			<image>
-				<file>sci/longbow/longbow-vga-de-2</file>
-				<caption>Conquests of the Longbow (VGA/German)</caption>
-			</image>
-			<image>
-				<file>sci/longbow/longbow-vga-de-3</file>
-				<caption>Conquests of the Longbow (VGA/German)</caption>
-			</image>
-			<image>
-				<file>sci/longbow/longbow-vga-de-4</file>
+				<file>sci/longbow/longbow-vga-de-#n#</file>
+				<range from="1" to="4" format="%d" />
 				<caption>Conquests of the Longbow (VGA/German)</caption>
 			</image>
 			<image>
-				<file>sci/longbow/longbow-ega-1</file>
-				<caption>Conquests of the Longbow (EGA/English)</caption>
-			</image>
-			<image>
-				<file>sci/longbow/longbow-ega-2</file>
-				<caption>Conquests of the Longbow (EGA/English)</caption>
-			</image>
-			<image>
-				<file>sci/longbow/longbow-ega-3</file>
-				<caption>Conquests of the Longbow (EGA/English)</caption>
-			</image>
-			<image>
-				<file>sci/longbow/longbow-ega-4</file>
-				<caption>Conquests of the Longbow (EGA/English)</caption>
-			</image>
-			<image>
-				<file>sci/longbow/longbow-ega-5</file>
-				<caption>Conquests of the Longbow (EGA/English)</caption>
-			</image>
-			<image>
-				<file>sci/longbow/longbow-ega-6</file>
+				<file>sci/longbow/longbow-ega-#n#</file>
+				<range from="1" to="6" format="%d" />
 				<caption>Conquests of the Longbow (EGA/English)</caption>
 			</image>
 		</game>
@@ -1322,1132 +941,403 @@
 			<name>Dr. Brain series</name>
 			<category>castlebrain</category>
 			<image>
-				<file>sci/drbrain/castlebrain-ega-1</file>
-				<caption>The Castle of Dr. Brain (EGA)</caption>
-			</image>
-			<image>
-				<file>sci/drbrain/castlebrain-ega-2</file>
+				<file>sci/drbrain/castlebrain-ega-#n#</file>
+				<range from="1" to="2" format="%d" />
 				<caption>The Castle of Dr. Brain (EGA)</caption>
 			</image>
 			<image>
-				<file>sci/drbrain/castlebrain-vga-1</file>
-				<caption>The Castle of Dr. Brain (VGA)</caption>
-			</image>
-			<image>
-				<file>sci/drbrain/castlebrain-vga-2</file>
+				<file>sci/drbrain/castlebrain-vga-#n#</file>
+				<range from="1" to="2" format="%d" />
 				<caption>The Castle of Dr. Brain (VGA)</caption>
 			</image>
 			<image>
-				<file>sci/drbrain/castlebrain-de-1</file>
-				<caption>The Castle of Dr. Brain (VGA/German)</caption>
-			</image>
-			<image>
-				<file>sci/drbrain/castlebrain-de-2</file>
+				<file>sci/drbrain/castlebrain-de-#n#</file>
+				<range from="1" to="2" format="%d" />
 				<caption>The Castle of Dr. Brain (VGA/German)</caption>
 			</image>
 			<image>
-				<file>sci/drbrain/islandbrain-1</file>
-				<caption>The Island of Dr. Brain</caption>
-			</image>
-			<image>
-				<file>sci/drbrain/islandbrain-2</file>
-				<caption>The Island of Dr. Brain</caption>
-			</image>
-			<image>
-				<file>sci/drbrain/islandbrain-3</file>
-				<caption>The Island of Dr. Brain</caption>
-			</image>
-			<image>
-				<file>sci/drbrain/islandbrain-4</file>
-				<caption>The Island of Dr. Brain</caption>
-			</image>
-			<image>
-				<file>sci/drbrain/islandbrain-5</file>
-				<caption>The Island of Dr. Brain</caption>
-			</image>
-			<image>
-				<file>sci/drbrain/islandbrain-6</file>
-				<caption>The Island of Dr. Brain</caption>
-			</image>
-		</game>
-		<game>
-			<name>Codename: ICEMAN</name>
-			<category>iceman</category>
-			<image>
-				<file>sci/iceman/iceman-1</file>
-				<caption>Codename: ICEMAN</caption>
-			</image>
-			<image>
-				<file>sci/iceman/iceman-2</file>
-				<caption>Codename: ICEMAN</caption>
-			</image>
-			<image>
-				<file>sci/iceman/iceman-3</file>
-				<caption>Codename: ICEMAN</caption>
-			</image>
-		</game>
-		<game>
-			<name>EcoQuest Series</name>
-			<category>ecoquest</category>
-			<image>
-				<file>sci/ecoquest/ecoquest-1</file>
-				<caption>EcoQuest: The Search for Cetus</caption>
-			</image>
-			<image>
-				<file>sci/ecoquest/ecoquest-2</file>
-				<caption>EcoQuest: The Search for Cetus</caption>
-			</image>
-			<image>
-				<file>sci/ecoquest/ecoquest-3</file>
-				<caption>EcoQuest: The Search for Cetus</caption>
-			</image>
-
-			<image>
-				<file>sci/ecoquest/ecoquest-fr-1</file>
-				<caption>EcoQuest: The Search for Cetus (French)</caption>
-			</image>
-			<image>
-				<file>sci/ecoquest/ecoquest-fr-2</file>
-				<caption>EcoQuest: The Search for Cetus (French)</caption>
-			</image>
-
-			<image>
-				<file>sci/ecoquest/ecoquest-de-1</file>
-				<caption>EcoQuest: The Search for Cetus (German)</caption>
-			</image>
-			<image>
-				<file>sci/ecoquest/ecoquest-de-2</file>
-				<caption>EcoQuest: The Search for Cetus (German)</caption>
-			</image>
-			<image>
-				<file>sci/ecoquest/ecoquest-de-3</file>
-				<caption>EcoQuest: The Search for Cetus (German)</caption>
-			</image>
-			<image>
-				<file>sci/ecoquest/ecoquest-de-4</file>
-				<caption>EcoQuest: The Search for Cetus (German)</caption>
-			</image>
-
-			<image>
-				<file>sci/ecoquest/ecoquest2-1</file>
-				<caption>EcoQuest II: Lost Secret of the Rainforest</caption>
-			</image>
-			<image>
-				<file>sci/ecoquest/ecoquest2-2</file>
-				<caption>EcoQuest II: Lost Secret of the Rainforest</caption>
-			</image>
-		</game>
-		<game>
-			<name>Freddy Pharkas</name>
-			<category>freddypharkas</category>
-			<image>
-				<file>sci/freddypharkas/freddypharkas-1</file>
-				<caption>Freddy Pharkas: Frontier Pharmacist</caption>
-			</image>
-			<image>
-				<file>sci/freddypharkas/freddypharkas-2</file>
-				<caption>Freddy Pharkas: Frontier Pharmacist</caption>
-			</image>
-			<image>
-				<file>sci/freddypharkas/freddypharkas-3</file>
-				<caption>Freddy Pharkas: Frontier Pharmacist</caption>
-			</image>
-			<image>
-				<file>sci/freddypharkas/freddypharkas-4</file>
-				<caption>Freddy Pharkas: Frontier Pharmacist</caption>
-			</image>
-			<image>
-				<file>sci/freddypharkas/freddypharkas-de-1</file>
-				<caption>Freddy Pharkas: Frontier Pharmacist (German)</caption>
-			</image>
-			<image>
-				<file>sci/freddypharkas/freddypharkas-de-2</file>
-				<caption>Freddy Pharkas: Frontier Pharmacist (German)</caption>
-			</image>
-			<image>
-				<file>sci/freddypharkas/freddypharkas-win-fr-1</file>
-				<caption>Freddy Pharkas: Frontier Pharmacist (Windows/French)</caption>
-			</image>
-			<image>
-				<file>sci/freddypharkas/freddypharkas-win-fr-2</file>
-				<caption>Freddy Pharkas: Frontier Pharmacist (Windows/French)</caption>
-			</image>
-		</game>
-		<game>
-			<name>Hoyle's Official Book of Games series</name>
-			<category>hoyle</category>
-			<image>
-				<file>sci/hoyle/hoyle1-1</file>
-				<caption>Hoyle Official Book of Games: Volume 1</caption>
-			</image>
-			<image>
-				<file>sci/hoyle/hoyle1-2</file>
-				<caption>Hoyle Official Book of Games: Volume 1</caption>
-			</image>
-			<image>
-				<file>sci/hoyle/hoyle1-3</file>
-				<caption>Hoyle Official Book of Games: Volume 1</caption>
-			</image>
-			<image>
-				<file>sci/hoyle/hoyle1-4</file>
-				<caption>Hoyle Official Book of Games: Volume 1</caption>
-			</image>
-			<image>
-				<file>sci/hoyle/hoyle1-5</file>
-				<caption>Hoyle Official Book of Games: Volume 1</caption>
-			</image>
-			<image>
-				<file>sci/hoyle/hoyle2-1</file>
-				<caption>Hoyle Official Book of Games: Volume 2</caption>
-			</image>
-			<image>
-				<file>sci/hoyle/hoyle2-2</file>
-				<caption>Hoyle Official Book of Games: Volume 2</caption>
-			</image>
-			<image>
-				<file>sci/hoyle/hoyle2-3</file>
-				<caption>Hoyle Official Book of Games: Volume 2</caption>
-			</image>
-			<image>
-				<file>sci/hoyle/hoyle2-4</file>
-				<caption>Hoyle Official Book of Games: Volume 2</caption>
-			</image>
-			<image>
-				<file>sci/hoyle/hoyle2-amiga-1</file>
-				<caption>Hoyle Official Book of Games: Volume 2 (Amiga)</caption>
-			</image>
-			<image>
-				<file>sci/hoyle/hoyle2-amiga-2</file>
-				<caption>Hoyle Official Book of Games: Volume 2 (Amiga)</caption>
-			</image>
-			<image>
-				<file>sci/hoyle/hoyle2-amiga-3</file>
-				<caption>Hoyle Official Book of Games: Volume 2 (Amiga)</caption>
-			</image>
-			<image>
-				<file>sci/hoyle/hoyle2-amiga-4</file>
-				<caption>Hoyle Official Book of Games: Volume 2 (Amiga)</caption>
-			</image>
-			<image>
-				<file>sci/hoyle/hoyle3-ega-1</file>
-				<caption>Hoyle Official Book of Games: Volume 3 (EGA)</caption>
-			</image>
-			<image>
-				<file>sci/hoyle/hoyle3-ega-2</file>
-				<caption>Hoyle Official Book of Games: Volume 3 (EGA)</caption>
-			</image>
-			<image>
-				<file>sci/hoyle/hoyle3-ega-3</file>
-				<caption>Hoyle Official Book of Games: Volume 3 (EGA)</caption>
-			</image>
-			<image>
-				<file>sci/hoyle/hoyle3-ega-4</file>
-				<caption>Hoyle Official Book of Games: Volume 3 (EGA)</caption>
-			</image>
-			<image>
-				<file>sci/hoyle/hoyle3-amiga-1</file>
-				<caption>Hoyle Official Book of Games: Volume 3 (Amiga)</caption>
-			</image>
-			<image>
-				<file>sci/hoyle/hoyle3-amiga-2</file>
-				<caption>Hoyle Official Book of Games: Volume 3 (Amiga)</caption>
-			</image>
-			<image>
-				<file>sci/hoyle/hoyle3-amiga-3</file>
-				<caption>Hoyle Official Book of Games: Volume 3 (Amiga)</caption>
-			</image>
-			<image>
-				<file>sci/hoyle/hoyle3-amiga-4</file>
-				<caption>Hoyle Official Book of Games: Volume 3 (Amiga)</caption>
-			</image>
-			<image>
-				<file>sci/hoyle/hoyle3-amiga-5</file>
-				<caption>Hoyle Official Book of Games: Volume 3 (Amiga)</caption>
-			</image>
-			<image>
-				<file>sci/hoyle/hoyle3-amiga-6</file>
-				<caption>Hoyle Official Book of Games: Volume 3 (Amiga)</caption>
-			</image>
-			<image>
-				<file>sci/hoyle/hoyle4-1</file>
-				<caption>Hoyle Classic Card Games</caption>
-			</image>
-			<image>
-				<file>sci/hoyle/hoyle4-2</file>
-				<caption>Hoyle Classic Card Games</caption>
-			</image>
-			<image>
-				<file>sci/hoyle/hoyle4-3</file>
-				<caption>Hoyle Classic Card Games</caption>
-			</image>
-			<image>
-				<file>sci/hoyle/hoyle4-4</file>
-				<caption>Hoyle Classic Card Games</caption>
-			</image>
-			<image>
-				<file>sci/hoyle/hoyle4-5</file>
-				<caption>Hoyle Classic Card Games</caption>
-			</image>
-			<image>
-				<file>sci/hoyle/hoyle4-6</file>
-				<caption>Hoyle Classic Card Games</caption>
-			</image>
-		</game>
-		<game>
-			<name>Jones in the Fast Lane</name>
-			<category>jones</category>
-			<image>
-				<file>sci/jones/jones-ega-1</file>
-				<caption>Jones in the Fast Lane (EGA)</caption>
-			</image>
-			<image>
-				<file>sci/jones/jones-ega-2</file>
-				<caption>Jones in the Fast Lane (EGA)</caption>
-			</image>
-			<image>
-				<file>sci/jones/jones-vga-1</file>
-				<caption>Jones in the Fast Lane (VGA)</caption>
-			</image>
-			<image>
-				<file>sci/jones/jones-vga-2</file>
-				<caption>Jones in the Fast Lane (VGA)</caption>
-			</image>
-		</game>
-		<game>
-			<name>Laura Bow Series</name>
-			<category>laurabow</category>
-			<image>
-				<file>sci/laurabow/laurabow-1</file>
-				<caption>Laura Bow: The Colonel's Bequest</caption>
-			</image>
-			<image>
-				<file>sci/laurabow/laurabow-2</file>
-				<caption>Laura Bow: The Colonel's Bequest</caption>
-			</image>
-			<image>
-				<file>sci/laurabow/laurabow-3</file>
-				<caption>Laura Bow: The Colonel's Bequest</caption>
-			</image>
-			<image>
-				<file>sci/laurabow/laurabow-4</file>
-				<caption>Laura Bow: The Colonel's Bequest</caption>
-			</image>
-			<image>
-				<file>sci/laurabow/laurabow-5</file>
-				<caption>Laura Bow: The Colonel's Bequest</caption>
-			</image>
-			<image>
-				<file>sci/laurabow/laurabow-6</file>
-				<caption>Laura Bow: The Colonel's Bequest</caption>
-			</image>
-			<image>
-				<file>sci/laurabow/laurabow2-1</file>
-				<caption>Laura Bow 2: The Dagger of Amon Ra</caption>
-			</image>
-			<image>
-				<file>sci/laurabow/laurabow2-2</file>
-				<caption>Laura Bow 2: The Dagger of Amon Ra</caption>
-			</image>
-			<image>
-				<file>sci/laurabow/laurabow2-3</file>
-				<caption>Laura Bow 2: The Dagger of Amon Ra</caption>
-			</image>
-			<image>
-				<file>sci/laurabow/laurabow2-4</file>
-				<caption>Laura Bow 2: The Dagger of Amon Ra</caption>
-			</image>
-			<image>
-				<file>sci/laurabow/laurabow2-de-1</file>
-				<caption>Laura Bow 2: The Dagger of Amon Ra (German)</caption>
-			</image>
-			<image>
-				<file>sci/laurabow/laurabow2-de-2</file>
-				<caption>Laura Bow 2: The Dagger of Amon Ra (German)</caption>
-			</image>
-			<image>
-				<file>sci/laurabow/laurabow2-de-3</file>
-				<caption>Laura Bow 2: The Dagger of Amon Ra (German)</caption>
-			</image>
-		</game>
-		<game>
-			<name>King's Quest series</name>
-			<category>kq-sci</category>
-			<image>
-				<file>sci/kq/kq1sci-1</file>
-				<caption>King's Quest: Quest for the Crown (VGA remake)</caption>
-			</image>
-			<image>
-				<file>sci/kq/kq1sci-2</file>
-				<caption>King's Quest: Quest for the Crown (VGA remake)</caption>
-			</image>
-			<image>
-				<file>sci/kq/kq1sci-3</file>
-				<caption>King's Quest: Quest for the Crown (VGA remake)</caption>
-			</image>
-			<image>
-				<file>sci/kq/kq1sci-4</file>
-				<caption>King's Quest: Quest for the Crown (VGA remake)</caption>
-			</image>
-			<image>
-				<file>sci/kq/kq1sci-5</file>
-				<caption>King's Quest: Quest for the Crown (VGA remake)</caption>
-			</image>
-			<image>
-				<file>sci/kq/kq1sci-6</file>
-				<caption>King's Quest: Quest for the Crown (VGA remake)</caption>
-			</image>
-			<image>
-				<file>sci/kq/kq4sci-1</file>
-				<caption>King's Quest IV: The Perils of Rosella (SCI)</caption>
-			</image>
-			<image>
-				<file>sci/kq/kq4sci-2</file>
-				<caption>King's Quest IV: The Perils of Rosella (SCI)</caption>
-			</image>
-			<image>
-				<file>sci/kq/kq4sci-3</file>
-				<caption>King's Quest IV: The Perils of Rosella (SCI)</caption>
-			</image>
-			<image>
-				<file>sci/kq/kq4sci-4</file>
-				<caption>King's Quest IV: The Perils of Rosella (SCI)</caption>
-			</image>
-			<image>
-				<file>sci/kq/kq4sci-5</file>
-				<caption>King's Quest IV: The Perils of Rosella (SCI)</caption>
-			</image>
-			<image>
-				<file>sci/kq/kq4sci-6</file>
-				<caption>King's Quest IV: The Perils of Rosella (SCI)</caption>
-			</image>
-			<image>
-				<file>sci/kq/kq5-ega-1</file>
-				<caption>King's Quest V: Absence Makes the Heart Go Yonder (EGA)</caption>
-			</image>
-			<image>
-				<file>sci/kq/kq5-ega-2</file>
-				<caption>King's Quest V: Absence Makes the Heart Go Yonder (EGA)</caption>
-			</image>
-			<image>
-				<file>sci/kq/kq5-ega-3</file>
-				<caption>King's Quest V: Absence Makes the Heart Go Yonder (EGA)</caption>
-			</image>
-			<image>
-				<file>sci/kq/kq5-ega-4</file>
-				<caption>King's Quest V: Absence Makes the Heart Go Yonder (EGA)</caption>
-			</image>
-			<image>
-				<file>sci/kq/kq5-vga-1</file>
-				<caption>King's Quest V: Absence Makes the Heart Go Yonder (VGA)</caption>
-			</image>
-			<image>
-				<file>sci/kq/kq5-vga-2</file>
-				<caption>King's Quest V: Absence Makes the Heart Go Yonder (VGA)</caption>
-			</image>
-			<image>
-				<file>sci/kq/kq5-vga-3</file>
-				<caption>King's Quest V: Absence Makes the Heart Go Yonder (VGA)</caption>
-			</image>
-			<image>
-				<file>sci/kq/kq5-vga-4</file>
-				<caption>King's Quest V: Absence Makes the Heart Go Yonder (VGA)</caption>
-			</image>
-			<image>
-				<file>sci/kq/kq5-vga-de-1</file>
-				<caption>King's Quest V: Absence Makes the Heart Go Yonder (VGA/German)</caption>
-			</image>
-			<image>
-				<file>sci/kq/kq5-vga-de-2</file>
-				<caption>King's Quest V: Absence Makes the Heart Go Yonder (VGA/German)</caption>
-			</image>
-			<image>
-				<file>sci/kq/kq5-vga-pl-1</file>
-				<caption>King's Quest V: Absence Makes the Heart Go Yonder (VGA/Polish)</caption>
-			</image>
-			<image>
-				<file>sci/kq/kq5-vga-pl-2</file>
-				<caption>King's Quest V: Absence Makes the Heart Go Yonder (VGA/Polish)</caption>
-			</image>
-			<image>
-				<file>sci/kq/kq6-1</file>
-				<caption>King's Quest VI: Heir Today, Gone Tomorrow</caption>
-			</image>
-			<image>
-				<file>sci/kq/kq6-2</file>
-				<caption>King's Quest VI: Heir Today, Gone Tomorrow</caption>
-			</image>
-			<image>
-				<file>sci/kq/kq6-3</file>
-				<caption>King's Quest VI: Heir Today, Gone Tomorrow</caption>
-			</image>
-			<image>
-				<file>sci/kq/kq6-4</file>
-				<caption>King's Quest VI: Heir Today, Gone Tomorrow</caption>
-			</image>
-			<image>
-				<file>sci/kq/kq6-5</file>
-				<caption>King's Quest VI: Heir Today, Gone Tomorrow</caption>
-			</image>
-			<image>
-				<file>sci/kq/kq6-de-1</file>
-				<caption>King's Quest VI: Heir Today, Gone Tomorrow (German)</caption>
-			</image>
-			<image>
-				<file>sci/kq/kq6-de-2</file>
-				<caption>King's Quest VI: Heir Today, Gone Tomorrow (German)</caption>
-			</image>
-			<image>
-				<file>sci/kq/kq6-de-3</file>
-				<caption>King's Quest VI: Heir Today, Gone Tomorrow (German)</caption>
-			</image>
-		</game>
-		<game>
-			<name>Leisure Suit Larry series</name>
-			<category>lsl-sci</category>
-			<image>
-				<file>sci/lsl/lsl1sci-1</file>
-				<caption>Leisure Suit Larry in the Land of the Lounge Lizards</caption>
-			</image>
-			<image>
-				<file>sci/lsl/lsl1sci-2</file>
-				<caption>Leisure Suit Larry in the Land of the Lounge Lizards</caption>
-			</image>
-			<image>
-				<file>sci/lsl/lsl1sci-3</file>
-				<caption>Leisure Suit Larry in the Land of the Lounge Lizards</caption>
-			</image>
-			<image>
-				<file>sci/lsl/lsl1sci-4</file>
-				<caption>Leisure Suit Larry in the Land of the Lounge Lizards</caption>
-			</image>
-			<image>
-				<file>sci/lsl/lsl1sci-5</file>
-				<caption>Leisure Suit Larry in the Land of the Lounge Lizards</caption>
-			</image>
-			<image>
-				<file>sci/lsl/lsl1sci-ega-1</file>
-				<caption>Leisure Suit Larry in the Land of the Lounge Lizards (EGA)</caption>
-			</image>
-			<image>
-				<file>sci/lsl/lsl1sci-ega-2</file>
-				<caption>Leisure Suit Larry in the Land of the Lounge Lizards (EGA)</caption>
-			</image>
-			<image>
-				<file>sci/lsl/lsl1sci-amiga-1</file>
-				<caption>Leisure Suit Larry in the Land of the Lounge Lizards (Amiga)</caption>
-			</image>
-			<image>
-				<file>sci/lsl/lsl1sci-amiga-2</file>
-				<caption>Leisure Suit Larry in the Land of the Lounge Lizards (Amiga)</caption>
-			</image>
-			<image>
-				<file>sci/lsl/lsl1sci-pl-1</file>
-				<caption>Leisure Suit Larry in the Land of the Lounge Lizards (Polish)</caption>
-			</image>
-			<image>
-				<file>sci/lsl/lsl2-1</file>
-				<caption>Leisure Suit Larry 2: Goes Looking for Love (in Several Wrong Places)</caption>
-			</image>
-			<image>
-				<file>sci/lsl/lsl2-2</file>
-				<caption>Leisure Suit Larry 2: Goes Looking for Love (in Several Wrong Places)</caption>
-			</image>
-			<image>
-				<file>sci/lsl/lsl2-3</file>
-				<caption>Leisure Suit Larry 2: Goes Looking for Love (in Several Wrong Places)</caption>
-			</image>
-			<image>
-				<file>sci/lsl/lsl2-pl-1</file>
-				<caption>Leisure Suit Larry 2: Goes Looking for Love (in Several Wrong Places) (Polish)</caption>
-			</image>
-			<image>
-				<file>sci/lsl/lsl2-pl-2</file>
-				<caption>Leisure Suit Larry 2: Goes Looking for Love (in Several Wrong Places) (Polish)</caption>
-			</image>
-			<image>
-				<file>sci/lsl/lsl3-1</file>
-				<caption>Leisure Suit Larry 3: Passionate Patti in Pursuit of the Pulsating Pectorals</caption>
-			</image>
-			<image>
-				<file>sci/lsl/lsl3-2</file>
-				<caption>Leisure Suit Larry 3: Passionate Patti in Pursuit of the Pulsating Pectorals</caption>
-			</image>
-			<image>
-				<file>sci/lsl/lsl3-3</file>
-				<caption>Leisure Suit Larry 3: Passionate Patti in Pursuit of the Pulsating Pectorals</caption>
-			</image>
-			<image>
-				<file>sci/lsl/lsl3-4</file>
-				<caption>Leisure Suit Larry 3: Passionate Patti in Pursuit of the Pulsating Pectorals</caption>
-			</image>
-			<image>
-				<file>sci/lsl/lsl3-pl-1</file>
-				<caption>Leisure Suit Larry 3: Passionate Patti in Pursuit of the Pulsating Pectorals (Polish)</caption>
-			</image>
-			<image>
-				<file>sci/lsl/lsl3-pl-2</file>
-				<caption>Leisure Suit Larry 3: Passionate Patti in Pursuit of the Pulsating Pectorals (Polish)</caption>
-			</image>
-			<image>
-				<file>sci/lsl/lsl5-amiga-1</file>
-				<caption>Leisure Suit Larry 5: Passionate Patti Does Some Undercover Work (Amiga)</caption>
-			</image>
-			<image>
-				<file>sci/lsl/lsl5-amiga-2</file>
-				<caption>Leisure Suit Larry 5: Passionate Patti Does Some Undercover Work (Amiga)</caption>
-			</image>
-			<image>
-				<file>sci/lsl/lsl3-de-1</file>
-				<caption>Leisure Suit Larry 3: Passionate Patti in Pursuit of the Pulsating Pectorals (German)</caption>
-			</image>
-			<image>
-				<file>sci/lsl/lsl5-de-1</file>
-				<caption>Leisure Suit Larry 5: Passionate Patti Does Some Undercover Work (German)</caption>
-			</image>
-			<image>
-				<file>sci/lsl/lsl5-de-2</file>
-				<caption>Leisure Suit Larry 5: Passionate Patti Does Some Undercover Work (German)</caption>
-			</image>
-			<image>
-				<file>sci/lsl/lsl5-de-3</file>
-				<caption>Leisure Suit Larry 5: Passionate Patti Does Some Undercover Work (German)</caption>
-			</image>
-			<image>
-				<file>sci/lsl/lsl5-de-4</file>
-				<caption>Leisure Suit Larry 5: Passionate Patti Does Some Undercover Work (German)</caption>
-			</image>
-			<image>
-				<file>sci/lsl/lsl5-pl-1</file>
-				<caption>Leisure Suit Larry 5: Passionate Patti Does Some Undercover Work (Polish)</caption>
-			</image>
-			<image>
-				<file>sci/lsl/lsl6-1</file>
-				<caption>Leisure Suit Larry 6: Shape Up or Slip Out!</caption>
-			</image>
-			<image>
-				<file>sci/lsl/lsl6-4</file>
-				<caption>Leisure Suit Larry 6: Shape Up or Slip Out!</caption>
-			</image>
-			<image>
-				<file>sci/lsl/lsl6-de-1</file>
-				<caption>Leisure Suit Larry 6: Shape Up or Slip Out! (German)</caption>
-			</image>
-			<image>
-				<file>sci/lsl/lsl6-pl-1</file>
-				<caption>Leisure Suit Larry 6: Shape Up or Slip Out! (Polish)</caption>
-			</image>
-			<image>
-				<file>sci/lsl/lsl6-pl-2</file>
-				<caption>Leisure Suit Larry 6: Shape Up or Slip Out! (Polish)</caption>
-			</image>
-		</game>
-		<game>
-			<name>Pepper's Adventure in Time</name>
-			<category>pepper</category>
-			<image>
-				<file>sci/pepper/pepper-1</file>
-				<caption>Pepper's Adventure in Time</caption>
-			</image>
-			<image>
-				<file>sci/pepper/pepper-2</file>
-				<caption>Pepper's Adventure in Time</caption>
-			</image>
-			<image>
-				<file>sci/pepper/pepper-3</file>
-				<caption>Pepper's Adventure in Time</caption>
-			</image>
-			<image>
-				<file>sci/pepper/pepper-4</file>
-				<caption>Pepper's Adventure in Time</caption>
-			</image>
-			<image>
-				<file>sci/pepper/pepper-5</file>
-				<caption>Pepper's Adventure in Time</caption>
-			</image>
-			<image>
-				<file>sci/pepper/pepper-6</file>
-				<caption>Pepper's Adventure in Time</caption>
-			</image>
-			<image>
-				<file>sci/pepper/pepper-7</file>
-				<caption>Pepper's Adventure in Time</caption>
-			</image>
-		</game>
-		<game>
-			<name>Police Quest series</name>
-			<category>pq-sci</category>
-			<image>
-				<file>sci/pq/pq1sci-1</file>
-				<caption>Police Quest: In Pursuit of the Death Angel (VGA remake)</caption>
-			</image>
-			<image>
-				<file>sci/pq/pq1sci-2</file>
-				<caption>Police Quest: In Pursuit of the Death Angel (VGA remake)</caption>
-			</image>
-			<image>
-				<file>sci/pq/pq1sci-3</file>
-				<caption>Police Quest: In Pursuit of the Death Angel (VGA remake)</caption>
-			</image>
-			<image>
-				<file>sci/pq/pq2-1</file>
-				<caption>Police Quest II: The Vengeance</caption>
-			</image>
-			<image>
-				<file>sci/pq/pq2-2</file>
-				<caption>Police Quest II: The Vengeance</caption>
-			</image>
-			<image>
-				<file>sci/pq/pq2-3</file>
-				<caption>Police Quest II: The Vengeance</caption>
-			</image>
-			<image>
-				<file>sci/pq/pq3-ega-1</file>
-				<caption>Police Quest III: The Kindred (EGA)</caption>
-			</image>
-			<image>
-				<file>sci/pq/pq3-ega-2</file>
-				<caption>Police Quest III: The Kindred (EGA)</caption>
-			</image>
-			<image>
-				<file>sci/pq/pq3-ega-3</file>
-				<caption>Police Quest III: The Kindred (EGA)</caption>
-			</image>
-			<image>
-				<file>sci/pq/pq3-ega-4</file>
-				<caption>Police Quest III: The Kindred (EGA)</caption>
-			</image>
-
-			<image>
-				<file>sci/pq/pq3-vga-1</file>
-				<caption>Police Quest III: The Kindred (VGA)</caption>
-			</image>
-			<image>
-				<file>sci/pq/pq3-vga-2</file>
-				<caption>Police Quest III: The Kindred (VGA)</caption>
-			</image>
-			<image>
-				<file>sci/pq/pq3-vga-3</file>
-				<caption>Police Quest III: The Kindred (VGA)</caption>
-			</image>
-			<image>
-				<file>sci/pq/pq3-vga-4</file>
-				<caption>Police Quest III: The Kindred (VGA)</caption>
-			</image>
-			<image>
-				<file>sci/pq/pq3-vga-5</file>
-				<caption>Police Quest III: The Kindred (VGA)</caption>
-			</image>
-			<image>
-				<file>sci/pq/pq3-vga-6</file>
-				<caption>Police Quest III: The Kindred (VGA)</caption>
-			</image>
-			<image>
-				<file>sci/pq/pq3-vga-7</file>
-				<caption>Police Quest III: The Kindred (VGA)</caption>
-			</image>
-			<image>
-				<file>sci/pq/pq3-vga-8</file>
-				<caption>Police Quest III: The Kindred (VGA)</caption>
-			</image>
-
-			<image>
-				<file>sci/pq/pq3-amiga-1</file>
-				<caption>Police Quest III: The Kindred (Amiga)</caption>
-			</image>
-			<image>
-				<file>sci/pq/pq3-amiga-2</file>
-				<caption>Police Quest III: The Kindred (Amiga)</caption>
-			</image>
-			<image>
-				<file>sci/pq/pq3-de-1</file>
-				<caption>Police Quest III: The Kindred (VGA/German)</caption>
-			</image>
-			<image>
-				<file>sci/pq/pq3-de-2</file>
-				<caption>Police Quest III: The Kindred (VGA/German)</caption>
-			</image>
-			<image>
-				<file>sci/pq/pq3-de-3</file>
-				<caption>Police Quest III: The Kindred (VGA/German)</caption>
-			</image>
-		</game>
-		<game>
-			<name>Quest For Glory series</name>
-			<category>qfg-sci</category>
-			<image>
-				<file>sci/qfg/qfg1-ega-1</file>
-				<caption>Quest for Glory: So You Want to Be a Hero (EGA)</caption>
-			</image>
-			<image>
-				<file>sci/qfg/qfg1-ega-2</file>
-				<caption>Quest for Glory: So You Want to Be a Hero (EGA)</caption>
-			</image>
-			<image>
-				<file>sci/qfg/qfg1-ega-3</file>
-				<caption>Quest for Glory: So You Want to Be a Hero (EGA)</caption>
-			</image>
-			<image>
-				<file>sci/qfg/qfg1-ega-4</file>
-				<caption>Quest for Glory: So You Want to Be a Hero (EGA)</caption>
-			</image>
-			<image>
-				<file>sci/qfg/qfg1-ega-5</file>
-				<caption>Quest for Glory: So You Want to Be a Hero (EGA)</caption>
-			</image>
-			<image>
-				<file>sci/qfg/qfg1-ega-6</file>
-				<caption>Quest for Glory: So You Want to Be a Hero (EGA)</caption>
-			</image>
-			<image>
-				<file>sci/qfg/qfg1-vga-1</file>
-				<caption>Quest for Glory: So You Want to Be a Hero (VGA)</caption>
-			</image>
-			<image>
-				<file>sci/qfg/qfg1-vga-2</file>
-				<caption>Quest for Glory: So You Want to Be a Hero (VGA)</caption>
-			</image>
-			<image>
-				<file>sci/qfg/qfg1-vga-3</file>
-				<caption>Quest for Glory: So You Want to Be a Hero (VGA)</caption>
-			</image>
-			<image>
-				<file>sci/qfg/qfg1-vga-4</file>
-				<caption>Quest for Glory: So You Want to Be a Hero (VGA)</caption>
-			</image>
-			<image>
-				<file>sci/qfg/qfg1-vga-5</file>
-				<caption>Quest for Glory: So You Want to Be a Hero (VGA)</caption>
-			</image>
-			<image>
-				<file>sci/qfg/qfg1-vga-6</file>
-				<caption>Quest for Glory: So You Want to Be a Hero (VGA)</caption>
-			</image>
-			<image>
-				<file>sci/qfg/qfg2-1</file>
-				<caption>Quest for Glory II: Trial by Fire</caption>
-			</image>
-			<image>
-				<file>sci/qfg/qfg2-2</file>
-				<caption>Quest for Glory II: Trial by Fire</caption>
-			</image>
-			<image>
-				<file>sci/qfg/qfg2-3</file>
-				<caption>Quest for Glory II: Trial by Fire</caption>
-			</image>
-			<image>
-				<file>sci/qfg/qfg2-4</file>
-				<caption>Quest for Glory II: Trial by Fire</caption>
-			</image>
-			<image>
-				<file>sci/qfg/qfg2-5</file>
-				<caption>Quest for Glory II: Trial by Fire</caption>
-			</image>
-			<image>
-				<file>sci/qfg/qfg2-6</file>
-				<caption>Quest for Glory II: Trial by Fire</caption>
-			</image>
-			<image>
-				<file>sci/qfg/qfg3-1</file>
-				<caption>Quest for Glory III: Wages of War</caption>
-			</image>
-			<image>
-				<file>sci/qfg/qfg3-2</file>
-				<caption>Quest for Glory III: Wages of War</caption>
-			</image>
-			<image>
-				<file>sci/qfg/qfg3-3</file>
-				<caption>Quest for Glory III: Wages of War</caption>
-			</image>
-			<image>
-				<file>sci/qfg/qfg3-4</file>
-				<caption>Quest for Glory III: Wages of War</caption>
-			</image>
-			<image>
-				<file>sci/qfg/qfg3-5</file>
-				<caption>Quest for Glory III: Wages of War</caption>
-			</image>
-			<image>
-				<file>sci/qfg/qfg3-6</file>
-				<caption>Quest for Glory III: Wages of War</caption>
+				<file>sci/drbrain/islandbrain-#n#</file>
+				<range from="1" to="6" format="%d" />
+				<caption>The Island of Dr. Brain</caption>
 			</image>
 		</game>
 		<game>
-			<name>Roberta Williams' Mixed-Up Series</name>
-			<category>mixedup</category>
+			<name>Codename: ICEMAN</name>
+			<category>iceman</category>
 			<image>
-				<file>sci/mixedup/mothergoose-1</file>
-				<caption>Roberta Williams' Mixed-Up Mother Goose (CD/DOS/Multilanguage)</caption>
+				<file>sci/iceman/iceman-#n#</file>
+				<range from="1" to="3" format="%d" />
+				<caption>Codename: ICEMAN</caption>
 			</image>
+		</game>
+		<game>
+			<name>EcoQuest Series</name>
+			<category>ecoquest</category>
 			<image>
-				<file>sci/mixedup/mothergoose-2</file>
-				<caption>Roberta Williams' Mixed-Up Mother Goose (CD/DOS/Multilanguage)</caption>
+				<file>sci/ecoquest/ecoquest-#n#</file>
+				<range from="1" to="3" format="%d" />
+				<caption>EcoQuest: The Search for Cetus</caption>
 			</image>
 			<image>
-				<file>sci/mixedup/mothergoose-3</file>
-				<caption>Roberta Williams' Mixed-Up Mother Goose (CD/DOS/Multilanguage)</caption>
+				<file>sci/ecoquest/ecoquest-fr-#n#</file>
+				<range from="1" to="2" format="%d" />
+				<caption>EcoQuest: The Search for Cetus (French)</caption>
 			</image>
 			<image>
-				<file>sci/mixedup/mothergoose-4</file>
-				<caption>Roberta Williams' Mixed-Up Mother Goose (CD/DOS/Multilanguage)</caption>
+				<file>sci/ecoquest/ecoquest-de-#n#</file>
+				<range from="1" to="4" format="%d" />
+				<caption>EcoQuest: The Search for Cetus (German)</caption>
 			</image>
 			<image>
-				<file>sci/mixedup/mothergoose-5</file>
-				<caption>Roberta Williams' Mixed-Up Mother Goose (CD/DOS/Multilanguage)</caption>
+				<file>sci/ecoquest/ecoquest2-#n#</file>
+				<range from="1" to="2" format="%d" />
+				<caption>EcoQuest II: Lost Secret of the Rainforest</caption>
 			</image>
+		</game>
+		<game>
+			<name>Freddy Pharkas</name>
+			<category>freddypharkas</category>
 			<image>
-				<file>sci/mixedup/mothergoose-6</file>
-				<caption>Roberta Williams' Mixed-Up Mother Goose (CD/DOS/Multilanguage)</caption>
+				<file>sci/freddypharkas/freddypharkas-#n#</file>
+				<range from="1" to="4" format="%d" />
+				<caption>Freddy Pharkas: Frontier Pharmacist</caption>
 			</image>
 			<image>
-				<file>sci/mixedup/fairytales-1</file>
-				<caption>Mixed-up Fairy Tales</caption>
+				<file>sci/freddypharkas/freddypharkas-de-#n#</file>
+				<range from="1" to="2" format="%d" />
+				<caption>Freddy Pharkas: Frontier Pharmacist (German)</caption>
 			</image>
 			<image>
-				<file>sci/mixedup/fairytales-2</file>
-				<caption>Mixed-up Fairy Tales</caption>
+				<file>sci/freddypharkas/freddypharkas-win-fr-#n#</file>
+				<range from="1" to="2" format="%d" />
+				<caption>Freddy Pharkas: Frontier Pharmacist (Windows/French)</caption>
 			</image>
+		</game>
+		<game>
+			<name>Hoyle's Official Book of Games series</name>
+			<category>hoyle</category>
 			<image>
-				<file>sci/mixedup/fairytales-3</file>
-				<caption>Mixed-up Fairy Tales</caption>
+				<file>sci/hoyle/hoyle1-#n#</file>
+				<range from="1" to="5" format="%d" />
+				<caption>Hoyle Official Book of Games: Volume 1</caption>
 			</image>
 			<image>
-				<file>sci/mixedup/fairytales-4</file>
-				<caption>Mixed-up Fairy Tales</caption>
+				<file>sci/hoyle/hoyle2-#n#</file>
+				<range from="1" to="4" format="%d" />
+				<caption>Hoyle Official Book of Games: Volume 2</caption>
 			</image>
 			<image>
-				<file>sci/mixedup/fairytales-5</file>
-				<caption>Mixed-up Fairy Tales</caption>
+				<file>sci/hoyle/hoyle2-amiga-#n#</file>
+				<range from="1" to="4" format="%d" />
+				<caption>Hoyle Official Book of Games: Volume 2 (Amiga)</caption>
 			</image>
 			<image>
-				<file>sci/mixedup/fairytales-6</file>
-				<caption>Mixed-up Fairy Tales</caption>
+				<file>sci/hoyle/hoyle3-ega-#n#</file>
+				<range from="1" to="4" format="%d" />
+				<caption>Hoyle Official Book of Games: Volume 3 (EGA)</caption>
 			</image>
-		</game>
-		<game>
-			<name>Slater & Charlie Go Camping</name>
-			<category>slater</category>
 			<image>
-				<file>sci/slater/slater-1</file>
-				<caption>Slater & Charlie Go Camping</caption>
+				<file>sci/hoyle/hoyle3-amiga-#n#</file>
+				<range from="1" to="6" format="%d" />
+				<caption>Hoyle Official Book of Games: Volume 3 (Amiga)</caption>
 			</image>
 			<image>
-				<file>sci/slater/slater-2</file>
-				<caption>Slater & Charlie Go Camping</caption>
+				<file>sci/hoyle/hoyle4-#n#</file>
+				<range from="1" to="6" format="%d" />
+				<caption>Hoyle Classic Card Games</caption>
 			</image>
+		</game>
+		<game>
+			<name>Jones in the Fast Lane</name>
+			<category>jones</category>
 			<image>
-				<file>sci/slater/slater-3</file>
-				<caption>Slater & Charlie Go Camping</caption>
+				<file>sci/jones/jones-ega-#n#</file>
+				<range from="1" to="2" format="%d" />
+				<caption>Jones in the Fast Lane (EGA)</caption>
 			</image>
 			<image>
-				<file>sci/slater/slater-4</file>
-				<caption>Slater & Charlie Go Camping</caption>
+				<file>sci/jones/jones-vga-#n#</file>
+				<range from="1" to="2" format="%d" />
+				<caption>Jones in the Fast Lane (VGA)</caption>
 			</image>
+		</game>
+		<game>
+			<name>Laura Bow Series</name>
+			<category>laurabow</category>
 			<image>
-				<file>sci/slater/slater-5</file>
-				<caption>Slater & Charlie Go Camping</caption>
+				<file>sci/laurabow/laurabow-#n#</file>
+				<range from="1" to="6" format="%d" />
+				<caption>Laura Bow: The Colonel's Bequest</caption>
 			</image>
 			<image>
-				<file>sci/slater/slater-6</file>
-				<caption>Slater & Charlie Go Camping</caption>
+				<file>sci/laurabow/laurabow2-#n#</file>
+				<range from="1" to="4" format="%d" />
+				<caption>Laura Bow 2: The Dagger of Amon Ra</caption>
 			</image>
 			<image>
-				<file>sci/slater/slater-7</file>
-				<caption>Slater & Charlie Go Camping</caption>
+				<file>sci/laurabow/laurabow2-de-#n#</file>
+				<range from="1" to="3" format="%d" />
+				<caption>Laura Bow 2: The Dagger of Amon Ra (German)</caption>
 			</image>
 		</game>
 		<game>
-			<name>Space Quest series</name>
-			<category>sq-sci</category>
-			<image>
-				<file>sci/sq/sq1sci-ega-1</file>
-				<caption>Space Quest: The Sarien Encounter (SCI/EGA)</caption>
-			</image>
+			<name>King's Quest series</name>
+			<category>kq-sci</category>
 			<image>
-				<file>sci/sq/sq1sci-ega-2</file>
-				<caption>Space Quest: The Sarien Encounter (SCI/EGA)</caption>
+				<file>sci/kq/kq1sci-#n#</file>
+				<range from="1" to="6" format="%d" />
+				<caption>King's Quest: Quest for the Crown (VGA remake)</caption>
 			</image>
 			<image>
-				<file>sci/sq/sq1sci-ega-3</file>
-				<caption>Space Quest: The Sarien Encounter (SCI/EGA)</caption>
+				<file>sci/kq/kq4sci-#n#</file>
+				<range from="1" to="6" format="%d" />
+				<caption>King's Quest IV: The Perils of Rosella (SCI)</caption>
 			</image>
 			<image>
-				<file>sci/sq/sq1sci-ega-4</file>
-				<caption>Space Quest: The Sarien Encounter (SCI/EGA)</caption>
+				<file>sci/kq/kq5-ega-#n#</file>
+				<range from="1" to="4" format="%d" />
+				<caption>King's Quest V: Absence Makes the Heart Go Yonder (EGA)</caption>
 			</image>
 			<image>
-				<file>sci/sq/sq1sci-ega-5</file>
-				<caption>Space Quest: The Sarien Encounter (SCI/EGA)</caption>
+				<file>sci/kq/kq5-vga-#n#</file>
+				<range from="1" to="4" format="%d" />
+				<caption>King's Quest V: Absence Makes the Heart Go Yonder (VGA)</caption>
 			</image>
 			<image>
-				<file>sci/sq/sq1sci-ega-6</file>
-				<caption>Space Quest: The Sarien Encounter (SCI/EGA)</caption>
+				<file>sci/kq/kq5-vga-de-#n#</file>
+				<range from="1" to="2" format="%d" />
+				<caption>King's Quest V: Absence Makes the Heart Go Yonder (VGA/German)</caption>
 			</image>
 			<image>
-				<file>sci/sq/sq1sci-vga-1</file>
-				<caption>Space Quest: The Sarien Encounter (SCI/VGA)</caption>
+				<file>sci/kq/kq5-vga-pl-#n#</file>
+				<range from="1" to="2" format="%d" />
+				<caption>King's Quest V: Absence Makes the Heart Go Yonder (VGA/Polish)</caption>
 			</image>
 			<image>
-				<file>sci/sq/sq1sci-vga-2</file>
-				<caption>Space Quest: The Sarien Encounter (SCI/VGA)</caption>
+				<file>sci/kq/kq6-#n#</file>
+				<range from="1" to="5" format="%d" />
+				<caption>King's Quest VI: Heir Today, Gone Tomorrow</caption>
 			</image>
 			<image>
-				<file>sci/sq/sq1sci-vga-3</file>
-				<caption>Space Quest: The Sarien Encounter (SCI/VGA)</caption>
+				<file>sci/kq/kq6-de-#n#</file>
+				<range from="1" to="3" format="%d" />
+				<caption>King's Quest VI: Heir Today, Gone Tomorrow (German)</caption>
 			</image>
+		</game>
+		<game>
+			<name>Leisure Suit Larry series</name>
+			<category>lsl-sci</category>
 			<image>
-				<file>sci/sq/sq1sci-vga-4</file>
-				<caption>Space Quest: The Sarien Encounter (SCI/VGA)</caption>
+				<file>sci/lsl/lsl1sci-#n#</file>
+				<range from="1" to="5" format="%d" />
+				<caption>Leisure Suit Larry in the Land of the Lounge Lizards</caption>
 			</image>
 			<image>
-				<file>sci/sq/sq1sci-vga-5</file>
-				<caption>Space Quest: The Sarien Encounter (SCI/VGA)</caption>
+				<file>sci/lsl/lsl1sci-ega-#n#</file>
+				<range from="1" to="2" format="%d" />
+				<caption>Leisure Suit Larry in the Land of the Lounge Lizards (EGA)</caption>
 			</image>
 			<image>
-				<file>sci/sq/sq1sci-vga-6</file>
-				<caption>Space Quest: The Sarien Encounter (SCI/VGA)</caption>
+				<file>sci/lsl/lsl1sci-amiga-#n#</file>
+				<range from="1" to="2" format="%d" />
+				<caption>Leisure Suit Larry in the Land of the Lounge Lizards (Amiga)</caption>
 			</image>
 			<image>
-				<file>sci/sq/sq3-1</file>
-				<caption>Space Quest III: The Pirates of Pestulon</caption>
+				<file>sci/lsl/lsl1sci-pl-1</file>
+				<caption>Leisure Suit Larry in the Land of the Lounge Lizards (Polish)</caption>
 			</image>
 			<image>
-				<file>sci/sq/sq3-2</file>
-				<caption>Space Quest III: The Pirates of Pestulon</caption>
+				<file>sci/lsl/lsl2-#n#</file>
+				<range from="1" to="3" format="%d" />
+				<caption>Leisure Suit Larry 2: Goes Looking for Love (in Several Wrong Places)</caption>
 			</image>
 			<image>
-				<file>sci/sq/sq3-3</file>
-				<caption>Space Quest III: The Pirates of Pestulon</caption>
+				<file>sci/lsl/lsl2-pl-#n#</file>
+				<range from="1" to="2" format="%d" />
+				<caption>Leisure Suit Larry 2: Goes Looking for Love (in Several Wrong Places) (Polish)</caption>
 			</image>
 			<image>
-				<file>sci/sq/sq3-4</file>
-				<caption>Space Quest III: The Pirates of Pestulon</caption>
+				<file>sci/lsl/lsl3-#n#</file>
+				<range from="1" to="4" format="%d" />
+				<caption>Leisure Suit Larry 3: Passionate Patti in Pursuit of the Pulsating Pectorals</caption>
 			</image>
 			<image>
-				<file>sci/sq/sq3-5</file>
-				<caption>Space Quest III: The Pirates of Pestulon</caption>
+				<file>sci/lsl/lsl3-pl-#n#</file>
+				<range from="1" to="2" format="%d" />
+				<caption>Leisure Suit Larry 3: Passionate Patti in Pursuit of the Pulsating Pectorals (Polish)</caption>
 			</image>
 			<image>
-				<file>sci/sq/sq3-6</file>
-				<caption>Space Quest III: The Pirates of Pestulon</caption>
+				<file>sci/lsl/lsl5-amiga-#n#</file>
+				<range from="1" to="2" format="%d" />
+				<caption>Leisure Suit Larry 5: Passionate Patti Does Some Undercover Work (Amiga)</caption>
 			</image>
 			<image>
-				<file>sci/sq/sq3-7</file>
-				<caption>Space Quest III: The Pirates of Pestulon</caption>
+				<file>sci/lsl/lsl3-de-1</file>
+				<caption>Leisure Suit Larry 3: Passionate Patti in Pursuit of the Pulsating Pectorals (German)</caption>
 			</image>
 			<image>
-				<file>sci/sq/sq3-8</file>
-				<caption>Space Quest III: The Pirates of Pestulon</caption>
+				<file>sci/lsl/lsl5-de-#n#</file>
+				<range from="1" to="4" format="%d" />
+				<caption>Leisure Suit Larry 5: Passionate Patti Does Some Undercover Work (German)</caption>
 			</image>
 			<image>
-				<file>sci/sq/sq3-de-1</file>
-				<caption>Space Quest III: The Pirates of Pestulon (DOS German)</caption>
+				<file>sci/lsl/lsl5-pl-1</file>
+				<caption>Leisure Suit Larry 5: Passionate Patti Does Some Undercover Work (Polish)</caption>
 			</image>
 			<image>
-				<file>sci/sq/sq3-de-2</file>
-				<caption>Space Quest III: The Pirates of Pestulon (DOS German)</caption>
+				<file>sci/lsl/lsl6-1</file>
+				<caption>Leisure Suit Larry 6: Shape Up or Slip Out!</caption>
 			</image>
 			<image>
-				<file>sci/sq/sq4-ega-1</file>
-				<caption>Space Quest IV: Roger Wilco and the Time Rippers (EGA)</caption>
+				<file>sci/lsl/lsl6-4</file>
+				<caption>Leisure Suit Larry 6: Shape Up or Slip Out!</caption>
 			</image>
 			<image>
-				<file>sci/sq/sq4-ega-2</file>
-				<caption>Space Quest IV: Roger Wilco and the Time Rippers (EGA)</caption>
+				<file>sci/lsl/lsl6-de-1</file>
+				<caption>Leisure Suit Larry 6: Shape Up or Slip Out! (German)</caption>
 			</image>
 			<image>
-				<file>sci/sq/sq4-ega-3</file>
-				<caption>Space Quest IV: Roger Wilco and the Time Rippers (EGA)</caption>
+				<file>sci/lsl/lsl6-pl-#n#</file>
+				<range from="1" to="2" format="%d" />
+				<caption>Leisure Suit Larry 6: Shape Up or Slip Out! (Polish)</caption>
 			</image>
+		</game>
+		<game>
+			<name>Pepper's Adventure in Time</name>
+			<category>pepper</category>
 			<image>
-				<file>sci/sq/sq4-ega-4</file>
-				<caption>Space Quest IV: Roger Wilco and the Time Rippers (EGA)</caption>
+				<file>sci/pepper/pepper-#n#</file>
+				<range from="1" to="7" format="%d" />
+				<caption>Pepper's Adventure in Time</caption>
 			</image>
+		</game>
+		<game>
+			<name>Police Quest series</name>
+			<category>pq-sci</category>
 			<image>
-				<file>sci/sq/sq4-ega-5</file>
-				<caption>Space Quest IV: Roger Wilco and the Time Rippers (EGA)</caption>
+				<file>sci/pq/pq1sci-#n#</file>
+				<range from="1" to="3" format="%d" />
+				<caption>Police Quest: In Pursuit of the Death Angel (VGA remake)</caption>
 			</image>
 			<image>
-				<file>sci/sq/sq4-ega-6</file>
-				<caption>Space Quest IV: Roger Wilco and the Time Rippers (EGA)</caption>
+				<file>sci/pq/pq2-#n#</file>
+				<range from="1" to="3" format="%d" />
+				<caption>Police Quest II: The Vengeance</caption>
 			</image>
 			<image>
-				<file>sci/sq/sq4-vga-1</file>
-				<caption>Space Quest IV: Roger Wilco and the Time Rippers (VGA)</caption>
+				<file>sci/pq/pq3-ega-#n#</file>
+				<range from="1" to="4" format="%d" />
+				<caption>Police Quest III: The Kindred (EGA)</caption>
 			</image>
 			<image>
-				<file>sci/sq/sq4-vga-2</file>
-				<caption>Space Quest IV: Roger Wilco and the Time Rippers (VGA)</caption>
+				<file>sci/pq/pq3-vga-#n#</file>
+				<range from="1" to="8" format="%d" />
+				<caption>Police Quest III: The Kindred (VGA)</caption>
 			</image>
 			<image>
-				<file>sci/sq/sq4-vga-3</file>
-				<caption>Space Quest IV: Roger Wilco and the Time Rippers (VGA)</caption>
+				<file>sci/pq/pq3-amiga-#n#</file>
+				<range from="1" to="2" format="%d" />
+				<caption>Police Quest III: The Kindred (Amiga)</caption>
 			</image>
 			<image>
-				<file>sci/sq/sq4-vga-4</file>
-				<caption>Space Quest IV: Roger Wilco and the Time Rippers (VGA)</caption>
+				<file>sci/pq/pq3-de-#n#</file>
+				<range from="1" to="3" format="%d" />
+				<caption>Police Quest III: The Kindred (VGA/German)</caption>
 			</image>
+		</game>
+		<game>
+			<name>Quest For Glory series</name>
+			<category>qfg-sci</category>
 			<image>
-				<file>sci/sq/sq4-vga-5</file>
-				<caption>Space Quest IV: Roger Wilco and the Time Rippers (VGA)</caption>
+				<file>sci/qfg/qfg1-ega-#n#</file>
+				<range from="1" to="6" format="%d" />
+				<caption>Quest for Glory: So You Want to Be a Hero (EGA)</caption>
 			</image>
 			<image>
-				<file>sci/sq/sq4-vga-6</file>
-				<caption>Space Quest IV: Roger Wilco and the Time Rippers (VGA)</caption>
+				<file>sci/qfg/qfg1-vga-#n#</file>
+				<range from="1" to="6" format="%d" />
+				<caption>Quest for Glory: So You Want to Be a Hero (VGA)</caption>
 			</image>
 			<image>
-				<file>sci/sq/sq4-vga-7</file>
-				<caption>Space Quest IV: Roger Wilco and the Time Rippers (VGA)</caption>
+				<file>sci/qfg/qfg2-#n#</file>
+				<range from="1" to="6" format="%d" />
+				<caption>Quest for Glory II: Trial by Fire</caption>
 			</image>
 			<image>
-				<file>sci/sq/sq4-de-1</file>
-				<caption>Space Quest IV: Roger Wilco and the Time Rippers (DOS German)</caption>
+				<file>sci/qfg/qfg3-#n#</file>
+				<range from="1" to="6" format="%d" />
+				<caption>Quest for Glory III: Wages of War</caption>
 			</image>
+		</game>
+		<game>
+			<name>Roberta Williams' Mixed-Up Series</name>
+			<category>mixedup</category>
 			<image>
-				<file>sci/sq/sq4-de-2</file>
-				<caption>Space Quest IV: Roger Wilco and the Time Rippers (DOS German)</caption>
+				<file>sci/mixedup/mothergoose-#n#</file>
+				<range from="1" to="6" format="%d" />
+				<caption>Roberta Williams' Mixed-Up Mother Goose (CD/DOS/Multilanguage)</caption>
 			</image>
 			<image>
-				<file>sci/sq/sq5-1</file>
-				<caption>Space Quest V: The Next Mutation</caption>
+				<file>sci/mixedup/fairytales-#n#</file>
+				<range from="1" to="6" format="%d" />
+				<caption>Mixed-up Fairy Tales</caption>
 			</image>
+		</game>
+		<game>
+			<name>Slater & Charlie Go Camping</name>
+			<category>slater</category>
 			<image>
-				<file>sci/sq/sq5-2</file>
-				<caption>Space Quest V: The Next Mutation</caption>
+				<file>sci/slater/slater-#n#</file>
+				<range from="1" to="7" format="%d" />
+				<caption>Slater & Charlie Go Camping</caption>
 			</image>
+		</game>
+		<game>
+			<name>Space Quest series</name>
+			<category>sq-sci</category>
 			<image>
-				<file>sci/sq/sq5-3</file>
-				<caption>Space Quest V: The Next Mutation</caption>
+				<file>sci/sq/sq1sci-ega-#n#</file>
+				<range from="1" to="6" format="%d" />
+				<caption>Space Quest: The Sarien Encounter (SCI/EGA)</caption>
 			</image>
 			<image>
-				<file>sci/sq/sq5-4</file>
-				<caption>Space Quest V: The Next Mutation</caption>
+				<file>sci/sq/sq1sci-vga-#n#</file>
+				<range from="1" to="6" format="%d" />
+				<caption>Space Quest: The Sarien Encounter (SCI/VGA)</caption>
 			</image>
 			<image>
-				<file>sci/sq/sq5-5</file>
-				<caption>Space Quest V: The Next Mutation</caption>
+				<file>sci/sq/sq3-#n#</file>
+				<range from="1" to="8" format="%d" />
+				<caption>Space Quest III: The Pirates of Pestulon</caption>
 			</image>
 			<image>
-				<file>sci/sq/sq5-6</file>
-				<caption>Space Quest V: The Next Mutation</caption>
+				<file>sci/sq/sq3-de-#n#</file>
+				<range from="1" to="2" format="%d" />
+				<caption>Space Quest III: The Pirates of Pestulon (DOS German)</caption>
 			</image>
 			<image>
-				<file>sci/sq/sq5-7</file>
-				<caption>Space Quest V: The Next Mutation</caption>
+				<file>sci/sq/sq4-ega-#n#</file>
+				<range from="1" to="6" format="%d" />
+				<caption>Space Quest IV: Roger Wilco and the Time Rippers (EGA)</caption>
 			</image>
 			<image>
-				<file>sci/sq/sq5-de-1</file>
-				<caption>Space Quest V: The Next Mutation (DOS German)</caption>
+				<file>sci/sq/sq4-vga-#n#</file>
+				<range from="1" to="7" format="%d" />
+				<caption>Space Quest IV: Roger Wilco and the Time Rippers (VGA)</caption>
 			</image>
 			<image>
-				<file>sci/sq/sq5-de-2</file>
-				<caption>Space Quest V: The Next Mutation (DOS German)</caption>
+				<file>sci/sq/sq4-de-#n#</file>
+				<range from="1" to="2" format="%d" />
+				<caption>Space Quest IV: Roger Wilco and the Time Rippers (DOS German)</caption>
 			</image>
 			<image>
-				<file>sci/sq/sq5-de-3</file>
-				<caption>Space Quest V: The Next Mutation (DOS German)</caption>
+				<file>sci/sq/sq5-#n#</file>
+				<range from="1" to="7" format="%d" />
+				<caption>Space Quest V: The Next Mutation</caption>
 			</image>
 			<image>
-				<file>sci/sq/sq5-de-4</file>
+				<file>sci/sq/sq5-de-#n#</file>
+				<range from="1" to="4" format="%d" />
 				<caption>Space Quest V: The Next Mutation (DOS German)</caption>
 			</image>
 		</game>






More information about the Scummvm-git-logs mailing list