diff --git a/code/backlog.txt b/code/backlog.txt index 50ef4f32..98e75f1d 100644 --- a/code/backlog.txt +++ b/code/backlog.txt @@ -7,6 +7,7 @@ https://github.com/SadConsole/SadConsole https://github.com/tlgkccampbell/ultraviolet https://github.com/amerkoleci/Vortice.Windows https://github.com/horde3d/Horde3D +https://github.com/delaford/game https://github.com/cxong/cdogs-sdl https://moaiwebsite.github.io/ http://cyxdown.free.fr/bs/ diff --git a/code/maintenance.py b/code/maintenance.py index 6723f6bb..709ae631 100644 --- a/code/maintenance.py +++ b/code/maintenance.py @@ -18,118 +18,47 @@ import utils.constants from utils import constants as c, utils, osg - -def update_readme_and_tocs(infos): +def extract_links(): + """ + Parses all entries and extracts http(s) links from them """ - Recounts entries in sub categories and writes them to the readme. - Also updates the _toc files in the categories directories. - Note: The Readme must have a specific structure at the beginning, starting with "# Open Source Games" and ending - on "A collection.." + # regex for finding urls (can be in <> or in ]() or after a whitespace + regex = re.compile(r"[\s\n]<(http.+?)>|]\((http.+?)\)|[\s\n](http[^\s\n,]+?)[\s\n,]") - Needs to be performed regularly. - """ - print('update readme and toc files') - - # completely delete content of toc path - for file in os.listdir(c.tocs_path): - os.remove(os.path.join(c.tocs_path, file)) - - # read readme - readme_file = os.path.join(c.root_path, 'README.md') - readme_text = utils.read_text(readme_file) - - # compile regex for identifying the building blocks in the readme - regex = re.compile(r"(.*?)(\[comment\]: # \(start.*?end of autogenerated content\))(.*)", re.DOTALL) - - # apply regex - matches = regex.findall(readme_text) - if len(matches) != 1: - raise RuntimeError('readme file has invalid structure') - matches = matches[0] - start = matches[0] - end = matches[2] - - tocs_text = '' - - # split infos - infos_games, infos_tools, infos_frameworks, infos_libraries = osg.split_infos(infos) - - # create games, tools, frameworks, libraries tocs - title = 'Games' - file = '_games.md' - tocs_text += '**[{}](entries/tocs/{}#{})** ({}) - '.format(title, file, title, len(infos_games)) - create_toc(title, file, infos_games) - - title = 'Tools' - file = '_tools.md' - tocs_text += '**[{}](entries/tocs/{}#{})** ({}) - '.format(title, file, title, len(infos_tools)) - create_toc(title, file, infos_tools) - - title = 'Frameworks' - file = '_frameworks.md' - tocs_text += '**[{}](entries/tocs/{}#{})** ({}) - '.format(title, file, title, len(infos_frameworks)) - create_toc(title, file, infos_frameworks) - - title = 'Libraries' - file = '_libraries.md' - tocs_text += '**[{}](entries/tocs/{}#{})** ({})\n'.format(title, file, title, len(infos_libraries)) - create_toc(title, file, infos_libraries) - - # create by category - categories_text = [] - for keyword in utils.constants.recommended_keywords: - infos_filtered = [x for x in infos if keyword in x['keywords']] - title = keyword.capitalize() - name = keyword.replace(' ', '-') - file = '_{}.md'.format(name) - categories_text.append('**[{}](entries/tocs/{}#{})** ({})'.format(title, file, name, len(infos_filtered))) - create_toc(title, file, infos_filtered) - categories_text.sort() - tocs_text += '\nBy category: {}\n'.format(', '.join(categories_text)) - - # create by platform - platforms_text = [] - for platform in utils.constants.valid_platforms: - infos_filtered = [x for x in infos if platform in x.get('platform', [])] - title = platform - name = platform.lower() - file = '_{}.md'.format(name) - platforms_text.append('**[{}](entries/tocs/{}#{})** ({})'.format(title, file, name, len(infos_filtered))) - create_toc(title, file, infos_filtered) - tocs_text += '\nBy platform: {}\n'.format(', '.join(platforms_text)) - - # insert new text in the middle (the \n before the second comment is necessary, otherwise Markdown displays it as part of the bullet list) - text = start + "[comment]: # (start of autogenerated content, do not edit)\n" + tocs_text + "\n[comment]: # (end of autogenerated content)" + end - - # write to readme - utils.write_text(readme_file, text) - - -def create_toc(title, file, entries): - """ + # iterate over all entries + urls = set() + for _, _, content in entry_iterator(): + + # apply regex + matches = regex.findall(content) + + # for each match + for match in matches: + + # for each possible clause + for url in match: + + # if there was something (and not a sourceforge git url) + if url: + urls.add(url) + urls = sorted(list(urls), key=str.casefold) + return urls +def split_infos(infos): """ - # file path - toc_file = os.path.join(c.tocs_path, file) + Split into games, tools, frameworks, libraries + """ + games = [x for x in infos if not any([y in x['keywords'] for y in ('tool', 'framework', 'library')])] + tools = [x for x in infos if 'tool' in x['keywords']] + frameworks = [x for x in infos if 'framework' in x['keywords']] + libraries = [x for x in infos if 'library' in x['keywords']] + return games, tools, frameworks, libraries - # header line - text = '[comment]: # (autogenerated content, do not edit)\n# {}\n\n'.format(title) - # assemble rows - rows = [] - for entry in entries: - rows.append('- **[{}]({})** ({})'.format(entry['Name'], '../' + entry['file'], ', '.join( - entry['code language'] + entry['code license'] + entry['state']))) - # sort rows (by title) - rows.sort(key=str.casefold) - # add to text - text += '\n'.join(rows) - # write to toc file - utils.write_text(toc_file, text) def check_validity_external_links(): @@ -220,28 +149,6 @@ def check_validity_external_links(): print('{}: {} - exception {}'.format(names, url, error_name)) -def check_template_leftovers(): - """ - Checks for template leftovers. - - Should be run only occasionally. - """ - - print('check for template leftovers') - - # load template and get all lines - text = utils.read_text(os.path.join(c.root_path, 'template.md')) - text = text.split('\n') - check_strings = [x for x in text if x and not x.startswith('##')] - - # iterate over all entries - for _, entry_path, content in osg.entry_iterator(): - - for check_string in check_strings: - if content.find(check_string) >= 0: - raise RuntimeError('{}: found {}'.format(os.path.basename(entry_path), check_string)) - - def fix_entries(): """ Fixes the keywords, code dependencies, build systems, .. entries, mostly by automatically sorting them. @@ -879,72 +786,6 @@ def check_validity_backlog(): print('{} redirected to {}, {}'.format(url, r.url, r.history)) -def update_inspirations(infos): - """ - - """ - - print('update inspirations') - - # collect information - originals = {} - for info in infos: - name = info['Name'] - keywords = info['keywords'] - ins = [x[12:] for x in keywords if x.startswith('inspired by ')] - if ins: - ins = ins[0].split(' + ') - for original in ins: - if original in originals: - originals[original].append(name) - else: - originals[original] = [name] - - inspirations_file = os.path.join(c.root_path, 'inspirations.md') - inspirations = '[comment]: # (partly autogenerated content, edit with care, read the manual before)\n' - inspirations += '# Inspirations ({})\n\n'.format(len(originals)) # add number of inspirations - - # iterate through originals alphabetically sorted - for original, names in sorted(originals.items(), key=lambda x: str.casefold(x[0])): - inspirations += '## {} ({})\n\n'.format(original, len(names)) - inspirations += '- Inspired entries: {}\n\n'.format(', '.join(sorted(names, key=str.casefold))) - - # write to statistics file - utils.write_text(inspirations_file, inspirations) - - -def update_developer(infos): - """ - - """ - - print('update developer') - - # collect information - developer = {} - for info in infos: - if 'developer' in info: - name = info['Name'] - devs = info['developer'] - for dev in devs: - if dev in developer: - developer[dev].append(name) - else: - developer[dev] = [name] - - developer_file = os.path.join(c.root_path, 'developer.md') - content = '[comment]: # (partly autogenerated content, edit with care, read the manual before)\n' - content += '# Developer ({})\n\n'.format(len(developer)) # add number of developer - - # iterate through developers alphabetically sorted - for dev, names in sorted(developer.items(), key=lambda x: str.casefold(x[0])): - content += '## {} ({})\n\n'.format(dev, len(names)) - content += '- Games: {}\n\n'.format(', '.join(sorted(names, key=str.casefold))) - - # write to statistics file - utils.write_text(developer_file, content) - - def check_code_dependencies(infos): """ @@ -984,50 +825,20 @@ def check_code_dependencies(infos): if __name__ == "__main__": - # check_validity_backlog() - - # clean backlog - game_urls = osg.extract_links() - text = utils.read_text(os.path.join(c.root_path, 'code', 'rejected.txt')) - regex = re.compile(r"\((http.*?)\)", re.MULTILINE) - matches = regex.findall(text) - rejected_urls = [] - for match in matches: - urls = match.split(',') - urls = [x.strip() for x in urls] - rejected_urls.extend(urls) - game_urls.extend(rejected_urls) - more_urls = [] - for url in game_urls: - if url.startswith('https://web.archive.org/web'): - # print(url) # sometimes the http is missing in archive links (would need proper parsing) - url = url[url.index('http', 5):] - more_urls.append(url) - game_urls.extend(more_urls) - stripped_game_urls = [utils.strip_url(x) for x in game_urls] - clean_backlog(stripped_game_urls) - - # check for unfilled template lines - check_template_leftovers() + check_validity_backlog() + + + # fix entries fix_entries() - # assemble info - infos = osg.assemble_infos() - # recount and write to readme and to tocs update_readme_and_tocs(infos) # generate report update_statistics(infos) - # update inspirations - # update_inspirations(infos) - - # update developers - # update_developer(infos) - # update database for html table export_json(infos) diff --git a/code/utils/constants.py b/code/utils/constants.py index cd73df04..6292c792 100644 --- a/code/utils/constants.py +++ b/code/utils/constants.py @@ -43,7 +43,7 @@ def get_config(key): url_fields = ('Home', 'Media', 'Play', 'Download', 'Code repository') -valid_url_prefixes = ('http://', 'https://', 'git://', 'svn://', 'ftp://', 'bzr://', '@see-') +valid_url_prefixes = ('http://', 'https://', 'git://', 'svn://', 'ftp://', 'bzr://', '@see-', '@not-', '?') valid_building_properties = ('Build system', 'Build instructions') valid_building_fields = valid_building_properties + ('Note',) @@ -63,8 +63,8 @@ def get_config(key): 'C++', 'Clojure', 'CoffeeScript', 'ColdFusion', 'D', 'DM', 'Dart', 'Dia', 'Elm', 'Emacs Lisp', 'F#', 'GDScript', 'Game Maker Script', 'Go', 'Groovy', 'Haskell', 'Haxe', 'Io', 'Java', 'JavaScript', 'Kotlin', 'Lisp', 'Lua', 'MegaGlest Script', 'MoonScript', 'None', 'OCaml', 'Objective-C', 'PHP', 'Pascal', 'Perl', 'Python', 'QuakeC', 'R', - "Ren'py", 'Ruby', 'Rust', 'Scala', 'Scheme', 'Script', 'Shell', 'Swift', 'TorqueScript', 'TypeScript', 'Vala', - 'Visual Basic', 'XUL', 'ZenScript', 'ooc') + "Ren'Py", 'Ruby', 'Rust', 'Scala', 'Scheme', 'Script', 'Shell', 'Swift', 'TorqueScript', 'TypeScript', 'Vala', + 'Visual Basic', 'XUL', 'ZenScript', 'ooc', '?') # known licenses, anything outside of this will result in a warning during a maintenance operation # only these will be used when gathering statistics @@ -73,7 +73,7 @@ def get_config(key): 'Boost-1.0', 'CC-BY-NC-3.0', 'CC-BY-NC-SA-2.0', 'CC-BY-NC-SA-3.0', 'CC-BY-SA-3.0', 'CC-BY-NC-SA-4.0', 'CC-BY-SA-4.0', 'CC0', 'Custom', 'EPL-2.0', 'GPL-2.0', 'GPL-3.0', 'IJG', 'ISC', 'Java Research License', 'LGPL-2.0', 'LGPL-2.1', 'LGPL-3.0', 'MAME', 'MIT', 'MPL-1.1', 'MPL-2.0', 'MS-PL', 'MS-RL', 'NetHack General Public License', - 'None', 'Proprietary', 'Public domain', 'SWIG license', 'Unlicense', 'WTFPL', 'wxWindows license', 'zlib') + 'None', 'Proprietary', 'Public domain', 'SWIG license', 'Unlicense', 'WTFPL', 'wxWindows license', 'zlib', '?') # valid multiplayer modes (can be combined with "+" ) valid_multiplayer_modes = ( diff --git a/code/utils/osg.py b/code/utils/osg.py index 4a277bbe..0a080626 100644 --- a/code/utils/osg.py +++ b/code/utils/osg.py @@ -15,17 +15,6 @@ def name_similarity(a, b): return SequenceMatcher(None, str.casefold(a), str.casefold(b)).ratio() -def split_infos(infos): - """ - Split into games, tools, frameworks, libraries - """ - games = [x for x in infos if not any([y in x['keywords'] for y in ('tool', 'framework', 'library')])] - tools = [x for x in infos if 'tool' in x['keywords']] - frameworks = [x for x in infos if 'framework' in x['keywords']] - libraries = [x for x in infos if 'library' in x['keywords']] - return games, tools, frameworks, libraries - - def entry_iterator(): """ @@ -63,235 +52,6 @@ def canonical_entry_name(name): return name -def parse_entry(content): - """ - Returns a dictionary of the features of the content. - - Raises errors when a major error in the structure is expected, prints a warning for minor errors. - """ - - info = {} - - # read name - regex = re.compile(r"^# (.*)") # start of content, starting with "# " and then everything until the end of line - matches = regex.findall(content) - if len(matches) != 1 or not matches[0]: # name must be there - raise RuntimeError('Name not found in entry "{}" : {}'.format(content, matches)) - info['name'] = matches[0] - - # read description - regex = re.compile(r"^.*\n\n_(.*)_\n") # third line from top, everything between underscores - matches = regex.findall(content) - if len(matches) != 1 or not matches[0]: # description must be there - raise RuntimeError('Description not found in entry "{}"'.format(content)) - info['description'] = matches[0] - - # first read all field names - regex = re.compile(r"^- (.*?): ", - re.MULTILINE) # start of each line having "- ", then everything until a colon, then ": " - fields = regex.findall(content) - - # check that essential fields are there - for field in essential_fields: - if field not in fields: # essential fields must be there - raise RuntimeError('Essential field "{}" missing in entry "{}"'.format(field, info['name'])) - - # check that all fields are valid fields and are existing in that order - index = 0 - for field in fields: - while index < len(valid_fields) and field != valid_fields[index]: - index += 1 - if index == len(valid_fields): # must be valid fields and must be in the right order - raise RuntimeError( - 'Field "{}" in entry "{}" either misspelled or in wrong order'.format(field, info['name'])) - - # iterate over found fields - for field in fields: - regex = re.compile(r"- {}: (.*)".format(field)) - matches = regex.findall(content) - if len(matches) != 1: # every field must be present only once - raise RuntimeError('Field "{}" in entry "{}" exist multiple times.'.format(field, info['name'])) - v = matches[0] - - # first store as is - info[field.lower() + '-raw'] = v - - # remove parenthesis with content - v = re.sub(r'\([^)]*\)', '', v) - - # split on ', ' - v = v.split(', ') - - # strip - v = [x.strip() for x in v] - - # remove all being false (empty) that were for example just comments - v = [x for x in v if x] - - # if entry is of structure <..> remove <> - v = [x[1:-1] if x[0] == '<' and x[-1] == '>' else x for x in v] - - # empty fields will not be stored - if not v: - continue - - # store in info - info[field.lower()] = v - - # check again that essential fields made it through - for field in ('home', 'state', 'keywords', 'code language', 'code license'): - if field not in info: # essential fields must still be inside - raise RuntimeError('Essential field "{}" empty in entry "{}"'.format(field, info['name'])) - - # now checks on the content of fields - - # name and description should not have spaces at the begin or end - for field in ('name', 'description'): - v = info[field] - if len(v) != len(v.strip()): # warning about that - print('Warning: No leading or trailing spaces in field {} in entry "{}"'.format(field, info['name'])) - - # state (essential field) must contain either beta or mature but not both, but at least one - v = info['state'] - for t in v: - if t != 'beta' and t != 'mature' and not t.startswith('inactive since '): - raise RuntimeError('Unknown state tage "{}" in entry "{}"'.format(t, info['name'])) - if 'beta' in v != 'mature' in v: - raise RuntimeError('State must be one of <"beta", "mature"> in entry "{}"'.format(info['name'])) - - # extract inactive year - phrase = 'inactive since ' - inactive_year = [x[len(phrase):] for x in v if x.startswith(phrase)] - assert len(inactive_year) <= 1 - if inactive_year: - info['inactive'] = inactive_year[0] - - # urls in home, download, play and code repositories must start with http or https (or git) and should not contain spaces - for field in ['home', 'download', 'play', 'code repository']: - if field in info: - for url in info[field]: - if not any( - [url.startswith(x) for x in ['http://', 'https://', 'git://', 'svn://', 'ftp://', 'bzr://']]): - raise RuntimeError( - 'URL "{}" in entry "{}" does not start with http/https/git/svn/ftp/bzr'.format(url, - info['name'])) - if ' ' in url: - raise RuntimeError('URL "{}" in entry "{}" contains a space'.format(url, info['name'])) - - # github/gitlab repositories should end on .git and should start with https - if 'code repository' in info: - for repo in info['code repository']: - if any((x in repo for x in ('github', 'gitlab', 'git.tuxfamily', 'git.savannah'))): - if not repo.startswith('https://'): - print('Warning: Repo {} in entry "{}" should start with https://'.format(repo, info['name'])) - if not repo.endswith('.git'): - print('Warning: Repo {} in entry "{}" should end on .git.'.format(repo, info['name'])) - - # check that all platform tags are valid tags and are existing in that order - if 'platform' in info: - index = 0 - for platform in info['platform']: - while index < len(valid_platforms) and platform != valid_platforms[index]: - index += 1 - if index == len(valid_platforms): # must be valid platforms and must be in that order - raise RuntimeError( - 'Platform tag "{}" in entry "{}" either misspelled or in wrong order'.format(platform, - info['name'])) - - # there must be at least one keyword - if 'keywords' not in info: - raise RuntimeError('Need at least one keyword in entry "{}"'.format(info['name'])) - - # check for existence of at least one recommended keywords - fail = True - for recommended_keyword in recommended_keywords: - if recommended_keyword in info['keywords']: - fail = False - break - if fail: # must be at least one recommended keyword - raise RuntimeError('Entry "{}" contains no recommended keyword'.format(info['name'])) - - # languages should be known - languages = info['code language'] - for language in languages: - if language not in known_languages: - print('Warning: Language {} in entry "{}" is not a known language. Misspelled or new?'.format(language, - info['name'])) - - # licenses should be known - licenses = info['code license'] - for license in licenses: - if license not in known_licenses: - print('Warning: License {} in entry "{}" is not a known license. Misspelled or new?'.format(license, - info['name'])) - - return info - - -def assemble_infos(): - """ - Parses all entries and assembles interesting infos about them. - """ - - print('assemble game infos') - - # a database of all important infos about the entries - infos = [] - - # iterate over all entries - for entry, _, content in entry_iterator(): - - # parse entry - info = parse_entry(content) - - # add file information - info['file'] = entry - - # check canonical file name - canonical_file_name = canonical_entry_name(info['name']) + '.md' - # we also allow -X with X =2..9 as possible extension (because of duplicate canonical file names) - if canonical_file_name != entry and canonical_file_name != entry[:-5] + '.md': - print('Warning: file {} should be {}'.format(entry, canonical_file_name)) - source_file = os.path.join(entries_path, entry) - target_file = os.path.join(entries_path, canonical_file_name) - if not os.path.isfile(target_file): - pass - # os.rename(source_file, target_file) - - # add to list - infos.append(info) - - return infos - - -def extract_links(): - """ - Parses all entries and extracts http(s) links from them - """ - - # regex for finding urls (can be in <> or in ]() or after a whitespace - regex = re.compile(r"[\s\n]<(http.+?)>|]\((http.+?)\)|[\s\n](http[^\s\n,]+?)[\s\n,]") - - # iterate over all entries - urls = set() - for _, _, content in entry_iterator(): - - # apply regex - matches = regex.findall(content) - - # for each match - for match in matches: - - # for each possible clause - for url in match: - - # if there was something (and not a sourceforge git url) - if url: - urls.add(url) - urls = sorted(list(urls), key=str.casefold) - return urls - - def read_developers(): """ @@ -564,11 +324,53 @@ def check_and_process_entry(entry): if not any(value.startswith(x) for x in valid_url_prefixes): message += 'URL "{}" in field "{}" does not start with a valid prefix'.format(value, field) + # github/gitlab repositories should end on .git and should start with https + for repo in entry['Code repository']: + if any(repo.startswith(x) for x in ('@', '?')): + continue + repo = repo.value.split(' ')[0].strip() + if any((x in repo for x in ('github', 'gitlab', 'git.tuxfamily', 'git.savannah'))): + if not repo.startswith('https://'): + message += 'Repo "{}" should start with https://'.format(repo) + if not repo.endswith('.git'): + message += 'Repo "{}" should end on .git.'.format(repo) + + # check that all platform tags are valid tags and are existing in that order + if 'Platform' in entry: + index = 0 + for platform in entry['Platform']: + while index < len(valid_platforms) and platform != valid_platforms[index]: + index += 1 + if index == len(valid_platforms): # must be valid platforms and must be in that order + message += 'Platform tag "{}" either misspelled or in wrong order'.format(platform) + + # there must be at least one keyword + if not entry['Keywords']: + message += 'Need at least one keyword' + + # check for existence of at least one recommended keywords + keywords = entry['Keywords'] + if not any(keyword in keywords for keyword in recommended_keywords): + message += 'Entry contains no recommended keywords' + + # languages should be known + languages = entry['Code language'] + for language in languages: + if language not in known_languages: + message += 'Language "{}" is not a known code language. Misspelled or new?'.format(language) + + # licenses should be known + licenses = entry['Code license'] + for license in licenses: + if license not in known_licenses: + message += 'License "{}" is not a known license. Misspelled or new?'.format(license) + if message: raise RuntimeError(message) return entry + def extract_inactive_year(entry): state = entry['State'] phrase = 'inactive since ' @@ -590,6 +392,7 @@ def write_entries(entries): for entry in entries: write_entry(entry) + def write_entry(entry): """ @@ -618,6 +421,18 @@ def create_entry_content(entry): # title content = '# {}\n\n'.format(entry['Title']) + # we automatically sort some fields + sort_fun = lambda x: str.casefold(x.value) + for field in ('Media', 'Inspirations', 'Code Language'): + if field in entry: + values = entry[field] + entry[field] = sorted(values, key=sort_fun) + # we also sort keywords, but first the recommend ones and then other ones + keywords = entry['Keywords'] + a = [x for x in keywords if x in recommended_keywords] + b = [x for x in keywords if x not in recommended_keywords] + entry['Keywords'] = sorted(a, key=sort_fun) + sorted(b, key=sort_fun) + # now properties in the recommended order for field in valid_properties: if field in entry: @@ -651,4 +466,4 @@ def create_entry_content(entry): content += '\n' content += entry['Building']['Note'] - return content \ No newline at end of file + return content diff --git a/entries/0_ad.md b/entries/0_ad.md index d4f7357c..a36d3030 100644 --- a/entries/0_ad.md +++ b/entries/0_ad.md @@ -1,7 +1,7 @@ # 0 A.D. - Home: https://play0ad.com/, https://sourceforge.net/projects/zero-ad/ -- Media: +- Media: https://en.wikipedia.org/wiki/0_A.D._(video_game) - Inspirations: Age of Empires - State: beta - Download: https://play0ad.com/download/ diff --git a/entries/1oom.md b/entries/1oom.md index 43826c03..7e1ffb04 100644 --- a/entries/1oom.md +++ b/entries/1oom.md @@ -5,7 +5,7 @@ - State: mature - Download: https://gitlab.com/KilgoreTroutMaskReplicant/1oom/-/tags - Platform: Windows, Linux -- Keywords: strategy, commercial content, engine recreation, remake +- Keywords: remake, strategy, commercial content, engine recreation - Code repository: https://gitlab.com/KilgoreTroutMaskReplicant/1oom.git - Code language: C - Code license: GPL-2.0 diff --git a/entries/2006-rebotted.md b/entries/2006-rebotted.md index c683f491..343831eb 100644 --- a/entries/2006-rebotted.md +++ b/entries/2006-rebotted.md @@ -4,7 +4,7 @@ - Inspirations: Runescape Classic - State: mature - Download: https://github.com/2006rebotted/2006rebotted/releases -- Keywords: role playing, commercial content, multiplayer online + co-op, remake +- Keywords: remake, role playing, commercial content, multiplayer online + co-op - Code repository: https://github.com/2006rebotted/2006rebotted.git - Code language: Java - Code license: 2-clause BSD diff --git a/entries/2048.md b/entries/2048.md index 6c2f161f..c1aa21ed 100644 --- a/entries/2048.md +++ b/entries/2048.md @@ -1,6 +1,6 @@ # 2048 -- Home: https://play2048.co/, +- Home: https://play2048.co/, https://en.wikipedia.org/wiki/2048_(video_game) - State: mature - Play: https://play2048.co/ - Platform: Web diff --git a/entries/2moons_browsergame_engine.md b/entries/2moons_browsergame_engine.md index 1eedbc6d..dc7b8b70 100644 --- a/entries/2moons_browsergame_engine.md +++ b/entries/2moons_browsergame_engine.md @@ -4,7 +4,7 @@ - State: mature - Download: https://github.com/jkroepke/2Moons/releases - Platform: Web -- Keywords: simulation, framework, space, strategy +- Keywords: framework, simulation, strategy, space - Code repository: https://github.com/jkroepke/2Moons.git (archived), https://github.com/steemnova/steemnova.git @add - Code language: PHP, JavaScript - Code license: MIT diff --git a/entries/3dc.md b/entries/3dc.md index 2b2a2657..98c8bc85 100644 --- a/entries/3dc.md +++ b/entries/3dc.md @@ -2,7 +2,7 @@ - Home: https://packages.debian.org/sid/3dchess, http://www.ibiblio.org/pub/Linux/games/strategy/3Dc-0.8.1.tar.gz - State: mature, inactive since 2000 -- Keywords: puzzle, board, chess, open content +- Keywords: board, puzzle, chess, open content - Code repository: @see-home - Code language: C - Code license: GPL-2.0 diff --git a/entries/acm.md b/entries/acm.md index d2d5f604..7158e29d 100644 --- a/entries/acm.md +++ b/entries/acm.md @@ -2,7 +2,7 @@ - Home: https://packages.debian.org/sid/acm, https://web.archive.org/web/20130114223737/http://www.websimulations.com/ - State: mature, inactive since 2000 -- Keywords: action, flight, open content, simulation +- Keywords: action, simulation, flight, open content - Code repository: @see-home - Code language: C - Code license: GPL-2.0 diff --git a/entries/afternoon_stalker.md b/entries/afternoon_stalker.md index 9034792b..74267af3 100644 --- a/entries/afternoon_stalker.md +++ b/entries/afternoon_stalker.md @@ -5,7 +5,7 @@ - State: mature, inactive since 2012 - Download: http://perso.b2b2c.ca/~sarrazip/dev/afternoonstalker.html#download - Platform: Linux -- Keywords: action, clone, remake +- Keywords: action, remake, clone - Code repository: @see-download - Code language: C++ - Code license: GPL-2.0 diff --git a/entries/alimer.md b/entries/alimer.md index 2b10224d..1b751938 100644 --- a/entries/alimer.md +++ b/entries/alimer.md @@ -1,7 +1,7 @@ # Alimer - Home: https://github.com/amerkoleci/alimer -- Inspirations: Urho3D, OGRE +- Inspirations: OGRE, Urho3D - State: beta - Keywords: game engine, 2D, 3D - Code repository: https://github.com/amerkoleci/alimer.git diff --git a/entries/alive.md b/entries/alive.md index 06877081..04007ae2 100644 --- a/entries/alive.md +++ b/entries/alive.md @@ -1,7 +1,7 @@ # alive - Home: https://github.com/paulsapps/alive -- Inspirations: Oddworld: Abe's Oddysee, Oddworld: Abe's Exoddus +- Inspirations: Oddworld: Abe's Exoddus, Oddworld: Abe's Oddysee - State: beta - Platform: Windows, Linux - Keywords: action, remake diff --git a/entries/allegro.md b/entries/allegro.md index 845e7d28..ca6871de 100644 --- a/entries/allegro.md +++ b/entries/allegro.md @@ -1,7 +1,7 @@ # Allegro - Home: https://liballeg.org/ -- Media: +- Media: https://en.wikipedia.org/wiki/Allegro_(software) - State: mature - Download: https://liballeg.org/download.html - Keywords: framework diff --git a/entries/allure_of_the_stars.md b/entries/allure_of_the_stars.md index 7a27f083..1b69adc1 100644 --- a/entries/allure_of_the_stars.md +++ b/entries/allure_of_the_stars.md @@ -3,7 +3,7 @@ - Home: http://www.allureofthestars.com/ - State: beta - Play: http://www.allureofthestars.com/play/ -- Keywords: role playing, open content, roguelike, strategy, turn-based +- Keywords: role playing, strategy, open content, roguelike, turn-based - Code repository: https://github.com/AllureOfTheStars/Allure.git - Code language: Haskell - Code license: AGPL-3.0 diff --git a/entries/angband.md b/entries/angband.md index 5be2a73f..02afe7ad 100644 --- a/entries/angband.md +++ b/entries/angband.md @@ -1,7 +1,7 @@ # Angband - Home: http://rephial.org/ -- Media: +- Media: https://en.wikipedia.org/wiki/Angband_(video_game) - State: mature - Download: http://rephial.org/release/ - Keywords: role playing, roguelike diff --git a/entries/antares.md b/entries/antares.md index 95e34be8..c598fc2d 100644 --- a/entries/antares.md +++ b/entries/antares.md @@ -4,7 +4,7 @@ - Inspirations: Ares - State: beta - Download: @see-home -- Keywords: strategy, real time, remake, shooter +- Keywords: remake, strategy, real time, shooter - Code repository: https://github.com/arescentral/antares.git - Code language: C++ - Code license: LGPL-3.0 diff --git a/entries/armor_alley.md b/entries/armor_alley.md index 76bf7a63..a40ac5bf 100644 --- a/entries/armor_alley.md +++ b/entries/armor_alley.md @@ -4,7 +4,7 @@ - Inspirations: Armor Alley - State: beta - Platform: Web -- Keywords: action, shooter, content open + non-commercial, remake, strategy +- Keywords: action, remake, strategy, content open + non-commercial, shooter - Code repository: https://github.com/scottschiller/ArmorAlley.git - Code language: JavaScript - Code license: CC-BY-NC-3.0 (https://github.com/scottschiller/ArmorAlley/blob/master/LICENSE.txt) diff --git a/entries/arx_libertatis.md b/entries/arx_libertatis.md index 8d65b49d..0c94edc1 100644 --- a/entries/arx_libertatis.md +++ b/entries/arx_libertatis.md @@ -5,7 +5,7 @@ - Inspirations: Arx Fatalis - State: mature - Download: https://wiki.arx-libertatis.org/Download -- Keywords: role playing, commercial content, remake, requires original content (Arx Fatalis) +- Keywords: remake, role playing, commercial content, requires original content (Arx Fatalis) - Code repository: https://github.com/arx/ArxLibertatis.git - Code language: C++ - Code license: GPL-3.0 diff --git a/entries/atomic_tanks.md b/entries/atomic_tanks.md index 20ece208..f3090583 100644 --- a/entries/atomic_tanks.md +++ b/entries/atomic_tanks.md @@ -5,7 +5,7 @@ - State: mature, inactive since 2016 - Download: https://sourceforge.net/projects/atanks/files/ - Platform: Windows, Linux -- Keywords: action, artillery, open content, remake +- Keywords: action, remake, artillery, open content - Code repository: https://git.code.sf.net/p/atanks/atanks, https://gitlab.com/osgames/atanks.git @add - Code language: C++ - Code license: GPL-2.0 diff --git a/entries/atomiks.md b/entries/atomiks.md index 3c4f3336..14a343d0 100644 --- a/entries/atomiks.md +++ b/entries/atomiks.md @@ -4,7 +4,7 @@ - Inspirations: Atomix - State: mature, inactive since 2015 - Download: https://sourceforge.net/projects/atomiks/files -- Keywords: puzzle, commercial content, remake +- Keywords: puzzle, remake, commercial content - Code repository: https://gitlab.com/osgames/atomiks.git (backup of svn), https://svn.code.sf.net/p/atomiks/code (svn) - Code language: C - Code license: GPL-3.0 diff --git a/entries/ballerburg_sdl.md b/entries/ballerburg_sdl.md index 0f818812..64820bba 100644 --- a/entries/ballerburg_sdl.md +++ b/entries/ballerburg_sdl.md @@ -4,8 +4,8 @@ - Media: https://en.wikipedia.org/wiki/Ballerburg - Inspirations: Ballerburg - State: mature -- Keywords: action, artillery, remake -- Code repository: https://git.tuxfamily.org/baller/baller.git, https://gitlab.com/osgames/ballerburg.git (@add, import of original source downloads) +- Keywords: action, remake, artillery +- Code repository: https://git.tuxfamily.org/baller/baller.git, https://gitlab.com/osgames/ballerburg.git @add (import of original source downloads) - Code language: C - Code license: GPL-3.0 - Code dependencies: SDL2 diff --git a/entries/barony.md b/entries/barony.md index a183514c..679eceea 100644 --- a/entries/barony.md +++ b/entries/barony.md @@ -3,7 +3,7 @@ - Home: http://www.baronygame.com/ - Inspirations: Barony - State: mature -- Keywords: role playing, commercial content, multiplayer co-op + online + LAN, remake, roguelike +- Keywords: remake, role playing, commercial content, multiplayer co-op + online + LAN, roguelike - Code repository: https://github.com/TurningWheel/Barony.git - Code language: C++ - Code license: GPL-3.0 diff --git a/entries/betterspades.md b/entries/betterspades.md index 7f91eb07..0ae606e5 100644 --- a/entries/betterspades.md +++ b/entries/betterspades.md @@ -3,7 +3,7 @@ - Home: https://aos.party/jenkins/job/BetterSpades/ - Inspirations: Ace of Spades - State: beta -- Keywords: cards, multiplayer online, open content, remake +- Keywords: cards, remake, multiplayer online, open content - Code repository: https://github.com/xtreme8000/BetterSpades.git - Code language: C - Code license: GPL-3.0 diff --git a/entries/billiards.md b/entries/billiards.md index ca14dc45..b4ea26f1 100644 --- a/entries/billiards.md +++ b/entries/billiards.md @@ -4,7 +4,7 @@ - State: beta, inactive since 2012 - Download: http://www.nongnu.org/billiards/#downloads, http://download.savannah.nongnu.org/releases/billiards/ - Platform: Linux -- Keywords: sports, simulation +- Keywords: simulation, sports - Code repository: https://gitlab.com/osgames/billiards.git (import of cvs), http://cvs.savannah.nongnu.org:/sources/billiards (cvs) - Code language: Lua, Objective-C - Code license: GPL-3.0 diff --git a/entries/boardgameio.md b/entries/boardgameio.md index 6398ad49..91ccea9a 100644 --- a/entries/boardgameio.md +++ b/entries/boardgameio.md @@ -3,7 +3,7 @@ - Home: https://boardgame.io/ - State: beta - Platform: Web -- Keywords: strategy, game engine, turn-based +- Keywords: game engine, strategy, turn-based - Code repository: https://github.com/boardgameio/boardgame.io.git - Code language: JavaScript, TypeScript - Code license: MIT diff --git a/entries/bombman.md b/entries/bombman.md index a8dad0b4..7510bdb1 100644 --- a/entries/bombman.md +++ b/entries/bombman.md @@ -3,7 +3,7 @@ - Home: https://gitlab.com/drummyfish/ - Inspirations: Atomic Bomberman - State: mature -- Keywords: action, open content, remake +- Keywords: action, remake, open content - Code repository: https://gitlab.com/drummyfish/Bombman.git - Code language: Python - Code license: CC0 diff --git a/entries/boost_c++_libraries.md b/entries/boost_c++_libraries.md index 43b2810c..513dae1a 100644 --- a/entries/boost_c++_libraries.md +++ b/entries/boost_c++_libraries.md @@ -1,7 +1,7 @@ # Boost (C++ Libraries) - Home: https://www.boost.org/ -- Media: +- Media: https://en.wikipedia.org/wiki/Boost_(C%2B%2B_libraries) - State: mature - Download: https://www.boost.org/users/download/ - Keywords: library diff --git a/entries/brogue.md b/entries/brogue.md index 396e4049..99bc3c29 100644 --- a/entries/brogue.md +++ b/entries/brogue.md @@ -6,7 +6,7 @@ - Keywords: role playing, roguelike - Code repository: https://github.com/tsadok/brogue.git - Code language: C -- Code license: AGPL +- Code license: AGPL-3.0 Traditional roguelike game inspired from the original Rogue. Your quest is to find the Amulet of Yendor. diff --git a/entries/bstone.md b/entries/bstone.md index 6c215b56..33f32735 100644 --- a/entries/bstone.md +++ b/entries/bstone.md @@ -5,7 +5,7 @@ - State: mature - Download: https://github.com/bibendovsky/bstone/releases - Platform: Windows -- Keywords: role playing, remake +- Keywords: remake, role playing - Code repository: https://github.com/bibendovsky/bstone.git - Code language: C++ - Code license: GPL-2.0 diff --git a/entries/bt_builder.md b/entries/bt_builder.md index b463cfb3..b71e9ddb 100644 --- a/entries/bt_builder.md +++ b/entries/bt_builder.md @@ -3,7 +3,7 @@ - Home: http://identicalsoftware.com/btbuilder/ - Inspirations: Bard's Tale Contruction Set - State: beta -- Keywords: tool, remake +- Keywords: remake, tool - Code repository: https://github.com/dulsi/btbuilder.git - Code language: C, C++ - Code license: GPL-3.0 diff --git a/entries/c64-nuclearreaction.md b/entries/c64-nuclearreaction.md index 55a7eae3..4efc7711 100644 --- a/entries/c64-nuclearreaction.md +++ b/entries/c64-nuclearreaction.md @@ -3,7 +3,7 @@ - Home: https://github.com/maikmerten/c64-nuclearreaction - Inspirations: Nuclear Reaction - State: mature, inactive since 2014 -- Keywords: strategy, remake +- Keywords: remake, strategy - Code repository: https://github.com/maikmerten/c64-nuclearreaction.git - Code language: C, Assembly - Code license: GPL-3.0 diff --git a/entries/cadaver.md b/entries/cadaver.md index a1656c2e..ecd7ce15 100644 --- a/entries/cadaver.md +++ b/entries/cadaver.md @@ -4,7 +4,7 @@ - Inspirations: Cadaver - State: beta, inactive since 2009 - Download: https://jotd.pagesperso-orange.fr/cadaver/bin/Cadaver-001.zip -- Keywords: action, commercial content, remake, requires original content +- Keywords: action, remake, commercial content, requires original content - Code repository: @see-download - Code language: C++ - Code license: GPL-2.0 diff --git a/entries/caesaria.md b/entries/caesaria.md index 0ac3b612..10f33e82 100644 --- a/entries/caesaria.md +++ b/entries/caesaria.md @@ -5,7 +5,7 @@ - State: beta - Download: https://bitbucket.org/dalerank/caesaria/wiki/Releases - Platform: Windows, Linux, macOS -- Keywords: strategy, remake +- Keywords: remake, strategy - Code repository: https://bitbucket.org/dalerank/caesaria.git, https://github.com/dalerank/caesaria-game.git - Code language: C++, JavaScript - Code license: GPL-3.0 diff --git a/entries/cannonball.md b/entries/cannonball.md index 0bbf410c..959b558e 100644 --- a/entries/cannonball.md +++ b/entries/cannonball.md @@ -4,7 +4,7 @@ - Inspirations: Outrun - State: beta - Download: https://github.com/djyt/cannonball/wiki#downloads -- Keywords: action, commercial content, remake +- Keywords: action, remake, commercial content - Code repository: https://github.com/djyt/cannonball.git - Code language: C++ - Code license: MAME diff --git a/entries/caph.md b/entries/caph.md index d9933c6c..10fb5070 100644 --- a/entries/caph.md +++ b/entries/caph.md @@ -4,7 +4,7 @@ - State: mature, inactive since 2010 - Download: https://sourceforge.net/projects/caphgame/files/ - Platform: Windows, Linux -- Keywords: puzzle, open content, sandbox, simulation +- Keywords: puzzle, simulation, open content, sandbox - Code repository: https://git.code.sf.net/p/caphgame/code - Code language: C - Code license: GPL-3.0 diff --git a/entries/card_stories.md b/entries/card_stories.md index d92fa2cb..5c7afe83 100644 --- a/entries/card_stories.md +++ b/entries/card_stories.md @@ -2,7 +2,7 @@ - Home: https://web.archive.org/web/20190126033549/https://cardstories.org/ - State: beta, inactive since 2012 -- Keywords: puzzle, cards, open content +- Keywords: cards, puzzle, open content - Code repository: https://github.com/farsides/cardstories.git, https://gitorious.org/cardstories/cardstories.git (read-only) - Code language: JavaScript, Python - Code license: AGPL-3.0 diff --git a/entries/castle-combat.md b/entries/castle-combat.md index 2a183221..64d6fe70 100644 --- a/entries/castle-combat.md +++ b/entries/castle-combat.md @@ -4,7 +4,7 @@ - Inspirations: Rampart - State: beta, inactive since 2006 - Download: https://sourceforge.net/projects/castle-combat/files/ -- Keywords: strategy, remake +- Keywords: remake, strategy - Code repository: https://github.com/karlb/castle-combat.git - Code language: Python - Code license: GPL-2.0 diff --git a/entries/castle_game_engine.md b/entries/castle_game_engine.md index 97bf567c..934dc28f 100644 --- a/entries/castle_game_engine.md +++ b/entries/castle_game_engine.md @@ -3,7 +3,7 @@ - Home: https://castle-engine.io/ - State: mature - Download: @see-home -- Keywords: game engine, framework +- Keywords: framework, game engine - Code repository: https://github.com/castle-engine/castle-engine.git - Code language: Pascal - Code license: LGPL-2.0 (visual editor and some other assets GPL-2.0) diff --git a/entries/castle_of_the_winds.md b/entries/castle_of_the_winds.md index e598ad72..ae35fb85 100644 --- a/entries/castle_of_the_winds.md +++ b/entries/castle_of_the_winds.md @@ -4,7 +4,7 @@ - Inspirations: Castle of the Winds - State: beta, inactive since 2016 - Play: http://game.castleofthewinds.com/ -- Keywords: role playing, remake +- Keywords: remake, role playing - Code repository: https://github.com/mordrax/cotwmtor.git - Code language: JavaScript - Code license: MIT diff --git a/entries/castle_of_the_winds_in_elm.md b/entries/castle_of_the_winds_in_elm.md index 49edafe9..c6d1a034 100644 --- a/entries/castle_of_the_winds_in_elm.md +++ b/entries/castle_of_the_winds_in_elm.md @@ -3,7 +3,7 @@ - Home: http://game.castleofthewinds.com/ - Inspirations: Castle of the Winds - State: beta -- Keywords: role playing, remake +- Keywords: remake, role playing - Code repository: https://github.com/mordrax/cotwelm.git - Code language: Elm, JavaScript - Code license: MIT diff --git a/entries/cataclysm_dark_days_ahead.md b/entries/cataclysm_dark_days_ahead.md index 9d462a3b..453ec000 100644 --- a/entries/cataclysm_dark_days_ahead.md +++ b/entries/cataclysm_dark_days_ahead.md @@ -5,7 +5,7 @@ - State: mature - Download: https://cataclysmdda.org/releases/ - Platform: Windows, Linux, macOS -- Keywords: role playing, remake, roguelike +- Keywords: remake, role playing, roguelike - Code repository: https://github.com/CleverRaven/Cataclysm-DDA.git - Code language: C++ - Code license: CC-BY-SA-3.0 diff --git a/entries/cc94.md b/entries/cc94.md index 1bcc083e..72d25b3d 100644 --- a/entries/cc94.md +++ b/entries/cc94.md @@ -4,7 +4,7 @@ - Inspirations: Sid Meier's Colonization - State: beta - Platform: Web -- Keywords: action, commercial content, remake, requires original content, strategy +- Keywords: action, remake, strategy, commercial content, requires original content - Code repository: https://github.com/institution/cc94.git - Code language: C++, Python - Code license: AGPL-3.0 diff --git a/entries/cccp.md b/entries/cccp.md index 9645d460..edde8d07 100644 --- a/entries/cccp.md +++ b/entries/cccp.md @@ -3,7 +3,7 @@ - Home: https://github.com/DataRealms/CCOSS - Inspirations: Cortex Command - State: beta -- Keywords: strategy, commercial content, multiplayer split-screen + online + LAN, real time, remake +- Keywords: remake, strategy, commercial content, multiplayer split-screen + online + LAN, real time - Code repository: https://github.com/cortex-command-community/Cortex-Command-Community-Project-Source.git, https://github.com/DataRealms/CCOSS.git @add - Code language: C++ - Code license: AGPL-3.0 diff --git a/entries/chainreaction.md b/entries/chainreaction.md index dd01625f..037b23c7 100644 --- a/entries/chainreaction.md +++ b/entries/chainreaction.md @@ -3,7 +3,7 @@ - Home: http://cr.freewarepoint.de/ - Inspirations: Nuclear Reaction - State: mature, inactive since 2017 -- Keywords: strategy, remake +- Keywords: remake, strategy - Code repository: https://github.com/maikmerten/chainreaction.git - Code language: Java - Code license: LGPL-3.0 diff --git a/entries/chess3d.md b/entries/chess3d.md index 3ee03c3f..e8b3c8e1 100644 --- a/entries/chess3d.md +++ b/entries/chess3d.md @@ -3,7 +3,7 @@ - Home: http://yanngranjon.com/static/games/chess3D/ - State: mature, inactive since 2016 - Platform: Web -- Keywords: strategy, board, chess, open content +- Keywords: board, strategy, chess, open content - Code repository: https://github.com/FrenchYann/Chess3D.git - Code language: JavaScript, Python - Code license: GPL-3.0 diff --git a/entries/chocolate_duke3d.md b/entries/chocolate_duke3d.md index 94cad2f2..11fc1d47 100644 --- a/entries/chocolate_duke3d.md +++ b/entries/chocolate_duke3d.md @@ -3,7 +3,7 @@ - Home: https://github.com/fabiensanglard/chocolate_duke3D - Inspirations: Duke Nukem 3D - State: beta, inactive since 2016 -- Keywords: action, commercial content, original content required, remake +- Keywords: action, remake, commercial content, original content required - Code repository: https://github.com/fabiensanglard/chocolate_duke3D.git - Code language: C - Code license: GPL-2.0, Custom diff --git a/entries/chromium_bsu.md b/entries/chromium_bsu.md index 1c0b8495..e26efbfd 100644 --- a/entries/chromium_bsu.md +++ b/entries/chromium_bsu.md @@ -7,7 +7,8 @@ - Keywords: action, shooter, top-down - Code repository: https://git.code.sf.net/p/chromium-bsu/code - Code language: C++ -- Code license: Artistic License +- Code license: Artistic License-1.0 (clarified version) +- Developer: Paul Wise Arcade-style, top-scrolling space shooter. diff --git a/entries/chunk_stories.md b/entries/chunk_stories.md index e2d1dc65..ed598102 100644 --- a/entries/chunk_stories.md +++ b/entries/chunk_stories.md @@ -5,7 +5,7 @@ - State: beta - Download: http://chunkstories.xyz/downloads.php - Platform: Windows, Linux, macOS -- Keywords: simulation, game engine, sandbox, voxel +- Keywords: game engine, simulation, sandbox, voxel - Code repository: https://github.com/Hugobros3/chunkstories.git - Code language: Kotlin, Java - Code license: LGPL-3.0 diff --git a/entries/civilization_call_to_power_2_source_project.md b/entries/civilization_call_to_power_2_source_project.md index 0723bb23..5526690e 100644 --- a/entries/civilization_call_to_power_2_source_project.md +++ b/entries/civilization_call_to_power_2_source_project.md @@ -4,7 +4,7 @@ - Media: https://en.wikipedia.org/wiki/Call_to_Power_II#Source_code_release - Inspirations: Call to Power II - State: mature -- Keywords: strategy, remake, turn-based +- Keywords: remake, strategy, turn-based - Code repository: https://github.com/civctp2/civctp2.git (mirror), http://ctp2.darkdust.net/anonsvn/ (svn) - Code language: C, C++ - Code license: Custom (Activision CTP2 source EULA) diff --git a/entries/civone.md b/entries/civone.md index 40a0d91a..379151f8 100644 --- a/entries/civone.md +++ b/entries/civone.md @@ -3,7 +3,7 @@ - Home: https://web.archive.org/web/20181127195119/https://www.civone.org/ - Inspirations: Civilization - State: beta -- Keywords: strategy, commercial content, remake, requires original content +- Keywords: remake, strategy, commercial content, requires original content - Code repository: https://github.com/SWY1985/CivOne.git - Code language: C# - Code license: CC0 diff --git a/entries/classic_blades_of_exile.md b/entries/classic_blades_of_exile.md index ba4a0a9c..5d0f148d 100644 --- a/entries/classic_blades_of_exile.md +++ b/entries/classic_blades_of_exile.md @@ -1,7 +1,7 @@ # Classic Blades of Exile - Home: http://www.spiderwebsoftware.com/blades/opensource.html, http://spiderwebforums.ipbhost.com/forum/12-blades-of-exile/, https://github.com/calref/cboe -- Media: +- Media: https://en.wikipedia.org/wiki/Exile_(1995_video_game_series)#Blades_of_Exile - State: mature - Keywords: role playing - Code repository: https://github.com/calref/cboe.git diff --git a/entries/classic_rbdoom_3_bfg.md b/entries/classic_rbdoom_3_bfg.md index 068eced2..b220e260 100644 --- a/entries/classic_rbdoom_3_bfg.md +++ b/entries/classic_rbdoom_3_bfg.md @@ -6,7 +6,7 @@ - State: mature - Download: https://github.com/MadDeCoDeR/Classic-RBDOOM-3-BFG/releases - Platform: Windows, Linux -- Keywords: action, commercial content, first-person, game engine, remake, requires original content, shooter +- Keywords: action, game engine, remake, commercial content, first-person, requires original content, shooter - Code repository: https://github.com/MadDeCoDeR/Classic-RBDOOM-3-BFG.git - Code language: C, C++ - Code license: GPL-3.0 diff --git a/entries/coab.md b/entries/coab.md index ba6d2bce..dfbc4d31 100644 --- a/entries/coab.md +++ b/entries/coab.md @@ -3,7 +3,7 @@ - Home: https://github.com/simeonpilgrim/coab, https://web.archive.org/web/20150506070020/http://code.google.com/p/coab/ - Inspirations: Curse of the Azure Bonds - State: mature -- Keywords: role playing, remake +- Keywords: remake, role playing - Code repository: https://github.com/simeonpilgrim/coab.git - Code language: C# - Code license: ? (BSD) diff --git a/entries/colditz_escape.md b/entries/colditz_escape.md index 681fe892..9990ec11 100644 --- a/entries/colditz_escape.md +++ b/entries/colditz_escape.md @@ -6,7 +6,7 @@ - State: mature - Download: https://github.com/aperture-software/colditz-escape/releases - Platform: Windows, Linux, macOS -- Keywords: strategy, remake +- Keywords: remake, strategy - Code repository: https://github.com/aperture-software/colditz-escape.git - Code language: C - Code license: GPL-3.0 diff --git a/entries/colobot_gold_edition.md b/entries/colobot_gold_edition.md index c130dd89..94138be2 100644 --- a/entries/colobot_gold_edition.md +++ b/entries/colobot_gold_edition.md @@ -4,7 +4,7 @@ - Inspirations: Colobot - State: mature - Download: https://colobot.info/download-colobot-gold/ -- Keywords: strategy, open content, programming, real time, remake +- Keywords: remake, strategy, open content, programming, real time - Code repository: https://github.com/colobot/colobot.git - Code language: C++ - Code license: GPL-3.0 diff --git a/entries/corsixth.md b/entries/corsixth.md index 3da61075..1c8a679f 100644 --- a/entries/corsixth.md +++ b/entries/corsixth.md @@ -4,7 +4,7 @@ - Inspirations: Theme Hospital - State: mature - Download: https://github.com/CorsixTH/CorsixTH/releases -- Keywords: strategy, commercial content, remake, requires original content +- Keywords: remake, strategy, commercial content, requires original content - Code repository: https://github.com/CorsixTH/CorsixTH.git - Code language: Lua, C++ - Code license: MIT diff --git a/entries/cosmo-engine.md b/entries/cosmo-engine.md index 92900f25..4f38818f 100644 --- a/entries/cosmo-engine.md +++ b/entries/cosmo-engine.md @@ -1,10 +1,10 @@ # Cosmo-Engine - Home: https://github.com/yuv422/cosmo-engine -- Media: https://en.wikipedia.org/wiki/Cosmo%27s_Cosmic_Adventure, https://3drealms.com/catalog/cosmos-cosmic-adventure_37/ +- Media: https://3drealms.com/catalog/cosmos-cosmic-adventure_37/, https://en.wikipedia.org/wiki/Cosmo%27s_Cosmic_Adventure - Inspirations: Cosmo's Cosmic Adventure - State: beta -- Keywords: platform, commercial content, remake, requires original content +- Keywords: platform, remake, commercial content, requires original content - Code repository: https://github.com/yuv422/cosmo-engine.git - Code language: C - Code license: GPL-2.0 diff --git a/entries/critterding.md b/entries/critterding.md index 56c1c367..a24293c3 100644 --- a/entries/critterding.md +++ b/entries/critterding.md @@ -3,7 +3,7 @@ - Home: http://critterding.sourceforge.net/, https://sourceforge.net/projects/critterding/ - State: beta, inactive since 2013 - Download: https://sourceforge.net/projects/critterding/files/critterding/ -- Keywords: simulation, evolution, open content, strategy +- Keywords: simulation, strategy, evolution, open content - Code repository: @see-download - Code language: C++ - Code license: GPL-2.0 diff --git a/entries/crossfire.md b/entries/crossfire.md index b91501ce..9238dbf3 100644 --- a/entries/crossfire.md +++ b/entries/crossfire.md @@ -1,7 +1,7 @@ # Crossfire - Home: http://crossfire.real-time.com/, https://sourceforge.net/projects/crossfire/ -- Media: +- Media: https://en.wikipedia.org/wiki/Crossfire_(1992_video_game) - State: mature - Download: http://crossfire.real-time.com/download/index.html, https://sourceforge.net/projects/crossfire/files/ - Keywords: role playing, multiplayer online + massive diff --git a/entries/crosswords.md b/entries/crosswords.md index a46ea3ea..9b37dc13 100644 --- a/entries/crosswords.md +++ b/entries/crosswords.md @@ -4,7 +4,7 @@ - State: mature - Download: https://sourceforge.net/projects/xwords/files/ - Platform: Android -- Keywords: role playing, board, open content +- Keywords: board, role playing, open content - Code repository: https://git.code.sf.net/p/xwords/git, https://svn.code.sf.net/p/xwords/svn (svn) - Code language: Java - Code license: GPL-2.0 diff --git a/entries/crown_and_cutlass.md b/entries/crown_and_cutlass.md index 40d2a6aa..df5f4d68 100644 --- a/entries/crown_and_cutlass.md +++ b/entries/crown_and_cutlass.md @@ -4,7 +4,7 @@ - Inspirations: Sid Meier's Pirates! - State: beta, inactive since 2009 - Download: https://sourceforge.net/projects/crownandcutlass/files/crownandcutlass/ -- Keywords: strategy, remake +- Keywords: remake, strategy - Code repository: https://gitlab.com/osgames/crownandcutlass.git (backup of svn), https://svn.code.sf.net/p/crownandcutlass/code (svn) - Code language: C++ - Code license: Custom (almost identical to BSD) diff --git a/entries/curses.md b/entries/curses.md index 8bdf0fac..15bf3399 100644 --- a/entries/curses.md +++ b/entries/curses.md @@ -7,7 +7,7 @@ - Keywords: library - Code repository: @see-home - Code language: C -- Code license: BSD +- Code license: ? (BSD version?) Terminal control library for Unix-like systems. diff --git a/entries/daggerfall_unity.md b/entries/daggerfall_unity.md index 4df75e0c..9e2a13b3 100644 --- a/entries/daggerfall_unity.md +++ b/entries/daggerfall_unity.md @@ -5,7 +5,7 @@ - State: mature - Download: https://www.dfworkshop.net/projects/daggerfall-unity/live-builds/ - Platform: Windows, Linux, macOS -- Keywords: role playing, remake, requires additional content +- Keywords: remake, role playing, requires additional content - Code repository: https://github.com/Interkarma/daggerfall-unity.git - Code language: C# - Code license: MIT diff --git a/entries/daimonin.md b/entries/daimonin.md index 1f890ec4..a918bd51 100644 --- a/entries/daimonin.md +++ b/entries/daimonin.md @@ -1,7 +1,7 @@ # Daimonin - Home: https://www.daimonin.org/, https://sourceforge.net/projects/daimonin/ -- Media: +- Media: https://en.wikipedia.org/wiki/Crossfire_(1992_video_game)#Influence_on_other_online_games - State: mature - Download: https://www.daimonin.org/downloads/ - Keywords: role playing, multiplayer online + massive diff --git a/entries/danger_from_the_deep.md b/entries/danger_from_the_deep.md index b71e861a..55672d8e 100644 --- a/entries/danger_from_the_deep.md +++ b/entries/danger_from_the_deep.md @@ -4,7 +4,7 @@ - Inspirations: Silent Hunter 4 - State: beta, inactive since 2011 - Download: http://dangerdeep.sourceforge.net/downloads/, https://sourceforge.net/projects/dangerdeep/files/ -- Keywords: simulation, remake +- Keywords: remake, simulation - Code repository: https://gitlab.com/osgames/dangerdeep.git (conversion and cleanup of git), https://git.code.sf.net/p/dangerdeep/git @add, https://svn.code.sf.net/p/dangerdeep/code (svn) - Code language: C++ - Code license: GPL-2.0 diff --git a/entries/dark_destiny.md b/entries/dark_destiny.md index 742f1939..968a070e 100644 --- a/entries/dark_destiny.md +++ b/entries/dark_destiny.md @@ -2,10 +2,10 @@ - Home: http://www.darkdestiny.at/, http://www.thedarkdestiny.at/portalApp/#/, https://sourceforge.net/projects/darkdestiny/ - State: mature, inactive since 2016 -- Keywords: strategy, multiplayer online + massive +- Keywords: strategy, multiplayer online + massive, turn based - Code repository: https://gitlab.com/osgames/darkdestiny.git (import of svn), https://svn.code.sf.net/p/darkdestiny/code (svn) - Code language: Java, JavaScript -- Code license: GPL +- Code license: ? (GPL version?) - Assets license: Custom (artwork can be freely used for modification and sharing) Turn-based online space strategy game playable in internet browsers. diff --git a/entries/decker.md b/entries/decker.md index a626ab17..f996da6e 100644 --- a/entries/decker.md +++ b/entries/decker.md @@ -1,6 +1,6 @@ # Decker -- Home: , https://sourceforge.net/projects/decker/ +- Home: https://web.archive.org/web/20110926115405/http://www10.caro.net:80/dsi/decker/, https://sourceforge.net/projects/decker/ - State: beta, inactive since 2013 - Download: https://sourceforge.net/projects/decker/files - Keywords: role playing diff --git a/entries/dedalus.md b/entries/dedalus.md index ca0a11f9..f51073f6 100644 --- a/entries/dedalus.md +++ b/entries/dedalus.md @@ -3,7 +3,7 @@ - Home: https://github.com/pistacchio/Dedalus - State: beta, inactive since 2018 - Platform: Web -- Keywords: adventure, game engine, text-based, tool +- Keywords: adventure, game engine, tool, text-based - Code repository: https://github.com/pistacchio/Dedalus.git - Code language: JavaScript - Code license: GPL-2.0 diff --git a/entries/delverengine.md b/entries/delverengine.md index 4862f236..dafd3bbb 100644 --- a/entries/delverengine.md +++ b/entries/delverengine.md @@ -3,7 +3,7 @@ - Home: https://github.com/Interrupt/delverengine - Inspirations: Delver - State: mature -- Keywords: game engine, commercial content, remake +- Keywords: game engine, remake, commercial content - Code repository: https://github.com/Interrupt/delverengine.git - Code language: Java - Code license: Custom (modified zlib) diff --git a/entries/desktopadventures.md b/entries/desktopadventures.md index 8e142ca3..dd2aff89 100644 --- a/entries/desktopadventures.md +++ b/entries/desktopadventures.md @@ -3,7 +3,7 @@ - Home: https://github.com/shinyquagsire23/DesktopAdventures - Inspirations: Indiana Jones and his Desktop Adventures, Star Wars: Yoda Stories - State: beta -- Keywords: game engine, commercial content, remake +- Keywords: game engine, remake, commercial content - Code repository: https://github.com/shinyquagsire23/DesktopAdventures.git - Code language: C - Code license: LGPL-2.1 diff --git a/entries/devilution.md b/entries/devilution.md index 3b354453..b44bf871 100644 --- a/entries/devilution.md +++ b/entries/devilution.md @@ -3,7 +3,7 @@ - Home: https://github.com/diasurgical/devilution - Inspirations: Diablo - State: mature -- Keywords: action, commercial content, engine recreation, remake, requires original content (Diablo 1) +- Keywords: action, remake, commercial content, engine recreation, requires original content (Diablo 1) - Code repository: https://github.com/diasurgical/devilution.git - Code language: C, C++ - Code license: Unlicense diff --git a/entries/devilutionx.md b/entries/devilutionx.md index 6764300b..c34253b0 100644 --- a/entries/devilutionx.md +++ b/entries/devilutionx.md @@ -3,7 +3,7 @@ - Home: https://github.com/diasurgical/devilutionX, https://web.archive.org/web/20130602191141/http://iphone.keyvisuals.com/apps/doom-classic-for-iphone-source-code-available/ - Inspirations: Diablo - State: mature -- Keywords: action, commercial content, engine recreation, remake, requires original content (Diablo 1) +- Keywords: action, remake, commercial content, engine recreation, requires original content (Diablo 1) - Code repository: https://github.com/diasurgical/devilutionX.git - Code language: C, C++ - Code license: Unlicense diff --git a/entries/dgengine.md b/entries/dgengine.md index 23b849ca..77878f58 100644 --- a/entries/dgengine.md +++ b/entries/dgengine.md @@ -3,7 +3,7 @@ - Home: https://github.com/dgengin/DGEngine/wiki - Inspirations: Diablo - State: beta -- Keywords: action, commercial content, remake, requires original content +- Keywords: action, remake, commercial content, requires original content - Code repository: https://github.com/dgengin/DGEngine.git - Code language: C++ - Code license: zlib, GPL-3.0 (depending on the use mode) diff --git a/entries/dhewm3.md b/entries/dhewm3.md index 2be3276a..bc726106 100644 --- a/entries/dhewm3.md +++ b/entries/dhewm3.md @@ -5,7 +5,7 @@ - State: mature - Download: https://github.com/dhewm/dhewm3/releases - Platform: Windows, Linux, macOS -- Keywords: action, commercial content, remake, requires original content, shooter +- Keywords: action, remake, commercial content, requires original content, shooter - Code repository: https://github.com/dhewm/dhewm3.git - Code language: C, C++ - Code license: GPL-3.0 diff --git a/entries/digital_a_love_story.md b/entries/digital_a_love_story.md index f7d7b978..e1b0063a 100644 --- a/entries/digital_a_love_story.md +++ b/entries/digital_a_love_story.md @@ -7,8 +7,8 @@ - Platform: Windows, Linux, macOS - Keywords: adventure, visual novel - Code repository: https://gitlab.com/osgames/digitalalovestory.git (copy of version 1.1) -- Code language: Ren'py -- Code license: CC-BY-NC-SA-3.0 @see-home +- Code language: Ren'Py +- Code license: CC-BY-NC-SA-3.0 (see home) A computer mystery/romance set five minutes into the future of 1988. See also https://loveconquersallgam.es/tagged/digital%3A-a-love-story diff --git a/entries/divercity.md b/entries/divercity.md index 8a47c84b..786a9c22 100644 --- a/entries/divercity.md +++ b/entries/divercity.md @@ -1,7 +1,7 @@ # Divercity - Home: https://team--rocket.github.io/divercity/ -- Inspirations: SimCity, micropolis +- Inspirations: micropolis, SimCity - State: beta, inactive since 2015 - Keywords: simulation, clone, open content - Code repository: https://github.com/Team--Rocket/divercity.git diff --git a/entries/domination.md b/entries/domination.md index f9ed7cfd..01f3db2e 100644 --- a/entries/domination.md +++ b/entries/domination.md @@ -5,7 +5,7 @@ - State: mature - Download: http://domination.sourceforge.net/download.shtml, https://sourceforge.net/projects/domination/files/ - Platform: Windows, Linux, macOS, Android -- Keywords: strategy, board +- Keywords: board, strategy - Code repository: https://svn.code.sf.net/p/domination/code (svn active) - Code language: Java - Code license: GPL-3.0 diff --git a/entries/doom-ios.md b/entries/doom-ios.md index 51b0620f..ac677a26 100644 --- a/entries/doom-ios.md +++ b/entries/doom-ios.md @@ -4,7 +4,7 @@ - Inspirations: Doom, Doom II, Heretic, Hexen - State: mature, inactive since 2012 - Platform: iOS -- Keywords: action, commercial content, remake, requires original content, shooter +- Keywords: action, remake, commercial content, requires original content, shooter - Code repository: https://github.com/id-Software/DOOM-iOS.git - Code language: C++ - Code license: GPL-2.0 diff --git a/entries/doom.md b/entries/doom.md index 7c075a9e..3136b353 100644 --- a/entries/doom.md +++ b/entries/doom.md @@ -4,7 +4,7 @@ - Inspirations: Doom - State: mature, inactive since 2012 - Platform: Linux -- Keywords: action, first-person, game engine, shooter +- Keywords: action, game engine, first-person, shooter - Code repository: https://github.com/id-Software/DOOM.git - Code language: C - Code license: Custom diff --git a/entries/doom64ex.md b/entries/doom64ex.md index 3bc2882d..8e6903f8 100644 --- a/entries/doom64ex.md +++ b/entries/doom64ex.md @@ -5,7 +5,7 @@ - State: mature - Download: https://doom64ex.wordpress.com/downloads/ - Platform: Windows, macOS -- Keywords: action, commercial content, original content required, remake +- Keywords: action, remake, commercial content, original content required - Code repository: https://github.com/svkaiser/Doom64EX.git - Code language: C, C++ - Code license: GPL-2.0 diff --git a/entries/doom_legacy.md b/entries/doom_legacy.md index 83e413aa..7f7259a2 100644 --- a/entries/doom_legacy.md +++ b/entries/doom_legacy.md @@ -5,7 +5,7 @@ - State: mature - Download: https://sourceforge.net/projects/doomlegacy/files/ - Platform: Windows, Linux, macOS -- Keywords: action, commercial content, original content required, remake, shooter +- Keywords: action, remake, commercial content, original content required, shooter - Code repository: https://git.code.sf.net/p/doomlegacy/legacy2, https://git.code.sf.net/p/doomlegacy/masterserver @add, https://svn.code.sf.net/p/doomlegacy/svn (svn), http://doomlegacy.cvs.sourceforge.net (cvs) - Code language: C++ - Code license: GPL-2.0 diff --git a/entries/doom_retro.md b/entries/doom_retro.md index 86640c1f..83c75251 100644 --- a/entries/doom_retro.md +++ b/entries/doom_retro.md @@ -5,7 +5,7 @@ - State: mature - Download: https://github.com/bradharding/doomretro/releases - Platform: Windows -- Keywords: action, commercial content, remake, requires original content +- Keywords: action, remake, commercial content, requires original content - Code repository: https://github.com/bradharding/doomretro.git - Code language: C, C++ - Code license: GPL-3.0 diff --git a/entries/doomsday_engine.md b/entries/doomsday_engine.md index 06cdb1e3..b40652e3 100644 --- a/entries/doomsday_engine.md +++ b/entries/doomsday_engine.md @@ -5,7 +5,7 @@ - State: mature - Download: https://sourceforge.net/projects/deng/files/ - Platform: Windows, Linux, macOS -- Keywords: action, commercial content, remake, requires original content +- Keywords: action, remake, commercial content, requires original content - Code repository: https://github.com/skyjake/Doomsday-Engine.git, https://git.code.sf.net/p/deng/code @add - Code language: C, C++ - Code license: GPL-2.0 (see source files), GPL-3.0, LGPL-3.0 (core) diff --git a/entries/dope_wars.md b/entries/dope_wars.md index 6a35ecae..dd63bd26 100644 --- a/entries/dope_wars.md +++ b/entries/dope_wars.md @@ -5,7 +5,7 @@ - State: mature, inactive since 2013 - Download: https://dopewars.sourceforge.io/download.html - Platform: Windows, Linux -- Keywords: simulation, remake +- Keywords: remake, simulation - Code repository: https://svn.code.sf.net/p/dopewars/code (svn) - Code language: C - Code license: GPL-2.0 diff --git a/entries/doxygen.md b/entries/doxygen.md index 009ff2c6..63e6fce5 100644 --- a/entries/doxygen.md +++ b/entries/doxygen.md @@ -4,7 +4,7 @@ - Media: https://en.wikipedia.org/wiki/Doxygen - State: mature - Download: https://www.doxygen.nl/download.html -- Keywords: tool, library, source documentation generator +- Keywords: library, tool, source documentation generator - Code repository: https://github.com/doxygen/doxygen.git - Code language: C++ - Code license: GPL-2.0 diff --git a/entries/drally.md b/entries/drally.md index 37cba2a3..09118e28 100644 --- a/entries/drally.md +++ b/entries/drally.md @@ -3,7 +3,7 @@ - Home: https://github.com/urxp/drally - Inspirations: Death Rally - State: beta -- Keywords: action, commercial content, racing, remake +- Keywords: action, remake, commercial content, racing - Code repository: https://github.com/urxp/drally.git - Code language: Assembly, C - Code license: MIT diff --git a/entries/dreamchess.md b/entries/dreamchess.md index 34b42b2e..0b14890e 100644 --- a/entries/dreamchess.md +++ b/entries/dreamchess.md @@ -4,7 +4,7 @@ - State: beta - Download: https://www.dreamchess.org/downloads, https://sourceforge.net/projects/dreamchess/files/ - Platform: Windows, Linux, macOS -- Keywords: strategy, board, chess +- Keywords: board, strategy, chess - Code repository: https://github.com/dreamchess/dreamchess.git - Code language: C - Code license: GPL-3.0 diff --git a/entries/dreerally.md b/entries/dreerally.md index d474b81f..0a8be07d 100644 --- a/entries/dreerally.md +++ b/entries/dreerally.md @@ -3,7 +3,7 @@ - Home: https://dreerally.com/ - Inspirations: Death Rally - State: beta -- Keywords: game engine, commercial content, remake, requires original content +- Keywords: game engine, remake, commercial content, requires original content - Code repository: https://github.com/enriquesomolinos/DreeRally.git - Code language: C, C++ - Code license: Custom (may only be used with a copy of Death Rally) diff --git a/entries/drl.md b/entries/drl.md index 073e1055..6369cae3 100644 --- a/entries/drl.md +++ b/entries/drl.md @@ -1,7 +1,7 @@ # DRL - Home: https://drl.chaosforge.org/ -- Media: +- Media: https://en.wikipedia.org/wiki/DRL_(video_game) - State: mature - Download: https://drl.chaosforge.org/downloads - Platform: Windows, Linux, macOS diff --git a/entries/duck_marines.md b/entries/duck_marines.md index 888e8aae..7b9744cb 100644 --- a/entries/duck_marines.md +++ b/entries/duck_marines.md @@ -5,7 +5,7 @@ - State: mature, inactive since 2016 - Download: https://github.com/SimonLarsen/duckmarines/releases - Platform: Windows, Linux (using LÖVE), macOS -- Keywords: puzzle, open content (but NC and ND), remake +- Keywords: puzzle, remake, open content (but NC and ND) - Code repository: https://github.com/SimonLarsen/duckmarines.git - Code language: Lua - Code license: zlib diff --git a/entries/duke3d.md b/entries/duke3d.md index 991d7207..e6e0eb03 100644 --- a/entries/duke3d.md +++ b/entries/duke3d.md @@ -3,7 +3,7 @@ - Home: http://icculus.org/duke3d/ - Inspirations: Duke Nukem 3D - State: beta, inactive since 2009 -- Keywords: action, commercial content, multiplayer LAN, remake, requires original content, shooter +- Keywords: action, remake, commercial content, multiplayer LAN, requires original content, shooter - Code repository: http://svn.icculus.org/duke3d/ (svn) - Code language: C - Code license: GPL-2.0 diff --git a/entries/duke3dw32.md b/entries/duke3dw32.md index 29c6422f..69c29204 100644 --- a/entries/duke3dw32.md +++ b/entries/duke3dw32.md @@ -4,7 +4,7 @@ - Inspirations: Duke Nukem 3D - State: beta, inactive since 2008 - Download: http://www.rancidmeat.com/projects/duke3d_w32/duke3d_w32_b20_src.zip -- Keywords: action, commercial content, multiplayer LAN, remake, requires original content, shooter +- Keywords: action, remake, commercial content, multiplayer LAN, requires original content, shooter - Code repository: @see-download - Code language: C - Code license: GPL-2.0 diff --git a/entries/dune_2-the_maker.md b/entries/dune_2-the_maker.md index 9eaeba1c..6a6cfada 100644 --- a/entries/dune_2-the_maker.md +++ b/entries/dune_2-the_maker.md @@ -4,7 +4,7 @@ - Media: https://en.wikipedia.org/wiki/Dune_II#Legacy - Inspirations: Dune 2 - State: beta -- Keywords: strategy, real time, remake +- Keywords: remake, strategy, real time - Code repository: https://github.com/Fundynamic/dune2themaker4j.git - Code language: Java - Code license: MIT diff --git a/entries/dune_dynasty.md b/entries/dune_dynasty.md index e1099ac1..e67b38e2 100644 --- a/entries/dune_dynasty.md +++ b/entries/dune_dynasty.md @@ -4,7 +4,7 @@ - Inspirations: Dune 2 - State: mature, inactive since 2014 - Download: https://sourceforge.net/projects/dunedynasty -- Keywords: strategy, remake, requires original content (Dune 2) +- Keywords: remake, strategy, requires original content (Dune 2) - Code repository: https://git.code.sf.net/p/dunedynasty/dunedynasty, https://gitlab.com/osgames/dunedynasty.git @add - Code language: C - Code license: GPL-2.0 diff --git a/entries/dune_legacy.md b/entries/dune_legacy.md index f4dcebd5..a6b9974a 100644 --- a/entries/dune_legacy.md +++ b/entries/dune_legacy.md @@ -4,7 +4,7 @@ - Inspirations: Dune 2 - State: mature - Download: http://dunelegacy.sourceforge.net/website/downloads.html, https://sourceforge.net/projects/dunelegacy/files -- Keywords: strategy, remake, requires original content +- Keywords: remake, strategy, requires original content - Code repository: https://git.code.sf.net/p/dunelegacy/code - Code language: C++ - Code license: GPL-2.0 diff --git a/entries/dungeon_craft.md b/entries/dungeon_craft.md index 1b2d80dc..1d232c73 100644 --- a/entries/dungeon_craft.md +++ b/entries/dungeon_craft.md @@ -4,7 +4,7 @@ - Inspirations: Forgotten Realms: Unlimited Adventures - State: mature - Download: https://sourceforge.net/projects/uaf/files/ -- Keywords: role playing, remake +- Keywords: remake, role playing - Code repository: https://gitlab.com/osgames/uaf.git (mirror), http://uaf.cvs.sourceforge.net (cvs) - Code language: C++ - Code license: GPL-2.0 diff --git a/entries/dunnet.md b/entries/dunnet.md index 970f69ed..8e2287af 100644 --- a/entries/dunnet.md +++ b/entries/dunnet.md @@ -1,10 +1,10 @@ # Dunnet - Home: http://www.driver-aces.com/ronnie.html#dunnet -- Media: +- Media: https://en.wikipedia.org/wiki/Dunnet_(video_game) - State: mature, inactive since 1992 - Keywords: adventure, text-based -- Code repository: (http://git.savannah.gnu.org/cgit/emacs.git/tree/lisp/play/dunnet.el?h=emacs-25) +- Code repository: ? (http://git.savannah.gnu.org/cgit/emacs.git/tree/lisp/play/dunnet.el?h=emacs-25) - Code language: Emacs Lisp - Code license: GPL-3.0 - Developer: Ron Schnell diff --git a/entries/dust_racing_2d.md b/entries/dust_racing_2d.md index 0ed1a114..0c449caf 100644 --- a/entries/dust_racing_2d.md +++ b/entries/dust_racing_2d.md @@ -5,7 +5,7 @@ - State: mature - Download: https://github.com/juzzlin/DustRacing2D/releases - Platform: Windows, Linux -- Keywords: sports, 2D, multiplayer split-screen, open content, racing, remake +- Keywords: remake, sports, 2D, multiplayer split-screen, open content, racing - Code repository: https://github.com/juzzlin/DustRacing2D.git - Code language: C, C++ - Code license: GPL-3.0 diff --git a/entries/dwarfcorp.md b/entries/dwarfcorp.md index f04a7fd8..964b77b9 100644 --- a/entries/dwarfcorp.md +++ b/entries/dwarfcorp.md @@ -4,7 +4,7 @@ - Inspirations: Dwarf Fortress, Minecraft - State: mature - Platform: Windows, Linux, macOS -- Keywords: strategy, commercial content (?), game engine +- Keywords: game engine, strategy, commercial content (?) - Code repository: https://github.com/Blecki/dwarfcorp.git - Code language: C# - Code license: MIT diff --git a/entries/eadventure.md b/entries/eadventure.md index 6c475fe9..962741e4 100644 --- a/entries/eadventure.md +++ b/entries/eadventure.md @@ -4,7 +4,7 @@ - State: mature, inactive since 2014 - Download: https://sourceforge.net/projects/e-adventure/files/ - Keywords: adventure, game engine -- Code repository: https://github.com/e-ucm/eAdventure-legacy.git, https://github.com/e-ucm/eAdventure.git @add, https://github.com/e-ucm/uAdventure.git @add, https://gitlab.com/osgames/e-adventure.git (@add, conversion of svn), https://svn.code.sf.net/p/e-adventure/code (svn) +- Code repository: https://github.com/e-ucm/eAdventure-legacy.git, https://github.com/e-ucm/eAdventure.git @add, https://github.com/e-ucm/uAdventure.git @add, https://gitlab.com/osgames/e-adventure.git @add (conversion of svn), https://svn.code.sf.net/p/e-adventure/code (svn) - Code language: Java - Code license: GPL-3.0 diff --git a/entries/eat_the_whistle.md b/entries/eat_the_whistle.md index ecd96604..497b42dc 100644 --- a/entries/eat_the_whistle.md +++ b/entries/eat_the_whistle.md @@ -5,7 +5,7 @@ - State: mature, inactive since 2017 - Download: https://sourceforge.net/projects/etw/files/ - Platform: Windows, Linux, macOS -- Keywords: simulation, football, remake +- Keywords: remake, simulation, football - Code repository: https://svn.code.sf.net/p/etw/code (svn), http://etw.cvs.sourceforge.net/viewvc/ (cvs) - Code language: C - Code license: ? diff --git a/entries/ecwolf.md b/entries/ecwolf.md index 3fb397d2..aee00c17 100644 --- a/entries/ecwolf.md +++ b/entries/ecwolf.md @@ -1,14 +1,14 @@ # ECWolf - Home: https://maniacsvault.net/ecwolf/ -- Inspirations: Wolfenstein 3D, Spear of Destiny +- Inspirations: Spear of Destiny, Wolfenstein 3D - State: mature - Download: https://maniacsvault.net/ecwolf/download.php - Platform: Windows, Linux, macOS, Android - Keywords: remake, first-person, shooter - Code repository: https://bitbucket.org/ecwolf/ecwolf.git - Code language: C++ -- Code license: GPL-2.0, BSD, LGPL-2.1, zlib, MIT, IJG, Public domain +- Code license: GPL-2.0, LGPL-2.1, zlib, MIT, IJG, Public domain Remake of Wolfenstein 3D, Spear of Destiny. diff --git a/entries/eduke32.md b/entries/eduke32.md index 28445944..5dee6bd6 100644 --- a/entries/eduke32.md +++ b/entries/eduke32.md @@ -4,7 +4,7 @@ - Inspirations: Duke Nukem 3D - State: mature - Download: https://dukeworld.com/eduke32/synthesis/latest/?s=d&o=d&dir=eduke32/synthesis/latest -- Keywords: action, commercial content, original content required, remake, shooter +- Keywords: action, remake, commercial content, original content required, shooter - Code repository: @see-download - Code language: C, C++ - Code license: GPL-2.0 diff --git a/entries/egoboo.md b/entries/egoboo.md index d3d554c5..6ee79de9 100644 --- a/entries/egoboo.md +++ b/entries/egoboo.md @@ -1,7 +1,7 @@ # Egoboo - Home: http://egoboo.sourceforge.net/about.html -- Media: +- Media: https://en.wikipedia.org/wiki/Egoboo_(video_game) - State: mature, inactive since 2015 - Download: http://egoboo.sourceforge.net/download.html - Keywords: role playing diff --git a/entries/elonafoobar.md b/entries/elonafoobar.md index 353c27d8..c50f4b56 100644 --- a/entries/elonafoobar.md +++ b/entries/elonafoobar.md @@ -4,7 +4,7 @@ - Inspirations: Elona - State: mature - Platform: Windows, Linux, macOS -- Keywords: role playing, commercial content, remake, roguelike +- Keywords: remake, role playing, commercial content, roguelike - Code repository: https://github.com/elonafoobar/elonafoobar.git - Code language: C++, Lua - Code license: MIT diff --git a/entries/elysium_engine.md b/entries/elysium_engine.md index 6a3400c2..fdd18ce8 100644 --- a/entries/elysium_engine.md +++ b/entries/elysium_engine.md @@ -4,7 +4,7 @@ - State: beta (alpha?), inactive since 2006 - Download: https://sourceforge.net/projects/elysium/files/ - Platform: Linux -- Keywords: role playing, 2D, game engine +- Keywords: game engine, role playing, 2D - Code repository: http://elysium.cvs.sourceforge.net (cvs) - Code language: C - Code license: GPL-2.0 diff --git a/entries/endless_sky.md b/entries/endless_sky.md index f2bc1ade..396e58af 100644 --- a/entries/endless_sky.md +++ b/entries/endless_sky.md @@ -1,7 +1,7 @@ # Endless Sky - Home: https://endless-sky.github.io/ -- Media: +- Media: https://en.wikipedia.org/wiki/Escape_Velocity_(video_game)#Legacy - Inspirations: Escape Velocity - State: mature - Download: https://github.com/endless-sky/endless-sky/releases diff --git a/entries/enigma.md b/entries/enigma.md index f5994353..6f5065a9 100644 --- a/entries/enigma.md +++ b/entries/enigma.md @@ -1,7 +1,7 @@ # Enigma - Home: https://www.nongnu.org/enigma/, https://sourceforge.net/projects/enigma-game/ -- Media: +- Media: https://en.wikipedia.org/wiki/Enigma_(2007_video_game) - Inspirations: Oxyd - State: mature - Download: http://www.nongnu.org/enigma/download.html#stable diff --git a/entries/entt_pacman.md b/entries/entt_pacman.md index a8119540..54e6963e 100644 --- a/entries/entt_pacman.md +++ b/entries/entt_pacman.md @@ -3,7 +3,7 @@ - Home: https://github.com/Kerndog73/EnTT-Pacman - Inspirations: Pac-Man - State: mature -- Keywords: puzzle, clone, open content, remake +- Keywords: puzzle, remake, clone, open content - Code repository: https://github.com/Kerndog73/EnTT-Pacman.git - Code language: C, C++ - Code license: MIT diff --git a/entries/epiar.md b/entries/epiar.md index 64a3a0f5..d0587ac6 100644 --- a/entries/epiar.md +++ b/entries/epiar.md @@ -1,8 +1,8 @@ # Epiar -- Home: +- Home: https://web.archive.org/web/20170123082605/http://epiar.net/ - State: beta -- Download: +- Download: https://web.archive.org/web/20161106210633/http://epiar.net/download - Keywords: action - Code repository: https://github.com/cthielen/Epiar.git - Code language: C, C++, Lua diff --git a/entries/et_legacy.md b/entries/et_legacy.md index 372f308d..2e3cb0df 100644 --- a/entries/et_legacy.md +++ b/entries/et_legacy.md @@ -5,7 +5,7 @@ - State: mature - Download: https://www.etlegacy.com/download - Platform: Windows, Linux, macOS -- Keywords: action, commercial content, remake, shooter +- Keywords: action, remake, commercial content, shooter - Code repository: https://github.com/etlegacy/etlegacy.git - Code language: C, C++, Lua - Code license: GPL-3.0 diff --git a/entries/excellent_bifurcation.md b/entries/excellent_bifurcation.md index ce17290c..cefa53b6 100644 --- a/entries/excellent_bifurcation.md +++ b/entries/excellent_bifurcation.md @@ -3,7 +3,7 @@ - Home: https://archive.org/details/ExcellentFix, https://packages.debian.org/source/excellent-bifurcation - State: mature, inactive since 2007 - Keywords: action, open content, shootem, shooter, top-down -- Code repository: (see debian) +- Code repository: @see-debian - Code language: C - Code license: GPL-2.0 - Assets license: GPL-2.0 diff --git a/entries/exult.md b/entries/exult.md index 332190fb..19ca11bd 100644 --- a/entries/exult.md +++ b/entries/exult.md @@ -1,11 +1,11 @@ # Exult - Home: http://exult.sourceforge.net/ -- Media: +- Media: https://en.wikipedia.org/wiki/Ultima_VII:_The_Black_Gate#Compatibility_with_modern_systems_and_fan_projects - Inspirations: Ultima VII: The Black Gate - State: mature - Download: http://exult.sourceforge.net/download.php -- Keywords: role playing, remake +- Keywords: remake, role playing - Code repository: https://github.com/exult/exult.git - Code language: C++ - Code license: GPL-2.0 diff --git a/entries/f-1_spirit.md b/entries/f-1_spirit.md index 88326e31..51202727 100644 --- a/entries/f-1_spirit.md +++ b/entries/f-1_spirit.md @@ -5,7 +5,7 @@ - State: beta, inactive since 2009 - Download: https://braingames.jorito.net/f1spirit/f1spirit.src_0.rc9-1615.tgz - Platform: Windows, Linux, macOS -- Keywords: simulation, free content, remake +- Keywords: remake, simulation, free content - Code repository: @see-download - Code language: C++ - Code license: ? diff --git a/entries/fairy-max.md b/entries/fairy-max.md index 0a0bd53c..80d2b219 100644 --- a/entries/fairy-max.md +++ b/entries/fairy-max.md @@ -5,7 +5,7 @@ - State: mature, inactive since 2018 - Download: https://home.hccnet.nl/h.g.muller/fairymax.tar.gz - Keywords: simulation, chess -- Code repository: (http://hgm.nubati.net/cgi-bin/gitweb.cgi?p=fairymax.git) +- Code repository: ? (http://hgm.nubati.net/cgi-bin/gitweb.cgi?p=fairymax.git) - Code language: C - Code license: Custom (permissive) - Developer: Harm Geert Muller diff --git a/entries/falltergeist.md b/entries/falltergeist.md index 26670cc7..3f89e3be 100644 --- a/entries/falltergeist.md +++ b/entries/falltergeist.md @@ -5,7 +5,7 @@ - State: beta - Download: https://github.com/falltergeist/falltergeist/releases - Platform: Windows, Linux -- Keywords: role playing, commercial content, game engine, remake, requires original content +- Keywords: game engine, remake, role playing, commercial content, requires original content - Code repository: https://github.com/falltergeist/falltergeist.git - Code language: C++ - Code license: GPL-3.0 diff --git a/entries/flare.md b/entries/flare.md index c2998177..e659e985 100644 --- a/entries/flare.md +++ b/entries/flare.md @@ -5,7 +5,7 @@ - State: mature - Download: https://flarerpg.org/index.php/download/, https://github.com/clintbellanger/flare-engine/releases - Platform: Windows, Linux, macOS -- Keywords: game engine, clone, framework +- Keywords: framework, game engine, clone - Code repository: https://github.com/clintbellanger/flare-engine.git, https://github.com/clintbellanger/flare-game.git @add - Code language: C++, Java - Code license: GPL-3.0 diff --git a/entries/flf.md b/entries/flf.md index 6dc15912..03ce374a 100644 --- a/entries/flf.md +++ b/entries/flf.md @@ -7,7 +7,7 @@ - Keywords: framework, clone, content commercial, requires original content - Code repository: https://github.com/Project-F/F.LF.git - Code language: JavaScript -- Code license: CC-BY-SA-NC-3.0 (http://project-f.github.io/license.html) +- Code license: CC-BY-NC-SA-3.0 (http://project-f.github.io/license.html) - Assets license: Proprietary (https://github.com/Project-F/LF2_19) Clone of Little Fighter 2. diff --git a/entries/fluid_table_tennis.md b/entries/fluid_table_tennis.md index 167436a7..782caad8 100644 --- a/entries/fluid_table_tennis.md +++ b/entries/fluid_table_tennis.md @@ -4,7 +4,7 @@ - Inspirations: Plasma Pong - State: mature, inactive since 2013 - Play: http://anirudhjoshi.github.io/fluid_table_tennis/ -- Keywords: arcade, multiplayer competitive + local, open content, remake +- Keywords: arcade, remake, multiplayer competitive + local, open content - Code repository: https://github.com/anirudhjoshi/fluid_table_tennis.git - Code language: JavaScript - Code license: MIT diff --git a/entries/fonline.md b/entries/fonline.md index a224d423..7f4186d2 100644 --- a/entries/fonline.md +++ b/entries/fonline.md @@ -3,7 +3,7 @@ - Home: https://fodev.net/ - Inspirations: Fallout Online - State: beta -- Keywords: strategy, remake +- Keywords: remake, strategy - Code repository: https://github.com/alexknvl/fonline.git, https://github.com/rotators/play-fonline-data.git @add - Code language: C, C++ - Code license: GPL-3.0 diff --git a/entries/fquake3.md b/entries/fquake3.md index d809f4e6..f1cb86a9 100644 --- a/entries/fquake3.md +++ b/entries/fquake3.md @@ -3,7 +3,7 @@ - Home: https://github.com/TIHan/FQuake3 - Inspirations: Quake 3 - State: beta, inactive since 2014 -- Keywords: action, commercial content, remake, requires original content, shooter +- Keywords: action, remake, commercial content, requires original content, shooter - Code repository: https://github.com/TIHan/FQuake3.git - Code language: F# - Code license: GPL-2.0 diff --git a/entries/free_allegiance.md b/entries/free_allegiance.md index aa7dd372..32f0f1b5 100644 --- a/entries/free_allegiance.md +++ b/entries/free_allegiance.md @@ -1,7 +1,7 @@ # Free Allegiance - Home: https://www.freeallegiance.org/ -- Media: +- Media: https://en.wikipedia.org/wiki/Allegiance_(video_game)#Community_continuation - Inspirations: Allegiance - State: mature - Keywords: remake diff --git a/entries/free_tennis.md b/entries/free_tennis.md index 2aec143f..e90a6468 100644 --- a/entries/free_tennis.md +++ b/entries/free_tennis.md @@ -3,7 +3,7 @@ - Home: http://freetennis.sourceforge.net/, https://sourceforge.net/projects/freetennis/, https://packages.debian.org/search?keywords=freetennis - State: beta, inactive since 2005 - Download: https://sourceforge.net/projects/freetennis/files/ -- Keywords: sports, open content, strategy +- Keywords: sports, strategy, open content - Code repository: https://gitlab.com/osgames/freetennis.git (import of cvs), http://freetennis.cvs.sourceforge.net (cvs) - Code language: OCaml - Code license: GPL-2.0 diff --git a/entries/freeablo.md b/entries/freeablo.md index 030cc31c..1e366c9e 100644 --- a/entries/freeablo.md +++ b/entries/freeablo.md @@ -5,7 +5,7 @@ - State: beta - Download: @see-home - Platform: Windows, Linux, macOS -- Keywords: action, commercial content, remake, requires original content, role playing +- Keywords: action, remake, role playing, commercial content, requires original content - Code repository: https://github.com/wheybags/freeablo.git - Code language: C++ - Code license: GPL-3.0 diff --git a/entries/freeaoe.md b/entries/freeaoe.md index 4242747a..107bae0a 100644 --- a/entries/freeaoe.md +++ b/entries/freeaoe.md @@ -3,7 +3,7 @@ - Home: https://github.com/sandsmark/freeaoe - Inspirations: Age of Empires II - State: beta -- Keywords: strategy, commercial content, real time, remake, requires original content +- Keywords: remake, strategy, commercial content, real time, requires original content - Code repository: https://github.com/sandsmark/freeaoe.git - Code language: C++ - Code license: GPL-3.0 diff --git a/entries/freeciv_alpha_centauri_project.md b/entries/freeciv_alpha_centauri_project.md index 103aa6c9..0f5aa1ff 100644 --- a/entries/freeciv_alpha_centauri_project.md +++ b/entries/freeciv_alpha_centauri_project.md @@ -4,7 +4,7 @@ - Inspirations: Sid Meier's Alpha Centauri - State: beta, inactive since 2003 - Download: https://sourceforge.net/projects/freecivac/files/Stable%20Releases/ -- Keywords: strategy, remake +- Keywords: remake, strategy - Code repository: https://gitlab.com/osgames/freecivac.git (conversion to cvs), http://freecivac.cvs.sourceforge.net (cvs) - Code language: C - Code license: GPL-2.0 diff --git a/entries/freecol.md b/entries/freecol.md index d267f22b..926efa34 100644 --- a/entries/freecol.md +++ b/entries/freecol.md @@ -5,7 +5,7 @@ - Inspirations: Sid Meier's Colonization - State: mature - Download: http://www.freecol.org/download.html -- Keywords: strategy, multiplayer, remake, turn-based +- Keywords: remake, strategy, multiplayer, turn-based - Code repository: https://github.com/FreeCol/freecol.git, https://git.code.sf.net/p/freecol/git @add - Code language: Java - Code license: GPL-2.0 diff --git a/entries/freecs.md b/entries/freecs.md index 47eb0552..0b6bca8c 100644 --- a/entries/freecs.md +++ b/entries/freecs.md @@ -4,7 +4,7 @@ - Inspirations: Counter-Strike - State: mature - Download: https://sourceforge.net/projects/freecs-1-5/files/ -- Keywords: action, first-person, multiplayer online + LAN, remake, requires original content, shooter +- Keywords: action, remake, first-person, multiplayer online + LAN, requires original content, shooter - Code repository: https://git.code.sf.net/p/freecs-1-5/code - Code language: QuakeC - Code license: GPL-2.0 diff --git a/entries/freedoom.md b/entries/freedoom.md index a81dfd31..f9556d75 100644 --- a/entries/freedoom.md +++ b/entries/freedoom.md @@ -6,7 +6,7 @@ - State: beta - Download: https://freedoom.github.io/download.html - Platform: Windows, Linux, macOS (all that are supported by the Doom) -- Keywords: action, engine required, open content, remake +- Keywords: action, remake, engine required, open content - Code repository: https://github.com/freedoom/freedoom.git - Code language: None (only content) - Code license: None (only content) diff --git a/entries/freegish.md b/entries/freegish.md index 9ab720b1..9a69b7bd 100644 --- a/entries/freegish.md +++ b/entries/freegish.md @@ -1,10 +1,10 @@ # freegish - Home: https://github.com/freegish/freegish -- Media: +- Media: https://en.wikipedia.org/wiki/Gish_(video_game) - Inspirations: Gish - State: beta, inactive since 2017 -- Keywords: arcade, open content, platform, remake, side-scrolling +- Keywords: arcade, platform, remake, open content, side-scrolling - Code repository: https://github.com/freegish/freegish.git - Code language: C - Code license: GPL-2.0 diff --git a/entries/freekick_3.md b/entries/freekick_3.md index 99285d23..9656514d 100644 --- a/entries/freekick_3.md +++ b/entries/freekick_3.md @@ -3,7 +3,7 @@ - Home: https://codeflow.wordpress.com/tag/sensible-soccer/ - Inspirations: Sensible Soccer - State: mature, inactive since 2015 -- Keywords: sports, free content, remake, simulation, soccer +- Keywords: remake, simulation, sports, free content, soccer - Code repository: https://github.com/anttisalonen/freekick3.git - Code language: C++, Python - Code license: GPL-3.0 diff --git a/entries/freelords.md b/entries/freelords.md index d87525dd..0b812bea 100644 --- a/entries/freelords.md +++ b/entries/freelords.md @@ -4,7 +4,7 @@ - Inspirations: Warlords II - State: beta, inactive since 2017 - Download: https://sourceforge.net/projects/freelords/files -- Keywords: strategy, remake +- Keywords: remake, strategy - Code repository: https://git.code.sf.net/p/freelords/git - Code language: Java - Code license: GPL-2.0 diff --git a/entries/freeorion.md b/entries/freeorion.md index 21d5bbb3..4e95405e 100644 --- a/entries/freeorion.md +++ b/entries/freeorion.md @@ -5,7 +5,7 @@ - Inspirations: Master of Orion, Master of Orion 2 - State: beta - Download: https://www.freeorion.org/index.php/Download -- Keywords: strategy, open content, remake, turn-based +- Keywords: remake, strategy, open content, turn-based - Code repository: https://github.com/freeorion/freeorion.git, https://svn.code.sf.net/p/freeorion/code (svn) - Code language: C++, Python - Code license: GPL-2.0 diff --git a/entries/freerails.md b/entries/freerails.md index 0e222bf7..06fac404 100644 --- a/entries/freerails.md +++ b/entries/freerails.md @@ -4,7 +4,7 @@ - Inspirations: Railroad Tycoon - State: beta, inactive since 2008 (see continuation) - Download: https://sourceforge.net/projects/freerails/files/jfreerails/ -- Keywords: strategy, real time, remake +- Keywords: remake, strategy, real time - Code repository: http://freerails.cvs.sourceforge.net (cvs) - Code language: Java, C++ - Code license: GPL-2.0 diff --git a/entries/freerct.md b/entries/freerct.md index 523044f7..0bafbaba 100644 --- a/entries/freerct.md +++ b/entries/freerct.md @@ -3,7 +3,7 @@ - Home: https://web.archive.org/web/*/http://www.freerct.org/, http://freerct.blogspot.com/ - Inspirations: RollerCoaster Tycoon, RollerCoaster Tycoon 2 - State: beta, inactive since 2016 -- Keywords: strategy, remake +- Keywords: remake, strategy - Code repository: https://github.com/FreeRCT/FreeRCT.git - Code language: C++ - Code license: GPL-2.0 diff --git a/entries/freeserf.md b/entries/freeserf.md index b77ad43b..5f195ee9 100644 --- a/entries/freeserf.md +++ b/entries/freeserf.md @@ -4,7 +4,7 @@ - Inspirations: The Settlers - State: mature - Download: https://github.com/freeserf/freeserf/releases -- Keywords: strategy, remake, requires original content (Settlers 1) +- Keywords: remake, strategy, requires original content (Settlers 1) - Code repository: https://github.com/freeserf/freeserf.git - Code language: C, C++ - Code license: GPL-3.0 diff --git a/entries/freeserfnet.md b/entries/freeserfnet.md index 93c451d4..5760d7ce 100644 --- a/entries/freeserfnet.md +++ b/entries/freeserfnet.md @@ -1,9 +1,9 @@ # Freeserf.net - Home: https://github.com/Pyrdacor/freeserf.net -- Inspirations: The Settlers, Freeserf +- Inspirations: Freeserf, The Settlers - State: mature -- Keywords: strategy, remake, requires original content +- Keywords: remake, strategy, requires original content - Code repository: https://github.com/Pyrdacor/freeserf.net.git - Code language: C# - Code license: GPL-3.0 diff --git a/entries/freesims.md b/entries/freesims.md index 88fca12f..75cec25c 100644 --- a/entries/freesims.md +++ b/entries/freesims.md @@ -5,7 +5,7 @@ - State: beta - Download: https://github.com/francot514/FreeSims/releases - Platform: Windows -- Keywords: simulation, commercial content, remake, requires original content +- Keywords: remake, simulation, commercial content, requires original content - Code repository: https://github.com/francot514/FreeSims.git - Code language: C# - Code license: MPL-2.0 diff --git a/entries/freeso.md b/entries/freeso.md index dbfd2cf7..19a62722 100644 --- a/entries/freeso.md +++ b/entries/freeso.md @@ -4,7 +4,7 @@ - Inspirations: The Sims Online - State: beta - Download: https://freeso.org/download/ -- Keywords: simulation, game engine, remake, requires original content +- Keywords: game engine, remake, simulation, requires original content - Code repository: https://github.com/riperiperi/FreeSO.git - Code language: C# - Code license: MPL-2.0 diff --git a/entries/freestars.md b/entries/freestars.md index bec03bd4..8055117e 100644 --- a/entries/freestars.md +++ b/entries/freestars.md @@ -3,7 +3,7 @@ - Home: http://freestars.sourceforge.net/, https://sourceforge.net/projects/freestars/ - Inspirations: Stars! - State: beta, inactive since 2008 -- Keywords: strategy, remake +- Keywords: remake, strategy - Code repository: https://github.com/christopherredden/freestars.git (backup of svn), https://svn.code.sf.net/p/freestars/code (svn) - Code language: C++ - Code license: GPL-2.0 diff --git a/entries/freesynd.md b/entries/freesynd.md index 739fa5cf..ea9abc7c 100644 --- a/entries/freesynd.md +++ b/entries/freesynd.md @@ -4,7 +4,7 @@ - Inspirations: Syndicate - State: beta, inactive since 2017 - Download: https://sourceforge.net/projects/freesynd/files/ -- Keywords: strategy, remake, requires original content (Syndicate) +- Keywords: remake, strategy, requires original content (Syndicate) - Code repository: https://svn.code.sf.net/p/freesynd/code (svn) - Code language: C++ - Code license: GPL-2.0 diff --git a/entries/freevikings.md b/entries/freevikings.md index c7e45486..f441db95 100644 --- a/entries/freevikings.md +++ b/entries/freevikings.md @@ -4,7 +4,7 @@ - Inspirations: The Lost Vikings - State: beta - Download: https://sourceforge.net/projects/freevikings/files/ (outdated) -- Keywords: platform, clone, puzzle +- Keywords: platform, puzzle, clone - Code repository: https://git.code.sf.net/p/freevikings/git, http://freevikings.cvs.sourceforge.net (cvs) - Code language: Ruby - Code license: GPL-2.0 diff --git a/entries/freya_game_engine.md b/entries/freya_game_engine.md index d7b7e832..563562cb 100644 --- a/entries/freya_game_engine.md +++ b/entries/freya_game_engine.md @@ -3,7 +3,7 @@ - Home: http://freya-engine.sourceforge.net/, https://sourceforge.net/projects/freya-engine/ - State: beta, inactive since 2002 - Download: https://sourceforge.net/projects/freya-engine/files/ -- Keywords: strategy, game engine +- Keywords: game engine, strategy - Code repository: https://gitlab.com/osgames/freya-engine.git (conversion of cvs), http://freya-engine.cvs.sourceforge.net (cvs) - Code language: Java - Code license: LGPL-2.1 diff --git a/entries/galaxy_forces_v2.md b/entries/galaxy_forces_v2.md index fceb26c1..130482c6 100644 --- a/entries/galaxy_forces_v2.md +++ b/entries/galaxy_forces_v2.md @@ -4,7 +4,7 @@ - Inspirations: Gravity Force - State: mature - Download: https://sourceforge.net/projects/galaxyv2/files/ -- Keywords: action, 2D, content open, remake +- Keywords: action, remake, 2D, content open - Code repository: https://svn.code.sf.net/p/galaxyv2/code (svn active) - Code language: C++ - Code license: Public domain (license.txt) diff --git a/entries/gemrb.md b/entries/gemrb.md index dc4c0b5b..77e8ce20 100644 --- a/entries/gemrb.md +++ b/entries/gemrb.md @@ -4,7 +4,7 @@ - Inspirations: Baldur's Gate, Icewind Dale, Planescape: Torment - State: mature - Download: https://gemrb.org/Install.html -- Keywords: framework, 2D, isometric, remake, requires original content +- Keywords: framework, remake, 2D, isometric, requires original content - Code repository: https://github.com/gemrb/gemrb.git - Code language: C++, Python - Code license: GPL-2.0 diff --git a/entries/gigalomania.md b/entries/gigalomania.md index dd535957..4c0deb6f 100644 --- a/entries/gigalomania.md +++ b/entries/gigalomania.md @@ -3,7 +3,7 @@ - Home: http://gigalomania.sourceforge.net/, https://sourceforge.net/projects/gigalomania/ - Inspirations: Mega Lo Mania - State: mature -- Keywords: strategy, real time, remake +- Keywords: remake, strategy, real time - Code repository: https://git.code.sf.net/p/gigalomania/code - Code language: C++ - Code license: GPL-2.0 diff --git a/entries/gl-117.md b/entries/gl-117.md index 2c5b68c2..6eec24b1 100644 --- a/entries/gl-117.md +++ b/entries/gl-117.md @@ -4,7 +4,7 @@ - State: mature, inactive since 2005 - Download: https://sourceforge.net/projects/gl-117/files/gl-117/ - Platform: Windows, Linux, macOS -- Keywords: action, flight, open content, simulation +- Keywords: action, simulation, flight, open content - Code repository: https://gitlab.com/osgames/gl-117.git (import of cvs), http://gl-117.cvs.sourceforge.net (cvs) - Code language: C++ - Code license: GPL-2.0 diff --git a/entries/glparchis.md b/entries/glparchis.md index 3190da39..e731178c 100644 --- a/entries/glparchis.md +++ b/entries/glparchis.md @@ -4,7 +4,7 @@ - State: mature - Download: https://github.com/Turulomio/glparchis/releases, https://sourceforge.net/projects/glparchis/files/glparchis/ - Platform: Windows, Linux -- Keywords: strategy, board, open content +- Keywords: board, strategy, open content - Code repository: https://github.com/turulomio/glparchis.git - Code language: Python - Code license: GPL-3.0 diff --git a/entries/gltron.md b/entries/gltron.md index 28196b83..905059de 100644 --- a/entries/gltron.md +++ b/entries/gltron.md @@ -9,7 +9,7 @@ - Keywords: action - Code repository: https://github.com/osgamearchive/gltron.git (svn and git combination), https://git.code.sf.net/p/gltron/git @add, https://svn.code.sf.net/p/gltron/code (svn), http://gltron.cvs.sourceforge.net (cvs, contained in the svn) - Code language: C -- Code license: GPL +- Code license: ? (GPL version?) - Code dependencies: SDL 3D snake game based on the light cycle portion of the film Tron. diff --git a/entries/gnome_hearts.md b/entries/gnome_hearts.md index 2982d775..38f77b5f 100644 --- a/entries/gnome_hearts.md +++ b/entries/gnome_hearts.md @@ -2,8 +2,8 @@ - Home: https://web.archive.org/web/20160308075926/http://www.jejik.com/gnome-hearts/, https://packages.ubuntu.com/xenial/gnome-hearts, https://packages.debian.org/search?keywords=gnome-hearts, https://launchpad.net/hearts - State: mature, inactive since 2015 -- Keywords: strategy, cards -- Code repository: (see debian) +- Keywords: cards, strategy +- Code repository: @see-debian - Code language: Python - Code license: GPL-2.0 diff --git a/entries/gnomescroll.md b/entries/gnomescroll.md index a2212445..5e0f7549 100644 --- a/entries/gnomescroll.md +++ b/entries/gnomescroll.md @@ -3,7 +3,7 @@ - Home: https://github.com/Gnomescroll/Gnomescroll - Inspirations: Minecraft - State: beta, inactive since 2013 -- Keywords: simulation, remake, voxel +- Keywords: remake, simulation, voxel - Code repository: https://github.com/Gnomescroll/Gnomescroll.git - Code language: C, C++, Python - Code license: GPL-3.0 diff --git a/entries/gnu_chess.md b/entries/gnu_chess.md index 99f9fcbb..12d8d9a0 100644 --- a/entries/gnu_chess.md +++ b/entries/gnu_chess.md @@ -5,7 +5,7 @@ - State: mature, inactive since 2017 - Download: http://ftp.thunix.net/gnu-ftp/chess/ - Platform: Windows, Linux, macOS -- Keywords: strategy, chess, game engine, open content +- Keywords: game engine, strategy, chess, open content - Code repository: http://svn.savannah.gnu.org/svn/chess/ (svn), http://cvs.savannah.gnu.org:/sources/chess (cvs) - Code language: C++ - Code license: GPL-3.0 diff --git a/entries/gnu_freedink.md b/entries/gnu_freedink.md index 39b3ae20..a112b1ab 100644 --- a/entries/gnu_freedink.md +++ b/entries/gnu_freedink.md @@ -7,7 +7,7 @@ - Play: https://play.freedink.org/ - Download: https://www.gnu.org/software/freedink/get, http://ftp.gnu.org/gnu/freedink/ - Platform: Windows, Linux, macOS, Web -- Keywords: adventure, 2D, open content (?), remake, requires original content (?), role playing, top-down +- Keywords: adventure, remake, role playing, 2D, open content (?), requires original content (?), top-down - Code repository: https://git.savannah.gnu.org/git/freedink.git, https://git.savannah.gnu.org/git/freedink/dfarc.git @add, https://git.savannah.gnu.org/git/freedink/dink-data.git @add, https://git.savannah.gnu.org/git/freedink/freedink-data.git @add, http://cvs.savannah.gnu.org:/sources/freedink (cvs) - Code language: C - Code license: GPL-3.0 diff --git a/entries/gnu_go.md b/entries/gnu_go.md index 3c7716cf..f06f809e 100644 --- a/entries/gnu_go.md +++ b/entries/gnu_go.md @@ -5,7 +5,7 @@ - State: mature, inactive since 2011 - Download: https://www.gnu.org/software/gnugo/download.html - Platform: Windows, Linux, macOS -- Keywords: strategy, board, game engine, go, online +- Keywords: board, game engine, strategy, go, online - Code repository: https://git.savannah.gnu.org/git/gnugo.git, http://cvs.savannah.gnu.org:/sources/gnugo (cvs) - Code language: C - Code license: GPL-3.0 diff --git a/entries/goblin_camp.md b/entries/goblin_camp.md index 48977495..81255b0c 100644 --- a/entries/goblin_camp.md +++ b/entries/goblin_camp.md @@ -1,7 +1,7 @@ # Goblin Camp - Home: http://www.goblincamp.com/, https://web.archive.org/web/20151106001905/https://bitbucket.org/genericcontainer/goblin-camp -- Inspirations: Anno 1404, Dwarf Fortress, Dungeon Keeper +- Inspirations: Anno 1404, Dungeon Keeper, Dwarf Fortress - State: beta, inactive since 2012 - Download: @see-home - Keywords: strategy diff --git a/entries/godot.md b/entries/godot.md index 2e76772b..612a9e45 100644 --- a/entries/godot.md +++ b/entries/godot.md @@ -1,7 +1,7 @@ # Godot - Home: https://godotengine.org/ -- Media: +- Media: https://en.wikipedia.org/wiki/Godot_(game_engine) - State: mature - Download: https://godotengine.org/download - Keywords: framework diff --git a/entries/gorogue.md b/entries/gorogue.md index 38b6c41b..1847df7e 100644 --- a/entries/gorogue.md +++ b/entries/gorogue.md @@ -4,7 +4,7 @@ - State: mature - Download: https://github.com/Chris3606/GoRogue/releases - Platform: Windows -- Keywords: tool, library +- Keywords: library, tool - Code repository: https://github.com/Chris3606/GoRogue.git - Code language: C# - Code license: MIT diff --git a/entries/grail.md b/entries/grail.md index ec92255c..813bb69a 100644 --- a/entries/grail.md +++ b/entries/grail.md @@ -3,7 +3,7 @@ - Home: http://leetless.de/tag-Grail.html - State: beta, inactive since 2013 - Platform: Linux -- Keywords: adventure, 2D, game engine +- Keywords: adventure, game engine, 2D - Code repository: https://github.com/Droggelbecher/Grail.git - Code language: C++, Lua - Code license: GPL-3.0 diff --git a/entries/gravitation.md b/entries/gravitation.md index bb0d6bde..d0e6fcad 100644 --- a/entries/gravitation.md +++ b/entries/gravitation.md @@ -5,7 +5,7 @@ - Download: https://sourceforge.net/projects/hcsoftware/files/Gravitation/ - Platform: Windows, Linux, macOS - Keywords: adventure, open content -- Code repository: (see download and maybe some repositories at SF) +- Code repository: @see-download (maybe some repositories at SF) - Code language: C++ - Code license: Public domain - Code dependencies: SDL diff --git a/entries/greenius_civil_war.md b/entries/greenius_civil_war.md index 08b26d6d..d33017c8 100644 --- a/entries/greenius_civil_war.md +++ b/entries/greenius_civil_war.md @@ -2,7 +2,7 @@ - Home: http://civilwar.sourceforge.net/, https://sourceforge.net/projects/civilwar/, https://www.greenius.co.uk/personal/steven/civilwar.html - State: beta, inactive since 2001 -- Keywords: strategy, remake +- Keywords: remake, strategy - Code repository: https://gitlab.com/osgames/civilwar.git (backup of cvs), http://civilwar.cvs.sourceforge.net (cvs) - Code language: C++ - Code license: GPL-2.0 diff --git a/entries/griefly.md b/entries/griefly.md index 43917503..5fc8bace 100644 --- a/entries/griefly.md +++ b/entries/griefly.md @@ -3,7 +3,7 @@ - Home: https://github.com/griefly - Inspirations: Space Station 13 - State: beta -- Keywords: role playing, remake, space +- Keywords: remake, role playing, space - Code repository: https://github.com/griefly/griefly.git - Code language: C++, Go, Python - Code license: MIT diff --git a/entries/grit_game_engine.md b/entries/grit_game_engine.md index e13c7e4c..2170c189 100644 --- a/entries/grit_game_engine.md +++ b/entries/grit_game_engine.md @@ -3,7 +3,7 @@ - Home: https://github.com/grit-engine/grit-engine, https://web.archive.org/web/20190902110513/http://www.gritengine.com/ - Inspirations: Grand Theft Auto: San Andreas - State: beta -- Keywords: game engine, commercial content, framework +- Keywords: framework, game engine, commercial content - Code repository: https://github.com/grit-engine/grit-engine.git - Code language: C++, Python - Code license: MIT diff --git a/entries/gzdoom.md b/entries/gzdoom.md index 9f68ed4b..317a3b56 100644 --- a/entries/gzdoom.md +++ b/entries/gzdoom.md @@ -5,7 +5,7 @@ - State: mature - Download: https://zdoom.org/downloads - Platform: Windows, Linux, macOS -- Keywords: action, first-person, non-free content, remake, requires original content, shooter +- Keywords: action, remake, first-person, non-free content, requires original content, shooter - Code repository: https://github.com/coelckers/gzdoom.git - Code language: C, C++ - Code license: GPL-3.0 diff --git a/entries/hack.md b/entries/hack.md index e5563d03..6933279a 100644 --- a/entries/hack.md +++ b/entries/hack.md @@ -1,10 +1,10 @@ # Hack - Home: http://roguebasin.roguelikedevelopment.org/index.php?title=Hack, https://nethackwiki.com/wiki/Hack_1.0.3, https://homepages.cwi.nl/~aeb/games/hack/hack.html, https://packages.debian.org/search?keywords=bsdgames -- Media: +- Media: https://en.wikipedia.org/wiki/Hack_(video_game) - State: mature, inactive since 1985 - Keywords: role playing, roguelike, text -- Code repository: (see debian bsdgames) +- Code repository: @see-debian (bsdgames) - Code language: C - Code license: 3-clause BSD - Developer: Jay Fenlason diff --git a/entries/hardwar.md b/entries/hardwar.md index 3df6538d..5b72ab66 100644 --- a/entries/hardwar.md +++ b/entries/hardwar.md @@ -3,7 +3,7 @@ - Home: http://hardwar.org/ - Inspirations: Hardwar - State: beta, inactive since 2015 -- Keywords: simulation, flight, remake +- Keywords: remake, simulation, flight - Code repository: https://github.com/andrewfenn/Hardwar.git - Code language: C++ - Code license: GPL-3.0 diff --git a/entries/haxima.md b/entries/haxima.md index 70a71740..ebcd337e 100644 --- a/entries/haxima.md +++ b/entries/haxima.md @@ -4,7 +4,7 @@ - Inspirations: Ultima series - State: beta - Download: https://sourceforge.net/projects/nazghul/files -- Keywords: role playing, 2D, game engine +- Keywords: game engine, role playing, 2D - Code repository: https://git.code.sf.net/p/nazghul/git, http://nazghul.cvs.sourceforge.net (cvs) - Code language: C++ - Code license: GPL-3.0 diff --git a/entries/head_over_heels.md b/entries/head_over_heels.md index 49a95e64..70e5bdc0 100644 --- a/entries/head_over_heels.md +++ b/entries/head_over_heels.md @@ -1,7 +1,7 @@ # Head over Heels - Home: https://github.com/dougmencken/HeadOverHeels, http://www.headoverheels2.com/drupal/en/ -- Media: (this could be added) +- Media: https://en.wikipedia.org/wiki/Head_Over_Heels_(video_game)#Legacy (this could be added) - Inspirations: Head over Heels - State: mature - Download: http://www.headoverheels2.com/drupal/en/node/161 diff --git a/entries/heart_of_the_alien.md b/entries/heart_of_the_alien.md index df359f94..5080f92c 100644 --- a/entries/heart_of_the_alien.md +++ b/entries/heart_of_the_alien.md @@ -5,7 +5,7 @@ - State: beta, inactive since 2005 - Download: https://sourceforge.net/projects/hota/files/ - Platform: Windows -- Keywords: adventure, commercial content, remake, requires original content +- Keywords: adventure, remake, commercial content, requires original content - Code repository: https://gitlab.com/osgames/hota.git (conversion of cvs), http://hota.cvs.sourceforge.net (cvs) - Code language: C - Code license: GPL-2.0 diff --git a/entries/hematite.md b/entries/hematite.md index b4612066..24e3d083 100644 --- a/entries/hematite.md +++ b/entries/hematite.md @@ -3,7 +3,7 @@ - Home: http://hematite.piston.rs/ - Inspirations: Minecraft - State: beta -- Keywords: simulation, remake, sandbox, voxel +- Keywords: remake, simulation, sandbox, voxel - Code repository: https://github.com/PistonDevelopers/hematite.git - Code language: Rust - Code license: MIT diff --git a/entries/heroes_of_civilizations.md b/entries/heroes_of_civilizations.md index c1c95aba..94d61ba6 100644 --- a/entries/heroes_of_civilizations.md +++ b/entries/heroes_of_civilizations.md @@ -3,7 +3,7 @@ - Home: https://github.com/francot514/CivHeroes - Inspirations: Yu-Gi-Oh! - State: beta -- Keywords: strategy, cards, clone +- Keywords: cards, strategy, clone - Code repository: https://github.com/francot514/CivHeroes.git - Code language: C++, C# - Code license: GPL-2.0 diff --git a/entries/hnefatafl.md b/entries/hnefatafl.md index 25cf33fd..b5d86463 100644 --- a/entries/hnefatafl.md +++ b/entries/hnefatafl.md @@ -2,7 +2,7 @@ - Home: https://web.archive.org/web/20180901233504/http://hnefatafl.se/ (Swedish), https://sourceforge.net/projects/hnefatafl/ - State: beta, inactive since 2014 -- Keywords: strategy, board, open content +- Keywords: board, strategy, open content - Code repository: https://gitlab.com/soderlund/hnefatafl.git - Code language: C - Code license: ISC diff --git a/entries/holtz.md b/entries/holtz.md index 37e05d60..eedff264 100644 --- a/entries/holtz.md +++ b/entries/holtz.md @@ -4,7 +4,7 @@ - State: mature - Download: https://sourceforge.net/projects/holtz/files/ - Platform: Windows, Linux -- Keywords: puzzle, board, online, open content +- Keywords: board, puzzle, online, open content - Code repository: https://git.code.sf.net/p/holtz/code, https://git.code.sf.net/p/holtz/website @add - Code language: C++ - Code license: GPL-2.0 diff --git a/entries/hopson-arcade.md b/entries/hopson-arcade.md index 0e403b04..1fd7bf0c 100644 --- a/entries/hopson-arcade.md +++ b/entries/hopson-arcade.md @@ -4,7 +4,7 @@ - Inspirations: Space Invaders - State: mature - Platform: Linux -- Keywords: arcade, open content, remake +- Keywords: arcade, remake, open content - Code repository: https://github.com/Hopson97/Hopson-Arcade.git - Code language: C++ - Code license: GPL-3.0 diff --git a/entries/hoverrace.md b/entries/hoverrace.md index 5b45facc..098cffa8 100644 --- a/entries/hoverrace.md +++ b/entries/hoverrace.md @@ -5,7 +5,7 @@ - State: mature, inactive since 2016 - Download: https://web.archive.org/web/20191221023553/http://www.hoverrace.com/?page=download - Platform: Windows -- Keywords: sports, 3D, racing, remake +- Keywords: remake, sports, 3D, racing - Code repository: https://github.com/HoverRace/HoverRace.git - Code language: C++ - Code license: Custom (NC https://github.com/HoverRace/HoverRace/blob/master/license.txt) diff --git a/entries/hypatia.md b/entries/hypatia.md index 4c5335cf..5d13c7b3 100644 --- a/entries/hypatia.md +++ b/entries/hypatia.md @@ -2,7 +2,7 @@ - Home: https://github.com/hypatia-software-org/hypatia-engine - State: beta, inactive since 2016 -- Keywords: adventure, 2D, game engine +- Keywords: adventure, game engine, 2D - Code repository: https://github.com/hypatia-software-org/hypatia-engine.git - Code language: Python - Code license: MIT diff --git a/entries/ika.md b/entries/ika.md index a17b945d..7f879f4d 100644 --- a/entries/ika.md +++ b/entries/ika.md @@ -3,7 +3,7 @@ - Home: https://github.com/andyfriesen/ika - State: beta, inactive since 2007 - Platform: Windows -- Keywords: role playing, game engine +- Keywords: game engine, role playing - Code repository: https://github.com/andyfriesen/ika.git - Code language: C++, Python, PHP, C# - Code license: GPL-2.0 diff --git a/entries/inexor.md b/entries/inexor.md index 8370d717..ede5da17 100644 --- a/entries/inexor.md +++ b/entries/inexor.md @@ -4,7 +4,7 @@ - Inspirations: Cube 2: Sauerbraten - State: beta, inactive since 2018 - Keywords: remake, first person, shooter -- Code repository: https://github.com/inexorgame/vulkan-renderer.git, https://github.com/inexorgame/inexor-core.git (@add, @archived) +- Code repository: https://github.com/inexorgame/vulkan-renderer.git, https://github.com/inexorgame/inexor-core.git @add (@archived) - Code language: C++, JavaScript - Code license: zlib - Code dependencies: Cube 2 diff --git a/entries/infon_battle_arena.md b/entries/infon_battle_arena.md index 299ec2fb..a8ca624a 100644 --- a/entries/infon_battle_arena.md +++ b/entries/infon_battle_arena.md @@ -3,7 +3,7 @@ - Home: http://infon.dividuum.de/, https://code.google.com/archive/p/infon/ - State: beta, inactive since 2012 - Platform: Windows, Linux -- Keywords: simulation, evolution, open content, programming, real time, strategy +- Keywords: simulation, strategy, evolution, open content, programming, real time - Code repository: https://github.com/dividuum/infon.git, https://bitbucket.org/dividuum/infon.git @add - Code language: C, Lua - Code license: GPL-2.0 diff --git a/entries/instead.md b/entries/instead.md index db966d02..adb70b99 100644 --- a/entries/instead.md +++ b/entries/instead.md @@ -4,7 +4,7 @@ - State: mature - Download: https://instead3.syscall.ru/en/#download, https://github.com/instead-hub/instead/releases, https://sourceforge.net/projects/instead/files/ - Platform: Windows, Linux, macOS, Android -- Keywords: adventure, game engine, text-based, visual novel +- Keywords: adventure, game engine, visual novel, text-based - Code repository: https://github.com/instead-hub/instead.git, https://svn.code.sf.net/p/instead/code (svn old) - Code language: C, Lua - Code license: MIT diff --git a/entries/iris2.md b/entries/iris2.md index 17ccf865..364773f5 100644 --- a/entries/iris2.md +++ b/entries/iris2.md @@ -3,7 +3,7 @@ - Home: https://web.archive.org/web/20160809064454/https://iris2.de/index.php/Main_Page - Inspirations: Ultima Online - State: beta, inactive since 2017 -- Keywords: role playing, open content (?), remake, requires server +- Keywords: remake, role playing, open content (?), requires server - Code repository: https://github.com/kblaschke/Iris2.git - Code language: C, C++, Lua - Code license: GPL-3.0 diff --git a/entries/jagged_alliance_2_stracciatella.md b/entries/jagged_alliance_2_stracciatella.md index f8804d9a..7097905c 100644 --- a/entries/jagged_alliance_2_stracciatella.md +++ b/entries/jagged_alliance_2_stracciatella.md @@ -3,7 +3,7 @@ - Home: https://ja2-stracciatella.github.io/ - Inspirations: Jagged Alliance 2 - State: mature -- Keywords: strategy, remake, requires original content +- Keywords: remake, strategy, requires original content - Code repository: https://github.com/ja2-stracciatella/ja2-stracciatella.git - Code language: C, C++ - Code license: Custom (various) diff --git a/entries/jake2.md b/entries/jake2.md index f2b32493..20477d17 100644 --- a/entries/jake2.md +++ b/entries/jake2.md @@ -5,7 +5,7 @@ - State: beta, inactive since 2006 - Download: https://bytonic.de/html/download.html - Platform: Windows, Linux -- Keywords: action, 3D, game engine, remake, requires original content, shooter +- Keywords: action, game engine, remake, 3D, requires original content, shooter - Code repository: https://git.code.sf.net/p/jake2/git, http://jake2.cvs.sourceforge.net (cvs) - Code language: Java - Code license: GPL-2.0 diff --git a/entries/jazz_resurrection.md b/entries/jazz_resurrection.md index c28ebb6c..91a483d2 100644 --- a/entries/jazz_resurrection.md +++ b/entries/jazz_resurrection.md @@ -4,7 +4,7 @@ - Inspirations: Jazz Jackrabbit 2 - State: mature - Platform: Windows, Linux, macOS, Android, Web -- Keywords: platform, 2D, commercial content, multiplayer online, remake +- Keywords: platform, remake, 2D, commercial content, multiplayer online - Code repository: https://github.com/deathkiller/jazz2.git - Code language: C#, JavaScript - Code license: GPL-3.0 diff --git a/entries/jedioutcastlinux.md b/entries/jedioutcastlinux.md index bedfdd97..9a93d446 100644 --- a/entries/jedioutcastlinux.md +++ b/entries/jedioutcastlinux.md @@ -3,7 +3,7 @@ - Home: https://github.com/xLAva/JediOutcastLinux - Inspirations: Star Wars Jedi Knight II: Jedi Outcast - State: mature -- Keywords: game engine, commercial content, first-person, remake, requires original content, shooter +- Keywords: game engine, remake, commercial content, first-person, requires original content, shooter - Code repository: https://github.com/xLAva/JediOutcastLinux.git - Code language: C, C++ - Code license: GPL-2.0 diff --git a/entries/jfduke3d.md b/entries/jfduke3d.md index 9bd92d8c..92528201 100644 --- a/entries/jfduke3d.md +++ b/entries/jfduke3d.md @@ -3,7 +3,7 @@ - Home: http://www.jonof.id.au/jfduke3d/ - Inspirations: Duke Nukem 3D - State: beta, inactive since 2005 -- Keywords: game engine, commercial content, multiplayer LAN, remake, shooter +- Keywords: game engine, remake, commercial content, multiplayer LAN, shooter - Code repository: https://github.com/jonof/jfduke3d.git - Code language: C - Code license: GPL-2.0 diff --git a/entries/jsettlers.md b/entries/jsettlers.md index ee10d2cb..1f4f399f 100644 --- a/entries/jsettlers.md +++ b/entries/jsettlers.md @@ -4,7 +4,7 @@ - Inspirations: The Settlers III - State: mature - Download: https://sourceforge.net/projects/jsettlers/files/, https://sourceforge.net/projects/jsettlers2/files/ -- Keywords: strategy, board, commercial content, remake, requires original content (?) +- Keywords: board, remake, strategy, commercial content, requires original content (?) - Code repository: https://github.com/jdmonin/JSettlers2.git, http://jsettlers.cvs.sourceforge.net (cvs), http://jsettlers2.cvs.sourceforge.net (cvs) - Code language: Java - Code license: GPL-3.0 diff --git a/entries/jsfo.md b/entries/jsfo.md index 03285bbf..78cd45e7 100644 --- a/entries/jsfo.md +++ b/entries/jsfo.md @@ -4,7 +4,7 @@ - Inspirations: Fallout 2 - State: beta, inactive since 2017 - Play: http://ajxs.github.io/jsFO/ (demo) -- Keywords: role playing, commercial content, remake, requires original content +- Keywords: remake, role playing, commercial content, requires original content - Code repository: https://github.com/ajxs/jsFO.git - Code language: JavaScript, Python - Code license: Apache-2.0 diff --git a/entries/jskat.md b/entries/jskat.md index 0ef13387..046b83ed 100644 --- a/entries/jskat.md +++ b/entries/jskat.md @@ -4,7 +4,7 @@ - State: beta - Download: https://github.com/b0n541/jskat-multimodule/releases, https://sourceforge.net/projects/jskat/files/ - Platform: Windows, Linux -- Keywords: role playing, cards, open content +- Keywords: cards, role playing, open content - Code repository: https://github.com/b0n541/jskat-multimodule.git - Code language: Java - Code license: GPL-3.0 (GUI), Apache-2.0 (base) diff --git a/entries/julius.md b/entries/julius.md index 23c7e653..800e7d1e 100644 --- a/entries/julius.md +++ b/entries/julius.md @@ -3,7 +3,7 @@ - Home: https://github.com/bvschaik/julius - Inspirations: Caesar 3 - State: mature -- Keywords: simulation, remake +- Keywords: remake, simulation - Code repository: https://github.com/bvschaik/julius.git - Code language: C, C++ - Code license: AGPL-3.0 diff --git a/entries/jumpnbump.md b/entries/jumpnbump.md index 1fa38615..c9473c67 100644 --- a/entries/jumpnbump.md +++ b/entries/jumpnbump.md @@ -5,7 +5,7 @@ - State: mature, inactive since 2004 - Platform: Windows - Keywords: remake -- Code repository: (cvs mentioned on home) +- Code repository: ? (cvs mentioned on home) - Code language: C - Code license: GPL-2.0 - Code dependencies: SDL diff --git a/entries/kam_remake.md b/entries/kam_remake.md index 90824a75..8262cacc 100644 --- a/entries/kam_remake.md +++ b/entries/kam_remake.md @@ -4,7 +4,7 @@ - Inspirations: Knights and Merchants - State: mature - Download: https://www.kamremake.com/download/ -- Keywords: strategy, real time, remake, requires original content +- Keywords: remake, strategy, real time, requires original content - Code repository: https://github.com/Kromster80/kam_remake.git - Code language: Pascal - Code license: AGPL-3.0 diff --git a/entries/keen_dreams.md b/entries/keen_dreams.md index ae3e1350..d6bec75e 100644 --- a/entries/keen_dreams.md +++ b/entries/keen_dreams.md @@ -3,7 +3,7 @@ - Home: https://github.com/keendreams/keen - Inspirations: Commander Keen Series - State: mature, inactive since 2014 -- Keywords: platform, commercial content, remake, requires original content +- Keywords: platform, remake, commercial content, requires original content - Code repository: https://github.com/keendreams/keen.git - Code language: C, Assembly, C++ - Code license: GPL-2.0 diff --git a/entries/keeperrl.md b/entries/keeperrl.md index e9b81472..aedfc50c 100644 --- a/entries/keeperrl.md +++ b/entries/keeperrl.md @@ -4,7 +4,7 @@ - Inspirations: Dungeon Keeper 2 - State: beta - Platform: Windows -- Keywords: simulation, game engine, requires original content +- Keywords: game engine, simulation, requires original content - Code repository: https://github.com/miki151/keeperrl.git - Code language: C, C++ - Code license: GPL-2.0 diff --git a/entries/kittenmaxit.md b/entries/kittenmaxit.md index 342a2fd9..7d1a50ef 100644 --- a/entries/kittenmaxit.md +++ b/entries/kittenmaxit.md @@ -5,7 +5,7 @@ - Inspirations: Maxit - State: beta - Platform: Android -- Keywords: strategy, remake +- Keywords: remake, strategy - Code repository: https://github.com/ahmetkasif/kmaxit.git - Code language: Java - Code license: MIT diff --git a/entries/kknd.md b/entries/kknd.md index e88dfdc1..210d6be7 100644 --- a/entries/kknd.md +++ b/entries/kknd.md @@ -1,7 +1,7 @@ # KKnD - Home: https://www.kknd-game.com/, https://web.archive.org/web/20190106081136/https://www.kknd-game.com/ -- Media: +- Media: https://en.wikipedia.org/wiki/KKnD_(video_game)#Open_source_remake - Inspirations: Krush Kill 'n' Destroy - State: beta - Platform: Windows, Linux, macOS diff --git a/entries/knights.md b/entries/knights.md index 6d891cf5..66dec8e9 100644 --- a/entries/knights.md +++ b/entries/knights.md @@ -5,7 +5,7 @@ - State: beta, inactive since 2014 - Download: http://www.knightsgame.org.uk/download.html - Platform: Windows -- Keywords: role playing, dungeon, multiplayer, remake +- Keywords: remake, role playing, dungeon, multiplayer - Code repository: @see-download - Code language: C++ - Code license: GPL-3.0 diff --git a/entries/kobo_deluxe.md b/entries/kobo_deluxe.md index 2d4f0608..2131f661 100644 --- a/entries/kobo_deluxe.md +++ b/entries/kobo_deluxe.md @@ -7,7 +7,7 @@ - Keywords: action, open content - Code repository: @see-home - Code language: C++ -- Code license: GPL-2.0, LGPL +- Code license: GPL-2.0 (LGPL?) - Code dependencies: SDL - Assets license: ? (GPL-2.0) - Developer: David Olofson, Akira Higuchi, Erik Auerswald, Jeremy Sheeley, Simon Peter, Florian Schulze, Masanao Izumo diff --git a/entries/korax_heritage.md b/entries/korax_heritage.md index b7546134..d7fe4e61 100644 --- a/entries/korax_heritage.md +++ b/entries/korax_heritage.md @@ -3,7 +3,7 @@ - Home: https://www.koraxheritage.com/, https://sourceforge.net/projects/korax/ - State: mature - Download: https://www.koraxheritage.com/downloads/, https://sourceforge.net/projects/korax/files/ -- Keywords: role playing, 3D, first-person, game engine, shooter +- Keywords: game engine, role playing, 3D, first-person, shooter - Code repository: https://git.code.sf.net/p/korax/code-git, https://git.code.sf.net/p/korax/krpg-txt @add, https://git.code.sf.net/p/korax/korax-git @add, https://git.code.sf.net/u/userid-1153503/korax @add, https://svn.code.sf.net/p/korax/code (svn), https://svn.code.sf.net/p/korax/krpg-bin/ (svn) - Code language: None - Code license: ? diff --git a/entries/labbaye_des_morts.md b/entries/labbaye_des_morts.md index 0653f842..b7f9196d 100644 --- a/entries/labbaye_des_morts.md +++ b/entries/labbaye_des_morts.md @@ -3,7 +3,7 @@ - Home: https://www.locomalito.com/abbaye_des_morts.php - State: mature, inactive since 2018 - Platform: Windows, Linux -- Keywords: adventure, open content, platform, side-scrolling +- Keywords: adventure, platform, open content, side-scrolling - Code repository: https://github.com/nevat/abbayedesmorts-gpl.git - Code language: C - Code license: GPL-3.0 diff --git a/entries/ladder.md b/entries/ladder.md index 9be0af20..d34c56ce 100644 --- a/entries/ladder.md +++ b/entries/ladder.md @@ -5,9 +5,8 @@ - State: mature, inactive since 2005 - Download: https://ostermiller.org/ladder/download.html - Keywords: arcade, remake, text-based -- Code repository: (see download inside JAR file) +- Code repository: @see-download (inside JAR file) - Code language: Java - Code license: GPL-2.0 - ## Building diff --git a/entries/lgeneral.md b/entries/lgeneral.md index 6aceffcf..bfee6ea2 100644 --- a/entries/lgeneral.md +++ b/entries/lgeneral.md @@ -6,7 +6,7 @@ - State: mature, inactive since 2017 - Download: @see-home - Platform: Android -- Keywords: strategy, remake, turn-based +- Keywords: remake, strategy, turn-based - Code repository: https://github.com/AndO3131/lgeneral.git (mirror), https://svn.code.sf.net/p/lgeneral/code (svn), http://lgeneral.cvs.sourceforge.net (cvs) - Code language: C - Code license: GPL-2.0 diff --git a/entries/lionheart_remake.md b/entries/lionheart_remake.md index f77c4712..2f6fdb08 100644 --- a/entries/lionheart_remake.md +++ b/entries/lionheart_remake.md @@ -3,7 +3,7 @@ - Home: https://www.b3dgs.com/v7/page.php?lang=en§ion=lionheart_remake - Inspirations: Lionheart - State: beta, inactive since 2018 -- Keywords: platform, 2D, remake, scrolling +- Keywords: platform, remake, 2D, scrolling - Code repository: https://github.com/b3dgs/lionheart-remake.git - Code language: Java - Code license: GPL-3.0 diff --git a/entries/lips_of_suna.md b/entries/lips_of_suna.md index eee2ceab..dc7f389d 100644 --- a/entries/lips_of_suna.md +++ b/entries/lips_of_suna.md @@ -1,6 +1,6 @@ # Lips of Suna -- Home: , https://sourceforge.net/projects/lipsofsuna/ +- Home: https://web.archive.org/web/20160904014454/http://lipsofsuna.org:80/, https://sourceforge.net/projects/lipsofsuna/ - State: beta, inactive since 2014 - Keywords: role playing - Code repository: https://git.code.sf.net/p/lipsofsuna/code, https://gitlab.com/osgames/lipsofsuna.git @add diff --git a/entries/lords_of_the_fey.md b/entries/lords_of_the_fey.md index c8361e4e..406d6191 100644 --- a/entries/lords_of_the_fey.md +++ b/entries/lords_of_the_fey.md @@ -4,7 +4,7 @@ - Inspirations: The Battle for Wesnoth - State: beta, inactive since 2018 - Platform: Web -- Keywords: strategy, multiplayer, open content, remake, turn-based +- Keywords: remake, strategy, multiplayer, open content, turn-based - Code repository: https://github.com/apsillers/lords-of-the-fey.git - Code language: JavaScript - Code license: AGPL-3.0 diff --git a/entries/lordsawar.md b/entries/lordsawar.md index 13518e6a..1937e569 100644 --- a/entries/lordsawar.md +++ b/entries/lordsawar.md @@ -1,7 +1,7 @@ # LordsAWar! - Home: http://www.nongnu.org/lordsawar/ -- Media: +- Media: https://en.wikipedia.org/wiki/Warlords_(game_series)#LordsAWar! - Inspirations: Warlords II - State: mature - Download: @see-home diff --git a/entries/lttp-phaser.md b/entries/lttp-phaser.md index 63afb371..1f6e5bf2 100644 --- a/entries/lttp-phaser.md +++ b/entries/lttp-phaser.md @@ -3,7 +3,7 @@ - Home: https://github.com/englercj/lttp - Inspirations: Legend of Zelda - A Link to the Past - State: beta, inactive since 2016 -- Keywords: role playing, commercial content, remake, requires original content +- Keywords: remake, role playing, commercial content, requires original content - Code repository: https://github.com/englercj/lttp.git - Code language: TypeScript, JavaScript - Code license: MIT diff --git a/entries/lua.md b/entries/lua.md index e8f5578d..f6cc1d16 100644 --- a/entries/lua.md +++ b/entries/lua.md @@ -1,7 +1,7 @@ # Lua - Home: http://www.lua.org/ -- Media: +- Media: https://en.wikipedia.org/wiki/Lua_(programming_language) - State: mature - Download: http://www.lua.org/download.html - Keywords: library diff --git a/entries/maelstrom.md b/entries/maelstrom.md index a713aae1..2e2951e9 100644 --- a/entries/maelstrom.md +++ b/entries/maelstrom.md @@ -1,7 +1,7 @@ # Maelstrom - Home: https://www.libsdl.org/projects/Maelstrom/ -- Media: +- Media: https://en.wikipedia.org/wiki/Maelstrom_(1992_video_game) - Inspirations: Asteroids - State: mature, inactive since 2002 - Download: https://www.libsdl.org/projects/Maelstrom/binary.html diff --git a/entries/magarena.md b/entries/magarena.md index 74f47789..c0be5040 100644 --- a/entries/magarena.md +++ b/entries/magarena.md @@ -4,7 +4,7 @@ - Inspirations: Magic: The Gathering Online - State: mature - Download: https://github.com/magarena/magarena/releases/ -- Keywords: role playing, cards, clone +- Keywords: cards, role playing, clone - Code repository: https://github.com/magarena/magarena.git - Code language: Java, Groovy - Code license: GPL-3.0 diff --git a/entries/magic_gardeners_tournament.md b/entries/magic_gardeners_tournament.md index 7d0739c8..c4fb3dcf 100644 --- a/entries/magic_gardeners_tournament.md +++ b/entries/magic_gardeners_tournament.md @@ -2,7 +2,7 @@ - Home: https://pyweek.org/e/TLP-2/ - State: beta, inactive since 2007 -- Keywords: strategy, board, open content, real time +- Keywords: board, strategy, open content, real time - Code repository: https://gitlab.com/osgames/magic-gardeners-tournament.git (import of sources) - Code language: Python - Code license: GPL-2.0 diff --git a/entries/maniadrive.md b/entries/maniadrive.md index 4c9c6bd7..f624a435 100644 --- a/entries/maniadrive.md +++ b/entries/maniadrive.md @@ -5,10 +5,10 @@ - State: mature, inactive since 2008 - Download: http://maniadrive.raydium.org/index.php?downloads=yes, https://sourceforge.net/projects/maniadrive/files/ - Platform: Windows, Linux -- Keywords: framework, open content, racing, remake +- Keywords: framework, remake, open content, racing - Code repository: svn://raydium.org/raydium/trunk (svn) - Code language: PHP -- Code license: GPL +- Code license: ? (GPL version?) - Code dependencies: Raydium - Assets license: GPL (Music), CC BY-NC-SA, CC BY-SA - Developer: xfennec diff --git a/entries/manic_digger.md b/entries/manic_digger.md index 38dfa6bb..ab116f33 100644 --- a/entries/manic_digger.md +++ b/entries/manic_digger.md @@ -5,7 +5,7 @@ - State: mature, inactive since 2017 - Download: https://github.com/manicdigger/manicdigger/releases - Platform: Windows -- Keywords: simulation, remake, sandbox, voxel +- Keywords: remake, simulation, sandbox, voxel - Code repository: https://github.com/manicdigger/manicdigger.git, https://git.code.sf.net/p/manicdigger/code - Code language: C# - Code license: Public domain, Unlicense (where Public domain fails) diff --git a/entries/maxit.md b/entries/maxit.md index dc1556e6..6d1ecc02 100644 --- a/entries/maxit.md +++ b/entries/maxit.md @@ -5,7 +5,7 @@ - State: mature, inactive since 2014 - Download: https://sourceforge.net/projects/maxit/files/ - Platform: Windows, Linux, macOS -- Keywords: strategy, remake +- Keywords: remake, strategy - Code repository: https://github.com/textbrowser/maxit.git - Code language: C++ - Code license: 3-clause BSD (https://github.com/textbrowser/maxit/blob/master/LICENSE) diff --git a/entries/mechanized_assault_exploration_reloaded.md b/entries/mechanized_assault_exploration_reloaded.md index fd26d6b1..eba6e49d 100644 --- a/entries/mechanized_assault_exploration_reloaded.md +++ b/entries/mechanized_assault_exploration_reloaded.md @@ -4,7 +4,7 @@ - Inspirations: M.A.X. - State: beta - Download: https://www.maxr.org/docs.php?id=3 -- Keywords: strategy, remake, requires original content (some versions) +- Keywords: remake, strategy, requires original content (some versions) - Code repository: https://git.maxr.org/maxr/maxr.git - Code language: C++, C - Code license: GPL-2.0 diff --git a/entries/megaglest.md b/entries/megaglest.md index 5616c5d5..419fab79 100644 --- a/entries/megaglest.md +++ b/entries/megaglest.md @@ -5,7 +5,7 @@ - Inspirations: Glest - State: mature - Download: https://megaglest.org/download -- Keywords: strategy, real time, remake +- Keywords: remake, strategy, real time - Code repository: https://github.com/MegaGlest/megaglest-source.git - Code language: C, C++ - Code license: GPL-3.0 diff --git a/entries/mewl.md b/entries/mewl.md index c9ea934f..1d26cefa 100644 --- a/entries/mewl.md +++ b/entries/mewl.md @@ -3,7 +3,7 @@ - Home: https://github.com/LionsPhil/mewl - Inspirations: M.U.L.E. - State: beta (more like alpha), inactive since 2015 -- Keywords: strategy, remake +- Keywords: remake, strategy - Code repository: https://github.com/LionsPhil/mewl.git - Code language: C++ - Code license: GPL-2.0 diff --git a/entries/micropolis.md b/entries/micropolis.md index 2873abae..90452f65 100644 --- a/entries/micropolis.md +++ b/entries/micropolis.md @@ -1,7 +1,7 @@ # Micropolis - Home: https://micropolisonline.com/ -- Media: +- Media: https://en.wikipedia.org/wiki/SimCity_(1989_video_game)#Micropolis - Inspirations: SimCity - State: mature, inactive since 2015 - Keywords: simulation, clone, online diff --git a/entries/microracers.md b/entries/microracers.md index 8b3429d6..467e825d 100644 --- a/entries/microracers.md +++ b/entries/microracers.md @@ -5,7 +5,7 @@ - State: beta, inactive since 2005 - Download: https://sourceforge.net/projects/microracers/files/microracers/ - Keywords: remake, 2D, racing -- Code repository: https://github.com/rpmcruz/microracers.git, https://gitlab.com/osgames/microracers.git (@add, conversion of cvs), http://microracers.cvs.sourceforge.net (cvs) +- Code repository: https://github.com/rpmcruz/microracers.git, https://gitlab.com/osgames/microracers.git @add (conversion of cvs), http://microracers.cvs.sourceforge.net (cvs) - Code language: C, C++ - Code license: GPL-2.0 - Developer: Ricardo Cruz diff --git a/entries/minesweeper_in_c.md b/entries/minesweeper_in_c.md index 1c1c7ba9..ece83abe 100644 --- a/entries/minesweeper_in_c.md +++ b/entries/minesweeper_in_c.md @@ -3,7 +3,7 @@ - Home: https://github.com/brenns10/minesweeper - Inspirations: Minesweeper - State: beta, inactive since 2015 -- Keywords: puzzle, open content, remake, text +- Keywords: puzzle, remake, open content, text - Code repository: https://github.com/brenns10/minesweeper.git - Code language: C - Code license: 3-clause BSD diff --git a/entries/minesweeperzone.md b/entries/minesweeperzone.md index d0bb8eb3..f62cba19 100644 --- a/entries/minesweeperzone.md +++ b/entries/minesweeperzone.md @@ -4,7 +4,7 @@ - Inspirations: Minesweeper - State: mature - Play: https://minesweeper.zone/ -- Keywords: puzzle, open content, remake +- Keywords: puzzle, remake, open content - Code repository: https://github.com/reed-jones/minesweeper_js.git - Code language: JavaScript, PHP - Code license: MIT diff --git a/entries/minetest.md b/entries/minetest.md index 933cf4a4..56ac61f7 100644 --- a/entries/minetest.md +++ b/entries/minetest.md @@ -5,7 +5,7 @@ - State: mature - Download: https://www.minetest.net/downloads/ - Platform: Windows, Linux, macOS, Android -- Keywords: framework, open content, remake, voxel +- Keywords: framework, remake, open content, voxel - Code repository: https://github.com/minetest/minetest.git - Code language: C, C++, Lua - Code license: LGPL-2.1 diff --git a/entries/minilens.md b/entries/minilens.md index e4732160..074ccdbe 100644 --- a/entries/minilens.md +++ b/entries/minilens.md @@ -5,7 +5,7 @@ - Play: https://kobuge-games.github.io/minilens/ml/ - Download: https://github.com/KOBUGE-Games/minilens/releases - Platform: Windows, Linux, macOS, Android, Web -- Keywords: platform, open content, puzzle +- Keywords: platform, puzzle, open content - Code repository: https://github.com/KOBUGE-Games/minilens.git - Code language: GDScript - Code license: GPL-3.0 diff --git a/entries/mininim.md b/entries/mininim.md index c1e1b395..bc64487c 100644 --- a/entries/mininim.md +++ b/entries/mininim.md @@ -5,7 +5,7 @@ - State: beta, inactive since 2017 - Download: @see-home - Platform: Windows, Linux -- Keywords: action, open content, remake +- Keywords: action, remake, open content - Code repository: https://github.com/oitofelix/mininim.git - Code language: C - Code license: GPL-3.0 diff --git a/entries/mkjs.md b/entries/mkjs.md index 3e27f60a..b7adc7b2 100644 --- a/entries/mkjs.md +++ b/entries/mkjs.md @@ -4,7 +4,7 @@ - Inspirations: Mortal Kombat - State: beta - Platform: Web -- Keywords: action, multiplayer, remake +- Keywords: action, remake, multiplayer - Code repository: https://github.com/mgechev/mk.js.git - Code language: JavaScript - Code license: MIT diff --git a/entries/mmpong.md b/entries/mmpong.md index 344a8a86..0b2e76fc 100644 --- a/entries/mmpong.md +++ b/entries/mmpong.md @@ -3,7 +3,7 @@ - Home: https://web.archive.org/web/20100528120001/http://mmpong.net/trac, https://packages.debian.org/source/jessie/mmpong - State: beta, inactive since 2009 - Keywords: arcade, multiplayer, online -- Code repository: (see debian) +- Code repository: @see-debian - Code language: C - Code license: GPL-3.0 - Developer: Kai Hertel, Jan Friederich diff --git a/entries/moagg2.md b/entries/moagg2.md index 5c1e6077..a9a23714 100644 --- a/entries/moagg2.md +++ b/entries/moagg2.md @@ -1,7 +1,7 @@ # Moagg2 - Home: http://moagg.sourceforge.net/, https://sourceforge.net/projects/moagg/ -- Inspirations: Space Taxi, Gravity Force +- Inspirations: Gravity Force, Space Taxi - State: mature, inactive since 2008 - Download: http://moagg.sourceforge.net/download.html, https://sourceforge.net/projects/moagg/files/ - Platform: Windows, Linux diff --git a/entries/moria.md b/entries/moria.md index 6ae5ee61..6d88463c 100644 --- a/entries/moria.md +++ b/entries/moria.md @@ -1,7 +1,7 @@ # Moria - Home: https://umoria.org/, http://beej.us/moria/ -- Media: +- Media: https://en.wikipedia.org/wiki/Moria_(video_game) - State: mature (inactive between 2008-2016) - Download: https://umoria.org/download/, http://beej.us/moria/files/ - Keywords: role playing, roguelike diff --git a/entries/morpheus_web_remake.md b/entries/morpheus_web_remake.md index 48434f59..75c5f135 100644 --- a/entries/morpheus_web_remake.md +++ b/entries/morpheus_web_remake.md @@ -1,11 +1,11 @@ # Morpheus Web Remake - Home: https://soapbubble.itch.io/morpheus -- Media: +- Media: https://en.wikipedia.org/wiki/Morpheus_(1998_video_game) - Inspirations: Morpheus - State: beta - Platform: Windows, Linux, Android -- Keywords: adventure, commercial content, first-person, remake, requires original content +- Keywords: adventure, remake, commercial content, first-person, requires original content - Code repository: https://github.com/soap-bubble/web.git - Code language: JavaScript - Code license: MIT diff --git a/entries/mr_rescue.md b/entries/mr_rescue.md index 1f5f4bbf..6588278e 100644 --- a/entries/mr_rescue.md +++ b/entries/mr_rescue.md @@ -4,7 +4,7 @@ - State: mature, inactive since 2016 - Download: https://github.com/SimonLarsen/mrrescue/releases (also home) - Platform: Windows, Linux, macOS -- Keywords: arcade, open content, platform +- Keywords: arcade, platform, open content - Code repository: https://github.com/SimonLarsen/mrrescue.git - Code language: Lua - Code license: zlib diff --git a/entries/mrboom.md b/entries/mrboom.md index 4aad2cff..e5216aaf 100644 --- a/entries/mrboom.md +++ b/entries/mrboom.md @@ -3,7 +3,7 @@ - Home: http://mrboom.mumblecore.org - Inspirations: Bomberman - State: mature -- Keywords: action, clone, multiplayer online, remake +- Keywords: action, remake, clone, multiplayer online - Code repository: https://github.com/Javanaise/mrboom-libretro.git - Code language: C++ - Code license: MIT diff --git a/entries/netmaumau.md b/entries/netmaumau.md index b774dc47..7d736f8f 100644 --- a/entries/netmaumau.md +++ b/entries/netmaumau.md @@ -4,7 +4,7 @@ - State: mature, inactive since 2015 - Download: https://github.com/velnias75/NetMauMau/releases, https://sourceforge.net/projects/netmaumau/files/ - Platform: Windows, Linux -- Keywords: role playing, cards, online, open content +- Keywords: cards, role playing, online, open content - Code repository: https://github.com/velnias75/NetMauMau.git - Code language: C++ - Code license: LGPL-3.0 diff --git a/entries/netstatsbaseball.md b/entries/netstatsbaseball.md index 88a22a19..c8ab0649 100644 --- a/entries/netstatsbaseball.md +++ b/entries/netstatsbaseball.md @@ -3,7 +3,7 @@ - Home: https://sourceforge.net/projects/nsbb/ - State: mature - Download: https://sourceforge.net/projects/nsbb/files/ -- Keywords: sports, non-free content, simulation +- Keywords: simulation, sports, non-free content - Code repository: http://nsbb.cvs.sourceforge.net (cvs, outdated, see download) - Code language: C - Code license: Public domain diff --git a/entries/neverball.md b/entries/neverball.md index 19277d4e..0117d934 100644 --- a/entries/neverball.md +++ b/entries/neverball.md @@ -1,7 +1,7 @@ # Neverball - Home: https://neverball.org/, https://web.archive.org/web/20090105213528/http://icculus.org/neverball/ -- Media: +- Media: https://en.wikipedia.org/wiki/Super_Monkey_Ball_(video_game)#Legacy - Inspirations: Super Monkey Ball - State: mature - Download: https://neverball.org/download.php diff --git a/entries/nikwi.md b/entries/nikwi.md index a3cd3ff3..7c53008a 100644 --- a/entries/nikwi.md +++ b/entries/nikwi.md @@ -4,7 +4,7 @@ - State: beta, inactive since 2012 - Platform: Windows, Linux - Keywords: platform, open content -- Code repository: (see debian) +- Code repository: @see-debian - Code language: C++ - Code license: GPL-2.0 - Assets license: GPL diff --git a/entries/nlarn.md b/entries/nlarn.md index 44fe2e22..98849150 100644 --- a/entries/nlarn.md +++ b/entries/nlarn.md @@ -1,11 +1,11 @@ # NLarn - Home: https://nlarn.github.io/, https://sourceforge.net/projects/nlarn/ -- Media: +- Media: https://en.wikipedia.org/wiki/Larn_(video_game)#External_links - Inspirations: Larn - State: mature - Download: https://github.com/nlarn/nlarn/releases, https://sourceforge.net/projects/nlarn/files/nlarn/ -- Keywords: role playing, remake, roguelike +- Keywords: remake, role playing, roguelike - Code repository: https://github.com/nlarn/nlarn.git - Code language: C, Lua - Code license: GPL-3.0 diff --git a/entries/nstars.md b/entries/nstars.md index 57ad2cf7..87e82d1a 100644 --- a/entries/nstars.md +++ b/entries/nstars.md @@ -5,7 +5,7 @@ - State: beta, inactive since 2004 - Download: https://sourceforge.net/projects/nstars/files/ - Platform: Windows -- Keywords: strategy, remake +- Keywords: remake, strategy - Code repository: http://nstars.cvs.sourceforge.net (cvs) - Code language: C# - Code license: ? diff --git a/entries/numpty_physics.md b/entries/numpty_physics.md index 6c0bddd3..be81fc4e 100644 --- a/entries/numpty_physics.md +++ b/entries/numpty_physics.md @@ -3,7 +3,7 @@ - Home: http://numptyphysics.garage.maemo.org/ - State: beta, inactive since 2016 - Platform: Windows, Linux, macOS -- Keywords: puzzle, open content, physics, simulation +- Keywords: puzzle, simulation, open content, physics - Code repository: https://github.com/thp/numptyphysics.git, https://github.com/svn2github/numptyphysics.git @add - Code language: C++ - Code license: GPL-3.0 diff --git a/entries/nxengine-evo.md b/entries/nxengine-evo.md index 4a34cc40..4d32790f 100644 --- a/entries/nxengine-evo.md +++ b/entries/nxengine-evo.md @@ -3,7 +3,7 @@ - Home: https://github.com/nxengine/nxengine-evo - Inspirations: Cave Story - State: mature -- Keywords: platform, free content, remake +- Keywords: platform, remake, free content - Code repository: https://github.com/nxengine/nxengine-evo.git - Code language: C++ - Code license: GPL-3.0 diff --git a/entries/nxengine.md b/entries/nxengine.md index a7edacd8..82868e2e 100644 --- a/entries/nxengine.md +++ b/entries/nxengine.md @@ -5,7 +5,7 @@ - Inspirations: Cave Story - State: mature - Download: https://github.com/EXL/NXEngine/releases -- Keywords: platform, free content, remake +- Keywords: platform, remake, free content - Code repository: https://github.com/EXL/NXEngine.git - Code language: C, C++ - Code license: GPL-3.0 diff --git a/entries/octaforge.md b/entries/octaforge.md index 12309e28..120b542b 100644 --- a/entries/octaforge.md +++ b/entries/octaforge.md @@ -2,7 +2,6 @@ - Home: https://octaforge.org/ - State: mature -- Download: (not available anymore?) - Keywords: framework - Code repository: https://git.octaforge.org/OctaForge/OctaCore.git, https://github.com/OctaForge/OF-Engine.git (mirror, archived) - Code language: C++ diff --git a/entries/ogs_mahjong.md b/entries/ogs_mahjong.md index 31740839..398eb1ef 100644 --- a/entries/ogs_mahjong.md +++ b/entries/ogs_mahjong.md @@ -4,7 +4,7 @@ - State: mature, inactive since 2016 - Download: https://sourceforge.net/projects/osrpgcreation/files/Mahjong/ - Platform: Windows, Linux -- Keywords: puzzle, 3D, board +- Keywords: board, puzzle, 3D - Code repository: http://hg.code.sf.net/p/osrpgcreation/code (hg) - Code language: C++ - Code license: GPL-3.0 diff --git a/entries/ohrrpgce.md b/entries/ohrrpgce.md index 305fedf0..055c8aa0 100644 --- a/entries/ohrrpgce.md +++ b/entries/ohrrpgce.md @@ -5,7 +5,7 @@ - State: mature - Download: http://rpg.hamsterrepublic.com/ohrrpgce/Downloads - Keywords: framework -- Code repository: https://bitbucket.org/rbv/ohrrpgce-svn.git (@mirror), https://github.com/ohrrpgce/ohrrpgce.git (@add, @mirror), https://rpg.hamsterrepublic.com/source/wip (@add, svn) +- Code repository: https://bitbucket.org/rbv/ohrrpgce-svn.git (@mirror), https://github.com/ohrrpgce/ohrrpgce.git @add (@mirror), https://rpg.hamsterrepublic.com/source/wip @add (svn) - Code language: Basic - Code license: GPL-2.0 diff --git a/entries/oldskool_gravity_game.md b/entries/oldskool_gravity_game.md index 55e16f5a..137c6960 100644 --- a/entries/oldskool_gravity_game.md +++ b/entries/oldskool_gravity_game.md @@ -5,7 +5,7 @@ - Download: https://sourceforge.net/projects/osgg/files/ - Platform: Windows, Linux - Keywords: arcade, open content, side-scrolling -- Code repository: https://github.com/DusteDdk/osgg.git, https://gitlab.com/osgames/osgg.git (@add, conversion of svn), https://svn.code.sf.net/p/osgg/code (svn) +- Code repository: https://github.com/DusteDdk/osgg.git, https://gitlab.com/osgames/osgg.git @add (conversion of svn), https://svn.code.sf.net/p/osgg/code (svn) - Code language: C++ - Code license: GPL-3.0 - Code dependencies: OpenGL, SDL diff --git a/entries/one_way_to_go.md b/entries/one_way_to_go.md index 197c7304..245f2348 100644 --- a/entries/one_way_to_go.md +++ b/entries/one_way_to_go.md @@ -4,7 +4,7 @@ - Inspirations: Sensitive - State: mature, inactive since 2011 - Keywords: puzzle, remake -- Code repository: (see download at home) +- Code repository: @see-home - Code language: Lua - Code license: GPL-3.0 - Code dependencies: LÖVE diff --git a/entries/oolite.md b/entries/oolite.md index 68e7ad48..c8c4a5a1 100644 --- a/entries/oolite.md +++ b/entries/oolite.md @@ -1,7 +1,7 @@ # Oolite - Home: http://www.oolite.org/, http://wiki.alioth.net/index.php/Oolite_Main_Page, http://aegidian.org/bb/index.php -- Media: +- Media: https://en.wikipedia.org/wiki/Oolite_(video_game) - Inspirations: Elite - State: mature - Download: http://oolite.org/download/ diff --git a/entries/open_apocalypse.md b/entries/open_apocalypse.md index 42c6bee7..e3c7d2af 100644 --- a/entries/open_apocalypse.md +++ b/entries/open_apocalypse.md @@ -1,10 +1,10 @@ # Open Apocalypse - Home: http://openapoc.org/ -- Inspirations: X-COM: UFO Defense, X-COM: Terror from the Deep, X-COM: Apocalypse, UFO: Enemy Unknown +- Inspirations: UFO: Enemy Unknown, X-COM: Apocalypse, X-COM: Terror from the Deep, X-COM: UFO Defense - State: beta - Download: https://ci.appveyor.com/project/openapoc/openapoc -- Keywords: strategy, commercial content, remake, requires original content (X-Com Apocalypse) +- Keywords: remake, strategy, commercial content, requires original content (X-Com Apocalypse) - Code repository: https://github.com/OpenApoc/OpenApoc.git - Code language: C++ - Code license: MIT diff --git a/entries/open_game_engine.md b/entries/open_game_engine.md index 6142234c..e33921f2 100644 --- a/entries/open_game_engine.md +++ b/entries/open_game_engine.md @@ -4,7 +4,7 @@ - State: beta, inactive since 2008 - Download: https://sourceforge.net/projects/oge/files/ - Platform: Windows -- Keywords: game engine, framework, game editor +- Keywords: framework, game engine, game editor - Code repository: https://gitlab.com/osgames/oge.git (combination of cvs+svn+git), https://git.code.sf.net/p/oge/git @add, https://svn.code.sf.net/p/oge/svn (svn), http://oge.cvs.sourceforge.net (cvs) - Code language: C++ - Code license: LGPL-2.1 diff --git a/entries/open_horizon.md b/entries/open_horizon.md index 7a331d61..70de32d3 100644 --- a/entries/open_horizon.md +++ b/entries/open_horizon.md @@ -5,7 +5,7 @@ - State: beta - Download: http://zxstudio.org/blog/open-horizon-downloads/ - Platform: Windows, Linux, macOS -- Keywords: simulation, commercial content, flight, remake, requires original content +- Keywords: remake, simulation, commercial content, flight, requires original content - Code repository: https://github.com/undefined-darkness/open-horizon.git - Code language: C++ - Code license: MIT diff --git a/entries/open_imperium_galactica.md b/entries/open_imperium_galactica.md index d263162a..109415df 100644 --- a/entries/open_imperium_galactica.md +++ b/entries/open_imperium_galactica.md @@ -4,7 +4,7 @@ - Inspirations: Imperium Galactica - State: mature - Download: https://github.com/akarnokd/open-ig/releases -- Keywords: strategy, remake, turn-based +- Keywords: remake, strategy, turn-based - Code repository: https://github.com/akarnokd/open-ig.git - Code language: Java - Code license: LGPL-3.0 diff --git a/entries/open_jumpgate.md b/entries/open_jumpgate.md index 94cc1d30..7b9beee4 100644 --- a/entries/open_jumpgate.md +++ b/entries/open_jumpgate.md @@ -3,7 +3,7 @@ - Home: http://opengate.sourceforge.net/, https://sourceforge.net/projects/opengate/ - Inspirations: Jumpgate: The Reconstruction Initiative - State: beta, inactive since 2017 -- Keywords: role playing, multiplayer online, remake, simulation, space +- Keywords: remake, role playing, simulation, multiplayer online, space - Code repository: https://git.code.sf.net/p/opengate/code - Code language: C++ - Code license: GPL-2.0 diff --git a/entries/open_legend_rpg.md b/entries/open_legend_rpg.md index b8e60da9..637b64c6 100644 --- a/entries/open_legend_rpg.md +++ b/entries/open_legend_rpg.md @@ -2,7 +2,7 @@ - Home: https://openlegendrpg.com - State: mature -- Keywords: role playing, board, ruleset +- Keywords: board, role playing, ruleset - Code repository: https://github.com/openlegend/core-rules.git - Code language: None - Code license: Custom (Open Legend Community License: https://github.com/openlegend/core-rules/blob/master/LICENSE.md) diff --git a/entries/open_meridian.md b/entries/open_meridian.md index 11fe2838..158404ee 100644 --- a/entries/open_meridian.md +++ b/entries/open_meridian.md @@ -4,7 +4,7 @@ - Inspirations: Meridian 59 - State: mature - Download: http://openmeridian.org/create-account/ -- Keywords: role playing, multiplayer online + massive, remake +- Keywords: remake, role playing, multiplayer online + massive - Code repository: https://github.com/OpenMeridian/Meridian59.git - Code language: C, C++ - Code license: GPL-2.0 diff --git a/entries/open_panzer.md b/entries/open_panzer.md index 1d5cc4a9..02f67c18 100644 --- a/entries/open_panzer.md +++ b/entries/open_panzer.md @@ -3,7 +3,7 @@ - Home: http://www.linuxconsulting.ro/openpanzer/ - Inspirations: Panzer General - State: mature -- Keywords: strategy, online, remake +- Keywords: remake, strategy, online - Code repository: https://github.com/nicupavel/openpanzer.git - Code language: JavaScript - Code license: GPL-2.0 diff --git a/entries/open_rsc.md b/entries/open_rsc.md index 01cc3b53..85afa038 100644 --- a/entries/open_rsc.md +++ b/entries/open_rsc.md @@ -5,7 +5,7 @@ - State: mature - Download: @see-home - Platform: Windows, Linux, macOS, Android -- Keywords: role playing, multiplayer online + massive, remake +- Keywords: remake, role playing, multiplayer online + massive - Code repository: https://gitlab.com/open-runescape-classic/core.git, https://gitlab.com/open-runescape-classic/single-player.git @add, https://github.com/Open-RSC/Core-Framework.git (mirror) - Code language: Java - Code license: GPL-3.0 diff --git a/entries/open_soccer_star.md b/entries/open_soccer_star.md index 7f6114da..2928b832 100644 --- a/entries/open_soccer_star.md +++ b/entries/open_soccer_star.md @@ -2,7 +2,7 @@ - Home: https://opensoccerstar.com/ - State: beta -- Keywords: sports, online, strategy +- Keywords: sports, strategy, online - Code repository: https://github.com/dmecke/OpenSoccerStar.git - Code language: PHP - Code license: GPL-3.0 diff --git a/entries/open_surge.md b/entries/open_surge.md index 6d443547..1850a1c1 100644 --- a/entries/open_surge.md +++ b/entries/open_surge.md @@ -4,7 +4,7 @@ - Inspirations: Sonic the Hedgehog - State: beta - Download: http://opensnc.sourceforge.net/forum/viewtopic.php?id=1931, http://opensnc.sourceforge.net/home/download.php -- Keywords: action, 2D, clone, platform +- Keywords: action, platform, 2D, clone - Code repository: https://github.com/alemart/opensurge.git, https://svn.code.sf.net/p/opensnc/code (svn) - Code language: C - Code license: GPL-3.0 (was GPL-2.0) diff --git a/entries/openage.md b/entries/openage.md index ea3d36eb..ecb060c9 100644 --- a/entries/openage.md +++ b/entries/openage.md @@ -3,7 +3,7 @@ - Home: https://openage.sft.mx/ - Inspirations: Age of Empires, Age of Empires II, Star Wars: Galactic Battlegrounds - State: beta -- Keywords: strategy, commercial content, game engine, real time, remake, requires original content +- Keywords: game engine, remake, strategy, commercial content, real time, requires original content - Code repository: https://github.com/SFTtech/openage.git - Code language: C++, Python - Code license: GPL-3.0 diff --git a/entries/openblack.md b/entries/openblack.md index 0819ef3d..0430f0c5 100644 --- a/entries/openblack.md +++ b/entries/openblack.md @@ -4,7 +4,7 @@ - Inspirations: Black & White - State: beta - Platform: Windows, Linux -- Keywords: simulation, commercial content, remake, requires original content (?) +- Keywords: remake, simulation, commercial content, requires original content (?) - Code repository: https://github.com/openblack/openblack.git - Code language: C, C++ - Code license: GPL-3.0 diff --git a/entries/openbor.md b/entries/openbor.md index 34093025..a5b092de 100644 --- a/entries/openbor.md +++ b/entries/openbor.md @@ -1,7 +1,7 @@ # OpenBOR - Home: http://www.chronocrash.com/forum/ -- Inspirations: Streets of Rage, Double Dragon, Final Fight +- Inspirations: Double Dragon, Final Fight, Streets of Rage - State: mature - Keywords: game engine, clone, free content - Code repository: https://github.com/DCurrent/openbor.git diff --git a/entries/openc2e.md b/entries/openc2e.md index f81a16a7..e95d74a0 100644 --- a/entries/openc2e.md +++ b/entries/openc2e.md @@ -1,10 +1,10 @@ # openc2e - Home: https://web.archive.org/web/20110223210931/http://openc2e.org/ -- Media: , https://creatures.fandom.com/wiki/Openc2e +- Media: https://creatures.fandom.com/wiki/Openc2e, https://en.wikipedia.org/wiki/Creatures_(video_game_series) - Inspirations: Creatures - State: beta -- Keywords: simulation, game engine, remake, requires original content (?) +- Keywords: game engine, remake, simulation, requires original content (?) - Code repository: https://github.com/openc2e/openc2e.git, https://github.com/ccdevnet/openc2e.git @add, https://github.com/nornagon/openc2e.git @add - Code language: C, C++ - Code license: LGPL-2.1 diff --git a/entries/opendow.md b/entries/opendow.md index 1512bc48..3279b8e0 100644 --- a/entries/opendow.md +++ b/entries/opendow.md @@ -1,10 +1,10 @@ # openDOW - Home: https://github.com/rofl0r/openDOW -- Media: +- Media: https://en.wikipedia.org/wiki/Dogs_of_War_(2000_video_game) - Inspirations: Dogs of War - State: beta -- Keywords: strategy, real time, remake +- Keywords: remake, strategy, real time - Code repository: https://github.com/rofl0r/openDOW.git - Code language: C - Code license: GPL-3.0 diff --git a/entries/opendune.md b/entries/opendune.md index 5d452321..34b6f775 100644 --- a/entries/opendune.md +++ b/entries/opendune.md @@ -4,7 +4,7 @@ - Inspirations: Dune 2 - State: mature - Download: https://github.com/OpenDUNE/OpenDUNE/releases -- Keywords: strategy, remake, requires original content (Dune 2 game files) +- Keywords: remake, strategy, requires original content (Dune 2 game files) - Code repository: https://github.com/OpenDUNE/OpenDUNE.git - Code language: C - Code license: GPL-2.0 diff --git a/entries/openfire.md b/entries/openfire.md index 8b53086f..074233ea 100644 --- a/entries/openfire.md +++ b/entries/openfire.md @@ -1,7 +1,7 @@ # OpenFire - Home: https://github.com/Last-Minute-Creations/openFire -- Media: +- Media: https://en.wikipedia.org/wiki/Fire_Power_(video_game) - Inspirations: Fire Power - State: beta, inactive since 2018 - Keywords: action, clone diff --git a/entries/openglad.md b/entries/openglad.md index c97368e3..92f75293 100644 --- a/entries/openglad.md +++ b/entries/openglad.md @@ -4,7 +4,7 @@ - Inspirations: Gladiator - State: mature, inactive since 2004 - Download: http://snowstorm.sourceforge.net/cgi-bin/site.cgi?page=download -- Keywords: role playing, remake +- Keywords: remake, role playing - Code repository: https://git.code.sf.net/p/snowstorm/git, https://gitlab.com/osgames/snowstorm.git @add - Code language: C++ - Code license: GPL-2.0 diff --git a/entries/opengothic.md b/entries/opengothic.md index 155026b5..65440715 100644 --- a/entries/opengothic.md +++ b/entries/opengothic.md @@ -5,7 +5,7 @@ - State: beta - Download: https://github.com/Try/OpenGothic/releases - Platform: Windows -- Keywords: role playing, commercial content, game engine, remake, requires original content +- Keywords: game engine, remake, role playing, commercial content, requires original content - Code repository: https://github.com/Try/OpenGothic.git - Code language: C++ - Code license: MIT diff --git a/entries/openhow.md b/entries/openhow.md index 6d4e6919..f4ca3031 100644 --- a/entries/openhow.md +++ b/entries/openhow.md @@ -4,7 +4,7 @@ - Inspirations: Hogs of War - State: beta - Platform: Windows, Linux -- Keywords: strategy, commercial content, remake, requires original content, turn-based +- Keywords: remake, strategy, commercial content, requires original content, turn-based - Code repository: https://github.com/TalonBraveInfo/OpenHoW.git - Code language: C, C++ - Code license: GPL-3.0 diff --git a/entries/openjazz.md b/entries/openjazz.md index 461d9339..740d9870 100644 --- a/entries/openjazz.md +++ b/entries/openjazz.md @@ -6,7 +6,7 @@ - State: beta - Download: http://www.alister.eu/jazz/oj/download.php - Platform: Windows, macOS -- Keywords: arcade, commercial content, remake, requires original content +- Keywords: arcade, remake, commercial content, requires original content - Code repository: https://github.com/AlisterT/openjazz.git - Code language: C++ - Code license: GPL-2.0 diff --git a/entries/openjk.md b/entries/openjk.md index 145f62c7..bc8e4f21 100644 --- a/entries/openjk.md +++ b/entries/openjk.md @@ -1,11 +1,11 @@ # OpenJK - Home: https://github.com/JACoders/OpenJK -- Inspirations: Star Wars Jedi Knight: Jedi Academy, Star Wars Jedi Knight II: Jedi Outcast +- Inspirations: Star Wars Jedi Knight II: Jedi Outcast, Star Wars Jedi Knight: Jedi Academy - State: beta - Download: https://builds.openjk.org/ - Platform: Windows -- Keywords: action, commercial content, game engine, remake, requires original content +- Keywords: action, game engine, remake, commercial content, requires original content - Code repository: https://github.com/JACoders/OpenJK.git - Code language: C, C++ - Code license: GPL-2.0 diff --git a/entries/openkeeper.md b/entries/openkeeper.md index ec1cf0bf..2cb0e81c 100644 --- a/entries/openkeeper.md +++ b/entries/openkeeper.md @@ -3,7 +3,7 @@ - Home: https://github.com/tonihele/OpenKeeper - Inspirations: Dungeon Keeper 2 - State: beta -- Keywords: simulation, commercial content, game engine, remake, requires original content +- Keywords: game engine, remake, simulation, commercial content, requires original content - Code repository: https://github.com/tonihele/OpenKeeper.git - Code language: Java - Code license: GPL-3.0 diff --git a/entries/openliero.md b/entries/openliero.md index 757e0aa7..b20b17f6 100644 --- a/entries/openliero.md +++ b/entries/openliero.md @@ -3,7 +3,7 @@ - Home: http://www.liero.be/, https://code.google.com/archive/p/liero/ - Inspirations: Liero - State: mature, inactive since 2015 -- Keywords: action, arcade, free content, multiplayer split-screen, remake +- Keywords: action, arcade, remake, free content, multiplayer split-screen - Code repository: https://github.com/gliptic/liero.git (Liero 1.36) - Code language: C++ - Code license: Custom diff --git a/entries/openloco.md b/entries/openloco.md index a0ecc577..eeacb037 100644 --- a/entries/openloco.md +++ b/entries/openloco.md @@ -5,7 +5,7 @@ - State: mature - Download: https://github.com/OpenLoco/OpenLoco/releases - Platform: Windows, macOS -- Keywords: simulation, commercial content, remake, requires original content, transport +- Keywords: remake, simulation, commercial content, requires original content, transport - Code repository: https://github.com/OpenLoco/OpenLoco.git - Code language: C++ - Code license: MIT diff --git a/entries/openmc2.md b/entries/openmc2.md index 77248b19..d471440d 100644 --- a/entries/openmc2.md +++ b/entries/openmc2.md @@ -4,7 +4,7 @@ - Media: https://en.wikipedia.org/wiki/Midnight_Club - Inspirations: Midnight Club II - State: beta, inactive since 2018 -- Keywords: arcade, commercial content, multiplayer LAN, racing, remake, requires original content +- Keywords: arcade, remake, commercial content, multiplayer LAN, racing, requires original content - Code repository: https://github.com/LRFLEW/OpenMC2.git - Code language: C++ - Code license: GPL-3.0 diff --git a/entries/openmoo2.md b/entries/openmoo2.md index 7a69f455..63b3511e 100644 --- a/entries/openmoo2.md +++ b/entries/openmoo2.md @@ -4,7 +4,7 @@ - Inspirations: Master of Orion 2 - State: beta, inactive since 2011 - Download: https://web.archive.org/web/20191229125931/http://openmoo2.org/en/download -- Keywords: strategy, remake, requires original content (MOO2 version 1.31 game data LBX files), turn-based +- Keywords: remake, strategy, requires original content (MOO2 version 1.31 game data LBX files), turn-based - Code repository: https://github.com/pjotrligthart/openmoo2-hg-mirror.git - Code language: Python - Code license: GPL-2.0 diff --git a/entries/openmw.md b/entries/openmw.md index 65117ee4..188fbedd 100644 --- a/entries/openmw.md +++ b/entries/openmw.md @@ -5,7 +5,7 @@ - Inspirations: The Elder Scrolls III: Morrowind - State: mature - Download: https://openmw.org/downloads/ -- Keywords: role playing, game engine, remake, requires original content (Morrowind) +- Keywords: game engine, remake, role playing, requires original content (Morrowind) - Code repository: https://github.com/OpenMW/openmw.git, https://github.com/xyzz/openmw-android.git - Code language: C++ - Code license: GPL-3.0 diff --git a/entries/opennfs.md b/entries/opennfs.md index 50b53e3f..6ba82e9b 100644 --- a/entries/opennfs.md +++ b/entries/opennfs.md @@ -3,7 +3,7 @@ - Home: https://opennfs.com/ - Inspirations: Need For Speed III: Hot Pursuit - State: beta -- Keywords: game engine, cars, commercial content, racing, remake, requires original content +- Keywords: game engine, remake, cars, commercial content, racing, requires original content - Code repository: https://github.com/OpenNFS/OpenNFS.git - Code language: C, C++ - Code license: MIT diff --git a/entries/openomf.md b/entries/openomf.md index 73ffa6fb..a6b6c039 100644 --- a/entries/openomf.md +++ b/entries/openomf.md @@ -6,7 +6,7 @@ - State: beta - Download: http://www.openomf.org/downloads/, https://github.com/omf2097/openomf/releases - Platform: Windows, Linux -- Keywords: action, commercial content (?), free content (?), remake, requires original content +- Keywords: action, remake, commercial content (?), free content (?), requires original content - Code repository: https://github.com/omf2097/openomf.git - Code language: C, C++ - Code license: MIT diff --git a/entries/openra.md b/entries/openra.md index fc474a44..6062fef7 100644 --- a/entries/openra.md +++ b/entries/openra.md @@ -1,11 +1,11 @@ # OpenRA - Home: http://www.openra.net/ -- Media: +- Media: https://en.wikipedia.org/wiki/Command_%26_Conquer:_Red_Alert#Open_source_remake - Inspirations: Command & Conquer, Command & Conquer: Red Alert, Dune 2000 - State: mature - Download: http://www.openra.net/download/ -- Keywords: strategy, multiplayer online + LAN, real time, remake +- Keywords: remake, strategy, multiplayer online + LAN, real time - Code repository: https://github.com/OpenRA/OpenRA.git - Code language: C# - Code license: GPL-3.0 diff --git a/entries/openrct2.md b/entries/openrct2.md index 1de0f44d..2fb547a7 100644 --- a/entries/openrct2.md +++ b/entries/openrct2.md @@ -6,7 +6,7 @@ - State: mature - Download: https://openrct2.org/downloads - Platform: Windows, Linux, macOS -- Keywords: simulation, remake, requires original content (from RCT2) +- Keywords: remake, simulation, requires original content (from RCT2) - Code repository: https://github.com/OpenRCT2/OpenRCT2.git - Code language: C++ - Code license: GPL-3.0 diff --git a/entries/openrw.md b/entries/openrw.md index ae3f6b05..27e9ee47 100644 --- a/entries/openrw.md +++ b/entries/openrw.md @@ -5,7 +5,7 @@ - Inspirations: Grand Theft Auto III - State: beta - Platform: Windows, Linux, macOS -- Keywords: action, commercial content, game engine, remake, requires original content +- Keywords: action, game engine, remake, commercial content, requires original content - Code repository: https://github.com/rwengine/openrw.git - Code language: C, C++ - Code license: GPL-3.0 diff --git a/entries/opensage.md b/entries/opensage.md index e31719db..e939124a 100644 --- a/entries/opensage.md +++ b/entries/opensage.md @@ -5,7 +5,7 @@ - State: beta - Download: https://github.com/OpenSAGE/OpenSAGE/releases - Platform: Windows, Linux, macOS -- Keywords: strategy, clone, commercial content, game engine, real time, requires original content +- Keywords: game engine, strategy, clone, commercial content, real time, requires original content - Code repository: https://github.com/OpenSAGE/OpenSAGE.git - Code language: C# - Code license: LGPL-3.0 diff --git a/entries/opensc2k.md b/entries/opensc2k.md index 209f1cb2..25cae3a2 100644 --- a/entries/opensc2k.md +++ b/entries/opensc2k.md @@ -4,7 +4,7 @@ - Inspirations: SimCity 2000 - State: beta - Platform: Web -- Keywords: simulation, remake +- Keywords: remake, simulation - Code repository: https://github.com/nicholas-ochoa/OpenSC2K.git - Code language: JavaScript - Code license: GPL-3.0 diff --git a/entries/openskyscraper.md b/entries/openskyscraper.md index d7d43f05..2af7dbc6 100644 --- a/entries/openskyscraper.md +++ b/entries/openskyscraper.md @@ -3,7 +3,7 @@ - Home: http://openskyscraper.org/ - Inspirations: SimTower - State: beta -- Keywords: simulation, remake +- Keywords: remake, simulation - Code repository: https://github.com/fabianschuiki/OpenSkyscraper.git - Code language: C++ - Code license: GPL-2.0 diff --git a/entries/opensoccer.md b/entries/opensoccer.md index b894ab8d..b4e13488 100644 --- a/entries/opensoccer.md +++ b/entries/opensoccer.md @@ -2,7 +2,7 @@ - Home: https://github.com/delight-im/OpenSoccer - State: beta -- Keywords: sports, online, strategy +- Keywords: sports, strategy, online - Code repository: https://github.com/delight-im/OpenSoccer.git - Code language: PHP - Code license: GPL-3.0 diff --git a/entries/openspades.md b/entries/openspades.md index b657e759..b6afcca6 100644 --- a/entries/openspades.md +++ b/entries/openspades.md @@ -1,7 +1,7 @@ # OpenSpades - Home: http://openspades.yvt.jp/, https://sites.google.com/a/yvt.jp/openspades/ (outdated) -- Media: +- Media: https://en.wikipedia.org/wiki/Ace_of_Spades_(video_game) - Inspirations: Ace of Spades - State: beta - Download: https://github.com/yvt/openspades/releases diff --git a/entries/opensupaplex.md b/entries/opensupaplex.md index 44400176..80a7506a 100644 --- a/entries/opensupaplex.md +++ b/entries/opensupaplex.md @@ -4,7 +4,7 @@ - Inspirations: Supaplex - State: mature - Platform: Windows, Linux, macOS -- Keywords: puzzle, free content (?), remake +- Keywords: puzzle, remake, free content (?) - Code repository: https://github.com/sergiou87/open-supaplex.git - Code language: C - Code license: GPL-3.0 diff --git a/entries/opentesarena.md b/entries/opentesarena.md index 22d09427..6ecf5795 100644 --- a/entries/opentesarena.md +++ b/entries/opentesarena.md @@ -4,7 +4,7 @@ - Inspirations: The Elder Scrolls: Arena - State: beta - Platform: Windows, Linux, macOS -- Keywords: game engine, commercial content, remake, requires original content +- Keywords: game engine, remake, commercial content, requires original content - Code repository: https://github.com/afritz1/OpenTESArena.git - Code language: C++ - Code license: MIT diff --git a/entries/opentomb.md b/entries/opentomb.md index 9c5b602b..bee554cf 100644 --- a/entries/opentomb.md +++ b/entries/opentomb.md @@ -5,7 +5,7 @@ - State: beta - Download: https://github.com/opentomb/OpenTomb/releases - Platform: Windows -- Keywords: action, commercial content, game engine, remake, requires original content +- Keywords: action, game engine, remake, commercial content, requires original content - Code repository: https://github.com/opentomb/OpenTomb.git - Code language: C, C++, Lua - Code license: LGPL-3.0 diff --git a/entries/openttd.md b/entries/openttd.md index 75c392aa..b4dc3f78 100644 --- a/entries/openttd.md +++ b/entries/openttd.md @@ -5,7 +5,7 @@ - Inspirations: Transport Tycoon - State: mature - Download: https://www.openttd.org/downloads/openttd-releases/latest.html -- Keywords: simulation, can use original content, open content (swappable), remake +- Keywords: remake, simulation, can use original content, open content (swappable) - Code repository: https://github.com/OpenTTD/OpenTTD.git, https://svn.openttd.org/ (svn) - Code language: C++ - Code license: GPL-2.0 diff --git a/entries/openviii.md b/entries/openviii.md index 0ca1e6fc..1a6fb39e 100644 --- a/entries/openviii.md +++ b/entries/openviii.md @@ -5,7 +5,7 @@ - Inspirations: Final Fantasy VIII - State: beta - Platform: Windows, Linux -- Keywords: role playing, commercial content, game engine, remake, requires original content +- Keywords: game engine, remake, role playing, commercial content, requires original content - Code repository: https://github.com/MaKiPL/OpenVIII-monogame.git - Code language: C# - Code license: MIT diff --git a/entries/openwebsoccer-sim.md b/entries/openwebsoccer-sim.md index 5d42885c..0879875a 100644 --- a/entries/openwebsoccer-sim.md +++ b/entries/openwebsoccer-sim.md @@ -3,7 +3,7 @@ - Home: https://github.com/ihofmann/open-websoccer - State: mature - Download: https://github.com/ihofmann/open-websoccer/releases -- Keywords: sports, online, strategy +- Keywords: sports, strategy, online - Code repository: https://github.com/ihofmann/open-websoccer.git - Code language: PHP - Code license: LGPL-3.0 diff --git a/entries/openxcom.md b/entries/openxcom.md index a55234b7..c988ef57 100644 --- a/entries/openxcom.md +++ b/entries/openxcom.md @@ -1,11 +1,11 @@ # OpenXcom - Home: https://openxcom.org/ -- Media: +- Media: https://en.wikipedia.org/wiki/UFO:_Enemy_Unknown#Fan-created_content - Inspirations: UFO: Enemy Unknown, X-COM: Apocalypse, X-COM: Terror from the Deep, X-COM: UFO Defense - State: mature - Download: https://openxcom.org/downloads-milestones/ -- Keywords: strategy, remake, turn-based +- Keywords: remake, strategy, turn-based - Code repository: https://github.com/OpenXcom/OpenXcom.git - Code language: C++ - Code license: GPL-3.0 diff --git a/entries/orbium.md b/entries/orbium.md index a5756020..3d865ebe 100644 --- a/entries/orbium.md +++ b/entries/orbium.md @@ -4,7 +4,7 @@ - Inspirations: Log!cal - State: mature, inactive since 2018 - Platform: Web -- Keywords: strategy, remake +- Keywords: remake, strategy - Code repository: https://github.com/bni/orbium.git - Code language: JavaScript - Code license: GPL-2.0 diff --git a/entries/orient.md b/entries/orient.md index d639fd90..28f3d185 100644 --- a/entries/orient.md +++ b/entries/orient.md @@ -3,7 +3,7 @@ - Home: https://web.archive.org/web/20131114051805/http://www.e-circus.org/, https://sourceforge.net/projects/orient-ecircus/ - State: mature, inactive since 2009 - Download: https://sourceforge.net/projects/orient-ecircus/files -- Keywords: role playing, educational +- Keywords: educational, role playing - Code repository: https://gitlab.com/osgames/orient.git (snapshot of sources in download) - Code language: C#, Java - Code license: GPL-2.0 diff --git a/entries/orona.md b/entries/orona.md index 0dad7890..a89e0507 100644 --- a/entries/orona.md +++ b/entries/orona.md @@ -3,7 +3,7 @@ - Home: http://stephank.github.io/orona/ - Inspirations: Bolo - State: beta, inactive since 2012 -- Keywords: strategy, remake +- Keywords: remake, strategy - Code repository: https://github.com/stephank/orona.git - Code language: CoffeeScript - Code license: GPL-2.0 diff --git a/entries/osu.md b/entries/osu.md index 0d62659f..c1dbe3e0 100644 --- a/entries/osu.md +++ b/entries/osu.md @@ -1,7 +1,7 @@ # osu! - Home: https://osu.ppy.sh/home -- Inspirations: Osu! Tatakae! Ouendan, Taiko no Tatsujin, Beatmania IIDX +- Inspirations: Beatmania IIDX, Osu! Tatakae! Ouendan, Taiko no Tatsujin - State: beta - Download: https://osu.ppy.sh/home/download, https://github.com/ppy/osu/releases - Platform: Windows, macOS, Android, iOS diff --git a/entries/our_personal_space.md b/entries/our_personal_space.md index 28594476..92ca58da 100644 --- a/entries/our_personal_space.md +++ b/entries/our_personal_space.md @@ -3,9 +3,9 @@ - Home: http://metasepia.icecavern.net/OurPersonalSpace/index.html - State: mature - Download: @see-home -- Keywords: visual novel, simulation +- Keywords: simulation, visual novel - Code repository: https://github.com/qirien/personal-space.git -- Code language: Ren'py +- Code language: Ren'Py - Code license: GPL-3.0 - Code dependencies: Ren'Py diff --git a/entries/outpost_hd.md b/entries/outpost_hd.md index c243d213..51173f2b 100644 --- a/entries/outpost_hd.md +++ b/entries/outpost_hd.md @@ -3,7 +3,7 @@ - Home: "https://forum.outpost2.net/index.php/topic,5718.0.html" - Inspirations: Outpost - State: beta -- Keywords: simulation, commercial content, remake, requires original content +- Keywords: remake, simulation, commercial content, requires original content - Code repository: https://github.com/OutpostUniverse/OPHD.git - Code language: C++ - Code license: 3-clause BSD diff --git a/entries/pachi.md b/entries/pachi.md index f570d9a7..7b83762e 100644 --- a/entries/pachi.md +++ b/entries/pachi.md @@ -4,7 +4,7 @@ - State: mature - Download: https://github.com/pasky/pachi/releases - Platform: Windows, Linux -- Keywords: strategy, board +- Keywords: board, strategy - Code repository: https://github.com/pasky/pachi.git, https://repo.or.cz/pachi.git @add - Code language: C, Python - Code license: GPL-2.0 diff --git a/entries/paintown.md b/entries/paintown.md index 18ef0ab2..4a84a48f 100644 --- a/entries/paintown.md +++ b/entries/paintown.md @@ -4,7 +4,7 @@ - State: mature - Download: http://paintown.org/#/downloads, https://sourceforge.net/projects/paintown/files/ - Platform: Windows, Linux, macOS, Android -- Keywords: action, 2D, arcade, beat'em up, game engine +- Keywords: action, arcade, game engine, 2D, beat'em up - Code repository: https://github.com/kazzmir/paintown.git, https://svn.code.sf.net/p/paintown/code (svn) - Code language: C++, Java, Python - Code license: 3-clause BSD diff --git a/entries/parpg.md b/entries/parpg.md index 32e27ab6..35342bd5 100644 --- a/entries/parpg.md +++ b/entries/parpg.md @@ -4,7 +4,7 @@ - Inspirations: Fallout 2 - State: beta, inactive since 2012 - Download: http://blog.parpg.net/download/, http://wiki.parpg.net/Download -- Keywords: role playing, remake +- Keywords: remake, role playing - Code repository: https://gitlab.com/osgames/parpg-core.git, http://subversion.assembla.com/svn/parpg-assets/ (svn), http://parpg-trac.cvsdude.com/parpg/browser (svn) - Code language: Python - Code license: GPL-3.0 diff --git a/entries/pasang_emas.md b/entries/pasang_emas.md index 27556d74..4ba716a3 100644 --- a/entries/pasang_emas.md +++ b/entries/pasang_emas.md @@ -4,7 +4,7 @@ - State: mature - Download: http://pasang-emas.sourceforge.net/download.xhtml, https://sourceforge.net/projects/pasang-emas/files/ - Platform: Linux -- Keywords: strategy, board +- Keywords: board, strategy - Code repository: https://git.code.sf.net/p/pasang-emas/code - Code language: Vala - Code license: GPL-3.0 diff --git a/entries/pcexhumed.md b/entries/pcexhumed.md index 608ac3fd..f06fc4e0 100644 --- a/entries/pcexhumed.md +++ b/entries/pcexhumed.md @@ -3,7 +3,7 @@ - Home: https://lerppu.net/wannabethesis/, http://pcex.retrohost.net/ - Inspirations: Powerslave - State: beta -- Keywords: action, commercial content, remake +- Keywords: action, remake, commercial content - Code repository: https://github.com/nukeykt/NBlood.git - Code language: C++ - Code license: Custom diff --git a/entries/pentagram.md b/entries/pentagram.md index e5c3884c..7c30ebb0 100644 --- a/entries/pentagram.md +++ b/entries/pentagram.md @@ -5,7 +5,7 @@ - State: beta, inactive since 2018 - Download: http://pentagram.sourceforge.net/download.php - Platform: Windows, Linux, macOS -- Keywords: role playing, commercial content, game engine, remake, requires original content +- Keywords: game engine, remake, role playing, commercial content, requires original content - Code repository: https://github.com/pentagram-u8/pentagram.git, https://svn.code.sf.net/p/pentagram/code (svn) - Code language: C++ - Code license: GPL-2.0 diff --git a/entries/pentobi.md b/entries/pentobi.md index 945e197c..d10ca994 100644 --- a/entries/pentobi.md +++ b/entries/pentobi.md @@ -4,7 +4,7 @@ - Inspirations: Blokus - State: mature - Download: https://sourceforge.net/projects/pentobi/files/ -- Keywords: role playing, board, open content +- Keywords: board, role playing, open content - Code repository: https://github.com/enz/pentobi.git - Code language: C++ - Code license: GPL-3.0 diff --git a/entries/phprpg.md b/entries/phprpg.md index 5452ecaa..b8a4f7ce 100644 --- a/entries/phprpg.md +++ b/entries/phprpg.md @@ -4,7 +4,7 @@ - State: beta, inactive since 2006 - Download: https://sourceforge.net/projects/phprpg/files/ - Platform: Web -- Keywords: role playing, game engine +- Keywords: game engine, role playing - Code repository: https://gitlab.com/osgames/phprpg.git (conversion from cvs), http://phprpg.cvs.sourceforge.net (cvs) - Code language: PHP - Code license: GPL-2.0 diff --git a/entries/physics_platformer.md b/entries/physics_platformer.md index 8bdffa65..a435da68 100644 --- a/entries/physics_platformer.md +++ b/entries/physics_platformer.md @@ -4,7 +4,7 @@ - State: beta, inactive since 2019 - Download: https://github.com/SteveSmith16384/PhysicsPlatformer/releases - Platform: Windows, Linux -- Keywords: arcade, multiplayer, physics, platform +- Keywords: arcade, platform, multiplayer, physics - Code repository: https://github.com/SteveSmith16384/PhysicsPlatformer.git - Code language: Java - Code license: MIT diff --git a/entries/pillow.md b/entries/pillow.md index 54fc0892..54ed1dae 100644 --- a/entries/pillow.md +++ b/entries/pillow.md @@ -2,12 +2,12 @@ - Home: https://python-pillow.org/ - State: mature -- Download: (pip install Pillow) +- Download: https://pypi.org/project/Pillow/ - Platform: Windows, Linux, macOS - Keywords: library - Code repository: https://github.com/python-pillow/Pillow.git - Code language: C, Python -- Code license: PIL Software License +- Code license: Custom (PIL Software License) Fork of the Python Imaging Library. diff --git a/entries/pioneer.md b/entries/pioneer.md index 69ad4852..ed1fab5f 100644 --- a/entries/pioneer.md +++ b/entries/pioneer.md @@ -1,7 +1,7 @@ # Pioneer - Home: https://pioneerspacesim.net/ -- Media: +- Media: https://en.wikipedia.org/wiki/Pioneer_(video_game) - Inspirations: Elite II - State: mature - Download: https://pioneerspacesim.net/page/download/ diff --git a/entries/pioneers.md b/entries/pioneers.md index fba39c81..16ae0af1 100644 --- a/entries/pioneers.md +++ b/entries/pioneers.md @@ -3,7 +3,7 @@ - Home: https://sourceforge.net/projects/pio/, http://pio.sourceforge.net/ - State: mature - Download: https://sourceforge.net/projects/pio/files -- Keywords: strategy, board +- Keywords: board, strategy - Code repository: https://svn.code.sf.net/p/pio/code (svn active) - Code language: C - Code license: GPL-2.0 diff --git a/entries/pkg-config.md b/entries/pkg-config.md index c3285cb9..6c9bf008 100644 --- a/entries/pkg-config.md +++ b/entries/pkg-config.md @@ -4,7 +4,7 @@ - Media: https://en.wikipedia.org/wiki/Pkg-config - State: mature - Download: https://pkg-config.freedesktop.org/releases/ -- Keywords: tool, library +- Keywords: library, tool - Code repository: https://anongit.freedesktop.org/git/pkg-config.git - Code language: C - Code license: GPL-2.0 diff --git a/entries/planeshift.md b/entries/planeshift.md index fc5d90cf..414786b8 100644 --- a/entries/planeshift.md +++ b/entries/planeshift.md @@ -1,7 +1,7 @@ # PlaneShift - Home: http://www.planeshift.it/, https://sourceforge.net/projects/planeshift/ -- Media: +- Media: https://en.wikipedia.org/wiki/PlaneShift_(video_game) - State: mature - Download: http://www.planeshift.it/Download - Keywords: role playing, multiplayer online + massive diff --git a/entries/postal_1_open_source.md b/entries/postal_1_open_source.md index 276d1738..a8aa27aa 100644 --- a/entries/postal_1_open_source.md +++ b/entries/postal_1_open_source.md @@ -1,7 +1,7 @@ # POSTAL 1 Open Source - Home: https://bitbucket.org/gopostal/workspace/projects/P1OS -- Media: +- Media: https://en.wikipedia.org/wiki/Postal_(video_game)#Open_source - Inspirations: Postal - State: beta, inactive since 2018 - Keywords: remake, commercial content, requires original content, shooter diff --git a/entries/powerslavegdx.md b/entries/powerslavegdx.md index 87855277..1cfa72b6 100644 --- a/entries/powerslavegdx.md +++ b/entries/powerslavegdx.md @@ -3,7 +3,7 @@ - Home: http://m210.duke4.net/ - Inspirations: Powerslave - State: beta -- Keywords: action, commercial content, remake +- Keywords: action, remake, commercial content - Code repository: https://gitlab.com/m210/PowerslaveGDX.git - Code language: Java - Code license: Custom (see buildlic.txt and GPL-3.0) diff --git a/entries/powerslide_remake.md b/entries/powerslide_remake.md index dd86d474..df7796e6 100644 --- a/entries/powerslide_remake.md +++ b/entries/powerslide_remake.md @@ -4,7 +4,7 @@ - Inspirations: Powerslide - State: beta - Platform: Windows, Linux, Android -- Keywords: arcade, 3D, commercial content, multiplayer competitive + online, racing, remake +- Keywords: arcade, remake, 3D, commercial content, multiplayer competitive + online, racing - Code repository: https://bitbucket.org/dm_999/powerslideremake.git (git) - Code language: C++ - Code license: MIT diff --git a/entries/pq2.md b/entries/pq2.md index 31394a44..300821ef 100644 --- a/entries/pq2.md +++ b/entries/pq2.md @@ -4,7 +4,7 @@ - Media: https://en.wikipedia.org/wiki/Progress_Quest#Development - Inspirations: Progress Quest - State: mature -- Keywords: simulation, remake +- Keywords: remake, simulation - Code repository: https://github.com/nbollom/pq2.git - Code language: C++ - Code license: GPL-3.0 diff --git a/entries/prescription_wars.md b/entries/prescription_wars.md index 765793ae..1b69a135 100644 --- a/entries/prescription_wars.md +++ b/entries/prescription_wars.md @@ -5,7 +5,7 @@ - Inspirations: Drugwars - State: mature, inactive since 2016 - Platform: Web -- Keywords: simulation, educational, remake, strategy +- Keywords: educational, remake, simulation, strategy - Code repository: https://github.com/gtheilman/RxWars.git - Code language: ColdFusion, JavaScript - Code license: GPL-3.0 diff --git a/entries/project_alexandria.md b/entries/project_alexandria.md index 99d72e18..cf2f5323 100644 --- a/entries/project_alexandria.md +++ b/entries/project_alexandria.md @@ -6,7 +6,7 @@ - Keywords: arcade, open content - Code repository: @see-download - Code language: Python -- Code license: GPL +- Code license: ? (GPL version?) - Code dependencies: pygame - Assets license: ? (GPL) - Developer: Sixth Floor Labs diff --git a/entries/project_dollhouse.md b/entries/project_dollhouse.md index 50ef057d..08ab1cb1 100644 --- a/entries/project_dollhouse.md +++ b/entries/project_dollhouse.md @@ -4,7 +4,7 @@ - Inspirations: CorsixTH, The Sims Online - State: beta - Download: https://github.com/Afr0Games/Project-Dollhouse/releases -- Keywords: simulation, remake, requires original content (?) +- Keywords: remake, simulation, requires original content (?) - Code repository: https://github.com/Afr0Games/Project-Dollhouse.git - Code language: C# - Code license: MPL-2.0 diff --git a/entries/proquake_4.md b/entries/proquake_4.md index 5f77903a..6932bac4 100644 --- a/entries/proquake_4.md +++ b/entries/proquake_4.md @@ -5,7 +5,7 @@ - State: mature, inactive since 2018 - Download: @see-home - Keywords: remake -- Code repository: (see downloads and https://web.archive.org/web/20200211052147/http://quakeone.com/proquake/older_sources/) +- Code repository: @see-home (and https://web.archive.org/web/20200211052147/http://quakeone.com/proquake/older_sources/) - Code language: C - Code license: GPL-2.0 diff --git a/entries/pthreads-win32.md b/entries/pthreads-win32.md index 8a1ed406..96fae5a9 100644 --- a/entries/pthreads-win32.md +++ b/entries/pthreads-win32.md @@ -5,7 +5,7 @@ - State: mature - Download: @see-home - Keywords: library -- Code repository: https://github.com/GerHobbelt/pthread-win32.git, (cvs, see home) +- Code repository: https://github.com/GerHobbelt/pthread-win32.git (for cvs see home) - Code language: C - Code license: LGPL-2.1 diff --git a/entries/pybreak360.md b/entries/pybreak360.md index 9a88859a..677d3823 100644 --- a/entries/pybreak360.md +++ b/entries/pybreak360.md @@ -5,7 +5,7 @@ - Inspirations: Arkanoid - State: mature, inactive since 2015 - Download: https://sourceforge.net/projects/pybreak360/files/ -- Keywords: arcade, clone, puzzle +- Keywords: arcade, puzzle, clone - Code repository: https://git.code.sf.net/p/pybreak360/code - Code language: Python - Code license: GPL-3.0 diff --git a/entries/pycraft.md b/entries/pycraft.md index 9d6ce42a..0e05a547 100644 --- a/entries/pycraft.md +++ b/entries/pycraft.md @@ -4,7 +4,7 @@ - Inspirations: Minecraft - State: mature, inactive since 2018 - Download: https://github.com/itsapi/pycraft/releases -- Keywords: simulation, remake, sandbox, voxel +- Keywords: remake, simulation, sandbox, voxel - Code repository: https://github.com/itsapi/pycraft.git - Code language: C, Python - Code license: GPL-2.0 diff --git a/entries/pysol.md b/entries/pysol.md index c1f4fe1b..c2175b2a 100644 --- a/entries/pysol.md +++ b/entries/pysol.md @@ -5,7 +5,7 @@ - State: mature, inactive since 2004 - Download: http://www.pysol.org/#download - Platform: Windows, Linux, macOS -- Keywords: strategy, cards +- Keywords: cards, strategy - Code repository: @see-download - Code language: Python - Code license: GPL-2.0 diff --git a/entries/pytmx.md b/entries/pytmx.md index e074b851..2170333c 100644 --- a/entries/pytmx.md +++ b/entries/pytmx.md @@ -3,7 +3,7 @@ - Home: https://pypi.org/project/PyTMX/ - State: mature - Platform: Windows, Linux, macOS (all supported by pygame) -- Keywords: tool, library +- Keywords: library, tool - Code repository: https://github.com/bitcraft/PyTMX.git - Code language: Python - Code license: LGPL-3.0 diff --git a/entries/q-gears.md b/entries/q-gears.md index 25eab409..0b9ba117 100644 --- a/entries/q-gears.md +++ b/entries/q-gears.md @@ -4,7 +4,7 @@ - Inspirations: Final Fantasy VII - State: beta, inactive since 2015 - Download: https://sourceforge.net/projects/q-gears/files/ -- Keywords: role playing, commercial content, game engine, remake, requires original content +- Keywords: game engine, remake, role playing, commercial content, requires original content - Code repository: https://github.com/q-gears/q-gears.git, http://hg.code.sf.net/p/q-gears/code (hg old) - Code language: C, C++ - Code license: GPL-2.0 diff --git a/entries/qt.md b/entries/qt.md index 3a569d2a..0c0c2a44 100644 --- a/entries/qt.md +++ b/entries/qt.md @@ -1,7 +1,7 @@ # Qt - Home: https://www.qt.io/ -- Media: +- Media: https://en.wikipedia.org/wiki/Qt_(software) - State: mature - Download: https://www.qt.io/download - Keywords: framework diff --git a/entries/quakespasm.md b/entries/quakespasm.md index cf9de9e1..67f9c9ef 100644 --- a/entries/quakespasm.md +++ b/entries/quakespasm.md @@ -5,7 +5,7 @@ - State: mature - Download: http://quakespasm.sourceforge.net/download.htm, https://sourceforge.net/projects/quakespasm/files/ - Platform: Windows, Linux, macOS -- Keywords: action, commercial content, remake, requires original content (?), shooter +- Keywords: action, remake, commercial content, requires original content (?), shooter - Code repository: https://git.code.sf.net/p/quakespasm/quakespasm.git, https://svn.code.sf.net/p/quakespasm/code (svn active) - Code language: C - Code license: GPL-2.0 diff --git a/entries/quatter.md b/entries/quatter.md index d797bcb1..87382b5f 100644 --- a/entries/quatter.md +++ b/entries/quatter.md @@ -1,9 +1,9 @@ # Quatter - Home: https://luckeyproductions.itch.io/quatter -- Media: +- Media: https://en.wikipedia.org/wiki/Quarto_(board_game) - State: mature, inactive since 2018 -- Keywords: strategy, board, open content +- Keywords: board, strategy, open content - Code repository: https://gitlab.com/luckeyproductions/Quatter.git - Code language: C++ - Code license: GPL-2.0 diff --git a/entries/race_into_space.md b/entries/race_into_space.md index 163f8935..dda5897e 100644 --- a/entries/race_into_space.md +++ b/entries/race_into_space.md @@ -6,7 +6,7 @@ - State: mature - Download: https://sourceforge.net/projects/raceintospace/files/ - Platform: Windows, Linux, macOS -- Keywords: simulation, remake, strategy, turn-based +- Keywords: remake, simulation, strategy, turn-based - Code repository: https://github.com/raceintospace/raceintospace.git, http://raceintospace.cvs.sourceforge.net (cvs) - Code language: C, C++ - Code license: GPL-2.0 diff --git a/entries/radakan.md b/entries/radakan.md index 4ca58f16..bf953d67 100644 --- a/entries/radakan.md +++ b/entries/radakan.md @@ -1,6 +1,6 @@ # Radakan -- Home: , https://sourceforge.net/projects/radakan/ +- Home: https://web.archive.org/web/20170915004555/http://radakan.org/, https://sourceforge.net/projects/radakan/ - State: beta, inactive since 2014 - Download: https://sourceforge.net/projects/radakan/files/ - Keywords: role playing diff --git a/entries/redneckgdx.md b/entries/redneckgdx.md index a1b31b34..b20a59b4 100644 --- a/entries/redneckgdx.md +++ b/entries/redneckgdx.md @@ -3,7 +3,7 @@ - Home: http://m210.duke4.net/ - Inspirations: Redneck Rampage - State: beta -- Keywords: action, commercial content, multiplayer Online + LAN + Co-op, remake +- Keywords: action, remake, commercial content, multiplayer Online + LAN + Co-op - Code repository: https://gitlab.com/m210/RedneckGDX.git - Code language: Java - Code license: Custom (see buildlic.txt + GPL-3.0) diff --git a/entries/rednukem.md b/entries/rednukem.md index 0b66f416..8093ab12 100644 --- a/entries/rednukem.md +++ b/entries/rednukem.md @@ -1,9 +1,9 @@ # Rednukem - Home: https://nukeykt.retrohost.net/ -- Inspirations: Redneck Rampage, Duke Nukem 3D +- Inspirations: Duke Nukem 3D, Redneck Rampage - State: beta -- Keywords: action, commercial content, remake +- Keywords: action, remake, commercial content - Code repository: https://github.com/nukeykt/NBlood.git - Code language: C++ - Code license: Custom diff --git a/entries/reflection_keen.md b/entries/reflection_keen.md index 1ef2dbc3..7d2cd875 100644 --- a/entries/reflection_keen.md +++ b/entries/reflection_keen.md @@ -1,9 +1,9 @@ # Reflection Keen - Home: https://github.com/NY00123/refkeen -- Inspirations: Commander Keen Series, Catacomb 3-D, Catacomb Adventure Series, Keen Dreams +- Inspirations: Catacomb 3-D, Catacomb Adventure Series, Commander Keen Series, Keen Dreams - State: mature -- Keywords: platform, 2D, commercial content, remake, requires original content +- Keywords: platform, remake, 2D, commercial content, requires original content - Code repository: https://github.com/NY00123/refkeen.git - Code language: C, Lua - Code license: GPL-2.0 diff --git a/entries/regoth.md b/entries/regoth.md index 22bc8d5b..4e3f6bde 100644 --- a/entries/regoth.md +++ b/entries/regoth.md @@ -4,7 +4,7 @@ - Inspirations: Gothic, Gothic II - State: mature - Download: https://github.com/REGoth-project/REGoth/releases -- Keywords: role playing, commercial content, remake, requires original content +- Keywords: remake, role playing, commercial content, requires original content - Code repository: https://github.com/REGoth-project/REGoth-bs.git, https://github.com/REGoth-project/REGoth.git @add - Code language: C++ - Code license: GPL-3.0, MIT (https://github.com/REGoth-project/REGoth-bs/blob/master/LICENSE) diff --git a/entries/remixed_dungeon.md b/entries/remixed_dungeon.md index f58e5921..ba9bc743 100644 --- a/entries/remixed_dungeon.md +++ b/entries/remixed_dungeon.md @@ -5,7 +5,7 @@ - State: mature - Download: https://play.google.com/store/apps/details?id=com.nyrds.pixeldungeon.ml&referrer=utm_source%3Dgithub%26utm_content%3Dreadme - Platform: Android -- Keywords: role playing, remake, roguelike +- Keywords: remake, role playing, roguelike - Code repository: https://github.com/NYRDS/remixed-dungeon.git - Code language: Java - Code license: GPL-3.0 diff --git a/entries/renpy.md b/entries/renpy.md index fdc6a98d..6fb00bb7 100644 --- a/entries/renpy.md +++ b/entries/renpy.md @@ -1,10 +1,11 @@ # Ren'Py - Home: https://www.renpy.org/ +- Media: https://en.wikipedia.org/wiki/Ren%27Py - State: mature - Download: https://www.renpy.org/latest.html - Platform: Windows, Linux, macOS, Android, iOS, Web -- Keywords: visual novel, framework +- Keywords: framework, visual novel - Code repository: https://github.com/renpy/renpy.git, https://github.com/renpy/pygame_sdl2.git @add, https://github.com/renpy/renpy-deps.git @add, https://github.com/renpy/python-for-android.git @add, https://github.com/renpy/rapt.git @add, https://github.com/renpy/renios.git @add - Code language: C, Python, Ren'Py - Code license: LGPL-2.1 (most code under MIT) diff --git a/entries/rescue_max.md b/entries/rescue_max.md index 138196ef..f0145a8d 100644 --- a/entries/rescue_max.md +++ b/entries/rescue_max.md @@ -4,7 +4,7 @@ - Inspirations: Rescue! - State: beta, inactive since 2013 - Download: https://sourceforge.net/projects/rescue/files/ -- Keywords: action, real time, remake, space, strategy +- Keywords: action, remake, strategy, real time, space - Code repository: https://gitlab.com/osgames/rescue.git (conversion of svn), https://svn.code.sf.net/p/rescue/code (svn) - Code language: Java - Code license: GPL-3.0 diff --git a/entries/residualvm.md b/entries/residualvm.md index 1e2b3745..7590179f 100644 --- a/entries/residualvm.md +++ b/entries/residualvm.md @@ -1,11 +1,11 @@ # ResidualVM - Home: https://residualvm.org/ -- Inspirations: Grim Fandango, Escape from Monkey Island, Myst III: Exile +- Inspirations: Escape from Monkey Island, Grim Fandango, Myst III: Exile - State: beta - Download: https://www.residualvm.org/downloads/ - Platform: Windows, macOS -- Keywords: adventure, commercial content, game engine, remake, requires original content +- Keywords: adventure, game engine, remake, commercial content, requires original content - Code repository: https://github.com/residualvm/residualvm.git - Code language: C++ - Code license: GPL-2.0 diff --git a/entries/return_of_dr_destructo.md b/entries/return_of_dr_destructo.md index 92e8cf6f..e454fcce 100644 --- a/entries/return_of_dr_destructo.md +++ b/entries/return_of_dr_destructo.md @@ -3,7 +3,7 @@ - Home: https://web.archive.org/web/20190630000950/http://zxstudio.org/projects/drdestructo/ - Inspirations: Destructo - State: mature, inactive since 2015 -- Keywords: action, free content, remake +- Keywords: action, remake, free content - Code repository: https://github.com/MaxSavenkov/drdestructo2.git - Code language: C++ - Code license: MIT diff --git a/entries/return_to_the_roots.md b/entries/return_to_the_roots.md index ed7aa6d1..e1f5b4af 100644 --- a/entries/return_to_the_roots.md +++ b/entries/return_to_the_roots.md @@ -4,7 +4,7 @@ - Inspirations: The Settlers II - State: mature - Download: https://www.siedler25.org/index.php?com=dynamic&mod=2 -- Keywords: strategy, remake, requires original content (Settlers II Gold) +- Keywords: remake, strategy, requires original content (Settlers II Gold) - Code repository: https://launchpad.net/s25rttr, https://github.com/Return-To-The-Roots/s25client.git @add - Code language: C++ - Code license: GPL-3.0 diff --git a/entries/retux.md b/entries/retux.md index fa6c6c5d..dae1c68e 100644 --- a/entries/retux.md +++ b/entries/retux.md @@ -5,7 +5,7 @@ - State: mature, inactive since 2018 - Download: http://retux.nongnu.org/download.html - Platform: Windows, Linux -- Keywords: platform, open content, 2D +- Keywords: platform, 2D, open content - Code repository: https://git.savannah.nongnu.org/git/retux.git, http://cvs.savannah.nongnu.org:/web/retux (cvs) - Code language: Python - Code license: GPL-3.0 diff --git a/entries/rigel_engine.md b/entries/rigel_engine.md index 56fbc0c0..70844f3d 100644 --- a/entries/rigel_engine.md +++ b/entries/rigel_engine.md @@ -4,7 +4,7 @@ - Inspirations: Duke Nukem II - State: beta - Download: https://github.com/lethal-guitar/RigelEngine/releases -- Keywords: action, commercial content, game engine, remake, requires original content, shooter +- Keywords: action, game engine, remake, commercial content, requires original content, shooter - Code repository: https://github.com/lethal-guitar/RigelEngine.git - Code language: C++ - Code license: GPL-2.0 diff --git a/entries/rigs_of_rods.md b/entries/rigs_of_rods.md index ac7d907d..b394fb72 100644 --- a/entries/rigs_of_rods.md +++ b/entries/rigs_of_rods.md @@ -4,7 +4,7 @@ - Media: https://en.wikipedia.org/wiki/Rigs_of_Rods - Inspirations: BeamNG.drive - State: mature -- Download: (see homepage) +- Download: @see-home - Platform: Windows - Keywords: simulation, cars, multiplayer online, open content - Code repository: https://github.com/RigsOfRods/rigs-of-rods.git diff --git a/entries/rock-raiders-remake.md b/entries/rock-raiders-remake.md index 56191818..7f83b58d 100644 --- a/entries/rock-raiders-remake.md +++ b/entries/rock-raiders-remake.md @@ -4,7 +4,7 @@ - Inspirations: Lego Rock Raiders - State: beta - Platform: Web -- Keywords: action, commercial content, remake, requires original content +- Keywords: action, remake, commercial content, requires original content - Code repository: https://github.com/rystills/rock-raiders-remake.git - Code language: JavaScript - Code license: MIT diff --git a/entries/rogue_clone_iv.md b/entries/rogue_clone_iv.md index 1baee4fd..438ea7f0 100644 --- a/entries/rogue_clone_iv.md +++ b/entries/rogue_clone_iv.md @@ -3,7 +3,7 @@ - Home: http://rogueclone.sourceforge.net/, https://sourceforge.net/projects/rogueclone/ - State: mature, inactive since 2006 - Download: https://sourceforge.net/projects/rogueclone/files/rogue%20clone/ -- Keywords: role playing, remake, roguelike +- Keywords: remake, role playing, roguelike - Code repository: https://gitlab.com/osgames/rogueclone.git (backup of cvs), http://rogueclone.cvs.sourceforge.net (cvs) - Code language: C - Code license: 3-clause BSD diff --git a/entries/rot_magus.md b/entries/rot_magus.md index 9f61bc94..f44aa692 100644 --- a/entries/rot_magus.md +++ b/entries/rot_magus.md @@ -6,7 +6,7 @@ - State: beta - Play: https://gamejolt.com/games/rm/41491 - Platform: Web -- Keywords: role playing, open content, remake, roguelike, turn-based +- Keywords: remake, role playing, open content, roguelike, turn-based - Code repository: https://github.com/kosinaz/Rot-Magus.git, https://github.com/cxong/MagusPreservation.git @add - Code language: JavaScript - Code license: Apache-2.0, CC0 diff --git a/entries/rpgboss.md b/entries/rpgboss.md index 82bcb799..efcb9ce4 100644 --- a/entries/rpgboss.md +++ b/entries/rpgboss.md @@ -4,7 +4,7 @@ - State: beta, inactive since 2017 - Download: https://github.com/rpgboss/rpgboss/releases - Platform: Windows, Linux, macOS -- Keywords: role playing, game engine +- Keywords: game engine, role playing - Code repository: https://github.com/rpgboss/rpgboss.git - Code language: Scala, JavaScript - Code license: AGPL-3.0 diff --git a/entries/runelite.md b/entries/runelite.md index 971428c2..ff67dfbf 100644 --- a/entries/runelite.md +++ b/entries/runelite.md @@ -5,7 +5,7 @@ - Inspirations: Old School RuneScape - State: mature - Download: @see-home -- Keywords: role playing, client, commercial content, multiplayer competitive + online + co-op, remake +- Keywords: remake, role playing, client, commercial content, multiplayer competitive + online + co-op - Code repository: https://github.com/runelite/runelite.git - Code language: Java - Code license: 2-clause BSD diff --git a/entries/ryzom_core.md b/entries/ryzom_core.md index 6c08edb8..4119fdbb 100644 --- a/entries/ryzom_core.md +++ b/entries/ryzom_core.md @@ -5,7 +5,7 @@ - Inspirations: Ryzom - State: mature - Play: https://www.ryzom.com/ (commercial) -- Keywords: role playing, multiplayer massive + online, remake, requires server (?) +- Keywords: remake, role playing, multiplayer massive + online, requires server (?) - Code repository: https://github.com/ryzom/ryzomcore.git, https://gitlab.com/ryzom/ryzom-core.git (mirror) - Code language: C++ - Code license: AGPL-3.0 diff --git a/entries/scorched_moon.md b/entries/scorched_moon.md index b1b7fe11..313e62c0 100644 --- a/entries/scorched_moon.md +++ b/entries/scorched_moon.md @@ -3,7 +3,7 @@ - Home: https://scorched-moon.github.io/, https://github.com/Scorched-Moon - Inspirations: Moonbase Commander - State: beta -- Keywords: strategy, remake +- Keywords: remake, strategy - Code repository: https://github.com/Scorched-Moon/server.git, https://github.com/Scorched-Moon/client.git @add - Code language: Python - Code license: GPL-3.0 diff --git a/entries/scourge.md b/entries/scourge.md index f74fe5c0..6b64bc74 100644 --- a/entries/scourge.md +++ b/entries/scourge.md @@ -1,6 +1,6 @@ # S.C.O.U.R.G.E. -- Home: https://sourceforge.net/projects/scourge/, +- Home: https://sourceforge.net/projects/scourge/, https://web.archive.org/web/20090105165051/http://scourgeweb.org/ - State: beta, inactive since 2008 - Download: https://sourceforge.net/projects/scourge/files - Keywords: role playing, roguelike diff --git a/entries/scrabble3d.md b/entries/scrabble3d.md index ac612b2e..d7f8c4fc 100644 --- a/entries/scrabble3d.md +++ b/entries/scrabble3d.md @@ -4,7 +4,7 @@ - State: mature, inactive since 2015 - Download: @see-home - Platform: Windows, Linux, macOS -- Keywords: strategy, board +- Keywords: board, strategy - Code repository: https://gitlab.com/osgames/scrabble3d.git (conversion of svn), https://github.com/HeikoTietze/scrabble3d.git @add, https://svn.code.sf.net/p/scrabble/code (svn) - Code language: Pascal - Code license: GPL-3.0 diff --git a/entries/scummvm.md b/entries/scummvm.md index c523b741..46c1155a 100644 --- a/entries/scummvm.md +++ b/entries/scummvm.md @@ -5,7 +5,7 @@ - Inspirations: SCUMM - State: mature - Download: https://www.scummvm.org/downloads/ -- Keywords: game engine, framework, remake +- Keywords: framework, game engine, remake - Code repository: https://github.com/scummvm/scummvm.git - Code language: C++ - Code license: GPL-2.0 diff --git a/entries/sdl_sopwith.md b/entries/sdl_sopwith.md index 3f019991..42f96ff7 100644 --- a/entries/sdl_sopwith.md +++ b/entries/sdl_sopwith.md @@ -5,7 +5,7 @@ - State: mature, inactive since 2014 - Download: https://sourceforge.net/projects/sdl-sopwith/files/ - Platform: Linux -- Keywords: action, flight, remake +- Keywords: action, remake, flight - Code repository: https://gitlab.com/osgames/sdl-sopwith.git (import of svn), https://svn.code.sf.net/p/sdl-sopwith/code (svn) - Code language: C - Code license: GPL-2.0 diff --git a/entries/secret_maryo_chronicles.md b/entries/secret_maryo_chronicles.md index cc8318c3..6b8ed854 100644 --- a/entries/secret_maryo_chronicles.md +++ b/entries/secret_maryo_chronicles.md @@ -6,7 +6,7 @@ - State: mature, inactive since 2009 - Download: https://sourceforge.net/projects/smclone/files - Keywords: action, puzzle, remake -- Code repository: https://github.com/FluXy/SMC.git, (svn was at https://web.archive.org/web/20081217043011/https://opensvn.csie.org/SMC/SMC/) +- Code repository: https://github.com/FluXy/SMC.git (svn was at https://web.archive.org/web/20081217043011/https://opensvn.csie.org/SMC/SMC/) - Code language: C++ - Code license: GPL-3.0 diff --git a/entries/settlers_iii_remake.md b/entries/settlers_iii_remake.md index 927aae49..f4f60edb 100644 --- a/entries/settlers_iii_remake.md +++ b/entries/settlers_iii_remake.md @@ -3,7 +3,7 @@ - Home: https://github.com/jsettlers/settlers-remake - State: beta - Download: https://github.com/jsettlers/settlers-remake/releases -- Keywords: strategy, remake, requires original content +- Keywords: remake, strategy, requires original content - Code repository: https://github.com/jsettlers/settlers-remake.git - Code language: Java - Code license: MIT diff --git a/entries/seven_kingdoms_ancient_adversaries.md b/entries/seven_kingdoms_ancient_adversaries.md index f19308ce..d45cb5a5 100644 --- a/entries/seven_kingdoms_ancient_adversaries.md +++ b/entries/seven_kingdoms_ancient_adversaries.md @@ -5,7 +5,7 @@ - State: mature - Download: https://www.7kfans.com/wiki/index.php/Download, https://sourceforge.net/projects/skfans/files/, https://github.com/the3dfxdude/7kaa/releases - Platform: Windows, Linux -- Keywords: strategy, remake +- Keywords: remake, strategy - Code repository: https://github.com/the3dfxdude/7kaa.git - Code language: C++ - Code license: GPL-2.0 diff --git a/entries/sfall.md b/entries/sfall.md index af3cee97..eb5eaff9 100644 --- a/entries/sfall.md +++ b/entries/sfall.md @@ -4,7 +4,7 @@ - Inspirations: Fallout 2 - State: mature - Download: https://github.com/phobos2077/sfall/releases -- Keywords: game engine, commercial content, remake, requires original content (full original game) +- Keywords: game engine, remake, commercial content, requires original content (full original game) - Code repository: https://github.com/phobos2077/sfall.git - Code language: C++, C - Code license: GPL-3.0 diff --git a/entries/sge_game_engine.md b/entries/sge_game_engine.md index 6514f390..c93a335b 100644 --- a/entries/sge_game_engine.md +++ b/entries/sge_game_engine.md @@ -3,7 +3,7 @@ - Home: https://python-sge.github.io/, https://pypi.org/project/sge/, https://savannah.nongnu.org/projects/stellarengine - State: mature, inactive since 2017 - Download: https://python-sge.github.io/download.html -- Keywords: game engine, 2D, framework +- Keywords: framework, game engine, 2D - Code repository: https://github.com/python-sge/sge.git, https://git.savannah.nongnu.org/git/stellarengine.git @add, http://cvs.savannah.nongnu.org:/web/stellarengine (cvs) - Code language: Python - Code license: LGPL-3.0 diff --git a/entries/simple-solitaire.md b/entries/simple-solitaire.md index b85724b4..7f0ac78c 100644 --- a/entries/simple-solitaire.md +++ b/entries/simple-solitaire.md @@ -3,7 +3,7 @@ - Home: https://play.google.com/store/apps/details?id=de.tobiasbielefeld.solitaire, https://f-droid.org/packages/de.tobiasbielefeld.solitaire/ - State: mature - Platform: Android -- Keywords: strategy, cards +- Keywords: cards, strategy - Code repository: https://github.com/TobiasBielefeld/Simple-Solitaire.git - Code language: Java - Code license: GPL-3.0 diff --git a/entries/smash_battle.md b/entries/smash_battle.md index 7e351c64..01e367c2 100644 --- a/entries/smash_battle.md +++ b/entries/smash_battle.md @@ -4,7 +4,7 @@ - State: beta, inactive since 2011 - Download: https://smashbattle.demontpx.com/downloads/, https://sourceforge.net/projects/smashbattle/files/ - Platform: Windows, Linux -- Keywords: action, 2D, platform, shootem +- Keywords: action, platform, 2D, shootem - Code repository: @see-download - Code language: C++ - Code license: ? diff --git a/entries/snowballz.md b/entries/snowballz.md index e2d769df..c46a2520 100644 --- a/entries/snowballz.md +++ b/entries/snowballz.md @@ -5,7 +5,7 @@ - Keywords: strategy, open content, real time - Code repository: https://gitlab.com/osgames/snowballz.git (conversion of cvs), http://snowballz.cvs.sourceforge.net (cvs) - Code language: Python -- Code license: GPL +- Code license: ? (GPL version?) - Code dependencies: pygame, pyglet, Rabbyt - Assets license: GPL - Developer: Joey Marshall, Mikey Lubker diff --git a/entries/solarwolf.md b/entries/solarwolf.md index 45fc278f..83b5e7ee 100644 --- a/entries/solarwolf.md +++ b/entries/solarwolf.md @@ -5,7 +5,7 @@ - State: mature, inactive since 2004 - Download: https://www.pygame.org/shredwheat/solarwolf/index.shtml#download - Platform: Windows, Linux, macOS -- Keywords: action, arcade, open content, remake +- Keywords: action, arcade, remake, open content - Code repository: https://gitlab.com/osgames/solarwolf.git (import of source releases) - Code language: Python - Code license: LGPL-2.1 diff --git a/entries/sopwith_3.md b/entries/sopwith_3.md index 6eb4e307..0d2c64b1 100644 --- a/entries/sopwith_3.md +++ b/entries/sopwith_3.md @@ -1,11 +1,11 @@ # Sopwith 3 - Home: http://sopwith3.sourceforge.net/, https://sourceforge.net/projects/sopwith3/, http://www.wingkong.net/sopwith2b/sopwith3.html -- Media: +- Media: https://en.wikipedia.org/wiki/Sopwith_(video_game) - Inspirations: Sopwith - State: beta, inactive since 2003 - Download: http://www.wingkong.net/sopwith2b/files-games.html, https://sourceforge.net/projects/sopwith3/files/ -- Keywords: simulation, flight, remake +- Keywords: remake, simulation, flight - Code repository: https://gitlab.com/osgames/sopwith3.git (conversion of cvs), http://sopwith3.cvs.sourceforge.net (cvs) - Code language: C, C++, Objective-C - Code license: GPL-2.0 diff --git a/entries/space_station_13.md b/entries/space_station_13.md index f8c4421d..1e94b94b 100644 --- a/entries/space_station_13.md +++ b/entries/space_station_13.md @@ -4,7 +4,7 @@ - Media: https://en.wikipedia.org/wiki/Space_Station_13 - State: mature - Keywords: role playing, online -- Code repository: (many different versions, see below) +- Code repository: ? (many different versions, see below) - Code language: DM - Code license: AGPL-3.0 diff --git a/entries/spludlow_tetris.md b/entries/spludlow_tetris.md index 5a589012..93f64d15 100644 --- a/entries/spludlow_tetris.md +++ b/entries/spludlow_tetris.md @@ -5,7 +5,7 @@ - State: mature, inactive since 2018 - Download: https://www.spludlow.co.uk/Install/Downloads.aspx - Keywords: puzzle, clone, multiplayer online + LAN + split-screen, open content -- Code repository: (see download and at https://www.spludlow.co.uk/Source/Spludlow.Tetris/) +- Code repository: @see-download (and https://www.spludlow.co.uk/Source/Spludlow.Tetris/) - Code language: C# - Code license: GPL-3.0 diff --git a/entries/spring.md b/entries/spring.md index edb20c65..4cc3a8f3 100644 --- a/entries/spring.md +++ b/entries/spring.md @@ -5,7 +5,7 @@ - Inspirations: Total Annihilation - State: mature - Download: https://springrts.com/wiki/Download -- Keywords: strategy, game engine, real time, remake +- Keywords: game engine, remake, strategy, real time - Code repository: https://github.com/spring/spring.git, https://git.code.sf.net/p/springrts/code - Code language: C++, C, Lua - Code license: GPL-2.0 diff --git a/entries/spring_1944.md b/entries/spring_1944.md index b3a2b753..b753f0b3 100644 --- a/entries/spring_1944.md +++ b/entries/spring_1944.md @@ -1,7 +1,7 @@ # Spring: 1944 - Home: http://spring1944.net -- Inspirations: Company of Heroes, Company of Heroes: Opposing Fronts, Company of Heroes: Tales of Valor, Company of Heroes 2 +- Inspirations: Company of Heroes, Company of Heroes 2, Company of Heroes: Opposing Fronts, Company of Heroes: Tales of Valor - State: mature - Keywords: strategy, clone, real time - Code repository: https://github.com/spring1944/spring1944.git diff --git a/entries/squiffy.md b/entries/squiffy.md index b59e1e0b..79f05ce9 100644 --- a/entries/squiffy.md +++ b/entries/squiffy.md @@ -4,7 +4,7 @@ - State: mature - Download: https://github.com/textadventures/squiffy/releases - Platform: Web -- Keywords: tool, game engine, interactive fiction +- Keywords: game engine, tool, interactive fiction - Code repository: https://github.com/textadventures/squiffy.git - Code language: JavaScript - Code license: MIT diff --git a/entries/sr.md b/entries/sr.md index 34ddbb51..d44a6919 100644 --- a/entries/sr.md +++ b/entries/sr.md @@ -6,7 +6,7 @@ - Keywords: tool, commercial content - Code repository: https://github.com/M-HT/SR.git - Code language: C, Assembly -- Code license: MIT, GPL-2.0, LGPL-2.0 or 2.1? +- Code license: MIT, GPL-2.0, ? (LGPL-2.0 or 2.1?) - Code dependencies: OpenGL, SDL Tool to statically recompile the original game executable to create a Windows or Linux version of the game. diff --git a/entries/ss13_remake.md b/entries/ss13_remake.md index 79594483..b8489a24 100644 --- a/entries/ss13_remake.md +++ b/entries/ss13_remake.md @@ -3,7 +3,7 @@ - Home: https://github.com/ss13remake/ss13remake - Inspirations: Space Station 13 - State: beta, inactive since 2015 -- Keywords: role playing, online, remake +- Keywords: remake, role playing, online - Code repository: https://github.com/ss13remake/ss13remake.git - Code language: C# - Code license: GPL-3.0 diff --git a/entries/star_maiden_astraea_rio.md b/entries/star_maiden_astraea_rio.md index 36e7ff70..a670d384 100644 --- a/entries/star_maiden_astraea_rio.md +++ b/entries/star_maiden_astraea_rio.md @@ -4,9 +4,9 @@ - Media: https://web.archive.org/web/20160422072505/https://lgdb.org/game/star_maiden_rio - State: mature - Download: http://www.mediafire.com/file/jog3fcfxgsyd03f/Astraea_Rio-1.05-all.zip/file -- Keywords: adventure, for adults, visual novel +- Keywords: adventure, visual novel, for adults - Code repository: @see-download -- Code language: Ren'py +- Code language: Ren'Py - Code license: MIT - Code dependencies: Ren'Py - Assets license: CC-NC (see readme.txt) diff --git a/entries/star_ruler_2.md b/entries/star_ruler_2.md index 1cf1916a..0f45e225 100644 --- a/entries/star_ruler_2.md +++ b/entries/star_ruler_2.md @@ -3,7 +3,7 @@ - Home: http://starruler2.com/ - Inspirations: Star Ruler 2 - State: mature -- Keywords: strategy, real time, remake +- Keywords: remake, strategy, real time - Code repository: https://github.com/BlindMindStudios/StarRuler2-Source.git - Code language: C, C++ - Code license: MIT diff --git a/entries/stepmania.md b/entries/stepmania.md index 0aa0e55f..d3092acc 100644 --- a/entries/stepmania.md +++ b/entries/stepmania.md @@ -1,7 +1,7 @@ # StepMania - Home: https://www.stepmania.com/, https://sourceforge.net/projects/stepmania/ -- Media: https://en.wikipedia.org/wiki/StepMania, https://en.wikipedia.org/wiki/Dance_Dance_Revolution#Similar_games +- Media: https://en.wikipedia.org/wiki/Dance_Dance_Revolution#Similar_games, https://en.wikipedia.org/wiki/StepMania - Inspirations: Dance Dance Revolution - State: mature - Download: https://sourceforge.net/projects/stepmania/files/ diff --git a/entries/stratagus.md b/entries/stratagus.md index 308eab51..d10f634d 100644 --- a/entries/stratagus.md +++ b/entries/stratagus.md @@ -3,7 +3,7 @@ - Home: https://wargus.github.io/stratagus.html - State: mature - Platform: Windows, Linux, macOS -- Keywords: strategy, game engine +- Keywords: game engine, strategy - Code repository: https://github.com/Wargus/stratagus.git - Code language: C++ - Code license: GPL-2.0 diff --git a/entries/stringrolled.md b/entries/stringrolled.md index cf0f4748..72595205 100644 --- a/entries/stringrolled.md +++ b/entries/stringrolled.md @@ -2,7 +2,7 @@ - Home: https://pyweek.org/e/Rambo/ - State: beta, inactive since 2008 -- Keywords: platform, open content, puzzle +- Keywords: platform, puzzle, open content - Code repository: https://gitlab.com/osgames/stringrolled.git (import of sources) - Code language: Python - Code license: Public domain diff --git a/entries/stunt_car_racer_remake.md b/entries/stunt_car_racer_remake.md index c5000ae4..e18c1b1d 100644 --- a/entries/stunt_car_racer_remake.md +++ b/entries/stunt_car_racer_remake.md @@ -5,7 +5,7 @@ - State: beta, inactive since 2012 - Download: https://sourceforge.net/projects/stuntcarremake/files/ - Platform: Windows -- Keywords: simulation, racing, remake +- Keywords: remake, simulation, racing - Code repository: https://git.code.sf.net/p/stuntcarremake/code - Code language: C++ - Code license: Proprietary (!) diff --git a/entries/summoning_wars.md b/entries/summoning_wars.md index 13561631..47d14d6a 100644 --- a/entries/summoning_wars.md +++ b/entries/summoning_wars.md @@ -1,9 +1,9 @@ # Summoning Wars -- Home: , http://sumwars.org/forum/, https://web.archive.org/web/20190403171409/https://bitbucket.org/sumwars/sumwars-code +- Home: https://web.archive.org/web/20161221150109/http://sumwars.org:80/wiki/Main_Page, http://sumwars.org/forum/, https://web.archive.org/web/20190403171409/https://bitbucket.org/sumwars/sumwars-code - Inspirations: Diablo - State: beta, inactive since 2014 -- Download: +- Download: https://web.archive.org/web/20160704003202/http://sumwars.org:80/wiki/Download - Keywords: role playing, clone, multiplayer - Code repository: https://gitlab.com/osgames/sumwars.git - Code language: C, C++, Lua diff --git a/entries/sundog.md b/entries/sundog.md index e9571ff8..2eb99cd1 100644 --- a/entries/sundog.md +++ b/entries/sundog.md @@ -5,7 +5,7 @@ - Inspirations: SunDog: Frozen Legacy - State: beta - Platform: Linux -- Keywords: role playing, commercial content, game engine, remake, requires original content, simulation, space +- Keywords: game engine, remake, role playing, simulation, commercial content, requires original content, space - Code repository: https://github.com/laanwj/sundog.git - Code language: C, C++, Python - Code license: MIT diff --git a/entries/sundog_resurrection.md b/entries/sundog_resurrection.md index 5dabf0d3..53163bfb 100644 --- a/entries/sundog_resurrection.md +++ b/entries/sundog_resurrection.md @@ -4,7 +4,7 @@ - Inspirations: SunDog: Frozen Legacy - State: beta - Download: http://www.sundogresurrectionproject.com/downloads.html -- Keywords: role playing, remake, simulation, space +- Keywords: remake, role playing, simulation, space - Code repository: https://svn.code.sf.net/p/sundog/code (svn), http://sundog.cvs.sourceforge.net (cvs) - Code language: Java, Python - Code license: ? diff --git a/entries/supaxl.md b/entries/supaxl.md index c2bd2c30..6ed5fa05 100644 --- a/entries/supaxl.md +++ b/entries/supaxl.md @@ -3,7 +3,7 @@ - Home: https://eguneys.github.io/jsgames/ - Inspirations: Supaplex - State: mature -- Keywords: puzzle, content commercial, remake, skill +- Keywords: puzzle, remake, content commercial, skill - Code repository: https://github.com/eguneys/supaxl.git - Code language: JavaScript - Code license: MIT diff --git a/entries/syndicate_wars_port.md b/entries/syndicate_wars_port.md index c2d225d3..94dd14fd 100644 --- a/entries/syndicate_wars_port.md +++ b/entries/syndicate_wars_port.md @@ -5,7 +5,7 @@ - Inspirations: Syndicate Wars - State: beta, inactive since 2010 - Download: http://swars.vexillium.org/#download -- Keywords: action, commercial content, real time, remake, requires original content, strategy +- Keywords: action, remake, strategy, commercial content, real time, requires original content - Code repository: @see-download - Code language: C - Code license: GPL-3.0 diff --git a/entries/taisei_project.md b/entries/taisei_project.md index 0da313c9..4eae9f1d 100644 --- a/entries/taisei_project.md +++ b/entries/taisei_project.md @@ -6,7 +6,7 @@ - Play: https://play.taisei-project.org/ - Download: https://taisei-project.org/download, https://github.com/taisei-project/taisei/releases - Platform: Windows, Linux, macOS, Web -- Keywords: action, open content, remake, shootem +- Keywords: action, remake, open content, shootem - Code repository: https://github.com/taisei-project/taisei.git - Code language: C, Python - Code license: MIT diff --git a/entries/tank_zone_of_death.md b/entries/tank_zone_of_death.md index e6ef93c4..192ca460 100644 --- a/entries/tank_zone_of_death.md +++ b/entries/tank_zone_of_death.md @@ -1,7 +1,7 @@ # Tank: Zone of Death - Home: https://zod.fandom.com/ru/wiki/Главная (Russian) -- Media: +- Media: https://en.wikipedia.org/wiki/Battle_City_(video_game) - Inspirations: Battle City - State: beta, inactive since 2017 - Keywords: action, clone, shooter diff --git a/entries/tekwargdx.md b/entries/tekwargdx.md index 0fdfd599..03fb1487 100644 --- a/entries/tekwargdx.md +++ b/entries/tekwargdx.md @@ -4,7 +4,7 @@ - Media: https://en.wikipedia.org/wiki/William_Shatner%27s_TekWar - Inspirations: TekWar - State: beta -- Keywords: action, commercial content, first person, remake, shooter +- Keywords: action, remake, commercial content, first person, shooter - Code repository: https://gitlab.com/m210/TekwarGDX.git - Code language: Java - Code license: Custom (see buildlic.txt + GPL-3.0) diff --git a/entries/terasology.md b/entries/terasology.md index 3a4739fc..d1738b56 100644 --- a/entries/terasology.md +++ b/entries/terasology.md @@ -3,7 +3,7 @@ - Home: https://terasology.org/ - Inspirations: Minecraft - State: mature -- Keywords: framework, 3D, remake +- Keywords: framework, remake, 3D - Code repository: https://github.com/MovingBlocks/Terasology.git - Code language: Java - Code license: Apache-2.0 diff --git a/entries/terrarium.md b/entries/terrarium.md index 60d5f6f0..fc81e130 100644 --- a/entries/terrarium.md +++ b/entries/terrarium.md @@ -4,7 +4,7 @@ - Media: https://en.wikipedia.org/wiki/Terraria - Inspirations: Terraria - State: beta -- Keywords: action, 2D, adventure, remake, sandbox +- Keywords: action, adventure, remake, 2D, sandbox - Code repository: https://gitlab.com/hydren/terrarium.git - Code language: C++ - Code license: GPL-2.0 diff --git a/entries/tetris_in_c_and_ncurses.md b/entries/tetris_in_c_and_ncurses.md index 2a8657bd..ea9cdcf4 100644 --- a/entries/tetris_in_c_and_ncurses.md +++ b/entries/tetris_in_c_and_ncurses.md @@ -3,7 +3,7 @@ - Home: https://brennan.io/2015/06/12/tetris-reimplementation/ - Inspirations: Tetris - State: mature -- Keywords: puzzle, open content, remake +- Keywords: puzzle, remake, open content - Code repository: https://github.com/brenns10/tetris.git - Code language: C - Code license: 3-clause BSD diff --git a/entries/the_bubs_brothers.md b/entries/the_bubs_brothers.md index 8abc4195..ff998c2c 100644 --- a/entries/the_bubs_brothers.md +++ b/entries/the_bubs_brothers.md @@ -5,7 +5,7 @@ - State: mature, inactive since 2013 - Download: http://bub-n-bros.sourceforge.net/download.html - Platform: Windows, Linux, macOS -- Keywords: board, clone, remake +- Keywords: board, remake, clone - Code repository: https://bitbucket.org/arigo/bub-n-bros (hg), https://gitlab.com/osgames/the-bubs-brothers.git @add, http://bub-n-bros.cvs.sourceforge.net (cvs) - Code language: Python - Code license: MIT diff --git a/entries/the_eternity_engine.md b/entries/the_eternity_engine.md index 9cddfc59..1141738a 100644 --- a/entries/the_eternity_engine.md +++ b/entries/the_eternity_engine.md @@ -5,7 +5,7 @@ - State: mature - Download: https://github.com/team-eternity/eternity/releases - Platform: Windows, Linux, macOS -- Keywords: game engine, commercial content (?), first-person, multiplayer LAN, remake, requires original content, shooter +- Keywords: game engine, remake, commercial content (?), first-person, multiplayer LAN, requires original content, shooter - Code repository: https://github.com/team-eternity/eternity.git - Code language: C, C++ - Code license: GPL-3.0 diff --git a/entries/the_force_engine.md b/entries/the_force_engine.md index 84847ffd..f2468493 100644 --- a/entries/the_force_engine.md +++ b/entries/the_force_engine.md @@ -4,7 +4,7 @@ - Media: https://en.wikipedia.org/wiki/Star_Wars:_Dark_Forces - Inspirations: Dark Forces, Outlaws - State: beta -- Keywords: action, commercial content, first person, game engine, remake, requires original content, shooter +- Keywords: action, game engine, remake, commercial content, first person, requires original content, shooter - Code repository: https://github.com/luciusDXL/TheForceEngine.git - Code language: C++ - Code license: GPL-2.0 diff --git a/entries/the_legend_of_edgar.md b/entries/the_legend_of_edgar.md index d6c351f7..129ae662 100644 --- a/entries/the_legend_of_edgar.md +++ b/entries/the_legend_of_edgar.md @@ -4,7 +4,7 @@ - State: mature - Download: https://www.parallelrealities.co.uk/games/edgar/#downloads-/-releases, https://github.com/riksweeney/edgar/releases - Platform: Windows, Linux -- Keywords: action, 2D, platform +- Keywords: action, platform, 2D - Code repository: https://github.com/riksweeney/edgar.git - Code language: C - Code license: GPL-2.0 diff --git a/entries/the_secret_chronicles_of_dr_m.md b/entries/the_secret_chronicles_of_dr_m.md index 236933d1..c0c1a23c 100644 --- a/entries/the_secret_chronicles_of_dr_m.md +++ b/entries/the_secret_chronicles_of_dr_m.md @@ -5,7 +5,7 @@ - State: mature - Download: https://secretchronicles.org/en/download/ - Platform: Windows, Linux -- Keywords: platform, 2D, remake, scrolling +- Keywords: platform, remake, 2D, scrolling - Code repository: https://github.com/secretchronicles/TSC.git - Code language: C++ - Code license: GPL-3.0 diff --git a/entries/the_ur-quan_masters.md b/entries/the_ur-quan_masters.md index 8c5a1d76..675e85aa 100644 --- a/entries/the_ur-quan_masters.md +++ b/entries/the_ur-quan_masters.md @@ -5,7 +5,7 @@ - Inspirations: Star Control 2 - State: mature, inactive since 2011 - Download: http://sc2.sourceforge.net/downloads.php -- Keywords: strategy, remake, turn-based +- Keywords: remake, strategy, turn-based - Code repository: https://git.code.sf.net/p/sc2/uqm, https://gitlab.com/osgames/uqm.git @add - Code language: C - Code license: GPL-2.0 diff --git a/entries/theme_park_builder_3d_cad.md b/entries/theme_park_builder_3d_cad.md index e8725512..214277be 100644 --- a/entries/theme_park_builder_3d_cad.md +++ b/entries/theme_park_builder_3d_cad.md @@ -4,7 +4,7 @@ - Inspirations: Theme Park - State: beta, inactive since 2013 - Download: https://sourceforge.net/projects/tpb3d/files/tpb3d/ -- Keywords: simulation, remake +- Keywords: remake, simulation - Code repository: https://svn.code.sf.net/p/tpb3d/code (svn) - Code language: C++ - Code license: GPL-3.0 diff --git a/entries/thiefcatcher.md b/entries/thiefcatcher.md index 9230f924..34dacc46 100644 --- a/entries/thiefcatcher.md +++ b/entries/thiefcatcher.md @@ -1,10 +1,10 @@ # thiefcatcher - Home: https://github.com/Ponup/thiefcatcher -- Media: +- Media: https://en.wikipedia.org/wiki/Where_in_the_World_Is_Carmen_Sandiego%3F_(1985_video_game) - Inspirations: Where in the World Is Carmen Sandiego? (1985) - State: beta -- Keywords: strategy, educational, remake +- Keywords: educational, remake, strategy - Code repository: https://github.com/Ponup/thiefcatcher.git - Code language: C++ - Code license: GPL-3.0 diff --git a/entries/thousand_parsec.md b/entries/thousand_parsec.md index f9937f3a..39edf63d 100644 --- a/entries/thousand_parsec.md +++ b/entries/thousand_parsec.md @@ -4,7 +4,7 @@ - State: beta, inactive since 2012 - Download: https://web.archive.org/web/20180523204730/http://www.thousandparsec.net/tp/download-instructions.php - Keywords: strategy -- Code repository: https://github.com/thousandparsec/tpserver-cpp.git, https://github.com/thousandparsec/tpclient-pywx.git @add, (http://git.thousandparsec.net/ not available right now) +- Code repository: https://github.com/thousandparsec/tpserver-cpp.git, https://github.com/thousandparsec/tpclient-pywx.git @add, http://git.thousandparsec.net/ (not available right now) - Code language: C++, Python - Code license: GPL-2.0 - Code dependencies: NumPy, psyco, pygame, pyOpenSSL, wxPython diff --git a/entries/thunderlightning.md b/entries/thunderlightning.md index 001de8ac..50f97611 100644 --- a/entries/thunderlightning.md +++ b/entries/thunderlightning.md @@ -4,7 +4,7 @@ - Inspirations: Carrier Command - State: beta, inactive since 2015 - Download: http://tnlgame.net/content/view/37/57/ -- Keywords: simulation, flight, real time, strategy +- Keywords: simulation, strategy, flight, real time - Code repository: https://github.com/indyjo/Thunder-Lightning.git - Code language: C, C++, Io - Code license: GPL-2.0 diff --git a/entries/thyme.md b/entries/thyme.md index c01d45fe..f94e4800 100644 --- a/entries/thyme.md +++ b/entries/thyme.md @@ -3,7 +3,7 @@ - Home: https://github.com/TheAssemblyArmada/Thyme - Inspirations: Command & Conquer: Generals - State: beta -- Keywords: strategy, commercial content, real time, remake, requires original content +- Keywords: remake, strategy, commercial content, real time, requires original content - Code repository: https://github.com/TheAssemblyArmada/Thyme.git - Code language: C, C++ - Code license: GPL-2.0 diff --git a/entries/total_annihilation_3d.md b/entries/total_annihilation_3d.md index 70b20e12..2bcbac58 100644 --- a/entries/total_annihilation_3d.md +++ b/entries/total_annihilation_3d.md @@ -6,7 +6,7 @@ - State: beta, inactive since 2017 - Download: @see-home - Platform: Windows, Linux, macOS -- Keywords: strategy, real time, remake +- Keywords: remake, strategy, real time - Code repository: https://github.com/zuzuf/TA3D.git - Code language: C++, C, Lua - Code license: GPL-2.0 diff --git a/entries/towerjumper.md b/entries/towerjumper.md index 702c38d4..887ed52e 100644 --- a/entries/towerjumper.md +++ b/entries/towerjumper.md @@ -4,7 +4,7 @@ - State: mature - Download: https://f-droid.org/packages/org.pipoypipagames.towerjumper/ - Platform: Android -- Keywords: arcade, skill, strategy +- Keywords: arcade, strategy, skill - Code repository: https://github.com/Dariasteam/TowerJumper.git - Code language: C++, GDScript - Code license: GPL-3.0 diff --git a/entries/trinity_reign.md b/entries/trinity_reign.md index 9ed93b68..494d9a4e 100644 --- a/entries/trinity_reign.md +++ b/entries/trinity_reign.md @@ -1,6 +1,6 @@ # Trinity Reign -- Home: , https://sourceforge.net/projects/ura-game/ +- Home: https://web.archive.org/web/20131209073248/http://trinity-reign.com/, https://sourceforge.net/projects/ura-game/ - State: beta, inactive since 2013 - Keywords: role playing - Code repository: https://gitlab.com/osgames/ura-game.git (backup of svn), https://svn.code.sf.net/p/ura-game/code (svn) diff --git a/entries/truecraft.md b/entries/truecraft.md index 1a1c3447..5a59c180 100644 --- a/entries/truecraft.md +++ b/entries/truecraft.md @@ -3,7 +3,7 @@ - Home: https://web.archive.org/web/20180423174517/https://truecraft.io/ - Inspirations: Minecraft - State: beta, inactive since 2018 -- Keywords: simulation, open content, remake, sandbox, voxel +- Keywords: remake, simulation, open content, sandbox, voxel - Code repository: https://github.com/ddevault/TrueCraft.git (archived), https://github.com/danielcrenna/TrueCraft.git @add - Code language: C# - Code license: MIT diff --git a/entries/ttdpatch.md b/entries/ttdpatch.md index c0e327f4..ef577589 100644 --- a/entries/ttdpatch.md +++ b/entries/ttdpatch.md @@ -4,7 +4,7 @@ - Inspirations: Transport Tycoon - State: mature, inactive since 2013 - Platform: Windows -- Keywords: simulation, commercial content, requires original content, tool +- Keywords: simulation, tool, commercial content, requires original content - Code repository: https://github.com/ttdpatch/ttdpatch.git - Code language: Assembly, C, C++ - Code license: GPL-2.0 diff --git a/entries/tumbly_towers.md b/entries/tumbly_towers.md index fd68dbad..d75fbd25 100644 --- a/entries/tumbly_towers.md +++ b/entries/tumbly_towers.md @@ -6,7 +6,7 @@ - State: beta, inactive since 2017 - Download: https://github.com/SteveSmith16384/TumblyTowers/releases - Platform: Windows, Linux -- Keywords: puzzle, multiplayer, open content, remake, skill +- Keywords: puzzle, remake, multiplayer, open content, skill - Code repository: https://github.com/SteveSmith16384/TumblyTowers.git - Code language: Java - Code license: MIT diff --git a/entries/tussle.md b/entries/tussle.md index bbbeeb90..13f3d64b 100644 --- a/entries/tussle.md +++ b/entries/tussle.md @@ -5,7 +5,7 @@ - State: mature, inactive since 2017 - Download: https://projecttussle.com/download - Platform: Windows, Linux -- Keywords: action, clone, free content, multiplayer competitive, platform +- Keywords: action, platform, clone, free content, multiplayer competitive - Code repository: https://github.com/digiholic/universalSmashSystem.git - Code language: Python - Code license: GPL-3.0 diff --git a/entries/tux_football.md b/entries/tux_football.md index c6febfe4..6b69d9ff 100644 --- a/entries/tux_football.md +++ b/entries/tux_football.md @@ -4,7 +4,7 @@ - State: beta, inactive since 2012 - Download: http://tuxfootball.sourceforge.net/index.php?plugin=EnticorePluginStaticContent&config=idx%3A3, https://sourceforge.net/projects/tuxfootball/files/ - Platform: Windows, Linux -- Keywords: arcade, 2D, simulation, sports +- Keywords: arcade, simulation, sports, 2D - Code repository: https://git.code.sf.net/p/tuxfootball/code, https://gitlab.com/osgames/tuxfootball.git @add - Code language: C++ - Code license: GPL-2.0 diff --git a/entries/tux_paint.md b/entries/tux_paint.md index 0593b27d..40afbabe 100644 --- a/entries/tux_paint.md +++ b/entries/tux_paint.md @@ -5,7 +5,7 @@ - Download: http://tuxpaint.org/download/, https://sourceforge.net/projects/tuxpaint/files/ - Platform: Windows, Linux, macOS, Android, iOS - Keywords: educational, for kids, open content -- Code repository: (https://sourceforge.net/p/tuxpaint/_list/git unavailable currently) +- Code repository: ? (https://sourceforge.net/p/tuxpaint/_list/git unavailable currently) - Code language: C, C++ - Code license: GPL-2.0 - Assets license: ? (GPL-2.0 + Public Domain) diff --git a/entries/tuxemon.md b/entries/tuxemon.md index 6680a856..678caeae 100644 --- a/entries/tuxemon.md +++ b/entries/tuxemon.md @@ -4,7 +4,7 @@ - Inspirations: Pokémon - State: mature - Download: https://www.tuxemon.org/download.html -- Keywords: role playing, remake, turn-based +- Keywords: remake, role playing, turn-based - Code repository: https://github.com/Tuxemon/Tuxemon.git - Code language: Python - Code license: GPL-3.0 diff --git a/entries/tvtower.md b/entries/tvtower.md index 881a4ded..acb50736 100644 --- a/entries/tvtower.md +++ b/entries/tvtower.md @@ -1,11 +1,11 @@ # TVTower - Home: https://tvtower.org/ -- Media: +- Media: https://en.wikipedia.org/wiki/Mad_TV_(video_game)#Remakes - Inspirations: Mad TV - State: mature - Download: @see-home -- Keywords: strategy, remake +- Keywords: remake, strategy - Code repository: https://github.com/TVTower/TVTower.git - Code language: BlitzMax, Lua - Code license: Custom (similar to MIT, Apache) diff --git a/entries/twin-e.md b/entries/twin-e.md index b265e2af..bc234c59 100644 --- a/entries/twin-e.md +++ b/entries/twin-e.md @@ -3,7 +3,7 @@ - Home: https://forum.magicball.net/forumdisplay.php?f=66 - Inspirations: Little Big Adventure - State: beta, inactive since 2015 -- Keywords: adventure, commercial content, game engine, remake, requires original content +- Keywords: adventure, game engine, remake, commercial content, requires original content - Code repository: https://github.com/xesf/twin-e.git - Code language: C - Code license: GPL-2.0 diff --git a/entries/twine.md b/entries/twine.md index 412c3517..96a2e554 100644 --- a/entries/twine.md +++ b/entries/twine.md @@ -3,7 +3,7 @@ - Home: http://twinery.org/ - State: mature - Platform: Web -- Keywords: tool, game engine, interactive fiction, text-based +- Keywords: game engine, tool, interactive fiction, text-based - Code repository: https://github.com/klembot/twinejs.git - Code language: JavaScript - Code license: GPL-3.0 diff --git a/entries/twinengine.md b/entries/twinengine.md index 3f157c02..68c1f03e 100644 --- a/entries/twinengine.md +++ b/entries/twinengine.md @@ -3,7 +3,7 @@ - Home: https://forum.magicball.net/forumdisplay.php?f=66 - Inspirations: Little Big Adventure - State: mature, inactive since 2015 -- Keywords: adventure, commercial content, game engine, remake, requires original content (Little Big Adventure 1) +- Keywords: adventure, game engine, remake, commercial content, requires original content (Little Big Adventure 1) - Code repository: https://github.com/xesf/twin-e.git - Code language: C - Code license: GPL-2.0 diff --git a/entries/twisted.md b/entries/twisted.md index c51b3dff..b661ff83 100644 --- a/entries/twisted.md +++ b/entries/twisted.md @@ -1,7 +1,7 @@ # Twisted - Home: https://twistedmatrix.com/trac/ -- Media: +- Media: https://en.wikipedia.org/wiki/Twisted_(software) - State: mature - Download: https://pypi.org/project/Twisted/ - Platform: Windows, Linux diff --git a/entries/tyrian_remake.md b/entries/tyrian_remake.md index 1bbb5b81..9c24e6f6 100644 --- a/entries/tyrian_remake.md +++ b/entries/tyrian_remake.md @@ -1,7 +1,7 @@ # Tyrian Remake - Home: https://www.b3dgs.com/v7/page.php?lang=en§ion=tyrian_remake -- Media: +- Media: https://en.wikipedia.org/wiki/Tyrian_(video_game) - Inspirations: Tyrian - State: beta - Keywords: action, remake, scrolling, shootem diff --git a/entries/uebergame.md b/entries/uebergame.md index 2f281211..7105cd37 100644 --- a/entries/uebergame.md +++ b/entries/uebergame.md @@ -2,7 +2,7 @@ - Home: https://duion.com/games/uebergame/main - Media: https://en.wikipedia.org/wiki/ARMA:_Armed_Assault -- Inspirations: ARMA: Armed Assault, ARMA 2, ARMA 3 +- Inspirations: ARMA 2, ARMA 3, ARMA: Armed Assault - State: mature - Download: https://duion.com/games/uebergame/downloads - Platform: Windows diff --git a/entries/ufo2000.md b/entries/ufo2000.md index c0cd750b..5ea8519a 100644 --- a/entries/ufo2000.md +++ b/entries/ufo2000.md @@ -4,7 +4,7 @@ - Inspirations: UFO: Enemy Unknown, X-COM: Apocalypse, X-COM: Terror from the Deep, X-COM: UFO Defense - State: mature, inactive since 2012 - Download: @see-home -- Keywords: strategy, remake +- Keywords: remake, strategy - Code repository: https://github.com/ufo2000/ufo2000.git (mirror of svn), https://svn.code.sf.net/p/ufo2000/code (svn) - Code language: C, C++, Lua - Code license: GPL-2.0 diff --git a/entries/ufo_alien_invasion.md b/entries/ufo_alien_invasion.md index 717eb2b5..b5ce8123 100644 --- a/entries/ufo_alien_invasion.md +++ b/entries/ufo_alien_invasion.md @@ -1,7 +1,7 @@ # UFO: Alien Invasion - Home: https://ufoai.org/wiki/News, https://sourceforge.net/projects/ufoai/ -- Media: +- Media: https://en.wikipedia.org/wiki/UFO:_Alien_Invasion - Inspirations: UFO: Enemy Unknown, X-COM: Apocalypse, X-COM: Terror from the Deep, X-COM: UFO Defense - State: mature - Download: https://ufoai.org/wiki/Download diff --git a/entries/ultima_5_redux.md b/entries/ultima_5_redux.md index 658d948a..928085d4 100644 --- a/entries/ultima_5_redux.md +++ b/entries/ultima_5_redux.md @@ -3,7 +3,7 @@ - Home: https://u5redux.wordpress.com/ - Inspirations: Ultima V: Warriors of Destiny - State: beta -- Keywords: role playing, remake +- Keywords: remake, role playing - Code repository: https://github.com/bradhannah/Ultima5Redux.git - Code language: C# - Code license: MIT diff --git a/entries/ultrastar_deluxe.md b/entries/ultrastar_deluxe.md index 462867d9..b5e577cd 100644 --- a/entries/ultrastar_deluxe.md +++ b/entries/ultrastar_deluxe.md @@ -5,7 +5,7 @@ - State: mature - Download: https://usdx.eu/downloads/ - Platform: Windows, Linux, macOS -- Keywords: music, karaoke, remake +- Keywords: music, remake, karaoke - Code repository: https://github.com/UltraStar-Deluxe/USDX.git, https://github.com/UltraStar-Deluxe/legacy-sourceforge-svn-mirror.git @add, https://svn.code.sf.net/p/ultrastardx/svn (svn) - Code language: Pascal - Code license: GPL-2.0 diff --git a/entries/unciv.md b/entries/unciv.md index cdae9023..949f398d 100644 --- a/entries/unciv.md +++ b/entries/unciv.md @@ -4,7 +4,7 @@ - Inspirations: Civilization V - State: beta - Platform: Android -- Keywords: strategy, multiplayer online + hotseat, open content, remake, turn-based +- Keywords: remake, strategy, multiplayer online + hotseat, open content, turn-based - Code repository: https://github.com/yairm210/UnCiv.git - Code language: Kotlin - Code license: MPL-2.0 diff --git a/entries/underworldexporter.md b/entries/underworldexporter.md index 3f35116e..738742d8 100644 --- a/entries/underworldexporter.md +++ b/entries/underworldexporter.md @@ -3,7 +3,7 @@ - Home: https://github.com/hankmorgan/UnderworldExporter - Inspirations: Ultima Underworld, Ultima Underworld II: Labyrinth of Worlds - State: mature -- Keywords: role playing, commercial content, remake, requires original content +- Keywords: remake, role playing, commercial content, requires original content - Code repository: https://github.com/hankmorgan/UnderworldExporter.git - Code language: C#, C++ - Code license: MIT diff --git a/entries/unvanquished.md b/entries/unvanquished.md index 5014fab4..adc19fda 100644 --- a/entries/unvanquished.md +++ b/entries/unvanquished.md @@ -1,7 +1,7 @@ # Unvanquished - Home: https://unvanquished.net/, https://sourceforge.net/projects/unvanquished/ -- Media: +- Media: https://en.wikipedia.org/wiki/Unvanquished_(video_game) - Inspirations: Natural Selection - State: mature - Download: https://unvanquished.net/download/ diff --git a/entries/urde.md b/entries/urde.md index e6c587de..2bc7e264 100644 --- a/entries/urde.md +++ b/entries/urde.md @@ -5,7 +5,7 @@ - State: beta - Download: https://github.com/AxioDL/urde/releases - Platform: Windows, macOS -- Keywords: game engine, commercial content, remake, requires original content +- Keywords: game engine, remake, commercial content, requires original content - Code repository: https://gitlab.axiodl.com/AxioDL/urde.git, https://github.com/AxioDL/urde.git - Code language: C, C++ - Code license: MIT diff --git a/entries/vanilla-conquer.md b/entries/vanilla-conquer.md index 8b2f80b9..f72a953d 100644 --- a/entries/vanilla-conquer.md +++ b/entries/vanilla-conquer.md @@ -4,7 +4,7 @@ - Inspirations: Command & Conquer, Command & Conquer: Red Alert - State: mature - Platform: Windows, Linux -- Keywords: strategy, commercial content, realtime, remake, requires original content +- Keywords: remake, strategy, commercial content, realtime, requires original content - Code repository: https://github.com/Vanilla-Conquer/Vanilla-Conquer.git, https://github.com/electronicarts/CnC_Remastered_Collection.git @add - Code language: C, C++, Assembly - Code license: GPL-3.0 diff --git a/entries/vassal.md b/entries/vassal.md index ee128679..50bc2d65 100644 --- a/entries/vassal.md +++ b/entries/vassal.md @@ -5,7 +5,7 @@ - State: mature - Download: http://www.vassalengine.org/download.php, https://sourceforge.net/projects/vassalengine/files/ - Platform: Windows, Linux, macOS -- Keywords: board, clone, framework, game engine +- Keywords: board, framework, game engine, clone - Code repository: https://svn.code.sf.net/p/vassalengine/svn (svn) - Code language: Java - Code license: LGPL-2.1 diff --git a/entries/vcmi.md b/entries/vcmi.md index 768c9b34..7abeb2a8 100644 --- a/entries/vcmi.md +++ b/entries/vcmi.md @@ -4,7 +4,7 @@ - Inspirations: Heroes of Might and Magic III - State: mature - Download: @see-home -- Keywords: strategy, commercial content, remake, requires original content +- Keywords: remake, strategy, commercial content, requires original content - Code repository: https://github.com/vcmi/vcmi.git, https://svn.code.sf.net/p/vcmi/code (svn) - Code language: C++ - Code license: GPL-2.0 diff --git a/entries/vega_strike.md b/entries/vega_strike.md index 6aa56f97..da3da3dd 100644 --- a/entries/vega_strike.md +++ b/entries/vega_strike.md @@ -5,7 +5,7 @@ - Inspirations: Elite - State: mature - Download: http://vegastrike.sourceforge.net/getfiles/ -- Keywords: framework, open content (?), first-person, space +- Keywords: framework, first-person, open content (?), space - Code repository: https://github.com/vegastrike/Vega-Strike-Engine-Source.git (https://github.com/vegastrike mirror), https://svn.code.sf.net/p/vegastrike/code (svn) - Code language: C++ - Code license: GPL-2.0 diff --git a/entries/vertigo.md b/entries/vertigo.md index 40f75abc..569c7b25 100644 --- a/entries/vertigo.md +++ b/entries/vertigo.md @@ -4,7 +4,7 @@ - State: beta, inactive since 2002 - Download: http://stjerneskud.info/vertigo/download.html - Platform: Linux -- Keywords: simulation, flight, remake +- Keywords: remake, simulation, flight - Code repository: https://gitlab.com/osgames/vertigo.git (import of sources) - Code language: C - Code license: GPL-2.0 diff --git a/entries/visual_pinball.md b/entries/visual_pinball.md index 540cc950..2abd60b5 100644 --- a/entries/visual_pinball.md +++ b/entries/visual_pinball.md @@ -5,7 +5,7 @@ - State: mature - Download: https://sourceforge.net/projects/vpinball/files/ - Platform: Windows -- Keywords: sports, clone, remake +- Keywords: remake, sports, clone - Code repository: https://svn.code.sf.net/p/vpinball/code (svn active), https://svn.code.sf.net/p/vpinball/scintilla/ - Code language: C++ - Code license: MAME (see https://sourceforge.net/p/vpinball/code/HEAD/tree/trunk/txt/license.txt) diff --git a/entries/vitetris.md b/entries/vitetris.md index 0f8a4c03..d3c9ff73 100644 --- a/entries/vitetris.md +++ b/entries/vitetris.md @@ -5,7 +5,7 @@ - State: beta - Download: http://victornils.net/tetris/#download - Platform: Windows, Linux -- Keywords: puzzle, multiplayer competitive + online, open content, remake +- Keywords: puzzle, remake, multiplayer competitive + online, open content - Code repository: https://github.com/vicgeralds/vitetris.git - Code language: C - Code license: 2-clause BSD diff --git a/entries/voxelands.md b/entries/voxelands.md index 6268f76f..69db33d6 100644 --- a/entries/voxelands.md +++ b/entries/voxelands.md @@ -5,7 +5,7 @@ - State: beta - Download: https://web.archive.org/web/20180305020950/https://www.voxelands.com/download.html - Platform: Windows, Linux -- Keywords: simulation, remake, sandbox, voxel +- Keywords: remake, simulation, sandbox, voxel - Code repository: https://gitlab.com/voxelands/voxelands.git - Code language: C++ - Code license: GPL-3.0 diff --git a/entries/vvvvvv.md b/entries/vvvvvv.md index 1ba0c66e..c452d9fe 100644 --- a/entries/vvvvvv.md +++ b/entries/vvvvvv.md @@ -3,7 +3,7 @@ - Home: http://distractionware.com/blog/2020/01/vvvvvv-is-now-open-source/ - Inspirations: VVVVVV - State: mature -- Keywords: platform, commercial content, remake, requires original content +- Keywords: platform, remake, commercial content, requires original content - Code repository: https://github.com/TerryCavanagh/vvvvvv.git - Code language: ActionScript, C++ - Code license: Custom diff --git a/entries/war1.md b/entries/war1.md index ec844786..500a2b82 100644 --- a/entries/war1.md +++ b/entries/war1.md @@ -3,7 +3,7 @@ - Home: https://github.com/acoto87/war1 - Inspirations: Warcraft: Orcs & Humans - State: beta -- Keywords: strategy, commercial content, remake, requires original content +- Keywords: remake, strategy, commercial content, requires original content - Code repository: https://github.com/acoto87/war1.git - Code language: C - Code license: zlib diff --git a/entries/warcraft-remake.md b/entries/warcraft-remake.md index 913cd2e8..133b2f5c 100644 --- a/entries/warcraft-remake.md +++ b/entries/warcraft-remake.md @@ -4,7 +4,7 @@ - Inspirations: Warcraft: Orcs & Humans - State: beta - Platform: Windows, Linux, Android -- Keywords: strategy, commercial content, real time, remake +- Keywords: remake, strategy, commercial content, real time - Code repository: https://github.com/b3dgs/warcraft-remake.git - Code language: Java - Code license: GPL-2.0 diff --git a/entries/wargus.md b/entries/wargus.md index 9894971d..6f5395e0 100644 --- a/entries/wargus.md +++ b/entries/wargus.md @@ -4,7 +4,7 @@ - Inspirations: Warcraft II - State: mature (?) - Download: http://wargus.stratagus.com/download.shtml -- Keywords: strategy, commercial content, remake, requires original content +- Keywords: remake, strategy, commercial content, requires original content - Code repository: https://github.com/Wargus/wargus.git, https://code.launchpad.net/wargus (bzr) - Code language: C++, Lua - Code license: GPL-2.0 diff --git a/entries/warzone_2100.md b/entries/warzone_2100.md index c17b3a27..950164f1 100644 --- a/entries/warzone_2100.md +++ b/entries/warzone_2100.md @@ -4,7 +4,7 @@ - Inspirations: Warzone 2100 - State: mature - Download: https://sourceforge.net/projects/warzone2100/files/releases/ -- Keywords: strategy, popular, real time, remake +- Keywords: remake, strategy, popular, real time - Code repository: https://github.com/Warzone2100/warzone2100.git - Code language: C++ - Code license: GPL-2.0 diff --git a/entries/watomic.md b/entries/watomic.md index 48fbd034..9d66e9bd 100644 --- a/entries/watomic.md +++ b/entries/watomic.md @@ -4,7 +4,7 @@ - Inspirations: Atomix - State: mature, inactive since 2005 - Download: https://sourceforge.net/projects/watomic/files/ -- Keywords: strategy, clone, remake +- Keywords: remake, strategy, clone - Code repository: https://gitlab.com/osgames/watomic.git (snapshot of source releases) - Code language: Pascal - Code license: GPL-2.0 diff --git a/entries/webfun.md b/entries/webfun.md index a6d14729..ae6ee954 100644 --- a/entries/webfun.md +++ b/entries/webfun.md @@ -4,7 +4,7 @@ - Inspirations: Star Wars: Yoda Stories - State: beta - Platform: Web -- Keywords: adventure, commercial content, game engine, remake, requires original content (?) +- Keywords: adventure, game engine, remake, commercial content, requires original content (?) - Code repository: https://github.com/cyco/WebFun.git - Code language: TypeScript - Code license: MIT diff --git a/entries/which_way_is_up.md b/entries/which_way_is_up.md index b3c54eb9..c2b85fa6 100644 --- a/entries/which_way_is_up.md +++ b/entries/which_way_is_up.md @@ -3,7 +3,7 @@ - Home: http://www.oletus.fi/static/whichwayisup/, https://packages.debian.org/search?keywords=whichwayisup - State: beta, inactive since 2008 - Platform: Windows, Linux -- Keywords: platform, 2D, open content, puzzle +- Keywords: platform, puzzle, 2D, open content - Code repository: @see-home - Code language: Python - Code license: GPL-2.0 diff --git a/entries/witch_blast.md b/entries/witch_blast.md index 5aa3c5b6..a4df5ca1 100644 --- a/entries/witch_blast.md +++ b/entries/witch_blast.md @@ -4,7 +4,7 @@ - Inspirations: The Binding of Isaac - State: beta, inactive since 2015 - Download: https://github.com/Cirrus-Minor/witchblast/releases -- Keywords: role playing, open content, remake, roguelike +- Keywords: remake, role playing, open content, roguelike - Code repository: https://github.com/Cirrus-Minor/witchblast.git - Code language: C++ - Code license: GPL-3.0 diff --git a/entries/witchavengdx.md b/entries/witchavengdx.md index 31747939..1dc51af5 100644 --- a/entries/witchavengdx.md +++ b/entries/witchavengdx.md @@ -4,7 +4,7 @@ - Media: https://en.wikipedia.org/wiki/Witchaven - Inspirations: Witchaven - State: beta -- Keywords: action, commercial content, remake +- Keywords: action, remake, commercial content - Code repository: https://gitlab.com/m210/WitchavenGDX.git - Code language: Java - Code license: Custom (see buildlic.txt) diff --git a/entries/wizards_magic.md b/entries/wizards_magic.md index f7843a1c..9f47390d 100644 --- a/entries/wizards_magic.md +++ b/entries/wizards_magic.md @@ -4,7 +4,7 @@ - Media: https://web.archive.org/web/20160407053043/https://lgdb.org/game/wizards_magic - State: mature, inactive since 2012 - Download: https://code.google.com/archive/p/wizards-magic/downloads -- Keywords: strategy, cards, remake +- Keywords: cards, remake, strategy - Code repository: https://github.com/chubakur/wizards-magic.git, https://github.com/chubakur/wizards-magic2.git @add, https://code.google.com/archive/p/wizards-magic/source - Code language: Python - Code license: GPL-2.0 diff --git a/entries/wkbre.md b/entries/wkbre.md index 98b07918..ef31942f 100644 --- a/entries/wkbre.md +++ b/entries/wkbre.md @@ -3,7 +3,7 @@ - Home: https://github.com/AdrienTD/wkbre - Inspirations: Warrior Kings - State: beta -- Keywords: strategy, 3D, real time, remake, requires original content +- Keywords: remake, strategy, 3D, real time, requires original content - Code repository: https://github.com/AdrienTD/wkbre.git - Code language: C++, C - Code license: GPL-3.0 diff --git a/entries/wolf3dx.md b/entries/wolf3dx.md index 91cd8959..7cc8e90e 100644 --- a/entries/wolf3dx.md +++ b/entries/wolf3dx.md @@ -3,7 +3,7 @@ - Home: https://github.com/francot514/Wolf3dX - Inspirations: Wolfenstein 3D - State: beta -- Keywords: action, commercial content, remake, requires original content, shooter +- Keywords: action, remake, commercial content, requires original content, shooter - Code repository: https://github.com/francot514/Wolf3dX.git - Code language: C# - Code license: GPL-2.0 diff --git a/entries/world_of_might_and_magic.md b/entries/world_of_might_and_magic.md index 22bc874f..92f0ea6b 100644 --- a/entries/world_of_might_and_magic.md +++ b/entries/world_of_might_and_magic.md @@ -3,7 +3,7 @@ - Home: https://github.com/gp-alex/world-of-might-and-magic - Inspirations: Might and Magic VI: The Mandate of Heaven, Might and Magic VII: For Blood and Honor, Might and Magic VIII: Day of the Destroyer - State: beta -- Keywords: role playing, free content (?), game engine, remake, requires original content +- Keywords: game engine, remake, role playing, free content (?), requires original content - Code repository: https://github.com/gp-alex/world-of-might-and-magic.git - Code language: C++ - Code license: LGPL-3.0 diff --git a/entries/www.md b/entries/www.md index 831b6ffc..878f8a6f 100644 --- a/entries/www.md +++ b/entries/www.md @@ -5,7 +5,7 @@ - Inspirations: VVVVVV - State: beta, inactive since 2014 - Platform: Web -- Keywords: platform, 2D, clone, puzzle +- Keywords: platform, puzzle, 2D, clone - Code repository: https://github.com/alexdantas/www.git - Code language: JavaScript - Code license: GPL-3.0 diff --git a/entries/x-moto.md b/entries/x-moto.md index 76256d18..3cca91b6 100644 --- a/entries/x-moto.md +++ b/entries/x-moto.md @@ -6,7 +6,7 @@ - State: mature, inactive since 2014 - Download: https://xmoto.tuxfamily.org/ - Platform: Windows, Linux, macOS -- Keywords: action, racing, remake +- Keywords: action, remake, racing - Code repository: https://svn.tuxfamily.org/viewvc.cgi/xmoto_xmoto/ (svn lost) - Code language: C++ - Code license: GPL-2.0 diff --git a/entries/xarchon.md b/entries/xarchon.md index 92e70d6d..def5e3f1 100644 --- a/entries/xarchon.md +++ b/entries/xarchon.md @@ -5,7 +5,7 @@ - State: beta, inactive since 2003 - Download: http://xarchon.seul.org/download.html - Keywords: strategy, clone -- Code repository: https://gitlab.com/osgames/xarchon.git (import of cvs), (cvs at cvs.seul.org) +- Code repository: https://gitlab.com/osgames/xarchon.git (import of cvs at cvs.seul.org) - Code language: C, C++ - Code license: GPL-2.0 - Code dependencies: GTK, Qt diff --git a/entries/xjig.md b/entries/xjig.md index 0f3481e9..d2aa0d19 100644 --- a/entries/xjig.md +++ b/entries/xjig.md @@ -3,7 +3,7 @@ - Home: https://packages.debian.org/search?keywords=xjig - State: mature - Keywords: puzzle, jigsaw, open content -- Code repository: (see debian) +- Code repository: @see-debian - Code language: C - Code license: Custom (attribution, no warranty) - Assets license: demo image in Debian: license free diff --git a/entries/xmage.md b/entries/xmage.md index 88705958..a4a4d087 100644 --- a/entries/xmage.md +++ b/entries/xmage.md @@ -4,7 +4,7 @@ - Inspirations: Magic: The Gathering Online - State: mature - Download: https://github.com/magefree/mage/releases -- Keywords: strategy, cards, clone, multiplayer +- Keywords: cards, strategy, clone, multiplayer - Code repository: https://github.com/magefree/mage.git - Code language: Java - Code license: MIT diff --git a/entries/xorcurses.md b/entries/xorcurses.md index 87a233dd..176e610f 100644 --- a/entries/xorcurses.md +++ b/entries/xorcurses.md @@ -1,7 +1,7 @@ # XorCurses - Home: http://jwm-art.net/?p=XorCurses -- Media: +- Media: https://en.wikipedia.org/wiki/XOR_(video_game) - Inspirations: XOR - State: beta, inactive since 2012 - Platform: Linux diff --git a/entries/xoreos.md b/entries/xoreos.md index f98d252d..811eeaae 100644 --- a/entries/xoreos.md +++ b/entries/xoreos.md @@ -4,7 +4,7 @@ - Inspirations: BioWare's Aurora engine - State: beta - Download: https://xoreos.org/downloads/index.html -- Keywords: framework, commercial content, engine recreation, remake, requires original content +- Keywords: framework, remake, commercial content, engine recreation, requires original content - Code repository: https://github.com/xoreos/xoreos.git - Code language: C++ - Code license: GPL-3.0 diff --git a/entries/xscavenger.md b/entries/xscavenger.md index f952d0f8..aaeb0df0 100644 --- a/entries/xscavenger.md +++ b/entries/xscavenger.md @@ -4,7 +4,7 @@ - Inspirations: Lode Runner - State: mature, inactive since 2015 - Download: https://sourceforge.net/projects/sdlscavenger/files/ -- Keywords: puzzle, 2D, remake +- Keywords: puzzle, remake, 2D - Code repository: @see-download - Code language: C - Code license: GPL-2.0 diff --git a/entries/xu4.md b/entries/xu4.md index e8069ffe..a9e715a9 100644 --- a/entries/xu4.md +++ b/entries/xu4.md @@ -1,11 +1,11 @@ # xu4 - Home: http://xu4.sourceforge.net/, https://sourceforge.net/projects/xu4/ -- Media: +- Media: https://en.wikipedia.org/wiki/Ultima_IV:_Quest_of_the_Avatar#Ultima_IV_on_modern_operating_systems - Inspirations: Ultima IV: Quest of the Avatar - State: mature, inactive since 2016 - Download: http://xu4.sourceforge.net/download.php -- Keywords: role playing, remake +- Keywords: remake, role playing - Code repository: https://svn.code.sf.net/p/xu4/code (svn) - Code language: C++ - Code license: GPL-2.0 diff --git a/entries/ysoccer.md b/entries/ysoccer.md index 128628c4..11cdbb7e 100644 --- a/entries/ysoccer.md +++ b/entries/ysoccer.md @@ -5,7 +5,7 @@ - State: mature - Download: http://ysoccer.sourceforge.net/dloads.htm, https://sourceforge.net/projects/ysoccer/files/ - Platform: Windows, Linux, macOS -- Keywords: sports, remake, simulation, soccer +- Keywords: remake, simulation, sports, soccer - Code repository: https://git.code.sf.net/p/ysoccer/code - Code language: Java - Code license: GPL-2.0 (see java/android/assets/docs/readme.htm) diff --git a/entries/zangband.md b/entries/zangband.md index 4c72a62d..e649655c 100644 --- a/entries/zangband.md +++ b/entries/zangband.md @@ -1,7 +1,7 @@ # ZAngband - Home: http://www.zangband.org/, https://sourceforge.net/projects/zangband/ -- Media: +- Media: https://en.wikipedia.org/wiki/Angband_(video_game)#Derivative_works - State: mature, inactive since 2005 - Download: https://sourceforge.net/projects/zangband/files/ - Keywords: role playing, roguelike diff --git a/entries/zed_online.md b/entries/zed_online.md index a719b66b..21988bd6 100644 --- a/entries/zed_online.md +++ b/entries/zed_online.md @@ -3,7 +3,7 @@ - Home: https://zzone.lewe.com/zed-online-game/, https://sourceforge.net/projects/zedonline/ - Inspirations: Z - State: mature -- Keywords: strategy, free content, multiplayer online + LAN, real time, remake +- Keywords: remake, strategy, free content, multiplayer online + LAN, real time - Code repository: http://hg.code.sf.net/p/zedonline/code (hg) - Code language: C++ - Code license: ? (GPL-3.0) diff --git a/entries/zero_ballistics.md b/entries/zero_ballistics.md index fbefab65..82d0e399 100644 --- a/entries/zero_ballistics.md +++ b/entries/zero_ballistics.md @@ -4,7 +4,7 @@ - State: mature, inactive since 2013 - Download: https://sourceforge.net/projects/zeroballistics/files/ - Platform: Windows -- Keywords: strategy, action +- Keywords: action, strategy - Code repository: https://gitlab.com/osgames/zeroballistics.git (mirror), https://svn.code.sf.net/p/zeroballistics/code (svn) - Code language: C++ - Code license: MIT diff --git a/entries/zeta.md b/entries/zeta.md index dc178e55..4bd6e91b 100644 --- a/entries/zeta.md +++ b/entries/zeta.md @@ -1,7 +1,7 @@ # Zeta - Home: https://zeta.asie.pl/ -- Inspirations: ZZT, Super ZZT +- Inspirations: Super ZZT, ZZT - State: beta - Keywords: tool - Code repository: https://github.com/asiekierka/zeta.git diff --git a/entries/zod_engine.md b/entries/zod_engine.md index 5ce1e937..f86cbeb2 100644 --- a/entries/zod_engine.md +++ b/entries/zod_engine.md @@ -5,7 +5,7 @@ - State: mature, inactive since 2018 - Download: https://sourceforge.net/projects/zod/files/ - Platform: Windows, Linux -- Keywords: strategy, commercial content, game engine, real time, remake, requires original content +- Keywords: game engine, remake, strategy, commercial content, real time, requires original content - Code repository: http://hg.code.sf.net/p/zod/zod_engine (hg) - Code language: C++ - Code license: ? (really GPL-3.0 as mentioned on homepage?)