[Scummvm-git-logs] scummvm-web master -> 177a1e90995a4c8cea3243fbc2e52a70151fcdd2
Mataniko
mataniko at gmail.com
Thu Oct 22 03:08:48 UTC 2020
This automated email contains information about 2 new commits which have been
pushed to the 'scummvm-web' repo located at https://github.com/scummvm/scummvm-web .
Summary:
41f028310c WEB: Use symfony/yaml and predis if redis is not available
177a1e9099 DATA: Refresh data
Commit: 41f028310c421639d122b810f530cabbb97f4840
https://github.com/scummvm/scummvm-web/commit/41f028310c421639d122b810f530cabbb97f4840
Author: Mataniko (mataniko at gmail.com)
Date: 2020-10-21T23:08:08-04:00
Commit Message:
WEB: Use symfony/yaml and predis if redis is not available
This removes the hard requirements on pecl modules making development easier.
Changed paths:
composer.json
composer.lock
include/DataUtils.php
include/Models/BasicModel.php
include/Models/CompatibilityModel.php
include/Models/GameDemosModel.php
include/Models/GameModel.php
include/Models/LinksModel.php
include/Models/ScreenshotsModel.php
include/Models/SimpleModel.php
include/Models/VersionsModel.php
diff --git a/composer.json b/composer.json
index 4968b11e..4b08f6db 100644
--- a/composer.json
+++ b/composer.json
@@ -10,7 +10,6 @@
],
"require": {
"php": ">=7.0.0",
- "ext-yaml": "*",
"ext-intl": "*",
"smarty/smarty": "^3.1",
"ezyang/htmlpurifier": "^4.10",
@@ -21,7 +20,9 @@
"scssphp/scssphp": "^1.2",
"composer/semver": "^3.2",
"phpfastcache/phpfastcache": "^8.0",
- "league/csv": "^9.6"
+ "league/csv": "^9.6",
+ "symfony/yaml": "^5.1",
+ "predis/predis": "^1.1"
},
"require-dev": {
"phpstan/phpstan": "^0.12.43",
diff --git a/composer.lock b/composer.lock
index a280927a..04ead67f 100644
--- a/composer.lock
+++ b/composer.lock
@@ -4,7 +4,7 @@
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
"This file is @generated automatically"
],
- "content-hash": "80161e21aa1841fce8384ff80c5762a2",
+ "content-hash": "f99c84e69bbb132f61a1905c75c46717",
"packages": [
{
"name": "altorouter/altorouter",
@@ -64,16 +64,16 @@
},
{
"name": "composer/semver",
- "version": "3.2.1",
+ "version": "3.2.2",
"source": {
"type": "git",
"url": "https://github.com/composer/semver.git",
- "reference": "ebb714493b3a54f1dbbec6b15ab7bc9b3440e17b"
+ "reference": "4089fddb67bcf6bf860d91b979e95be303835002"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/composer/semver/zipball/ebb714493b3a54f1dbbec6b15ab7bc9b3440e17b",
- "reference": "ebb714493b3a54f1dbbec6b15ab7bc9b3440e17b",
+ "url": "https://api.github.com/repos/composer/semver/zipball/4089fddb67bcf6bf860d91b979e95be303835002",
+ "reference": "4089fddb67bcf6bf860d91b979e95be303835002",
"shasum": ""
},
"require": {
@@ -136,7 +136,7 @@
"type": "tidelift"
}
],
- "time": "2020-09-27T13:14:03+00:00"
+ "time": "2020-10-14T08:51:15+00:00"
},
{
"name": "erusev/parsedown",
@@ -530,6 +530,81 @@
],
"time": "2020-08-17T07:37:33+00:00"
},
+ {
+ "name": "predis/predis",
+ "version": "v1.1.6",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/predis/predis.git",
+ "reference": "9930e933c67446962997b05201c69c2319bf26de"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/predis/predis/zipball/9930e933c67446962997b05201c69c2319bf26de",
+ "reference": "9930e933c67446962997b05201c69c2319bf26de",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=5.3.9"
+ },
+ "require-dev": {
+ "cweagans/composer-patches": "^1.6",
+ "phpunit/phpunit": "~4.8"
+ },
+ "suggest": {
+ "ext-curl": "Allows access to Webdis when paired with phpiredis",
+ "ext-phpiredis": "Allows faster serialization and deserialization of the Redis protocol"
+ },
+ "type": "library",
+ "extra": {
+ "composer-exit-on-patch-failure": true,
+ "patches": {
+ "phpunit/phpunit-mock-objects": {
+ "Fix PHP 7 and 8 compatibility": "./tests/phpunit_mock_objects.patch"
+ },
+ "phpunit/phpunit": {
+ "Fix PHP 7 compatibility": "./tests/phpunit_php7.patch",
+ "Fix PHP 8 compatibility": "./tests/phpunit_php8.patch"
+ }
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Predis\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Daniele Alessandri",
+ "email": "suppakilla at gmail.com",
+ "homepage": "http://clorophilla.net",
+ "role": "Creator & Maintainer"
+ },
+ {
+ "name": "Till Krüss",
+ "homepage": "https://till.im",
+ "role": "Maintainer"
+ }
+ ],
+ "description": "Flexible and feature-complete Redis client for PHP and HHVM",
+ "homepage": "http://github.com/predis/predis",
+ "keywords": [
+ "nosql",
+ "predis",
+ "redis"
+ ],
+ "funding": [
+ {
+ "url": "https://github.com/sponsors/tillkruss",
+ "type": "github"
+ }
+ ],
+ "time": "2020-09-11T19:18:05+00:00"
+ },
{
"name": "psr/cache",
"version": "1.0.1",
@@ -934,7 +1009,7 @@
},
{
"name": "symfony/yaml",
- "version": "v5.1.6",
+ "version": "v5.1.7",
"source": {
"type": "git",
"url": "https://github.com/symfony/yaml.git",
@@ -1013,16 +1088,16 @@
"packages-dev": [
{
"name": "phpstan/phpstan",
- "version": "0.12.48",
+ "version": "0.12.50",
"source": {
"type": "git",
"url": "https://github.com/phpstan/phpstan.git",
- "reference": "d364cfbac9ffd869570cdfea7eaa6541c3dac666"
+ "reference": "b8248f9c81265af75d6d969ca3252aaf3e998f3a"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/phpstan/phpstan/zipball/d364cfbac9ffd869570cdfea7eaa6541c3dac666",
- "reference": "d364cfbac9ffd869570cdfea7eaa6541c3dac666",
+ "url": "https://api.github.com/repos/phpstan/phpstan/zipball/b8248f9c81265af75d6d969ca3252aaf3e998f3a",
+ "reference": "b8248f9c81265af75d6d969ca3252aaf3e998f3a",
"shasum": ""
},
"require": {
@@ -1065,7 +1140,7 @@
"type": "tidelift"
}
],
- "time": "2020-10-01T13:20:16+00:00"
+ "time": "2020-10-16T12:22:23+00:00"
},
{
"name": "squizlabs/php_codesniffer",
@@ -1126,7 +1201,6 @@
"prefer-lowest": false,
"platform": {
"php": ">=7.0.0",
- "ext-yaml": "*",
"ext-intl": "*"
},
"platform-dev": [],
diff --git a/include/DataUtils.php b/include/DataUtils.php
index a66fef64..84bb749e 100644
--- a/include/DataUtils.php
+++ b/include/DataUtils.php
@@ -6,6 +6,7 @@ require_once __DIR__ . '/../include/Constants.php';
use League\Csv\Reader;
use League\Csv\Statement;
+use Symfony\Component\Yaml\Yaml;
/**
* DataUtils
@@ -48,7 +49,7 @@ class DataUtils
// and cannot be converted directly to yaml
$json = \json_encode($records);
$data = \json_decode($json, true);
- $yaml = \yaml_emit($data, YAML_UTF8_ENCODING, YAML_LN_BREAK);
+ $yaml = Yaml::dump($data);
$yaml = "# This is a generated file, please do not edit manually\n" . $yaml;
$outFile = DIR_DATA . "/" . DEFAULT_LOCALE . "/$name.yaml";
echo("Writing $name data to $outFile\n");
diff --git a/include/Models/BasicModel.php b/include/Models/BasicModel.php
index bc9c4255..a2a7fedb 100644
--- a/include/Models/BasicModel.php
+++ b/include/Models/BasicModel.php
@@ -2,7 +2,8 @@
namespace ScummVM\Models;
use Phpfastcache\Helper\Psr16Adapter;
-use Phpfastcache\Drivers\Redis\Config;
+use Phpfastcache\Drivers\Predis\Config as PredisConfig;
+use Phpfastcache\Drivers\Redis\Config as RedisConfig;
use Phpfastcache\Exceptions\PhpfastcacheDriverException;
abstract class BasicModel
@@ -15,9 +16,12 @@ abstract class BasicModel
{
if (is_null(self::$cache)) {
try {
+ $driver = extension_loaded('redis') ? 'redis' : 'predis';
$database = $_SERVER['HTTP_HOST'] === 'www.scummvm.org' ? 8 : 7;
- $config = new Config(['database' => $database]);
- self::$cache = new Psr16Adapter('redis', $config);
+ $config = extension_loaded('redis')
+ ? new RedisConfig(['database' => $database])
+ : new PredisConfig(['database' => $database]);
+ self::$cache = new Psr16Adapter($driver, $config);
} catch (PhpfastcacheDriverException $ex) {
// Fallback to files based cache
self::$cache = new Psr16Adapter('files');
diff --git a/include/Models/CompatibilityModel.php b/include/Models/CompatibilityModel.php
index 13d0956d..ca3c056b 100644
--- a/include/Models/CompatibilityModel.php
+++ b/include/Models/CompatibilityModel.php
@@ -5,6 +5,7 @@ use ScummVM\Objects\Compatibility;
use ScummVM\Models\GameModel;
use ScummVM\Models\SimpleModel;
use Composer\Semver\Comparator;
+use Symfony\Component\Yaml\Yaml;
/**
* The CompatibilityModel class will generate CompatGame objects.
@@ -35,7 +36,7 @@ class CompatibilityModel extends BasicModel
$data = $this->getFromCache($version);
if (is_null($data)) {
$fname = $this->getLocalizedFile("compatibility.yaml");
- $compatibilityEntries = \yaml_parse_file($fname);
+ $compatibilityEntries = Yaml::parseFile($fname);
$games = $this->gameModel->getAllGames();
$platforms = $this->platformsModel->getAllData();
$compareVersion = $version === 'DEV' ? '9.9.9' : $version;
diff --git a/include/Models/GameDemosModel.php b/include/Models/GameDemosModel.php
index 1ea53d51..dfb1641d 100644
--- a/include/Models/GameDemosModel.php
+++ b/include/Models/GameDemosModel.php
@@ -3,7 +3,7 @@ namespace ScummVM\Models;
use ScummVM\Objects\GameDemo;
use ScummVM\Models\GameModel;
-use ScummVM\Models\PlatformsModel;
+use Symfony\Component\Yaml\Yaml;
/**
* The GameDemosModel class will generate GameDemo objects.
@@ -24,7 +24,7 @@ class GameDemosModel extends BasicModel
$groupedData = $this->getFromCache();
if (is_null($groupedData)) {
$fname = $this->getLocalizedFile('game_demos.yaml');
- $demos = \yaml_parse_file($fname);
+ $demos = Yaml::parseFile($fname);
$games = $this->gameModel->getAllGames();
$platforms = $this->platformsModel->getAllData();
$data = [];
diff --git a/include/Models/GameModel.php b/include/Models/GameModel.php
index dddf3462..93f29d3e 100644
--- a/include/Models/GameModel.php
+++ b/include/Models/GameModel.php
@@ -3,6 +3,7 @@ namespace ScummVM\Models;
use ScummVM\Objects\Game;
use ScummVM\Models\SimpleModel;
+use Symfony\Component\Yaml\Yaml;
/**
* The GamesModel is used to cross reference Games across the website
@@ -29,7 +30,7 @@ class GameModel extends BasicModel
$engines = $this->enginesModel->getAllData();
$series = $this->seriesModel->getAllData();
$fname = $this->getLocalizedFile('games.yaml');
- $games = \yaml_parse_file($fname);
+ $games = Yaml::parseFile($fname);
$data = [];
foreach ($games as $game) {
$obj = new Game($game, $engines, $companies, $series);
diff --git a/include/Models/LinksModel.php b/include/Models/LinksModel.php
index 15e7e27e..109edb4e 100644
--- a/include/Models/LinksModel.php
+++ b/include/Models/LinksModel.php
@@ -2,6 +2,7 @@
namespace ScummVM\Models;
use ScummVM\Objects\WebLink;
+use Symfony\Component\Yaml\Yaml;
/**
* The LinksModel class will generate WebLink objects.
@@ -15,7 +16,7 @@ class LinksModel extends BasicModel
$entries = $this->getFromCache();
if (is_null($entries)) {
$fname = $this->getLocalizedFile('links.yaml');
- $parsedData = \yaml_parse_file($fname);
+ $parsedData = Yaml::parseFile($fname);
$entries = [];
foreach ($parsedData as $value) {
/* Get all links. */
diff --git a/include/Models/ScreenshotsModel.php b/include/Models/ScreenshotsModel.php
index 08d059b0..1c349b0b 100644
--- a/include/Models/ScreenshotsModel.php
+++ b/include/Models/ScreenshotsModel.php
@@ -2,9 +2,9 @@
namespace ScummVM\Models;
use ScummVM\Objects\Screenshot;
-use ScummVM\Objects\BasicObject;
use ScummVM\Models\GameModel;
use ScummVM\Models\SimpleModel;
+use Symfony\Component\Yaml\Yaml;
/**
* The ScreenshotsModel will generate Screenshot objects.
@@ -27,7 +27,7 @@ class ScreenshotsModel extends BasicModel
public function getAllScreenshots()
{
$fname = $this->getLocalizedFile('screenshots.yaml');
- $screenshots = \yaml_parse_file($fname);
+ $screenshots = Yaml::parseFile($fname);
$platforms = $this->platformsModel->getAllData();
$games = $this->gameModel->getAllGames();
$data = [];
diff --git a/include/Models/SimpleModel.php b/include/Models/SimpleModel.php
index 6c7fdd4b..a5c21a8f 100644
--- a/include/Models/SimpleModel.php
+++ b/include/Models/SimpleModel.php
@@ -1,6 +1,8 @@
<?php
namespace ScummVM\Models;
+use Symfony\Component\Yaml\Yaml;
+
/**
* The SimpleModel is used automatically create simple models
* that do not require any special handling
@@ -24,7 +26,7 @@ class SimpleModel extends BasicModel
{
$objects = $this->getFromCache();
if (is_null($objects)) {
- $data = @\yaml_parse_file($this->filename);
+ $data = @Yaml::parseFile($this->filename);
if (!$data || !\is_array($data)) {
throw new \ErrorException(\sprintf(self::YAML_PARSE_FAILED, $this->filename));
}
diff --git a/include/Models/VersionsModel.php b/include/Models/VersionsModel.php
index 3efafba1..e40b8772 100644
--- a/include/Models/VersionsModel.php
+++ b/include/Models/VersionsModel.php
@@ -2,6 +2,7 @@
namespace ScummVM\Models;
use ScummVM\Objects\Version;
+use Symfony\Component\Yaml\Yaml;
/**
* The VersionsModel is used to cross reference versions across the website
@@ -14,7 +15,7 @@ class VersionsModel extends BasicModel
$data = $this->getFromCache();
if (is_null($data)) {
$fname = $this->getLocalizedFile('versions.yaml');
- $versions = \yaml_parse_file($fname);
+ $versions = Yaml::parseFile($fname);
$data = [];
foreach ($versions as $version) {
Commit: 177a1e90995a4c8cea3243fbc2e52a70151fcdd2
https://github.com/scummvm/scummvm-web/commit/177a1e90995a4c8cea3243fbc2e52a70151fcdd2
Author: Mataniko (mataniko at gmail.com)
Date: 2020-10-21T23:08:28-04:00
Commit Message:
DATA: Refresh data
Changed paths:
data/en/companies.yaml
data/en/compatibility.yaml
data/en/engines.yaml
data/en/game_demos.yaml
data/en/games.yaml
data/en/platforms.yaml
data/en/screenshots.yaml
data/en/series.yaml
data/en/versions.yaml
diff --git a/data/en/companies.yaml b/data/en/companies.yaml
index 589a0f93..5f799412 100644
--- a/data/en/companies.yaml
+++ b/data/en/companies.yaml
@@ -1,693 +1,921 @@
# This is a generated file, please do not edit manually
----
-- id: 1c
- name: 1C Company
- alt_name: ""
-- id: 21stcentury
- name: 21st Century Entertainment
- alt_name: ""
-- id: 3f
- name: 3f interactivo
- alt_name: ""
-- id: 4x
- name: 4X Technologies
- alt_name: ""
-- id: access
- name: Access Software
- alt_name: ""
-- id: accolade
- name: Accolade
- alt_name: ""
-- id: activision
- name: Activision
- alt_name: ""
-- id: adventurecompany
- name: The Adventure Company
- alt_name: ""
-- id: adventureinternational
- name: Adventure International
- alt_name: ""
-- id: adventuresoft
- name: Adventure Soft
- alt_name: ""
-- id: aetheric
- name: Aetheric Games
- alt_name: ""
-- id: aftermath
- name: Aftermath Media
- alt_name: ""
-- id: akella
- name: Akella
- alt_name: ""
-- id: alawar
- name: Alawar Entertainment
- alt_name: ""
-- id: alcachofa
- name: Alcachofa Soft
- alt_name: ""
-- id: amber
- name: Amber Company
- alt_name: ""
-- id: animationmagic
- name: Animation Magic
- alt_name: ""
-- id: aquin
- name: Aquin Design
- alt_name: ""
-- id: arberth
- name: Arberth Studios
- alt_name: ""
-- id: artech
- name: Artech Digital Entertainment
- alt_name: ""
-- id: arxel
- name: Arxel Tribe
- alt_name: ""
-- id: atari
- name: Atari
- alt_name: ""
-- id: atlantis
- name: Atlantis Interactive Entertainment
- alt_name: ""
-- id: bandai
- name: Bandai
- alt_name: ""
-- id: bigfish
- name: Big Fish Games
- alt_name: ""
-- id: bigorc
- name: Big Orc Software
- alt_name: ""
-- id: blekinge
- name: Blekinge Institute of Technology
- alt_name: ""
-- id: bluebyte
- name: Blue Byte Software
- alt_name: ""
-- id: broderbund
- name: Brøderbund
- alt_name: ""
-- id: buka
- name: Buka Entertainment
- alt_name: ""
-- id: burnedout
- name: Burned Out Adventurers!
- alt_name: ""
-- id: burst
- name: Burst
- alt_name: ""
-- id: byteriders
- name: Byteriders
- alt_name: ""
-- id: canal
- name: Canal Multimedia
- alt_name: ""
-- id: capstone
- name: Capstone Software
- alt_name: ""
-- id: catware
- name: Catware
- alt_name: ""
-- id: cbe
- name: CBE Software
- alt_name: ""
-- id: channel8
- name: Channel 8 Software
- alt_name: ""
-- id: clipper
- name: Clipper Software
- alt_name: ""
-- id: coktel
- name: Coktel Vision
- alt_name: ""
-- id: colossal
- name: (Colossal) Pictures' New Media
- alt_name: ""
-- id: coredesign
- name: Core Design
- alt_name: ""
-- id: creativedream
- name: CreativeDream Studio
- alt_name: ""
-- id: creativereality
- name: Creative Reality
- alt_name: ""
-- id: cryo
- name: Cryo Interactive
- alt_name: ""
-- id: cuc
- name: CUC Software International
- alt_name: ""
-- id: cyan
- name: Cyan Worlds
- alt_name: Cyan
-- id: cyberdreams
- name: Cyberdreams
- alt_name: ""
-- id: daedalic
- name: Daedalic Entertainment
- alt_name: ""
-- id: darkling
- name: Darkling Room
- alt_name: ""
-- id: deadcode
- name: Dead:Code Software
- alt_name: ""
-- id: delphine
- name: Delphine Software
- alt_name: ""
-- id: destiny
- name: Destiny Software
- alt_name: ""
-- id: digitaldreams
- name: Digital Dreams Multimedia
- alt_name: ""
-- id: digitalequipment
- name: Digital Equipment Corporation
- alt_name: ""
-- id: digitalfantasia
- name: Digital Fantasia
- alt_name: ""
-- id: digitalvillage
- name: The Digital Village
- alt_name: ""
-- id: disney
- name: Disney
- alt_name: ""
-- id: divide
- name: Divide By Zero
- alt_name: ""
-- id: domark
- name: Domark
- alt_name: ""
-- id: dosowisko
- name: Dosowisko.net
- alt_name: ""
-- id: dreamagination
- name: Dreamagination
- alt_name: ""
-- id: dreamcatchereurope
- name: DreamCatcher Europe
- alt_name: ""
-- id: dreamcatcherinteractive
- name: DreamCatcher Interactive
- alt_name: ""
-- id: dreamersguild
- name: The Dreamers Guild
- alt_name: ""
-- id: dreamforge
- name: DreamForge Intertainment
- alt_name: ""
-- id: dreamworks
- name: DreamWorks Interactive
- alt_name: ""
-- id: dro
- name: Dro Soft
- alt_name: ""
-- id: dynabyte
- name: Dynabyte
- alt_name: ""
-- id: dynamix
- name: Dynamix
- alt_name: ""
-- id: ea
- name: Electronic Arts
- alt_name: ""
-- id: eie
- name: Empire Interactive Entertainment
- alt_name: ""
-- id: eloi
- name: ELOI Productions
- alt_name: ""
-- id: encore
- name: Encore Software
- alt_name: ""
-- id: erbe
- name: Erbe Software
- alt_name: ""
-- id: ere
- name: ERE Informatique
- alt_name: ""
-- id: esp
- name: Entertainment Software Partners
- alt_name: ""
-- id: evryware
- name: Evryware
- alt_name: ""
-- id: fan
- name: Fan game
- alt_name: ""
-- id: fatfunky
- name: Fat Funky
- alt_name: ""
-- id: firstlight
- name: Firstlight
- alt_name: ""
-- id: flashpoint
- name: Flashpoint Productions
- alt_name: ""
-- id: forgottenkey
- name: Forgotten Key
- alt_name: ""
-- id: ftl
- name: FTL Games
- alt_name: ""
-- id: funcom
- name: Funcom
- alt_name: ""
-- id: funhouse
- name: Funhouse Design
- alt_name: ""
-- id: gotgame
- name: Got Game Entertainment
- alt_name: ""
-- id: graydesign
- name: Gray Design Associates
- alt_name: ""
-- id: gt
- name: GT Interactive
- alt_name: ""
-- id: he
- name: Humongous Entertainment
- alt_name: ""
-- id: hungry
- name: Hungry Software
- alt_name: ""
-- id: infocom
- name: Infocom
- alt_name: ""
-- id: interplay
- name: Interplay Productions
- alt_name: ""
-- id: kemco
- name: Kemco
- alt_name: ""
-- id: krumbukt
- name: Krumbukt
- alt_name: ""
-- id: lankhor
- name: Lankhor
- alt_name: ""
-- id: lkavalon
- name: L.K. Avalon
- alt_name: ""
-- id: local
- name: Local Studio
- alt_name: ""
-- id: lucasarts
- name: LucasArts
- alt_name: ""
-- id: macromedia
- name: Macromedia
- alt_name: ""
-- id: maxis
- name: Maxis
- alt_name: ""
-- id: mdna
- name: MDNA Games
- alt_name: ""
-- id: merit
- name: Merit Studios
- alt_name: ""
-- id: merscom
- name: Merscom
- alt_name: ""
-- id: metropolis
- name: Metropolis Software House
- alt_name: ""
-- id: microprose
- name: MicroProse
- alt_name: ""
-- id: microsoft
- name: Microsoft
- alt_name: ""
-- id: mindscape
- name: Mindscape
- alt_name: ""
-- id: mpe
- name: MP Entertainment
- alt_name: ""
-- id: mythos
- name: Mythos Software
- alt_name: ""
-- id: nayma
- name: Nayma Software
- alt_name: ""
-- id: nemoria
- name: Nemoria Entertainment
- alt_name: ""
-- id: neverhood
- name: The Neverhood, Inc.
- alt_name: ""
-- id: nintendo
- name: Nintendo
- alt_name: ""
-- id: nobilis
- name: Nobilis
- alt_name: ""
-- id: nosense
- name: NoSense
- alt_name: ""
-- id: nwc
- name: New World Computing
- alt_name: ""
-- id: origin
- name: Origin Systems
- alt_name: ""
-- id: pavo
- name: Pavo Entertainment
- alt_name: ""
-- id: pendulo
- name: Péndulo Studios
- alt_name: ""
-- id: perfect
- name: Perfect Entertainment
- alt_name: ""
-- id: piranha
- name: Piranha Interactive Publishing
- alt_name: ""
-- id: playmates
- name: Playmates Interactive Entertainment
- alt_name: ""
-- id: presto
- name: Presto Studios
- alt_name: ""
-- id: psygnosis
- name: Psygnosis
- alt_name: ""
-- id: rainbird
- name: Rainbird Software
- alt_name: ""
-- id: rebellion
- name: Rebellion
- alt_name: ""
-- id: revistronic
- name: Revistronic
- alt_name: ""
-- id: revolution
- name: Revolution
- alt_name: ""
-- id: riki
- name: Riki Computer Games
- alt_name: ""
-- id: rootfix
- name: RootFix Entertainment
- alt_name: ""
-- id: sacis
- name: Sacis
- alt_name: ""
-- id: sanctuary
- name: Sanctuary Woods
- alt_name: ""
-- id: sandcastle
- name: Sandcastle
- alt_name: ""
-- id: sega
- name: Sega
- alt_name: ""
-- id: sierra
- name: Sierra
- alt_name: Sierra On-Line
-- id: skif
- name: S.K.I.F.
- alt_name: ""
-- id: softgold
- name: Softgold
- alt_name: ""
-- id: sony
- name: Sony
- alt_name: ""
-- id: terra
- name: Terra Nova Development
- alt_name: ""
-- id: thorsoft
- name: Thorsoft of Letchworth
- alt_name: ""
-- id: tomahawk
- name: Tomahawk
- alt_name: ""
-- id: tommo
- name: Tommo
- alt_name: ""
-- id: traktor
- name: Traktor Games
- alt_name: ""
-- id: trilobyte
- name: Trilobyte
- alt_name: ""
-- id: tsunami
- name: Tsunami Games
- alt_name: ""
-- id: ubisoft
- name: Ubisoft
- alt_name: ""
-- id: viacom
- name: Viacom
- alt_name: ""
-- id: viperante
- name: Viperante
- alt_name: ""
-- id: virgin
- name: Virgin Interactive
- alt_name: ""
-- id: westwood
- name: Westwood Studios
- alt_name: ""
-- id: zojoi
- name: Zojoi
- alt_name: ""
-- id: anne
- name: Anne Carrière
- alt_name: ""
-- id: cpcc
- name: California Pacific Computer Company
- alt_name: ""
-- id: icom
- name: ICOM Simulations
- alt_name: ""
-- id: idigicon
- name: Idigicon
- alt_name: ""
-- id: igc
- name: The Illusions Gaming Company
- alt_name: ""
-- id: indiesquish
- name: IndieSquish
- alt_name: ""
-- id: infogrames
- name: Infogrames
- alt_name: ""
-- id: ibi
- name: Interactive Binary Illusions
- alt_name: ""
-- id: interlink
- name: Interlink Planning
- alt_name: ""
-- id: interplay
- name: Interplay
- alt_name: ""
-- id: invention
- name: Invention
- alt_name: ""
-- id: ips
- name: IPS Computer Group
- alt_name: ""
-- id: israndom
- name: IsRandomRandom Games
- alt_name: ""
-- id: jbush
- name: JBush Productions
- alt_name: ""
-- id: kirin
- name: Kirin Entertainment
- alt_name: ""
-- id: kompart
- name: Kompart UK
- alt_name: ""
-- id: lacemamba
- name: Lace Mamba Global
- alt_name: ""
-- id: tlc
- name: The Learning Company
- alt_name: ""
-- id: level9
- name: Level 9 Computing
- alt_name: ""
-- id: lezard
- name: Lezard Interactive
- alt_name: ""
-- id: linuxgp
- name: Linux Game Publishing
- alt_name: ""
-- id: lucyworlds
- name: Lucy's Worlds
- alt_name: ""
-- id: mac
- name: MAC
- alt_name: ""
-- id: magnetic
- name: Magnetic Scrolls
- alt_name: ""
-- id: mit
- name: Massachusetts Institute of Technology
- alt_name: ""
-- id: maximyz
- name: Maximyz
- alt_name: ""
-- id: mif2000
- name: Mif2000
- alt_name: ""
-- id: millennium
- name: Millennium Interactive Ltd.
- alt_name: ""
-- id: mindfactory
- name: MindFactory
- alt_name: ""
-- id: mojotouch
- name: MojoTouch
- alt_name: ""
-- id: molimerx
- name: Molimerx Ltd.
- alt_name: ""
-- id: monkeystone
- name: Monkeystone Games
- alt_name: ""
-- id: mpe
- name: MP Entertainment
- alt_name: ""
-- id: nacht
- name: Nacht und Nebel
- alt_name: ""
-- id: newgen
- name: New Generation Software
- alt_name: ""
-- id: nihilis
- name: NiHiLiS
- alt_name: ""
-- id: offstudio
- name: Off Studio
- alt_name: ""
-- id: palace
- name: Palace Software
- alt_name: ""
-- id: petagame
- name: PetaGame
- alt_name: ""
-- id: philips
- name: Philips Interactive Media
- alt_name: ""
-- id: pipe
- name: Pipe Studio
- alt_name: ""
-- id: pnc
- name: PNC Narratives
- alt_name: ""
-- id: pony
- name: Pony Canyon
- alt_name: ""
-- id: prograph
- name: Prograph Research
- alt_name: ""
-- id: rpelect
- name: R&P Electronic Media
- alt_name: ""
-- id: raecreation
- name: Raecreations Software
- alt_name: ""
-- id: rockstarv
- name: Rockstar Vienna
- alt_name: ""
-- id: rskent
- name: RSK Entertainment
- alt_name: ""
-- id: rudowski
- name: Rudowski Brothers
- alt_name: ""
-- id: reunionmusee
- name: Réunion des Musées Nationaux
- alt_name: ""
-- id: siliconbeach
- name: Silicon Beach Software
- alt_name: ""
-- id: skaldic
- name: Skaldic Games
- alt_name: ""
-- id: smokingcar
- name: Smoking Car Productions
- alt_name: ""
-- id: softwarefarm
- name: The Software Farm
- alt_name: ""
-- id: spectrumholo
- name: Spectrum HoloByte
- alt_name: ""
-- id: spreadcamp
- name: Spreadcamp
- alt_name: ""
-- id: squinky
- name: Squinky
- alt_name: ""
-- id: starbyte
- name: Starbyte Software
- alt_name: ""
-- id: usgold
- name: U.S. Gold
- alt_name: ""
-- id: unitedpixtures
- name: United Pixtures
- alt_name: ""
-- id: victokai
- name: Vic Tokai
- alt_name: ""
-- id: vicarious
- name: Vicarious Visions
- alt_name: ""
-- id: wanadoo
- name: Wanadoo Edition
- alt_name: ""
-- id: warner
- name: Warner Interactive
- alt_name: ""
-- id: wyrmkeep
- name: The Wyrmkeep Entertainment
- alt_name: ""
-- id: zombie
- name: Zombie Studios
- alt_name: ""
-- id: hueforest
- name: Hue Forest Entertainment
- alt_name: ""
-- id: trendmasters
- name: Trendmasters
- alt_name: ""
-- id: artbox
- name: Art in the Box
- alt_name: ""
-- id: mpslabs
- name: MPS Labs
- alt_name: ""
-- id: livingbooks
- name: Living Books
- alt_name: ""
-- id: kyilkhor
- name: Kyilkhor Creation
- alt_name: ""
-- id: wanderlust
- name: Wanderlust Interactive
- alt_name: ""
-- id: tsdinge
- name: Thomas & Steffen Dinge
- alt_name: ""
-- id: crystaldynamics
- name: Crystal Dynamics
- alt_name: ""
-- id: sebastianronsse
- name: Sebastian Ronsse
- alt_name: ""
-- id: glk
- name: Interactive Fiction
- alt_name: ""
-- id: unknown
- name: Unknown Company
- alt_name: ""
-...
+-
+ id: 1c
+ name: '1C Company'
+ alt_name: ''
+-
+ id: 21stcentury
+ name: '21st Century Entertainment'
+ alt_name: ''
+-
+ id: 3f
+ name: '3f interactivo'
+ alt_name: ''
+-
+ id: 4x
+ name: '4X Technologies'
+ alt_name: ''
+-
+ id: access
+ name: 'Access Software'
+ alt_name: ''
+-
+ id: accolade
+ name: Accolade
+ alt_name: ''
+-
+ id: activision
+ name: Activision
+ alt_name: ''
+-
+ id: adventurecompany
+ name: 'The Adventure Company'
+ alt_name: ''
+-
+ id: adventureinternational
+ name: 'Adventure International'
+ alt_name: ''
+-
+ id: adventuresoft
+ name: 'Adventure Soft'
+ alt_name: ''
+-
+ id: aetheric
+ name: 'Aetheric Games'
+ alt_name: ''
+-
+ id: aftermath
+ name: 'Aftermath Media'
+ alt_name: ''
+-
+ id: akella
+ name: Akella
+ alt_name: ''
+-
+ id: alawar
+ name: 'Alawar Entertainment'
+ alt_name: ''
+-
+ id: alcachofa
+ name: 'Alcachofa Soft'
+ alt_name: ''
+-
+ id: amber
+ name: 'Amber Company'
+ alt_name: ''
+-
+ id: animationmagic
+ name: 'Animation Magic'
+ alt_name: ''
+-
+ id: aquin
+ name: 'Aquin Design'
+ alt_name: ''
+-
+ id: arberth
+ name: 'Arberth Studios'
+ alt_name: ''
+-
+ id: artech
+ name: 'Artech Digital Entertainment'
+ alt_name: ''
+-
+ id: arxel
+ name: 'Arxel Tribe'
+ alt_name: ''
+-
+ id: atari
+ name: Atari
+ alt_name: ''
+-
+ id: atlantis
+ name: 'Atlantis Interactive Entertainment'
+ alt_name: ''
+-
+ id: bandai
+ name: Bandai
+ alt_name: ''
+-
+ id: bigfish
+ name: 'Big Fish Games'
+ alt_name: ''
+-
+ id: bigorc
+ name: 'Big Orc Software'
+ alt_name: ''
+-
+ id: blekinge
+ name: 'Blekinge Institute of Technology'
+ alt_name: ''
+-
+ id: bluebyte
+ name: 'Blue Byte Software'
+ alt_name: ''
+-
+ id: broderbund
+ name: Brøderbund
+ alt_name: ''
+-
+ id: buka
+ name: 'Buka Entertainment'
+ alt_name: ''
+-
+ id: burnedout
+ name: 'Burned Out Adventurers!'
+ alt_name: ''
+-
+ id: burst
+ name: Burst
+ alt_name: ''
+-
+ id: byteriders
+ name: Byteriders
+ alt_name: ''
+-
+ id: canal
+ name: 'Canal Multimedia'
+ alt_name: ''
+-
+ id: capstone
+ name: 'Capstone Software'
+ alt_name: ''
+-
+ id: catware
+ name: Catware
+ alt_name: ''
+-
+ id: cbe
+ name: 'CBE Software'
+ alt_name: ''
+-
+ id: channel8
+ name: 'Channel 8 Software'
+ alt_name: ''
+-
+ id: clipper
+ name: 'Clipper Software'
+ alt_name: ''
+-
+ id: coktel
+ name: 'Coktel Vision'
+ alt_name: ''
+-
+ id: colossal
+ name: '(Colossal) Pictures'' New Media'
+ alt_name: ''
+-
+ id: coredesign
+ name: 'Core Design'
+ alt_name: ''
+-
+ id: creativedream
+ name: 'CreativeDream Studio'
+ alt_name: ''
+-
+ id: creativereality
+ name: 'Creative Reality'
+ alt_name: ''
+-
+ id: cryo
+ name: 'Cryo Interactive'
+ alt_name: ''
+-
+ id: cuc
+ name: 'CUC Software International'
+ alt_name: ''
+-
+ id: cyan
+ name: 'Cyan Worlds'
+ alt_name: Cyan
+-
+ id: cyberdreams
+ name: Cyberdreams
+ alt_name: ''
+-
+ id: daedalic
+ name: 'Daedalic Entertainment'
+ alt_name: ''
+-
+ id: darkling
+ name: 'Darkling Room'
+ alt_name: ''
+-
+ id: deadcode
+ name: 'Dead:Code Software'
+ alt_name: ''
+-
+ id: delphine
+ name: 'Delphine Software'
+ alt_name: ''
+-
+ id: destiny
+ name: 'Destiny Software'
+ alt_name: ''
+-
+ id: digitaldreams
+ name: 'Digital Dreams Multimedia'
+ alt_name: ''
+-
+ id: digitalequipment
+ name: 'Digital Equipment Corporation'
+ alt_name: ''
+-
+ id: digitalfantasia
+ name: 'Digital Fantasia'
+ alt_name: ''
+-
+ id: digitalvillage
+ name: 'The Digital Village'
+ alt_name: ''
+-
+ id: disney
+ name: Disney
+ alt_name: ''
+-
+ id: divide
+ name: 'Divide By Zero'
+ alt_name: ''
+-
+ id: domark
+ name: Domark
+ alt_name: ''
+-
+ id: dosowisko
+ name: Dosowisko.net
+ alt_name: ''
+-
+ id: dreamagination
+ name: Dreamagination
+ alt_name: ''
+-
+ id: dreamcatchereurope
+ name: 'DreamCatcher Europe'
+ alt_name: ''
+-
+ id: dreamcatcherinteractive
+ name: 'DreamCatcher Interactive'
+ alt_name: ''
+-
+ id: dreamersguild
+ name: 'The Dreamers Guild'
+ alt_name: ''
+-
+ id: dreamforge
+ name: 'DreamForge Intertainment'
+ alt_name: ''
+-
+ id: dreamworks
+ name: 'DreamWorks Interactive'
+ alt_name: ''
+-
+ id: dro
+ name: 'Dro Soft'
+ alt_name: ''
+-
+ id: dynabyte
+ name: Dynabyte
+ alt_name: ''
+-
+ id: dynamix
+ name: Dynamix
+ alt_name: ''
+-
+ id: ea
+ name: 'Electronic Arts'
+ alt_name: ''
+-
+ id: eie
+ name: 'Empire Interactive Entertainment'
+ alt_name: ''
+-
+ id: eloi
+ name: 'ELOI Productions'
+ alt_name: ''
+-
+ id: encore
+ name: 'Encore Software'
+ alt_name: ''
+-
+ id: erbe
+ name: 'Erbe Software'
+ alt_name: ''
+-
+ id: ere
+ name: 'ERE Informatique'
+ alt_name: ''
+-
+ id: esp
+ name: 'Entertainment Software Partners'
+ alt_name: ''
+-
+ id: evryware
+ name: Evryware
+ alt_name: ''
+-
+ id: fan
+ name: 'Fan game'
+ alt_name: ''
+-
+ id: fatfunky
+ name: 'Fat Funky'
+ alt_name: ''
+-
+ id: firstlight
+ name: Firstlight
+ alt_name: ''
+-
+ id: flashpoint
+ name: 'Flashpoint Productions'
+ alt_name: ''
+-
+ id: forgottenkey
+ name: 'Forgotten Key'
+ alt_name: ''
+-
+ id: ftl
+ name: 'FTL Games'
+ alt_name: ''
+-
+ id: funcom
+ name: Funcom
+ alt_name: ''
+-
+ id: funhouse
+ name: 'Funhouse Design'
+ alt_name: ''
+-
+ id: gotgame
+ name: 'Got Game Entertainment'
+ alt_name: ''
+-
+ id: graydesign
+ name: 'Gray Design Associates'
+ alt_name: ''
+-
+ id: gt
+ name: 'GT Interactive'
+ alt_name: ''
+-
+ id: he
+ name: 'Humongous Entertainment'
+ alt_name: ''
+-
+ id: hungry
+ name: 'Hungry Software'
+ alt_name: ''
+-
+ id: infocom
+ name: Infocom
+ alt_name: ''
+-
+ id: interplay
+ name: 'Interplay Productions'
+ alt_name: ''
+-
+ id: kemco
+ name: Kemco
+ alt_name: ''
+-
+ id: krumbukt
+ name: Krumbukt
+ alt_name: ''
+-
+ id: lankhor
+ name: Lankhor
+ alt_name: ''
+-
+ id: lkavalon
+ name: "L.K.\_Avalon"
+ alt_name: ''
+-
+ id: local
+ name: 'Local Studio'
+ alt_name: ''
+-
+ id: lucasarts
+ name: LucasArts
+ alt_name: ''
+-
+ id: macromedia
+ name: Macromedia
+ alt_name: ''
+-
+ id: maxis
+ name: Maxis
+ alt_name: ''
+-
+ id: mdna
+ name: 'MDNA Games'
+ alt_name: ''
+-
+ id: merit
+ name: 'Merit Studios'
+ alt_name: ''
+-
+ id: merscom
+ name: Merscom
+ alt_name: ''
+-
+ id: metropolis
+ name: 'Metropolis Software House'
+ alt_name: ''
+-
+ id: microprose
+ name: MicroProse
+ alt_name: ''
+-
+ id: microsoft
+ name: Microsoft
+ alt_name: ''
+-
+ id: mindscape
+ name: Mindscape
+ alt_name: ''
+-
+ id: mpe
+ name: 'MP Entertainment'
+ alt_name: ''
+-
+ id: mythos
+ name: 'Mythos Software'
+ alt_name: ''
+-
+ id: nayma
+ name: 'Nayma Software'
+ alt_name: ''
+-
+ id: nemoria
+ name: 'Nemoria Entertainment'
+ alt_name: ''
+-
+ id: neverhood
+ name: 'The Neverhood, Inc.'
+ alt_name: ''
+-
+ id: nintendo
+ name: Nintendo
+ alt_name: ''
+-
+ id: nobilis
+ name: Nobilis
+ alt_name: ''
+-
+ id: nosense
+ name: NoSense
+ alt_name: ''
+-
+ id: nwc
+ name: 'New World Computing'
+ alt_name: ''
+-
+ id: origin
+ name: 'Origin Systems'
+ alt_name: ''
+-
+ id: pavo
+ name: 'Pavo Entertainment'
+ alt_name: ''
+-
+ id: pendulo
+ name: 'Péndulo Studios'
+ alt_name: ''
+-
+ id: perfect
+ name: 'Perfect Entertainment'
+ alt_name: ''
+-
+ id: piranha
+ name: 'Piranha Interactive Publishing'
+ alt_name: ''
+-
+ id: playmates
+ name: 'Playmates Interactive Entertainment'
+ alt_name: ''
+-
+ id: presto
+ name: 'Presto Studios'
+ alt_name: ''
+-
+ id: psygnosis
+ name: Psygnosis
+ alt_name: ''
+-
+ id: rainbird
+ name: 'Rainbird Software'
+ alt_name: ''
+-
+ id: rebellion
+ name: Rebellion
+ alt_name: ''
+-
+ id: revistronic
+ name: Revistronic
+ alt_name: ''
+-
+ id: revolution
+ name: Revolution
+ alt_name: ''
+-
+ id: riki
+ name: 'Riki Computer Games'
+ alt_name: ''
+-
+ id: rootfix
+ name: 'RootFix Entertainment'
+ alt_name: ''
+-
+ id: sacis
+ name: Sacis
+ alt_name: ''
+-
+ id: sanctuary
+ name: 'Sanctuary Woods'
+ alt_name: ''
+-
+ id: sandcastle
+ name: Sandcastle
+ alt_name: ''
+-
+ id: sega
+ name: Sega
+ alt_name: ''
+-
+ id: sierra
+ name: Sierra
+ alt_name: 'Sierra On-Line'
+-
+ id: skif
+ name: S.K.I.F.
+ alt_name: ''
+-
+ id: softgold
+ name: Softgold
+ alt_name: ''
+-
+ id: sony
+ name: Sony
+ alt_name: ''
+-
+ id: terra
+ name: 'Terra Nova Development'
+ alt_name: ''
+-
+ id: thorsoft
+ name: 'Thorsoft of Letchworth'
+ alt_name: ''
+-
+ id: tomahawk
+ name: Tomahawk
+ alt_name: ''
+-
+ id: tommo
+ name: Tommo
+ alt_name: ''
+-
+ id: traktor
+ name: 'Traktor Games'
+ alt_name: ''
+-
+ id: trilobyte
+ name: Trilobyte
+ alt_name: ''
+-
+ id: tsunami
+ name: 'Tsunami Games'
+ alt_name: ''
+-
+ id: ubisoft
+ name: Ubisoft
+ alt_name: ''
+-
+ id: viacom
+ name: Viacom
+ alt_name: ''
+-
+ id: viperante
+ name: Viperante
+ alt_name: ''
+-
+ id: virgin
+ name: 'Virgin Interactive'
+ alt_name: ''
+-
+ id: westwood
+ name: 'Westwood Studios'
+ alt_name: ''
+-
+ id: zojoi
+ name: Zojoi
+ alt_name: ''
+-
+ id: anne
+ name: 'Anne Carrière'
+ alt_name: ''
+-
+ id: cpcc
+ name: 'California Pacific Computer Company'
+ alt_name: ''
+-
+ id: icom
+ name: 'ICOM Simulations'
+ alt_name: ''
+-
+ id: idigicon
+ name: Idigicon
+ alt_name: ''
+-
+ id: igc
+ name: 'The Illusions Gaming Company'
+ alt_name: ''
+-
+ id: indiesquish
+ name: IndieSquish
+ alt_name: ''
+-
+ id: infogrames
+ name: Infogrames
+ alt_name: ''
+-
+ id: ibi
+ name: 'Interactive Binary Illusions'
+ alt_name: ''
+-
+ id: interlink
+ name: 'Interlink Planning'
+ alt_name: ''
+-
+ id: interplay
+ name: Interplay
+ alt_name: ''
+-
+ id: invention
+ name: Invention
+ alt_name: ''
+-
+ id: ips
+ name: 'IPS Computer Group'
+ alt_name: ''
+-
+ id: israndom
+ name: 'IsRandomRandom Games'
+ alt_name: ''
+-
+ id: jbush
+ name: 'JBush Productions'
+ alt_name: ''
+-
+ id: kirin
+ name: 'Kirin Entertainment'
+ alt_name: ''
+-
+ id: kompart
+ name: 'Kompart UK'
+ alt_name: ''
+-
+ id: lacemamba
+ name: 'Lace Mamba Global'
+ alt_name: ''
+-
+ id: tlc
+ name: 'The Learning Company'
+ alt_name: ''
+-
+ id: level9
+ name: 'Level 9 Computing'
+ alt_name: ''
+-
+ id: lezard
+ name: 'Lezard Interactive'
+ alt_name: ''
+-
+ id: linuxgp
+ name: 'Linux Game Publishing'
+ alt_name: ''
+-
+ id: lucyworlds
+ name: 'Lucy''s Worlds'
+ alt_name: ''
+-
+ id: mac
+ name: MAC
+ alt_name: ''
+-
+ id: magnetic
+ name: 'Magnetic Scrolls'
+ alt_name: ''
+-
+ id: mit
+ name: 'Massachusetts Institute of Technology'
+ alt_name: ''
+-
+ id: maximyz
+ name: Maximyz
+ alt_name: ''
+-
+ id: mif2000
+ name: Mif2000
+ alt_name: ''
+-
+ id: millennium
+ name: 'Millennium Interactive Ltd.'
+ alt_name: ''
+-
+ id: mindfactory
+ name: MindFactory
+ alt_name: ''
+-
+ id: mojotouch
+ name: MojoTouch
+ alt_name: ''
+-
+ id: molimerx
+ name: 'Molimerx Ltd.'
+ alt_name: ''
+-
+ id: monkeystone
+ name: 'Monkeystone Games'
+ alt_name: ''
+-
+ id: mpe
+ name: 'MP Entertainment'
+ alt_name: ''
+-
+ id: nacht
+ name: 'Nacht und Nebel'
+ alt_name: ''
+-
+ id: newgen
+ name: 'New Generation Software'
+ alt_name: ''
+-
+ id: nihilis
+ name: NiHiLiS
+ alt_name: ''
+-
+ id: offstudio
+ name: 'Off Studio'
+ alt_name: ''
+-
+ id: palace
+ name: 'Palace Software'
+ alt_name: ''
+-
+ id: petagame
+ name: PetaGame
+ alt_name: ''
+-
+ id: philips
+ name: 'Philips Interactive Media'
+ alt_name: ''
+-
+ id: pipe
+ name: 'Pipe Studio'
+ alt_name: ''
+-
+ id: pnc
+ name: 'PNC Narratives'
+ alt_name: ''
+-
+ id: pony
+ name: 'Pony Canyon'
+ alt_name: ''
+-
+ id: prograph
+ name: 'Prograph Research'
+ alt_name: ''
+-
+ id: rpelect
+ name: 'R&P Electronic Media'
+ alt_name: ''
+-
+ id: raecreation
+ name: 'Raecreations Software'
+ alt_name: ''
+-
+ id: rockstarv
+ name: 'Rockstar Vienna'
+ alt_name: ''
+-
+ id: rskent
+ name: 'RSK Entertainment'
+ alt_name: ''
+-
+ id: rudowski
+ name: 'Rudowski Brothers'
+ alt_name: ''
+-
+ id: reunionmusee
+ name: 'Réunion des Musées Nationaux'
+ alt_name: ''
+-
+ id: siliconbeach
+ name: 'Silicon Beach Software'
+ alt_name: ''
+-
+ id: skaldic
+ name: 'Skaldic Games'
+ alt_name: ''
+-
+ id: smokingcar
+ name: 'Smoking Car Productions'
+ alt_name: ''
+-
+ id: softwarefarm
+ name: 'The Software Farm'
+ alt_name: ''
+-
+ id: spectrumholo
+ name: 'Spectrum HoloByte'
+ alt_name: ''
+-
+ id: spreadcamp
+ name: Spreadcamp
+ alt_name: ''
+-
+ id: squinky
+ name: Squinky
+ alt_name: ''
+-
+ id: starbyte
+ name: 'Starbyte Software'
+ alt_name: ''
+-
+ id: usgold
+ name: 'U.S. Gold'
+ alt_name: ''
+-
+ id: unitedpixtures
+ name: 'United Pixtures'
+ alt_name: ''
+-
+ id: victokai
+ name: 'Vic Tokai'
+ alt_name: ''
+-
+ id: vicarious
+ name: 'Vicarious Visions'
+ alt_name: ''
+-
+ id: wanadoo
+ name: 'Wanadoo Edition'
+ alt_name: ''
+-
+ id: warner
+ name: 'Warner Interactive'
+ alt_name: ''
+-
+ id: wyrmkeep
+ name: 'The Wyrmkeep Entertainment'
+ alt_name: ''
+-
+ id: zombie
+ name: 'Zombie Studios'
+ alt_name: ''
+-
+ id: hueforest
+ name: 'Hue Forest Entertainment'
+ alt_name: ''
+-
+ id: trendmasters
+ name: Trendmasters
+ alt_name: ''
+-
+ id: artbox
+ name: 'Art in the Box'
+ alt_name: ''
+-
+ id: mpslabs
+ name: 'MPS Labs'
+ alt_name: ''
+-
+ id: livingbooks
+ name: 'Living Books'
+ alt_name: ''
+-
+ id: kyilkhor
+ name: 'Kyilkhor Creation'
+ alt_name: ''
+-
+ id: wanderlust
+ name: 'Wanderlust Interactive'
+ alt_name: ''
+-
+ id: tsdinge
+ name: 'Thomas & Steffen Dinge'
+ alt_name: ''
+-
+ id: crystaldynamics
+ name: 'Crystal Dynamics'
+ alt_name: ''
+-
+ id: sebastianronsse
+ name: 'Sebastian Ronsse'
+ alt_name: ''
+-
+ id: glk
+ name: 'Interactive Fiction'
+ alt_name: ''
+-
+ id: unknown
+ name: 'Unknown Company'
+ alt_name: ''
diff --git a/data/en/compatibility.yaml b/data/en/compatibility.yaml
index 02c0923f..1741f4c0 100644
--- a/data/en/compatibility.yaml
+++ b/data/en/compatibility.yaml
@@ -1,3507 +1,3802 @@
# This is a generated file, please do not edit manually
----
-- id: atlantis
- support: good
- notes: '- Music loud on some systems, run with -m30 to lower music volume'
- since_version: 0.1.0
- stable_platforms: dos
- unstable_platforms: fmtowns,mac,amiga
-- id: ft
- support: broken
- notes: 'Somewhat playable with #define FULL_THROTTLE'
- since_version: 0.1.0
- stable_platforms: dos
- unstable_platforms: ""
-- id: indy3
- support: broken
- notes: '- The intro freezes on the LucasArts logo - hit escape to proceed - Actors
- not visible, and an error with walkboxes makes it impossible to walk to anything
- - Inventory scrolling not implemented, making it impossible to carry more than
- 4 objects at once - Missing/Incorrect SCUMM opcodes cause occasional crashes'
- since_version: 0.1.0
- stable_platforms: dos
- unstable_platforms: atarist,mac,fmtowns,amiga
-- id: loom
- support: broken
- notes: '- Intro will crash ScummVM at the end, so hit escape to bypass it - Game
- has graphic issues - May crash due to unimplemented opcodes'
- since_version: 0.1.0
- stable_platforms: dos
- unstable_platforms: pce,mac,fmtowns
-- id: monkey
- support: broken
- notes: '- VGA Floppy version not supported'
- since_version: 0.1.0
- stable_platforms: dos
- unstable_platforms: segacd,fmtowns,mac,atarist,amiga
-- id: monkey2
- support: excellent
- notes: ""
- since_version: 0.1.0
- stable_platforms: dos
- unstable_platforms: fmtowns,mac,amiga
-- id: samnmax
- support: broken
- notes: '- Inventory is not resorted after visiting the carnival lost & found - MIDI
- music requires SAMNMAX to be defined'
- since_version: 0.1.0
- stable_platforms: dos
- unstable_platforms: ""
-- id: tentacle
- support: excellent
- notes: '- Maniac Mansion isn''t playable on Ed''s computer. To play the included
- copy, use ''Add Game'' from the main ScummVM launcher and select the MANIAC directory
- inside the DOTT game directory'
- since_version: 0.1.0
- stable_platforms: dos
- unstable_platforms: ""
-- id: zak
- support: broken
- notes: '- The intro freezes on the LucasArts logo - hit escape to proceed - Actors
- not visible, and an error with walkboxes makes it impossible to walk to anything'
- since_version: 0.1.0
- stable_platforms: dos,fmtowns
- unstable_platforms: atarist,c64,amiga
-- id: simon1
- support: excellent
- notes: ""
- since_version: 0.2.0
- stable_platforms: win
- unstable_platforms: amiga,amigacd32,acorn,dos
-- id: atlantis
- support: excellent
- notes: '- Music loud on some systems, run with -m30 to lower music volume'
- since_version: 0.2.0
- stable_platforms: dos
- unstable_platforms: fmtowns,mac,amiga
-- id: comi
- support: broken
- notes: '- Not implemented yet. ScummVM doesn''t understand new-style MAXS block,
- among other things'
- since_version: 0.2.0
- stable_platforms: win
- unstable_platforms: ""
-- id: dig
- support: broken
- notes: '- Freezes occasionally due to actors not walking correctly - No in-game
- music, and some animations play incorrectly - Crashes due to missing SCUMM opcodes'
- since_version: 0.2.0
- stable_platforms: dos
- unstable_platforms: ""
-- id: ft
- support: bugged
- notes: '- Game is missing action sequences - Music is not continuous, and may pause,
- restart, and otherwise act oddly - SMUSH audio (movie cutscenes) is a lot quieter
- than in-game voice, which is abnormally loud - Lack of INSANE subsystem prevents
- action sequences, which skips a substantial portion of the game - Derby scene
- is only properly controllable using the mouse'
- since_version: 0.2.0
- stable_platforms: dos
- unstable_platforms: ""
-- id: ft
- support: broken
- notes: '- No in-game music, and some animations play incorrectly - Crashes due to
- missing SCUMM opcodes'
- since_version: 0.2.0
- stable_platforms: dos
- unstable_platforms: ""
-- id: indy3
- support: broken
- notes: '- Inventory scrolling not implemented, making it impossible to carry more
- than 4 objects at once - Missing/Incorrect SCUMM opcodes cause occasional crashes'
- since_version: 0.2.0
- stable_platforms: dos
- unstable_platforms: atarist,mac,fmtowns,amiga
-- id: loom
- support: bugged
- notes: '- CD music and voices are not always in perfect sync with cutscenes'
- since_version: 0.2.0
- stable_platforms: dos
- unstable_platforms: pce,mac,fmtowns
-- id: monkey
- support: bugged
- notes: '- EGA version not supported'
- since_version: 0.2.0
- stable_platforms: dos
- unstable_platforms: segacd,fmtowns,mac,atarist,amiga
-- id: samnmax
- support: excellent
- notes: '- Some mini games may not work'
- since_version: 0.2.0
- stable_platforms: dos
- unstable_platforms: ""
-- id: zak
- support: bugged
- notes: '- DOS EGA is not supported - No music or sound effects'
- since_version: 0.2.0
- stable_platforms: dos,fmtowns
- unstable_platforms: atarist,c64,amiga
-- id: simon1
- support: excellent
- notes: '- Minor graphical glitches when using ring - Minor graphical glitch with
- Sordid statue after leaving room - DOS issues - Freezes briefly when Swampling
- leaves his house - Freezes briefly when talking to demons in Sordid''s Tower -
- No inventory scrolling arrows shown, can still move around inventory though'
- since_version: 0.3.0
- stable_platforms: acorn,dos,win
- unstable_platforms: amiga,amigacd32
-- id: simon2
- support: excellent
- notes: '- Various minor graphical glitches - Text in Copy Protection screen is only
- shown for short time - Freezes briefly when Pirate Captain is talking to Mate,
- when Simon tries to escape - Some music is missing or wrong'
- since_version: 0.3.0
- stable_platforms: dos,win
- unstable_platforms: amiga,mac
-- id: dig
- support: good
- notes: ""
- since_version: 0.3.0
- stable_platforms: dos,steam
- unstable_platforms: ""
-- id: indy3
- support: broken
- notes: '- Some major crashes may occur in the catacombs - Indiana may be able to
- walk in odd places, in some rooms - No music or sound effects in VGA version
- - EGA version not supported'
- since_version: 0.3.0
- stable_platforms: dos
- unstable_platforms: atarist,mac,fmtowns,amiga
-- id: loom
- support: bugged
- notes: '- EGA version not supported'
- since_version: 0.3.0
- stable_platforms: dos
- unstable_platforms: pce,mac,fmtowns
-- id: monkey
- support: bugged
- notes: '- No sound effects - No music looping in VGA version - EGA version is not
- implemented - Copy protection screen will show, but game crashes shortly afterwards. -
- Graphics decoders and SCUMM opcodes not implimented yet'
- since_version: 0.3.0
- stable_platforms: dos
- unstable_platforms: segacd,fmtowns,mac,atarist,amiga
-- id: samnmax
- support: excellent
- notes: '- Highway subgame doesn''t behave correctly'
- since_version: 0.3.0
- stable_platforms: dos
- unstable_platforms: ""
-- id: simon1
- support: excellent
- notes: '- Minor graphical glitches when using ring - Minor graphical glitch with
- Sordid statue after leaving room - Amiga issues: - All graphics are decoded
- incorrectly - pkd compression format is unknown (CD) - No music - DOS issues -
- Freezes briefly when Swampling leaves his house - Freezes briefly when talking
- to demons in Sordid''s Tower - No inventory scrolling arrows shown, can still
- move around inventory though'
- since_version: 0.4.0
- stable_platforms: acorn,dos,win
- unstable_platforms: amiga,amigacd32
-- id: simon2
- support: excellent
- notes: '- Minor graphical glitch when giving items to baby - Text in Copy Protection
- screen is only shown for short time - Freezes briefly when Pirate Captain is talking
- to Mate, when Simon tries to escape - Some music is missing or wrong - F10 key
- animation is different in Amiga & Macintosh versions'
- since_version: 0.4.0
- stable_platforms: dos,amiga,mac,win
- unstable_platforms: ""
-- id: comi
- support: bugged
- notes: '- Ship-to-ship is broken and several graphical glitches are present'
- since_version: 0.4.0
- stable_platforms: win
- unstable_platforms: ""
-- id: fbear
- support: broken
- notes: '- Various errors and asserts that prevent the game from being finishable -
- talkie data not synced/properly implemented'
- since_version: 0.4.0
- stable_platforms: 3do,dos,win
- unstable_platforms: mac
-- id: fbpack
- support: bugged
- notes: '- Mini games seem to have various problems - Reversi/Go Fish/Lines and
- Boxes: o6_actorOps: case 218 graphics glitches - Coloring/Tangrams: Error(6:209:0x40D5):
- Invalid opcode ''db'' (readFile) '
- since_version: 0.4.0
- stable_platforms: 3do,dos
- unstable_platforms: ""
-- id: funpack
- support: broken
- notes: '- Mini games seem to have various problems - Puzzle blocks/Pinball/Remember/Cheese
- King/Tic-Tac-Toe: Works but colour isn''t set properly so game is black and white -
- Checkers: The checkers have some graphical glitches (actorOps case 218) - talkie
- data not synced/properly implemented'
- since_version: 0.4.0
- stable_platforms: 3do,dos
- unstable_platforms: ""
-- id: indy3
- support: good
- notes: '- Indiana may be able to walk in odd places, in some rooms - No sound effects
- in VGA version - No music or sound effects in EGA version'
- since_version: 0.4.0
- stable_platforms: dos
- unstable_platforms: atarist,mac,fmtowns,amiga
-- id: loom
- support: bugged
- notes: '- No music or sound effects in EGA version'
- since_version: 0.4.0
- stable_platforms: dos
- unstable_platforms: pce,mac,fmtowns
-- id: maniac
- support: broken
- notes: '- Enhanced version displays the initial character selection screen. Neither
- input nor text are implemented currently, so kids cannot be selected - Internal
- functionality (walkboxes, text, input) are missing - SCUMM v2 opcodes not completely
- implemented yet'
- since_version: 0.4.0
- stable_platforms: dos
- unstable_platforms: apple2,c64,nes,mac,atarist,amiga
-- id: monkey
- support: good
- notes: '- No sound effects'
- since_version: 0.4.0
- stable_platforms: dos
- unstable_platforms: segacd,fmtowns,mac,atarist,amiga
-- id: pass
- support: bugged
- notes: '- No subtitles in indy3 demo - No sound effects'
- since_version: 0.4.0
- stable_platforms: dos
- unstable_platforms: ""
-- id: puttmoon
- support: broken
- notes: '- Fails an AKOS related assertion shortly after starting - talkie data
- not synced/properly implemented - cursor doesn''t turn to arrow on the right hand
- side of the screen in the first room in the demo'
- since_version: 0.4.0
- stable_platforms: dos
- unstable_platforms: mac
-- id: puttputt
- support: broken
- notes: '- Fails to start after looking for seemingly non existent object - talkie
- data not synced/properly implemented'
- since_version: 0.4.0
- stable_platforms: 3do,dos,win
- unstable_platforms: mac
-- id: zak
- support: broken
- notes: '- DOS EGA - The introduction sequence runs, and the game can be started
- by escaping past it. However neither text nor input are implemented. - Internal
- functionality (walkboxes, text, input) are missing - SCUMM v2 opcodes not completely
- implemented yet - FM-TOWNS - No sound effect looping'
- since_version: 0.4.0
- stable_platforms: dos,fmtowns
- unstable_platforms: atarist,c64,amiga
-- id: sky
- support: broken
- notes: '- Only the introduction works'
- since_version: 0.4.0
- stable_platforms: dos
- unstable_platforms: amiga
-- id: simon2
- support: excellent
- notes: '- Minor graphical glitch when giving items to baby - Text in Copy Protection
- screen is only shown for short time - Freezes briefly when Pirate Captain is talking
- to Mate, when Simon tries to escape - F10 key animation is different in Amiga
- & Macintosh versions'
- since_version: 0.4.1
- stable_platforms: dos,amiga,mac,win
- unstable_platforms: ""
-- id: maniac
- support: bugged
- notes: '- No music or sound effects - Enhanced version runs, although in-game there
- are still many things wrong'
- since_version: 0.4.1
- stable_platforms: dos
- unstable_platforms: apple2,c64,nes,mac,atarist,amiga
-- id: zak
- support: bugged
- notes: '- Classic PC version does not start, due to script problems - Classic PC
- version actor costumes are broken, resulting in random crashes - No music or
- sound effects in DOS version - FM-TOWNS Kanji version not supported - FM-TOWNS
- No sound effect looping'
- since_version: 0.4.1
- stable_platforms: dos,fmtowns
- unstable_platforms: atarist,c64,amiga
-- id: simon2
- support: excellent
- notes: '- Text in Copy Protection screen is only shown for short time - Freezes
- briefly when Pirate Captain is talking to Mate, when Simon tries to escape - F10
- key animation is different in Amiga & Macintosh versions'
- since_version: 0.5.0
- stable_platforms: dos,amiga,mac,win
- unstable_platforms: ""
-- id: atlantis
- support: excellent
- notes: '- Loading of original instrument samples for Amiga version not implemented,
- so music differs from original interpreter - Music loud on some systems, run with
- -m30 to lower music volume - Various graphical glitches with Amiga version - No
- sound effects with Amiga version'
- since_version: 0.5.0
- stable_platforms: amiga,dos
- unstable_platforms: fmtowns,mac
-- id: indy3
- support: good
- notes: '- FM-TOWNS Kanji version not supported - FM-TOWNS Sounds with partial loops,
- loop the whole sample instead of just that portion - Indiana may be able to walk
- in odd places, in some rooms - No music with Amiga version - No sound effect
- looping with Amiga version - No sound effects in VGA version'
- since_version: 0.5.0
- stable_platforms: amiga,dos,fmtowns
- unstable_platforms: atarist,mac
-- id: loom
- support: good
- notes: '- No music with Amiga version - No sound effect looping with Amiga version'
- since_version: 0.5.0
- stable_platforms: amiga,dos
- unstable_platforms: pce,mac,fmtowns
-- id: maniac
- support: bugged
- notes: '- Enhanced PC version is completable - Classic PC version actor costumes
- are broken, resulting in random crashes - No music or sound effects with Amiga
- and Classic PC versions'
- since_version: 0.5.0
- stable_platforms: amiga,dos
- unstable_platforms: apple2,c64,nes,mac,atarist
-- id: monkey
- support: good
- notes: '- No music or sound effects in the Amiga version - No sound effects'
- since_version: 0.5.0
- stable_platforms: amiga,dos
- unstable_platforms: segacd,fmtowns,mac,atarist
-- id: monkey2
- support: excellent
- notes: '- Loading of original instrument samples for Amiga version not implemented,
- so music differs from original interpreter. - No sound effects with Amiga version
- - Various graphical glitches with Amiga version'
- since_version: 0.5.0
- stable_platforms: amiga,dos
- unstable_platforms: fmtowns,mac
-- id: zak
- support: bugged
- notes: '- FM-TOWNS Kanji version not supported - FM-TOWNS Sounds with partial loops,
- loop the whole sample instead of just that portion - Classic PC version does not
- start, due to script problems - Classic PC version actor costumes are broken,
- resulting in random crashes - No music or sound effects with Amiga'
- since_version: 0.5.0
- stable_platforms: amiga,dos,fmtowns
- unstable_platforms: atarist,c64
-- id: sky
- support: bugged
- notes: '- Requires the sky.cpt resource file to be placed in the game directory
- - Random crashes have been reported - Floppy demos aren''t supported - The following
- bugs are present in the original game and can''t be fixed: - The voice files
- for some sentences are missing. - This is especially noticeable in the court-
- and Mrs. Piermont sequence. - The fonts for the LINC terminal are partially
- incorrect and the text sometimes passes the screen borders - Special characters
- for french and italian subtitles are incorrect sometimes'
- since_version: 0.5.0
- stable_platforms: dos
- unstable_platforms: amiga
-- id: simon1
- support: excellent
- notes: '- Acorn Disk version not supported - Minor palette glitches in Amiga versions'
- since_version: 0.6.0
- stable_platforms: acorn,dos,win
- unstable_platforms: amiga
-- id: simon2
- support: excellent
- notes: '- F10 key animation is different in Amiga & Macintosh versions'
- since_version: 0.6.0
- stable_platforms: dos,amiga,mac,win
- unstable_platforms: ""
-- id: queen
- support: good
- notes: '- Some versions may require the queen.tbl resource file to be placed in
- the game directory. This is not required for the freeware releases.'
- since_version: 0.6.0
- stable_platforms: dos
- unstable_platforms: amiga
-- id: atlantis
- support: excellent
- notes: '- FM-TOWNS Kanji version requires the FM-TOWNS Font ROM - Loading of original
- instrument samples for Amiga version not implemented, so music differs from original
- interpreter - Music loud on some systems, run with -m30 to lower music volume
- - Various graphical glitches with Amiga version'
- since_version: 0.6.0
- stable_platforms: amiga,dos,fmtowns,mac
- unstable_platforms: ""
-- id: fbear
- support: good
- notes: '- Piano sounds aren''t the correct pitch in DOS version - Cursors aren''t
- scaled correctly - Decorations on birthday cake aren''t remembered - Several sound
- effects are missing'
- since_version: 0.6.0
- stable_platforms: 3do,dos,win
- unstable_platforms: mac
-- id: fbpack
- support: bugged
- notes: '- Mini games seem to have various problems - Reversi/Go Fish/Lines and
- Boxes: o6_actorOps: case 218 graphics glitches - Coloring: Painting has no effect -
- Tangrams: Can only use central tangram piece - Talkie data not synced/properly
- implemented'
- since_version: 0.6.0
- stable_platforms: 3do,dos
- unstable_platforms: ""
-- id: ft
- support: bugged
- notes: '- Music is not continuous, and may pause, restart, and otherwise act oddly
- - SMUSH audio (movie cutscenes) is a lot quieter than in-game voice, which is
- abnormally loud'
- since_version: 0.6.0
- stable_platforms: dos
- unstable_platforms: ""
-- id: funpack
- support: broken
- notes: '- Mini games seem to have various problems - Cheese King: Triggers an
- assertion - Checkers: The checkers have some graphical glitches (actorOps case
- 218)'
- since_version: 0.6.0
- stable_platforms: 3do,dos
- unstable_platforms: ""
-- id: indy3
- support: good
- notes: '- There is no support for the Macintosh interface - FM-TOWNS Kanji version
- not supported - Indiana may be able to walk in odd places, in some rooms - Atari
- ST and Mac versions require pcjr or pcspk music driver'
- since_version: 0.6.0
- stable_platforms: amiga,atarist,dos,fmtowns,mac
- unstable_platforms: ""
-- id: loom
- support: excellent
- notes: '- The Roland update from LucasArts is required for MIDI support - No music
- or sound effects in the Macintosh version - Mac version crashes after copy protection
- screen - There is no support for the Macintosh interface - Fades are seemingly
- different - Text palette sometimes incorrect - Distaff occasionally pink - Kanji
- version isn''t supported - Use boot parameter to choose difficulty: - 0 practice
- (default) - 1 standard - 2 expert'
- since_version: 0.6.0
- stable_platforms: amiga,atarist,dos,fmtowns,mac
- unstable_platforms: pce
-- id: maniac
- support: good
- notes: '- Minor graphical glitches with actors in classic verison'
- since_version: 0.6.0
- stable_platforms: amiga,atarist,dos,mac
- unstable_platforms: apple2,c64,nes
-- id: monkey
- support: excellent
- notes: '- The Roland update from LucasArts is required for MIDI support in the EGA
- version - Dialogue choices in the SegaCD version can be selected with 6 (up) 7
- (down) or mousewheel, with mouse button or number to select - No music or sound
- effects in the Amiga version - No sound effects in the SegaCD version'
- since_version: 0.6.0
- stable_platforms: amiga,atarist,dos,fmtowns,mac,segacd
- unstable_platforms: ""
-- id: monkey2
- support: excellent
- notes: '- Demo version often crashes due to missing resources, since it was never
- meant to be playable - No support for playing back the recorded file of gameplay
- in demo version - FM-TOWNS Kanji version requires the FM-TOWNS Font ROM - Loading
- of original instrument samples for Amiga version not implemented, so music differs
- from original interpreter. - Various graphical glitches with Amiga version'
- since_version: 0.6.0
- stable_platforms: amiga,dos,fmtowns,mac
- unstable_platforms: ""
-- id: pass
- support: excellent
- notes: ""
- since_version: 0.6.0
- stable_platforms: dos
- unstable_platforms: ""
-- id: puttmoon
- support: broken
- notes: '- Fails an AKOS related assertion shortly after starting - Creature behind
- garage door dissappears'
- since_version: 0.6.0
- stable_platforms: dos
- unstable_platforms: mac
-- id: puttputt
- support: good
- notes: '- Minor graphical glitches when cars come out of their garages on streets
- - Some sound effects missing'
- since_version: 0.6.0
- stable_platforms: 3do,dos,win
- unstable_platforms: mac
-- id: zak
- support: good
- notes: '- FM-TOWNS Kanji version not supported - Minor graphical glitches with actors
- in classic verison - No music or sound effects in the Commodore 64 version - Several
- sound effects buggy or missing in Amiga version'
- since_version: 0.6.0
- stable_platforms: amiga,atarist,c64,dos,fmtowns
- unstable_platforms: ""
-- id: sky
- support: excellent
- notes: '- Requires the sky.cpt resource file to be placed in the game directory
- - Floppy demos aren''t supported - The following bugs are present in the original
- game and can''t be fixed: - The voice files for some sentences are missing. -
- This is especially noticeable in the court- and Mrs. Piermont sequence. - The
- fonts for the LINC terminal are partially incorrect and the text sometimes passes
- the screen borders - Special characters for french and italian subtitles are
- incorrect sometimes'
- since_version: 0.6.0
- stable_platforms: dos
- unstable_platforms: amiga
-- id: sword1
- support: good
- notes: ""
- since_version: 0.6.0
- stable_platforms: dos,win
- unstable_platforms: psx,mac
-- id: sword2
- support: good
- notes: ""
- since_version: 0.6.0
- stable_platforms: win
- unstable_platforms: psx
-- id: fbpack
- support: excellent
- notes: ""
- since_version: 0.6.1
- stable_platforms: 3do,dos
- unstable_platforms: ""
-- id: ft
- support: good
- notes: ""
- since_version: 0.6.1
- stable_platforms: dos
- unstable_platforms: ""
-- id: funpack
- support: broken
- notes: '- Mini games seem to have various problems - Cheese King: Triggers an
- assertion'
- since_version: 0.6.1
- stable_platforms: 3do,dos
- unstable_platforms: ""
-- id: loom
- support: excellent
- notes: '- The Roland update from LucasArts is required for MIDI support - No music
- or sound effects in the Macintosh version - There is no support for the Macintosh
- interface - Fades are seemingly different - Text palette sometimes incorrect
- - Distaff occasionally pink - Kanji version isn''t supported - Use boot parameter
- to choose difficulty: - 0 practice (default) - 1 standard - 2 expert'
- since_version: 0.6.1
- stable_platforms: amiga,atarist,dos,fmtowns
- unstable_platforms: pce,mac
-- id: puttputt
- support: good
- notes: '- Minor graphical glitches when cars come out of their garages on streets'
- since_version: 0.6.1
- stable_platforms: 3do,dos,win
- unstable_platforms: mac
-- id: simon2
- support: excellent
- notes: '- Only the default language (English) in Amiga & Macintosh versions is supported
- - F10 key animation is different in Amiga & Macintosh versions'
- since_version: 0.7.0
- stable_platforms: dos,amiga,mac,win
- unstable_platforms: ""
-- id: queen
- support: excellent
- notes: '- Some versions may require the queen.tbl resource file to be placed in
- the game directory. This is not required for the freeware releases.'
- since_version: 0.7.0
- stable_platforms: dos
- unstable_platforms: amiga
-- id: airport
- support: bugged
- notes: '- Settings aren''t saved - Various bugs & issues'
- since_version: 0.7.0
- stable_platforms: mac,win
- unstable_platforms: ""
-- id: atlantis
- support: excellent
- notes: '- FM-TOWNS Kanji version requires the FM-TOWNS Font ROM - Loading of original
- instrument samples for Amiga version not implemented, so music differs from original
- interpreter - Music loud on some systems, run with -m30 to lower music volume'
- since_version: 0.7.0
- stable_platforms: amiga,dos,fmtowns,mac
- unstable_platforms: ""
-- id: balloon
- support: bugged
- notes: '- Settings aren''t saved - Various bugs & issues'
- since_version: 0.7.0
- stable_platforms: mac,win
- unstable_platforms: ""
-- id: baseball2001
- support: broken
- notes: '- Demo version only - Only shows introduction'
- since_version: 0.7.0
- stable_platforms: mac,win
- unstable_platforms: ""
-- id: bluesabctime
- support: untested
- notes: '- Demo version only'
- since_version: 0.7.0
- stable_platforms: mac,win
- unstable_platforms: ""
-- id: chase
- support: broken
- notes: '- Only shows introduction'
- since_version: 0.7.0
- stable_platforms: mac,win
- unstable_platforms: ""
-- id: comi
- support: good
- notes: ""
- since_version: 0.7.0
- stable_platforms: win
- unstable_platforms: ""
-- id: dog
- support: bugged
- notes: '- Settings aren''t saved - Various bugs & issues'
- since_version: 0.7.0
- stable_platforms: mac,win
- unstable_platforms: ""
-- id: farm
- support: bugged
- notes: '- Settings aren''t saved - Various bugs & issues'
- since_version: 0.7.0
- stable_platforms: mac,win
- unstable_platforms: ""
-- id: fbear
- support: excellent
- notes: '- Piano sounds aren''t the correct pitch in DOS version - Cursors aren''t
- scaled correctly'
- since_version: 0.7.0
- stable_platforms: 3do,dos,win
- unstable_platforms: mac
-- id: football2002
- support: broken
- notes: '- Demo version only - Only shows introduction'
- since_version: 0.7.0
- stable_platforms: mac,win
- unstable_platforms: ""
-- id: freddi
- support: good
- notes: ""
- since_version: 0.7.0
- stable_platforms: mac,win
- unstable_platforms: ""
-- id: freddi2
- support: good
- notes: '- Minor graphical glitches - No songs'
- since_version: 0.7.0
- stable_platforms: mac,win
- unstable_platforms: ""
-- id: freddi3
- support: good
- notes: ""
- since_version: 0.7.0
- stable_platforms: mac,win
- unstable_platforms: ""
-- id: freddi4
- support: broken
- notes: '- No inventory controls - Various bugs & issues'
- since_version: 0.7.0
- stable_platforms: mac,win
- unstable_platforms: ""
-- id: freddicove
- support: broken
- notes: '- No inventory controls - Various bugs & issues'
- since_version: 0.7.0
- stable_platforms: mac,win
- unstable_platforms: ""
-- id: funpack
- support: excellent
- notes: ""
- since_version: 0.7.0
- stable_platforms: 3do,dos
- unstable_platforms: ""
-- id: indy3
- support: good
- notes: '- There is no support for the Macintosh interface - FM-TOWNS Kanji version
- requires the FM-TOWNS Font ROM - Indiana may be able to walk in odd places, in
- some rooms - Atari ST and Mac versions require pcjr or pcspk music driver'
- since_version: 0.7.0
- stable_platforms: amiga,atarist,dos,fmtowns,mac
- unstable_platforms: ""
-- id: jungle
- support: bugged
- notes: '- Settings aren''t saved - Various bugs & issues'
- since_version: 0.7.0
- stable_platforms: mac,win
- unstable_platforms: ""
-- id: loom
- support: excellent
- notes: '- The Roland update from LucasArts is required for MIDI support in the EGA
- version - No music or sound effects in the Macintosh version - There is no support
- for the Macintosh interface - FM-TOWNS Kanji version requires the FM-TOWNS Font
- ROM - Fades are seemingly different in the FM-TOWNS version - Text palette sometimes
- incorrect in the FM-TOWNS version - Distaff occasionally pink in the FM-TOWNS
- version - Use boot parameter to choose difficulty in the FM-TOWNS version: -
- 0 practice (default) - 1 standard - 2 expert'
- since_version: 0.7.0
- stable_platforms: amiga,atarist,dos,fmtowns
- unstable_platforms: pce,mac
-- id: lost
- support: broken
- notes: '- Only plays introduction'
- since_version: 0.7.0
- stable_platforms: mac,win
- unstable_platforms: ""
-- id: maniac
- support: good
- notes: ""
- since_version: 0.7.0
- stable_platforms: amiga,atarist,dos,mac
- unstable_platforms: apple2,c64,nes
-- id: maze
- support: bugged
- notes: '- Settings aren''t saved - Various bugs & issues'
- since_version: 0.7.0
- stable_platforms: mac,win
- unstable_platforms: ""
-- id: monkey
- support: excellent
- notes: '- The Roland update from LucasArts is required for MIDI support in the EGA
- version - Dialogue choices in the SegaCD version can be selected with 6 (up) 7
- (down) or mousewheel, with mouse button or number to select - No music or sound
- effects in the Amiga version'
- since_version: 0.7.0
- stable_platforms: amiga,atarist,dos,fmtowns,mac,segacd
- unstable_platforms: ""
-- id: mustard
- support: broken
- notes: '- Only shows introduction'
- since_version: 0.7.0
- stable_platforms: win
- unstable_platforms: mac
-- id: pajama
- support: good
- notes: '- No songs'
- since_version: 0.7.0
- stable_platforms: mac,win
- unstable_platforms: ""
-- id: pajama2
- support: good
- notes: '- Actor limbs sometimes aren''t visible'
- since_version: 0.7.0
- stable_platforms: mac,win
- unstable_platforms: ""
-- id: puttcircus
- support: broken
- notes: '- No inventory controls - Various bugs & issues'
- since_version: 0.7.0
- stable_platforms: mac,win
- unstable_platforms: ""
-- id: puttmoon
- support: excellent
- notes: ""
- since_version: 0.7.0
- stable_platforms: 3do,win,dos
- unstable_platforms: mac
-- id: puttputt
- support: good
- notes: '- Cursors aren''t scaled correctly in Windows version'
- since_version: 0.7.0
- stable_platforms: 3do,dos,win
- unstable_platforms: mac
-- id: puttrace
- support: broken
- notes: '- No inventory controls - Various bugs & issues'
- since_version: 0.7.0
- stable_platforms: mac,win
- unstable_platforms: ""
-- id: putttime
- support: good
- notes: '- Minor graphical glitches when talking in HE80 version - Inventory background
- and items are often not redrawn - No songs'
- since_version: 0.7.0
- stable_platforms: mac,win
- unstable_platforms: ""
-- id: puttzoo
- support: good
- notes: '- Minor graphical glitches when meeting Kenya in HE72 version - Inventory
- background and items are often not redrawn'
- since_version: 0.7.0
- stable_platforms: mac,win
- unstable_platforms: ""
-- id: socks
- support: bugged
- notes: '- Settings aren''t saved - Various bugs & issues'
- since_version: 0.7.0
- stable_platforms: mac,win
- unstable_platforms: ""
-- id: spyfox
- support: broken
- notes: '- No inventory controls - Various bugs & issues'
- since_version: 0.7.0
- stable_platforms: mac,win
- unstable_platforms: ""
-- id: spyfox2
- support: broken
- notes: '- No inventory controls - Various bugs & issues'
- since_version: 0.7.0
- stable_platforms: mac,win
- unstable_platforms: ""
-- id: spyozon
- support: broken
- notes: '- No inventory controls - Various bugs & issues'
- since_version: 0.7.0
- stable_platforms: mac,win
- unstable_platforms: ""
-- id: thinker1
- support: broken
- notes: '- Demo version only - Objects in mini games aren''t drawn'
- since_version: 0.7.0
- stable_platforms: mac,win
- unstable_platforms: ""
-- id: thinkerk
- support: bugged
- notes: '- Settings aren''t saved - Various bugs & issues'
- since_version: 0.7.0
- stable_platforms: mac,win
- unstable_platforms: ""
-- id: water
- support: bugged
- notes: '- Settings aren''t saved - Various bugs & issues'
- since_version: 0.7.0
- stable_platforms: mac,win
- unstable_platforms: ""
-- id: zak
- support: good
- notes: '- FM-TOWNS Kanji version requires the FM-TOWNS Font ROM - No music or sound
- effects in the Commodore 64 version - Several sound effects buggy or missing in
- Amiga version'
- since_version: 0.7.0
- stable_platforms: amiga,atarist,c64,dos,fmtowns
- unstable_platforms: ""
-- id: gob1
- support: good
- notes: '- Problems with music in the Macintosh version'
- since_version: 0.8.0
- stable_platforms: amiga,cdi,dos,mac,win
- unstable_platforms: ""
-- id: ite
- support: good
- notes: '- Occasional graphical glitches'
- since_version: 0.8.0
- stable_platforms: dos,linux,mac,macos,pc98,win
- unstable_platforms: amiga
-- id: activity
- support: excellent
- notes: ""
- since_version: 0.8.0
- stable_platforms: dos,mac,win
- unstable_platforms: ""
-- id: airport
- support: good
- notes: '- Minor graphical glitches'
- since_version: 0.8.0
- stable_platforms: mac,win
- unstable_platforms: ""
-- id: atlantis
- support: excellent
- notes: '- FM-TOWNS Kanji version requires the FM-TOWNS Font ROM - Loading of original
- instrument samples for Amiga version not implemented, so music differs from original
- interpreter.'
- since_version: 0.8.0
- stable_platforms: amiga,dos,fmtowns,mac
- unstable_platforms: ""
-- id: balloon
- support: good
- notes: '- Minor Graphical glitches'
- since_version: 0.8.0
- stable_platforms: mac,win
- unstable_platforms: ""
-- id: baseball
- support: bugged
- notes: '- Array out of bounds errors sometimes - Minor graphical glitches'
- since_version: 0.8.0
- stable_platforms: mac,win
- unstable_platforms: ""
-- id: chase
- support: good
- notes: ""
- since_version: 0.8.0
- stable_platforms: mac,win
- unstable_platforms: ""
-- id: dog
- support: good
- notes: ""
- since_version: 0.8.0
- stable_platforms: mac,win
- unstable_platforms: ""
-- id: farm
- support: good
- notes: '- Minor graphical glitches'
- since_version: 0.8.0
- stable_platforms: mac,win
- unstable_platforms: ""
-- id: football
- support: bugged
- notes: '- Freezes when computer chooses a player, when selecting teams - Minor graphical
- glitches'
- since_version: 0.8.0
- stable_platforms: mac,win
- unstable_platforms: ""
-- id: freddi2
- support: good
- notes: '- Minor graphical glitches - Animation isn''t synced during songs'
- since_version: 0.8.0
- stable_platforms: mac,win
- unstable_platforms: ""
-- id: freddi4
- support: good
- notes: ""
- since_version: 0.8.0
- stable_platforms: mac,win
- unstable_platforms: ""
-- id: freddicove
- support: good
- notes: ""
- since_version: 0.8.0
- stable_platforms: mac,win
- unstable_platforms: ""
-- id: indy3
- support: good
- notes: '- There is no support for the Macintosh interface - FM-TOWNS Kanji version
- requires the FM-TOWNS Font ROM'
- since_version: 0.8.0
- stable_platforms: amiga,atarist,dos,fmtowns,mac
- unstable_platforms: ""
-- id: jungle
- support: good
- notes: '- Minor graphical glitches'
- since_version: 0.8.0
- stable_platforms: mac,win
- unstable_platforms: ""
-- id: lost
- support: bugged
- notes: '- Minor graphical glitches'
- since_version: 0.8.0
- stable_platforms: mac,win
- unstable_platforms: ""
-- id: maniac
- support: good
- notes: '- Minor graphical glitches in NES version'
- since_version: 0.8.0
- stable_platforms: amiga,atarist,dos,nes,mac
- unstable_platforms: apple2,c64
-- id: maze
- support: good
- notes: ""
- since_version: 0.8.0
- stable_platforms: mac,win
- unstable_platforms: ""
-- id: mustard
- support: good
- notes: '- Minor graphical glitches with clouds'
- since_version: 0.8.0
- stable_platforms: win
- unstable_platforms: mac
-- id: pajama2
- support: good
- notes: ""
- since_version: 0.8.0
- stable_platforms: mac,win
- unstable_platforms: ""
-- id: pajama3
- support: broken
- notes: '- PlayStation 1 version doesn''t use SCUMM, so will never be supported -
- Minor graphical glitches - Sprites aren''t displayed during Ski Ride'
- since_version: 0.8.0
- stable_platforms: mac,win
- unstable_platforms: psx
-- id: puttcircus
- support: good
- notes: '- Magnifying glass doesn''t work'
- since_version: 0.8.0
- stable_platforms: mac,win
- unstable_platforms: ""
-- id: puttputt
- support: excellent
- notes: ""
- since_version: 0.8.0
- stable_platforms: 3do,dos,win
- unstable_platforms: mac
-- id: puttrace
- support: good
- notes: '- Animation isn''t synced during songs'
- since_version: 0.8.0
- stable_platforms: mac,win
- unstable_platforms: ""
-- id: putttime
- support: good
- notes: '- Minor graphical glitches when talking in HE80 version'
- since_version: 0.8.0
- stable_platforms: mac,win
- unstable_platforms: ""
-- id: puttzoo
- support: good
- notes: '- Minor graphical glitches when meeting Kenya in HE72 version'
- since_version: 0.8.0
- stable_platforms: ios,mac,win
- unstable_platforms: ""
-- id: samnmax
- support: excellent
- notes: ""
- since_version: 0.8.0
- stable_platforms: dos
- unstable_platforms: ""
-- id: socks
- support: good
- notes: ""
- since_version: 0.8.0
- stable_platforms: mac,win
- unstable_platforms: ""
-- id: spyfox
- support: good
- notes: '- Minor selection issue with buttons on paintings'
- since_version: 0.8.0
- stable_platforms: ios,mac,win
- unstable_platforms: ""
-- id: spyfox2
- support: good
- notes: ""
- since_version: 0.8.0
- stable_platforms: mac,win
- unstable_platforms: ""
-- id: spyozon
- support: broken
- notes: '- Need to guess the correct colors of Poodles''s fingernails - Various palette
- glitches - Asserts when looking at pearl'
- since_version: 0.8.0
- stable_platforms: mac,win
- unstable_platforms: ""
-- id: thinker1
- support: good
- notes: '- Need to use ESC when car is stuck in the smart star challenge'
- since_version: 0.8.0
- stable_platforms: mac,win
- unstable_platforms: ""
-- id: thinkerk
- support: good
- notes: ""
- since_version: 0.8.0
- stable_platforms: mac,win
- unstable_platforms: ""
-- id: water
- support: good
- notes: '- Minor Graphical glitches'
- since_version: 0.8.0
- stable_platforms: mac,win
- unstable_platforms: ""
-- id: fbear
- support: excellent
- notes: '- Piano sounds aren''t the correct pitch in DOS version'
- since_version: 0.8.1
- stable_platforms: 3do,dos,mac,win
- unstable_platforms: ""
-- id: freddi2
- support: good
- notes: '- Minor graphical glitches'
- since_version: 0.8.1
- stable_platforms: mac,win
- unstable_platforms: ""
-- id: thinkerk
- support: good
- notes: '- Minor graphical glitches'
- since_version: 0.8.1
- stable_platforms: mac,win
- unstable_platforms: ""
-- id: balloon
- support: good
- notes: ""
- since_version: 0.8.2
- stable_platforms: mac,win
- unstable_platforms: ""
-- id: pajama3
- support: good
- notes: '- PlayStation 1 version doesn''t use SCUMM, so will never be supported -
- Minor graphical glitches with dancing can in stomach'
- since_version: 0.8.2
- stable_platforms: mac,win
- unstable_platforms: psx
-- id: puttcircus
- support: good
- notes: ""
- since_version: 0.8.2
- stable_platforms: mac,win
- unstable_platforms: ""
-- id: puttmoon
- support: excellent
- notes: ""
- since_version: 0.8.2
- stable_platforms: 3do,mac,win,dos
- unstable_platforms: ""
-- id: puttputt
- support: excellent
- notes: ""
- since_version: 0.8.2
- stable_platforms: 3do,dos,mac,win
- unstable_platforms: ""
-- id: puttrace
- support: good
- notes: ""
- since_version: 0.8.2
- stable_platforms: mac,win
- unstable_platforms: ""
-- id: spyozon
- support: good
- notes: '- Need to guess the correct colors of Poodles''s fingernails - Various palette
- glitches'
- since_version: 0.8.2
- stable_platforms: mac,win
- unstable_platforms: ""
-- id: water
- support: good
- notes: ""
- since_version: 0.8.2
- stable_platforms: mac,win
- unstable_platforms: ""
-- id: feeble
- support: excellent
- notes: '- DOS version is demo only - Minor graphical glitches'
- since_version: 0.9.0
- stable_platforms: amiga,dos,mac,win
- unstable_platforms: ""
-- id: gob1
- support: excellent
- notes: '- Problems with music in the Macintosh version'
- since_version: 0.9.0
- stable_platforms: amiga,cdi,dos,mac,win
- unstable_platforms: ""
-- id: kyra1
- support: good
- notes: '- Requires the kyra.dat resource file to be placed in the game directory
- - MT-32 (MIDI) music and sfx are not supported - Occasional graphics glitches '
- since_version: 0.9.0
- stable_platforms: dos
- unstable_platforms: amiga,fmtowns
-- id: airport
- support: good
- notes: ""
- since_version: 0.9.0
- stable_platforms: mac,win
- unstable_platforms: ""
-- id: bluesbirthday
- support: bugged
- notes: ""
- since_version: 0.9.0
- stable_platforms: win
- unstable_platforms: mac
-- id: farm
- support: good
- notes: ""
- since_version: 0.9.0
- stable_platforms: mac,win
- unstable_platforms: ""
-- id: freddi2
- support: good
- notes: ""
- since_version: 0.9.0
- stable_platforms: mac,win
- unstable_platforms: ""
-- id: jungle
- support: good
- notes: ""
- since_version: 0.9.0
- stable_platforms: mac,win
- unstable_platforms: ""
-- id: pajama
- support: good
- notes: '- Gaps and glitches in the background music in Kitchen and Mine areas'
- since_version: 0.9.0
- stable_platforms: mac,win
- unstable_platforms: ""
-- id: spyfox
- support: good
- notes: ""
- since_version: 0.9.0
- stable_platforms: ios,mac,win
- unstable_platforms: ""
-- id: agi-fanmade
- support: good
- notes: '- Many fan games are untested and may have issues. - AGIMOUSE, AGIPAL hacks
- are also supported by this target - AGI256 and AGI256-2 hacks are not supported
- by this target - Occasional graphics glitches'
- since_version: 0.10.0
- stable_platforms: coco3,dos
- unstable_platforms: ""
-- id: bc
- support: good
- notes: '- Apple IIgs version has no sound'
- since_version: 0.10.0
- stable_platforms: amiga,apple2gs,coco3,dos
- unstable_platforms: ""
-- id: goldrush
- support: broken
- notes: '- Apple IIgs version has no sound'
- since_version: 0.10.0
- stable_platforms: apple2gs,atarist,coco3,dos,mac
- unstable_platforms: amiga
-- id: kq1
- support: good
- notes: '- Apple IIgs version has no sound'
- since_version: 0.10.0
- stable_platforms: amiga,apple2gs,atarist,coco3,dos,mac
- unstable_platforms: ""
-- id: kq2
- support: good
- notes: '- Apple IIgs version has no sound'
- since_version: 0.10.0
- stable_platforms: amiga,apple2gs,coco3,dos,mac
- unstable_platforms: ""
-- id: kq3
- support: good
- notes: '- Apple IIgs version has no sound'
- since_version: 0.10.0
- stable_platforms: amiga,apple2gs,atarist,coco3,dos,mac
- unstable_platforms: ""
-- id: kq4
- support: good
- notes: '- Apple IIgs version has no sound'
- since_version: 0.10.0
- stable_platforms: apple2gs,coco3,dos
- unstable_platforms: ""
-- id: lsl1
- support: good
- notes: '- Apple IIgs version has no sound'
- since_version: 0.10.0
- stable_platforms: amiga,apple2gs,atarist,coco3,dos,mac
- unstable_platforms: ""
-- id: mh1
- support: good
- notes: '- Apple IIgs version has no sound'
- since_version: 0.10.0
- stable_platforms: amiga,apple2gs,atarist,coco3,dos
- unstable_platforms: ""
-- id: mh2
- support: good
- notes: '- Apple IIgs version has no sound'
- since_version: 0.10.0
- stable_platforms: amiga,atarist,coco3,dos
- unstable_platforms: ""
-- id: mixedup
- support: good
- notes: '- Apple IIgs version has no sound'
- since_version: 0.10.0
- stable_platforms: apple2gs,coco3,dos
- unstable_platforms: ""
-- id: pq1
- support: good
- notes: '- Apple IIgs version has no sound'
- since_version: 0.10.0
- stable_platforms: amiga,apple2gs,coco3,dos,mac
- unstable_platforms: ""
-- id: sq1
- support: good
- notes: '- Apple IIgs version has no sound'
- since_version: 0.10.0
- stable_platforms: amiga,apple2gs,atarist,coco3,dos,mac
- unstable_platforms: ""
-- id: sq2
- support: good
- notes: '- Apple IIgs version has no sound'
- since_version: 0.10.0
- stable_platforms: amiga,apple2gs,atarist,coco3,dos,mac
- unstable_platforms: ""
-- id: dimp
- support: good
- notes: '- Demon takes longer to die, compared to original'
- since_version: 0.10.0
- stable_platforms: win
- unstable_platforms: ""
-- id: feeble
- support: excellent
- notes: '- DOS version is demo only'
- since_version: 0.10.0
- stable_platforms: amiga,dos,mac,win
- unstable_platforms: ""
-- id: jumble
- support: good
- notes: '- No support for displaying, entering, loading and saving high scores'
- since_version: 0.10.0
- stable_platforms: win
- unstable_platforms: ""
-- id: puzzle
- support: good
- notes: '- No support for displaying, entering, loading and saving high scores'
- since_version: 0.10.0
- stable_platforms: win
- unstable_platforms: ""
-- id: simon1
- support: excellent
- notes: '- No music in Acorn disk version - Minor palette glitches in Amiga versions'
- since_version: 0.10.0
- stable_platforms: acorn,amiga,dos,win
- unstable_platforms: ""
-- id: swampy
- support: good
- notes: '- No support for displaying explanation, when clicking on items - No support
- for displaying, entering, loading and saving high scores'
- since_version: 0.10.0
- stable_platforms: win
- unstable_platforms: ""
-- id: fw
- support: good
- notes: '- Occasional graphical glitches'
- since_version: 0.10.0
- stable_platforms: amiga,atarist,dos
- unstable_platforms: ""
-- id: bargon
- support: excellent
- notes: '- Issues with the mouse cursor visibility'
- since_version: 0.10.0
- stable_platforms: amiga,atarist,dos
- unstable_platforms: ""
-- id: gob2
- support: excellent
- notes: '- A few wrong instruments during music playback'
- since_version: 0.10.0
- stable_platforms: amiga,atarist,dos,mac,win
- unstable_platforms: ""
-- id: gob3
- support: good
- notes: '- Issues with the mouse cursor visibility - No support for original font
- and music files in Macintosh version - The number of used jokers isn''t saved
- correctly. You''ll always have 5 to spend again after loading'
- since_version: 0.10.0
- stable_platforms: amiga,dos,mac,win
- unstable_platforms: ""
-- id: ween
- support: excellent
- notes: '- Issues with the mouse cursor visibility'
- since_version: 0.10.0
- stable_platforms: amiga,atarist,dos
- unstable_platforms: ""
-- id: kyra1
- support: good
- notes: '- Requires the kyra.dat resource file to be placed in the game directory
- - MT-32 (MIDI) music and sfx are not supported - Occasional graphics glitches '
- since_version: 0.10.0
- stable_platforms: dos,fmtowns
- unstable_platforms: amiga
-- id: nippon
- support: good
- notes: ""
- since_version: 0.10.0
- stable_platforms: dos
- unstable_platforms: amiga
-- id: queen
- support: excellent
- notes: '- Some versions may require the queen.tbl resource file to be placed in
- the game directory. This is not required for the freeware releases.'
- since_version: 0.10.0
- stable_platforms: amiga,dos
- unstable_platforms: ""
-- id: bluesbirthday
- support: bugged
- notes: ""
- since_version: 0.10.0
- stable_platforms: mac,win
- unstable_platforms: ""
-- id: monkey
- support: excellent
- notes: '- The Roland update from LucasArts is required for MIDI support in the EGA
- version - Dialogue choices in the SegaCD version can be selected with mousewheel
- or keyboard arrow keys - No music or sound effects in the Amiga version'
- since_version: 0.10.0
- stable_platforms: amiga,atarist,dos,fmtowns,mac,segacd
- unstable_platforms: ""
-- id: monkey2
- support: excellent
- notes: '- Demo version often crashes due to missing resources, since it was never
- meant to be playable - No support for playing back the recorded file of gameplay
- in demo version - FM-TOWNS Kanji version requires the FM-TOWNS Font ROM - Loading
- of original instrument samples for Amiga version not implemented, so music differs
- from original interpreter.'
- since_version: 0.10.0
- stable_platforms: amiga,dos,fmtowns,mac
- unstable_platforms: ""
-- id: mustard
- support: good
- notes: ""
- since_version: 0.10.0
- stable_platforms: win
- unstable_platforms: mac
-- id: pajama3
- support: good
- notes: '- PlayStation 1 version doesn''t use SCUMM, so will never be supported'
- since_version: 0.10.0
- stable_platforms: mac,win
- unstable_platforms: psx
-- id: putttime
- support: good
- notes: ""
- since_version: 0.10.0
- stable_platforms: mac,win
- unstable_platforms: ""
-- id: thinker1
- support: good
- notes: ""
- since_version: 0.10.0
- stable_platforms: mac,win
- unstable_platforms: ""
-- id: sword1
- support: excellent
- notes: ""
- since_version: 0.10.0
- stable_platforms: dos,win,mac
- unstable_platforms: psx
-- id: touche
- support: good
- notes: '- Occasional graphical glitches'
- since_version: 0.10.0
- stable_platforms: dos
- unstable_platforms: ""
-- id: agi-fanmade
- support: good
- notes: '- Many fan games are untested and may have issues. - AGIMOUSE, AGIPAL, AGI256
- and AGI256-2 hacks are also supported by this target - Occasional graphics glitches'
- since_version: 0.11.0
- stable_platforms: coco3,dos
- unstable_platforms: ""
-- id: goldrush
- support: good
- notes: '- Apple IIgs version has no sound'
- since_version: 0.11.0
- stable_platforms: apple2gs,atarist,coco3,dos,mac
- unstable_platforms: amiga
-- id: mickey
- support: good
- notes: ""
- since_version: 0.11.0
- stable_platforms: dos
- unstable_platforms: ""
-- id: troll
- support: good
- notes: '- Game lacks sound'
- since_version: 0.11.0
- stable_platforms: dos
- unstable_platforms: ""
-- id: winnie
- support: good
- notes: '- Game lacks sound'
- since_version: 0.11.0
- stable_platforms: amiga,apple2,c64,dos
- unstable_platforms: ""
-- id: elvira1
- support: good
- notes: '- Commodore 64 version doesn''t use AGOS, so will never be supported. -
- No music in the Atari ST version. - No text descriptions in the Atari ST version.'
- since_version: 0.11.0
- stable_platforms: amiga,atarist,dos
- unstable_platforms: c64
-- id: elvira2
- support: good
- notes: '- Commodore 64 version doesn''t use AGOS, so will never be supported. -
- No music in the Atari ST version. - No sound effects in the DOS version. - Palette
- issues in the Atari ST version.'
- since_version: 0.11.0
- stable_platforms: amiga,atarist,dos
- unstable_platforms: c64
-- id: waxworks
- support: untested
- notes: '- Amiga version has not been confirmed as completable. '
- since_version: 0.11.0
- stable_platforms: amiga
- unstable_platforms: dos
-- id: kyra1
- support: good
- notes: '- Requires the kyra.dat resource file to be placed in the game directory
- - No music or sound effects in the Macintosh floppy versions - MT-32 (MIDI) music
- and sfx are not supported - PC-98 version lacks support for music and sound effects
- - Occasional graphics glitches '
- since_version: 0.11.0
- stable_platforms: dos,fmtowns,mac,pc98
- unstable_platforms: amiga
-- id: lure
- support: good
- notes: '- Sound support is incomplete and there is no Roland MT-32 support - EGA
- version is not supported'
- since_version: 0.11.0
- stable_platforms: dos
- unstable_platforms: ""
-- id: nippon
- support: good
- notes: ""
- since_version: 0.11.0
- stable_platforms: amiga,dos
- unstable_platforms: ""
-- id: ihnm
- support: good
- notes: '- No music in the Macintosh version'
- since_version: 0.11.0
- stable_platforms: dos,mac
- unstable_platforms: ""
-- id: ite
- support: excellent
- notes: ""
- since_version: 0.11.0
- stable_platforms: dos,linux,mac,macos,pc98,win
- unstable_platforms: amiga
-- id: brstorm
- support: excellent
- notes: ""
- since_version: 0.11.0
- stable_platforms: dos
- unstable_platforms: ""
-- id: goldrush
- support: good
- notes: '- Apple IIgs version has no sound'
- since_version: 0.12.0
- stable_platforms: amiga,apple2gs,atarist,coco3,dos,mac
- unstable_platforms: ""
-- id: simon1
- support: excellent
- notes: '- No music in Acorn disk version'
- since_version: 0.12.0
- stable_platforms: acorn,amiga,dos,win
- unstable_platforms: ""
-- id: waxworks
- support: untested
- notes: '- Amiga version has not been confirmed as completable. - DOS version doesn''t
- load or save items states correctly, leading to various bugs - No music in the
- DOS version.'
- since_version: 0.12.0
- stable_platforms: amiga,dos
- unstable_platforms: ""
-- id: drascula
- support: excellent
- notes: '- Requires the drascula.dat resource file to be placed in the game directory'
- since_version: 0.12.0
- stable_platforms: dos
- unstable_platforms: ""
-- id: gob3
- support: excellent
- notes: '- Issues with the mouse cursor visibility - No support for original font
- and music files in Macintosh version - The number of used jokers isn''t saved
- correctly. You''ll always have 5 to spend again after loading'
- since_version: 0.12.0
- stable_platforms: amiga,dos,mac,win
- unstable_platforms: ""
-- id: lit
- support: excellent
- notes: '- Versions that split part one and two are untested - Issues with the mouse
- cursor visibility'
- since_version: 0.12.0
- stable_platforms: dos,win
- unstable_platforms: ""
-- id: woodruff
- support: good
- notes: '- Issues with the mouse cursor visibility - Some object videos flicker the
- very first frame'
- since_version: 0.12.0
- stable_platforms: win
- unstable_platforms: ""
-- id: kyra1
- support: good
- notes: '- Requires the kyra.dat resource file to be placed in the game directory
- - No music or sound effects in the Macintosh floppy versions - MT-32 (MIDI) music
- and sfx are not supported - PC-98 version lacks support for sound effects - Occasional
- graphics glitches '
- since_version: 0.12.0
- stable_platforms: dos,fmtowns,mac,pc98
- unstable_platforms: amiga
-- id: kyra2
- support: excellent
- notes: '- Requires the kyra.dat resource file to be placed in the game directory
- - MIDI music and sfx are not supported'
- since_version: 0.12.0
- stable_platforms: dos,fmtowns,pc98
- unstable_platforms: ""
-- id: kyra3
- support: excellent
- notes: '- Requires the kyra.dat resource file to be placed in the game directory'
- since_version: 0.12.0
- stable_platforms: dos,mac
- unstable_platforms: ""
-- id: blues123time
- support: untested
- notes: ""
- since_version: 0.12.0
- stable_platforms: mac,win
- unstable_platforms: ""
-- id: zak
- support: good
- notes: '- FM-TOWNS Kanji version requires the FM-TOWNS Font ROM - No music or sound
- effects in the Commodore 64 version'
- since_version: 0.12.0
- stable_platforms: amiga,atarist,c64,dos,fmtowns
- unstable_platforms: ""
-- id: elvira1
- support: good
- notes: '- Commodore 64 version doesn''t use AGOS, so will never be supported. -
- No music in the Atari ST version.'
- since_version: 0.13.0
- stable_platforms: amiga,atarist,dos
- unstable_platforms: c64
-- id: t7g
- support: excellent
- notes: '- The MT-32 instrument definitions aren''t supported yet, so it will play
- with wrong instruments - The CD-i version doesn''t use Groovie, so it will never
- be supported. - There are some issues with music not playing when it should'
- since_version: 0.13.0
- stable_platforms: dos.win
- unstable_platforms: cdi,ios,mac
-- id: kyra1
- support: good
- notes: '- Requires the kyra.dat resource file to be placed in the game directory
- - No music or sound effects in the Macintosh floppy versions - PC-98 version lacks
- support for sound effects - Occasional graphics glitches '
- since_version: 0.13.0
- stable_platforms: dos,fmtowns,mac,pc98
- unstable_platforms: amiga
-- id: kyra2
- support: excellent
- notes: '- Requires the kyra.dat resource file to be placed in the game directory'
- since_version: 0.13.0
- stable_platforms: dos,fmtowns,pc98
- unstable_platforms: ""
-- id: lure
- support: good
- notes: '- Sound support is incomplete and there is no Roland MT-32 support'
- since_version: 0.13.0
- stable_platforms: dos
- unstable_platforms: ""
-- id: blues123time
- support: good
- notes: ""
- since_version: 0.13.0
- stable_platforms: mac,win
- unstable_platforms: ""
-- id: bluesabctime
- support: good
- notes: ""
- since_version: 0.13.0
- stable_platforms: mac,win
- unstable_platforms: ""
-- id: bluestreasurehunt
- support: untested
- notes: ""
- since_version: 0.13.0
- stable_platforms: mac,win
- unstable_platforms: ""
-- id: tucker
- support: excellent
- notes: ""
- since_version: 0.13.0
- stable_platforms: dos
- unstable_platforms: ""
-- id: elvira2
- support: good
- notes: '- Commodore 64 version doesn''t use AGOS, so will never be supported. -
- No music in the Atari ST version. - No sound effects in the DOS version.'
- since_version: 1.0.0
- stable_platforms: amiga,atarist,dos
- unstable_platforms: c64
-- id: waxworks
- support: untested
- notes: '- Amiga version has not been confirmed as completable. - DOS version doesn''t
- load or save items states correctly, leading to various bugs'
- since_version: 1.0.0
- stable_platforms: amiga,dos
- unstable_platforms: ""
-- id: cruise
- support: excellent
- notes: '- Only AdLib music and sound effects are supported'
- since_version: 1.0.0
- stable_platforms: amiga,atarist,dos
- unstable_platforms: ""
-- id: woodruff
- support: excellent
- notes: '- Issues with the mouse cursor visibility'
- since_version: 1.0.0
- stable_platforms: win
- unstable_platforms: ""
-- id: t7g
- support: excellent
- notes: '- The MT-32 instrument definitions aren''t supported yet, so it will play
- with wrong instruments - The CD-i version doesn''t use Groovie, so it will never
- be supported.'
- since_version: 1.0.0
- stable_platforms: dos.win
- unstable_platforms: cdi,ios,mac
-- id: kyra1
- support: good
- notes: '- Requires the kyra.dat resource file to be placed in the game directory
- - No music or sound effects in the Amiga and Macintosh floppy versions - Macintosh
- CD is using included DOS music and sound effects for now - PC-98 version lacks
- support for sound effects - Occasional graphics glitches '
- since_version: 1.0.0
- stable_platforms: amiga,dos,fmtowns,mac,pc98
- unstable_platforms: ""
-- id: lgop2
- support: good
- notes: '- Only soundblaster music is played. MIDI music playing/MT32 instrument
- mapping needs more work'
- since_version: 1.0.0
- stable_platforms: dos
- unstable_platforms: ""
-- id: manhole
- support: good
- notes: ""
- since_version: 1.0.0
- stable_platforms: dos
- unstable_platforms: ""
-- id: rodney
- support: good
- notes: ""
- since_version: 1.0.0
- stable_platforms: dos
- unstable_platforms: ""
-- id: rtz
- support: good
- notes: '- Only soundblaster music is played. MIDI music playing/MT32 instrument
- mapping needs more work'
- since_version: 1.0.0
- stable_platforms: dos,fmtowns,pc98
- unstable_platforms: 3do,mac,pcfx,psx,saturn
-- id: nippon
- support: broken
- notes: '- Regression broke the game'
- since_version: 1.0.0
- stable_platforms: amiga,dos
- unstable_platforms: ""
-- id: monkey
- support: excellent
- notes: '- The Roland update from LucasArts is required for MIDI support in the EGA
- version - Dialogue choices in the SegaCD version can be selected with mousewheel
- or keyboard arrow keys'
- since_version: 1.0.0
- stable_platforms: amiga,atarist,dos,fmtowns,mac,segacd
- unstable_platforms: ""
-- id: sword1
- support: excellent
- notes: ""
- since_version: 1.0.0
- stable_platforms: dos,psx,win,mac
- unstable_platforms: ""
-- id: sword2
- support: excellent
- notes: ""
- since_version: 1.0.0
- stable_platforms: psx,win
- unstable_platforms: ""
-- id: dw
- support: excellent
- notes: '- PSX version is missing music support'
- since_version: 1.0.0
- stable_platforms: dos,psx
- unstable_platforms: mac
-- id: dw2
- support: excellent
- notes: ""
- since_version: 1.0.0
- stable_platforms: dos
- unstable_platforms: ""
-- id: draci
- support: good
- notes: ""
- since_version: 1.1.0
- stable_platforms: dos
- unstable_platforms: ""
-- id: kyra1
- support: good
- notes: '- Requires the kyra.dat resource file to be placed in the game directory
- - No music or sound effects in the Macintosh floppy versions - Macintosh CD is
- using included DOS music and sound effects for now - PC-98 version lacks support
- for sound effects - Occasional graphics glitches '
- since_version: 1.1.0
- stable_platforms: amiga,dos,fmtowns,mac,pc98
- unstable_platforms: ""
-- id: arttime
- support: good
- notes: ""
- since_version: 1.1.0
- stable_platforms: mac,win
- unstable_platforms: ""
-- id: baseball2001
- support: bugged
- notes: '- No support for multiplayer - Array out of bounds errors sometimes - Minor
- graphical glitches'
- since_version: 1.1.0
- stable_platforms: mac,win
- unstable_platforms: ""
-- id: baseball2003
- support: bugged
- notes: '- Array out of bounds errors sometimes - Minor graphical glitches'
- since_version: 1.1.0
- stable_platforms: mac,win
- unstable_platforms: ""
-- id: fbear
- support: excellent
- notes: ""
- since_version: 1.1.0
- stable_platforms: 3do,dos,mac,win
- unstable_platforms: ""
-- id: football2002
- support: bugged
- notes: '- Minor graphical glitches - No support for multiplayer - No videos - Array
- out of bounds error when computer chooses a player, when selecting teams'
- since_version: 1.1.0
- stable_platforms: mac,win
- unstable_platforms: ""
-- id: loom
- support: excellent
- notes: '- The Roland update from LucasArts is required for MIDI support in the EGA
- version - No music or sound effects in the Macintosh version - There is no support
- for the Macintosh interface - FM-TOWNS Kanji version requires the FM-TOWNS Font
- ROM - PC-Engine Kanji version requires the system card ROM - Fades are seemingly
- different in the FM-TOWNS version - Text palette sometimes incorrect in the FM-TOWNS
- version - Distaff occasionally pink in the FM-TOWNS version - Use boot parameter
- to choose difficulty in the FM-TOWNS version: - 0 practice (default) - 1
- standard - 2 expert'
- since_version: 1.1.0
- stable_platforms: amiga,atarist,dos,fmtowns
- unstable_platforms: pce,mac
-- id: pjgames
- support: bugged
- notes: '- Jumping Beans freezes, after introduction'
- since_version: 1.1.0
- stable_platforms: mac,win
- unstable_platforms: ""
-- id: readtime
- support: good
- notes: ""
- since_version: 1.1.0
- stable_platforms: mac,win
- unstable_platforms: ""
-- id: spyozon
- support: good
- notes: ""
- since_version: 1.1.0
- stable_platforms: mac,win
- unstable_platforms: ""
-- id: zak
- support: good
- notes: '- FM-TOWNS Kanji version requires the FM-TOWNS Font ROM'
- since_version: 1.1.0
- stable_platforms: amiga,atarist,c64,dos,fmtowns
- unstable_platforms: ""
-- id: teenagent
- support: good
- notes: '- Requires the teenagent.dat resource file to be placed in the game directory
- - Occasional graphical glitches'
- since_version: 1.1.0
- stable_platforms: dos
- unstable_platforms: ""
-- id: qfg1
- support: excellent
- notes: '- Music in the Amiga versions may have glitches'
- since_version: 1.2.0
- stable_platforms: amiga,atarist,dos,pc98
- unstable_platforms: ""
-- id: fascination
- support: good
- notes: '- AdLib player is not supported in DOS floppy version'
- since_version: 1.2.0
- stable_platforms: amiga,atarist,dos
- unstable_platforms: ""
-- id: t7g
- support: excellent
- notes: '- The CD-i version doesn''t use Groovie, so it will never be supported.'
- since_version: 1.2.0
- stable_platforms: dos,ios,mac,win
- unstable_platforms: cdi
-- id: kyra1
- support: excellent
- notes: '- Requires the kyra.dat resource file to be placed in the game directory
- - No music or sound effects in the Macintosh floppy versions - Macintosh CD is
- using included DOS music and sound effects for now'
- since_version: 1.2.0
- stable_platforms: amiga,dos,fmtowns,mac,pc98
- unstable_platforms: ""
-- id: nippon
- support: good
- notes: '- Occasional graphical glitches'
- since_version: 1.2.0
- stable_platforms: amiga,dos
- unstable_platforms: ""
-- id: camelot
- support: excellent
- notes: ""
- since_version: 1.2.0
- stable_platforms: dos
- unstable_platforms: amiga,atarist
-- id: castlebrain
- support: excellent
- notes: '- Music in Macintosh and Amiga versions may have glitches - No support for
- Macintosh hi-res fonts'
- since_version: 1.2.0
- stable_platforms: dos
- unstable_platforms: amiga,mac,pc98
-- id: ecoquest
- support: excellent
- notes: ""
- since_version: 1.2.0
- stable_platforms: dos
- unstable_platforms: ""
-- id: ecoquest2
- support: excellent
- notes: ""
- since_version: 1.2.0
- stable_platforms: dos
- unstable_platforms: ""
-- id: fairytales
- support: excellent
- notes: ""
- since_version: 1.2.0
- stable_platforms: dos
- unstable_platforms: ""
-- id: freddypharkas
- support: excellent
- notes: ""
- since_version: 1.2.0
- stable_platforms: dos,mac,win
- unstable_platforms: ""
-- id: hoyle1
- support: excellent
- notes: ""
- since_version: 1.2.0
- stable_platforms: dos
- unstable_platforms: amiga,atarist
-- id: hoyle2
- support: excellent
- notes: ""
- since_version: 1.2.0
- stable_platforms: dos
- unstable_platforms: amiga,atarist,mac
-- id: hoyle3
- support: excellent
- notes: ""
- since_version: 1.2.0
- stable_platforms: dos
- unstable_platforms: amiga
-- id: hoyle4
- support: excellent
- notes: ""
- since_version: 1.2.0
- stable_platforms: dos,mac
- unstable_platforms: ""
-- id: iceman
- support: excellent
- notes: ""
- since_version: 1.2.0
- stable_platforms: dos
- unstable_platforms: amiga,atarist
-- id: islandbrain
- support: excellent
- notes: ""
- since_version: 1.2.0
- stable_platforms: dos
- unstable_platforms: ""
-- id: jones
- support: excellent
- notes: ""
- since_version: 1.2.0
- stable_platforms: dos
- unstable_platforms: ""
-- id: kq1sci
- support: excellent
- notes: ""
- since_version: 1.2.0
- stable_platforms: dos
- unstable_platforms: amiga
-- id: kq4sci
- support: excellent
- notes: ""
- since_version: 1.2.0
- stable_platforms: dos
- unstable_platforms: amiga,atarist
-- id: kq5
- support: excellent
- notes: ""
- since_version: 1.2.0
- stable_platforms: dos
- unstable_platforms: win
-- id: kq6
- support: excellent
- notes: ""
- since_version: 1.2.0
- stable_platforms: dos,mac,win
- unstable_platforms: ""
-- id: laurabow
- support: excellent
- notes: ""
- since_version: 1.2.0
- stable_platforms: dos
- unstable_platforms: amiga,atarist
-- id: longbow
- support: excellent
- notes: ""
- since_version: 1.2.0
- stable_platforms: dos
- unstable_platforms: amiga
-- id: lsl1sci
- support: excellent
- notes: ""
- since_version: 1.2.0
- stable_platforms: dos
- unstable_platforms: amiga,mac
-- id: lsl2
- support: excellent
- notes: ""
- since_version: 1.2.0
- stable_platforms: dos
- unstable_platforms: amiga,atarist
-- id: lsl3
- support: excellent
- notes: ""
- since_version: 1.2.0
- stable_platforms: dos
- unstable_platforms: amiga,atarist
-- id: lsl5
- support: excellent
- notes: ""
- since_version: 1.2.0
- stable_platforms: amiga,dos,mac
- unstable_platforms: ""
-- id: lsl6
- support: excellent
- notes: ""
- since_version: 1.2.0
- stable_platforms: dos
- unstable_platforms: mac
-- id: mothergoose
- support: excellent
- notes: ""
- since_version: 1.2.0
- stable_platforms: dos
- unstable_platforms: amiga
-- id: pepper
- support: excellent
- notes: ""
- since_version: 1.2.0
- stable_platforms: dos
- unstable_platforms: ""
-- id: pq1sci
- support: excellent
- notes: ""
- since_version: 1.2.0
- stable_platforms: dos
- unstable_platforms: ""
-- id: pq2
- support: excellent
- notes: ""
- since_version: 1.2.0
- stable_platforms: dos
- unstable_platforms: amiga,atarist,pc98
-- id: pq3
- support: excellent
- notes: ""
- since_version: 1.2.0
- stable_platforms: dos
- unstable_platforms: amiga
-- id: qfg1vga
- support: excellent
- notes: ""
- since_version: 1.2.0
- stable_platforms: dos,mac
- unstable_platforms: ""
-- id: qfg2
- support: excellent
- notes: ""
- since_version: 1.2.0
- stable_platforms: dos
- unstable_platforms: amiga
-- id: qfg3
- support: excellent
- notes: ""
- since_version: 1.2.0
- stable_platforms: dos
- unstable_platforms: ""
-- id: slater
- support: excellent
- notes: ""
- since_version: 1.2.0
- stable_platforms: dos,mac
- unstable_platforms: ""
-- id: sq1sci
- support: excellent
- notes: ""
- since_version: 1.2.0
- stable_platforms: dos
- unstable_platforms: amiga,mac
-- id: sq3
- support: excellent
- notes: ""
- since_version: 1.2.0
- stable_platforms: dos
- unstable_platforms: mac,amiga,atarist
-- id: sq4
- support: excellent
- notes: ""
- since_version: 1.2.0
- stable_platforms: dos
- unstable_platforms: win,amiga,mac,pc98
-- id: sq5
- support: excellent
- notes: ""
- since_version: 1.2.0
- stable_platforms: dos
- unstable_platforms: ""
-- id: pajama
- support: good
- notes: ""
- since_version: 1.2.0
- stable_platforms: mac,win
- unstable_platforms: ""
-- id: pn
- support: untested
- notes: '- Minor spacing glitches with charset. - No day to night fading in Amiga
- and Atari ST versions.'
- since_version: 1.3.0
- stable_platforms: amiga,atarist,dos
- unstable_platforms: ""
-- id: pn
- support: untested
- notes: '- Minor spacing glitches with charset - No day to night fading in Amiga
- and Atari ST versions'
- since_version: 1.3.0
- stable_platforms: amiga,atarist,dos
- unstable_platforms: ""
-- id: bambou
- support: good
- notes: ""
- since_version: 1.3.0
- stable_platforms: win
- unstable_platforms: ""
-- id: urban
- support: good
- notes: ""
- since_version: 1.3.0
- stable_platforms: win
- unstable_platforms: ""
-- id: hugo1
- support: good
- notes: '- Playback is not supported - No support for one of the original fonts used
- during the intro of the DOS version'
- since_version: 1.3.0
- stable_platforms: dos,win
- unstable_platforms: ""
-- id: hugo2
- support: good
- notes: '- Playback is not supported'
- since_version: 1.3.0
- stable_platforms: dos,win
- unstable_platforms: ""
-- id: hugo3
- support: good
- notes: '- Playback is not supported'
- since_version: 1.3.0
- stable_platforms: dos,win
- unstable_platforms: ""
-- id: arthur
- support: good
- notes: ""
- since_version: 1.3.0
- stable_platforms: mac,win
- unstable_platforms: ""
-- id: arthurbday
- support: good
- notes: '- The 2.0 version is not supported yet'
- since_version: 1.3.0
- stable_platforms: mac,win
- unstable_platforms: mac,win
-- id: beardark
- support: good
- notes: ""
- since_version: 1.3.0
- stable_platforms: mac,win
- unstable_platforms: ""
-- id: bearfight
- support: good
- notes: ""
- since_version: 1.3.0
- stable_platforms: mac,win
- unstable_platforms: ""
-- id: grandma
- support: good
- notes: '- The 2.0 version is not supported yet'
- since_version: 1.3.0
- stable_platforms: mac,win
- unstable_platforms: mac,win
-- id: greeneggs
- support: good
- notes: '- Minigames are not supported yet'
- since_version: 1.3.0
- stable_platforms: mac,win
- unstable_platforms: ""
-- id: harryhh
- support: good
- notes: ""
- since_version: 1.3.0
- stable_platforms: mac,win
- unstable_platforms: ""
-- id: lilmonster
- support: good
- notes: '- The CD-i version is not supported'
- since_version: 1.3.0
- stable_platforms: mac,win
- unstable_platforms: ""
-- id: newkid
- support: good
- notes: ""
- since_version: 1.3.0
- stable_platforms: mac,win
- unstable_platforms: ""
-- id: ruff
- support: good
- notes: ""
- since_version: 1.3.0
- stable_platforms: mac,win
- unstable_platforms: ""
-- id: seussabc
- support: good
- notes: ""
- since_version: 1.3.0
- stable_platforms: mac,win
- unstable_platforms: ""
-- id: sheila
- support: good
- notes: ""
- since_version: 1.3.0
- stable_platforms: mac,win
- unstable_platforms: ""
-- id: stellaluna
- support: good
- notes: ""
- since_version: 1.3.0
- stable_platforms: mac,win
- unstable_platforms: ""
-- id: tortoise
- support: good
- notes: ""
- since_version: 1.3.0
- stable_platforms: mac,win
- unstable_platforms: ""
-- id: camelot
- support: excellent
- notes: '- Music in the Amiga version may have glitches'
- since_version: 1.3.0
- stable_platforms: amiga,atarist,dos
- unstable_platforms: ""
-- id: castlebrain
- support: excellent
- notes: '- Music in Macintosh and Amiga versions may have glitches - No support for
- Macintosh hi-res fonts'
- since_version: 1.3.0
- stable_platforms: amiga,dos,mac,pc98
- unstable_platforms: ""
-- id: hoyle1
- support: excellent
- notes: '- Music in the Amiga version may have glitches'
- since_version: 1.3.0
- stable_platforms: amiga,atarist,dos
- unstable_platforms: ""
-- id: hoyle2
- support: excellent
- notes: '- Music in the Amiga version may have glitches'
- since_version: 1.3.0
- stable_platforms: amiga,atarist,dos,mac
- unstable_platforms: ""
-- id: hoyle3
- support: excellent
- notes: '- Music in the Amiga version may have glitches'
- since_version: 1.3.0
- stable_platforms: amiga,dos
- unstable_platforms: ""
-- id: iceman
- support: excellent
- notes: '- Music in the Amiga version may have glitches'
- since_version: 1.3.0
- stable_platforms: amiga,atarist,dos
- unstable_platforms: ""
-- id: kq1sci
- support: excellent
- notes: '- Music in the Amiga version may have glitches'
- since_version: 1.3.0
- stable_platforms: amiga,dos
- unstable_platforms: ""
-- id: kq4sci
- support: excellent
- notes: '- Music in the Amiga version may have glitches'
- since_version: 1.3.0
- stable_platforms: amiga,atarist,dos
- unstable_platforms: ""
-- id: kq5
- support: excellent
- notes: '- Music in the Macintosh and Amiga versions may have glitches - No support
- for Macintosh hi-res fonts'
- since_version: 1.3.0
- stable_platforms: amiga,dos,fmtowns,mac,pc98
- unstable_platforms: win
-- id: laurabow
- support: excellent
- notes: '- Music in the Amiga version may have glitches'
- since_version: 1.3.0
- stable_platforms: amiga,atarist,dos
- unstable_platforms: ""
-- id: laurabow2
- support: excellent
- notes: ""
- since_version: 1.3.0
- stable_platforms: dos
- unstable_platforms: ""
-- id: lsl1sci
- support: excellent
- notes: '- Music in the Macintosh and Amiga versions may have glitches - No support
- for Macintosh hi-res fonts'
- since_version: 1.3.0
- stable_platforms: amiga,dos,mac
- unstable_platforms: ""
-- id: lsl2
- support: excellent
- notes: '- Music in the Amiga versions may have glitches'
- since_version: 1.3.0
- stable_platforms: amiga,atarist,dos
- unstable_platforms: ""
-- id: lsl3
- support: excellent
- notes: '- Music in the Amiga versions may have glitches'
- since_version: 1.3.0
- stable_platforms: amiga,atarist,dos
- unstable_platforms: ""
-- id: lsl5
- support: excellent
- notes: '- Music in the Macintosh and Amiga versions may have glitches - No support
- for Macintosh hi-res fonts'
- since_version: 1.3.0
- stable_platforms: amiga,dos,mac
- unstable_platforms: ""
-- id: mothergoose
- support: excellent
- notes: '- Music in the Amiga versions may have glitches'
- since_version: 1.3.0
- stable_platforms: amiga,dos
- unstable_platforms: ""
-- id: pq2
- support: excellent
- notes: '- Music in the Amiga versions may have glitches'
- since_version: 1.3.0
- stable_platforms: amiga,atarist,dos,pc98
- unstable_platforms: ""
-- id: pq3
- support: excellent
- notes: '- Music in the Amiga versions may have glitches'
- since_version: 1.3.0
- stable_platforms: amiga,dos
- unstable_platforms: ""
-- id: qfg2
- support: excellent
- notes: '- Music in the Amiga versions may have glitches'
- since_version: 1.3.0
- stable_platforms: amiga,dos
- unstable_platforms: ""
-- id: sq1sci
- support: excellent
- notes: '- Music in Macintosh and Amiga versions may have glitches - No support for
- Macintosh hi-res fonts'
- since_version: 1.3.0
- stable_platforms: amiga,dos,mac
- unstable_platforms: ""
-- id: sq3
- support: excellent
- notes: '- Music in the Amiga version may have glitches'
- since_version: 1.3.0
- stable_platforms: amiga,atarist,dos
- unstable_platforms: mac
-- id: sq4
- support: excellent
- notes: '- Music in Macintosh and Amiga versions may have glitches - No support for
- Macintosh hi-res fonts'
- since_version: 1.3.0
- stable_platforms: amiga,dos,mac,pc98
- unstable_platforms: win
-- id: baseball
- support: good
- notes: ""
- since_version: 1.3.0
- stable_platforms: mac,win
- unstable_platforms: ""
-- id: baseball2001
- support: good
- notes: '- No support for multiplayer'
- since_version: 1.3.0
- stable_platforms: mac,win
- unstable_platforms: ""
-- id: baseball2003
- support: bugged
- notes: '- Minor graphical glitches'
- since_version: 1.3.0
- stable_platforms: mac,win
- unstable_platforms: ""
-- id: football
- support: good
- notes: ""
- since_version: 1.3.0
- stable_platforms: mac,win
- unstable_platforms: ""
-- id: football2002
- support: good
- notes: '- Minor graphical glitches - No support for multiplayer - No videos'
- since_version: 1.3.0
- stable_platforms: mac,win
- unstable_platforms: ""
-- id: toon
- support: excellent
- notes: '- Requires the toon.dat resource file to be placed in the game directory
- - Occasional graphical glitches'
- since_version: 1.3.0
- stable_platforms: dos
- unstable_platforms: ""
-- id: winnie
- support: good
- notes: ""
- since_version: 1.4.0
- stable_platforms: amiga,apple2,c64,dos
- unstable_platforms: ""
-- id: lol
- support: good
- notes: '- Requires the kyra.dat resource file to be placed in the game directory'
- since_version: 1.4.0
- stable_platforms: dos,pc98
- unstable_platforms: ""
-- id: ecoquest
- support: excellent
- notes: ""
- since_version: 1.4.0
- stable_platforms: dos,win
- unstable_platforms: ""
-- id: jones
- support: excellent
- notes: ""
- since_version: 1.4.0
- stable_platforms: dos,win
- unstable_platforms: ""
-- id: kq5
- support: excellent
- notes: '- Music in the Macintosh and Amiga versions may have glitches - No support
- for Macintosh hi-res fonts'
- since_version: 1.4.0
- stable_platforms: amiga,dos,fmtowns,mac,pc98,win
- unstable_platforms: ""
-- id: longbow
- support: excellent
- notes: '- Music in the Amiga version may have glitches'
- since_version: 1.4.0
- stable_platforms: amiga,dos
- unstable_platforms: ""
-- id: sq4
- support: excellent
- notes: '- Music in Macintosh and Amiga versions may have glitches - No support for
- Macintosh hi-res fonts'
- since_version: 1.4.0
- stable_platforms: amiga,dos,mac,pc98,win
- unstable_platforms: ""
-- id: bluesbirthday
- support: good
- notes: '- Minor graphical glitches'
- since_version: 1.4.0
- stable_platforms: mac,win
- unstable_platforms: ""
-- id: ringworld
- support: good
- notes: ""
- since_version: 1.4.0
- stable_platforms: dos
- unstable_platforms: ""
-- id: soltys
- support: good
- notes: ""
- since_version: 1.5.0
- stable_platforms: dos
- unstable_platforms: ""
-- id: darby
- support: good
- notes: ""
- since_version: 1.5.0
- stable_platforms: mac,win
- unstable_platforms: ""
-- id: gregory
- support: good
- notes: ""
- since_version: 1.5.0
- stable_platforms: mac,win
- unstable_platforms: ""
-- id: liam
- support: good
- notes: ""
- since_version: 1.5.0
- stable_platforms: mac,win
- unstable_platforms: ""
-- id: princess
- support: good
- notes: ""
- since_version: 1.5.0
- stable_platforms: mac,win
- unstable_platforms: ""
-- id: sleepingcub
- support: good
- notes: ""
- since_version: 1.5.0
- stable_platforms: mac,win
- unstable_platforms: ""
-- id: dreamweb
- support: excellent
- notes: ""
- since_version: 1.5.0
- stable_platforms: dos
- unstable_platforms: ""
-- id: bambou
- support: excellent
- notes: ""
- since_version: 1.5.0
- stable_platforms: win
- unstable_platforms: ""
-- id: fascination
- support: good
- notes: ""
- since_version: 1.5.0
- stable_platforms: amiga,atarist,dos
- unstable_platforms: ""
-- id: geisha
- support: good
- notes: ""
- since_version: 1.5.0
- stable_platforms: amiga,atarist,dos
- unstable_platforms: ""
-- id: littlered
- support: good
- notes: ""
- since_version: 1.5.0
- stable_platforms: amiga,dos,win
- unstable_platforms: ""
-- id: urban
- support: excellent
- notes: ""
- since_version: 1.5.0
- stable_platforms: win
- unstable_platforms: ""
-- id: baseball2003
- support: good
- notes: ""
- since_version: 1.5.0
- stable_platforms: mac,win
- unstable_platforms: ""
-- id: loom
- support: excellent
- notes: '- The Roland update from LucasArts is required for MIDI support in the EGA
- version - No music or sound effects in the Macintosh version - There is no support
- for the Macintosh interface - FM-TOWNS Kanji version requires the FM-TOWNS Font
- ROM - PC-Engine Kanji version requires the system card ROM'
- since_version: 1.5.0
- stable_platforms: amiga,atarist,dos,fmtowns,pce
- unstable_platforms: mac
-- id: lost
- support: good
- notes: ""
- since_version: 1.5.0
- stable_platforms: mac,win
- unstable_platforms: ""
-- id: mustard
- support: good
- notes: ""
- since_version: 1.5.0
- stable_platforms: mac,win
- unstable_platforms: ""
-- id: toon
- support: excellent
- notes: ""
- since_version: 1.5.0
- stable_platforms: dos
- unstable_platforms: ""
-- id: blueforce
- support: good
- notes: ""
- since_version: 1.5.0
- stable_platforms: dos
- unstable_platforms: ""
-- id: drascula
- support: excellent
- notes: ""
- since_version: 1.6.0
- stable_platforms: dos
- unstable_platforms: ""
-- id: hopkins
- support: good
- notes: ""
- since_version: 1.6.0
- stable_platforms: beos,linux,os2,win
- unstable_platforms: ""
-- id: eob
- support: good
- notes: ""
- since_version: 1.6.0
- stable_platforms: dos
- unstable_platforms: amiga,pc98
-- id: eob2
- support: good
- notes: ""
- since_version: 1.6.0
- stable_platforms: dos
- unstable_platforms: amiga,fmtowns,pc98
-- id: kyra1
- support: excellent
- notes: '- No music or sound effects in the Macintosh floppy versions - Macintosh
- CD is using included DOS music and sound effects for now'
- since_version: 1.6.0
- stable_platforms: amiga,dos,fmtowns,mac,pc98
- unstable_platforms: ""
-- id: kyra2
- support: excellent
- notes: ""
- since_version: 1.6.0
- stable_platforms: dos,fmtowns,pc98
- unstable_platforms: ""
-- id: kyra3
- support: excellent
- notes: ""
- since_version: 1.6.0
- stable_platforms: dos,mac
- unstable_platforms: ""
-- id: lol
- support: good
- notes: ""
- since_version: 1.6.0
- stable_platforms: dos,pc98
- unstable_platforms: ""
-- id: pegasus
- support: good
- notes: '- Occasional video graphical glitches'
- since_version: 1.6.0
- stable_platforms: mac,win
- unstable_platforms: ""
-- id: queen
- support: excellent
- notes: ""
- since_version: 1.6.0
- stable_platforms: amiga,dos
- unstable_platforms: ""
-- id: ihnm
- support: good
- notes: ""
- since_version: 1.6.0
- stable_platforms: dos,mac
- unstable_platforms: ""
-- id: loom
- support: excellent
- notes: '- The Roland update from LucasArts is required for MIDI support in the EGA
- version - There is no support for the Macintosh interface - FM-TOWNS Kanji version
- requires the FM-TOWNS Font ROM - PC-Engine Kanji version requires the system card
- ROM'
- since_version: 1.6.0
- stable_platforms: amiga,atarist,dos,fmtowns,pce
- unstable_platforms: mac
-- id: sky
- support: excellent
- notes: '- Floppy demos aren''t supported - The following bugs are present in the
- original game and can''t be fixed: - The voice files for some sentences are
- missing. - This is especially noticeable in the court- and Mrs. Piermont sequence. -
- The fonts for the LINC terminal are partially incorrect and the text sometimes
- passes the screen borders - Special characters for french and italian subtitles
- are incorrect sometimes'
- since_version: 1.6.0
- stable_platforms: dos
- unstable_platforms: amiga
-- id: teenagent
- support: good
- notes: '- Occasional graphical glitches'
- since_version: 1.6.0
- stable_platforms: dos
- unstable_platforms: ""
-- id: dw
- support: excellent
- notes: '- PSX version is missing music support'
- since_version: 1.6.0
- stable_platforms: dos,mac,psx
- unstable_platforms: ""
-- id: toltecs
- support: good
- notes: ""
- since_version: 1.6.0
- stable_platforms: dos
- unstable_platforms: ""
-- id: tony
- support: excellent
- notes: ""
- since_version: 1.6.0
- stable_platforms: win
- unstable_platforms: ""
-- id: fascination
- support: excellent
- notes: ""
- since_version: 1.7.0
- stable_platforms: amiga,atarist,dos
- unstable_platforms: ""
-- id: lit
- support: excellent
- notes: '- Issues with the mouse cursor visibility'
- since_version: 1.7.0
- stable_platforms: dos,win
- unstable_platforms: ""
-- id: mortevielle
- support: untested
- notes: '- No speech synthesis'
- since_version: 1.7.0
- stable_platforms: dos
- unstable_platforms: ""
-- id: chivalry
- support: good
- notes: '- Requires additional fonts.'
- since_version: 1.7.0
- stable_platforms: win
- unstable_platforms: ""
-- id: amazon
- support: untested
- notes: '- Demo version is not supported'
- since_version: 1.8.0
- stable_platforms: dos
- unstable_platforms: dos
-- id: bbvs
- support: untested
- notes: ""
- since_version: 1.8.0
- stable_platforms: win
- unstable_platforms: ""
-- id: sfinx
- support: untested
- notes: ""
- since_version: 1.8.0
- stable_platforms: dos
- unstable_platforms: ""
-- id: lab
- support: good
- notes: ""
- since_version: 1.8.0
- stable_platforms: dos,win
- unstable_platforms: amiga
-- id: nebular
- support: untested
- notes: '- Original floppy version must be installed using DosBox before game is
- playable.'
- since_version: 1.8.0
- stable_platforms: dos
- unstable_platforms: ""
-- id: maniac
- support: good
- notes: '- Minor graphical glitches in NES version'
- since_version: 1.8.0
- stable_platforms: amiga,apple2,atarist,c64,dos,nes
- unstable_platforms: ""
-- id: pjgames
- support: good
- notes: ""
- since_version: 1.8.0
- stable_platforms: mac,win
- unstable_platforms: ""
-- id: rosetattoo
- support: untested
- notes: ""
- since_version: 1.8.0
- stable_platforms: dos
- unstable_platforms: ""
-- id: scalpel
- support: untested
- notes: ""
- since_version: 1.8.0
- stable_platforms: dos
- unstable_platforms: 3do,dos
-- id: sword25
- support: untested
- notes: ""
- since_version: 1.8.0
- stable_platforms: win
- unstable_platforms: ""
-- id: zgi
- support: good
- notes: '- The hires MPEG2 videos of the DVD version aren''t supported yet. The lowres
- videos are used instead'
- since_version: 1.8.0
- stable_platforms: win
- unstable_platforms: ""
-- id: znemesis
- support: good
- notes: ""
- since_version: 1.8.0
- stable_platforms: dos,win
- unstable_platforms: ""
-- id: hires0
- support: good
- notes: ""
- since_version: 1.9.0
- stable_platforms: apple2
- unstable_platforms: ""
-- id: hires1
- support: good
- notes: ""
- since_version: 1.9.0
- stable_platforms: apple2
- unstable_platforms: ""
-- id: hires2
- support: good
- notes: ""
- since_version: 1.9.0
- stable_platforms: apple2
- unstable_platforms: ""
-- id: bc
- support: good
- notes: ""
- since_version: 1.9.0
- stable_platforms: amiga,apple2gs,coco3,dos
- unstable_platforms: ""
-- id: goldrush
- support: good
- notes: ""
- since_version: 1.9.0
- stable_platforms: amiga,apple2gs,atarist,coco3,dos,mac
- unstable_platforms: ""
-- id: kq1
- support: good
- notes: ""
- since_version: 1.9.0
- stable_platforms: amiga,apple2gs,atarist,coco3,dos,mac
- unstable_platforms: ""
-- id: kq2
- support: good
- notes: ""
- since_version: 1.9.0
- stable_platforms: amiga,apple2gs,coco3,dos,mac
- unstable_platforms: ""
-- id: kq3
- support: good
- notes: ""
- since_version: 1.9.0
- stable_platforms: amiga,apple2gs,atarist,coco3,dos,mac
- unstable_platforms: ""
-- id: kq4
- support: good
- notes: ""
- since_version: 1.9.0
- stable_platforms: apple2gs,coco3,dos
- unstable_platforms: ""
-- id: lsl1
- support: good
- notes: ""
- since_version: 1.9.0
- stable_platforms: amiga,apple2gs,atarist,coco3,dos,mac
- unstable_platforms: ""
-- id: mh1
- support: good
- notes: ""
- since_version: 1.9.0
- stable_platforms: amiga,apple2gs,atarist,coco3,dos
- unstable_platforms: ""
-- id: mh2
- support: good
- notes: ""
- since_version: 1.9.0
- stable_platforms: amiga,atarist,coco3,dos
- unstable_platforms: ""
-- id: mixedup
- support: good
- notes: ""
- since_version: 1.9.0
- stable_platforms: apple2gs,coco3,dos
- unstable_platforms: ""
-- id: pq1
- support: good
- notes: ""
- since_version: 1.9.0
- stable_platforms: amiga,apple2gs,coco3,dos,mac
- unstable_platforms: ""
-- id: sq1
- support: good
- notes: ""
- since_version: 1.9.0
- stable_platforms: amiga,apple2gs,atarist,coco3,dos,mac
- unstable_platforms: ""
-- id: sq2
- support: good
- notes: ""
- since_version: 1.9.0
- stable_platforms: amiga,apple2gs,atarist,coco3,dos,mac
- unstable_platforms: ""
-- id: gnap
- support: untested
- notes: ""
- since_version: 1.9.0
- stable_platforms: win
- unstable_platforms: ""
-- id: myst
- support: untested
- notes: ""
- since_version: 1.9.0
- stable_platforms: win
- unstable_platforms: ""
-- id: mystme
- support: untested
- notes: ""
- since_version: 1.9.0
- stable_platforms: win
- unstable_platforms: ""
-- id: neverhood
- support: good
- notes: ""
- since_version: 1.7,0
- stable_platforms: win
- unstable_platforms: ""
-- id: ringworld2
- support: untested
- notes: ""
- since_version: 1.7,0
- stable_platforms: dos
- unstable_platforms: ""
-- id: voyeur
- support: good
- notes: ""
- since_version: 1.7,0
- stable_platforms: dos
- unstable_platforms: ""
-- id: hires3
- support: good
- notes: ""
- since_version: 2.0.0
- stable_platforms: apple2
- unstable_platforms: ""
-- id: hires4
- support: good
- notes: ""
- since_version: 2.0.0
- stable_platforms: apple2
- unstable_platforms: ""
-- id: hires5
- support: good
- notes: ""
- since_version: 2.0.0
- stable_platforms: apple2
- unstable_platforms: ""
-- id: hires6
- support: good
- notes: ""
- since_version: 2.0.0
- stable_platforms: apple2
- unstable_platforms: ""
-- id: fullpipe
- support: good
- notes: ""
- since_version: 2.0.0
- stable_platforms: steam,win
- unstable_platforms: android,ios
-- id: myst
- support: excellent
- notes: ""
- since_version: 2.0.0
- stable_platforms: win
- unstable_platforms: ""
-- id: mystme
- support: good
- notes: '- The hint system is not available'
- since_version: 2.0.0
- stable_platforms: win
- unstable_platforms: ""
-- id: riven
- support: good
- notes: ""
- since_version: 2.0.0
- stable_platforms: mac,win
- unstable_platforms: ""
-- id: plumbers
- support: untested
- notes: ""
- since_version: 2.0.0
- stable_platforms: win
- unstable_platforms: ""
-- id: chest
- support: broken
- notes: ""
- since_version: 2.0.0
- stable_platforms: dos
- unstable_platforms: ""
-- id: gk1
- support: good
- notes: ""
- since_version: 2.0.0
- stable_platforms: dos,win
- unstable_platforms: mac
-- id: gk2
- support: excellent
- notes: '- Video files in the original (1.0) release are corrupt (bad A/V sync)'
- since_version: 2.0.0
- stable_platforms: dos,win
- unstable_platforms: mac
-- id: hoyle5
- support: broken
- notes: ""
- since_version: 2.0.0
- stable_platforms: win
- unstable_platforms: mac
-- id: kq7
- support: good
- notes: ""
- since_version: 2.0.0
- stable_platforms: dos,win
- unstable_platforms: mac
-- id: kquestions
- support: good
- notes: ""
- since_version: 2.0.0
- stable_platforms: dos
- unstable_platforms: ""
-- id: lighthouse
- support: good
- notes: ""
- since_version: 2.0.0
- stable_platforms: dos
- unstable_platforms: mac
-- id: lsl6hires
- support: good
- notes: ""
- since_version: 2.0.0
- stable_platforms: dos,win
- unstable_platforms: mac
-- id: lsl7
- support: excellent
- notes: ""
- since_version: 2.0.0
- stable_platforms: dos
- unstable_platforms: mac
-- id: mothergoosehires
- support: good
- notes: ""
- since_version: 2.0.0
- stable_platforms: win
- unstable_platforms: mac
-- id: phantasmagoria
- support: good
- notes: ""
- since_version: 2.0.0
- stable_platforms: dos,win
- unstable_platforms: mac
-- id: phantasmagoria2
- support: excellent
- notes: ""
- since_version: 2.0.0
- stable_platforms: win
- unstable_platforms: ""
-- id: pq4
- support: broken
- notes: ""
- since_version: 2.0.0
- stable_platforms: dos
- unstable_platforms: mac
-- id: pqswat
- support: untested
- notes: ""
- since_version: 2.0.0
- stable_platforms: dos
- unstable_platforms: mac
-- id: qfg4
- support: broken
- notes: ""
- since_version: 2.0.0
- stable_platforms: dos,win
- unstable_platforms: ""
-- id: rama
- support: good
- notes: ""
- since_version: 2.0.0
- stable_platforms: dos
- unstable_platforms: mac
-- id: shivers
- support: excellent
- notes: ""
- since_version: 2.0.0
- stable_platforms: win
- unstable_platforms: mac
-- id: sq6
- support: good
- notes: ""
- since_version: 2.0.0
- stable_platforms: dos,win
- unstable_platforms: mac
-- id: torin
- support: excellent
- notes: ""
- since_version: 2.0.0
- stable_platforms: win
- unstable_platforms: mac
-- id: titanic
- support: good
- notes: ""
- since_version: 2.0.0
- stable_platforms: win
- unstable_platforms: ""
-- id: amazon
- support: good
- notes: ""
- since_version: 2.1.0
- stable_platforms: dos
- unstable_platforms: dos
-- id: pn
- support: good
- notes: '- Minor spacing glitches with charset - No day to night fading in Amiga
- and Atari ST versions'
- since_version: 2.1.0
- stable_platforms: amiga,atarist,dos
- unstable_platforms: ""
-- id: waxworks
- support: good
- notes: '- Amiga version has not been confirmed as completable. - DOS version doesn''t
- load or save items states correctly, leading to various bugs'
- since_version: 2.1.0
- stable_platforms: amiga,dos
- unstable_platforms: ""
-- id: bbvs
- support: good
- notes: ""
- since_version: 2.1.0
- stable_platforms: win
- unstable_platforms: ""
-- id: bladerunner
- support: good
- notes: ""
- since_version: 2.1.0
- stable_platforms: win
- unstable_platforms: ""
-- id: sfinx
- support: good
- notes: ""
- since_version: 2.1.0
- stable_platforms: dos
- unstable_platforms: ""
-- id: versailles
- support: good
- notes: ""
- since_version: 2.1.0
- stable_platforms: dos,mac,win
- unstable_platforms: ""
-- id: gnap
- support: good
- notes: ""
- since_version: 2.1.0
- stable_platforms: win
- unstable_platforms: ""
-- id: hdb
- support: excellent
- notes: ""
- since_version: 2.1.0
- stable_platforms: linux,pocketpc,win
- unstable_platforms: ""
-- id: duckman
- support: good
- notes: ""
- since_version: 2.1.0
- stable_platforms: win
- unstable_platforms: ""
-- id: eob
- support: good
- notes: ""
- since_version: 2.1.0
- stable_platforms: amiga,dos
- unstable_platforms: pc98,segacd
-- id: eob2
- support: excellent
- notes: ""
- since_version: 2.1.0
- stable_platforms: amiga,dos,fmtowns
- unstable_platforms: pc98
-- id: nebular
- support: good
- notes: '- Original floppy version must be installed using DosBox before game is
- playable.'
- since_version: 2.1.0
- stable_platforms: dos
- unstable_platforms: ""
-- id: mortevielle
- support: good
- notes: '- No speech synthesis'
- since_version: 2.1.0
- stable_platforms: dos
- unstable_platforms: ""
-- id: plumbers
- support: good
- notes: ""
- since_version: 2.1.0
- stable_platforms: win
- unstable_platforms: ""
-- id: prince
- support: untested
- notes: ""
- since_version: 2.1.0
- stable_platforms: win
- unstable_platforms: ""
-- id: hoyle5
- support: good
- notes: '- The poker game of the Hoyle Classic Games collection is not yet supported'
- since_version: 2.1.0
- stable_platforms: win
- unstable_platforms: mac
-- id: hoyle5solitaire
- support: good
- notes: ""
- since_version: 2.1.0
- stable_platforms: win
- unstable_platforms: ""
-- id: pq4
- support: good
- notes: ""
- since_version: 2.1.0
- stable_platforms: dos
- unstable_platforms: mac
-- id: pqswat
- support: good
- notes: ""
- since_version: 2.1.0
- stable_platforms: dos
- unstable_platforms: mac
-- id: qfg4
- support: good
- notes: ""
- since_version: 2.1.0
- stable_platforms: dos,win
- unstable_platforms: ""
-- id: atlantis
- support: excellent
- notes: '- FM-TOWNS Kanji version requires the FM-TOWNS Font ROM'
- since_version: 2.1.0
- stable_platforms: amiga,dos,fmtowns,mac
- unstable_platforms: ""
-- id: monkey2
- support: excellent
- notes: '- Demo version often crashes due to missing resources, since it was never
- meant to be playable - No support for playing back the recorded file of gameplay
- in demo version - FM-TOWNS Kanji version requires the FM-TOWNS Font ROM'
- since_version: 2.1.0
- stable_platforms: amiga,dos,fmtowns,mac
- unstable_platforms: ""
-- id: rosetattoo
- support: good
- notes: ""
- since_version: 2.1.0
- stable_platforms: dos
- unstable_platforms: ""
-- id: scalpel
- support: good
- notes: ""
- since_version: 2.1.0
- stable_platforms: dos
- unstable_platforms: 3do,dos
-- id: msn1
- support: good
- notes: ""
- since_version: 2.1.0
- stable_platforms: dos
- unstable_platforms: ""
-- id: msn2
- support: good
- notes: ""
- since_version: 2.1.0
- stable_platforms: dos
- unstable_platforms: ""
-- id: sword25
- support: excellent
- notes: ""
- since_version: 2.1.0
- stable_platforms: win
- unstable_platforms: ""
-- id: ringworld2
- support: good
- notes: ""
- since_version: 2.1.0
- stable_platforms: dos
- unstable_platforms: ""
-- id: cloudsofxeen
- support: good
- notes: ""
- since_version: 2.1.0
- stable_platforms: dos
- unstable_platforms: dos
-- id: darksideofxeen
- support: good
- notes: ""
- since_version: 2.1.0
- stable_platforms: dos
- unstable_platforms: dos
-- id: swordsofxeen
- support: good
- notes: ""
- since_version: 2.1.0
- stable_platforms: dos
- unstable_platforms: ""
-- id: worldofxeen
- support: good
- notes: ""
- since_version: 2.1.0
- stable_platforms: dos
- unstable_platforms: dos
-- id: zgi
- support: good
- notes: ""
- since_version: 2.1.0
- stable_platforms: win
- unstable_platforms: ""
-- id: os
- support: good
- notes: ""
- since_version: 2.2.0
- stable_platforms: amiga,atarist,dos
- unstable_platforms: ""
-- id: dragons
- support: good
- notes: ""
- since_version: 2.2.0
- stable_platforms: psx
- unstable_platforms: ""
-- id: griffon
- support: good
- notes: ""
- since_version: 2.2.0
- stable_platforms: win
- unstable_platforms: ""
-- id: eob
- support: excellent
- notes: ""
- since_version: 2.2.0
- stable_platforms: amiga,dos,pc98,segacd
- unstable_platforms: ""
-- id: lol
- support: excellent
- notes: ""
- since_version: 2.2.0
- stable_platforms: dos,fmtowns,pc98
- unstable_platforms: ""
-- id: mortevielle
- support: good
- notes: ""
- since_version: 2.2.0
- stable_platforms: dos
- unstable_platforms: ""
-- id: maniac
- support: good
- notes: ""
- since_version: 2.2.0
- stable_platforms: amiga,apple2,atarist,c64,dos,nes
- unstable_platforms: ""
-- id: ultima4
- support: good
- notes: '- FM-Towns may be working, but we''ll need someone with a copy to provide
- us a detection entry and test it out. - Provides an optional VGA enhanced mode'
- since_version: 2.2.0
- stable_platforms: dos
- unstable_platforms: ""
-- id: ultima6
- support: good
- notes: '- German translation patch is also partially supported, with some interface
- elements not translated. - Provides an optional enhanced mode that has a full
- screen map and container widgets.'
- since_version: 2.2.0
- stable_platforms: dos
- unstable_platforms: pc98
-- id: ultima8
- support: good
- notes: ""
- since_version: 2.2.0
- stable_platforms: dos
- unstable_platforms: ""
-- id: adrift
- support: good
- notes: '- Version 5 is not yet supported'
- since_version: 2.2.0
- stable_platforms: dos
- unstable_platforms: ""
-- id: advsys
- support: good
- notes: ""
- since_version: 2.2.0
- stable_platforms: dos
- unstable_platforms: ""
-- id: agt
- support: good
- notes: ""
- since_version: 2.2.0
- stable_platforms: dos
- unstable_platforms: ""
-- id: alan
- support: good
- notes: ""
- since_version: 2.2.0
- stable_platforms: dos
- unstable_platforms: ""
-- id: archetype
- support: good
- notes: ""
- since_version: 2.2.0
- stable_platforms: dos
- unstable_platforms: ""
-- id: hugo
- support: good
- notes: ""
- since_version: 2.2.0
- stable_platforms: dos
- unstable_platforms: ""
-- id: jacl
- support: good
- notes: ""
- since_version: 2.2.0
- stable_platforms: dos
- unstable_platforms: ""
-- id: level9
- support: good
- notes: ""
- since_version: 2.2.0
- stable_platforms: dos
- unstable_platforms: ""
-- id: magnetic
- support: good
- notes: ""
- since_version: 2.2.0
- stable_platforms: dos
- unstable_platforms: ""
-- id: quest
- support: good
- notes: ""
- since_version: 2.2.0
- stable_platforms: dos
- unstable_platforms: ""
-- id: scottadams
- support: good
- notes: ""
- since_version: 2.2.0
- stable_platforms: dos
- unstable_platforms: ""
-- id: zcode
- support: good
- notes: ""
- since_version: 2.2.0
- stable_platforms: dos
- unstable_platforms: ""
-- id: chest
- support: good
- notes: '- DOS versions are supported by this target'
- since_version: 2.2.0
- stable_platforms: dos
- unstable_platforms: ""
-- id: grim
- support: good
- notes: ""
- since_version: DEV
- stable_platforms: win
- unstable_platforms: ""
-- id: monkey4
- support: good
- notes: ""
- since_version: DEV
- stable_platforms: win
- unstable_platforms: ps2
-- id: myst3
- support: good
- notes: ""
- since_version: DEV
- stable_platforms: win
- unstable_platforms: ""
-- id: tlj
- support: good
- notes: ""
- since_version: DEV
- stable_platforms: win
- unstable_platforms: ""
-...
+-
+ id: atlantis
+ support: good
+ notes: '- Music loud on some systems, run with -m30 to lower music volume'
+ since_version: 0.1.0
+ stable_platforms: dos
+ unstable_platforms: 'fmtowns,mac,amiga'
+-
+ id: ft
+ support: broken
+ notes: 'Somewhat playable with #define FULL_THROTTLE'
+ since_version: 0.1.0
+ stable_platforms: dos
+ unstable_platforms: ''
+-
+ id: indy3
+ support: broken
+ notes: '- The intro freezes on the LucasArts logo - hit escape to proceed - Actors not visible, and an error with walkboxes makes it impossible to walk to anything - Inventory scrolling not implemented, making it impossible to carry more than 4 objects at once - Missing/Incorrect SCUMM opcodes cause occasional crashes'
+ since_version: 0.1.0
+ stable_platforms: dos
+ unstable_platforms: 'atarist,mac,fmtowns,amiga'
+-
+ id: loom
+ support: broken
+ notes: '- Intro will crash ScummVM at the end, so hit escape to bypass it - Game has graphic issues - May crash due to unimplemented opcodes'
+ since_version: 0.1.0
+ stable_platforms: dos
+ unstable_platforms: 'pce,mac,fmtowns'
+-
+ id: monkey
+ support: broken
+ notes: '- VGA Floppy version not supported'
+ since_version: 0.1.0
+ stable_platforms: dos
+ unstable_platforms: 'segacd,fmtowns,mac,atarist,amiga'
+-
+ id: monkey2
+ support: excellent
+ notes: ''
+ since_version: 0.1.0
+ stable_platforms: dos
+ unstable_platforms: 'fmtowns,mac,amiga'
+-
+ id: samnmax
+ support: broken
+ notes: '- Inventory is not resorted after visiting the carnival lost & found - MIDI music requires SAMNMAX to be defined'
+ since_version: 0.1.0
+ stable_platforms: dos
+ unstable_platforms: ''
+-
+ id: tentacle
+ support: excellent
+ notes: '- Maniac Mansion isn''t playable on Ed''s computer. To play the included copy, use ''Add Game'' from the main ScummVM launcher and select the MANIAC directory inside the DOTT game directory'
+ since_version: 0.1.0
+ stable_platforms: dos
+ unstable_platforms: ''
+-
+ id: zak
+ support: broken
+ notes: '- The intro freezes on the LucasArts logo - hit escape to proceed - Actors not visible, and an error with walkboxes makes it impossible to walk to anything'
+ since_version: 0.1.0
+ stable_platforms: 'dos,fmtowns'
+ unstable_platforms: 'atarist,c64,amiga'
+-
+ id: simon1
+ support: excellent
+ notes: ''
+ since_version: 0.2.0
+ stable_platforms: win
+ unstable_platforms: 'amiga,amigacd32,acorn,dos'
+-
+ id: atlantis
+ support: excellent
+ notes: '- Music loud on some systems, run with -m30 to lower music volume'
+ since_version: 0.2.0
+ stable_platforms: dos
+ unstable_platforms: 'fmtowns,mac,amiga'
+-
+ id: comi
+ support: broken
+ notes: '- Not implemented yet. ScummVM doesn''t understand new-style MAXS block, among other things'
+ since_version: 0.2.0
+ stable_platforms: win
+ unstable_platforms: ''
+-
+ id: dig
+ support: broken
+ notes: '- Freezes occasionally due to actors not walking correctly - No in-game music, and some animations play incorrectly - Crashes due to missing SCUMM opcodes'
+ since_version: 0.2.0
+ stable_platforms: dos
+ unstable_platforms: ''
+-
+ id: ft
+ support: bugged
+ notes: '- Game is missing action sequences - Music is not continuous, and may pause, restart, and otherwise act oddly - SMUSH audio (movie cutscenes) is a lot quieter than in-game voice, which is abnormally loud - Lack of INSANE subsystem prevents action sequences, which skips a substantial portion of the game - Derby scene is only properly controllable using the mouse'
+ since_version: 0.2.0
+ stable_platforms: dos
+ unstable_platforms: ''
+-
+ id: ft
+ support: broken
+ notes: '- No in-game music, and some animations play incorrectly - Crashes due to missing SCUMM opcodes'
+ since_version: 0.2.0
+ stable_platforms: dos
+ unstable_platforms: ''
+-
+ id: indy3
+ support: broken
+ notes: '- Inventory scrolling not implemented, making it impossible to carry more than 4 objects at once - Missing/Incorrect SCUMM opcodes cause occasional crashes'
+ since_version: 0.2.0
+ stable_platforms: dos
+ unstable_platforms: 'atarist,mac,fmtowns,amiga'
+-
+ id: loom
+ support: bugged
+ notes: '- CD music and voices are not always in perfect sync with cutscenes'
+ since_version: 0.2.0
+ stable_platforms: dos
+ unstable_platforms: 'pce,mac,fmtowns'
+-
+ id: monkey
+ support: bugged
+ notes: '- EGA version not supported'
+ since_version: 0.2.0
+ stable_platforms: dos
+ unstable_platforms: 'segacd,fmtowns,mac,atarist,amiga'
+-
+ id: samnmax
+ support: excellent
+ notes: '- Some mini games may not work'
+ since_version: 0.2.0
+ stable_platforms: dos
+ unstable_platforms: ''
+-
+ id: zak
+ support: bugged
+ notes: '- DOS EGA is not supported - No music or sound effects'
+ since_version: 0.2.0
+ stable_platforms: 'dos,fmtowns'
+ unstable_platforms: 'atarist,c64,amiga'
+-
+ id: simon1
+ support: excellent
+ notes: '- Minor graphical glitches when using ring - Minor graphical glitch with Sordid statue after leaving room - DOS issues - Freezes briefly when Swampling leaves his house - Freezes briefly when talking to demons in Sordid''s Tower - No inventory scrolling arrows shown, can still move around inventory though'
+ since_version: 0.3.0
+ stable_platforms: 'acorn,dos,win'
+ unstable_platforms: 'amiga,amigacd32'
+-
+ id: simon2
+ support: excellent
+ notes: '- Various minor graphical glitches - Text in Copy Protection screen is only shown for short time - Freezes briefly when Pirate Captain is talking to Mate, when Simon tries to escape - Some music is missing or wrong'
+ since_version: 0.3.0
+ stable_platforms: 'dos,win'
+ unstable_platforms: 'amiga,mac'
+-
+ id: dig
+ support: good
+ notes: ''
+ since_version: 0.3.0
+ stable_platforms: 'dos,steam'
+ unstable_platforms: ''
+-
+ id: indy3
+ support: broken
+ notes: '- Some major crashes may occur in the catacombs - Indiana may be able to walk in odd places, in some rooms - No music or sound effects in VGA version - EGA version not supported'
+ since_version: 0.3.0
+ stable_platforms: dos
+ unstable_platforms: 'atarist,mac,fmtowns,amiga'
+-
+ id: loom
+ support: bugged
+ notes: '- EGA version not supported'
+ since_version: 0.3.0
+ stable_platforms: dos
+ unstable_platforms: 'pce,mac,fmtowns'
+-
+ id: monkey
+ support: bugged
+ notes: '- No sound effects - No music looping in VGA version - EGA version is not implemented - Copy protection screen will show, but game crashes shortly afterwards. - Graphics decoders and SCUMM opcodes not implimented yet'
+ since_version: 0.3.0
+ stable_platforms: dos
+ unstable_platforms: 'segacd,fmtowns,mac,atarist,amiga'
+-
+ id: samnmax
+ support: excellent
+ notes: '- Highway subgame doesn''t behave correctly'
+ since_version: 0.3.0
+ stable_platforms: dos
+ unstable_platforms: ''
+-
+ id: simon1
+ support: excellent
+ notes: '- Minor graphical glitches when using ring - Minor graphical glitch with Sordid statue after leaving room - Amiga issues: - All graphics are decoded incorrectly - pkd compression format is unknown (CD) - No music - DOS issues - Freezes briefly when Swampling leaves his house - Freezes briefly when talking to demons in Sordid''s Tower - No inventory scrolling arrows shown, can still move around inventory though'
+ since_version: 0.4.0
+ stable_platforms: 'acorn,dos,win'
+ unstable_platforms: 'amiga,amigacd32'
+-
+ id: simon2
+ support: excellent
+ notes: '- Minor graphical glitch when giving items to baby - Text in Copy Protection screen is only shown for short time - Freezes briefly when Pirate Captain is talking to Mate, when Simon tries to escape - Some music is missing or wrong - F10 key animation is different in Amiga & Macintosh versions'
+ since_version: 0.4.0
+ stable_platforms: 'dos,amiga,mac,win'
+ unstable_platforms: ''
+-
+ id: comi
+ support: bugged
+ notes: '- Ship-to-ship is broken and several graphical glitches are present'
+ since_version: 0.4.0
+ stable_platforms: win
+ unstable_platforms: ''
+-
+ id: fbear
+ support: broken
+ notes: '- Various errors and asserts that prevent the game from being finishable - talkie data not synced/properly implemented'
+ since_version: 0.4.0
+ stable_platforms: '3do,dos,win'
+ unstable_platforms: mac
+-
+ id: fbpack
+ support: bugged
+ notes: '- Mini games seem to have various problems - Reversi/Go Fish/Lines and Boxes: o6_actorOps: case 218 graphics glitches - Coloring/Tangrams: Error(6:209:0x40D5): Invalid opcode ''db'' (readFile) '
+ since_version: 0.4.0
+ stable_platforms: '3do,dos'
+ unstable_platforms: ''
+-
+ id: funpack
+ support: broken
+ notes: '- Mini games seem to have various problems - Puzzle blocks/Pinball/Remember/Cheese King/Tic-Tac-Toe: Works but colour isn''t set properly so game is black and white - Checkers: The checkers have some graphical glitches (actorOps case 218) - talkie data not synced/properly implemented'
+ since_version: 0.4.0
+ stable_platforms: '3do,dos'
+ unstable_platforms: ''
+-
+ id: indy3
+ support: good
+ notes: '- Indiana may be able to walk in odd places, in some rooms - No sound effects in VGA version - No music or sound effects in EGA version'
+ since_version: 0.4.0
+ stable_platforms: dos
+ unstable_platforms: 'atarist,mac,fmtowns,amiga'
+-
+ id: loom
+ support: bugged
+ notes: '- No music or sound effects in EGA version'
+ since_version: 0.4.0
+ stable_platforms: dos
+ unstable_platforms: 'pce,mac,fmtowns'
+-
+ id: maniac
+ support: broken
+ notes: '- Enhanced version displays the initial character selection screen. Neither input nor text are implemented currently, so kids cannot be selected - Internal functionality (walkboxes, text, input) are missing - SCUMM v2 opcodes not completely implemented yet'
+ since_version: 0.4.0
+ stable_platforms: dos
+ unstable_platforms: 'apple2,c64,nes,mac,atarist,amiga'
+-
+ id: monkey
+ support: good
+ notes: '- No sound effects'
+ since_version: 0.4.0
+ stable_platforms: dos
+ unstable_platforms: 'segacd,fmtowns,mac,atarist,amiga'
+-
+ id: pass
+ support: bugged
+ notes: '- No subtitles in indy3 demo - No sound effects'
+ since_version: 0.4.0
+ stable_platforms: dos
+ unstable_platforms: ''
+-
+ id: puttmoon
+ support: broken
+ notes: '- Fails an AKOS related assertion shortly after starting - talkie data not synced/properly implemented - cursor doesn''t turn to arrow on the right hand side of the screen in the first room in the demo'
+ since_version: 0.4.0
+ stable_platforms: dos
+ unstable_platforms: mac
+-
+ id: puttputt
+ support: broken
+ notes: '- Fails to start after looking for seemingly non existent object - talkie data not synced/properly implemented'
+ since_version: 0.4.0
+ stable_platforms: '3do,dos,win'
+ unstable_platforms: mac
+-
+ id: zak
+ support: broken
+ notes: '- DOS EGA - The introduction sequence runs, and the game can be started by escaping past it. However neither text nor input are implemented. - Internal functionality (walkboxes, text, input) are missing - SCUMM v2 opcodes not completely implemented yet - FM-TOWNS - No sound effect looping'
+ since_version: 0.4.0
+ stable_platforms: 'dos,fmtowns'
+ unstable_platforms: 'atarist,c64,amiga'
+-
+ id: sky
+ support: broken
+ notes: '- Only the introduction works'
+ since_version: 0.4.0
+ stable_platforms: dos
+ unstable_platforms: amiga
+-
+ id: simon2
+ support: excellent
+ notes: '- Minor graphical glitch when giving items to baby - Text in Copy Protection screen is only shown for short time - Freezes briefly when Pirate Captain is talking to Mate, when Simon tries to escape - F10 key animation is different in Amiga & Macintosh versions'
+ since_version: 0.4.1
+ stable_platforms: 'dos,amiga,mac,win'
+ unstable_platforms: ''
+-
+ id: maniac
+ support: bugged
+ notes: '- No music or sound effects - Enhanced version runs, although in-game there are still many things wrong'
+ since_version: 0.4.1
+ stable_platforms: dos
+ unstable_platforms: 'apple2,c64,nes,mac,atarist,amiga'
+-
+ id: zak
+ support: bugged
+ notes: '- Classic PC version does not start, due to script problems - Classic PC version actor costumes are broken, resulting in random crashes - No music or sound effects in DOS version - FM-TOWNS Kanji version not supported - FM-TOWNS No sound effect looping'
+ since_version: 0.4.1
+ stable_platforms: 'dos,fmtowns'
+ unstable_platforms: 'atarist,c64,amiga'
+-
+ id: simon2
+ support: excellent
+ notes: '- Text in Copy Protection screen is only shown for short time - Freezes briefly when Pirate Captain is talking to Mate, when Simon tries to escape - F10 key animation is different in Amiga & Macintosh versions'
+ since_version: 0.5.0
+ stable_platforms: 'dos,amiga,mac,win'
+ unstable_platforms: ''
+-
+ id: atlantis
+ support: excellent
+ notes: '- Loading of original instrument samples for Amiga version not implemented, so music differs from original interpreter - Music loud on some systems, run with -m30 to lower music volume - Various graphical glitches with Amiga version - No sound effects with Amiga version'
+ since_version: 0.5.0
+ stable_platforms: 'amiga,dos'
+ unstable_platforms: 'fmtowns,mac'
+-
+ id: indy3
+ support: good
+ notes: '- FM-TOWNS Kanji version not supported - FM-TOWNS Sounds with partial loops, loop the whole sample instead of just that portion - Indiana may be able to walk in odd places, in some rooms - No music with Amiga version - No sound effect looping with Amiga version - No sound effects in VGA version'
+ since_version: 0.5.0
+ stable_platforms: 'amiga,dos,fmtowns'
+ unstable_platforms: 'atarist,mac'
+-
+ id: loom
+ support: good
+ notes: '- No music with Amiga version - No sound effect looping with Amiga version'
+ since_version: 0.5.0
+ stable_platforms: 'amiga,dos'
+ unstable_platforms: 'pce,mac,fmtowns'
+-
+ id: maniac
+ support: bugged
+ notes: '- Enhanced PC version is completable - Classic PC version actor costumes are broken, resulting in random crashes - No music or sound effects with Amiga and Classic PC versions'
+ since_version: 0.5.0
+ stable_platforms: 'amiga,dos'
+ unstable_platforms: 'apple2,c64,nes,mac,atarist'
+-
+ id: monkey
+ support: good
+ notes: '- No music or sound effects in the Amiga version - No sound effects'
+ since_version: 0.5.0
+ stable_platforms: 'amiga,dos'
+ unstable_platforms: 'segacd,fmtowns,mac,atarist'
+-
+ id: monkey2
+ support: excellent
+ notes: '- Loading of original instrument samples for Amiga version not implemented, so music differs from original interpreter. - No sound effects with Amiga version - Various graphical glitches with Amiga version'
+ since_version: 0.5.0
+ stable_platforms: 'amiga,dos'
+ unstable_platforms: 'fmtowns,mac'
+-
+ id: zak
+ support: bugged
+ notes: '- FM-TOWNS Kanji version not supported - FM-TOWNS Sounds with partial loops, loop the whole sample instead of just that portion - Classic PC version does not start, due to script problems - Classic PC version actor costumes are broken, resulting in random crashes - No music or sound effects with Amiga'
+ since_version: 0.5.0
+ stable_platforms: 'amiga,dos,fmtowns'
+ unstable_platforms: 'atarist,c64'
+-
+ id: sky
+ support: bugged
+ notes: '- Requires the sky.cpt resource file to be placed in the game directory - Random crashes have been reported - Floppy demos aren''t supported - The following bugs are present in the original game and can''t be fixed: - The voice files for some sentences are missing. - This is especially noticeable in the court- and Mrs. Piermont sequence. - The fonts for the LINC terminal are partially incorrect and the text sometimes passes the screen borders - Special characters for french and italian subtitles are incorrect sometimes'
+ since_version: 0.5.0
+ stable_platforms: dos
+ unstable_platforms: amiga
+-
+ id: simon1
+ support: excellent
+ notes: '- Acorn Disk version not supported - Minor palette glitches in Amiga versions'
+ since_version: 0.6.0
+ stable_platforms: 'acorn,dos,win'
+ unstable_platforms: amiga
+-
+ id: simon2
+ support: excellent
+ notes: '- F10 key animation is different in Amiga & Macintosh versions'
+ since_version: 0.6.0
+ stable_platforms: 'dos,amiga,mac,win'
+ unstable_platforms: ''
+-
+ id: queen
+ support: good
+ notes: '- Some versions may require the queen.tbl resource file to be placed in the game directory. This is not required for the freeware releases.'
+ since_version: 0.6.0
+ stable_platforms: dos
+ unstable_platforms: amiga
+-
+ id: atlantis
+ support: excellent
+ notes: '- FM-TOWNS Kanji version requires the FM-TOWNS Font ROM - Loading of original instrument samples for Amiga version not implemented, so music differs from original interpreter - Music loud on some systems, run with -m30 to lower music volume - Various graphical glitches with Amiga version'
+ since_version: 0.6.0
+ stable_platforms: 'amiga,dos,fmtowns,mac'
+ unstable_platforms: ''
+-
+ id: fbear
+ support: good
+ notes: '- Piano sounds aren''t the correct pitch in DOS version - Cursors aren''t scaled correctly - Decorations on birthday cake aren''t remembered - Several sound effects are missing'
+ since_version: 0.6.0
+ stable_platforms: '3do,dos,win'
+ unstable_platforms: mac
+-
+ id: fbpack
+ support: bugged
+ notes: '- Mini games seem to have various problems - Reversi/Go Fish/Lines and Boxes: o6_actorOps: case 218 graphics glitches - Coloring: Painting has no effect - Tangrams: Can only use central tangram piece - Talkie data not synced/properly implemented'
+ since_version: 0.6.0
+ stable_platforms: '3do,dos'
+ unstable_platforms: ''
+-
+ id: ft
+ support: bugged
+ notes: '- Music is not continuous, and may pause, restart, and otherwise act oddly - SMUSH audio (movie cutscenes) is a lot quieter than in-game voice, which is abnormally loud'
+ since_version: 0.6.0
+ stable_platforms: dos
+ unstable_platforms: ''
+-
+ id: funpack
+ support: broken
+ notes: '- Mini games seem to have various problems - Cheese King: Triggers an assertion - Checkers: The checkers have some graphical glitches (actorOps case 218)'
+ since_version: 0.6.0
+ stable_platforms: '3do,dos'
+ unstable_platforms: ''
+-
+ id: indy3
+ support: good
+ notes: '- There is no support for the Macintosh interface - FM-TOWNS Kanji version not supported - Indiana may be able to walk in odd places, in some rooms - Atari ST and Mac versions require pcjr or pcspk music driver'
+ since_version: 0.6.0
+ stable_platforms: 'amiga,atarist,dos,fmtowns,mac'
+ unstable_platforms: ''
+-
+ id: loom
+ support: excellent
+ notes: '- The Roland update from LucasArts is required for MIDI support - No music or sound effects in the Macintosh version - Mac version crashes after copy protection screen - There is no support for the Macintosh interface - Fades are seemingly different - Text palette sometimes incorrect - Distaff occasionally pink - Kanji version isn''t supported - Use boot parameter to choose difficulty: - 0 practice (default) - 1 standard - 2 expert'
+ since_version: 0.6.0
+ stable_platforms: 'amiga,atarist,dos,fmtowns,mac'
+ unstable_platforms: pce
+-
+ id: maniac
+ support: good
+ notes: '- Minor graphical glitches with actors in classic verison'
+ since_version: 0.6.0
+ stable_platforms: 'amiga,atarist,dos,mac'
+ unstable_platforms: 'apple2,c64,nes'
+-
+ id: monkey
+ support: excellent
+ notes: '- The Roland update from LucasArts is required for MIDI support in the EGA version - Dialogue choices in the SegaCD version can be selected with 6 (up) 7 (down) or mousewheel, with mouse button or number to select - No music or sound effects in the Amiga version - No sound effects in the SegaCD version'
+ since_version: 0.6.0
+ stable_platforms: 'amiga,atarist,dos,fmtowns,mac,segacd'
+ unstable_platforms: ''
+-
+ id: monkey2
+ support: excellent
+ notes: '- Demo version often crashes due to missing resources, since it was never meant to be playable - No support for playing back the recorded file of gameplay in demo version - FM-TOWNS Kanji version requires the FM-TOWNS Font ROM - Loading of original instrument samples for Amiga version not implemented, so music differs from original interpreter. - Various graphical glitches with Amiga version'
+ since_version: 0.6.0
+ stable_platforms: 'amiga,dos,fmtowns,mac'
+ unstable_platforms: ''
+-
+ id: pass
+ support: excellent
+ notes: ''
+ since_version: 0.6.0
+ stable_platforms: dos
+ unstable_platforms: ''
+-
+ id: puttmoon
+ support: broken
+ notes: '- Fails an AKOS related assertion shortly after starting - Creature behind garage door dissappears'
+ since_version: 0.6.0
+ stable_platforms: dos
+ unstable_platforms: mac
+-
+ id: puttputt
+ support: good
+ notes: '- Minor graphical glitches when cars come out of their garages on streets - Some sound effects missing'
+ since_version: 0.6.0
+ stable_platforms: '3do,dos,win'
+ unstable_platforms: mac
+-
+ id: zak
+ support: good
+ notes: '- FM-TOWNS Kanji version not supported - Minor graphical glitches with actors in classic verison - No music or sound effects in the Commodore 64 version - Several sound effects buggy or missing in Amiga version'
+ since_version: 0.6.0
+ stable_platforms: 'amiga,atarist,c64,dos,fmtowns'
+ unstable_platforms: ''
+-
+ id: sky
+ support: excellent
+ notes: '- Requires the sky.cpt resource file to be placed in the game directory - Floppy demos aren''t supported - The following bugs are present in the original game and can''t be fixed: - The voice files for some sentences are missing. - This is especially noticeable in the court- and Mrs. Piermont sequence. - The fonts for the LINC terminal are partially incorrect and the text sometimes passes the screen borders - Special characters for french and italian subtitles are incorrect sometimes'
+ since_version: 0.6.0
+ stable_platforms: dos
+ unstable_platforms: amiga
+-
+ id: sword1
+ support: good
+ notes: ''
+ since_version: 0.6.0
+ stable_platforms: 'dos,win'
+ unstable_platforms: 'psx,mac'
+-
+ id: sword2
+ support: good
+ notes: ''
+ since_version: 0.6.0
+ stable_platforms: win
+ unstable_platforms: psx
+-
+ id: fbpack
+ support: excellent
+ notes: ''
+ since_version: 0.6.1
+ stable_platforms: '3do,dos'
+ unstable_platforms: ''
+-
+ id: ft
+ support: good
+ notes: ''
+ since_version: 0.6.1
+ stable_platforms: dos
+ unstable_platforms: ''
+-
+ id: funpack
+ support: broken
+ notes: '- Mini games seem to have various problems - Cheese King: Triggers an assertion'
+ since_version: 0.6.1
+ stable_platforms: '3do,dos'
+ unstable_platforms: ''
+-
+ id: loom
+ support: excellent
+ notes: '- The Roland update from LucasArts is required for MIDI support - No music or sound effects in the Macintosh version - There is no support for the Macintosh interface - Fades are seemingly different - Text palette sometimes incorrect - Distaff occasionally pink - Kanji version isn''t supported - Use boot parameter to choose difficulty: - 0 practice (default) - 1 standard - 2 expert'
+ since_version: 0.6.1
+ stable_platforms: 'amiga,atarist,dos,fmtowns'
+ unstable_platforms: 'pce,mac'
+-
+ id: puttputt
+ support: good
+ notes: '- Minor graphical glitches when cars come out of their garages on streets'
+ since_version: 0.6.1
+ stable_platforms: '3do,dos,win'
+ unstable_platforms: mac
+-
+ id: simon2
+ support: excellent
+ notes: '- Only the default language (English) in Amiga & Macintosh versions is supported - F10 key animation is different in Amiga & Macintosh versions'
+ since_version: 0.7.0
+ stable_platforms: 'dos,amiga,mac,win'
+ unstable_platforms: ''
+-
+ id: queen
+ support: excellent
+ notes: '- Some versions may require the queen.tbl resource file to be placed in the game directory. This is not required for the freeware releases.'
+ since_version: 0.7.0
+ stable_platforms: dos
+ unstable_platforms: amiga
+-
+ id: airport
+ support: bugged
+ notes: '- Settings aren''t saved - Various bugs & issues'
+ since_version: 0.7.0
+ stable_platforms: 'mac,win'
+ unstable_platforms: ''
+-
+ id: atlantis
+ support: excellent
+ notes: '- FM-TOWNS Kanji version requires the FM-TOWNS Font ROM - Loading of original instrument samples for Amiga version not implemented, so music differs from original interpreter - Music loud on some systems, run with -m30 to lower music volume'
+ since_version: 0.7.0
+ stable_platforms: 'amiga,dos,fmtowns,mac'
+ unstable_platforms: ''
+-
+ id: balloon
+ support: bugged
+ notes: '- Settings aren''t saved - Various bugs & issues'
+ since_version: 0.7.0
+ stable_platforms: 'mac,win'
+ unstable_platforms: ''
+-
+ id: baseball2001
+ support: broken
+ notes: '- Demo version only - Only shows introduction'
+ since_version: 0.7.0
+ stable_platforms: 'mac,win'
+ unstable_platforms: ''
+-
+ id: bluesabctime
+ support: untested
+ notes: '- Demo version only'
+ since_version: 0.7.0
+ stable_platforms: 'mac,win'
+ unstable_platforms: ''
+-
+ id: chase
+ support: broken
+ notes: '- Only shows introduction'
+ since_version: 0.7.0
+ stable_platforms: 'mac,win'
+ unstable_platforms: ''
+-
+ id: comi
+ support: good
+ notes: ''
+ since_version: 0.7.0
+ stable_platforms: win
+ unstable_platforms: ''
+-
+ id: dog
+ support: bugged
+ notes: '- Settings aren''t saved - Various bugs & issues'
+ since_version: 0.7.0
+ stable_platforms: 'mac,win'
+ unstable_platforms: ''
+-
+ id: farm
+ support: bugged
+ notes: '- Settings aren''t saved - Various bugs & issues'
+ since_version: 0.7.0
+ stable_platforms: 'mac,win'
+ unstable_platforms: ''
+-
+ id: fbear
+ support: excellent
+ notes: '- Piano sounds aren''t the correct pitch in DOS version - Cursors aren''t scaled correctly'
+ since_version: 0.7.0
+ stable_platforms: '3do,dos,win'
+ unstable_platforms: mac
+-
+ id: football2002
+ support: broken
+ notes: '- Demo version only - Only shows introduction'
+ since_version: 0.7.0
+ stable_platforms: 'mac,win'
+ unstable_platforms: ''
+-
+ id: freddi
+ support: good
+ notes: ''
+ since_version: 0.7.0
+ stable_platforms: 'mac,win'
+ unstable_platforms: ''
+-
+ id: freddi2
+ support: good
+ notes: '- Minor graphical glitches - No songs'
+ since_version: 0.7.0
+ stable_platforms: 'mac,win'
+ unstable_platforms: ''
+-
+ id: freddi3
+ support: good
+ notes: ''
+ since_version: 0.7.0
+ stable_platforms: 'mac,win'
+ unstable_platforms: ''
+-
+ id: freddi4
+ support: broken
+ notes: '- No inventory controls - Various bugs & issues'
+ since_version: 0.7.0
+ stable_platforms: 'mac,win'
+ unstable_platforms: ''
+-
+ id: freddicove
+ support: broken
+ notes: '- No inventory controls - Various bugs & issues'
+ since_version: 0.7.0
+ stable_platforms: 'mac,win'
+ unstable_platforms: ''
+-
+ id: funpack
+ support: excellent
+ notes: ''
+ since_version: 0.7.0
+ stable_platforms: '3do,dos'
+ unstable_platforms: ''
+-
+ id: indy3
+ support: good
+ notes: '- There is no support for the Macintosh interface - FM-TOWNS Kanji version requires the FM-TOWNS Font ROM - Indiana may be able to walk in odd places, in some rooms - Atari ST and Mac versions require pcjr or pcspk music driver'
+ since_version: 0.7.0
+ stable_platforms: 'amiga,atarist,dos,fmtowns,mac'
+ unstable_platforms: ''
+-
+ id: jungle
+ support: bugged
+ notes: '- Settings aren''t saved - Various bugs & issues'
+ since_version: 0.7.0
+ stable_platforms: 'mac,win'
+ unstable_platforms: ''
+-
+ id: loom
+ support: excellent
+ notes: '- The Roland update from LucasArts is required for MIDI support in the EGA version - No music or sound effects in the Macintosh version - There is no support for the Macintosh interface - FM-TOWNS Kanji version requires the FM-TOWNS Font ROM - Fades are seemingly different in the FM-TOWNS version - Text palette sometimes incorrect in the FM-TOWNS version - Distaff occasionally pink in the FM-TOWNS version - Use boot parameter to choose difficulty in the FM-TOWNS version: - 0 practice (default) - 1 standard - 2 expert'
+ since_version: 0.7.0
+ stable_platforms: 'amiga,atarist,dos,fmtowns'
+ unstable_platforms: 'pce,mac'
+-
+ id: lost
+ support: broken
+ notes: '- Only plays introduction'
+ since_version: 0.7.0
+ stable_platforms: 'mac,win'
+ unstable_platforms: ''
+-
+ id: maniac
+ support: good
+ notes: ''
+ since_version: 0.7.0
+ stable_platforms: 'amiga,atarist,dos,mac'
+ unstable_platforms: 'apple2,c64,nes'
+-
+ id: maze
+ support: bugged
+ notes: '- Settings aren''t saved - Various bugs & issues'
+ since_version: 0.7.0
+ stable_platforms: 'mac,win'
+ unstable_platforms: ''
+-
+ id: monkey
+ support: excellent
+ notes: '- The Roland update from LucasArts is required for MIDI support in the EGA version - Dialogue choices in the SegaCD version can be selected with 6 (up) 7 (down) or mousewheel, with mouse button or number to select - No music or sound effects in the Amiga version'
+ since_version: 0.7.0
+ stable_platforms: 'amiga,atarist,dos,fmtowns,mac,segacd'
+ unstable_platforms: ''
+-
+ id: mustard
+ support: broken
+ notes: '- Only shows introduction'
+ since_version: 0.7.0
+ stable_platforms: win
+ unstable_platforms: mac
+-
+ id: pajama
+ support: good
+ notes: '- No songs'
+ since_version: 0.7.0
+ stable_platforms: 'mac,win'
+ unstable_platforms: ''
+-
+ id: pajama2
+ support: good
+ notes: '- Actor limbs sometimes aren''t visible'
+ since_version: 0.7.0
+ stable_platforms: 'mac,win'
+ unstable_platforms: ''
+-
+ id: puttcircus
+ support: broken
+ notes: '- No inventory controls - Various bugs & issues'
+ since_version: 0.7.0
+ stable_platforms: 'mac,win'
+ unstable_platforms: ''
+-
+ id: puttmoon
+ support: excellent
+ notes: ''
+ since_version: 0.7.0
+ stable_platforms: '3do,win,dos'
+ unstable_platforms: mac
+-
+ id: puttputt
+ support: good
+ notes: '- Cursors aren''t scaled correctly in Windows version'
+ since_version: 0.7.0
+ stable_platforms: '3do,dos,win'
+ unstable_platforms: mac
+-
+ id: puttrace
+ support: broken
+ notes: '- No inventory controls - Various bugs & issues'
+ since_version: 0.7.0
+ stable_platforms: 'mac,win'
+ unstable_platforms: ''
+-
+ id: putttime
+ support: good
+ notes: '- Minor graphical glitches when talking in HE80 version - Inventory background and items are often not redrawn - No songs'
+ since_version: 0.7.0
+ stable_platforms: 'mac,win'
+ unstable_platforms: ''
+-
+ id: puttzoo
+ support: good
+ notes: '- Minor graphical glitches when meeting Kenya in HE72 version - Inventory background and items are often not redrawn'
+ since_version: 0.7.0
+ stable_platforms: 'mac,win'
+ unstable_platforms: ''
+-
+ id: socks
+ support: bugged
+ notes: '- Settings aren''t saved - Various bugs & issues'
+ since_version: 0.7.0
+ stable_platforms: 'mac,win'
+ unstable_platforms: ''
+-
+ id: spyfox
+ support: broken
+ notes: '- No inventory controls - Various bugs & issues'
+ since_version: 0.7.0
+ stable_platforms: 'mac,win'
+ unstable_platforms: ''
+-
+ id: spyfox2
+ support: broken
+ notes: '- No inventory controls - Various bugs & issues'
+ since_version: 0.7.0
+ stable_platforms: 'mac,win'
+ unstable_platforms: ''
+-
+ id: spyozon
+ support: broken
+ notes: '- No inventory controls - Various bugs & issues'
+ since_version: 0.7.0
+ stable_platforms: 'mac,win'
+ unstable_platforms: ''
+-
+ id: thinker1
+ support: broken
+ notes: '- Demo version only - Objects in mini games aren''t drawn'
+ since_version: 0.7.0
+ stable_platforms: 'mac,win'
+ unstable_platforms: ''
+-
+ id: thinkerk
+ support: bugged
+ notes: '- Settings aren''t saved - Various bugs & issues'
+ since_version: 0.7.0
+ stable_platforms: 'mac,win'
+ unstable_platforms: ''
+-
+ id: water
+ support: bugged
+ notes: '- Settings aren''t saved - Various bugs & issues'
+ since_version: 0.7.0
+ stable_platforms: 'mac,win'
+ unstable_platforms: ''
+-
+ id: zak
+ support: good
+ notes: '- FM-TOWNS Kanji version requires the FM-TOWNS Font ROM - No music or sound effects in the Commodore 64 version - Several sound effects buggy or missing in Amiga version'
+ since_version: 0.7.0
+ stable_platforms: 'amiga,atarist,c64,dos,fmtowns'
+ unstable_platforms: ''
+-
+ id: gob1
+ support: good
+ notes: '- Problems with music in the Macintosh version'
+ since_version: 0.8.0
+ stable_platforms: 'amiga,cdi,dos,mac,win'
+ unstable_platforms: ''
+-
+ id: ite
+ support: good
+ notes: '- Occasional graphical glitches'
+ since_version: 0.8.0
+ stable_platforms: 'dos,linux,mac,macos,pc98,win'
+ unstable_platforms: amiga
+-
+ id: activity
+ support: excellent
+ notes: ''
+ since_version: 0.8.0
+ stable_platforms: 'dos,mac,win'
+ unstable_platforms: ''
+-
+ id: airport
+ support: good
+ notes: '- Minor graphical glitches'
+ since_version: 0.8.0
+ stable_platforms: 'mac,win'
+ unstable_platforms: ''
+-
+ id: atlantis
+ support: excellent
+ notes: '- FM-TOWNS Kanji version requires the FM-TOWNS Font ROM - Loading of original instrument samples for Amiga version not implemented, so music differs from original interpreter.'
+ since_version: 0.8.0
+ stable_platforms: 'amiga,dos,fmtowns,mac'
+ unstable_platforms: ''
+-
+ id: balloon
+ support: good
+ notes: '- Minor Graphical glitches'
+ since_version: 0.8.0
+ stable_platforms: 'mac,win'
+ unstable_platforms: ''
+-
+ id: baseball
+ support: bugged
+ notes: '- Array out of bounds errors sometimes - Minor graphical glitches'
+ since_version: 0.8.0
+ stable_platforms: 'mac,win'
+ unstable_platforms: ''
+-
+ id: chase
+ support: good
+ notes: ''
+ since_version: 0.8.0
+ stable_platforms: 'mac,win'
+ unstable_platforms: ''
+-
+ id: dog
+ support: good
+ notes: ''
+ since_version: 0.8.0
+ stable_platforms: 'mac,win'
+ unstable_platforms: ''
+-
+ id: farm
+ support: good
+ notes: '- Minor graphical glitches'
+ since_version: 0.8.0
+ stable_platforms: 'mac,win'
+ unstable_platforms: ''
+-
+ id: football
+ support: bugged
+ notes: '- Freezes when computer chooses a player, when selecting teams - Minor graphical glitches'
+ since_version: 0.8.0
+ stable_platforms: 'mac,win'
+ unstable_platforms: ''
+-
+ id: freddi2
+ support: good
+ notes: '- Minor graphical glitches - Animation isn''t synced during songs'
+ since_version: 0.8.0
+ stable_platforms: 'mac,win'
+ unstable_platforms: ''
+-
+ id: freddi4
+ support: good
+ notes: ''
+ since_version: 0.8.0
+ stable_platforms: 'mac,win'
+ unstable_platforms: ''
+-
+ id: freddicove
+ support: good
+ notes: ''
+ since_version: 0.8.0
+ stable_platforms: 'mac,win'
+ unstable_platforms: ''
+-
+ id: indy3
+ support: good
+ notes: '- There is no support for the Macintosh interface - FM-TOWNS Kanji version requires the FM-TOWNS Font ROM'
+ since_version: 0.8.0
+ stable_platforms: 'amiga,atarist,dos,fmtowns,mac'
+ unstable_platforms: ''
+-
+ id: jungle
+ support: good
+ notes: '- Minor graphical glitches'
+ since_version: 0.8.0
+ stable_platforms: 'mac,win'
+ unstable_platforms: ''
+-
+ id: lost
+ support: bugged
+ notes: '- Minor graphical glitches'
+ since_version: 0.8.0
+ stable_platforms: 'mac,win'
+ unstable_platforms: ''
+-
+ id: maniac
+ support: good
+ notes: '- Minor graphical glitches in NES version'
+ since_version: 0.8.0
+ stable_platforms: 'amiga,atarist,dos,nes,mac'
+ unstable_platforms: 'apple2,c64'
+-
+ id: maze
+ support: good
+ notes: ''
+ since_version: 0.8.0
+ stable_platforms: 'mac,win'
+ unstable_platforms: ''
+-
+ id: mustard
+ support: good
+ notes: '- Minor graphical glitches with clouds'
+ since_version: 0.8.0
+ stable_platforms: win
+ unstable_platforms: mac
+-
+ id: pajama2
+ support: good
+ notes: ''
+ since_version: 0.8.0
+ stable_platforms: 'mac,win'
+ unstable_platforms: ''
+-
+ id: pajama3
+ support: broken
+ notes: '- PlayStation 1 version doesn''t use SCUMM, so will never be supported - Minor graphical glitches - Sprites aren''t displayed during Ski Ride'
+ since_version: 0.8.0
+ stable_platforms: 'mac,win'
+ unstable_platforms: psx
+-
+ id: puttcircus
+ support: good
+ notes: '- Magnifying glass doesn''t work'
+ since_version: 0.8.0
+ stable_platforms: 'mac,win'
+ unstable_platforms: ''
+-
+ id: puttputt
+ support: excellent
+ notes: ''
+ since_version: 0.8.0
+ stable_platforms: '3do,dos,win'
+ unstable_platforms: mac
+-
+ id: puttrace
+ support: good
+ notes: '- Animation isn''t synced during songs'
+ since_version: 0.8.0
+ stable_platforms: 'mac,win'
+ unstable_platforms: ''
+-
+ id: putttime
+ support: good
+ notes: '- Minor graphical glitches when talking in HE80 version'
+ since_version: 0.8.0
+ stable_platforms: 'mac,win'
+ unstable_platforms: ''
+-
+ id: puttzoo
+ support: good
+ notes: '- Minor graphical glitches when meeting Kenya in HE72 version'
+ since_version: 0.8.0
+ stable_platforms: 'ios,mac,win'
+ unstable_platforms: ''
+-
+ id: samnmax
+ support: excellent
+ notes: ''
+ since_version: 0.8.0
+ stable_platforms: dos
+ unstable_platforms: ''
+-
+ id: socks
+ support: good
+ notes: ''
+ since_version: 0.8.0
+ stable_platforms: 'mac,win'
+ unstable_platforms: ''
+-
+ id: spyfox
+ support: good
+ notes: '- Minor selection issue with buttons on paintings'
+ since_version: 0.8.0
+ stable_platforms: 'ios,mac,win'
+ unstable_platforms: ''
+-
+ id: spyfox2
+ support: good
+ notes: ''
+ since_version: 0.8.0
+ stable_platforms: 'mac,win'
+ unstable_platforms: ''
+-
+ id: spyozon
+ support: broken
+ notes: '- Need to guess the correct colors of Poodles''s fingernails - Various palette glitches - Asserts when looking at pearl'
+ since_version: 0.8.0
+ stable_platforms: 'mac,win'
+ unstable_platforms: ''
+-
+ id: thinker1
+ support: good
+ notes: '- Need to use ESC when car is stuck in the smart star challenge'
+ since_version: 0.8.0
+ stable_platforms: 'mac,win'
+ unstable_platforms: ''
+-
+ id: thinkerk
+ support: good
+ notes: ''
+ since_version: 0.8.0
+ stable_platforms: 'mac,win'
+ unstable_platforms: ''
+-
+ id: water
+ support: good
+ notes: '- Minor Graphical glitches'
+ since_version: 0.8.0
+ stable_platforms: 'mac,win'
+ unstable_platforms: ''
+-
+ id: fbear
+ support: excellent
+ notes: '- Piano sounds aren''t the correct pitch in DOS version'
+ since_version: 0.8.1
+ stable_platforms: '3do,dos,mac,win'
+ unstable_platforms: ''
+-
+ id: freddi2
+ support: good
+ notes: '- Minor graphical glitches'
+ since_version: 0.8.1
+ stable_platforms: 'mac,win'
+ unstable_platforms: ''
+-
+ id: thinkerk
+ support: good
+ notes: '- Minor graphical glitches'
+ since_version: 0.8.1
+ stable_platforms: 'mac,win'
+ unstable_platforms: ''
+-
+ id: balloon
+ support: good
+ notes: ''
+ since_version: 0.8.2
+ stable_platforms: 'mac,win'
+ unstable_platforms: ''
+-
+ id: pajama3
+ support: good
+ notes: '- PlayStation 1 version doesn''t use SCUMM, so will never be supported - Minor graphical glitches with dancing can in stomach'
+ since_version: 0.8.2
+ stable_platforms: 'mac,win'
+ unstable_platforms: psx
+-
+ id: puttcircus
+ support: good
+ notes: ''
+ since_version: 0.8.2
+ stable_platforms: 'mac,win'
+ unstable_platforms: ''
+-
+ id: puttmoon
+ support: excellent
+ notes: ''
+ since_version: 0.8.2
+ stable_platforms: '3do,mac,win,dos'
+ unstable_platforms: ''
+-
+ id: puttputt
+ support: excellent
+ notes: ''
+ since_version: 0.8.2
+ stable_platforms: '3do,dos,mac,win'
+ unstable_platforms: ''
+-
+ id: puttrace
+ support: good
+ notes: ''
+ since_version: 0.8.2
+ stable_platforms: 'mac,win'
+ unstable_platforms: ''
+-
+ id: spyozon
+ support: good
+ notes: '- Need to guess the correct colors of Poodles''s fingernails - Various palette glitches'
+ since_version: 0.8.2
+ stable_platforms: 'mac,win'
+ unstable_platforms: ''
+-
+ id: water
+ support: good
+ notes: ''
+ since_version: 0.8.2
+ stable_platforms: 'mac,win'
+ unstable_platforms: ''
+-
+ id: feeble
+ support: excellent
+ notes: '- DOS version is demo only - Minor graphical glitches'
+ since_version: 0.9.0
+ stable_platforms: 'amiga,dos,mac,win'
+ unstable_platforms: ''
+-
+ id: gob1
+ support: excellent
+ notes: '- Problems with music in the Macintosh version'
+ since_version: 0.9.0
+ stable_platforms: 'amiga,cdi,dos,mac,win'
+ unstable_platforms: ''
+-
+ id: kyra1
+ support: good
+ notes: '- Requires the kyra.dat resource file to be placed in the game directory - MT-32 (MIDI) music and sfx are not supported - Occasional graphics glitches '
+ since_version: 0.9.0
+ stable_platforms: dos
+ unstable_platforms: 'amiga,fmtowns'
+-
+ id: airport
+ support: good
+ notes: ''
+ since_version: 0.9.0
+ stable_platforms: 'mac,win'
+ unstable_platforms: ''
+-
+ id: bluesbirthday
+ support: bugged
+ notes: ''
+ since_version: 0.9.0
+ stable_platforms: win
+ unstable_platforms: mac
+-
+ id: farm
+ support: good
+ notes: ''
+ since_version: 0.9.0
+ stable_platforms: 'mac,win'
+ unstable_platforms: ''
+-
+ id: freddi2
+ support: good
+ notes: ''
+ since_version: 0.9.0
+ stable_platforms: 'mac,win'
+ unstable_platforms: ''
+-
+ id: jungle
+ support: good
+ notes: ''
+ since_version: 0.9.0
+ stable_platforms: 'mac,win'
+ unstable_platforms: ''
+-
+ id: pajama
+ support: good
+ notes: '- Gaps and glitches in the background music in Kitchen and Mine areas'
+ since_version: 0.9.0
+ stable_platforms: 'mac,win'
+ unstable_platforms: ''
+-
+ id: spyfox
+ support: good
+ notes: ''
+ since_version: 0.9.0
+ stable_platforms: 'ios,mac,win'
+ unstable_platforms: ''
+-
+ id: agi-fanmade
+ support: good
+ notes: '- Many fan games are untested and may have issues. - AGIMOUSE, AGIPAL hacks are also supported by this target - AGI256 and AGI256-2 hacks are not supported by this target - Occasional graphics glitches'
+ since_version: 0.10.0
+ stable_platforms: 'coco3,dos'
+ unstable_platforms: ''
+-
+ id: bc
+ support: good
+ notes: '- Apple IIgs version has no sound'
+ since_version: 0.10.0
+ stable_platforms: 'amiga,apple2gs,coco3,dos'
+ unstable_platforms: ''
+-
+ id: goldrush
+ support: broken
+ notes: '- Apple IIgs version has no sound'
+ since_version: 0.10.0
+ stable_platforms: 'apple2gs,atarist,coco3,dos,mac'
+ unstable_platforms: amiga
+-
+ id: kq1
+ support: good
+ notes: '- Apple IIgs version has no sound'
+ since_version: 0.10.0
+ stable_platforms: 'amiga,apple2gs,atarist,coco3,dos,mac'
+ unstable_platforms: ''
+-
+ id: kq2
+ support: good
+ notes: '- Apple IIgs version has no sound'
+ since_version: 0.10.0
+ stable_platforms: 'amiga,apple2gs,coco3,dos,mac'
+ unstable_platforms: ''
+-
+ id: kq3
+ support: good
+ notes: '- Apple IIgs version has no sound'
+ since_version: 0.10.0
+ stable_platforms: 'amiga,apple2gs,atarist,coco3,dos,mac'
+ unstable_platforms: ''
+-
+ id: kq4
+ support: good
+ notes: '- Apple IIgs version has no sound'
+ since_version: 0.10.0
+ stable_platforms: 'apple2gs,coco3,dos'
+ unstable_platforms: ''
+-
+ id: lsl1
+ support: good
+ notes: '- Apple IIgs version has no sound'
+ since_version: 0.10.0
+ stable_platforms: 'amiga,apple2gs,atarist,coco3,dos,mac'
+ unstable_platforms: ''
+-
+ id: mh1
+ support: good
+ notes: '- Apple IIgs version has no sound'
+ since_version: 0.10.0
+ stable_platforms: 'amiga,apple2gs,atarist,coco3,dos'
+ unstable_platforms: ''
+-
+ id: mh2
+ support: good
+ notes: '- Apple IIgs version has no sound'
+ since_version: 0.10.0
+ stable_platforms: 'amiga,atarist,coco3,dos'
+ unstable_platforms: ''
+-
+ id: mixedup
+ support: good
+ notes: '- Apple IIgs version has no sound'
+ since_version: 0.10.0
+ stable_platforms: 'apple2gs,coco3,dos'
+ unstable_platforms: ''
+-
+ id: pq1
+ support: good
+ notes: '- Apple IIgs version has no sound'
+ since_version: 0.10.0
+ stable_platforms: 'amiga,apple2gs,coco3,dos,mac'
+ unstable_platforms: ''
+-
+ id: sq1
+ support: good
+ notes: '- Apple IIgs version has no sound'
+ since_version: 0.10.0
+ stable_platforms: 'amiga,apple2gs,atarist,coco3,dos,mac'
+ unstable_platforms: ''
+-
+ id: sq2
+ support: good
+ notes: '- Apple IIgs version has no sound'
+ since_version: 0.10.0
+ stable_platforms: 'amiga,apple2gs,atarist,coco3,dos,mac'
+ unstable_platforms: ''
+-
+ id: dimp
+ support: good
+ notes: '- Demon takes longer to die, compared to original'
+ since_version: 0.10.0
+ stable_platforms: win
+ unstable_platforms: ''
+-
+ id: feeble
+ support: excellent
+ notes: '- DOS version is demo only'
+ since_version: 0.10.0
+ stable_platforms: 'amiga,dos,mac,win'
+ unstable_platforms: ''
+-
+ id: jumble
+ support: good
+ notes: '- No support for displaying, entering, loading and saving high scores'
+ since_version: 0.10.0
+ stable_platforms: win
+ unstable_platforms: ''
+-
+ id: puzzle
+ support: good
+ notes: '- No support for displaying, entering, loading and saving high scores'
+ since_version: 0.10.0
+ stable_platforms: win
+ unstable_platforms: ''
+-
+ id: simon1
+ support: excellent
+ notes: '- No music in Acorn disk version - Minor palette glitches in Amiga versions'
+ since_version: 0.10.0
+ stable_platforms: 'acorn,amiga,dos,win'
+ unstable_platforms: ''
+-
+ id: swampy
+ support: good
+ notes: '- No support for displaying explanation, when clicking on items - No support for displaying, entering, loading and saving high scores'
+ since_version: 0.10.0
+ stable_platforms: win
+ unstable_platforms: ''
+-
+ id: fw
+ support: good
+ notes: '- Occasional graphical glitches'
+ since_version: 0.10.0
+ stable_platforms: 'amiga,atarist,dos'
+ unstable_platforms: ''
+-
+ id: bargon
+ support: excellent
+ notes: '- Issues with the mouse cursor visibility'
+ since_version: 0.10.0
+ stable_platforms: 'amiga,atarist,dos'
+ unstable_platforms: ''
+-
+ id: gob2
+ support: excellent
+ notes: '- A few wrong instruments during music playback'
+ since_version: 0.10.0
+ stable_platforms: 'amiga,atarist,dos,mac,win'
+ unstable_platforms: ''
+-
+ id: gob3
+ support: good
+ notes: '- Issues with the mouse cursor visibility - No support for original font and music files in Macintosh version - The number of used jokers isn''t saved correctly. You''ll always have 5 to spend again after loading'
+ since_version: 0.10.0
+ stable_platforms: 'amiga,dos,mac,win'
+ unstable_platforms: ''
+-
+ id: ween
+ support: excellent
+ notes: '- Issues with the mouse cursor visibility'
+ since_version: 0.10.0
+ stable_platforms: 'amiga,atarist,dos'
+ unstable_platforms: ''
+-
+ id: kyra1
+ support: good
+ notes: '- Requires the kyra.dat resource file to be placed in the game directory - MT-32 (MIDI) music and sfx are not supported - Occasional graphics glitches '
+ since_version: 0.10.0
+ stable_platforms: 'dos,fmtowns'
+ unstable_platforms: amiga
+-
+ id: nippon
+ support: good
+ notes: ''
+ since_version: 0.10.0
+ stable_platforms: dos
+ unstable_platforms: amiga
+-
+ id: queen
+ support: excellent
+ notes: '- Some versions may require the queen.tbl resource file to be placed in the game directory. This is not required for the freeware releases.'
+ since_version: 0.10.0
+ stable_platforms: 'amiga,dos'
+ unstable_platforms: ''
+-
+ id: bluesbirthday
+ support: bugged
+ notes: ''
+ since_version: 0.10.0
+ stable_platforms: 'mac,win'
+ unstable_platforms: ''
+-
+ id: monkey
+ support: excellent
+ notes: '- The Roland update from LucasArts is required for MIDI support in the EGA version - Dialogue choices in the SegaCD version can be selected with mousewheel or keyboard arrow keys - No music or sound effects in the Amiga version'
+ since_version: 0.10.0
+ stable_platforms: 'amiga,atarist,dos,fmtowns,mac,segacd'
+ unstable_platforms: ''
+-
+ id: monkey2
+ support: excellent
+ notes: '- Demo version often crashes due to missing resources, since it was never meant to be playable - No support for playing back the recorded file of gameplay in demo version - FM-TOWNS Kanji version requires the FM-TOWNS Font ROM - Loading of original instrument samples for Amiga version not implemented, so music differs from original interpreter.'
+ since_version: 0.10.0
+ stable_platforms: 'amiga,dos,fmtowns,mac'
+ unstable_platforms: ''
+-
+ id: mustard
+ support: good
+ notes: ''
+ since_version: 0.10.0
+ stable_platforms: win
+ unstable_platforms: mac
+-
+ id: pajama3
+ support: good
+ notes: '- PlayStation 1 version doesn''t use SCUMM, so will never be supported'
+ since_version: 0.10.0
+ stable_platforms: 'mac,win'
+ unstable_platforms: psx
+-
+ id: putttime
+ support: good
+ notes: ''
+ since_version: 0.10.0
+ stable_platforms: 'mac,win'
+ unstable_platforms: ''
+-
+ id: thinker1
+ support: good
+ notes: ''
+ since_version: 0.10.0
+ stable_platforms: 'mac,win'
+ unstable_platforms: ''
+-
+ id: sword1
+ support: excellent
+ notes: ''
+ since_version: 0.10.0
+ stable_platforms: 'dos,win,mac'
+ unstable_platforms: psx
+-
+ id: touche
+ support: good
+ notes: '- Occasional graphical glitches'
+ since_version: 0.10.0
+ stable_platforms: dos
+ unstable_platforms: ''
+-
+ id: agi-fanmade
+ support: good
+ notes: '- Many fan games are untested and may have issues. - AGIMOUSE, AGIPAL, AGI256 and AGI256-2 hacks are also supported by this target - Occasional graphics glitches'
+ since_version: 0.11.0
+ stable_platforms: 'coco3,dos'
+ unstable_platforms: ''
+-
+ id: goldrush
+ support: good
+ notes: '- Apple IIgs version has no sound'
+ since_version: 0.11.0
+ stable_platforms: 'apple2gs,atarist,coco3,dos,mac'
+ unstable_platforms: amiga
+-
+ id: mickey
+ support: good
+ notes: ''
+ since_version: 0.11.0
+ stable_platforms: dos
+ unstable_platforms: ''
+-
+ id: troll
+ support: good
+ notes: '- Game lacks sound'
+ since_version: 0.11.0
+ stable_platforms: dos
+ unstable_platforms: ''
+-
+ id: winnie
+ support: good
+ notes: '- Game lacks sound'
+ since_version: 0.11.0
+ stable_platforms: 'amiga,apple2,c64,dos'
+ unstable_platforms: ''
+-
+ id: elvira1
+ support: good
+ notes: '- Commodore 64 version doesn''t use AGOS, so will never be supported. - No music in the Atari ST version. - No text descriptions in the Atari ST version.'
+ since_version: 0.11.0
+ stable_platforms: 'amiga,atarist,dos'
+ unstable_platforms: c64
+-
+ id: elvira2
+ support: good
+ notes: '- Commodore 64 version doesn''t use AGOS, so will never be supported. - No music in the Atari ST version. - No sound effects in the DOS version. - Palette issues in the Atari ST version.'
+ since_version: 0.11.0
+ stable_platforms: 'amiga,atarist,dos'
+ unstable_platforms: c64
+-
+ id: waxworks
+ support: untested
+ notes: '- Amiga version has not been confirmed as completable. '
+ since_version: 0.11.0
+ stable_platforms: amiga
+ unstable_platforms: dos
+-
+ id: kyra1
+ support: good
+ notes: '- Requires the kyra.dat resource file to be placed in the game directory - No music or sound effects in the Macintosh floppy versions - MT-32 (MIDI) music and sfx are not supported - PC-98 version lacks support for music and sound effects - Occasional graphics glitches '
+ since_version: 0.11.0
+ stable_platforms: 'dos,fmtowns,mac,pc98'
+ unstable_platforms: amiga
+-
+ id: lure
+ support: good
+ notes: '- Sound support is incomplete and there is no Roland MT-32 support - EGA version is not supported'
+ since_version: 0.11.0
+ stable_platforms: dos
+ unstable_platforms: ''
+-
+ id: nippon
+ support: good
+ notes: ''
+ since_version: 0.11.0
+ stable_platforms: 'amiga,dos'
+ unstable_platforms: ''
+-
+ id: ihnm
+ support: good
+ notes: '- No music in the Macintosh version'
+ since_version: 0.11.0
+ stable_platforms: 'dos,mac'
+ unstable_platforms: ''
+-
+ id: ite
+ support: excellent
+ notes: ''
+ since_version: 0.11.0
+ stable_platforms: 'dos,linux,mac,macos,pc98,win'
+ unstable_platforms: amiga
+-
+ id: brstorm
+ support: excellent
+ notes: ''
+ since_version: 0.11.0
+ stable_platforms: dos
+ unstable_platforms: ''
+-
+ id: goldrush
+ support: good
+ notes: '- Apple IIgs version has no sound'
+ since_version: 0.12.0
+ stable_platforms: 'amiga,apple2gs,atarist,coco3,dos,mac'
+ unstable_platforms: ''
+-
+ id: simon1
+ support: excellent
+ notes: '- No music in Acorn disk version'
+ since_version: 0.12.0
+ stable_platforms: 'acorn,amiga,dos,win'
+ unstable_platforms: ''
+-
+ id: waxworks
+ support: untested
+ notes: '- Amiga version has not been confirmed as completable. - DOS version doesn''t load or save items states correctly, leading to various bugs - No music in the DOS version.'
+ since_version: 0.12.0
+ stable_platforms: 'amiga,dos'
+ unstable_platforms: ''
+-
+ id: drascula
+ support: excellent
+ notes: '- Requires the drascula.dat resource file to be placed in the game directory'
+ since_version: 0.12.0
+ stable_platforms: dos
+ unstable_platforms: ''
+-
+ id: gob3
+ support: excellent
+ notes: '- Issues with the mouse cursor visibility - No support for original font and music files in Macintosh version - The number of used jokers isn''t saved correctly. You''ll always have 5 to spend again after loading'
+ since_version: 0.12.0
+ stable_platforms: 'amiga,dos,mac,win'
+ unstable_platforms: ''
+-
+ id: lit
+ support: excellent
+ notes: '- Versions that split part one and two are untested - Issues with the mouse cursor visibility'
+ since_version: 0.12.0
+ stable_platforms: 'dos,win'
+ unstable_platforms: ''
+-
+ id: woodruff
+ support: good
+ notes: '- Issues with the mouse cursor visibility - Some object videos flicker the very first frame'
+ since_version: 0.12.0
+ stable_platforms: win
+ unstable_platforms: ''
+-
+ id: kyra1
+ support: good
+ notes: '- Requires the kyra.dat resource file to be placed in the game directory - No music or sound effects in the Macintosh floppy versions - MT-32 (MIDI) music and sfx are not supported - PC-98 version lacks support for sound effects - Occasional graphics glitches '
+ since_version: 0.12.0
+ stable_platforms: 'dos,fmtowns,mac,pc98'
+ unstable_platforms: amiga
+-
+ id: kyra2
+ support: excellent
+ notes: '- Requires the kyra.dat resource file to be placed in the game directory - MIDI music and sfx are not supported'
+ since_version: 0.12.0
+ stable_platforms: 'dos,fmtowns,pc98'
+ unstable_platforms: ''
+-
+ id: kyra3
+ support: excellent
+ notes: '- Requires the kyra.dat resource file to be placed in the game directory'
+ since_version: 0.12.0
+ stable_platforms: 'dos,mac'
+ unstable_platforms: ''
+-
+ id: blues123time
+ support: untested
+ notes: ''
+ since_version: 0.12.0
+ stable_platforms: 'mac,win'
+ unstable_platforms: ''
+-
+ id: zak
+ support: good
+ notes: '- FM-TOWNS Kanji version requires the FM-TOWNS Font ROM - No music or sound effects in the Commodore 64 version'
+ since_version: 0.12.0
+ stable_platforms: 'amiga,atarist,c64,dos,fmtowns'
+ unstable_platforms: ''
+-
+ id: elvira1
+ support: good
+ notes: '- Commodore 64 version doesn''t use AGOS, so will never be supported. - No music in the Atari ST version.'
+ since_version: 0.13.0
+ stable_platforms: 'amiga,atarist,dos'
+ unstable_platforms: c64
+-
+ id: t7g
+ support: excellent
+ notes: '- The MT-32 instrument definitions aren''t supported yet, so it will play with wrong instruments - The CD-i version doesn''t use Groovie, so it will never be supported. - There are some issues with music not playing when it should'
+ since_version: 0.13.0
+ stable_platforms: dos.win
+ unstable_platforms: 'cdi,ios,mac'
+-
+ id: kyra1
+ support: good
+ notes: '- Requires the kyra.dat resource file to be placed in the game directory - No music or sound effects in the Macintosh floppy versions - PC-98 version lacks support for sound effects - Occasional graphics glitches '
+ since_version: 0.13.0
+ stable_platforms: 'dos,fmtowns,mac,pc98'
+ unstable_platforms: amiga
+-
+ id: kyra2
+ support: excellent
+ notes: '- Requires the kyra.dat resource file to be placed in the game directory'
+ since_version: 0.13.0
+ stable_platforms: 'dos,fmtowns,pc98'
+ unstable_platforms: ''
+-
+ id: lure
+ support: good
+ notes: '- Sound support is incomplete and there is no Roland MT-32 support'
+ since_version: 0.13.0
+ stable_platforms: dos
+ unstable_platforms: ''
+-
+ id: blues123time
+ support: good
+ notes: ''
+ since_version: 0.13.0
+ stable_platforms: 'mac,win'
+ unstable_platforms: ''
+-
+ id: bluesabctime
+ support: good
+ notes: ''
+ since_version: 0.13.0
+ stable_platforms: 'mac,win'
+ unstable_platforms: ''
+-
+ id: bluestreasurehunt
+ support: untested
+ notes: ''
+ since_version: 0.13.0
+ stable_platforms: 'mac,win'
+ unstable_platforms: ''
+-
+ id: tucker
+ support: excellent
+ notes: ''
+ since_version: 0.13.0
+ stable_platforms: dos
+ unstable_platforms: ''
+-
+ id: elvira2
+ support: good
+ notes: '- Commodore 64 version doesn''t use AGOS, so will never be supported. - No music in the Atari ST version. - No sound effects in the DOS version.'
+ since_version: 1.0.0
+ stable_platforms: 'amiga,atarist,dos'
+ unstable_platforms: c64
+-
+ id: waxworks
+ support: untested
+ notes: '- Amiga version has not been confirmed as completable. - DOS version doesn''t load or save items states correctly, leading to various bugs'
+ since_version: 1.0.0
+ stable_platforms: 'amiga,dos'
+ unstable_platforms: ''
+-
+ id: cruise
+ support: excellent
+ notes: '- Only AdLib music and sound effects are supported'
+ since_version: 1.0.0
+ stable_platforms: 'amiga,atarist,dos'
+ unstable_platforms: ''
+-
+ id: woodruff
+ support: excellent
+ notes: '- Issues with the mouse cursor visibility'
+ since_version: 1.0.0
+ stable_platforms: win
+ unstable_platforms: ''
+-
+ id: t7g
+ support: excellent
+ notes: '- The MT-32 instrument definitions aren''t supported yet, so it will play with wrong instruments - The CD-i version doesn''t use Groovie, so it will never be supported.'
+ since_version: 1.0.0
+ stable_platforms: dos.win
+ unstable_platforms: 'cdi,ios,mac'
+-
+ id: kyra1
+ support: good
+ notes: '- Requires the kyra.dat resource file to be placed in the game directory - No music or sound effects in the Amiga and Macintosh floppy versions - Macintosh CD is using included DOS music and sound effects for now - PC-98 version lacks support for sound effects - Occasional graphics glitches '
+ since_version: 1.0.0
+ stable_platforms: 'amiga,dos,fmtowns,mac,pc98'
+ unstable_platforms: ''
+-
+ id: lgop2
+ support: good
+ notes: '- Only soundblaster music is played. MIDI music playing/MT32 instrument mapping needs more work'
+ since_version: 1.0.0
+ stable_platforms: dos
+ unstable_platforms: ''
+-
+ id: manhole
+ support: good
+ notes: ''
+ since_version: 1.0.0
+ stable_platforms: dos
+ unstable_platforms: ''
+-
+ id: rodney
+ support: good
+ notes: ''
+ since_version: 1.0.0
+ stable_platforms: dos
+ unstable_platforms: ''
+-
+ id: rtz
+ support: good
+ notes: '- Only soundblaster music is played. MIDI music playing/MT32 instrument mapping needs more work'
+ since_version: 1.0.0
+ stable_platforms: 'dos,fmtowns,pc98'
+ unstable_platforms: '3do,mac,pcfx,psx,saturn'
+-
+ id: nippon
+ support: broken
+ notes: '- Regression broke the game'
+ since_version: 1.0.0
+ stable_platforms: 'amiga,dos'
+ unstable_platforms: ''
+-
+ id: monkey
+ support: excellent
+ notes: '- The Roland update from LucasArts is required for MIDI support in the EGA version - Dialogue choices in the SegaCD version can be selected with mousewheel or keyboard arrow keys'
+ since_version: 1.0.0
+ stable_platforms: 'amiga,atarist,dos,fmtowns,mac,segacd'
+ unstable_platforms: ''
+-
+ id: sword1
+ support: excellent
+ notes: ''
+ since_version: 1.0.0
+ stable_platforms: 'dos,psx,win,mac'
+ unstable_platforms: ''
+-
+ id: sword2
+ support: excellent
+ notes: ''
+ since_version: 1.0.0
+ stable_platforms: 'psx,win'
+ unstable_platforms: ''
+-
+ id: dw
+ support: excellent
+ notes: '- PSX version is missing music support'
+ since_version: 1.0.0
+ stable_platforms: 'dos,psx'
+ unstable_platforms: mac
+-
+ id: dw2
+ support: excellent
+ notes: ''
+ since_version: 1.0.0
+ stable_platforms: dos
+ unstable_platforms: ''
+-
+ id: draci
+ support: good
+ notes: ''
+ since_version: 1.1.0
+ stable_platforms: dos
+ unstable_platforms: ''
+-
+ id: kyra1
+ support: good
+ notes: '- Requires the kyra.dat resource file to be placed in the game directory - No music or sound effects in the Macintosh floppy versions - Macintosh CD is using included DOS music and sound effects for now - PC-98 version lacks support for sound effects - Occasional graphics glitches '
+ since_version: 1.1.0
+ stable_platforms: 'amiga,dos,fmtowns,mac,pc98'
+ unstable_platforms: ''
+-
+ id: arttime
+ support: good
+ notes: ''
+ since_version: 1.1.0
+ stable_platforms: 'mac,win'
+ unstable_platforms: ''
+-
+ id: baseball2001
+ support: bugged
+ notes: '- No support for multiplayer - Array out of bounds errors sometimes - Minor graphical glitches'
+ since_version: 1.1.0
+ stable_platforms: 'mac,win'
+ unstable_platforms: ''
+-
+ id: baseball2003
+ support: bugged
+ notes: '- Array out of bounds errors sometimes - Minor graphical glitches'
+ since_version: 1.1.0
+ stable_platforms: 'mac,win'
+ unstable_platforms: ''
+-
+ id: fbear
+ support: excellent
+ notes: ''
+ since_version: 1.1.0
+ stable_platforms: '3do,dos,mac,win'
+ unstable_platforms: ''
+-
+ id: football2002
+ support: bugged
+ notes: '- Minor graphical glitches - No support for multiplayer - No videos - Array out of bounds error when computer chooses a player, when selecting teams'
+ since_version: 1.1.0
+ stable_platforms: 'mac,win'
+ unstable_platforms: ''
+-
+ id: loom
+ support: excellent
+ notes: '- The Roland update from LucasArts is required for MIDI support in the EGA version - No music or sound effects in the Macintosh version - There is no support for the Macintosh interface - FM-TOWNS Kanji version requires the FM-TOWNS Font ROM - PC-Engine Kanji version requires the system card ROM - Fades are seemingly different in the FM-TOWNS version - Text palette sometimes incorrect in the FM-TOWNS version - Distaff occasionally pink in the FM-TOWNS version - Use boot parameter to choose difficulty in the FM-TOWNS version: - 0 practice (default) - 1 standard - 2 expert'
+ since_version: 1.1.0
+ stable_platforms: 'amiga,atarist,dos,fmtowns'
+ unstable_platforms: 'pce,mac'
+-
+ id: pjgames
+ support: bugged
+ notes: '- Jumping Beans freezes, after introduction'
+ since_version: 1.1.0
+ stable_platforms: 'mac,win'
+ unstable_platforms: ''
+-
+ id: readtime
+ support: good
+ notes: ''
+ since_version: 1.1.0
+ stable_platforms: 'mac,win'
+ unstable_platforms: ''
+-
+ id: spyozon
+ support: good
+ notes: ''
+ since_version: 1.1.0
+ stable_platforms: 'mac,win'
+ unstable_platforms: ''
+-
+ id: zak
+ support: good
+ notes: '- FM-TOWNS Kanji version requires the FM-TOWNS Font ROM'
+ since_version: 1.1.0
+ stable_platforms: 'amiga,atarist,c64,dos,fmtowns'
+ unstable_platforms: ''
+-
+ id: teenagent
+ support: good
+ notes: '- Requires the teenagent.dat resource file to be placed in the game directory - Occasional graphical glitches'
+ since_version: 1.1.0
+ stable_platforms: dos
+ unstable_platforms: ''
+-
+ id: qfg1
+ support: excellent
+ notes: '- Music in the Amiga versions may have glitches'
+ since_version: 1.2.0
+ stable_platforms: 'amiga,atarist,dos,pc98'
+ unstable_platforms: ''
+-
+ id: fascination
+ support: good
+ notes: '- AdLib player is not supported in DOS floppy version'
+ since_version: 1.2.0
+ stable_platforms: 'amiga,atarist,dos'
+ unstable_platforms: ''
+-
+ id: t7g
+ support: excellent
+ notes: '- The CD-i version doesn''t use Groovie, so it will never be supported.'
+ since_version: 1.2.0
+ stable_platforms: 'dos,ios,mac,win'
+ unstable_platforms: cdi
+-
+ id: kyra1
+ support: excellent
+ notes: '- Requires the kyra.dat resource file to be placed in the game directory - No music or sound effects in the Macintosh floppy versions - Macintosh CD is using included DOS music and sound effects for now'
+ since_version: 1.2.0
+ stable_platforms: 'amiga,dos,fmtowns,mac,pc98'
+ unstable_platforms: ''
+-
+ id: nippon
+ support: good
+ notes: '- Occasional graphical glitches'
+ since_version: 1.2.0
+ stable_platforms: 'amiga,dos'
+ unstable_platforms: ''
+-
+ id: camelot
+ support: excellent
+ notes: ''
+ since_version: 1.2.0
+ stable_platforms: dos
+ unstable_platforms: 'amiga,atarist'
+-
+ id: castlebrain
+ support: excellent
+ notes: '- Music in Macintosh and Amiga versions may have glitches - No support for Macintosh hi-res fonts'
+ since_version: 1.2.0
+ stable_platforms: dos
+ unstable_platforms: 'amiga,mac,pc98'
+-
+ id: ecoquest
+ support: excellent
+ notes: ''
+ since_version: 1.2.0
+ stable_platforms: dos
+ unstable_platforms: ''
+-
+ id: ecoquest2
+ support: excellent
+ notes: ''
+ since_version: 1.2.0
+ stable_platforms: dos
+ unstable_platforms: ''
+-
+ id: fairytales
+ support: excellent
+ notes: ''
+ since_version: 1.2.0
+ stable_platforms: dos
+ unstable_platforms: ''
+-
+ id: freddypharkas
+ support: excellent
+ notes: ''
+ since_version: 1.2.0
+ stable_platforms: 'dos,mac,win'
+ unstable_platforms: ''
+-
+ id: hoyle1
+ support: excellent
+ notes: ''
+ since_version: 1.2.0
+ stable_platforms: dos
+ unstable_platforms: 'amiga,atarist'
+-
+ id: hoyle2
+ support: excellent
+ notes: ''
+ since_version: 1.2.0
+ stable_platforms: dos
+ unstable_platforms: 'amiga,atarist,mac'
+-
+ id: hoyle3
+ support: excellent
+ notes: ''
+ since_version: 1.2.0
+ stable_platforms: dos
+ unstable_platforms: amiga
+-
+ id: hoyle4
+ support: excellent
+ notes: ''
+ since_version: 1.2.0
+ stable_platforms: 'dos,mac'
+ unstable_platforms: ''
+-
+ id: iceman
+ support: excellent
+ notes: ''
+ since_version: 1.2.0
+ stable_platforms: dos
+ unstable_platforms: 'amiga,atarist'
+-
+ id: islandbrain
+ support: excellent
+ notes: ''
+ since_version: 1.2.0
+ stable_platforms: dos
+ unstable_platforms: ''
+-
+ id: jones
+ support: excellent
+ notes: ''
+ since_version: 1.2.0
+ stable_platforms: dos
+ unstable_platforms: ''
+-
+ id: kq1sci
+ support: excellent
+ notes: ''
+ since_version: 1.2.0
+ stable_platforms: dos
+ unstable_platforms: amiga
+-
+ id: kq4sci
+ support: excellent
+ notes: ''
+ since_version: 1.2.0
+ stable_platforms: dos
+ unstable_platforms: 'amiga,atarist'
+-
+ id: kq5
+ support: excellent
+ notes: ''
+ since_version: 1.2.0
+ stable_platforms: dos
+ unstable_platforms: win
+-
+ id: kq6
+ support: excellent
+ notes: ''
+ since_version: 1.2.0
+ stable_platforms: 'dos,mac,win'
+ unstable_platforms: ''
+-
+ id: laurabow
+ support: excellent
+ notes: ''
+ since_version: 1.2.0
+ stable_platforms: dos
+ unstable_platforms: 'amiga,atarist'
+-
+ id: longbow
+ support: excellent
+ notes: ''
+ since_version: 1.2.0
+ stable_platforms: dos
+ unstable_platforms: amiga
+-
+ id: lsl1sci
+ support: excellent
+ notes: ''
+ since_version: 1.2.0
+ stable_platforms: dos
+ unstable_platforms: 'amiga,mac'
+-
+ id: lsl2
+ support: excellent
+ notes: ''
+ since_version: 1.2.0
+ stable_platforms: dos
+ unstable_platforms: 'amiga,atarist'
+-
+ id: lsl3
+ support: excellent
+ notes: ''
+ since_version: 1.2.0
+ stable_platforms: dos
+ unstable_platforms: 'amiga,atarist'
+-
+ id: lsl5
+ support: excellent
+ notes: ''
+ since_version: 1.2.0
+ stable_platforms: 'amiga,dos,mac'
+ unstable_platforms: ''
+-
+ id: lsl6
+ support: excellent
+ notes: ''
+ since_version: 1.2.0
+ stable_platforms: dos
+ unstable_platforms: mac
+-
+ id: mothergoose
+ support: excellent
+ notes: ''
+ since_version: 1.2.0
+ stable_platforms: dos
+ unstable_platforms: amiga
+-
+ id: pepper
+ support: excellent
+ notes: ''
+ since_version: 1.2.0
+ stable_platforms: dos
+ unstable_platforms: ''
+-
+ id: pq1sci
+ support: excellent
+ notes: ''
+ since_version: 1.2.0
+ stable_platforms: dos
+ unstable_platforms: ''
+-
+ id: pq2
+ support: excellent
+ notes: ''
+ since_version: 1.2.0
+ stable_platforms: dos
+ unstable_platforms: 'amiga,atarist,pc98'
+-
+ id: pq3
+ support: excellent
+ notes: ''
+ since_version: 1.2.0
+ stable_platforms: dos
+ unstable_platforms: amiga
+-
+ id: qfg1vga
+ support: excellent
+ notes: ''
+ since_version: 1.2.0
+ stable_platforms: 'dos,mac'
+ unstable_platforms: ''
+-
+ id: qfg2
+ support: excellent
+ notes: ''
+ since_version: 1.2.0
+ stable_platforms: dos
+ unstable_platforms: amiga
+-
+ id: qfg3
+ support: excellent
+ notes: ''
+ since_version: 1.2.0
+ stable_platforms: dos
+ unstable_platforms: ''
+-
+ id: slater
+ support: excellent
+ notes: ''
+ since_version: 1.2.0
+ stable_platforms: 'dos,mac'
+ unstable_platforms: ''
+-
+ id: sq1sci
+ support: excellent
+ notes: ''
+ since_version: 1.2.0
+ stable_platforms: dos
+ unstable_platforms: 'amiga,mac'
+-
+ id: sq3
+ support: excellent
+ notes: ''
+ since_version: 1.2.0
+ stable_platforms: dos
+ unstable_platforms: 'mac,amiga,atarist'
+-
+ id: sq4
+ support: excellent
+ notes: ''
+ since_version: 1.2.0
+ stable_platforms: dos
+ unstable_platforms: 'win,amiga,mac,pc98'
+-
+ id: sq5
+ support: excellent
+ notes: ''
+ since_version: 1.2.0
+ stable_platforms: dos
+ unstable_platforms: ''
+-
+ id: pajama
+ support: good
+ notes: ''
+ since_version: 1.2.0
+ stable_platforms: 'mac,win'
+ unstable_platforms: ''
+-
+ id: pn
+ support: untested
+ notes: '- Minor spacing glitches with charset. - No day to night fading in Amiga and Atari ST versions.'
+ since_version: 1.3.0
+ stable_platforms: 'amiga,atarist,dos'
+ unstable_platforms: ''
+-
+ id: pn
+ support: untested
+ notes: '- Minor spacing glitches with charset - No day to night fading in Amiga and Atari ST versions'
+ since_version: 1.3.0
+ stable_platforms: 'amiga,atarist,dos'
+ unstable_platforms: ''
+-
+ id: bambou
+ support: good
+ notes: ''
+ since_version: 1.3.0
+ stable_platforms: win
+ unstable_platforms: ''
+-
+ id: urban
+ support: good
+ notes: ''
+ since_version: 1.3.0
+ stable_platforms: win
+ unstable_platforms: ''
+-
+ id: hugo1
+ support: good
+ notes: '- Playback is not supported - No support for one of the original fonts used during the intro of the DOS version'
+ since_version: 1.3.0
+ stable_platforms: 'dos,win'
+ unstable_platforms: ''
+-
+ id: hugo2
+ support: good
+ notes: '- Playback is not supported'
+ since_version: 1.3.0
+ stable_platforms: 'dos,win'
+ unstable_platforms: ''
+-
+ id: hugo3
+ support: good
+ notes: '- Playback is not supported'
+ since_version: 1.3.0
+ stable_platforms: 'dos,win'
+ unstable_platforms: ''
+-
+ id: arthur
+ support: good
+ notes: ''
+ since_version: 1.3.0
+ stable_platforms: 'mac,win'
+ unstable_platforms: ''
+-
+ id: arthurbday
+ support: good
+ notes: '- The 2.0 version is not supported yet'
+ since_version: 1.3.0
+ stable_platforms: 'mac,win'
+ unstable_platforms: 'mac,win'
+-
+ id: beardark
+ support: good
+ notes: ''
+ since_version: 1.3.0
+ stable_platforms: 'mac,win'
+ unstable_platforms: ''
+-
+ id: bearfight
+ support: good
+ notes: ''
+ since_version: 1.3.0
+ stable_platforms: 'mac,win'
+ unstable_platforms: ''
+-
+ id: grandma
+ support: good
+ notes: '- The 2.0 version is not supported yet'
+ since_version: 1.3.0
+ stable_platforms: 'mac,win'
+ unstable_platforms: 'mac,win'
+-
+ id: greeneggs
+ support: good
+ notes: '- Minigames are not supported yet'
+ since_version: 1.3.0
+ stable_platforms: 'mac,win'
+ unstable_platforms: ''
+-
+ id: harryhh
+ support: good
+ notes: ''
+ since_version: 1.3.0
+ stable_platforms: 'mac,win'
+ unstable_platforms: ''
+-
+ id: lilmonster
+ support: good
+ notes: '- The CD-i version is not supported'
+ since_version: 1.3.0
+ stable_platforms: 'mac,win'
+ unstable_platforms: ''
+-
+ id: newkid
+ support: good
+ notes: ''
+ since_version: 1.3.0
+ stable_platforms: 'mac,win'
+ unstable_platforms: ''
+-
+ id: ruff
+ support: good
+ notes: ''
+ since_version: 1.3.0
+ stable_platforms: 'mac,win'
+ unstable_platforms: ''
+-
+ id: seussabc
+ support: good
+ notes: ''
+ since_version: 1.3.0
+ stable_platforms: 'mac,win'
+ unstable_platforms: ''
+-
+ id: sheila
+ support: good
+ notes: ''
+ since_version: 1.3.0
+ stable_platforms: 'mac,win'
+ unstable_platforms: ''
+-
+ id: stellaluna
+ support: good
+ notes: ''
+ since_version: 1.3.0
+ stable_platforms: 'mac,win'
+ unstable_platforms: ''
+-
+ id: tortoise
+ support: good
+ notes: ''
+ since_version: 1.3.0
+ stable_platforms: 'mac,win'
+ unstable_platforms: ''
+-
+ id: camelot
+ support: excellent
+ notes: '- Music in the Amiga version may have glitches'
+ since_version: 1.3.0
+ stable_platforms: 'amiga,atarist,dos'
+ unstable_platforms: ''
+-
+ id: castlebrain
+ support: excellent
+ notes: '- Music in Macintosh and Amiga versions may have glitches - No support for Macintosh hi-res fonts'
+ since_version: 1.3.0
+ stable_platforms: 'amiga,dos,mac,pc98'
+ unstable_platforms: ''
+-
+ id: hoyle1
+ support: excellent
+ notes: '- Music in the Amiga version may have glitches'
+ since_version: 1.3.0
+ stable_platforms: 'amiga,atarist,dos'
+ unstable_platforms: ''
+-
+ id: hoyle2
+ support: excellent
+ notes: '- Music in the Amiga version may have glitches'
+ since_version: 1.3.0
+ stable_platforms: 'amiga,atarist,dos,mac'
+ unstable_platforms: ''
+-
+ id: hoyle3
+ support: excellent
+ notes: '- Music in the Amiga version may have glitches'
+ since_version: 1.3.0
+ stable_platforms: 'amiga,dos'
+ unstable_platforms: ''
+-
+ id: iceman
+ support: excellent
+ notes: '- Music in the Amiga version may have glitches'
+ since_version: 1.3.0
+ stable_platforms: 'amiga,atarist,dos'
+ unstable_platforms: ''
+-
+ id: kq1sci
+ support: excellent
+ notes: '- Music in the Amiga version may have glitches'
+ since_version: 1.3.0
+ stable_platforms: 'amiga,dos'
+ unstable_platforms: ''
+-
+ id: kq4sci
+ support: excellent
+ notes: '- Music in the Amiga version may have glitches'
+ since_version: 1.3.0
+ stable_platforms: 'amiga,atarist,dos'
+ unstable_platforms: ''
+-
+ id: kq5
+ support: excellent
+ notes: '- Music in the Macintosh and Amiga versions may have glitches - No support for Macintosh hi-res fonts'
+ since_version: 1.3.0
+ stable_platforms: 'amiga,dos,fmtowns,mac,pc98'
+ unstable_platforms: win
+-
+ id: laurabow
+ support: excellent
+ notes: '- Music in the Amiga version may have glitches'
+ since_version: 1.3.0
+ stable_platforms: 'amiga,atarist,dos'
+ unstable_platforms: ''
+-
+ id: laurabow2
+ support: excellent
+ notes: ''
+ since_version: 1.3.0
+ stable_platforms: dos
+ unstable_platforms: ''
+-
+ id: lsl1sci
+ support: excellent
+ notes: '- Music in the Macintosh and Amiga versions may have glitches - No support for Macintosh hi-res fonts'
+ since_version: 1.3.0
+ stable_platforms: 'amiga,dos,mac'
+ unstable_platforms: ''
+-
+ id: lsl2
+ support: excellent
+ notes: '- Music in the Amiga versions may have glitches'
+ since_version: 1.3.0
+ stable_platforms: 'amiga,atarist,dos'
+ unstable_platforms: ''
+-
+ id: lsl3
+ support: excellent
+ notes: '- Music in the Amiga versions may have glitches'
+ since_version: 1.3.0
+ stable_platforms: 'amiga,atarist,dos'
+ unstable_platforms: ''
+-
+ id: lsl5
+ support: excellent
+ notes: '- Music in the Macintosh and Amiga versions may have glitches - No support for Macintosh hi-res fonts'
+ since_version: 1.3.0
+ stable_platforms: 'amiga,dos,mac'
+ unstable_platforms: ''
+-
+ id: mothergoose
+ support: excellent
+ notes: '- Music in the Amiga versions may have glitches'
+ since_version: 1.3.0
+ stable_platforms: 'amiga,dos'
+ unstable_platforms: ''
+-
+ id: pq2
+ support: excellent
+ notes: '- Music in the Amiga versions may have glitches'
+ since_version: 1.3.0
+ stable_platforms: 'amiga,atarist,dos,pc98'
+ unstable_platforms: ''
+-
+ id: pq3
+ support: excellent
+ notes: '- Music in the Amiga versions may have glitches'
+ since_version: 1.3.0
+ stable_platforms: 'amiga,dos'
+ unstable_platforms: ''
+-
+ id: qfg2
+ support: excellent
+ notes: '- Music in the Amiga versions may have glitches'
+ since_version: 1.3.0
+ stable_platforms: 'amiga,dos'
+ unstable_platforms: ''
+-
+ id: sq1sci
+ support: excellent
+ notes: '- Music in Macintosh and Amiga versions may have glitches - No support for Macintosh hi-res fonts'
+ since_version: 1.3.0
+ stable_platforms: 'amiga,dos,mac'
+ unstable_platforms: ''
+-
+ id: sq3
+ support: excellent
+ notes: '- Music in the Amiga version may have glitches'
+ since_version: 1.3.0
+ stable_platforms: 'amiga,atarist,dos'
+ unstable_platforms: mac
+-
+ id: sq4
+ support: excellent
+ notes: '- Music in Macintosh and Amiga versions may have glitches - No support for Macintosh hi-res fonts'
+ since_version: 1.3.0
+ stable_platforms: 'amiga,dos,mac,pc98'
+ unstable_platforms: win
+-
+ id: baseball
+ support: good
+ notes: ''
+ since_version: 1.3.0
+ stable_platforms: 'mac,win'
+ unstable_platforms: ''
+-
+ id: baseball2001
+ support: good
+ notes: '- No support for multiplayer'
+ since_version: 1.3.0
+ stable_platforms: 'mac,win'
+ unstable_platforms: ''
+-
+ id: baseball2003
+ support: bugged
+ notes: '- Minor graphical glitches'
+ since_version: 1.3.0
+ stable_platforms: 'mac,win'
+ unstable_platforms: ''
+-
+ id: football
+ support: good
+ notes: ''
+ since_version: 1.3.0
+ stable_platforms: 'mac,win'
+ unstable_platforms: ''
+-
+ id: football2002
+ support: good
+ notes: '- Minor graphical glitches - No support for multiplayer - No videos'
+ since_version: 1.3.0
+ stable_platforms: 'mac,win'
+ unstable_platforms: ''
+-
+ id: toon
+ support: excellent
+ notes: '- Requires the toon.dat resource file to be placed in the game directory - Occasional graphical glitches'
+ since_version: 1.3.0
+ stable_platforms: dos
+ unstable_platforms: ''
+-
+ id: winnie
+ support: good
+ notes: ''
+ since_version: 1.4.0
+ stable_platforms: 'amiga,apple2,c64,dos'
+ unstable_platforms: ''
+-
+ id: lol
+ support: good
+ notes: '- Requires the kyra.dat resource file to be placed in the game directory'
+ since_version: 1.4.0
+ stable_platforms: 'dos,pc98'
+ unstable_platforms: ''
+-
+ id: ecoquest
+ support: excellent
+ notes: ''
+ since_version: 1.4.0
+ stable_platforms: 'dos,win'
+ unstable_platforms: ''
+-
+ id: jones
+ support: excellent
+ notes: ''
+ since_version: 1.4.0
+ stable_platforms: 'dos,win'
+ unstable_platforms: ''
+-
+ id: kq5
+ support: excellent
+ notes: '- Music in the Macintosh and Amiga versions may have glitches - No support for Macintosh hi-res fonts'
+ since_version: 1.4.0
+ stable_platforms: 'amiga,dos,fmtowns,mac,pc98,win'
+ unstable_platforms: ''
+-
+ id: longbow
+ support: excellent
+ notes: '- Music in the Amiga version may have glitches'
+ since_version: 1.4.0
+ stable_platforms: 'amiga,dos'
+ unstable_platforms: ''
+-
+ id: sq4
+ support: excellent
+ notes: '- Music in Macintosh and Amiga versions may have glitches - No support for Macintosh hi-res fonts'
+ since_version: 1.4.0
+ stable_platforms: 'amiga,dos,mac,pc98,win'
+ unstable_platforms: ''
+-
+ id: bluesbirthday
+ support: good
+ notes: '- Minor graphical glitches'
+ since_version: 1.4.0
+ stable_platforms: 'mac,win'
+ unstable_platforms: ''
+-
+ id: ringworld
+ support: good
+ notes: ''
+ since_version: 1.4.0
+ stable_platforms: dos
+ unstable_platforms: ''
+-
+ id: soltys
+ support: good
+ notes: ''
+ since_version: 1.5.0
+ stable_platforms: dos
+ unstable_platforms: ''
+-
+ id: darby
+ support: good
+ notes: ''
+ since_version: 1.5.0
+ stable_platforms: 'mac,win'
+ unstable_platforms: ''
+-
+ id: gregory
+ support: good
+ notes: ''
+ since_version: 1.5.0
+ stable_platforms: 'mac,win'
+ unstable_platforms: ''
+-
+ id: liam
+ support: good
+ notes: ''
+ since_version: 1.5.0
+ stable_platforms: 'mac,win'
+ unstable_platforms: ''
+-
+ id: princess
+ support: good
+ notes: ''
+ since_version: 1.5.0
+ stable_platforms: 'mac,win'
+ unstable_platforms: ''
+-
+ id: sleepingcub
+ support: good
+ notes: ''
+ since_version: 1.5.0
+ stable_platforms: 'mac,win'
+ unstable_platforms: ''
+-
+ id: dreamweb
+ support: excellent
+ notes: ''
+ since_version: 1.5.0
+ stable_platforms: dos
+ unstable_platforms: ''
+-
+ id: bambou
+ support: excellent
+ notes: ''
+ since_version: 1.5.0
+ stable_platforms: win
+ unstable_platforms: ''
+-
+ id: fascination
+ support: good
+ notes: ''
+ since_version: 1.5.0
+ stable_platforms: 'amiga,atarist,dos'
+ unstable_platforms: ''
+-
+ id: geisha
+ support: good
+ notes: ''
+ since_version: 1.5.0
+ stable_platforms: 'amiga,atarist,dos'
+ unstable_platforms: ''
+-
+ id: littlered
+ support: good
+ notes: ''
+ since_version: 1.5.0
+ stable_platforms: 'amiga,dos,win'
+ unstable_platforms: ''
+-
+ id: urban
+ support: excellent
+ notes: ''
+ since_version: 1.5.0
+ stable_platforms: win
+ unstable_platforms: ''
+-
+ id: baseball2003
+ support: good
+ notes: ''
+ since_version: 1.5.0
+ stable_platforms: 'mac,win'
+ unstable_platforms: ''
+-
+ id: loom
+ support: excellent
+ notes: '- The Roland update from LucasArts is required for MIDI support in the EGA version - No music or sound effects in the Macintosh version - There is no support for the Macintosh interface - FM-TOWNS Kanji version requires the FM-TOWNS Font ROM - PC-Engine Kanji version requires the system card ROM'
+ since_version: 1.5.0
+ stable_platforms: 'amiga,atarist,dos,fmtowns,pce'
+ unstable_platforms: mac
+-
+ id: lost
+ support: good
+ notes: ''
+ since_version: 1.5.0
+ stable_platforms: 'mac,win'
+ unstable_platforms: ''
+-
+ id: mustard
+ support: good
+ notes: ''
+ since_version: 1.5.0
+ stable_platforms: 'mac,win'
+ unstable_platforms: ''
+-
+ id: toon
+ support: excellent
+ notes: ''
+ since_version: 1.5.0
+ stable_platforms: dos
+ unstable_platforms: ''
+-
+ id: blueforce
+ support: good
+ notes: ''
+ since_version: 1.5.0
+ stable_platforms: dos
+ unstable_platforms: ''
+-
+ id: drascula
+ support: excellent
+ notes: ''
+ since_version: 1.6.0
+ stable_platforms: dos
+ unstable_platforms: ''
+-
+ id: hopkins
+ support: good
+ notes: ''
+ since_version: 1.6.0
+ stable_platforms: 'beos,linux,os2,win'
+ unstable_platforms: ''
+-
+ id: eob
+ support: good
+ notes: ''
+ since_version: 1.6.0
+ stable_platforms: dos
+ unstable_platforms: 'amiga,pc98'
+-
+ id: eob2
+ support: good
+ notes: ''
+ since_version: 1.6.0
+ stable_platforms: dos
+ unstable_platforms: 'amiga,fmtowns,pc98'
+-
+ id: kyra1
+ support: excellent
+ notes: '- No music or sound effects in the Macintosh floppy versions - Macintosh CD is using included DOS music and sound effects for now'
+ since_version: 1.6.0
+ stable_platforms: 'amiga,dos,fmtowns,mac,pc98'
+ unstable_platforms: ''
+-
+ id: kyra2
+ support: excellent
+ notes: ''
+ since_version: 1.6.0
+ stable_platforms: 'dos,fmtowns,pc98'
+ unstable_platforms: ''
+-
+ id: kyra3
+ support: excellent
+ notes: ''
+ since_version: 1.6.0
+ stable_platforms: 'dos,mac'
+ unstable_platforms: ''
+-
+ id: lol
+ support: good
+ notes: ''
+ since_version: 1.6.0
+ stable_platforms: 'dos,pc98'
+ unstable_platforms: ''
+-
+ id: pegasus
+ support: good
+ notes: '- Occasional video graphical glitches'
+ since_version: 1.6.0
+ stable_platforms: 'mac,win'
+ unstable_platforms: ''
+-
+ id: queen
+ support: excellent
+ notes: ''
+ since_version: 1.6.0
+ stable_platforms: 'amiga,dos'
+ unstable_platforms: ''
+-
+ id: ihnm
+ support: good
+ notes: ''
+ since_version: 1.6.0
+ stable_platforms: 'dos,mac'
+ unstable_platforms: ''
+-
+ id: loom
+ support: excellent
+ notes: '- The Roland update from LucasArts is required for MIDI support in the EGA version - There is no support for the Macintosh interface - FM-TOWNS Kanji version requires the FM-TOWNS Font ROM - PC-Engine Kanji version requires the system card ROM'
+ since_version: 1.6.0
+ stable_platforms: 'amiga,atarist,dos,fmtowns,pce'
+ unstable_platforms: mac
+-
+ id: sky
+ support: excellent
+ notes: '- Floppy demos aren''t supported - The following bugs are present in the original game and can''t be fixed: - The voice files for some sentences are missing. - This is especially noticeable in the court- and Mrs. Piermont sequence. - The fonts for the LINC terminal are partially incorrect and the text sometimes passes the screen borders - Special characters for french and italian subtitles are incorrect sometimes'
+ since_version: 1.6.0
+ stable_platforms: dos
+ unstable_platforms: amiga
+-
+ id: teenagent
+ support: good
+ notes: '- Occasional graphical glitches'
+ since_version: 1.6.0
+ stable_platforms: dos
+ unstable_platforms: ''
+-
+ id: dw
+ support: excellent
+ notes: '- PSX version is missing music support'
+ since_version: 1.6.0
+ stable_platforms: 'dos,mac,psx'
+ unstable_platforms: ''
+-
+ id: toltecs
+ support: good
+ notes: ''
+ since_version: 1.6.0
+ stable_platforms: dos
+ unstable_platforms: ''
+-
+ id: tony
+ support: excellent
+ notes: ''
+ since_version: 1.6.0
+ stable_platforms: win
+ unstable_platforms: ''
+-
+ id: fascination
+ support: excellent
+ notes: ''
+ since_version: 1.7.0
+ stable_platforms: 'amiga,atarist,dos'
+ unstable_platforms: ''
+-
+ id: lit
+ support: excellent
+ notes: '- Issues with the mouse cursor visibility'
+ since_version: 1.7.0
+ stable_platforms: 'dos,win'
+ unstable_platforms: ''
+-
+ id: mortevielle
+ support: untested
+ notes: '- No speech synthesis'
+ since_version: 1.7.0
+ stable_platforms: dos
+ unstable_platforms: ''
+-
+ id: chivalry
+ support: good
+ notes: '- Requires additional fonts.'
+ since_version: 1.7.0
+ stable_platforms: win
+ unstable_platforms: ''
+-
+ id: amazon
+ support: untested
+ notes: '- Demo version is not supported'
+ since_version: 1.8.0
+ stable_platforms: dos
+ unstable_platforms: dos
+-
+ id: bbvs
+ support: untested
+ notes: ''
+ since_version: 1.8.0
+ stable_platforms: win
+ unstable_platforms: ''
+-
+ id: sfinx
+ support: untested
+ notes: ''
+ since_version: 1.8.0
+ stable_platforms: dos
+ unstable_platforms: ''
+-
+ id: lab
+ support: good
+ notes: ''
+ since_version: 1.8.0
+ stable_platforms: 'dos,win'
+ unstable_platforms: amiga
+-
+ id: nebular
+ support: untested
+ notes: '- Original floppy version must be installed using DosBox before game is playable.'
+ since_version: 1.8.0
+ stable_platforms: dos
+ unstable_platforms: ''
+-
+ id: maniac
+ support: good
+ notes: '- Minor graphical glitches in NES version'
+ since_version: 1.8.0
+ stable_platforms: 'amiga,apple2,atarist,c64,dos,nes'
+ unstable_platforms: ''
+-
+ id: pjgames
+ support: good
+ notes: ''
+ since_version: 1.8.0
+ stable_platforms: 'mac,win'
+ unstable_platforms: ''
+-
+ id: rosetattoo
+ support: untested
+ notes: ''
+ since_version: 1.8.0
+ stable_platforms: dos
+ unstable_platforms: ''
+-
+ id: scalpel
+ support: untested
+ notes: ''
+ since_version: 1.8.0
+ stable_platforms: dos
+ unstable_platforms: '3do,dos'
+-
+ id: sword25
+ support: untested
+ notes: ''
+ since_version: 1.8.0
+ stable_platforms: win
+ unstable_platforms: ''
+-
+ id: zgi
+ support: good
+ notes: '- The hires MPEG2 videos of the DVD version aren''t supported yet. The lowres videos are used instead'
+ since_version: 1.8.0
+ stable_platforms: win
+ unstable_platforms: ''
+-
+ id: znemesis
+ support: good
+ notes: ''
+ since_version: 1.8.0
+ stable_platforms: 'dos,win'
+ unstable_platforms: ''
+-
+ id: hires0
+ support: good
+ notes: ''
+ since_version: 1.9.0
+ stable_platforms: apple2
+ unstable_platforms: ''
+-
+ id: hires1
+ support: good
+ notes: ''
+ since_version: 1.9.0
+ stable_platforms: apple2
+ unstable_platforms: ''
+-
+ id: hires2
+ support: good
+ notes: ''
+ since_version: 1.9.0
+ stable_platforms: apple2
+ unstable_platforms: ''
+-
+ id: bc
+ support: good
+ notes: ''
+ since_version: 1.9.0
+ stable_platforms: 'amiga,apple2gs,coco3,dos'
+ unstable_platforms: ''
+-
+ id: goldrush
+ support: good
+ notes: ''
+ since_version: 1.9.0
+ stable_platforms: 'amiga,apple2gs,atarist,coco3,dos,mac'
+ unstable_platforms: ''
+-
+ id: kq1
+ support: good
+ notes: ''
+ since_version: 1.9.0
+ stable_platforms: 'amiga,apple2gs,atarist,coco3,dos,mac'
+ unstable_platforms: ''
+-
+ id: kq2
+ support: good
+ notes: ''
+ since_version: 1.9.0
+ stable_platforms: 'amiga,apple2gs,coco3,dos,mac'
+ unstable_platforms: ''
+-
+ id: kq3
+ support: good
+ notes: ''
+ since_version: 1.9.0
+ stable_platforms: 'amiga,apple2gs,atarist,coco3,dos,mac'
+ unstable_platforms: ''
+-
+ id: kq4
+ support: good
+ notes: ''
+ since_version: 1.9.0
+ stable_platforms: 'apple2gs,coco3,dos'
+ unstable_platforms: ''
+-
+ id: lsl1
+ support: good
+ notes: ''
+ since_version: 1.9.0
+ stable_platforms: 'amiga,apple2gs,atarist,coco3,dos,mac'
+ unstable_platforms: ''
+-
+ id: mh1
+ support: good
+ notes: ''
+ since_version: 1.9.0
+ stable_platforms: 'amiga,apple2gs,atarist,coco3,dos'
+ unstable_platforms: ''
+-
+ id: mh2
+ support: good
+ notes: ''
+ since_version: 1.9.0
+ stable_platforms: 'amiga,atarist,coco3,dos'
+ unstable_platforms: ''
+-
+ id: mixedup
+ support: good
+ notes: ''
+ since_version: 1.9.0
+ stable_platforms: 'apple2gs,coco3,dos'
+ unstable_platforms: ''
+-
+ id: pq1
+ support: good
+ notes: ''
+ since_version: 1.9.0
+ stable_platforms: 'amiga,apple2gs,coco3,dos,mac'
+ unstable_platforms: ''
+-
+ id: sq1
+ support: good
+ notes: ''
+ since_version: 1.9.0
+ stable_platforms: 'amiga,apple2gs,atarist,coco3,dos,mac'
+ unstable_platforms: ''
+-
+ id: sq2
+ support: good
+ notes: ''
+ since_version: 1.9.0
+ stable_platforms: 'amiga,apple2gs,atarist,coco3,dos,mac'
+ unstable_platforms: ''
+-
+ id: gnap
+ support: untested
+ notes: ''
+ since_version: 1.9.0
+ stable_platforms: win
+ unstable_platforms: ''
+-
+ id: myst
+ support: untested
+ notes: ''
+ since_version: 1.9.0
+ stable_platforms: win
+ unstable_platforms: ''
+-
+ id: mystme
+ support: untested
+ notes: ''
+ since_version: 1.9.0
+ stable_platforms: win
+ unstable_platforms: ''
+-
+ id: neverhood
+ support: good
+ notes: ''
+ since_version: '1.7,0'
+ stable_platforms: win
+ unstable_platforms: ''
+-
+ id: ringworld2
+ support: untested
+ notes: ''
+ since_version: '1.7,0'
+ stable_platforms: dos
+ unstable_platforms: ''
+-
+ id: voyeur
+ support: good
+ notes: ''
+ since_version: '1.7,0'
+ stable_platforms: dos
+ unstable_platforms: ''
+-
+ id: hires3
+ support: good
+ notes: ''
+ since_version: 2.0.0
+ stable_platforms: apple2
+ unstable_platforms: ''
+-
+ id: hires4
+ support: good
+ notes: ''
+ since_version: 2.0.0
+ stable_platforms: apple2
+ unstable_platforms: ''
+-
+ id: hires5
+ support: good
+ notes: ''
+ since_version: 2.0.0
+ stable_platforms: apple2
+ unstable_platforms: ''
+-
+ id: hires6
+ support: good
+ notes: ''
+ since_version: 2.0.0
+ stable_platforms: apple2
+ unstable_platforms: ''
+-
+ id: fullpipe
+ support: good
+ notes: ''
+ since_version: 2.0.0
+ stable_platforms: 'steam,win'
+ unstable_platforms: 'android,ios'
+-
+ id: myst
+ support: excellent
+ notes: ''
+ since_version: 2.0.0
+ stable_platforms: win
+ unstable_platforms: ''
+-
+ id: mystme
+ support: good
+ notes: '- The hint system is not available'
+ since_version: 2.0.0
+ stable_platforms: win
+ unstable_platforms: ''
+-
+ id: riven
+ support: good
+ notes: ''
+ since_version: 2.0.0
+ stable_platforms: 'mac,win'
+ unstable_platforms: ''
+-
+ id: plumbers
+ support: untested
+ notes: ''
+ since_version: 2.0.0
+ stable_platforms: win
+ unstable_platforms: ''
+-
+ id: chest
+ support: broken
+ notes: ''
+ since_version: 2.0.0
+ stable_platforms: dos
+ unstable_platforms: ''
+-
+ id: gk1
+ support: good
+ notes: ''
+ since_version: 2.0.0
+ stable_platforms: 'dos,win'
+ unstable_platforms: mac
+-
+ id: gk2
+ support: excellent
+ notes: '- Video files in the original (1.0) release are corrupt (bad A/V sync)'
+ since_version: 2.0.0
+ stable_platforms: 'dos,win'
+ unstable_platforms: mac
+-
+ id: hoyle5
+ support: broken
+ notes: ''
+ since_version: 2.0.0
+ stable_platforms: win
+ unstable_platforms: mac
+-
+ id: kq7
+ support: good
+ notes: ''
+ since_version: 2.0.0
+ stable_platforms: 'dos,win'
+ unstable_platforms: mac
+-
+ id: kquestions
+ support: good
+ notes: ''
+ since_version: 2.0.0
+ stable_platforms: dos
+ unstable_platforms: ''
+-
+ id: lighthouse
+ support: good
+ notes: ''
+ since_version: 2.0.0
+ stable_platforms: dos
+ unstable_platforms: mac
+-
+ id: lsl6hires
+ support: good
+ notes: ''
+ since_version: 2.0.0
+ stable_platforms: 'dos,win'
+ unstable_platforms: mac
+-
+ id: lsl7
+ support: excellent
+ notes: ''
+ since_version: 2.0.0
+ stable_platforms: dos
+ unstable_platforms: mac
+-
+ id: mothergoosehires
+ support: good
+ notes: ''
+ since_version: 2.0.0
+ stable_platforms: win
+ unstable_platforms: mac
+-
+ id: phantasmagoria
+ support: good
+ notes: ''
+ since_version: 2.0.0
+ stable_platforms: 'dos,win'
+ unstable_platforms: mac
+-
+ id: phantasmagoria2
+ support: excellent
+ notes: ''
+ since_version: 2.0.0
+ stable_platforms: win
+ unstable_platforms: ''
+-
+ id: pq4
+ support: broken
+ notes: ''
+ since_version: 2.0.0
+ stable_platforms: dos
+ unstable_platforms: mac
+-
+ id: pqswat
+ support: untested
+ notes: ''
+ since_version: 2.0.0
+ stable_platforms: dos
+ unstable_platforms: mac
+-
+ id: qfg4
+ support: broken
+ notes: ''
+ since_version: 2.0.0
+ stable_platforms: 'dos,win'
+ unstable_platforms: ''
+-
+ id: rama
+ support: good
+ notes: ''
+ since_version: 2.0.0
+ stable_platforms: dos
+ unstable_platforms: mac
+-
+ id: shivers
+ support: excellent
+ notes: ''
+ since_version: 2.0.0
+ stable_platforms: win
+ unstable_platforms: mac
+-
+ id: sq6
+ support: good
+ notes: ''
+ since_version: 2.0.0
+ stable_platforms: 'dos,win'
+ unstable_platforms: mac
+-
+ id: torin
+ support: excellent
+ notes: ''
+ since_version: 2.0.0
+ stable_platforms: win
+ unstable_platforms: mac
+-
+ id: titanic
+ support: good
+ notes: ''
+ since_version: 2.0.0
+ stable_platforms: win
+ unstable_platforms: ''
+-
+ id: amazon
+ support: good
+ notes: ''
+ since_version: 2.1.0
+ stable_platforms: dos
+ unstable_platforms: dos
+-
+ id: pn
+ support: good
+ notes: '- Minor spacing glitches with charset - No day to night fading in Amiga and Atari ST versions'
+ since_version: 2.1.0
+ stable_platforms: 'amiga,atarist,dos'
+ unstable_platforms: ''
+-
+ id: waxworks
+ support: good
+ notes: '- Amiga version has not been confirmed as completable. - DOS version doesn''t load or save items states correctly, leading to various bugs'
+ since_version: 2.1.0
+ stable_platforms: 'amiga,dos'
+ unstable_platforms: ''
+-
+ id: bbvs
+ support: good
+ notes: ''
+ since_version: 2.1.0
+ stable_platforms: win
+ unstable_platforms: ''
+-
+ id: bladerunner
+ support: good
+ notes: ''
+ since_version: 2.1.0
+ stable_platforms: win
+ unstable_platforms: ''
+-
+ id: sfinx
+ support: good
+ notes: ''
+ since_version: 2.1.0
+ stable_platforms: dos
+ unstable_platforms: ''
+-
+ id: versailles
+ support: good
+ notes: ''
+ since_version: 2.1.0
+ stable_platforms: 'dos,mac,win'
+ unstable_platforms: ''
+-
+ id: gnap
+ support: good
+ notes: ''
+ since_version: 2.1.0
+ stable_platforms: win
+ unstable_platforms: ''
+-
+ id: hdb
+ support: excellent
+ notes: ''
+ since_version: 2.1.0
+ stable_platforms: 'linux,pocketpc,win'
+ unstable_platforms: ''
+-
+ id: duckman
+ support: good
+ notes: ''
+ since_version: 2.1.0
+ stable_platforms: win
+ unstable_platforms: ''
+-
+ id: eob
+ support: good
+ notes: ''
+ since_version: 2.1.0
+ stable_platforms: 'amiga,dos'
+ unstable_platforms: 'pc98,segacd'
+-
+ id: eob2
+ support: excellent
+ notes: ''
+ since_version: 2.1.0
+ stable_platforms: 'amiga,dos,fmtowns'
+ unstable_platforms: pc98
+-
+ id: nebular
+ support: good
+ notes: '- Original floppy version must be installed using DosBox before game is playable.'
+ since_version: 2.1.0
+ stable_platforms: dos
+ unstable_platforms: ''
+-
+ id: mortevielle
+ support: good
+ notes: '- No speech synthesis'
+ since_version: 2.1.0
+ stable_platforms: dos
+ unstable_platforms: ''
+-
+ id: plumbers
+ support: good
+ notes: ''
+ since_version: 2.1.0
+ stable_platforms: win
+ unstable_platforms: ''
+-
+ id: prince
+ support: untested
+ notes: ''
+ since_version: 2.1.0
+ stable_platforms: win
+ unstable_platforms: ''
+-
+ id: hoyle5
+ support: good
+ notes: '- The poker game of the Hoyle Classic Games collection is not yet supported'
+ since_version: 2.1.0
+ stable_platforms: win
+ unstable_platforms: mac
+-
+ id: hoyle5solitaire
+ support: good
+ notes: ''
+ since_version: 2.1.0
+ stable_platforms: win
+ unstable_platforms: ''
+-
+ id: pq4
+ support: good
+ notes: ''
+ since_version: 2.1.0
+ stable_platforms: dos
+ unstable_platforms: mac
+-
+ id: pqswat
+ support: good
+ notes: ''
+ since_version: 2.1.0
+ stable_platforms: dos
+ unstable_platforms: mac
+-
+ id: qfg4
+ support: good
+ notes: ''
+ since_version: 2.1.0
+ stable_platforms: 'dos,win'
+ unstable_platforms: ''
+-
+ id: atlantis
+ support: excellent
+ notes: '- FM-TOWNS Kanji version requires the FM-TOWNS Font ROM'
+ since_version: 2.1.0
+ stable_platforms: 'amiga,dos,fmtowns,mac'
+ unstable_platforms: ''
+-
+ id: monkey2
+ support: excellent
+ notes: '- Demo version often crashes due to missing resources, since it was never meant to be playable - No support for playing back the recorded file of gameplay in demo version - FM-TOWNS Kanji version requires the FM-TOWNS Font ROM'
+ since_version: 2.1.0
+ stable_platforms: 'amiga,dos,fmtowns,mac'
+ unstable_platforms: ''
+-
+ id: rosetattoo
+ support: good
+ notes: ''
+ since_version: 2.1.0
+ stable_platforms: dos
+ unstable_platforms: ''
+-
+ id: scalpel
+ support: good
+ notes: ''
+ since_version: 2.1.0
+ stable_platforms: dos
+ unstable_platforms: '3do,dos'
+-
+ id: msn1
+ support: good
+ notes: ''
+ since_version: 2.1.0
+ stable_platforms: dos
+ unstable_platforms: ''
+-
+ id: msn2
+ support: good
+ notes: ''
+ since_version: 2.1.0
+ stable_platforms: dos
+ unstable_platforms: ''
+-
+ id: sword25
+ support: excellent
+ notes: ''
+ since_version: 2.1.0
+ stable_platforms: win
+ unstable_platforms: ''
+-
+ id: ringworld2
+ support: good
+ notes: ''
+ since_version: 2.1.0
+ stable_platforms: dos
+ unstable_platforms: ''
+-
+ id: cloudsofxeen
+ support: good
+ notes: ''
+ since_version: 2.1.0
+ stable_platforms: dos
+ unstable_platforms: dos
+-
+ id: darksideofxeen
+ support: good
+ notes: ''
+ since_version: 2.1.0
+ stable_platforms: dos
+ unstable_platforms: dos
+-
+ id: swordsofxeen
+ support: good
+ notes: ''
+ since_version: 2.1.0
+ stable_platforms: dos
+ unstable_platforms: ''
+-
+ id: worldofxeen
+ support: good
+ notes: ''
+ since_version: 2.1.0
+ stable_platforms: dos
+ unstable_platforms: dos
+-
+ id: zgi
+ support: good
+ notes: ''
+ since_version: 2.1.0
+ stable_platforms: win
+ unstable_platforms: ''
+-
+ id: os
+ support: good
+ notes: ''
+ since_version: 2.2.0
+ stable_platforms: 'amiga,atarist,dos'
+ unstable_platforms: ''
+-
+ id: dragons
+ support: good
+ notes: ''
+ since_version: 2.2.0
+ stable_platforms: psx
+ unstable_platforms: ''
+-
+ id: griffon
+ support: good
+ notes: ''
+ since_version: 2.2.0
+ stable_platforms: win
+ unstable_platforms: ''
+-
+ id: eob
+ support: excellent
+ notes: ''
+ since_version: 2.2.0
+ stable_platforms: 'amiga,dos,pc98,segacd'
+ unstable_platforms: ''
+-
+ id: lol
+ support: excellent
+ notes: ''
+ since_version: 2.2.0
+ stable_platforms: 'dos,fmtowns,pc98'
+ unstable_platforms: ''
+-
+ id: mortevielle
+ support: good
+ notes: ''
+ since_version: 2.2.0
+ stable_platforms: dos
+ unstable_platforms: ''
+-
+ id: maniac
+ support: good
+ notes: ''
+ since_version: 2.2.0
+ stable_platforms: 'amiga,apple2,atarist,c64,dos,nes'
+ unstable_platforms: ''
+-
+ id: ultima4
+ support: good
+ notes: '- FM-Towns may be working, but we''ll need someone with a copy to provide us a detection entry and test it out. - Provides an optional VGA enhanced mode'
+ since_version: 2.2.0
+ stable_platforms: dos
+ unstable_platforms: ''
+-
+ id: ultima6
+ support: good
+ notes: '- German translation patch is also partially supported, with some interface elements not translated. - Provides an optional enhanced mode that has a full screen map and container widgets.'
+ since_version: 2.2.0
+ stable_platforms: dos
+ unstable_platforms: pc98
+-
+ id: ultima8
+ support: good
+ notes: ''
+ since_version: 2.2.0
+ stable_platforms: dos
+ unstable_platforms: ''
+-
+ id: adrift
+ support: good
+ notes: '- Version 5 is not yet supported'
+ since_version: 2.2.0
+ stable_platforms: dos
+ unstable_platforms: ''
+-
+ id: advsys
+ support: good
+ notes: ''
+ since_version: 2.2.0
+ stable_platforms: dos
+ unstable_platforms: ''
+-
+ id: agt
+ support: good
+ notes: ''
+ since_version: 2.2.0
+ stable_platforms: dos
+ unstable_platforms: ''
+-
+ id: alan
+ support: good
+ notes: ''
+ since_version: 2.2.0
+ stable_platforms: dos
+ unstable_platforms: ''
+-
+ id: archetype
+ support: good
+ notes: ''
+ since_version: 2.2.0
+ stable_platforms: dos
+ unstable_platforms: ''
+-
+ id: hugo
+ support: good
+ notes: ''
+ since_version: 2.2.0
+ stable_platforms: dos
+ unstable_platforms: ''
+-
+ id: jacl
+ support: good
+ notes: ''
+ since_version: 2.2.0
+ stable_platforms: dos
+ unstable_platforms: ''
+-
+ id: level9
+ support: good
+ notes: ''
+ since_version: 2.2.0
+ stable_platforms: dos
+ unstable_platforms: ''
+-
+ id: magnetic
+ support: good
+ notes: ''
+ since_version: 2.2.0
+ stable_platforms: dos
+ unstable_platforms: ''
+-
+ id: quest
+ support: good
+ notes: ''
+ since_version: 2.2.0
+ stable_platforms: dos
+ unstable_platforms: ''
+-
+ id: scottadams
+ support: good
+ notes: ''
+ since_version: 2.2.0
+ stable_platforms: dos
+ unstable_platforms: ''
+-
+ id: zcode
+ support: good
+ notes: ''
+ since_version: 2.2.0
+ stable_platforms: dos
+ unstable_platforms: ''
+-
+ id: chest
+ support: good
+ notes: '- DOS versions are supported by this target'
+ since_version: 2.2.0
+ stable_platforms: dos
+ unstable_platforms: ''
+-
+ id: grim
+ support: good
+ notes: ''
+ since_version: DEV
+ stable_platforms: win
+ unstable_platforms: ''
+-
+ id: monkey4
+ support: good
+ notes: ''
+ since_version: DEV
+ stable_platforms: win
+ unstable_platforms: ps2
+-
+ id: myst3
+ support: good
+ notes: ''
+ since_version: DEV
+ stable_platforms: win
+ unstable_platforms: ''
+-
+ id: tlj
+ support: good
+ notes: ''
+ since_version: DEV
+ stable_platforms: win
+ unstable_platforms: ''
diff --git a/data/en/engines.yaml b/data/en/engines.yaml
index de967593..3d8de23c 100644
--- a/data/en/engines.yaml
+++ b/data/en/engines.yaml
@@ -1,323 +1,401 @@
# This is a generated file, please do not edit manually
----
-- id: access
- name: Access
- alt_name: ""
- enabled: "TRUE"
-- id: adl
- name: ADL
- alt_name: Adventure Development Language
- enabled: "TRUE"
-- id: agi
- name: AGI
- alt_name: Adventure Game Interpreter
- enabled: "TRUE"
-- id: agos
- name: AGOS
- alt_name: ""
- enabled: "TRUE"
-- id: avalanche
- name: Avalanche
- alt_name: ""
- enabled: "FALSE"
-- id: bbvs
- name: Beavis and Butt-Head in Virtual Stupidity
- alt_name: ""
- enabled: "TRUE"
-- id: bladerunner
- name: Blade Runner
- alt_name: ""
- enabled: "TRUE"
-- id: cge
- name: CGE
- alt_name: Common Game Engine
- enabled: "TRUE"
-- id: cge2
- name: CGE2
- alt_name: Common Game Engine 2
- enabled: "TRUE"
-- id: chewy
- name: 'Chewy: Esc from F5'
- alt_name: ""
- enabled: "FALSE"
-- id: cine
- name: Cinématique
- alt_name: ""
- enabled: "TRUE"
-- id: composer
- name: Magic Composer
- alt_name: ""
- enabled: "TRUE"
-- id: cruise
- name: CruisE
- alt_name: ""
- enabled: "TRUE"
-- id: cryo
- name: Cryo
- alt_name: ""
- enabled: "FALSE"
-- id: cryomni3d
- name: Cryomni3D
- alt_name: ""
- enabled: "TRUE"
-- id: director
- name: Macromedia Director
- alt_name: ""
- enabled: "FALSE"
-- id: dm
- name: Dungeon Maser
- alt_name: ""
- enabled: "FALSE"
-- id: draci
- name: DraÄÃ Historie
- alt_name: DraÄÃ Historie
- enabled: "TRUE"
-- id: dragons
- name: Blazing Dragons
- alt_name: ""
- enabled: "FALSE"
-- id: drascula
- name: Drascula
- alt_name: ""
- enabled: "TRUE"
-- id: dreamweb
- name: DreamWeb
- alt_name: ""
- enabled: "TRUE"
-- id: fullpipe
- name: Full Pipe
- alt_name: ""
- enabled: "TRUE"
-- id: glk
- name: Glk
- alt_name: ""
- enabled: "FALSE"
-- id: gnap
- name: Gnap
- alt_name: ""
- enabled: "TRUE"
-- id: gob
- name: Gob
- alt_name: ""
- enabled: "TRUE"
-- id: griffon
- name: The Griffon Legend
- alt_name: ""
- enabled: "FALSE"
-- id: grim
- name: GrimE
- alt_name: ""
- enabled: "TRUE"
-- id: groovie
- name: Groovie
- alt_name: ""
- enabled: "TRUE"
-- id: hdb
- name: Hyperspace Delivery Boy!
- alt_name: ""
- enabled: "TRUE"
-- id: hopkins
- name: Hopkins FBI
- alt_name: ""
- enabled: "TRUE"
-- id: hugo
- name: Hugo
- alt_name: ""
- enabled: "TRUE"
-- id: icb
- name: In Cold Blood
- alt_name: ""
- enabled: "FALSE"
-- id: illusions
- name: Illusions
- alt_name: ""
- enabled: "TRUE"
-- id: kyra
- name: Kyra
- alt_name: ""
- enabled: "TRUE"
-- id: lab
- name: The Labyrinth of Time
- alt_name: ""
- enabled: "TRUE"
-- id: lastexpress
- name: The Last Express
- alt_name: ""
- enabled: "FALSE"
-- id: lilliput
- name: Lilliput
- alt_name: ""
- enabled: "FALSE"
-- id: lure
- name: Lure of the Temptress
- alt_name: ""
- enabled: "TRUE"
-- id: macventure
- name: MacVenture
- alt_name: ""
- enabled: "FALSE"
-- id: made
- name: MADE
- alt_name: Multimedia Applications Development Environment
- enabled: "TRUE"
-- id: mads
- name: MADS
- alt_name: MicroProse Adventure Development System
- enabled: "TRUE"
-- id: mohawk
- name: Mohawk
- alt_name: ""
- enabled: "TRUE"
-- id: mortevielle
- name: Mortevielle
- alt_name: ""
- enabled: "TRUE"
-- id: mutationofjb
- name: Mutation of JB
- alt_name: ""
- enabled: "TRUE"
-- id: myst3
- name: Myst 3
- alt_name: ""
- enabled: "TRUE"
-- id: neverhood
- name: The Neverhood
- alt_name: ""
- enabled: "TRUE"
-- id: parallaction
- name: Parallaction
- alt_name: ""
- enabled: "TRUE"
-- id: pegasus
- name: 'The Journeyman Project: Pegasus Prime'
- alt_name: ""
- enabled: "TRUE"
-- id: pink
- name: Pink Panther
- alt_name: ""
- enabled: "TRUE"
-- id: plumbers
- name: Plumbers Don't Wear Ties!
- alt_name: ""
- enabled: "TRUE"
-- id: prince
- name: The Prince and the Coward
- alt_name: ""
- enabled: "TRUE"
-- id: queen
- name: Flight of the Amazon Queen
- alt_name: ""
- enabled: "TRUE"
-- id: saga
- name: SAGA
- alt_name: Scripts for Animated Graphic Adventures
- enabled: "TRUE"
-- id: sci
- name: SCI
- alt_name: Sierra Creative Interpreter
- enabled: "TRUE"
-- id: scumm
- name: SCUMM
- alt_name: Script Creation Utility for Maniac Mansion
- enabled: "TRUE"
-- id: sherlock
- name: Sherlock
- alt_name: ""
- enabled: "TRUE"
-- id: sky
- name: Sky
- alt_name: Beneath a Steel Sky
- enabled: "TRUE"
-- id: sludge
- name: SLUDGE
- alt_name: ""
- enabled: "FALSE"
-- id: stark
- name: The Longest Journey
- alt_name: ""
- enabled: "TRUE"
-- id: startrek
- name: Star Trek
- alt_name: ""
- enabled: "FALSE"
-- id: supernova
- name: Supernova
- alt_name: ""
- enabled: "TRUE"
-- id: sword1
- name: Sword1
- alt_name: 'Broken Sword: The Shadow of the Templars'
- enabled: "TRUE"
-- id: sword2
- name: Sword2
- alt_name: 'Broken Sword: The Smoking Mirror'
- enabled: "TRUE"
-- id: sword25
- name: Sword25
- alt_name: Broken Sword 2.5
- enabled: "TRUE"
-- id: teenagent
- name: TeenAgent
- alt_name: ""
- enabled: "TRUE"
-- id: tinsel
- name: Tinsel
- alt_name: ""
- enabled: "TRUE"
-- id: titanic
- name: Starship Titanic
- alt_name: ""
- enabled: "TRUE"
-- id: toltecs
- name: 3 Skulls of the Toltecs
- alt_name: ""
- enabled: "TRUE"
-- id: tony
- name: Tony Tough and the Night of Roasted Moths
- alt_name: ""
- enabled: "TRUE"
-- id: toon
- name: Toonstruck
- alt_name: ""
- enabled: "TRUE"
-- id: touche
- name: 'Touché: The Adventures of the Fifth Musketeer'
- alt_name: ""
- enabled: "TRUE"
-- id: tsage
- name: TsAGE
- alt_name: Tsunami Adventure Game Engine
- enabled: "TRUE"
-- id: tucker
- name: Tucker
- alt_name: ""
- enabled: "TRUE"
-- id: ultima
- name: Ultima
- alt_name: ""
- enabled: "FALSE"
-- id: voyeur
- name: Voyeur
- alt_name: ""
- enabled: "TRUE"
-- id: wage
- name: WAGE
- alt_name: World Builder
- enabled: "FALSE"
-- id: wintermute
- name: Wintermute Engine
- alt_name: ""
- enabled: "TRUE"
-- id: xeen
- name: Xeen
- alt_name: ""
- enabled: "TRUE"
-- id: zvision
- name: ZVision
- alt_name: ""
- enabled: "TRUE"
-- id: testbed
- name: Testbed
- alt_name: ""
- enabled: "FALSE"
-...
+-
+ id: access
+ name: Access
+ alt_name: ''
+ enabled: 'TRUE'
+-
+ id: adl
+ name: ADL
+ alt_name: 'Adventure Development Language'
+ enabled: 'TRUE'
+-
+ id: agi
+ name: AGI
+ alt_name: 'Adventure Game Interpreter'
+ enabled: 'TRUE'
+-
+ id: agos
+ name: AGOS
+ alt_name: ''
+ enabled: 'TRUE'
+-
+ id: avalanche
+ name: Avalanche
+ alt_name: ''
+ enabled: 'FALSE'
+-
+ id: bbvs
+ name: 'Beavis and Butt-Head in Virtual Stupidity'
+ alt_name: ''
+ enabled: 'TRUE'
+-
+ id: bladerunner
+ name: 'Blade Runner'
+ alt_name: ''
+ enabled: 'TRUE'
+-
+ id: cge
+ name: CGE
+ alt_name: 'Common Game Engine'
+ enabled: 'TRUE'
+-
+ id: cge2
+ name: CGE2
+ alt_name: 'Common Game Engine 2'
+ enabled: 'TRUE'
+-
+ id: chewy
+ name: 'Chewy: Esc from F5'
+ alt_name: ''
+ enabled: 'FALSE'
+-
+ id: cine
+ name: Cinématique
+ alt_name: ''
+ enabled: 'TRUE'
+-
+ id: composer
+ name: 'Magic Composer'
+ alt_name: ''
+ enabled: 'TRUE'
+-
+ id: cruise
+ name: CruisE
+ alt_name: ''
+ enabled: 'TRUE'
+-
+ id: cryo
+ name: Cryo
+ alt_name: ''
+ enabled: 'FALSE'
+-
+ id: cryomni3d
+ name: Cryomni3D
+ alt_name: ''
+ enabled: 'TRUE'
+-
+ id: director
+ name: 'Macromedia Director'
+ alt_name: ''
+ enabled: 'FALSE'
+-
+ id: dm
+ name: 'Dungeon Maser'
+ alt_name: ''
+ enabled: 'FALSE'
+-
+ id: draci
+ name: 'DraÄÃ Historie'
+ alt_name: 'DraÄÃ Historie'
+ enabled: 'TRUE'
+-
+ id: dragons
+ name: 'Blazing Dragons'
+ alt_name: ''
+ enabled: 'FALSE'
+-
+ id: drascula
+ name: Drascula
+ alt_name: ''
+ enabled: 'TRUE'
+-
+ id: dreamweb
+ name: DreamWeb
+ alt_name: ''
+ enabled: 'TRUE'
+-
+ id: fullpipe
+ name: 'Full Pipe'
+ alt_name: ''
+ enabled: 'TRUE'
+-
+ id: glk
+ name: Glk
+ alt_name: ''
+ enabled: 'FALSE'
+-
+ id: gnap
+ name: Gnap
+ alt_name: ''
+ enabled: 'TRUE'
+-
+ id: gob
+ name: Gob
+ alt_name: ''
+ enabled: 'TRUE'
+-
+ id: griffon
+ name: 'The Griffon Legend'
+ alt_name: ''
+ enabled: 'FALSE'
+-
+ id: grim
+ name: GrimE
+ alt_name: ''
+ enabled: 'TRUE'
+-
+ id: groovie
+ name: Groovie
+ alt_name: ''
+ enabled: 'TRUE'
+-
+ id: hdb
+ name: 'Hyperspace Delivery Boy!'
+ alt_name: ''
+ enabled: 'TRUE'
+-
+ id: hopkins
+ name: 'Hopkins FBI'
+ alt_name: ''
+ enabled: 'TRUE'
+-
+ id: hugo
+ name: Hugo
+ alt_name: ''
+ enabled: 'TRUE'
+-
+ id: icb
+ name: 'In Cold Blood'
+ alt_name: ''
+ enabled: 'FALSE'
+-
+ id: illusions
+ name: Illusions
+ alt_name: ''
+ enabled: 'TRUE'
+-
+ id: kyra
+ name: Kyra
+ alt_name: ''
+ enabled: 'TRUE'
+-
+ id: lab
+ name: 'The Labyrinth of Time'
+ alt_name: ''
+ enabled: 'TRUE'
+-
+ id: lastexpress
+ name: 'The Last Express'
+ alt_name: ''
+ enabled: 'FALSE'
+-
+ id: lilliput
+ name: Lilliput
+ alt_name: ''
+ enabled: 'FALSE'
+-
+ id: lure
+ name: 'Lure of the Temptress'
+ alt_name: ''
+ enabled: 'TRUE'
+-
+ id: macventure
+ name: MacVenture
+ alt_name: ''
+ enabled: 'FALSE'
+-
+ id: made
+ name: MADE
+ alt_name: 'Multimedia Applications Development Environment'
+ enabled: 'TRUE'
+-
+ id: mads
+ name: MADS
+ alt_name: 'MicroProse Adventure Development System'
+ enabled: 'TRUE'
+-
+ id: mohawk
+ name: Mohawk
+ alt_name: ''
+ enabled: 'TRUE'
+-
+ id: mortevielle
+ name: Mortevielle
+ alt_name: ''
+ enabled: 'TRUE'
+-
+ id: mutationofjb
+ name: 'Mutation of JB'
+ alt_name: ''
+ enabled: 'TRUE'
+-
+ id: myst3
+ name: 'Myst 3'
+ alt_name: ''
+ enabled: 'TRUE'
+-
+ id: neverhood
+ name: 'The Neverhood'
+ alt_name: ''
+ enabled: 'TRUE'
+-
+ id: parallaction
+ name: Parallaction
+ alt_name: ''
+ enabled: 'TRUE'
+-
+ id: pegasus
+ name: 'The Journeyman Project: Pegasus Prime'
+ alt_name: ''
+ enabled: 'TRUE'
+-
+ id: pink
+ name: 'Pink Panther'
+ alt_name: ''
+ enabled: 'TRUE'
+-
+ id: plumbers
+ name: 'Plumbers Don''t Wear Ties!'
+ alt_name: ''
+ enabled: 'TRUE'
+-
+ id: prince
+ name: 'The Prince and the Coward'
+ alt_name: ''
+ enabled: 'TRUE'
+-
+ id: queen
+ name: 'Flight of the Amazon Queen'
+ alt_name: ''
+ enabled: 'TRUE'
+-
+ id: saga
+ name: SAGA
+ alt_name: 'Scripts for Animated Graphic Adventures'
+ enabled: 'TRUE'
+-
+ id: sci
+ name: SCI
+ alt_name: 'Sierra Creative Interpreter'
+ enabled: 'TRUE'
+-
+ id: scumm
+ name: SCUMM
+ alt_name: 'Script Creation Utility for Maniac Mansion'
+ enabled: 'TRUE'
+-
+ id: sherlock
+ name: Sherlock
+ alt_name: ''
+ enabled: 'TRUE'
+-
+ id: sky
+ name: Sky
+ alt_name: 'Beneath a Steel Sky'
+ enabled: 'TRUE'
+-
+ id: sludge
+ name: SLUDGE
+ alt_name: ''
+ enabled: 'FALSE'
+-
+ id: stark
+ name: 'The Longest Journey'
+ alt_name: ''
+ enabled: 'TRUE'
+-
+ id: startrek
+ name: 'Star Trek'
+ alt_name: ''
+ enabled: 'FALSE'
+-
+ id: supernova
+ name: Supernova
+ alt_name: ''
+ enabled: 'TRUE'
+-
+ id: sword1
+ name: Sword1
+ alt_name: 'Broken Sword: The Shadow of the Templars'
+ enabled: 'TRUE'
+-
+ id: sword2
+ name: Sword2
+ alt_name: 'Broken Sword: The Smoking Mirror'
+ enabled: 'TRUE'
+-
+ id: sword25
+ name: Sword25
+ alt_name: 'Broken Sword 2.5'
+ enabled: 'TRUE'
+-
+ id: teenagent
+ name: TeenAgent
+ alt_name: ''
+ enabled: 'TRUE'
+-
+ id: tinsel
+ name: Tinsel
+ alt_name: ''
+ enabled: 'TRUE'
+-
+ id: titanic
+ name: 'Starship Titanic'
+ alt_name: ''
+ enabled: 'TRUE'
+-
+ id: toltecs
+ name: '3 Skulls of the Toltecs'
+ alt_name: ''
+ enabled: 'TRUE'
+-
+ id: tony
+ name: 'Tony Tough and the Night of Roasted Moths'
+ alt_name: ''
+ enabled: 'TRUE'
+-
+ id: toon
+ name: Toonstruck
+ alt_name: ''
+ enabled: 'TRUE'
+-
+ id: touche
+ name: 'Touché: The Adventures of the Fifth Musketeer'
+ alt_name: ''
+ enabled: 'TRUE'
+-
+ id: tsage
+ name: TsAGE
+ alt_name: 'Tsunami Adventure Game Engine'
+ enabled: 'TRUE'
+-
+ id: tucker
+ name: Tucker
+ alt_name: ''
+ enabled: 'TRUE'
+-
+ id: ultima
+ name: Ultima
+ alt_name: ''
+ enabled: 'FALSE'
+-
+ id: voyeur
+ name: Voyeur
+ alt_name: ''
+ enabled: 'TRUE'
+-
+ id: wage
+ name: WAGE
+ alt_name: 'World Builder'
+ enabled: 'FALSE'
+-
+ id: wintermute
+ name: 'Wintermute Engine'
+ alt_name: ''
+ enabled: 'TRUE'
+-
+ id: xeen
+ name: Xeen
+ alt_name: ''
+ enabled: 'TRUE'
+-
+ id: zvision
+ name: ZVision
+ alt_name: ''
+ enabled: 'TRUE'
+-
+ id: testbed
+ name: Testbed
+ alt_name: ''
+ enabled: 'FALSE'
diff --git a/data/en/game_demos.yaml b/data/en/game_demos.yaml
index 12128e45..93c3d155 100644
--- a/data/en/game_demos.yaml
+++ b/data/en/game_demos.yaml
@@ -1,1311 +1,1631 @@
# This is a generated file, please do not edit manually
----
-- id: agidemo
- platform: dos
- category: 3-D Helicopter Sim, Police Quest, Thexder, Space Quest 2, Mixed-up Mother
- Goose, Leisure Suit Larry
- url: /frs/demos/agi/agi-dos-pack1-demo-en.zip
-- id: agidemo
- platform: dos
- category: 3-D Helicopter Sim, Space Quest 2, Thexder, King's Quest 3, Mixed- up
- Mother Goose, King's Quest 2, Police Quest, Leisure Suit Larry, Space Quest
- url: /frs/demos/agi/agi-dos-pack2-demo-en.zip
-- id: agidemo
- platform: dos
- category: 3-D Helicopter Sim, Space Quest 2, Police Quest, King's Quest 3, Mixed-up
- Mother Goose, Leisure Suit Larry
- url: /frs/demos/agi/agi-dos-pack3-demo-en.zip
-- id: agidemo
- platform: dos
- category: 'Gold Rush!, Manhunter: NewYork, Mixed-up Mother Goose, Police Quest,
- Space Quest 2, Leisure Suit Larry'
- url: /frs/demos/agi/agi-dos-pack4-demo-en.zip
-- id: agidemo
- platform: dos
- category: Space Quest, Donald Duck's Playground, King's Quest 3, Leisure Suit Larry
- url: /frs/demos/agi/agi-dos-pack5-demo-en.zip
-- id: airport
- platform: mac
- category: ""
- url: /frs/demos/scumm/he/airport-mac-demo-us.zip
-- id: airport
- platform: win
- category: ""
- url: /frs/demos/scumm/he/airport-win-demo-us.zip
-- id: airport
- platform: win
- category: Updated
- url: /frs/demos/scumm/he/airport-win-updated-demo1-us.zip
-- id: airport
- platform: win
- category: Updated Alternative
- url: /frs/demos/scumm/he/airport-win-updated-demo2-us.zip
-- id: airport
- platform: win
- category: Dutch
- url: /frs/demos/scumm/he/airport-win-demo-nl.zip
-- id: arthur
- platform: mac
- category: ""
- url: /frs/demos/mohawk/arthur-mac-demo-en.zip
-- id: arthur
- platform: mac
- category: Alternative
- url: /frs/demos/mohawk/arthur-mac-demo2-en.zip
-- id: arthur
- platform: win
- category: ""
- url: /frs/demos/mohawk/arthur-win-demo-en.zip
-- id: arthur
- platform: win
- category: Alternative
- url: /frs/demos/mohawk/arthur-win-demo-en-v1.1.zip
-- id: arthurbday
- platform: mac
- category: ""
- url: /frs/demos/mohawk/arthurbday-mac-demo-en.zip
-- id: arthurbday
- platform: win
- category: ""
- url: /frs/demos/mohawk/arthurbday-win-demo-en.zip
-- id: astrochicken
- platform: dos
- category: ""
- url: /frs/demos/sci/astrochicken-dos-demo-en.zip
-- id: atlantis
- platform: dos
- category: ""
- url: /frs/demos/scumm/atlantis-dos-demo1-en.zip
-- id: atlantis
- platform: dos
- category: Alternative
- url: /frs/demos/scumm/atlantis-dos-demo2-en.zip
-- id: atlantis
- platform: dos
- category: Alternative 2
- url: /frs/demos/scumm/atlantis-dos-demo3-en.zip
-- id: atlantis
- platform: dos
- category: Non-Interactive
- url: /frs/demos/scumm/atlantis-dos-ni-demo-en.zip
-- id: atlantis
- platform: fmtowns
- category: Non-Interactive
- url: /frs/demos/scumm/atlantis-fmtowns-ni-demo-jp.zip
-- id: baseball
- platform: win
- category: Preview
- url: /frs/demos/scumm/he/baseball-win-preview1-us.zip
-- id: baseball
- platform: win
- category: Alternative Preview
- url: /frs/demos/scumm/he/baseball-win-preview2-us.zip
-- id: baseball2001
- platform: win
- category: ""
- url: /frs/demos/scumm/he/baseball2001-win-demo-us.zip
-- id: bbvs
- platform: win
- category: ""
- url: /frs/demos/bbvs/bbvs-demo.zip
-- id: bbvs
- platform: win
- category: Loogie
- url: /frs/demos/bbvs/bbvs-demo-loogie.zip
-- id: bluesabctime
- platform: win
- category: ""
- url: /frs/demos/scumm/he/BluesABCTime-win-demo1-us.zip
-- id: bluesabctime
- platform: win
- category: Alternative
- url: /frs/demos/scumm/he/BluesABCTime-win-demo2-us.zip
-- id: bluesabctime
- platform: win
- category: Preview
- url: /frs/demos/scumm/he/BluesABCTime-win-preview-us.zip
-- id: bluesbirthday
- platform: win
- category: ""
- url: /frs/demos/scumm/he/BluesBirthday-win-demo1-us.zip
-- id: bluesbirthday
- platform: win
- category: Alternative
- url: /frs/demos/scumm/he/BluesBirthday-win-demo2-us.zip
-- id: bluesbirthday
- platform: win
- category: Preview
- url: /frs/demos/scumm/he/BluesBirthday-win-preview-us.zip
-- id: camelot
- platform: dos
- category: Non-Interactive
- url: /frs/demos/sci/camelot-dos-ni-demo-en.zip
-- id: castlebrain
- platform: dos
- category: Non-Interactive
- url: /frs/demos/sci/castlebrain-dos-ni-demo-en.zip
-- id: catalog
- platform: win
- category: ""
- url: /frs/demos/scumm/he/catalog-win-demo-en.zip
-- id: catalog
- platform: win
- category: French
- url: /frs/demos/scumm/he/catalog-win-preview-fr.zip
-- id: catalog
- platform: win
- category: German
- url: /frs/demos/scumm/he/catalog-win-preview-de.zip
-- id: catalog
- platform: win
- category: UK
- url: /frs/demos/scumm/he/catalog-win-preview-uk.zip
-- id: catalog
- platform: win
- category: US
- url: /frs/demos/scumm/he/catalog-win-preview-us.zip
-- id: christmas1988
- platform: dos
- category: ""
- url: /frs/demos/sci/christmas1988-dos-en.zip
-- id: christmas1990
- platform: dos
- category: EGA
- url: /frs/demos/sci/christmas1990-dos-ega-en.zip
-- id: christmas1990
- platform: dos
- category: VGA
- url: /frs/demos/sci/christmas1990-dos-vga-en.zip
-- id: christmas1992
- platform: dos
- category: ""
- url: /frs/demos/sci/christmas1992-dos-en.zip
-- id: comi
- platform: win
- category: Small
- url: /frs/demos/scumm/comi-win-small-demo-en.zip
-- id: comi
- platform: win
- category: Large
- url: /frs/demos/scumm/comi-win-large-demo-en.zip
-- id: dig
- platform: mac
- category: ""
- url: /frs/demos/scumm/dig-mac-demo-en.zip
-- id: dig
- platform: dos
- category: CD
- url: /frs/demos/scumm/dig-dos-demo-en.zip
-- id: dw
- platform: dos
- category: Floppy
- url: /frs/demos/tinsel/dw-dos-cd-demo-en.zip
-- id: dw
- platform: dos
- category: ""
- url: /frs/demos/tinsel/dw-dos-floppy-demo-en.zip
-- id: dw
- platform: psx
- category: ""
- url: /frs/demos/tinsel/dw-psx-demo-en.zip
-- id: dw2
- platform: win
- category: ""
- url: /frs/demos/tinsel/dw2-win-demo-en.zip
-- id: ecoquest
- platform: dos
- category: Non-Interactive
- url: /frs/demos/sci/ecoquest-dos-ni-demo-en.zip
-- id: ecoquest2
- platform: dos
- category: Non-Interactive
- url: /frs/demos/sci/ecoquest2-dos-ni-demo-en.zip
-- id: elvira1
- platform: amiga
- category: Non-Interactive
- url: /frs/demos/agos/elvira1-amiga-ni-demo-en.zip
-- id: elvira1
- platform: atarist
- category: Non-Interactive
- url: /frs/demos/agos/elvira1-atari-ni-demo-en.zip
-- id: elvira1
- platform: dos
- category: Non-Interactive
- url: /frs/demos/agos/elvira1-dos-ni-demo-en.zip
-- id: fairytales
- platform: dos
- category: Non-Interactive
- url: /frs/demos/sci/fairytales-dos-ni-demo-en.zip
-- id: farm
- platform: win
- category: ""
- url: /frs/demos/scumm/he/farm-win-demo-us.zip
-- id: farm
- platform: win
- category: Updated
- url: /frs/demos/scumm/he/farm-win-updated-demo-us.zip
-- id: farm
- platform: win
- category: Dutch
- url: /frs/demos/scumm/he/farm-win-demo-nl.zip
-- id: fbear
- platform: dos
- category: ""
- url: /frs/demos/scumm/he/fbear-dos-demo-us.zip
-- id: fbear
- platform: mac
- category: ""
- url: /frs/demos/scumm/he/fbear-mac-demo-us.zip
-- id: fbear
- platform: win
- category: ""
- url: /frs/demos/scumm/he/fbear-win-demo-us.zip
-- id: feeble
- platform: dos
- category: Non-Interactive
- url: /frs/demos/agos/feeble-dos-ni-demo-en.zip
-- id: feeble
- platform: dos
- category: Non-Interactive
- url: /frs/demos/agos/feeble-dos-ni-demo-de.zip
-- id: football
- platform: win
- category: ""
- url: /frs/demos/scumm/he/football-win-demo-us.zip
-- id: freddi
- platform: mac
- category: ""
- url: /frs/demos/scumm/he/freddi-mac-demo_us.zip
-- id: freddi
- platform: win
- category: ""
- url: /frs/demos/scumm/he/freddi-win-demo-us.zip
-- id: freddi
- platform: win
- category: Updated
- url: /frs/demos/scumm/he/freddi-win-updated-demo-us.zip
-- id: freddi
- platform: win
- category: Dutch
- url: /frs/demos/scumm/he/freddi-win-demo-nl.zip
-- id: freddi
- platform: win
- category: French
- url: /frs/demos/scumm/he/freddi-win-demo-fr.zip
-- id: freddi
- platform: win
- category: German
- url: /frs/demos/scumm/he/freddi-win-demo-de.zip
-- id: freddi2
- platform: win
- category: ""
- url: /frs/demos/scumm/he/freddi2-win-demo-us.zip
-- id: freddi2
- platform: win
- category: Updated
- url: /frs/demos/scumm/he/freddi2-win-updated-demo-us.zip
-- id: freddi2
- platform: win
- category: Dutch
- url: /frs/demos/scumm/he/freddi2-win-demo-nl.zip
-- id: freddi3
- platform: win
- category: ""
- url: /frs/demos/scumm/he/freddi3-win-demo-us.zip
-- id: freddi3
- platform: win
- category: Dutch
- url: /frs/demos/scumm/he/freddi3-win-demo-nl.zip
-- id: freddi3
- platform: win
- category: French
- url: /frs/demos/scumm/he/freddi3-win-demo-fr.zip
-- id: freddi3
- platform: win
- category: Hebrew
- url: /frs/demos/scumm/he/freddi3-win-demo-hb.zip
-- id: freddi4
- platform: win
- category: ""
- url: /frs/demos/scumm/he/freddi4-win-demo-us.zip
-- id: freddi4
- platform: win
- category: Updated
- url: /frs/demos/scumm/he/freddi4-win-updated-demo-us.zip
-- id: freddi4
- platform: win
More information about the Scummvm-git-logs
mailing list