diff --git a/code/github_import.py b/code/github_import.py index 9d577092..8fecbbfa 100644 --- a/code/github_import.py +++ b/code/github_import.py @@ -2,27 +2,143 @@ Uses the Github API to learn more about the Github projects. """ -# Github -urls = [x for x in repos if x.startswith('https://github.com/')] -urls = [] -for url in urls: - print(' github repo: {}'.format(url)) - github_info = osg_github.retrieve_repo_info(url) - for contributor in github_info['contributors']: - name = contributor.name - dev = developer_info_lookup(name) - in_devs = dev and 'contact' in dev and contributor.login + '@GH' in dev['contact'] - in_entry = name in entry_developer - if in_devs and in_entry: - continue # already existing in entry and devs - content += ' {}: {}@GH'.format(name, contributor.login) - if contributor.blog: - content += ' url: {}'.format(contributor.blog) - if not in_devs: - content += ' (not in devs)' - if not in_entry: - content += ' (not in entry)' - content += '\n' +import os +import json +from utils import constants as c, utils, osg, osg_parse, osg_github + +gh_entries_file = os.path.join(c.code_path, 'github_entries.txt') +prefix = 'https://github.com/' + + +def collect_github_entries(): + """ + Reads the entries of the database and collects all entries with github as repository + """ + + # read entries + entries = osg.read_entries() + print('{} entries read'.format(len(entries))) + + # loop over entries + files = [] + for entry in entries: + urls = [x for x in entry['Code repository'] if x.startswith(prefix)] + if urls: + files.append(entry['File']) + + # write to file + print('{} entries with github repos'.format(len(files))) + utils.write_text(gh_entries_file, json.dumps(files, indent=1)) + + +def github_import(): + """ + + :return: + """ + files = json.loads(utils.read_text(gh_entries_file)) + + all_developers = osg.read_developers() + print(' {} developers read'.format(len(all_developers))) + + # all exceptions that happen will be eaten (but will end the execution) + try: + # loop over each entry + for index, file in enumerate(files): + print(' process {}'.format(file)) + + # read entry + entry = osg.read_entry(file) + code_repositories = entry['Code repository'] + repos = [x.value for x in code_repositories if x.startswith(prefix)] + for repo in repos: + print(' GH repo {}'.format(repo)) + + info = osg_github.retrieve_repo_info(repo) + + new_comments = [] + # is archived + if info['archived']: + if not osg.is_inactive(entry): + print('warning: repo is archived but not inactive state??') + # add archive to repo comment + new_comments.append('@archived') + + # add created comment + new_comments.append('@created {}'.format(info['created'].year)) + + # add stars + new_comments.append('@stars {}'.format(info['stars'])) + + # add forks + new_comments.append('@forks {}'.format(info['forks'])) + + # update comment + for r in code_repositories: + if r.value == repo: + break + comments = r.comment + if comments: + comments = comments.split(',') + comments = [c.strip() for c in comments if not c.startswith('@')] + r.comment = ', '.join(comments + new_comments) + + # language in languages + language = info['language'] + if language not in entry['Code language']: + entry['Code language'].append(language) + + # contributors + for contributor in info['contributors']: + if contributor.type != 'User': + continue + if contributor.contributions < 4: + continue + # contributor.login/name/blog + name = contributor.name + if not name: + name = contributor.login + nickname = '{}@GH'.format(contributor.login) + + # look up author in entry developers + if name not in entry.get('Developer', []): + print(' dev "{}" added to entry {}'.format(name, file)) + entry['Developer'] = entry.get('Developer', []) + [osg_parse.ValueWithComment(name)] + + # look up author in developers data base + if name in all_developers: + dev = all_developers[name] + if not nickname in dev.get('Contact', []): + print(' existing dev "{}" added nickname ({}) to developer database'.format(name, nickname)) + # check that name has not already @GH contact + if any(x.endswith('@GH') for x in dev.get('Contact', [])): + print('warning: already GH contact') + dev['Contact'] = dev.get('Contact', []) + [nickname] + if contributor.blog and contributor.blog not in dev.get('Home', []): + dev['Home'] = dev.get('Home', []) + [contributor.blog] + else: + print(' dev "{}" ({}) added to developer database'.format(name, nickname)) + all_developers[name] = {'Name': name, 'Contact': [nickname], 'Games': [entry['Title']]} + if contributor.blog: + all_developers[name]['Home'] = [contributor.blog] + + + entry['Code repository'] = code_repositories + osg.write_entry(entry) + except: + raise + finally: + # shorten file list + utils.write_text(gh_entries_file, json.dumps(files[index:], indent=1)) + + osg.write_developers(all_developers) + print('developers database updated') + if __name__ == "__main__": + # collect entries + # collect_github_entries() + + # import information from gh + github_import() diff --git a/code/maintenance_developers.py b/code/maintenance_developers.py index 992fe8f0..428fe6c6 100644 --- a/code/maintenance_developers.py +++ b/code/maintenance_developers.py @@ -33,7 +33,7 @@ class DevelopersMaintainer: developer_names = list(self.developers.keys()) for index, name in enumerate(developer_names): for other_name in developer_names[index + 1:]: - if osg.name_similarity(name, other_name) > 0.8: + if osg.name_similarity(str.casefold(name), str.casefold(other_name)) > 0.85: print(' {} - {} is similar'.format(name, other_name)) print('duplicates checked') diff --git a/code/sourceforge_import.py b/code/sourceforge_import.py index 050fdc61..2cea225e 100644 --- a/code/sourceforge_import.py +++ b/code/sourceforge_import.py @@ -14,7 +14,9 @@ prefix = 'https://sourceforge.net/projects/' # author names in SF that aren't the author names how we have them SF_alias_list = {'Erik Johansson (aka feneur)': 'Erik Johansson', 'Itms': 'Nicolas Auvray', 'baris yuksel': 'Baris Yuksel', 'Wraitii': 'Lancelot de Ferrière', 'Simzer': 'Simon Laszlo', 'armin bajramovic': 'Armin Bajramovic', - 'bleu tailfly': 'bleutailfly', 'dlh': 'DLH', 'Bjorn Hansen': 'Bjørn Hansen', 'Louens Veen': 'Lourens Veen'} + 'bleu tailfly': 'bleutailfly', 'dlh': 'DLH', 'Bjorn Hansen': 'Bjørn Hansen', 'Louens Veen': 'Lourens Veen', + 'linley_henzell': 'Linley Henzell', 'Patrice DUHAMEL': 'Patrice Duhamel', 'Etienne SOBOLE': 'Etienne Sobole', + 'L. H. [Lubomír]': 'L. H. Lubomír'} SF_ignore_list = ('', 'Arianne Integration Bot') @@ -75,7 +77,8 @@ def sourceforge_import(): url_members = 'https://sourceforge.net/p/' + url[len(prefix):] + '_members/' response = requests.get(url_members) if response.status_code != 200: - raise RuntimeError('url {} not accessible'.format(url_members)) + print('error: url {} not accessible, status {}'.format(url_members, response.status_code)) + raise RuntimeError() soup = BeautifulSoup(response.text, 'html.parser') authors = soup.find('div', id='content_base').find('table').find_all('tr') authors = [author.find_all('td') for author in authors] @@ -84,8 +87,11 @@ def sourceforge_import(): # sometimes author already contains the full url, sometimes not url_author = 'https://sourceforge.net' + author if not author.startswith('http') else author response = requests.get(url_author) + if response.status_code != 200 and author not in ('/u/favorito/',): + print('error: url {} not accessible, status {}'.format(url_author, response.status_code)) + raise RuntimeError() url_author = response.url # could be different now - if 'auth/?return_to' in url_author: + if 'auth/?return_to' in url_author or response.status_code != 200: # for some reason authorisation is forbidden or page was not available (happens for example for /u/kantaros) author_name = author[3:-1] nickname = author_name @@ -96,6 +102,7 @@ def sourceforge_import(): nickname = soup.find('dl', class_='personal-data').find('dd').get_text() nickname = nickname.replace('\n', '').strip() nickname += '@SF' # our indication of the platform to search for + author_name = author_name.strip() # names can still have white spaces before or after if author_name in SF_ignore_list: continue @@ -119,7 +126,7 @@ def sourceforge_import(): all_developers_changed = True else: print(' dev "{}" ({}) added to developer database'.format(author_name, nickname)) - all_developers[author_name] = {'Name': author_name, 'Contact': nickname, 'Games': [entry['Title']]} + all_developers[author_name] = {'Name': author_name, 'Contact': [nickname], 'Games': [entry['Title']]} all_developers_changed = True if entry_changed: diff --git a/code/utils/osg_github.py b/code/utils/osg_github.py index e4c5cbf4..e8dcc9d7 100644 --- a/code/utils/osg_github.py +++ b/code/utils/osg_github.py @@ -40,9 +40,9 @@ def retrieve_repo_info(repos): for repo in repos: repo = normalize_repo_name(repo) r = g.get_repo(repo) - e = {'archived': r.archived, 'contributors': repo_get_contributors(r), 'description': r.description, - 'language': r.language, 'last modified': r.last_modified, 'open issues count': r.open_issues_count, - 'stars count': r.stargazers_count, 'topics': r.topics, 'repo': repo} + e = {'archived': r.archived, 'contributors': repo_get_contributors(r), 'created': r.created_at, 'description': r.description, + 'forks': r.forks_count, 'language': r.language, 'last modified': r.last_modified, 'name': r.name, + 'open issues count': r.open_issues_count, 'owner': r.owner, 'stars': r.stargazers_count, 'topics': r.get_topics(), 'repo': repo} result.append(e) if single_repo: result = result[0] diff --git a/developers.md b/developers.md index 55e9c250..c55ca033 100644 --- a/developers.md +++ b/developers.md @@ -1,16 +1,36 @@ [comment]: # (partly autogenerated content, edit with care, read the manual before) -# Developer [1400] +# Developer [2932] + +## -jK- [1] + +- Games: Spring +- Contact: jk3064@SF ## 0xMk [1] - Games: Aleph One - Contact: toxicsham@SF +## 13r [1] + +- Games: Open Tibia +- Contact: primer13r@SF + +## 324523 [1] + +- Games: Netrek +- Contact: playnetrek@SF + ## _Gumby [1] - Games: Dune Legacy - Contact: rgoff@SF +## `Moe` [1] + +- Games: MegaMek +- Contact: moe323@SF + ## A Braunsdorf [1] - Games: GL-117 @@ -31,6 +51,26 @@ - Games: Aleph One - Contact: adavies42@SF +## Aaron Liebling [1] + +- Games: VASSAL +- Contact: aliebling@SF + +## Aaron Mavrinac [1] + +- Games: Thousand Parsec +- Contact: mavrinac@SF + +## aaxelb [1] + +- Games: UnNetHack +- Contact: aaxelb@SF + +## Aazelone Pyoleri [1] + +- Games: Vega Strike +- Contact: zaydana@SF + ## abartels [1] - Games: FreeCol @@ -41,41 +81,126 @@ - Games: H-World - Contact: abcgi@SF +## abma [1] + +- Games: Spring +- Contact: abma@SF + +## Abraham B. Hart [1] + +- Games: Machinations +- Contact: whelm@SF + +## acme_pjz [1] + +- Games: Me and My Shadow +- Contact: acme-pjz@SF + ## AdaM [1] - Games: Biogenesis - Contact: imabu@SF +## Adam Battersby [1] + +- Games: Vega Strike +- Contact: treguard@SF + ## Adam Fort [1] - Games: BlackNova Traders - Contact: i_m_sane@SF +## Adam Johnson [1] + +- Games: Vega Strike +- Contact: exote@SF + +## Adam Lowman [1] + +- Games: StepMania +- Contact: aplowman@SF + ## Adam P. Goucher [1] - Games: Golly - Contact: apgoucher@SF +## Adam Wendt [1] + +- Games: WorldForge +- Contact: billyjoeray@SF + ## adascor [1] - Games: Fish Fillets - Next Generation - Contact: adascor@SF +## Adrian Batzill [1] + +- Games: Zero Ballistics +- Contact: b3nn0@SF + +## Adrian Irving-Beer [1] + +- Games: Liberal Crime Squad +- Contact: wisq@SF + ## Adrian Sprick [1] - Games: FlightGear - Contact: maerchenprinz@SF +## Adrien Destugues [1] + +- Games: The Rush +- Contact: pulkomandy@SF + ## Adrien Laugueux [1] - Games: Domination - Contact: pleymor@SF +## Aeglos [1] + +- Games: Stars! Nova +- Contact: aeglos@SF + +## Agnostic Entertainment [1] + +- Games: SDL Game Engine 2D +- Contact: agnosent@SF + ## ah [1] - Games: FreedroidRPG - Contact: ahuillet@SF +## Aina Melkor [1] + +- Games: Outer Space +- Contact: melkie@SF + +## AinvarG [1] + +- Games: PCGen +- Contact: ainvarg@SF + +## Aisha Fenton [1] + +- Games: Underworld Adventures +- Contact: aishafenton@SF + +## Aitonfrere [1] + +- Games: T-Bots +- Contact: aitonfrere@SF + +## AJ Kelly [1] + +- Games: StepMania +- Contact: aj187@SF + ## AK47 [1] - Games: GUSANOS @@ -85,11 +210,21 @@ - Games: Kobo Deluxe -## akuma [1] +## Akjosch [1] + +- Games: MegaMek +- Contact: akjosch@SF + +## akuma [1] - Games: HolySpirit - Contact: akuma_jigoku@SF +## AlabamaCajun [1] + +- Games: Theme Park Builder 3D CAD +- Contact: alabamacajun@SF + ## Alan Grier [1] - Games: Anagramarama @@ -99,14 +234,39 @@ - Games: Golly - Contact: alhensel@SF +## Alan Shieh [1] + +- Games: Vega Strike +- Contact: ashieh@SF + ## Alan Witkowski [1] - Games: Empty Clip +## Alayan [1] + +- Games: SuperTuxKart +- Contact: alayan@SF + ## Albert Astals Cid [1] - Games: Blinken +## Albert Beevendorp [1] + +- Games: openMSX +- Contact: bifimsx@SF + +## Albert Cahalan [1] + +- Games: Tux Paint +- Contact: albert@SF + +## Albert Ruiz [1] + +- Games: Simutrans +- Contact: zeno128@SF + ## Albert Zeyer [1] - Games: Commander Genius @@ -127,11 +287,21 @@ - Games: Daimonin - Contact: neisklar@SF +## Alec Habig [1] + +- Games: Netrek +- Contact: habig@SF + ## Alessandro Menti [1] - Games: FlightGear - Contact: elgaton@SF +## alessandro pasotti [1] + +- Games: Tux Paint +- Contact: el_paso@SF + ## Alestan [1] - Games: Crossfire @@ -142,11 +312,21 @@ - Games: Gusty's Serpents - Contact: alexh2084@SF +## Alex Barroso [1] + +- Games: VDrift +- Contact: aaff@SF + ## Alex Clark [1] - Games: Abe's Amazing Adventure - Contact: jazkat@SF +## Alex Davidov [1] + +- Games: StepMania +- Contact: alexdavidov@SF + ## Alex E. Kelly [1] - Games: Armagetron Advanced @@ -164,16 +344,56 @@ - Games: Faur +## Alex Mooney [1] + +- Games: Liberal Crime Squad +- Contact: ighalli@SF + +## Alex Perry [1] + +- Games: PLIB +- Contact: alexperry@SF + ## Alex Raftis [1] - Games: Doom Legacy - Contact: araftis@SF +## Alex Romosan [1] + +- Games: VDrift +- Contact: alexr25@SF + ## Alex Samonte [1] - Games: Frets on Fire - Contact: asamonte@SF +## Alex Trujillo [1] + +- Games: Openfrag +- Contact: phycofalcon@SF + +## Alex V.S. [1] + +- Games: VCMI +- Contact: alexvins@SF + +## Alex Volkov [1] + +- Games: The Ur-Quan Masters +- Contact: avolkov@SF + +## Alex Wulms [1] + +- Games: openMSX +- Contact: awulms@SF + +## Alexander [1] + +- Games: UltraStar Deluxe +- Contact: s_alexander@SF + ## Alexander Boyd [1] - Games: BZFlag @@ -184,6 +404,11 @@ - Games: D-Fend Reloaded - Contact: alexanderherzog@SF +## Alexander Kjäll [1] + +- Games: S.C.O.U.R.G.E. +- Contact: capitol_@SF + ## Alexander Kolotov [1] - Games: Childsplay @@ -198,6 +423,11 @@ - Games: xdigger +## Alexander Rawass [1] + +- Games: Vega Strike +- Contact: alexannika@SF + ## Alexander Sapountzis [1] - Games: Freya Game Engine @@ -208,6 +438,11 @@ - Games: Core War - Contact: alexanderwait@SF +## Alexander Schoelling [1] + +- Games: MegaMek +- Contact: schoelling@SF + ## Alexander Schultz [1] - Games: Crossfire @@ -222,11 +457,26 @@ - Games: Hnefatafl +## Alexander Tishin [1] + +- Games: UFO: Alien Invasion +- Contact: alextishin@SF + ## alexandre [1] - Games: Attal: Lords of doom - Contact: crevette@SF +## Alexandre Martins [1] + +- Games: Open Surge +- Contact: alemart@SF + +## Alexandre Severino [1] + +- Games: Open Tibia +- Contact: kilouco@SF + ## Alexandru Voicu [1] - Games: Crystal Space 3D SDK @@ -241,21 +491,81 @@ - Games: Maxit +## AleXXandEr [1] + +- Games: OGS Mahjong +- Contact: alexxander_dev@SF + ## alezakos [1] - Games: BZFlag - Contact: kongr45gpen@SF +## Alfredzo Nash [1] + +- Games: OpenBlox +- Contact: al_nash@SF + +## Alisa Parashchenko [1] + +- Games: Tux Paint +- Contact: alisa-p@SF + +## Alistair Riddoch [1] + +- Games: WorldForge +- Contact: alriddoch@SF + +## Allan Murray [1] + +- Games: Liberal Crime Squad +- Contact: ransomeliolds@SF + +## Allen Halsted [1] + +- Games: Siege of Avalon : Open Source +- Contact: myramains@SF + +## Allen Ussher [1] + +- Games: The Clans +- Contact: allenu@SF + ## alley [1] - Games: GPL Arcade Volleyball - Contact: alley@SF +## Alonso Cardenas Marquez [2] + +- Games: "Mars, Land of No Mercy", VDrift +- Contact: acardenas@SF + +## Aloril [1] + +- Games: WorldForge +- Contact: aloril@SF + ## alrusdi [1] - Games: FooBillard++ - Contact: alrusdi@SF +## ALu [1] + +- Games: XBlast +- Contact: aluleich@SF + +## Alvise Spano' [1] + +- Games: PyKaraoke +- Contact: mantask@SF + +## Ambystoma Mexicanum [1] + +- Games: phpRPG +- Contact: phprpg@SF + ## Amer Koleci [2] - Games: Alimer, Vortice @@ -266,6 +576,11 @@ - Games: Argentum Online - Contact: amraphen@SF +## An_dz [1] + +- Games: Simutrans +- Contact: an-dz@SF + ## anatoly techtonik [1] - Games: Goblin Hack @@ -276,6 +591,11 @@ - Games: FlightGear - Contact: vmeazza@SF +## Anders Birkedam [1] + +- Games: SDL-Ball +- Contact: ciddk@SF + ## Anders Gidenstam [1] - Games: FlightGear @@ -286,9 +606,14 @@ - Games: FlightGear - Contact: jam007@SF -## Anders Reggestad [1] +## Anders Petersson [1] -- Games: Dungeon Mapper +- Games: WorldForge +- Contact: demitar@SF + +## Anders Reggestad [2] + +- Games: Dungeon Mapper, PlaneShift - Contact: magodra@SF ## Anders Stenberg [1] @@ -300,6 +625,16 @@ - Games: Alex the Allegator 4 +## Anderuso [1] + +- Games: Outer Space +- Contact: anderuso@SF + +## Andre R. [1] + +- Games: Unknown Horizons +- Contact: andre_r@SF + ## Andrea Carolfi [2] - Games: Eat The Whistle, Escape Towards The Unknown @@ -310,10 +645,15 @@ - Games: FreeLords - Contact: patton73@SF -## Andreas [1] +## Andrea Rizzi [1] -- Games: Daimonin -- Contact: polyveg@SF +- Games: PlaneShift +- Contact: whacko88@SF + +## Andreas [3] + +- Games: Daimonin, Stargus, Vega Strike +- Contact: andreas99@SF, gladiac@SF, polyveg@SF ## Andreas Landmark [1] @@ -335,10 +675,20 @@ - Games: Armagetron Advanced - Contact: aeb@SF +## Andreas Granig [1] + +- Games: Moagg2 +- Contact: agranig@SF + ## Andreas Kattner [1] - Games: Canta +## Andreas Kirsch [1] + +- Games: Nexuiz +- Contact: blackhc@SF + ## Andreas Kirschbaum [2] - Games: Crossfire, Daimonin @@ -349,6 +699,16 @@ - Games: Enigma - Contact: alochmann@SF +## Andreas Osowski [1] + +- Games: Openfrag +- Contact: th0br0@SF + +## Andreas Röver [2] + +- Games: Pushover, Toppler +- Contact: roever@SF + ## Andreas Røsdal [1] - Games: OpenRTS @@ -374,6 +734,11 @@ - Games: FlightGear - Contact: andreas-z@SF +## Andrei [1] + +- Games: Trigger +- Contact: ab396356@SF + ## Andrei Bârsan [1] - Games: Crystal Space 3D SDK @@ -384,11 +749,36 @@ - Games: Crystal Space 3D SDK - Contact: anarazel@SF +## Andrew [1] + +- Games: Speed Dreams +- Contact: andrewsumner@SF + +## Andrew Arsenault [1] + +- Games: StepMania +- Contact: ym2413a@SF + +## Andrew Barch [1] + +- Games: WorldForge +- Contact: enjia@SF + ## Andrew Beal [1] - Games: Betrayer's Moon Tactics - Contact: zelchan@SF +## Andrew Corcoran [1] + +- Games: Tux Paint +- Contact: a_corcoran@SF + +## Andrew Craig [1] + +- Games: PlaneShift +- Contact: acraig@SF + ## Andrew D [1] - Games: AssaultCube @@ -404,6 +794,51 @@ - Games: Emilia Pinball - Contact: hendersa@SF +## Andrew Hunter [1] + +- Games: MegaMek +- Contact: endersdouble@SF + +## Andrew Jenner [1] + +- Games: Sopwith 3 +- Contact: amj25@SF + +## Andrew Mann [1] + +- Games: PlaneShift +- Contact: rhad@SF + +## Andrew McDougall [1] + +- Games: PCGen +- Contact: tir-gwaith@SF + +## Andrew Mustun [1] + +- Games: TROPHY +- Contact: andrew23@SF + +## Andrew Pokrovski [1] + +- Games: MegaMek +- Contact: nickaragua@SF + +## Andrew Robberts [1] + +- Games: PlaneShift +- Contact: aarobber@SF + +## Andrew Sutcliffe [1] + +- Games: Visual Pinball +- Contact: brandrew2@SF + +## Andrew Taylor [1] + +- Games: xu4 +- Contact: andrewtaylor@SF + ## Andrew Topp [1] - Games: Crystal Space 3D SDK @@ -414,26 +849,81 @@ - Games: Golly - Contact: andykt@SF -## Andy [1] +## Andrew Westrate [1] -- Games: Crystal Space 3D SDK +- Games: Privateer - Gemini Gold +- Contact: westrate@SF + +## Andrew Whiteman [1] + +- Games: World of Phaos +- Contact: aradan1@SF + +## Andrew Wilson [1] + +- Games: PCGen +- Contact: nuance@SF + +## Andrey Budko [1] + +- Games: PrBoom+ +- Contact: e6y@SF + +## Andrzej P [1] + +- Games: Mpango +- Contact: aplause@SF + +## Andy [2] + +- Games: Crystal Space 3D SDK, PlaneShift - Contact: khakilord@SF +## Andy Baskett [1] + +- Games: WebChess +- Contact: abaskett@SF + +## Andy Cristina [1] + +- Games: Vega Strike +- Contact: drgnvale@SF + ## Andy Gryc [1] - Games: AutoREALM - Contact: andygryc@SF +## Andy Heroff [1] + +- Games: Pioneers +- Contact: ngeran@SF + ## Andy Howe [1] - Games: GLtron - Contact: ahowe@SF +## Andy McMaster [1] + +- Games: VASSAL +- Contact: countbelisarius@SF + ## Andy Southgate [2] - Games: Adanaxis, SDL Asylum - Organization: Mushware Limited +## Anestis Kozakis [1] + +- Games: PCGen +- Contact: kenosti@SF + +## Angelo Theodorou [1] + +- Games: "Mars, Land of No Mercy" +- Contact: encelo@SF + ## Anich [1] - Games: Daimonin @@ -444,31 +934,71 @@ - Games: Daimonin - Contact: ankit_1992s@SF +## ankur rathi [1] + +- Games: PCGen +- Contact: ankurrathi@SF + ## AnMaster [1] - Games: Crossfire - Contact: anmaster@SF +## anonymous [1] + +- Games: VDrift +- Contact: rookie1@SF + +## Anstice [1] + +- Games: Open Tibia +- Contact: anstice@SF + +## antagonist [1] + +- Games: Liberal Crime Squad +- Contact: stagnation@SF + ## Anthony Cole [2] - Games: Doom Legacy, Dune Legacy - Contact: tonyd@SF +## Anthony Galica [1] + +- Games: VASSAL +- Contact: morbii@SF + ## Anthony Legrand [1] - Games: Crystal Space 3D SDK - Contact: groto@SF +## Anthony Liekens [1] + +- Games: Qonk +- Contact: aliekens@SF + ## Anthony Mariette Louis Liekens [1] - Games: Qonk - Contact: aliekens@SF +## Anthony Wall [1] + +- Games: Vega Strike +- Contact: alask@SF + ## Anthony Wyatt [1] - Games: Crossfire - Contact: buzzsawddog@SF +## anthraxx [1] + +- Games: UFO: Alien Invasion +- Contact: anthraxx42@SF + ## Antoine Morineau [1] - Games: OpenAlchemist @@ -478,6 +1008,11 @@ - Games: Core War - Contact: amarsden@SF +## Anton Neverdovsky [1] + +- Games: Manic Digger +- Contact: code32@SF + ## Anton Norup Sørensen [1] - Games: Vertigo @@ -492,9 +1027,14 @@ - Games: Crystal Space 3D SDK - Contact: martinantony@SF -## AntumDeluge [1] +## Antti Nikolai Lehtoranta [1] -- Games: Arianne / Marauroa +- Games: Planetary Hoppers +- Contact: leksa@SF + +## AntumDeluge [2] + +- Games: Arianne / Marauroa, Stendhal - Contact: antumdeluge@SF ## AOSecProj [1] @@ -502,11 +1042,41 @@ - Games: Argentum Online - Contact: aosecproj@SF -## Ari Mustonen [2] +## ApeHanger [1] -- Games: FreeTrain, Hex-a-hop +- Games: Sudokuki +- Contact: apehanger@SF + +## AppCoder [1] + +- Games: Privateer - Gemini Gold +- Contact: appcoder@SF + +## Aqua Fox [1] + +- Games: Thousand Parsec +- Contact: aquafox@SF + +## Aracnus [1] + +- Games: Tux Paint +- Contact: aracnus@SF + +## Aresilek [1] + +- Games: PlaneShift +- Contact: aresilek@SF + +## Ari Mustonen [3] + +- Games: FreeTrain, Hex-a-hop, Lips of Suna - Contact: amuzen@SF +## Ari Rahikkala [1] + +- Games: Liberal Crime Squad +- Contact: arirahikkala@SF + ## Arianna Benigno [1] - Games: Crystal Space 3D SDK @@ -517,14 +1087,35 @@ - Games: Free Mars - Contact: arikande@SF +## Arjan van Ginneken [1] + +- Games: PCGen +- Contact: sjappo@SF + +## Arkold Thos [1] + +- Games: Open Tibia +- Contact: davidbarreda@SF + ## Armin Bajramovic [1] - Games: Advanced Strategic Command - Contact: armin906@SF -## Armin Rigo [1] +## Armin Rigo [2] -- Games: The Bub's Brothers +- Games: Psyco, The Bub's Brothers +- Contact: arigo@SF + +## Arnaud Bouis [1] + +- Games: VASSAL +- Contact: abouis@SF + +## Arnaud Cheritat [1] + +- Games: SunDog Resurrection +- Contact: arnache@SF ## Arne Reiners [1] @@ -540,16 +1131,51 @@ - Games: FreeLords - Contact: arnoi@SF +## Arnold Metselaar [1] + +- Games: openMSX +- Contact: arnoldmnl@SF + +## Arthur Blot [1] + +- Games: Open Surge +- Contact: artart78@SF + +## arvind [1] + +- Games: OpenMortal +- Contact: arvindin@SF + ## Asad Qureshi [1] - Games: FreeLords - Contact: sad06@SF +## Aschwin Marsman [1] + +- Games: The Butterfly Effect +- Contact: aschwinmarsman@SF + ## Ashwin Menon [1] - Games: Brain Workshop - Contact: ingridmorstrad@SF +## Assaf Raman [1] + +- Games: OGRE +- Contact: assaframan@SF + +## Assassina Mutante [1] + +- Games: Open Tibia +- Contact: assassina@SF + +## Astrometric [1] + +- Games: Space Faring +- Contact: astrometric@SF + ## Audoux [1] - Games: Attal: Lords of doom @@ -574,14 +1200,34 @@ - Games: SpaceTrader for Java - Contact: avivey@SF +## Axel [1] + +- Games: Open Tibia +- Contact: bubbleman@SF + +## b1n [1] + +- Games: Openfrag +- Contact: b1n_of@SF + +## baby-rabbit [1] + +- Games: Red Eclipse +- Contact: rbrtpntn@SF + ## Baciu Alin [1] - Games: Crystal Space 3D SDK - Contact: tay-ron@SF -## Balaur [1] +## balachmar [1] -- Games: Arianne / Marauroa +- Games: Qonk +- Contact: balachmar@SF + +## Balaur [2] + +- Games: Arianne / Marauroa, Stendhal - Contact: balaur@SF ## baptiste sansierra [1] @@ -594,9 +1240,40 @@ - Games: AntiChess - Contact: barisy99@SF +## BaronM [1] + +- Games: Zero Ballistics +- Contact: baron-m@SF + +## Barry Mead [1] + +- Games: XScavenger +- Contact: barrymead@SF + +## Bart [1] + +- Games: Speed Dreams +- Contact: area42@SF + +## Bart Buyens [1] + +- Games: Race Into Space +- Contact: ckikilwai@SF + ## Bart Mak [1] - Games: Slingshot +- Contact: bmak@SF + +## Bartosz Bielecki [1] + +- Games: VCMI +- Contact: red1939@SF + +## Bas Wijnen [1] + +- Games: Pioneers +- Contact: shevek@SF ## basara [1] @@ -608,31 +1285,101 @@ - Games: FreedroidRPG - Contact: bastiansalmela@SF +## BATTLEMASTER [1] + +- Games: MegaMek +- Contact: s_d@SF + +## bayo [1] + +- Games: UFO: Alien Invasion +- Contact: bayo-fr@SF + +## beaglejoe [1] + +- Games: Speed Dreams +- Contact: beaglejoe@SF + +## Bednesti [1] + +- Games: OpenBlox +- Contact: bednesti@SF + +## beegee [1] + +- Games: VCMI +- Contact: beegee1@SF + +## Ben [1] + +- Games: World Builder +- Contact: midgardband@SF + ## Ben Adler [1] - Games: Boson - Contact: benadler@SF +## Ben Armstrong [2] + +- Games: Tux Paint, XPilot +- Contact: synrg@SF + +## Ben Au [1] + +- Games: SuperTuxKart +- Contact: benaustk@SF + ## Ben Brian [1] - Games: 0 A.D. - Contact: historic_bruno@SF, historicbruno@GH - Home: https://benbrian.net/ +## Ben Collins-Sussman [1] + +- Games: OpenRPG +- Contact: sussman@SF + ## Ben Kibbey [1] - Games: CBoard +## Ben Mazur [1] + +- Games: MegaMek +- Contact: bmazur@SF + +## Ben Smith [1] + +- Games: VASSAL +- Contact: b5mith@SF + ## Ben Webb [2] - Games: Dope Wars, Freeciv Alpha Centauri project - Contact: benwebb@SF +## Ben Woodhead [1] + +- Games: PLIB +- Contact: zander76@SF + ## Bence Dobos [1] - Games: Decker - Contact: bazalt@SF +## BenDog [1] + +- Games: PCGen +- Contact: bendogau@SF + +## Benedikt Krueger [1] + +- Games: UltraStar Deluxe +- Contact: b_krueger@SF + ## Benedikt Wolf [1] - Games: FlightGear @@ -648,15 +1395,35 @@ - Games: Crown and Cutlass - Contact: bcoppock@SF +## Benjamin Darling [1] + +- Games: Nexuiz +- Contact: electro_ben@SF + ## Benjamin Leduc [1] - Games: FreedroidRPG - Contact: giby@SF +## Benjamin Marty [1] + +- Games: Scrolling Game Development Kit 2 +- Contact: bluemonkmn@SF + ## Benjamin Meyer [1] - Games: KSnakeDuel +## Benjamin P. Jung [1] + +- Games: Snowballz +- Contact: litespeed@SF + +## Benjamin Weps [1] + +- Games: Race Into Space +- Contact: kernelpnc@SF + ## Benny [1] - Games: Galaxy Forces V2 @@ -681,6 +1448,11 @@ - Games: Bombermaaan - Contact: wopfel@SF +## Bernd Kantoks [1] + +- Games: Skrupel - Tribute Compilation +- Contact: husten@SF + ## bernh_t [1] - Games: Enigma @@ -691,30 +1463,66 @@ - Games: HoDoKu - Contact: hobiwan@SF -## Bernhard Kaindl [1] +## Bernhard Kaindl [2] -- Games: GL-117 +- Games: GL-117, Vega Strike - Contact: bkaindl@SF ## Bernhard Trummer [1] - Games: Moagg2 +- Contact: btrummer@SF + +## Bernhard Wymann [1] + +- Games: "TORCS, The Open Racing Car Simulator" +- Contact: berniw@SF ## Bernt Hansen [1] - Games: BZFlag - Contact: bthansen@SF +## Bert [1] + +- Games: XPilot +- Contact: bertg@SF + ## Bert Beckwith [1] - Games: British Bingo - Contact: bert-beckwith@SF +## Bert Driehuis [1] + +- Games: PLIB +- Contact: driehuis@SF + +## Bert Hekman [1] + +- Games: Smash Battle +- Contact: demontpx@SF + +## Bertaux Xavier [1] + +- Games: Speed Dreams +- Contact: torcs-ng@SF + ## Bertrand Coconnier [1] - Games: FlightGear - Contact: bcoconni@SF +## Betalord [1] + +- Games: Spring +- Contact: betalord@SF + +## Bigboss [1] + +- Games: Visual Pinball +- Contact: markmon@SF + ## bigmike30 [1] - Games: FreeCol @@ -725,6 +1533,16 @@ - Games: GL-117 - Contact: bilalinorbit@SF +## Bill Balcerski [1] + +- Games: Netrek +- Contact: modemhero@SF + +## Bill Currie [1] + +- Games: Open Quartz +- Contact: taniwha@SF + ## Bill Kendrick [3] - Games: Gem Drop X, ICBM3D, Tux Paint @@ -735,11 +1553,26 @@ - Games: Atomic Tanks - Contact: billybuerger@SF +## Bjorn Reese [1] + +- Games: Vega Strike +- Contact: breese@SF + +## Bjorn Stabell [1] + +- Games: XPilot +- Contact: bjoerns@SF + ## Björn Axelsson [1] - Games: Daimonin - Contact: swegecko@SF +## Björn Finke [1] + +- Games: Skrupel - Tribute Compilation +- Contact: jarrn@SF + ## Björn Günzel [1] - Games: Core War @@ -755,6 +1588,11 @@ - Games: Crystal Space 3D SDK - Contact: panther88@SF +## black8eagles [1] + +- Games: Ksudoku +- Contact: black8eagles@SF + ## blane [1] - Games: Armagetron Advanced @@ -765,14 +1603,24 @@ - Games: BZFlag - Contact: blast007@SF -## bleutailfly [1] +## bleutailfly [2] -- Games: Arianne / Marauroa +- Games: Arianne / Marauroa, Stendhal - Contact: bleutailfly1@SF, bleutailfly@SF -## bluelads4 [1] +## blindy [1] -- Games: Arianne / Marauroa +- Games: UltraStar Deluxe +- Contact: b1indy@SF + +## blotwell [1] + +- Games: SDL Asylum +- Contact: blotwell@SF + +## bluelads4 [2] + +- Games: Arianne / Marauroa, Stendhal - Contact: bluelads99@SF ## Bo Lan [1] @@ -780,9 +1628,19 @@ - Games: FlightGear - Contact: lanbo64@SF -## Bob Tanner [1] +## Bo Leer-Andersen [1] -- Games: Crossfire +- Games: VASSAL +- Contact: bolabola@SF + +## Bob Davison [1] + +- Games: VASSAL +- Contact: bobd91@SF + +## Bob Tanner [2] + +- Games: Crossfire, Netrek - Contact: tanner@SF ## Bob Winckelmans [1] @@ -790,25 +1648,65 @@ - Games: Critterding - Contact: b0bke@SF +## bobbens [1] + +- Games: Naev +- Contact: bobbens@SF + ## Bogdan Mincu [1] - Games: GalaxyNG - Contact: mincub@SF +## BogoMips [1] + +- Games: MegaGlest +- Contact: bogomips@SF + ## Bokorn [1] - Games: Brikx +## BoomerBoss [1] + +- Games: Zatacka +- Contact: boomerboss@SF + +## Borbola Balázs [1] + +- Games: Ultimate Stunts +- Contact: bbalazs@SF + ## Bort [1] - Games: Crossfire - Contact: bortweb@SF +## boukichi [1] + +- Games: openMSX +- Contact: bkc_alpha@SF + ## BoxStar [1] - Games: Argentum Online - Contact: boxstar@SF +## Brad Kester [1] + +- Games: PCGen +- Contact: tripleduck@SF + +## Brad Stiles [1] + +- Games: PCGen +- Contact: bsmeister@SF + +## Bram Stolk [1] + +- Games: PLIB +- Contact: bram@SF + ## Brandon Bergren [1] - Games: Freestars @@ -819,11 +1717,36 @@ - Games: Combat Simulator Project - Contact: brandonb@SF +## Brandon Little [1] + +- Games: SunDog Resurrection +- Contact: xaxes@SF + +## Breakable [1] + +- Games: S.C.O.U.R.G.E. +- Contact: breakable@SF + +## breifsnyder [1] + +- Games: Vega Strike +- Contact: breifsnyder@SF + ## Brendan Lally [1] - Games: Crossfire - Contact: cavesomething@SF +## Brent Dill [1] + +- Games: MegaMek +- Contact: hentaizonga@SF + +## Brent Easton [1] + +- Games: VASSAL +- Contact: swampwallaby@SF + ## Brenton Bostick [1] - Games: Golly @@ -834,11 +1757,46 @@ - Games: Battlefield Java - Contact: bsutton@SF +## Brett Flannigan [1] + +- Games: Liberal Crime Squad +- Contact: brettflan@SF + +## Brett Lentz [1] + +- Games: Rails: an 18xx game system +- Contact: wakko666@SF + +## Brian [2] + +- Games: OGRE, Vega Strike +- Contact: balloyd1@SF, bjj1478@SF + ## Brian Angeletti [1] - Games: Avanor - Contact: emperorbma@SF +## Brian Bennett [1] + +- Games: KQ Lives +- Contact: spacedown@SF + +## Brian Bucklew [1] + +- Games: MegaMek +- Contact: unormal@SF + +## Brian Chalega da Silva [1] + +- Games: UltraStar Deluxe +- Contact: brian-ch@SF + +## Brian David Smith [1] + +- Games: Visual Pinball +- Contact: destruk@SF + ## Brian Davis [1] - Games: Isometric Turn-Based Strategy @@ -854,9 +1812,15 @@ - Games: Core War - Contact: bhaskin@SF -## Brian Wellington [1] +## Brian Kemp [1] -- Games: XBill +- Games: VASSAL +- Contact: bkemp01@SF + +## Brian Wellington [2] + +- Games: Pioneers, XBill +- Contact: bwelling@SF - Organization: Psychosoft ## Brian White [1] @@ -864,6 +1828,11 @@ - Games: Deity - Contact: bcwhite@SF +## briangr [1] + +- Games: Speed Dreams +- Contact: briangr@SF + ## BrianPr [1] - Games: Argentum Online @@ -874,28 +1843,64 @@ - Games: Chromium B.S.U. - Contact: brianwredfern@SF +## Bronstad [1] + +- Games: StepMania +- Contact: bronstad@SF + +## Bruce F. Webster [1] + +- Games: SunDog Resurrection +- Contact: bfwebster@SF + ## Bruce Ordway [1] - Games: Freya Game Engine - Contact: bruceo@SF +## Bruno Dilly [1] + +- Games: Tux Paint +- Contact: bdilly@SF + ## Bruno Ethvignot [2] - Games: Powermanga, TecnoballZ +- Contact: gurumeditation@SF + +## brunzel [1] + +- Games: UltraStar Deluxe +- Contact: brunzelchen@SF ## brutalis [1] - Games: Cubosphere - Contact: martinrr@SF +## brutustodd [1] + +- Games: OpenBlox +- Contact: brutustodd@SF + ## Bryan Jennings [1] - Games: BZFlag - Contact: bryjen@SF -## Bryce Harrington [1] +## Bryan McRoberts [1] -- Games: FreeCol +- Games: PCGen +- Contact: merton_monk@SF + +## Bryant Moscon [1] + +- Games: Race Into Space +- Contact: bmoscon@SF + +## Bryce Harrington [2] + +- Games: FreeCol, WorldForge - Contact: bryce@SF ## BSzili [1] @@ -903,6 +1908,26 @@ - Games: Hammer of Thyrion - Contact: bszili@SF +## BTAxis [2] + +- Games: Naev, UFO: Alien Invasion +- Contact: btaxis@SF + +## btietz [1] + +- Games: Pentagram +- Contact: btietz@SF + +## buchan [1] + +- Games: StepMania +- Contact: buchan@SF + +## Buginator [1] + +- Games: Warzone 2100 +- Contact: buginator@SF + ## Bukz [1] - Games: AssaultCube @@ -913,6 +1938,11 @@ - Games: BZFlag - Contact: bullet_catcher@SF +## Bursig Rafal [1] + +- Games: Stargus +- Contact: kokotek@SF + ## Bérenger Morel [1] - Games: AutoREALM @@ -923,11 +1953,21 @@ - Games: FreeTrain - Contact: c477@SF +## Caitlin Shaw [1] + +- Games: NXEngine +- Contact: rogueeve@SF + ## Calebrw [1] - Games: FreeCol - Contact: calebrw@SF +## calenlas [1] + +- Games: Ksudoku +- Contact: calenlas@SF + ## Calle Laakkonen [1] - Games: Luola @@ -937,21 +1977,81 @@ - Games: AutoREALM - Contact: thraxsivae@SF +## Callum Davies [1] + +- Games: Liberal Crime Squad +- Contact: calrogman@SF + ## Calum Robinson [1] - Games: Doom Legacy - Contact: calumr@SF +## CAMELOT [1] + +- Games: VASSAL +- Contact: mcamelot@SF + +## Cameron Smith [1] + +- Games: Scorched3D +- Contact: cambo@SF + +## Camper [1] + +- Games: Korax' Heritage +- Contact: rogur@SF + +## Canni [1] + +- Games: UltraStar Deluxe +- Contact: canni0@SF + +## Captnoord [1] + +- Games: Openfrag +- Contact: captnoord@SF + +## Carl Bartlett [1] + +- Games: VASSAL +- Contact: vbbartlett@SF + +## Carl Spain [1] + +- Games: MegaMek +- Contact: neoancient@SF + +## Carlo Fedeli [1] + +- Games: VASSAL +- Contact: cfedeli@SF + +## Carsten Griwodz [1] + +- Games: Vega Strike +- Contact: griwodz@SF + ## Carsten Weisse [1] - Games: Jake2 - Contact: cawe@SF +## Carter [1] + +- Games: Stars! Nova +- Contact: derheld42@SF + ## Carter Tomlenovich [1] - Games: Daimonin - Contact: hyperlisk@SF +## Cartmancakes [1] + +- Games: Race Into Space +- Contact: cartmancakes@SF + ## Casey Bird [1] - Games: Commander Genius @@ -967,20 +2067,45 @@ - Games: Aleph One - Contact: cseppanen@SF +## cbung [1] + +- Games: TripleA +- Contact: cbung@SF + ## Cedric Delfosse [1] - Games: GL-117 +## Cedric Guillemet [1] + +- Games: The Rush +- Contact: cedricguillemet@SF + ## Cedric Heintz [1] - Games: Extreme Tux Racer - Contact: ced117@SF +## Cedric STANUS [1] + +- Games: T-Bots +- Contact: macload@SF + ## Cesare Zavattari [1] - Games: GPL Arcade Volleyball - Contact: zavatt@SF +## CH [1] + +- Games: UFO: Alien Invasion +- Contact: crystan@SF + +## Chad McHenry [1] + +- Games: JSettlers +- Contact: mchenryc@SF + ## Chainsword [1] - Games: Colonization too @@ -996,10 +2121,20 @@ - Games: Chaos Esque Anthology - Contact: chaosesqueteam@SF -## Charles Goodwin [1] +## Charles Galbraith [1] -- Games: Extreme Tux Racer -- Contact: clrg@SF +- Games: Open Quartz +- Contact: lunz@SF + +## Charles Goodwin [3] + +- Games: Extreme Tux Racer, FreeTrain, S.C.O.U.R.G.E. +- Contact: charliegeeza@SF, clrg@SF + +## Charles Lohr [1] + +- Games: StepMania +- Contact: cnlohr@SF ## Charlie Head [1] @@ -1021,16 +2156,51 @@ - Games: Doom Legacy - Contact: chiphog@SF -## Chris [2] +## Chris [4] -- Games: Arianne / Marauroa, FreeCol -- Contact: chrisdagnon@SF, pinchanzee@SF +- Games: Arianne / Marauroa, FreeCol, Rails: an 18xx game system, Stendhal +- Contact: chrisdagnon@SF, pinchanzee@SF, snowleo@SF + +## chris [1] + +- Games: VDrift +- Contact: thelusiv@SF + +## Chris Barry [1] + +- Games: KQ Lives +- Contact: chrisbarry@SF, yrold@SF + +## Chris Blocher [1] + +- Games: OpenRPG +- Contact: heimdall2020@SF + +## Chris Bradley [1] + +- Games: OpenBlox +- Contact: dr-awesome@SF + +## Chris Danford [1] + +- Games: StepMania +- Contact: chrisdanford@SF + +## chris davis [1] + +- Games: OpenRPG +- Contact: posterboy@SF ## Chris DeLeon [1] - Games: Shotgun Debugger - Organization: Game Creation Society +## Chris Duncan [1] + +- Games: TripleA +- Contact: veqryn@SF + ## Chris Emery [1] - Games: Emilia Pinball @@ -1046,14 +2216,54 @@ - Games: buggyGame, Pillows - Home: https://fydo.net/ +## Chris Johnson [1] + +- Games: Liberal Crime Squad +- Contact: grundee@SF + +## Chris Jones [1] + +- Games: Open Game Engine +- Contact: c_j@SF + +## Chris Kern [1] + +- Games: ZAngband +- Contact: ckern@SF + +## Chris Lappe [1] + +- Games: WorldForge +- Contact: peregrine@SF + ## Chris Laurel [1] - Games: Amphetamine -## Chris Oelmueller [1] +## Chris Nelson [1] -- Games: Evil Cult -- Contact: ChrisOelmueller@GH +- Games: The Ur-Quan Masters +- Contact: luminescent@SF + +## Chris Oelmueller [2] + +- Games: Evil Cult, Unknown Horizons +- Contact: ceoc@SF, ChrisOelmueller@GH + +## Chris Ohmstede [1] + +- Games: Murder In The Public Domain +- Contact: cohmstede@SF + +## Chris Pavlas [1] + +- Games: Visual Pinball +- Contact: cpavlas@SF + +## Chris Platz [1] + +- Games: Vega Strike +- Contact: diredm@SF ## Chris Rowett [1] @@ -1065,9 +2275,9 @@ - Games: BZFlag - Contact: crs23@SF -## Chris Shaffer [1] +## Chris Shaffer [2] -- Games: GalaxyNG +- Games: GalaxyNG, Rails: an 18xx game system - Contact: christhecat@SF ## Chris_147 [1] @@ -1100,20 +2310,51 @@ - Games: FreeCol - Contact: cdillinger@SF +## Christian Duta [1] + +- Games: The Epic of Heroes +- Contact: ryogah@SF + ## Christian Haag [1] - Games: RedShift +- Contact: christianjwhaag@SF + +## Christian Hammond [1] + +- Games: Tux Paint +- Contact: chipx86@SF ## Christian Hujer [1] - Games: Daimonin - Contact: christianhujer@SF +## Christian Ofenberg [1] + +- Games: PixelLight +- Contact: ablazespace@SF + +## Christian Ohm [1] + +- Games: Warzone 2100 +- Contact: the_cybersphinx@SF + +## Christian Petry [1] + +- Games: PixelLight +- Contact: greever@SF + ## Christian Prochaska [1] - Games: Freeciv - Contact: cproc@SF +## Christian Reich [1] + +- Games: X-Force: Fight For Destiny +- Contact: jim_raynor@SF + ## Christian Schmitt [1] - Games: FlightGear @@ -1124,21 +2365,71 @@ - Games: Advanced Strategic Command - Contact: Ed-von-Schleck@GH +## Christian Tismer [1] + +- Games: Psyco +- Contact: tismer@SF + ## Christian Van Brussel [1] - Games: Crystal Space 3D SDK - Contact: kickvb@SF +## Christian Zigotzky [2] + +- Games: Open Surge, SuperTuxKart +- Contact: chzigotzky@SF + +## Christoph Brill [2] + +- Games: Open Jumpgate, Tux Football +- Contact: egore@SF + +## Christoph Egger [1] + +- Games: Unknown Horizons +- Contact: christophegger@SF + +## Christoph Franck [1] + +- Games: Liberal Crime Squad +- Contact: cybengineer@SF + +## Christoph Frick [1] + +- Games: SDL Game Engine 2D +- Contact: rid@SF + +## Christophe Guionneau [1] + +- Games: "TORCS, The Open Racing Car Simulator" +- Contact: guions@SF + ## Christopher Hunter [1] - Games: Bygfoot - Contact: chunter16@SF +## Christopher Martinus [1] + +- Games: Open Surge +- Contact: chrisonic5@SF + ## Christopher Oezbek [1] - Games: FreeCol - Contact: coezbek@SF +## Christopher Rouse [1] + +- Games: OpenRPG +- Contact: crouse@SF + +## Christos Dimitrakakis [1] + +- Games: "TORCS, The Open Racing Car Simulator" +- Contact: olethros@SF + ## Christos Stamoultas [1] - Games: Heroes of Wing Commander @@ -1148,6 +2439,11 @@ - Games: GNU Chess +## Chuck Pint [1] + +- Games: PCGen +- Contact: chuckpint@SF + ## Chuck Simmons [1] - Games: VMS Empire @@ -1157,11 +2453,36 @@ - Games: Dark Destiny - Contact: ciannicay@SF +## cig [1] + +- Games: Trinity Reign +- Contact: lvlnx@SF + +## cin [1] + +- Games: PixelLight +- Contact: cin2000@SF + ## cinbody [1] - Games: Combat Simulator Project - Contact: fuzzyrabbit@SF +## Ciprian ilies [1] + +- Games: Liberal Crime Squad +- Contact: addictgamer@SF + +## CJP [1] + +- Games: Ultimate Stunts +- Contact: cornware-cjp@SF + +## ckiosidi [1] + +- Games: Zero Ballistics +- Contact: ckiosidi@SF + ## Claudiu Mihail [1] - Games: Crystal Space 3D SDK @@ -1172,15 +2493,21 @@ - Games: AssaultCube - Contact: the_cleaner@SF -## Clive Crous [1] +## Clive Crous [2] -- Games: Vulture's Eye +- Games: SLASH'EM, Vulture's Eye +- Contact: entro-p@SF ## Clobber [1] - Games: Daimonin - Contact: clobber84@SF +## Clytie Siddall [1] + +- Games: Tux Paint +- Contact: clytie@SF + ## Clément Bourdarias [1] - Games: Combat Simulator Project @@ -1196,15 +2523,40 @@ - Games: BZFlag - Contact: cobrafast@SF +## CoD [1] + +- Games: S.C.O.U.R.G.E. +- Contact: cod_fsfe@SF + ## Coda [1] - Games: Stringrolled +## codeanimals [1] + +- Games: Zero Ballistics +- Contact: codeanimals@SF + +## coffeefizzle [1] + +- Games: Kobold's Quest 2 +- Contact: coffeefizzle@SF + +## Colby Klein [1] + +- Games: StepMania +- Contact: shakesoda@SF + ## Cole Seeley [1] - Games: Daimonin - Contact: theplaneskeeper@SF +## Colin Pitrat [1] + +- Games: TROPHY +- Contact: lifo2@SF + ## Collin Sanford [1] - Games: Crown and Cutlass @@ -1214,25 +2566,105 @@ - Games: Anagramarama +## cologne [1] + +- Games: VDrift +- Contact: vcologne@SF + +## colourles [1] + +- Games: Pentagram +- Contact: colourles@SF + +## ComradeKev [1] + +- Games: TripleA +- Contact: comradekev@SF + +## Connor Petty [1] + +- Games: PCGen +- Contact: cpmeister@SF + +## Cool Spot [1] + +- Games: Phantasy Star Rebirth +- Contact: rashashley@SF + ## copx. Sherm Pendley [1] - Games: Warp Rogue +## Cord Awtry [1] + +- Games: MegaMek +- Contact: kipsta@SF + ## CorEduard [1] - Games: CorEngine - Contact: coreduard@SF +## Corey Keasling [1] + +- Games: Lincity +- Contact: immunizer@SF + +## Corey O'Connor [1] + +- Games: Vega Strike +- Contact: zoldar256@SF + +## CoronelNiel [1] + +- Games: Liberal Crime Squad +- Contact: coronelniel@SF + +## Corvus [1] + +- Games: UltraStar +- Contact: corvus5@SF + +## crackedmind [1] + +- Games: OpenHoMM +- Contact: crackedmind@SF + ## Craft4 [1] - Games: Dark Destiny - Contact: craft4@SF +## Craig Rickel [1] + +- Games: Liberal Crime Squad +- Contact: crickel@SF + +## CrazyWeazel [1] + +- Games: SunDog Resurrection +- Contact: crazyweazel@SF + +## Crimson Wizard [1] + +- Games: Korax' Heritage +- Contact: crimsonwizard@SF + ## Cristian Vlasceanu [1] - Games: AssaultCube - Contact: vondrakula@SF +## Cruaich [1] + +- Games: Transfusion +- Contact: cruaich@SF + +## Crystal Hammer [1] + +- Games: Stunt Rally +- Contact: crystalhammer@SF + ## crystal-manage [1] - Games: Crystal Space 3D SDK @@ -1243,9 +2675,24 @@ - Games: Atomic Tanks - Contact: cthx@SF -## Curtis Olson [1] +## Cube [1] -- Games: FlightGear +- Games: World Builder +- Contact: cubeknight@SF + +## Cupid [1] + +- Games: Visual Pinball +- Contact: cupidsf@SF + +## Curt Northey [1] + +- Games: Wargamer +- Contact: curtjeeptr7@SF + +## Curtis Olson [2] + +- Games: FlightGear, PLIB - Contact: curt@SF ## CvX! [1] @@ -1253,6 +2700,21 @@ - Games: Blobby Volley 2 - Contact: cvoxs@SF +## CybaGirl [1] + +- Games: Privateer - Gemini Gold +- Contact: cybagirl@SF + +## Cyp [1] + +- Games: Warzone 2100 +- Contact: cypr@SF + +## D Willadsen [1] + +- Games: Vega Strike +- Contact: turbo6@SF + ## d-laser [1] - Games: FlightGear @@ -1268,11 +2730,106 @@ - Games: FlightGear - Contact: dfaber-fg@SF +## Da Weezle [1] + +- Games: Transfusion +- Contact: da_weezle@SF + +## Dadi Jonsson [1] + +- Games: WebChess +- Contact: dadij@SF + +## Dale Weiler [1] + +- Games: Red Eclipse +- Contact: graphitemaster@SF + +## Dallen Wilson [1] + +- Games: xu4 +- Contact: warped-dragon@SF + +## DaMarkov [1] + +- Games: Zed Online +- Contact: damarkov-zed@SF + ## Damyan Ivanov [1] - Games: Fish Fillets - Next Generation - Contact: dbi@SF +## Dan [1] + +- Games: Siege of Avalon : Open Source +- Contact: dankhan@SF + +## Dan Colardeau [1] + +- Games: StepMania +- Contact: diekatze88@SF + +## Dan Korostelev [1] + +- Games: Nexuiz +- Contact: dankor@SF + +## Dan Poineau [1] + +- Games: Pizza Business +- Contact: ares_@SF + +## Dan Shields [1] + +- Games: Tux Paint +- Contact: vg103@SF + +## Dan Tomalesky [1] + +- Games: WorldForge +- Contact: grimicus@SF + +## Dan Vigliotti [1] + +- Games: Privateer - Gemini Gold +- Contact: sirvig@SF + +## Dan Weber [1] + +- Games: xu4 +- Contact: dan_ultima@SF + +## dan_w [1] + +- Games: Vega Strike +- Contact: dan_w@SF + +## Daneih Ismail [1] + +- Games: Sudokuki +- Contact: dismail@SF + +## DangerOnTheRanger [1] + +- Games: OpenBlox +- Contact: openblocks@SF + +## Daniel [1] + +- Games: Siege of Avalon : Open Source +- Contact: vamporainze@SF + +## Daniel Aleksandrow [1] + +- Games: Vega Strike +- Contact: dandandaman@SF + +## Daniel Antunes [1] + +- Games: Open Tibia +- Contact: cayan@SF + ## Daniel Araújo [1] - Games: Elysium Engine @@ -1312,11 +2869,26 @@ - Games: JSkat -## Daniel Markstedt [1] +## Daniel Markstedt [2] -- Games: Freeciv +- Games: Freeciv, FreeTrain - Contact: himasaram@SF +## Daniel Nettesheim [1] + +- Games: Rolemaster Office +- Contact: golesny@SF + +## Daniel Persson [1] + +- Games: PlaneShift +- Contact: woden_@SF + +## Daniel Reiter Horn [1] + +- Games: Vega Strike +- Contact: danielrh@SF + ## Daniel Remenak [1] - Games: BZFlag @@ -1327,16 +2899,46 @@ - Games: Colobot: Gold Edition - Organization: Epsitec +## Daniel S. [1] + +- Games: Open Jumpgate +- Contact: danielscheibe@SF + +## Daniel Schellhammer [1] + +- Games: Speed Dreams +- Contact: schellhammer@SF + ## Daniel Swanson [1] - Games: Doomsday Engine - Contact: danij@SF -## Daniel Vale [1] +## Daniel Takai [1] -- Games: GM Tools +- Games: VASSAL +- Contact: danieltakai@SF + +## Daniel Vale [2] + +- Games: GM Tools, Stars! Nova - Contact: dan_vale@SF +## Daniel Vernon [1] + +- Games: Stunt Car Racer Remake +- Contact: djvernon@SF + +## daniel_santos [1] + +- Games: xu4 +- Contact: daniel_santos@SF + +## Daniele [1] + +- Games: YSoccer +- Contact: kanchelskis@SF + ## Daniele Napolitano [1] - Games: Gweled @@ -1346,10 +2948,30 @@ - Games: Blobby Volley 2 - Contact: danielknobe@SF +## Danny [1] + +- Games: Trinity Reign +- Contact: treaston@SF + ## Danny Allen [1] - Games: Blinken +## Danny Green [1] + +- Games: OpenBlox +- Contact: elitetrials@SF + +## Darcy Phipps [1] + +- Games: SunDog Resurrection +- Contact: tact@SF + +## Daren [1] + +- Games: Snowballz +- Contact: daren@SF + ## Dariusz Dawidowski [1] - Games: Crystal Space 3D SDK @@ -1360,6 +2982,16 @@ - Games: Daimonin - Contact: dark0z@SF +## Dark Mike [1] + +- Games: PCGen +- Contact: swtrse@SF + +## Dark_Sylinc [1] + +- Games: OGRE +- Contact: darksylinc@SF + ## darka [1] - Games: GUSANOS @@ -1370,26 +3002,86 @@ - Games: DarkCity - Contact: dark_city@SF +## Darke [1] + +- Games: Pentagram +- Contact: darkepaw@SF + +## Darkflame [1] + +- Games: Snowballz +- Contact: benrose111488@SF + +## DarkISI [1] + +- Games: MegaMek +- Contact: darkisi@SF + ## Darklord [1] - Games: FreeCol - Contact: pruano@SF +## DarkRain [1] + +- Games: UFO: Alien Invasion +- Contact: darkrainx@SF + ## darkrose [1] - Games: Turious - Contact: darkrose@GL -## Darrell Walisser [1] +## DAroo [1] -- Games: GLtron +- Games: VCMI +- Contact: ddaroo@SF + +## Darrell Walisser [2] + +- Games: GLtron, Tux Paint - Contact: walisser@SF +## Darren Janeczek [1] + +- Games: xu4 +- Contact: darren_janeczek@SF + +## DASPRiD [1] + +- Games: Tremulous +- Contact: dasprid@SF + +## Daston [1] + +- Games: Privateer - Gemini Gold +- Contact: daston@SF + +## Dave Ahn [1] + +- Games: Netrek +- Contact: ahn@SF + +## Dave Bentham [1] + +- Games: PlaneShift +- Contact: mr_dave@SF + ## Dave Brosius [1] - Games: BZFlag - Contact: dbrosius@SF +## Dave Cheever [1] + +- Games: PCGen +- Contact: takeyabue@SF + +## Dave Cole [1] + +- Games: Pioneers +- Contact: davecole@SF + ## Dave Fancella [1] - Games: Armagetron Advanced @@ -1410,21 +3102,81 @@ - Games: Armagetron Advanced - Contact: iceman150m@SF +## Dave Jeffery [1] + +- Games: Vega Strike +- Contact: lordbeatnik@SF + +## Dave Pinkney [1] + +- Games: Netrek +- Contact: dpinkney@SF + ## Dave Rodgers [1] - Games: BZFlag - Contact: trepan@SF +## Dave Turner [1] + +- Games: Transfusion +- Contact: darth_linux@SF + +## DaveG [1] + +- Games: PlaneShift +- Contact: dave-g@SF + ## David [1] - Games: Dune Dynasty - Contact: dswang@SF +## David Beleznay [1] + +- Games: Scorched3D +- Contact: dbeleznay@SF + +## David Bruce [1] + +- Games: Tux of Math Command +- Contact: davidsbruce@SF + +## David Byron [1] + +- Games: OpenRPG +- Contact: davidbyron@SF + +## David C. [1] + +- Games: S.C.O.U.R.G.E. +- Contact: daroth-u@SF + +## David Cohrs [1] + +- Games: NetHack +- Contact: cohrs@SF + ## David Corpstein [1] - Games: FreeCol - Contact: davidcorpstein@SF +## David Costanzo [1] + +- Games: Open Quartz +- Contact: david_costanzo@SF + +## David Fallon [1] + +- Games: Pioneers +- Contact: dfallon@SF + +## David Fraser [1] + +- Games: Psyco +- Contact: davidfraser@SF + ## David Gibbs [1] - Games: Omega-rpg @@ -1435,6 +3187,21 @@ - Games: FreeCol - Contact: daverd@SF +## David Haft [1] + +- Games: UnNetHack +- Contact: tedav@SF + +## David Heremans [1] + +- Games: openMSX +- Contact: turbor@SF + +## David house [1] + +- Games: Siege of Avalon : Open Source +- Contact: davidahouse@SF + ## David Hudson [1] - Games: FreeTrain @@ -1458,6 +3225,11 @@ - Games: Xultris +## David Négrier [1] + +- Games: Krystal Drop +- Contact: arak01@SF + ## David Olofson [1] - Games: Kobo Deluxe @@ -1466,6 +3238,26 @@ - Games: Jamp +## David Pierron [1] + +- Games: Space Trader for Windows +- Contact: david_pierron@SF + +## David R. Bender [1] + +- Games: PCGen +- Contact: papa_drb@SF + +## David Rogers [1] + +- Games: OGRE +- Contact: masterfalcon@SF + +## David Rose [1] + +- Games: PyKaraoke +- Contact: drwr@SF + ## David Rosen [1] - Games: Black Shades Elite @@ -1485,16 +3277,56 @@ - Games: Crossfire - Contact: onefang@SF +## David Slimp [1] + +- Games: World of Phaos +- Contact: rock808@SF + +## David Smith [1] + +- Games: MegaMek +- Contact: xylaan@SF + +## David Sullivan [1] + +- Games: VASSAL +- Contact: davidsullivan1@SF, davidsullivan@SF + +## David Swasey [1] + +- Games: Netrek +- Contact: dswasey@SF + ## David Thulson [1] - Games: Crown and Cutlass - Contact: dthulson@SF +## David Tomandl [1] + +- Games: Liberal Crime Squad +- Contact: dtomandl@SF + +## David White [1] + +- Games: The Battle for Wesnoth +- Contact: davewx7@SF + ## David Wollner [1] - Games: BZFlag - Contact: dbw192@SF +## David Zokvic [1] + +- Games: WorldForge +- Contact: zokvicds@SF + +## Davide Coppola [1] + +- Games: "Mars, Land of No Mercy" +- Contact: dav_mc@SF + ## Davide Giorgi [1] - Games: Escape Towards The Unknown @@ -1510,11 +3342,36 @@ - Games: Dave Gnukem - Contact: davidjoffe@SF +## Dawid Dembowski [1] + +- Games: UltraStar Deluxe +- Contact: davidus01@SF + +## deaf.seven [1] + +- Games: PixelLight +- Contact: deaf-seven@SF + +## Dean Luick [1] + +- Games: NetHack +- Contact: dluick@SF + +## Deiz [1] + +- Games: Naev +- Contact: deiz@SF + ## Dejan Lozanovic [1] - Games: Freestars - Contact: dlozanovic@SF +## dekki [1] + +- Games: "Mars, Land of No Mercy" +- Contact: dekki@SF + ## DelphaDesign [1] - Games: Annex: Conquer the World @@ -1539,15 +3396,50 @@ - Games: FreeCol - Contact: dsedrez@SF +## Dennis [1] + +- Games: Open Tibia +- Contact: decar@SF + +## Dennis Jorgenson [1] + +- Games: VASSAL +- Contact: dennisj2@SF + ## Dennis Meuwissen [1] - Games: Doom Legacy - Contact: exl@SF +## Dennis Murczak [1] + +- Games: S.C.O.U.R.G.E. +- Contact: lordtoran@SF + +## Derek Evans [1] + +- Games: MegaMek +- Contact: deadeye00@SF + ## Derek Hausauer [1] - Games: T^3 +## Derek Meek [1] + +- Games: Vega Strike +- Contact: kazan@SF + +## Derek Ray [1] + +- Games: NetHack +- Contact: nhlorimer@SF + +## Deric Page [1] + +- Games: MegaMek +- Contact: dericpage@SF + ## DesertRatX [1] - Games: Dark Destiny @@ -1557,11 +3449,26 @@ - Games: n2048 +## devdlee [1] + +- Games: Mpango +- Contact: devdlee@SF + +## Deve [1] + +- Games: SuperTuxKart +- Contact: deveee@SF + ## devland [1] - Games: Devana - Contact: devland@SF +## Devon Jones [1] + +- Games: PCGen +- Contact: soulcatcher@SF + ## Devon Schudy [1] - Games: Grobots @@ -1572,38 +3479,153 @@ - Games: Ecksdee - Contact: dex7@SF +## DeX [1] + +- Games: Stargus +- Contact: dex77@SF + ## dg-505 [1] - Games: FlightGear - Contact: dg-505@SF +## Dick Balaska [1] + +- Games: XPilot +- Contact: dik@SF + +## Diego J. Romero López [1] + +- Games: S.C.O.U.R.G.E. +- Contact: diegoj@SF + +## Digital Xero [1] + +- Games: OpenRPG +- Contact: digitalxero@SF + ## Dilvish [1] - Games: FreeOrion - Contact: dilvish-fo@SF +## Dima Nemchenko [1] + +- Games: MegaMek +- Contact: nemchenk@SF + +## Dimitar Kavlakov [1] + +- Games: Vega Strike +- Contact: dkavlakov@SF + ## Dimitris Papavasiliou [1] - Games: Billiards +## Dion Bonner [1] + +- Games: Nighthawk +- Contact: dionb@SF + +## Dirk Manders [1] + +- Games: Underworld Adventures +- Contact: phlask@SF + +## Dirk Walter [1] + +- Games: MegaMek +- Contact: dirkwalter@SF + +## Dirk_F [1] + +- Games: X-Force: Fight For Destiny +- Contact: dirk_f@SF + +## DirkW [1] + +- Games: Simutrans +- Contact: dirrrtydirk@SF + +## dirtside [1] + +- Games: Pioneers +- Contact: dirtside@SF + +## discojonny [1] + +- Games: "Mars, Land of No Mercy" +- Contact: discojonny@SF + +## Distant Scholar [1] + +- Games: PCGen +- Contact: distant-scholar@SF + +## Dj Gilcrease [1] + +- Games: OpenRPG +- Contact: djgilcrease@SF + +## DJBlayde [1] + +- Games: PCGen +- Contact: djblayde@SF + ## DLH [1] - Games: Armagetron Advanced - Contact: dlh3@SF, nemostultae@SF +## Dmitry Salnikov [1] + +- Games: Sudokuki +- Contact: dimasalnikov88@SF + ## Dmitry Suzdalev [1] - Games: KMines +## Dolce Triade [1] + +- Games: Unvanquished +- Contact: dolcetriade@SF + ## Domi [1] - Games: Crystal Space 3D SDK - Contact: dominikseifert@SF +## Dominik Derwinski [1] + +- Games: VASSAL +- Contact: morvael@SF + +## Dominik Reichardt [3] + +- Games: Nuvie, Pentagram, xu4 +- Contact: dominus@SF + +## Dominique Leuenberger [1] + +- Games: "Mars, Land of No Mercy" +- Contact: dimstar@SF + +## Dominique Louis [1] + +- Games: Siege of Avalon : Open Source +- Contact: savage@SF + ## Dominique Roux-Serret [1] - Games: Ri-li +## Don King Resurrected [1] + +- Games: Trinity Reign +- Contact: tangorr@SF + ## Don Llopis [1] - Games: XInvaders 3D @@ -1614,6 +3636,11 @@ - Games: Crystal Space 3D SDK - Contact: zeitherr@SF +## Don Peterson [1] + +- Games: PCGen +- Contact: sagnam@SF + ## Don Woods [1] - Games: Colossal Cave Adventure @@ -1627,10 +3654,65 @@ - Games: Advanced Strategic Command - Contact: dorfdrull@SF -## Doruk Fisek [1] +## Doruk Fisek [2] -- Games: FreeCol -- Contact: dfisek2@SF +- Games: FreeCol, Tux Paint +- Contact: dfisek2@SF, dobidik@SF + +## DoubleMalt [1] + +- Games: Skrupel - Tribute Compilation +- Contact: doublemalt@SF + +## Doug Barbieri [1] + +- Games: Tux Paint +- Contact: dooglio@SF + +## Doug Day [1] + +- Games: xu4 +- Contact: dougday@SF + +## Dr. Martin Brumm [1] + +- Games: Rails: an 18xx game system +- Contact: neutronc@SF + +## Dr. Wolf-Dieter Beelitz [1] + +- Games: Speed Dreams +- Contact: wdbee@SF + +## drafkind [1] + +- Games: PainTown +- Contact: drafkind@SF + +## Draghir [1] + +- Games: World of Phaos +- Contact: draghir@SF + +## drane [1] + +- Games: UFO: Alien Invasion +- Contact: drane@SF + +## dreadmullet [1] + +- Games: Liberal Crime Squad +- Contact: dreadmullet@SF + +## Dready [1] + +- Games: Skrupel - Tribute Compilation +- Contact: dready359@SF + +## Dreaming Psion [1] + +- Games: PCGen +- Contact: dreamingpison@SF ## driAn [1] @@ -1641,11 +3723,26 @@ - Games: Steamer Duck -## DunkFordyce [1] +## dTerm [1] -- Games: Dune Legacy +- Games: Wolfpack Empire +- Contact: dterm@SF + +## Duke [1] + +- Games: UFO: Alien Invasion +- Contact: aduke1@SF + +## DunkFordyce [2] + +- Games: Dune Legacy, Snowballz - Contact: dunkfordyce@SF +## Duong Khang NGUYEN [1] + +- Games: OpenCity +- Contact: neoneurone@SF + ## Durk Talsma [1] - Games: FlightGear @@ -1656,10 +3753,25 @@ - Games: Combat Simulator Project - Contact: dustofdust@SF +## dwachs [1] + +- Games: Simutrans +- Contact: dwachs@SF + +## Dylan Thurston [1] + +- Games: Toppler +- Contact: dthurston@SF + ## Dzamil Kamanger [1] - Games: Spice Trade +## Dzmitry Haiduchonak [1] + +- Games: Metal Mech +- Contact: madbump@SF + ## Eben Upton [1] - Games: Ajax3d @@ -1669,6 +3781,36 @@ - Games: VMS Empire +## Ed Kolis [1] + +- Games: Stars! Nova +- Contact: ekolis@SF + +## Ed Sweetman [1] + +- Games: Vega Strike +- Contact: cellsafemode@SF, safemode@SF + +## Eddie [1] + +- Games: UltraStar Deluxe +- Contact: eddie-0815@SF + +## Eddy Anthony [1] + +- Games: PCGen +- Contact: eddyanthony@SF + +## Eddy Cullen [1] + +- Games: MegaMek +- Contact: screamingwns@SF + +## Edgar Alberto Molina [1] + +- Games: KQ Lives +- Contact: edgarmolina@SF + ## Edmund Keefe [1] - Games: Armagetron Advanced @@ -1689,11 +3831,36 @@ - Games: DNT - Contact: ecarvalh@SF +## Eduardo de Vera [1] + +- Games: Mpango +- Contact: edvera@SF + +## Eduardo Machado de Oliveira [1] + +- Games: KQ Lives +- Contact: dudaskank@SF + ## Edward d'Auvergne [1] - Games: FlightGear - Contact: edauvergne@SF +## Edward Lii [1] + +- Games: Me and My Shadow +- Contact: edwardlii@SF + +## Edwin [1] + +- Games: openMSX +- Contact: edwinv@SF + +## Edwin van der Wal [1] + +- Games: TripleA +- Contact: evdwal@SF + ## Eero Tamminen [1] - Games: SolarWolf @@ -1703,36 +3870,76 @@ - Games: Bombermaaan - Contact: eggomat@SF +## Eirik Stople [1] + +- Games: OpenTitus +- Contact: stople@SF + ## eleazzaar [1] - Games: FreeOrion - Contact: eleazzaar@SF +## Elf [1] + +- Games: Open Tibia +- Contact: fightingelf@SF + ## Elias Jarlebring [1] - Games: FreeCol - Contact: jarl@SF +## Elijah Meeks [1] + +- Games: Xconq +- Contact: elijah_meeks@SF + +## Elio Gubser [1] + +- Games: Warzone 2100 +- Contact: ohyeh@SF + ## Eliot [1] - Games: FreeCol - Contact: whyriskit@SF +## Eliot Lash [1] + +- Games: Vega Strike +- Contact: fadookie@SF + ## Elliot Lockwood [1] - Games: AssaultCube - Contact: verbal33@SF +## elro the onk [1] + +- Games: PCGen +- Contact: elrotheonk@SF + ## elwin013 [1] - Games: Daimonin - Contact: elwin013@SF +## Elye Ball [1] + +- Games: "Mars, Land of No Mercy" +- Contact: elyeball@SF + ## em7em7em [1] - Games: Battery - Contact: em7em7em@SF +## Emanuele Sorce [1] + +- Games: Trigger +- Contact: tronfourtytwo@SF + ## Emmanuel BARANGER [1] - Games: FlightGear @@ -1742,11 +3949,26 @@ - Games: Powermanga +## EmP [1] + +- Games: Stareater +- Contact: emp64213@SF + ## Emyr James [1] - Games: Combat Simulator Project - Contact: ejames@SF +## ender_saka [1] + +- Games: "Mars, Land of No Mercy" +- Contact: ender_saka@SF + +## Enetheru [1] + +- Games: "Mars, Land of No Mercy" +- Contact: aglargelair@SF + ## enveloop [1] - Games: Glest @@ -1767,6 +3989,11 @@ - Games: Crossfire - Contact: eracc@SF +## Erhard List [1] + +- Games: PokerTH +- Contact: eflist@SF + ## Eric [1] - Games: FlightGear @@ -1777,15 +4004,50 @@ - Games: "Eos, Dawn of Light: A Space Opera" - Contact: oberon7@SF +## Eric Boon [1] + +- Games: openMSX +- Contact: auroramsx@SF + ## Eric Cheung [1] - Games: GL-117 +## Eric Espie [1] + +- Games: "TORCS, The Open Racing Car Simulator" +- Contact: torcs@SF + +## Eric Fry [1] + +- Games: Nuvie +- Contact: efry@SF + ## Eric Gillespie [1] - Games: Nighthawk - Contact: brickviking@GH, viking667@SF +## Eric Gindre [1] + +- Games: Simutrans +- Contact: egindre@SF + +## Eric Gustafson [1] + +- Games: StepMania +- Contact: egustafson@SF + +## Eric Hall [1] + +- Games: Tux Racer +- Contact: ehall@SF + +## Eric Holniker [1] + +- Games: StepMania +- Contact: darkchao56@SF + ## Eric House [1] - Games: Crosswords @@ -1795,14 +4057,39 @@ - Games: Crossfire - Contact: erickendrick@SF +## Eric Lavigne [1] + +- Games: PLIB +- Contact: smokydiamond@SF + +## Eric Lloyd [1] + +- Games: VASSAL +- Contact: erlloyd@SF + +## Eric Love [1] + +- Games: KQ Lives +- Contact: eric_love@SF + ## Eric P. Hutchins [1] - Games: Ball and Paddle +## Eric Parker [1] + +- Games: PCGen +- Contact: eparker069@SF + ## Eric S. Raymond [1] - Games: VMS Empire +## Eric Shafto [1] + +- Games: Omega-rpg +- Contact: eshafto@SF + ## Eric Sunshine [1] - Games: Crystal Space 3D SDK @@ -1817,6 +4104,16 @@ - Games: Freya Game Engine - Contact: elmseeker@SF +## Eric Wasylishen [1] + +- Games: QuakeSpasm +- Contact: ewasylishen@SF + +## Erik Anderson [1] + +- Games: Race Into Space +- Contact: sputnik90@SF + ## Erik Auerswald [1] - Games: Kobo Deluxe @@ -1836,11 +4133,21 @@ - Games: GUSANOS - Contact: gliptic@SF +## Erik Ogenvik [1] + +- Games: WorldForge +- Contact: erikhjortsberg@SF + ## Erik Schultheis [1] - Games: Blobby Volley 2 - Contact: ngc92@SF +## Erik Vos [1] + +- Games: Rails: an 18xx game system +- Contact: evos@SF + ## Erik Wramner [1] - Games: FreeCol @@ -1851,20 +4158,61 @@ - Games: Extreme Tux Racer - Contact: erin10@SF +## Eshed [1] + +- Games: Spring +- Contact: ashdnazg@SF + +## Eskild Hustvedt [1] + +- Games: Nighthawk +- Contact: zero_dogg@SF + +## esteel [1] + +- Games: Nexuiz +- Contact: esteel@SF + +## etheralwalker [1] + +- Games: Vega Strike +- Contact: etheralwalker@SF + ## Etienne Sobole [1] - Games: Powermanga +- Contact: boum@SF ## eUCM Developer [1] - Games: eAdventure - Contact: eucm-dev@SF +## Eugen Udrea [1] + +- Games: Wargamer +- Contact: eugenudrea@SF + ## Eugene Andreeshchev [1] - Games: GL-117 - Contact: admix@SF +## Eugene Melekhov [1] + +- Games: MegaMek +- Contact: mev@SF + +## Eugene Zelenko [1] + +- Games: Tux Paint +- Contact: greendeath@SF + +## EugeneLoza [1] + +- Games: Project Helena +- Contact: eugeneloza@SF + ## Eugenio Laghi [1] - Games: FreeLords @@ -1880,9 +4228,9 @@ - Games: FreeCol - Contact: evgenyrak@SF -## Evil Mr Henry [1] +## Evil Mr Henry [5] -- Games: Dave Gnukem +- Games: Dave Gnukem, Noiz2sa, PARSEC47, rRootage, Tumiki Fighters - Contact: evilmrhenry@SF ## evyscr [1] @@ -1890,16 +4238,41 @@ - Games: Freeciv - Contact: evyscr@SF +## exe [1] + +- Games: Manic Digger +- Contact: exe5@SF + ## Exosphere [1] - Games: Cubosphere - Contact: exosphere@SF -## F Richter [1] +## Ezee [1] -- Games: Crystal Space 3D SDK +- Games: Vega Strike +- Contact: mnemonikus@SF + +## F Richter [2] + +- Games: Crystal Space 3D SDK, PlaneShift - Contact: res2002@SF +## F Wolff [1] + +- Games: Tux Paint +- Contact: friedelwolff@SF + +## Fabian Franz [1] + +- Games: Tux Paint +- Contact: fabiancvs@SF + +## Fabio128 [1] + +- Games: Simutrans +- Contact: fabiogonella@SF + ## Fahim Dalvi [1] - Games: FlightGear @@ -1924,11 +4297,36 @@ - Games: AdaGate - Contact: fastrgv@GH +## fastsammy [1] + +- Games: MegaMek +- Contact: fastsammy@SF + +## Fatma Ozkan [1] + +- Games: Tux Paint +- Contact: fatma_ozkan@SF + +## favorito [1] + +- Games: Red Eclipse +- Contact: favorito@SF + ## fdrpgrsync [1] - Games: FreedroidRPG - Contact: fdrpgrsync@SF +## Federico [1] + +- Games: WAtomic +- Contact: ironfede@SF + +## Federico Corso [1] + +- Games: VASSAL +- Contact: fredkors@SF + ## Federico Poloni [1] - Games: Bastet @@ -1943,6 +4341,21 @@ - Games: Der Clou! - Contact: flips@SF +## Felipe Rayel [1] + +- Games: WebChess +- Contact: frayel@SF + +## Felix Hammer [1] + +- Games: PokerTH +- Contact: doitux@SF + +## Felix Kaechele [1] + +- Games: UltraStar Deluxe +- Contact: nexus89@SF + ## Felix Lauer [1] - Games: M.A.R.S. @@ -1956,16 +4369,51 @@ - Games: Boson - Contact: halux2001@SF +## Ferencz Tamas [1] + +- Games: World of Phaos +- Contact: tlof@SF + +## Fernando Benites [1] + +- Games: XBlast +- Contact: iskywalker@SF + ## Fernando García Liñán [1] - Games: FlightGear - Contact: fgarlin@SF -## filinep [1] +## fike [1] -- Games: Arianne / Marauroa +- Games: Open Tibia +- Contact: ots_fike@SF + +## filinep [2] + +- Games: Arianne / Marauroa, Stendhal - Contact: filinep@SF +## Filip H.F. "FiXato" Slagter [1] + +- Games: openMSX +- Contact: fixato@SF + +## Finn Wilcox [1] + +- Games: Mocha Doom +- Contact: finnw@SF + +## Firewolf [1] + +- Games: Liberal Crime Squad +- Contact: firewolf123@SF + +## Fitzs [1] + +- Games: PCGen +- Contact: fitzs@SF + ## Flash [1] - Games: BZFlag @@ -1975,6 +4423,11 @@ - Games: Yorg +## Fleeky Flanco [1] + +- Games: Red Eclipse +- Contact: plunkitron@SF + ## Florent Rougon [1] - Games: FlightGear @@ -1990,10 +4443,20 @@ - Games: Holtz - Contact: ffischer@SF +## Florian Richter [1] + +- Games: Secret Maryo Chronicles +- Contact: fluxy2097@SF + ## Florian Schulze [1] - Games: Kobo Deluxe +## Florian Thauer [1] + +- Games: PokerTH +- Contact: floty@SF + ## Florian Wesch [1] - Games: Infon Battle Arena @@ -2003,35 +4466,125 @@ - Games: AssaultCube - Contact: flowtron@SF +## FluffyFreak [1] + +- Games: Stunt Car Racer Remake +- Contact: fluffyfreak@SF + +## Fluxxdog [1] + +- Games: PCGen +- Contact: fluxxdog@SF + ## fluzz [1] - Games: FreedroidRPG - Contact: fluzz@SF +## Fokker [1] + +- Games: Metal Mech +- Contact: fokker-bh@SF + +## Foo Five Thousand [1] + +- Games: Stars! Nova +- Contact: foo5000@SF + +## foo-script [1] + +- Games: Tux Paint +- Contact: foo-script@SF + +## ForceUser [1] + +- Games: Stars! Nova +- Contact: forceuser128@SF + ## Forest Darling [1] - Games: Attal: Lords of doom - Contact: fdarling@SF +## Forest Hale [3] + +- Games: Nexuiz, Transfusion, UFO: Alien Invasion +- Contact: lordhavoc@SF + +## Forrest [1] + +- Games: Stargus +- Contact: forrestpv@SF + ## Fossi [1] - Games: Crystal Space 3D SDK - Contact: fossifoo@SF +## Francesco [1] + +- Games: Open Surge +- Contact: frank50s@SF + +## Francesco Rossi [1] + +- Games: Ksudoku +- Contact: i-redsh@SF + ## Francesco Rossi [1] - Games: Ksudoku +## Francisco Athens [1] + +- Games: Lips of Suna +- Contact: freelikegnu@SF + +## Francisco Ortega [1] + +- Games: Korax' Heritage +- Contact: firebrand_kh@SF + +## Francisco Salguero Esturillo [1] + +- Games: Visual Pinball +- Contact: manofwar32@SF + +## Frank [1] + +- Games: Openfrag +- Contact: fspijkerman@SF + +## Frank Blandon [1] + +- Games: MicroWar 2.0 +- Contact: blandonfrank@SF + +## Frank Deinzer [1] + +- Games: PixelLight +- Contact: frank-deinzer@SF + ## Frank Evers [1] - Games: BZFlag - Contact: pimpinella@SF +## Frank Oosterhuis [1] + +- Games: Openfrag +- Contact: franktm@SF + ## Frank Thilo [1] - Games: BZFlag - Contact: chestal@SF +## Frank Zago [2] + +- Games: VCMI, XBlast +- Contact: fzago@SF + ## Franklin Buskirk [1] - Games: Betrayer's Moon Tactics @@ -2057,11 +4610,26 @@ - Games: Armagetron Advanced - Contact: guru3@SF +## Fred Wulff [1] + +- Games: StepMania +- Contact: rabidbunnylover@SF + +## Freddie [1] + +- Games: Warzone 2100 +- Contact: evilguru@SF + ## Frederic Vernier [1] - Games: FreeCol - Contact: fredericvernier@SF +## Frederick Weld [1] + +- Games: Rails: an 18xx game system +- Contact: frederickweld@SF + ## Frederik Kesting [1] - Games: Advanced Strategic Command @@ -2071,15 +4639,60 @@ - Games: Sinatra +## Freek Dijkstra [1] + +- Games: Rails: an 18xx game system +- Contact: macfreek@SF + +## FreeLikeGNU [1] + +- Games: S.C.O.U.R.G.E. +- Contact: oc73@SF + ## FrenchYann [1] - Games: Chess3D +## frigoref [1] + +- Games: TripleA +- Contact: frigoref@SF + +## Friso van der Meer [1] + +- Games: Vega Strike +- Contact: keshta@SF + +## frobean [1] + +- Games: Vega Strike +- Contact: jeff_howard@SF + +## frodrigo [1] + +- Games: OpenCity +- Contact: frodrigo@SF + +## Fumiaki NAKANISHI (中西史明) [1] + +- Games: Sudokuki +- Contact: fnakanishi@SF + ## Fury [1] - Games: Bombermaaan - Contact: fury94@SF +## Future [1] + +- Games: Liberal Crime Squad +- Contact: jcarter2014@SF + +## fuzzel [1] + +- Games: Visual Pinball +- Contact: fuzzelhjb@SF + ## g [1] - Games: FreeCol @@ -2089,14 +4702,14 @@ - Games: Blasphemer -## Gabor Sebestyen [1] +## Gabor Sebestyen [2] -- Games: Doom Legacy +- Games: Doom Legacy, OpenMortal - Contact: segabor@SF -## Gabor Torok [1] +## Gabor Torok [2] -- Games: Abe's Amazing Adventure +- Games: Abe's Amazing Adventure, S.C.O.U.R.G.E. - Contact: gabortorok@SF ## Gabriele Cirulli [1] @@ -2120,11 +4733,46 @@ - Games: Civil - Contact: thecorruptor@SF +## Gargoylol [1] + +- Games: Open Quartz +- Contact: gargoylol@SF + +## Gauthier.N [1] + +- Games: Simutrans +- Contact: empounet@SF + +## Gavin Camp [1] + +- Games: Scorched3D +- Contact: scara@SF + +## Gecko667 [1] + +- Games: OpenAlchemist +- Contact: gecko667@SF + ## ged [1] - Games: Enigma - Contact: gedgeck@SF +## Gedece [1] + +- Games: Metal Mech +- Contact: gedecito@SF + +## geekwad [1] + +- Games: Snowballz +- Contact: geekwad@SF + +## Geert Schoots [1] + +- Games: Openfrag +- Contact: gschoots@SF + ## GeneralDisarray [1] - Games: AssaultCube @@ -2135,6 +4783,11 @@ - Games: Crystal Space 3D SDK, Ecksdee - Contact: genjix@SF +## Geo [1] + +- Games: VDrift +- Contact: geo53@SF + ## Geoff [1] - Games: FlightGear @@ -2145,6 +4798,16 @@ - Games: Doom Legacy - Contact: darkdruid@SF +## Geoff Benson [1] + +- Games: StepMania +- Contact: xaroth@SF + +## Geoff Cashman [1] + +- Games: Wolfpack Empire +- Contact: gcashman@SF + ## Geoff Lamperd [1] - Games: GalaxyNG @@ -2155,11 +4818,51 @@ - Games: FreeOrion - Contact: geoffthemedio@SF +## George Hayward [1] + +- Games: VASSAL +- Contact: george973@SF + +## George Hilios [1] + +- Games: Spring +- Contact: jouninkomiko@SF + +## Georges Grondin [1] + +- Games: Red Eclipse +- Contact: trak1@SF + ## Georgios Mixalis [1] - Games: Cubosphere - Contact: georgiosmixalis@SF +## geoscope [1] + +- Games: Vega Strike +- Contact: geoscope@SF + +## Gerard Decatrel [1] + +- Games: PLIB +- Contact: deca@SF + +## Gerard Lim [1] + +- Games: Netrek +- Contact: mindmeld@SF + +## Gerd Flaig [1] + +- Games: Wolfpack Empire +- Contact: gefla@SF + +## Gerfried Fuchs [1] + +- Games: XBlast +- Contact: alfie@SF + ## Germán Blando [1] - Games: Armies @@ -2174,26 +4877,81 @@ - Games: Iris2 +## Gia Shervashidze [1] + +- Games: Tux Paint +- Contact: giasher@SF + +## Giancarlo Niccolai [1] + +- Games: PLIB +- Contact: jonnymind@SF + +## Giel van Schijndel [1] + +- Games: Warzone 2100 +- Contact: muggenhor@SF + ## Gijs [1] - Games: FlightGear - Contact: gijsrooy@SF +## Gil Carter [1] + +- Games: PLIB +- Contact: gilcarter@SF + ## Gil Megidish [1] - Games: Heart of the Alien - Contact: gilm@SF +## Giles Williams [1] + +- Games: VDrift +- Contact: aegidian@SF + +## Gilfar [1] + +- Games: Open Tibia +- Contact: snack@SF + ## Gilles Oppeneau [1] - Games: Attal: Lords of doom - Contact: mitro@SF +## gino [1] + +- Games: PyBreak360 +- Contact: ginoingras@SF + +## Gjorbjond [1] + +- Games: PCGen +- Contact: gjorbjond@SF + +## Glazunov Vadim [1] + +- Games: VCMI +- Contact: neweagle@SF + ## Glen Masgai [1] - Games: AssaultCube - Contact: mimosius@SF +## Glenn Maynard [1] + +- Games: StepMania +- Contact: gmaynard@SF + +## Glenn Nilsen [1] + +- Games: T-Bots +- Contact: zapdeluxe@SF + ## glezmen [1] - Games: Brikx @@ -2204,6 +4962,11 @@ - Games: Freestars - Contact: grantspeelman@SF +## gnfalex [1] + +- Games: X-Force: Fight For Destiny +- Contact: gnfalex@SF + ## Gnome [2] - Games: Gnome Chess, Mines @@ -2218,6 +4981,11 @@ - Games: Decker - Contact: gbianchi@SF +## Gonéri Le Bouder [1] + +- Games: VDrift +- Contact: goneri@SF + ## Goran Mrdja [1] - Games: Spice Trade @@ -2227,15 +4995,50 @@ - Games: Haxima - Contact: gmcnutt@SF +## Gorrünwe [1] + +- Games: Vega Strike +- Contact: gorrunwe@SF + ## Graeme Gott [5] - Games: CuteMaze, Gottet, Simsu, Tanglet, Tetzle +## Graham Burgess [1] + +- Games: PrBoom+ +- Contact: grazza@SF + +## Greg Bingleman [1] + +- Games: PCGen +- Contact: byngl@SF + +## Greg Cotton [1] + +- Games: StepMania +- Contact: gregcotton@SF + +## Greg E [1] + +- Games: Transfusion +- Contact: frightfan@SF + ## Greg Hoffman [1] - Games: Crystal Space 3D SDK - Contact: glh3586@SF +## Greg Moorer [1] + +- Games: Wargamer +- Contact: civwarbuff@SF + +## Greg* [1] + +- Games: Slingshot +- Contact: groscask@SF + ## Gregor Zeitlinger [1] - Games: FreeCol @@ -2246,6 +5049,16 @@ - Games: Shotgun Debugger - Organization: Game Creation Society +## Gregory Saunders [1] + +- Games: xu4 +- Contact: grerfy@SF + +## Gregory Sharp [1] + +- Games: Lincity +- Contact: gregsharp@SF + ## Gregory Smith [1] - Games: Aleph One @@ -2256,6 +5069,16 @@ - Games: HolySpirit - Contact: gregouar@SF +## Greywhind [1] + +- Games: Thousand Parsec +- Contact: greywhind@SF + +## GriZzm0 [1] + +- Games: Open Tibia +- Contact: grizzm0@SF + ## Grokmoo [1] - Games: Hale @@ -2269,21 +5092,48 @@ ## Gryc Ueusp [1] - Games: Libre: The Open Source Card Game +- Contact: gryc_ueusp@SF ## Grzegorz Kaczorek [1] - Games: AutoREALM - Contact: mizy@SF +## Guanpeng Xu [1] + +- Games: UnNetHack +- Contact: leo_virgo@SF + +## Guess Who [1] + +- Games: Maxit +- Contact: textfield@SF + +## Guest41 [1] + +- Games: UnNetHack +- Contact: guest41@SF + +## guigoz [1] + +- Games: OpenAlchemist +- Contact: guig0z@SF + ## Guillaume Delhumeau [1] - Games: OpenAlchemist +- Contact: k3ph@SF ## Gunnar [1] - Games: Bygfoot - Contact: gunnar_g@SF +## gurr [1] + +- Games: UnNetHack +- Contact: martin-gurr@SF + ## Gustavo Bonis Calvo [1] - Games: Colonization too @@ -2294,54 +5144,115 @@ - Games: DNT - Contact: gushm@SF -## Guus Sliepen [2] +## Guus Sliepen [3] -- Games: Blob Wars Episode 2 : Blob And Conquer, Blobwars: Metal Blob Solid +- Games: Blob Wars Episode 2 : Blob And Conquer, Blobwars: Metal Blob Solid, Omega-rpg - Contact: sliepen@SF ## Guy Langston [1] - Games: SokoSolve +- Contact: bitwacker@SF + +## Guy Rutenberg [1] + +- Games: Open Yahtzee +- Contact: guyru@SF ## Gyozo Both [1] - Games: Bygfoot - Contact: gyboth@SF +## Günter Beine [1] + +- Games: Simutrans +- Contact: michelstadt@SF + +## Günther Brammer [1] + +- Games: KQ Lives +- Contact: evoguenther@SF + +## Hades Lucifer [1] + +- Games: PCGen +- Contact: hadeslucifer@SF + ## Haeric [1] - Games: phpRPG - Contact: haeric@SF +## Hagen Möbius [1] + +- Games: WorldForge +- Contact: punytroll@SF + ## Hagish [1] - Games: Iris2 -## Hajo [1] +## Hajo [2] -- Games: H-World +- Games: H-World, The hunt for the lost rainbow jewels (Jewelhunt) - Contact: h_malthaner@SF +## Haktivex [1] + +- Games: Open Tibia +- Contact: haktivex@SF + +## Hal Bonnin [1] + +- Games: Omega-rpg +- Contact: triangle@SF + +## Hal Eisen [1] + +- Games: Pioneers +- Contact: halmonster@SF + ## Hal Engel [1] - Games: FlightGear - Contact: hvengel@SF +## Hammer [1] + +- Games: MegaMek +- Contact: hammer-gs@SF + ## Hamza Alloush [1] - Games: FlightGear - Contact: hamzaalloush@SF +## Hans Dampf [1] + +- Games: Nexuiz +- Contact: psychotronic@SF + ## Hans de Goede [2] - Games: Blob Wars Episode 2 : Blob And Conquer, Blobwars: Metal Blob Solid - Contact: jwrdegoede@SF +## Hans Häggström [1] + +- Games: WorldForge +- Contact: zzorn@SF + ## Harald Johnsen [1] - Games: FlightGear - Contact: tipunch@SF +## Hardy Leonardo da Cunha Pereira [1] + +- Games: Vega Strike +- Contact: realtico@SF + ## Harm Geert Muller [1] - Games: Fairy-Max @@ -2355,11 +5266,21 @@ - Games: Dune Legacy - Contact: harrytormey@SF +## Haruna Matsumori [1] + +- Games: Speed Dreams +- Contact: harunasan@SF + ## hatterson [1] - Games: Freestars - Contact: hatterson@SF +## HaveAPinch [1] + +- Games: Tactics Squad +- Contact: luismw@SF + ## Hector A Escobedo [1] - Games: Grobots @@ -2370,14 +5291,30 @@ - Games: Iter Vehemens ad Necem - Contact: hejosa@SF +## Heiko Irrgang [1] + +- Games: SDL Game Engine 2D +- Contact: god64@SF + ## Heiko Schäfer [1] - Games: NetMauMau +- Contact: burmagroup@SF ## Heiner Marxen [1] - Games: JSoko +## Helge Richter [1] + +- Games: MegaMek +- Contact: mcwizard@SF + +## Heliton [1] + +- Games: Open Tibia +- Contact: heliton@SF + ## Helix [1] - Games: Cubosphere @@ -2388,6 +5325,11 @@ - Games: EDuke32 - Contact: helixhorned@SF +## hellcatv [2] + +- Games: Privateer - Gemini Gold, Vega Strike +- Contact: hellcatv@SF + ## Helmut Hoenig [1] - Games: Xjig @@ -2397,16 +5339,26 @@ - Games: EDuke32 - Contact: hendricks266@SF -## Hendrik Brummermann [1] +## Hendrik Brummermann [2] -- Games: Arianne / Marauroa +- Games: Arianne / Marauroa, Stendhal - Contact: nhnb@SF +## Henk Slaaf [1] + +- Games: PCGen +- Contact: henkslaaf2@SF + ## Henning [1] - Games: FlightGear - Contact: jsb1685@SF +## Henning Maas [1] + +- Games: Stars! Nova +- Contact: maash@SF + ## Henric Jungheim [1] - Games: Dune Legacy @@ -2422,6 +5374,21 @@ - Games: Emilia Pinball - Contact: henqvist@SF +## Henrik Pihl [2] + +- Games: Red Eclipse, Tux Paint +- Contact: ahven@SF + +## Herman Oudejans [1] + +- Games: openMSX +- Contact: h_oudejans@SF + +## Hern [1] + +- Games: OGRE +- Contact: lf3t-hn4d@SF + ## HHS [1] - Games: FlightGear @@ -2432,6 +5399,11 @@ - Games: 2Moons Browsergame Engine - Contact: Hilarious001@GH +## Hirato Kirata [1] + +- Games: Red Eclipse +- Contact: hirato@SF + ## hnt_tss [1] - Games: EDuke32 @@ -2446,6 +5418,21 @@ - Games: Magic Gardeners Tournament, Search for the Red Herring +## Holger 'ShipIt' Gellrich [1] + +- Games: UFO: Alien Invasion +- Contact: shipit@SF + +## Holger Frydrych [1] + +- Games: OGRE +- Contact: cabalistic@SF + +## Holger Kuhn [1] + +- Games: UltraStar Deluxe +- Contact: hawkear@SF + ## Holger Schäkel [1] - Games: FooBillard++ @@ -2461,6 +5448,11 @@ - Games: AntiChess - Contact: hongping@SF +## Honza J. [1] + +- Games: Space War +- Contact: jirout@SF + ## Hooria Komal [1] - Games: AntiChess @@ -2480,10 +5472,25 @@ - Games: Stringrolled +## Hugh Peeples [1] + +- Games: MegaMek +- Contact: tigerwraith@SF + ## Hugh Robinson [1] - Games: SDL Asylum +## Hugo Hromic [1] + +- Games: StepMania +- Contact: hhromic@SF + +## Hugo Locurcio [1] + +- Games: Red Eclipse +- Contact: calinou1@SF + ## Huntley Palmer [1] - Games: FlightGear @@ -2499,6 +5506,11 @@ - Games: FlightGear - Contact: i4dnf@SF +## Iain [1] + +- Games: Rails: an 18xx game system +- Contact: iaincheyne@SF + ## Ian Evans [1] - Games: GalaxyNG @@ -2514,6 +5526,26 @@ - Games: D2X-XL - Contact: itaylo@SF +## Ibrahima SARR [1] + +- Games: Tux Paint +- Contact: ibrahimasarr@SF + +## Ice [1] + +- Games: OpenHoMM +- Contact: dragoice@SF + +## IcyStar [1] + +- Games: Speed Dreams +- Contact: icystar@SF + +## IFASS [1] + +- Games: Openfrag +- Contact: ifass@SF + ## Ignacio Arminas [1] - Games: Argentum Online @@ -2524,6 +5556,11 @@ - Games: HolySpirit - Contact: ig0rk0@SF +## IgorEliezer [1] + +- Games: Simutrans +- Contact: igoreliezer@SF + ## Ilmari Karonen [1] - Games: Core War @@ -2538,14 +5575,35 @@ - Games: Cuyo +## InfernoZeus [1] + +- Games: Liberal Crime Squad +- Contact: infernozeus@SF + ## infrared [1] - Games: FreedroidRPG - Contact: lowerthanred@SF -## Ingo Ruhnke [2] +## Ingo Blechschmidt [1] -- Games: Construo, Windstille +- Games: Tux Paint +- Contact: iblech@SF + +## Ingo Ruhnke [3] + +- Games: Construo, Tux Racer, Windstille +- Contact: grumbel@SF + +## Internecivus Raptus [1] + +- Games: UFO: Alien Invasion +- Contact: internecivus@SF + +## Iris Morelle [1] + +- Games: The Battle for Wesnoth +- Contact: shikadiqueen@SF ## Isaac Supeene [1] @@ -2561,26 +5619,76 @@ - Games: Stringrolled +## Ithior [1] + +- Games: Open RPG Maker +- Contact: ithior@SF + ## itroll [1] - Games: Enigma - Contact: itroll@SF +## Iuri Fiedoruk [1] + +- Games: Stargus +- Contact: protoman@SF + +## Ivan Nikolaev [1] + +- Games: Openfrag +- Contact: voidexp@SF + ## Ivan Ramirez [1] - Games: Bygfoot - Contact: ircarrascal@SF +## Ivan Savenko [1] + +- Games: VCMI +- Contact: ivan91@SF + +## Ivan Vučica [1] + +- Games: Open Tibia +- Contact: ivucica@SF + ## Ivo Danihelka [1] - Games: Fish Fillets - Next Generation - Contact: fidlej@SF +## IxianMace [1] + +- Games: Vega Strike +- Contact: ixianmace@SF + ## J Williams [1] - Games: FlightGear - Contact: tikibar@SF +## J. Ali Harlow [1] + +- Games: SLASH'EM +- Contact: j_ali@SF + +## J. Applegate [1] + +- Games: Nuvie +- Contact: sb-x@SF + +## J. Hunter Johnson [1] + +- Games: PCGen +- Contact: jhunterj@SF + +## J. Nathan Matias [1] + +- Games: PLIB +- Contact: rubberpaw@SF + ## Jaakko Keränen [1] - Games: Doomsday Engine @@ -2596,6 +5704,26 @@ - Games: Falcon's Eye - Contact: jaakkopeltonen@SF +## Jack [1] + +- Games: Vega Strike +- Contact: jacks@SF + +## Jack Bohlen [1] + +- Games: Phantasy Star Rebirth +- Contact: guyfromthespace@SF + +## Jack Coulter [1] + +- Games: Openfrag +- Contact: jscinoz@SF + +## Jack Cummings [1] + +- Games: WorldForge +- Contact: rvannith@SF + ## Jacob L. Anawalt [1] - Games: Batalla Naval @@ -2606,31 +5734,106 @@ - Games: Freeciv - Contact: jtn@SF +## Jacques Chion [1] + +- Games: Tux Paint +- Contact: jchion@SF + ## Jairo [1] - Games: DNT - Contact: zerberros@SF +## Jake La Foret [1] + +- Games: SunDog Resurrection +- Contact: terofal77@SF + +## jakexblaster (Marcos Cunha) [1] + +- Games: Open Tibia +- Contact: jakexblaster@SF + ## Jakim Friant [1] - Games: AutoREALM - Contact: jfriant@SF +## Jakub Friedl [1] + +- Games: Tux Paint +- Contact: jfriedl@SF + ## Jakub Pavlík [1] - Games: freeVikings - Contact: igneus_cz@SF +## James [1] + +- Games: Race Into Space +- Contact: eptg@SF + +## James 'J.C.' Jones [1] + +- Games: PLIB +- Contact: puggles@SF + +## James A. Simons [1] + +- Games: Wolfpack Empire +- Contact: escher255@SF + +## James Barnard [1] + +- Games: Tux Racer +- Contact: barnard666@SF + +## James Broad [1] + +- Games: Wargamer +- Contact: jamesbroad@SF + +## James Cameron [1] + +- Games: Netrek +- Contact: quozl@SF + ## James Canete [2] - Games: Freeciv, iortcw - Contact: jcanete@SF +## James Carthew [2] + +- Games: Privateer - Gemini Gold, Vega Strike +- Contact: dmjc@SF + +## James Damour [1] + +- Games: MegaMek +- Contact: suvarov454@SF + +## James Gardner [1] + +- Games: Thousand Parsec +- Contact: dystopicfro@SF + ## James Haley [1] - Games: Chocolate Doom - Contact: quasar_te@SF +## James Hood [1] + +- Games: Simutrans +- Contact: thehooduk@SF + +## James M Best [1] + +- Games: WorldForge +- Contact: jamieb@SF + ## James Marshall [1] - Games: Cat Mother Dead Justice @@ -2640,20 +5843,40 @@ - Games: GL-117 -## James Turner [1] +## James Turner [2] -- Games: FlightGear +- Games: FlightGear, WorldForge - Contact: jmturner@SF +## Jan [1] + +- Games: Tremulous +- Contact: janstannum@SF + ## Jan Ekholm [1] - Games: Civil - Contact: chakie@SF +## Jan Engelhardt [1] + +- Games: ZDoom +- Contact: jengelh@SF + ## Jan Friederich [1] - Games: Mmpong +## Jan Korbel [1] + +- Games: Simutrans +- Contact: jk271@SF + +## Jan Magne Tjensvold [1] + +- Games: Stars! Nova +- Contact: evild00d@SF + ## Jan Mulder [2] - Games: Pendumito, WebHangman @@ -2661,6 +5884,17 @@ ## Jan Schäfer [1] - Games: JSkat +- Contact: jansch@SF + +## Jan Urva [1] + +- Games: phpRPG +- Contact: sauanimal@SF + +## Jan Wynholds [1] + +- Games: Tux Paint +- Contact: jcwynholds@SF ## Jan-Otto Kröpke [1] @@ -2672,25 +5906,75 @@ - Games: FreeLords - Contact: janet-h@SF +## Janet Walz [1] + +- Games: NetHack +- Contact: jwalz@SF + ## Jani Kajala [1] - Games: Cat Mother Dead Justice - Contact: kajala@SF +## Janis Eisaks [1] + +- Games: Sudokuki +- Contact: jancs@SF + ## Janne Johansson [1] - Games: Haxima - Contact: icepic@SF +## JANNiS [1] + +- Games: Skrupel - Tribute Compilation +- Contact: mrmainchat@SF + +## Jared [1] + +- Games: Snowballz +- Contact: jaredthane@SF + +## Jarrod L. Miller [1] + +- Games: XPilot +- Contact: millerjl@SF + +## Jasmin Patry [1] + +- Games: Tux Racer +- Contact: jfpatry@SF + ## Jasmine Langridge [1] - Games: Trigger +## Jason [1] + +- Games: Wargamer +- Contact: rusty_nail@SF + +## Jason Buchanan [1] + +- Games: PCGen +- Contact: lonejedi@SF + +## Jason Bush [1] + +- Games: MegaMek +- Contact: ensign@SF + ## Jason Dorje Short [1] - Games: Freeciv - Contact: jdorje@SF +## Jason Farmer [1] + +- Games: Siege of Avalon : Open Source +- Contact: cbco@SF + ## Jason Johnson [1] - Games: Dune Legacy @@ -2699,36 +5983,112 @@ ## Jason Nunn [1] - Games: Nighthawk +- Contact: jsno8192@SF ## Jason Rohrer [8] - Games: Between, Cultivation, Gravitation, One Hour One Life, Passage, Primrose, Sleep Is Death, Transcend - Contact: jasonrohrer@GH, jcr13@SF +## Jason Smyrloglou [1] + +- Games: MegaMek +- Contact: jasonsmyr@SF + ## Jason Summers [1] - Games: Golly - Contact: jsummers@SF +## Jason Tighe [1] + +- Games: MegaMek +- Contact: torren@SF + +## Jason Walsh [1] + +- Games: StepMania +- Contact: djwizah@SF + +## Jason Winzenried [1] + +- Games: Vega Strike +- Contact: mamiyaotaru@SF + +## Jason Wood [1] + +- Games: Tux Football +- Contact: uchian@SF + ## Jason Yates [1] - Games: Aleph One - Contact: jaywhy@SF +## Jasper Spaans [1] + +- Games: PCGen +- Contact: jasperspaans@SF + ## Jasper Van der Jeugt [1] - Games: Annchienta - Contact: jaspervdj@SF +## jastiv [1] + +- Games: Wograld +- Contact: jastiv@SF + +## Javier Marín [1] + +- Games: SharpKonquest +- Contact: fco_javier@SF + +## jay binks [1] + +- Games: UltraStar Deluxe +- Contact: jaybinks@SF + ## Jay Fenlason [1] - Games: Hack +## Jay French [1] + +- Games: Space Trader for Windows +- Contact: jfren484@SF + +## Jay Kint [1] + +- Games: Omega-rpg +- Contact: jkint@SF + +## jay wellings [1] + +- Games: Mpango +- Contact: jaywellings@SF + +## Jayme Cox [1] + +- Games: PCGen +- Contact: jaymecox@SF + ## jazztickets [1] - Games: Empty Clip - Contact: jazztickets@SF +## jcnossen [1] + +- Games: Spring +- Contact: jcnossen@SF + +## Jean Karim Bockstael [1] + +- Games: MicroWar 2.0 +- Contact: jkbockstael@SF + ## Jean Lepropre [1] - Games: FreeCol @@ -2749,6 +6109,16 @@ - Games: Slune - Organization: Nekeme Prod. +## Jean-Christophe Collet [1] + +- Games: NetHack +- Contact: jcc@SF + +## jean-manuel clemençon [1] + +- Games: SuperTuxKart +- Contact: samuncle@SF + ## Jean-Marc Le Peuvedic [1] - Games: GL-117 @@ -2758,6 +6128,11 @@ - Games: Powermanga, TecnoballZ +## Jean-Philippe Meuret [1] + +- Games: Speed Dreams +- Contact: pouillot@SF + ## Jean-Vivien Maurice [1] - Games: Extreme Tux Racer @@ -2768,11 +6143,51 @@ - Games: Freya Game Engine - Contact: gnet@SF +## JeeZ [1] + +- Games: Spring +- Contact: j_e_e_z@SF + +## Jeff Baril [1] + +- Games: PCGen +- Contact: lostwriter@SF + +## Jeff Breidenbach [1] + +- Games: Pioneers +- Contact: jab@SF + +## Jeff Cotter [1] + +- Games: Wolfpack Empire +- Contact: jeffcotter@SF + +## Jeff Coyle [1] + +- Games: VASSAL +- Contact: wargamerx@SF + ## Jeff Goodenough [1] - Games: Daimonin - Contact: jeffg1@SF +## Jeff Graw [1] + +- Games: Vega Strike +- Contact: hurleybird@SF + +## Jeff Koerner [1] + +- Games: Pizza Business +- Contact: inconspicuous@SF + +## Jeff Nowakowski [1] + +- Games: Netrek +- Contact: jeffno@SF + ## Jeff Thoene [1] - Games: Shotgun Debugger @@ -2783,6 +6198,11 @@ - Games: Classic Blades of Exile - Organization: Spiderweb Software +## Jeff Wang [1] + +- Games: MegaMek +- Contact: swang30@SF + ## Jeffrey Sanders [1] - Games: Bygfoot @@ -2793,11 +6213,31 @@ - Games: Qonk - Contact: fursund@SF +## Jens Schmer [1] + +- Games: PixelLight +- Contact: liggers0@SF + ## Jeremiah Morris [1] - Games: Aleph One - Contact: jeremiahmorris@SF +## Jeremy D. Monin [1] + +- Games: JSettlers +- Contact: jdmonin@SF + +## Jeremy Hitchcock [1] + +- Games: SunDog Resurrection +- Contact: jhitchco@SF + +## Jeremy Newman [1] + +- Games: Nuvie +- Contact: laxdragon@SF + ## Jeremy Parsons [1] - Games: Aleph One @@ -2812,11 +6252,36 @@ - Games: Kobo Deluxe +## Jeremy Yoder [1] + +- Games: SunDog Resurrection +- Contact: jyoder@SF + +## Jeroen Boukens [1] + +- Games: Red Eclipse +- Contact: appleflapple@SF + +## Jeroen Broks [1] + +- Games: Sudokuki +- Contact: tricky75@SF + +## Jeroen Groeneweg [1] + +- Games: Smash Battle +- Contact: j-groeneweg@SF + ## JEROME BIGOT [1] - Games: Bombermaaan - Contact: bigs_fr@SF +## Jerry [1] + +- Games: VASSAL +- Contact: starman-03@SF + ## Jerry Jiang [1] - Games: 2048 @@ -2828,9 +6293,9 @@ - Games: Aleph One - Contact: jessimko@SF -## Jesse Smith [1] +## Jesse Smith [2] -- Games: Atomic Tanks +- Games: Atomic Tanks, SDL Sopwith - Contact: slicer69@SF ## Jetro Lauha [1] @@ -2838,25 +6303,70 @@ - Games: Pathogen Warrior - Home: https://jet.ro/ +## jguyton [1] + +- Games: Vega Strike +- Contact: jguyton@SF + +## Jiddo [1] + +- Games: Open Tibia +- Contact: jiddo@SF + +## Jim Cameron [1] + +- Games: Underworld Adventures +- Contact: hairyjim@SF + +## Jim Cotugno [1] + +- Games: VASSAL +- Contact: jimcot@SF + ## Jim Gilloghy [1] - Games: Colossal Cave Adventure -## Jim Schultz [1] +## Jim Schultz [2] -- Games: Greenius' Civil War +- Games: Greenius' Civil War, Wargamer - Contact: dor10122@SF +## Jim Urbas [1] + +- Games: VASSAL +- Contact: jurbas@SF + ## Jimmy Christensen [2] - Games: OldSkool Gravity Game, SDL-Ball - Contact: DusteDdk@GH, dusteddk@SF +## Jimmy Salmon [1] + +- Games: Stargus +- Contact: jsalmon3@SF + +## Jindrich kolman [1] + +- Games: Machinations +- Contact: koom@SF + ## JK Wood [1] - Games: FreedroidRPG - Contact: jkwood@SF +## Joachim de Groot [1] + +- Games: NLarn +- Contact: jaydg@SF + +## joachimdieterich.com [1] + +- Games: UltraStar Deluxe +- Contact: joachimd@SF + ## Joan Queralt [1] - Games: Biogenesis @@ -2875,6 +6385,11 @@ - Games: Moon-buggy +## Jodwin [1] + +- Games: Mocha Doom +- Contact: jodwin@SF + ## Joe Flint [1] - Games: Brutal Chess @@ -2885,15 +6400,45 @@ - Games: Crystal Space 3D SDK - Contact: bugcutt@SF +## Joe Hansen [1] + +- Games: Tux Paint +- Contact: joedaltonhansen@SF + +## Joe Lyon [1] + +- Games: PlaneShift +- Contact: joelyon@SF + ## Joe Van Overberghe [1] - Games: BZFlag - Contact: joevano@SF +## Joe Venzon [1] + +- Games: VDrift +- Contact: joevenzon@SF + +## Joe Wells [1] + +- Games: PCGen +- Contact: josephwells@SF + ## Joel Bouchard Lamontagne [1] - Games: Stringrolled +## Joel Uckelman [1] + +- Games: VASSAL +- Contact: uckelman@SF + +## Joerg Kirchhoff [1] + +- Games: phpRPG +- Contact: centurio@SF + ## joeshmo [1] - Games: Daimonin @@ -2902,6 +6447,7 @@ ## Joey Marshall [1] - Games: Snowballz +- Contact: joey101@SF ## Joey Parrish [1] @@ -2922,26 +6468,66 @@ - Games: FreedroidRPG - Contact: johannesprix@SF +## John [2] + +- Games: Red Eclipse, VASSAL +- Contact: jjmurphy@SF, th1@SF + +## John _Scott_ Tillman [1] + +- Games: WorldForge +- Contact: speedbump@SF + +## John Bauer [1] + +- Games: StepMania +- Contact: angledluffa@SF + ## John Cater [1] - Games: Crossfire - Contact: caterj@SF +## John Cordell [1] + +- Games: Privateer - Gemini Gold +- Contact: johncordell@SF + ## John D. Dilley [1] - Games: Colonization too - Contact: landgrabber@SF +## John Davis [1] + +- Games: Monster Generator +- Contact: javis-jd@SF + ## John Dullea [1] - Games: AutoREALM - Contact: jdullea@SF +## John Duquette [1] + +- Games: Wargamer +- Contact: wrangler01@SF + ## John Eikenberry [1] - Games: Civil - Contact: zhar@SF +## John F. Fay [1] + +- Games: PLIB +- Contact: fayjf@SF + +## John Gilbert [1] + +- Games: Wargamer +- Contact: jaypea@SF + ## John McIntosh [1] - Games: 4D Maze Game @@ -2952,21 +6538,86 @@ - Games: Shotgun Debugger - Organization: Game Creation Society +## John Popplewell [1] + +- Games: Tux Paint +- Contact: johnnypops@SF + +## John R. Sheets [1] + +- Games: WorldForge +- Contact: jsheets@SF + +## John Rowat [1] + +- Games: MegaMek +- Contact: tuesdayking@SF + +## John S. [1] + +- Games: PyKaraoke +- Contact: j_schneiderman@SF + ## John Smith [1] - Games: Daimonin - Contact: jsa-smith@SF +## John Yockey [1] + +- Games: Wolfpack Empire +- Contact: ice_barbarians@SF + ## John-Paul Gignac [1] - Games: Pathological - Contact: jjgignac@SF +## John-Paul Treen [1] + +- Games: Wargamer +- Contact: jptreen@SF + ## Johnathan James [1] - Games: FreeCol - Contact: haxwell@SF +## Johnny Salazar [1] + +- Games: Pizza Business +- Contact: bigj_sal@SF + +## johnny8020 [1] + +- Games: Open Tibia +- Contact: johnny8020@SF + +## jojo [1] + +- Games: Red Eclipse +- Contact: xxjojoxx@SF + +## JOKER VAN HAELN [1] + +- Games: Mega Mario +- Contact: cobex22@SF + +## Jon [1] + +- Games: VASSAL +- Contact: viewport@SF + +## Jon Rafkind [1] + +- Games: PainTown +- Contact: kazzmir@SF + +## Jon Sargeant [1] + +- Games: Machinations +- Contact: delta17@SF + ## Jonan [1] - Games: Heroes of Wesnoth @@ -2976,6 +6627,11 @@ - Games: Thunder&Lightning +## Jonas Karlsson [1] + +- Games: PCGen +- Contact: jujutsunerd@SF + ## Jonas Spillmann [1] - Games: Amphetamine @@ -2985,14 +6641,35 @@ - Games: GLtron - Contact: jcatki@SF +## Jonathan C. Dietrich [1] + +- Games: VASSAL +- Contact: porter235@SF + ## Jonathan Dowland [1] - Games: Chocolate Doom - Contact: jond@SF +## Jonathan E. Wright [1] + +- Games: Nuvie +- Contact: nelno@SF + +## Jonathan Evraire [1] + +- Games: WebChess +- Contact: sandking@SF + +## Jonathan M. Franz [1] + +- Games: Psyco +- Contact: jfranz@SF + ## Jonathan Musther [1] - Games: Slingshot +- Contact: musther@SF ## Jonathan Sieber [1] @@ -3004,11 +6681,26 @@ - Games: FreeOrion - Contact: id-ego@SF +## Jonathan Stickles Fox [1] + +- Games: Liberal Crime Squad +- Contact: jonathansfox@SF + ## Jonathan Toomim [1] - Games: Brain Workshop - Contact: jtoomim@SF +## Jonathan Wilson [1] + +- Games: Theme Park Builder 3D CAD +- Contact: jonwil@SF + +## Jonny D [1] + +- Games: Openglad +- Contact: grimfang4@SF + ## JonSully [1] - Games: GUSANOS @@ -3028,14 +6720,29 @@ - Games: FreeSynd - Contact: joostp@SF +## Joost Yervante Damad [1] + +- Games: openMSX +- Contact: andete@SF + +## Joris Beugnies [1] + +- Games: Scorched3D +- Contact: redzebra@SF + ## Joris Bontje [1] - Games: Crossfire - Contact: jbontje@SF -## Jorrit Tyberghein [1] +## Jornand de Buisonjé [1] -- Games: Crystal Space 3D SDK +- Games: Sopwith 3 +- Contact: jornand@SF + +## Jorrit Tyberghein [2] + +- Games: Crystal Space 3D SDK, PlaneShift - Contact: jorrit@SF ## Joseph Baffaro [1] @@ -3048,6 +6755,31 @@ - Games: Dungeon Monkey Eternal, Dungeon Monkey Unlimited, GearHead, GearHead 2 - Contact: jwvhewitt@GH, jwvhewitt@SF +## Joseph Tilley [1] + +- Games: VASSAL +- Contact: narcisse42@SF + +## Joseph Tyx [1] + +- Games: MegaMek +- Contact: spiker@SF + +## Josh Allen [1] + +- Games: StepMania +- Contact: axlecrusher@SF + +## Josh Bolduc [1] + +- Games: KQ Lives +- Contact: joshbolduc@SF + +## Josh Bressers [1] + +- Games: Ularn +- Contact: bress@SF + ## Josh Davidson [1] - Games: FlightGear @@ -3063,52 +6795,104 @@ - Games: Crossfire - Contact: floomby@SF +## Josh Kelley [1] + +- Games: Omega-rpg +- Contact: yeshua@SF + +## Joshua Blocher [1] + +- Games: Red Eclipse +- Contact: verbalshadow@SF + ## Joshua Bodine [1] - Games: BZFlag - Contact: macsforme@SF +## Joshua Stewart [1] + +- Games: xu4 +- Contact: xaque@SF + ## Joshua Wilson [1] - Games: Crossfire - Contact: majorwoo@SF +## Joshua Yockey [1] + +- Games: MegaMek +- Contact: stainedglass@SF + ## José Zanni [1] - Games: Glest -- Contact: josezanni@SF, josepzin@SF +- Contact: josepzin@SF, josezanni@SF ## Jotabe [1] - Games: Argentum Online - Contact: jotabe-ao@SF +## Jotham [1] + +- Games: Thousand Parsec +- Contact: jotham@SF + +## Journeyman [1] + +- Games: Open Yahtzee +- Contact: mastermind-x@SF + ## jpaul_d [1] - Games: FunLabyrinthe - Contact: jpaul_d@SF +## jpeg [1] + +- Games: NLarn +- Contact: j-p-e-g@SF + +## jsm174 [1] + +- Games: Visual Pinball +- Contact: jsm174@SF + ## Juan Dalmasso [1] - Games: Argentum Online - Contact: berliozcba@SF +## Juan Irigoien [1] + +- Games: Tux Paint +- Contact: juanirigoien@SF + ## Juergen Widmann [1] - Games: FreeCol - Contact: jwr_de@SF +## Juha Henrikki Merikallio [1] + +- Games: Planetary Hoppers +- Contact: jhm@SF + ## Juha Holopainen [1] - Games: Spice Trade +- Contact: juhah101@SF ## Jujucece [1] - Games: pyRacerz +- Contact: jujucece@SF -## Julian [1] +## Julian [2] -- Games: AssaultCube +- Games: AssaultCube, VDrift - Contact: julianmayer@SF ## Julian Bradfield [1] @@ -3129,9 +6913,15 @@ - Games: Hale - Contact: julianstouch@SF +## Julien Cassignol [1] + +- Games: VASSAL +- Contact: ainu@SF + ## Julien Jorge [1] - Games: Plee the Bear +- Contact: j-jorge@SF ## Julien Nguyen [1] @@ -3147,15 +6937,35 @@ - Games: Atomic Tanks +## Jure Repinc [1] + +- Games: Thousand Parsec +- Contact: jrepin@SF + ## Jussi Pakkanen [1] - Games: Doom Legacy - Contact: jussip@SF +## Jussi Rautio [1] + +- Games: Planetary Hoppers +- Contact: jrautio@SF + +## Justin (Tuxinator) Davis [1] + +- Games: Open RPG Maker +- Contact: tuxinator2009@SF + ## Jute Gyte [1] - Games: Blasphemer +## Juvinious [1] + +- Games: PainTown +- Contact: juvinious@SF + ## Jérôme Bolot [1] - Games: TecnoballZ @@ -3165,11 +6975,41 @@ - Games: FreedroidRPG - Contact: jkucia@SF +## Jürgen Marquardt [1] + +- Games: PLIB +- Contact: j_marquardt@SF + +## Jānis Legzdiņš [1] + +- Games: Korax' Heritage +- Contact: dj_jl@SF + ## Jřrgen Vasshaug [1] - Games: FreeCol - Contact: colorrr@SF +## K.-M. Schindler [1] + +- Games: UltraStar Deluxe +- Contact: k-m_schindler@SF + +## k808j [1] + +- Games: Stars! Nova +- Contact: k808j@SF + +## Kaan [1] + +- Games: Zatacka +- Contact: sdryanas@SF + +## Kai Blin [1] + +- Games: WorldForge +- Contact: nowhere@SF + ## Kai Hertel [1] - Games: Mmpong @@ -3179,6 +7019,16 @@ - Games: FreeCol - Contact: kaimt@SF +## Kai Philipp [1] + +- Games: PokerTH +- Contact: q4z1@SF + +## Kai SD [1] + +- Games: OGS Mahjong +- Contact: kai_sd@SF + ## Kaiser [1] - Games: Chocolate Doom @@ -3193,6 +7043,21 @@ - Games: Civil - Contact: krftkndl@SF +## Kalle Viiri [1] + +- Games: Liberal Crime Squad +- Contact: kviiri@SF + +## Kalman Andrasi [1] + +- Games: Operation Citadel +- Contact: byteware@SF + +## Kami [2] + +- Games: OpenMortal, Phantasy Star Rebirth +- Contact: jastkast@SF, kami_@SF + ## Kamos [1] - Games: FreeCol @@ -3223,25 +7088,65 @@ - Games: Castle-Combat - Contact: karlb@SF +## Karl Garrison [1] + +- Games: UnNetHack +- Contact: karlos@SF + +## Karl Ove Hufthammer [1] + +- Games: Tux Paint +- Contact: huftis@SF + +## Karl-R. [1] + +- Games: Spring +- Contact: karl-r@SF + ## Karla Stenger [1] - Games: Crossfire - Contact: kstenger@SF +## Karsten Bock [1] + +- Games: PARPG +- Contact: belios@SF + +## Karthik Arumugham [1] + +- Games: Netrek +- Contact: karthik@SF + +## Kartik Mistry [1] + +- Games: Tux Paint +- Contact: kartik_m@SF + ## karx11erx [1] - Games: D2X-XL - Contact: d2x-xl@SF +## Kasper Fauerby [1] + +- Games: Underworld Adventures +- Contact: telemachos@SF + ## Katia Zawadzka [1] - Games: Deer Portal -## Katie Russell [1] +## Katie Russell [2] -- Games: Arianne / Marauroa +- Games: Arianne / Marauroa, Stendhal - Contact: kymara@SF +## katoun [1] + +- Games: PixelLight +- Contact: katoun@SF + ## Kaweh Kazemi [1] - Games: Der Clou! @@ -3257,6 +7162,11 @@ - Games: Colonization too - Contact: kayne2000@SF +## kcid [1] + +- Games: VDrift +- Contact: kcid_nl@SF + ## Keilaron [1] - Games: Atomic Tanks @@ -3272,16 +7182,31 @@ - Games: AutoREALM - Contact: kjdavies@SF -## Keith Fulton [1] +## Keith Fulton [2] -- Games: Crystal Space 3D SDK +- Games: Crystal Space 3D SDK, PlaneShift - Contact: vengeance2001@SF +## Keith Heppell [1] + +- Games: TripleA +- Contact: hepps@SF + ## Kelly Shane Harrelson [1] - Games: BlackNova Traders - Contact: pachelbel@SF +## Kelvin Lawson [1] + +- Games: PyKaraoke +- Contact: kelvinl@SF + +## Ken Stevens [1] + +- Games: VASSAL +- Contact: fil512@SF + ## Ken Weinert [1] - Games: GalaxyNG @@ -3297,6 +7222,16 @@ - Games: ClanLib - Contact: sphair@SF +## Kenneth Lorber [1] + +- Games: NetHack +- Contact: keni@SF + +## Kenny Graunke [1] + +- Games: PlaneShift +- Contact: kennygraunke@SF + ## Kenta Cho [2] - Games: A7Xpg, Consomaton @@ -3305,16 +7240,51 @@ - Games: Augustus +## Kevin Donnelly [1] + +- Games: Tux Paint +- Contact: donnek@SF + +## Kevin Eustice [1] + +- Games: Pioneers +- Contact: bellwether@SF + +## Kevin Hugo [1] + +- Games: NetHack +- Contact: kmhugo@SF + +## Kevin Krammer [1] + +- Games: Moagg2 +- Contact: krake@SF + ## Kevin Lemoine [1] - Games: Betrayer's Moon Tactics - Contact: discoferret@SF +## Kevin Moore [1] + +- Games: TripleA +- Contact: kdm98@SF + ## Kevin R. Bulgrien [1] - Games: Crossfire - Contact: kbulgrien@SF +## Kevin Scannell [1] + +- Games: Tux Paint +- Contact: cos@SF + +## Kevin Slaughter [1] + +- Games: StepMania +- Contact: miryokuteki@SF + ## Kevin Zheng [1] - Games: Crossfire @@ -3325,12 +7295,27 @@ - Games: Chromium B.S.U. - Contact: keyboardsage@SF +## kharnov [1] + +- Games: Unvanquished +- Contact: kharnov@SF + ## Kieran Pilkington [1] - Games: 0 A.D. - Contact: KieranP@GH - Home: https://k776.tumblr.com/ +## Kieron Green [1] + +- Games: Simutrans +- Contact: kierongreen@SF + +## Kieth A. Coleman [1] + +- Games: PCGen +- Contact: kiethac@SF + ## Kilgore Trout Mask Replicant [1] - Games: 1oom @@ -3341,9 +7326,19 @@ - Games: HolySpirit - Contact: killpatate@SF -## Kimmo Rundelin [1] +## kilo aka Gábor Kmetykó [1] -- Games: Arianne / Marauroa +- Games: Speed Dreams +- Contact: kmetykog@SF + +## Kim Winz [1] + +- Games: PCGen +- Contact: kwinz@SF + +## Kimmo Rundelin [2] + +- Games: Arianne / Marauroa, Stendhal - Contact: kiheru@SF ## kingrobot [1] @@ -3351,11 +7346,36 @@ - Games: BZFlag - Contact: kingrobot@SF +## kirben [3] + +- Games: Nuvie, Pentagram, xu4 +- Contact: kirben@SF + +## Kirjah Salys [1] + +- Games: Vega Strike +- Contact: khepri@SF + +## Kirsty [1] + +- Games: The Castles of Dr. Creep +- Contact: kirstyava@SF + ## Kivi [1] - Games: FreeLords - Contact: kivicko@SF +## Kjetil Jacobsen [1] + +- Games: Psyco +- Contact: kjetilja@SF + +## Klaas van Gend [1] + +- Games: The Butterfly Effect +- Contact: kvangend@SF + ## Klaus Blindert [1] - Games: FIFE @@ -3366,6 +7386,16 @@ - Games: Crossfire - Contact: elsbernd@SF +## Klaus Mittag [1] + +- Games: MegaMek +- Contact: khm19_de@SF + +## Klauss++ [2] + +- Games: Privateer - Gemini Gold, Vega Strike +- Contact: klaussfreire@SF + ## klaxnek [1] - Games: Armagetron Advanced @@ -3385,6 +7415,11 @@ - Games: FreeCol - Contact: kloune@SF +## koadic [1] + +- Games: Visual Pinball +- Contact: koadic@SF + ## Koen Pijnenburg [1] - Games: Free Space Colonization @@ -3395,15 +7430,60 @@ - Games: FreeCol - Contact: rijnsent@SF +## Konrad Kuśnierz [1] + +- Games: Open Tibia +- Contact: iryont@SF + ## Konstantin Yegupov [1] - Games: Trip on the Funny Boat +## Konstantinos [1] + +- Games: Zero Ballistics +- Contact: arvanitk@SF + +## Konstantinos Arvanitis [1] + +- Games: Vega Strike +- Contact: karvan@SF + +## kornerr [1] + +- Games: OGS Mahjong +- Contact: kornerr@SF + +## kornerrjenkins [1] + +- Games: OGS Mahjong +- Contact: kornerrjenkins@SF + ## Korruptor [1] - Games: Civil - Contact: korruptor@SF +## Kostia Romanov [1] + +- Games: UFO: Alien Invasion +- Contact: kildor@SF + +## Kracken [1] + +- Games: UFO: Alien Invasion +- Contact: kracken@SF + +## Kreezii [1] + +- Games: JavaScript Graphic Adventure Maker +- Contact: kreezii@SF + +## Kreuvf [1] + +- Games: Warzone 2100 +- Contact: kreuvf@SF + ## Kris McAulay [1] - Games: DreamChess @@ -3419,21 +7499,51 @@ - Games: GameCake - Contact: xixs@BB, xriss@GH +## Kristian Johansson [1] + +- Games: Nexuiz +- Contact: morfah@SF + ## Kristian Picon [1] - Games: Extreme Tux Racer - Contact: cpicon92@SF +## Kristof [1] + +- Games: Speed Dreams +- Contact: kakukri@SF + +## Kruno Sever [1] + +- Games: XBlast +- Contact: lodott@SF + ## krys [1] - Games: Krystal Drop - Contact: krys@SF +## Krzysztof A. Kościuszkiewicz [1] + +- Games: Race Into Space +- Contact: drvee@SF + ## Krzysztof Kosz [1] - Games: Boson - Contact: krzyko@SF +## Krzysztof Sobolewski [1] + +- Games: Thousand Parsec +- Contact: jezuch@SF + +## Kurper [1] + +- Games: Liberal Crime Squad +- Contact: kurper@SF + ## Kurt Fitzner [1] - Games: Crossfire @@ -3444,6 +7554,16 @@ - Games: Armagetron Advanced - Contact: k_at_work@SF +## Kurt Siegl [1] + +- Games: Netrek +- Contact: siegl@SF + +## Kwadroke of "The Wired" [1] + +- Games: PainTown +- Contact: kwadroke@SF + ## Kyle Mills [1] - Games: BZFlag @@ -3454,14 +7574,19 @@ - Games: FlightGear - Contact: redtvvo@SF +## L. H. Lubomír [1] + +- Games: Red Eclipse +- Contact: snowdamien@SF + ## L4m3r [1] - Games: BZFlag - Contact: l4m3rthanyou@SF -## Laguz [1] +## Laguz [2] -- Games: Arianne / Marauroa +- Games: Arianne / Marauroa, Stendhal - Contact: mkvii@SF ## lajestic [1] @@ -3474,14 +7599,29 @@ - Games: Crossfire - Contact: lalo@SF +## Lance Leung [1] + +- Games: VASSAL +- Contact: lanceleu@SF + ## Lancelot de Ferrière [1] - Games: 0 A.D. - Contact: wraitii@GH, wraitii@SF -## laonious [1] +## Lane Schwartz [1] -- Games: Hex Game +- Games: TripleA +- Contact: dowobeha@SF + +## Lanna Opensource Software [1] + +- Games: Tux Paint +- Contact: ae-freeman@SF + +## laonious [2] + +- Games: Hex Game, Isometric Turn-Based Strategy - Contact: laonious@SF ## larry northup [1] @@ -3489,6 +7629,11 @@ - Games: Daimonin - Contact: sherock@SF +## Lars Sanford [1] + +- Games: VDrift +- Contact: cotharyus@SF + ## Lars Toenning [1] - Games: FlightGear @@ -3499,15 +7644,45 @@ - Games: FreeCol - Contact: skydive@SF +## larsl [1] + +- Games: XBlast +- Contact: larsl@SF + ## las30 [1] - Games: Gravitation - Contact: las30@SF +## Laszlo Ozsvart [1] + +- Games: VCMI +- Contact: ozsy1023@SF + +## Laszlo Szucs [1] + +- Games: jClassicRPG +- Contact: goq669@SF + +## latsao [1] + +- Games: Visual Pinball +- Contact: latsao@SF + +## Laurel Fan [1] + +- Games: WorldForge +- Contact: kalana@SF + ## Laurence R. Brothers [1] - Games: Omega-rpg +## Laurens Holst [1] + +- Games: openMSX +- Contact: grauw@SF + ## Laurent [1] - Games: 2048 @@ -3523,16 +7698,56 @@ - Games: TecnoballZ +## Laurie Vale [1] + +- Games: Stars! Nova +- Contact: charlievale@SF + +## lbprogramming [1] + +- Games: StarBlastrix +- Contact: luckybit@SF + +## leadgolem [1] + +- Games: S.C.O.U.R.G.E. +- Contact: leadgolem@SF + +## Leandro Coutinho [1] + +- Games: PCGen +- Contact: tivrfoa@SF + ## Leandro Mendoza [1] - Games: Argentum Online - Contact: lea-mannakia@SF -## Lee Salzman [1] +## Leartin Dialonis [1] -- Games: AssaultCube +- Games: Simutrans +- Contact: leartin@SF + +## Lee Begg [2] + +- Games: Thousand Parsec, WorldForge +- Contact: llnz@SF + +## Lee Salzman [2] + +- Games: AssaultCube, Red Eclipse - Contact: eihrul@SF +## Lee Vermeulen [1] + +- Games: Nexuiz +- Contact: vermeulenl@SF + +## LegacyKing [1] + +- Games: PCGen +- Contact: amaitland@SF + ## legoboyvdlp [1] - Games: FlightGear @@ -3547,6 +7762,16 @@ - Games: Freestars - Contact: leit@SF +## Leo Savernik [1] + +- Games: LGeneral +- Contact: wieder@SF + +## Leon Baradat [1] + +- Games: Race Into Space +- Contact: peyre@SF + ## Leon Vayman [1] - Games: Dark Oberon @@ -3562,11 +7787,21 @@ - Games: 0 A.D. - Contact: leper@GH +## Les Thompson [1] + +- Games: SunDog Resurrection +- Contact: thompson_les@SF + ## Levent Yavas [1] - Games: Hammer of Thyrion - Contact: leventy@SF +## Levia [1] + +- Games: Openfrag +- Contact: levia@SF + ## Lexaeus [1] - Games: Decker @@ -3577,9 +7812,35 @@ - Games: Attal: Lords of doom - Contact: leyral@SF +## Lincoln Peters [1] + +- Games: Xconq +- Contact: lmpeters@SF + +## Linguasoft [1] + +- Games: Tux Paint +- Contact: linguasoft1@SF + ## Linley Henzell [2] - Games: Liberation Circuit, Overgod +- Contact: linley_henzell@SF + +## liquidhot [1] + +- Games: Manic Digger +- Contact: liquidhot@SF + +## LiteralKa [1] + +- Games: Liberal Crime Squad +- Contact: literalka@SF + +## LitmusDragon [1] + +- Games: The Endless Dungeons +- Contact: litmusdragon@SF ## Liu Lu [1] @@ -3601,6 +7862,16 @@ - Games: Qonk - Contact: exinion@SF +## Logan Bender [1] + +- Games: TripleA +- Contact: mambo4@SF + +## logzero [2] + +- Games: VDrift, Vega Strike +- Contact: log0@SF + ## Lone_Wolf [1] - Games: FreeCol @@ -3611,10 +7882,25 @@ - Games: Aleph One - Contact: lpetrich@SF +## Lorenz Beyeler [1] + +- Games: Space Opera +- Contact: lbeyeler@SF + ## Lori Angela Nagel [1] - Games: Wograld +## lotan_rm [1] + +- Games: UltraStar Deluxe +- Contact: lotanrm@SF + +## Lothar May [1] + +- Games: PokerTH +- Contact: lotodore@SF + ## Lourens Veen [1] - Games: GL-117 @@ -3625,16 +7911,31 @@ - Games: HolySpirit - Contact: lowgeek@SF +## Lubak91 [1] + +- Games: Simutrans +- Contact: lubak91@SF + +## Luc Schrijvers [1] + +- Games: Tux Paint +- Contact: begasus@SF + ## Luca Cappa [1] - Games: Crystal Space 3D SDK - Contact: groton@SF -## Luca Pancallo [1] +## Luca Pancallo [2] -- Games: Crystal Space 3D SDK +- Games: Crystal Space 3D SDK, PlaneShift - Contact: lpancallo@SF +## Luca Perri [1] + +- Games: S.C.O.U.R.G.E. +- Contact: kurama_1987@SF + ## Lucas GAUTHERON [1] - Games: AssaultCube @@ -3645,6 +7946,16 @@ - Games: Der Clou! - Contact: maintainer@SF +## Lucas Thode [1] + +- Games: Trinity Reign +- Contact: ljthode@SF + +## Luciano Bassotti [1] + +- Games: Wargamer +- Contact: velite@SF + ## Luciano Contartese [1] - Games: Argentum Online @@ -3655,11 +7966,21 @@ - Games: Quatter - Home: https://libregamewiki.org/LucKey_Productions, https://luckeyproductions.nl/ +## lucky strike [1] + +- Games: Red Eclipse +- Contact: luckystrikerx@SF + ## Ludovic Brenta [1] - Games: FlightGear - Contact: lbrenta@SF +## Luis Hernandez [1] + +- Games: Open Tibia +- Contact: otkazibi@SF + ## LuisB [1] - Games: Danger from the Deep @@ -3678,23 +7999,43 @@ - Games: GNU Chess +## Lukas Hermanns [1] + +- Games: SoftPixel Engine +- Contact: lukasbanana@SF + ## Lukas Löhrer [1] - Games: Amphetamine +## Lukas Tönne [1] + +- Games: Openfrag +- Contact: illdroid@SF + ## Lukasz Juszkiewicz [1] - Games: FreeCol - Contact: slaimi@SF +## Luke Ashdown [1] + +- Games: Transfusion +- Contact: kazashi@SF + +## Luke Papaj [1] + +- Games: Openfrag +- Contact: sai_co@SF + ## Luke-Jr [1] - Games: Armagetron Advanced - Contact: luke-jr@SF -## Lumocra [1] +## Lumocra [2] -- Games: Arianne / Marauroa +- Games: Arianne / Marauroa, Stendhal - Contact: lumocra@SF ## LurchBrick [1] @@ -3707,14 +8048,65 @@ - Games: Attal: Lords of doom - Contact: lusum@SF +## Luz de Gan [1] + +- Games: Tressette +- Contact: ilfarmacista69@SF + +## Lythaniel [1] + +- Games: Openfrag +- Contact: lythaniel@SF + +## M Gagnon [3] + +- Games: Secret Maryo Chronicles, SuperTuxKart, Ultimate Stunts +- Contact: auria@SF + +## M. Buecher [1] + +- Games: Visual Pinball +- Contact: maddes@SF + +## m0elle [1] + +- Games: MegaGlest +- Contact: m0ellemeister@SF + +## Maarten ter Huurne [1] + +- Games: openMSX +- Contact: mthuurne@SF + +## Maarten Vanraes [1] + +- Games: S.C.O.U.R.G.E. +- Contact: alien999999999@SF + ## MaBu [1] - Games: Fish Fillets - Next Generation - Contact: mabu-open@SF -## Mage [1] +## Maciej Murakowski [1] + +- Games: Liberal Crime Squad +- Contact: kuactet@SF + +## madbad [1] + +- Games: Speed Dreams +- Contact: madbad@SF + +## maddanio [1] + +- Games: Privateer - Gemini Gold +- Contact: maddanio@SF + +## mage [1] - Games: Zatacka +- Contact: mage4@SF ## Magnus Auvinen [1] @@ -3725,6 +8117,11 @@ - Games: FreeSynd - Contact: tapwag@SF +## makie [1] + +- Games: Simutrans +- Contact: makie-de@SF + ## makkE [1] - Games: AssaultCube @@ -3735,6 +8132,26 @@ - Games: Golly - Contact: maksverver@SF +## Maksim Savin [1] + +- Games: WebChess +- Contact: max_savin@SF + +## Malcolm Walker [1] + +- Games: WorldForge +- Contact: walker05@SF + +## Malignant Manor [1] + +- Games: Nuvie +- Contact: malignantmanor@SF + +## Mancus1984 [1] + +- Games: Secret Maryo Chronicles +- Contact: dj_mancus1984@SF + ## manikus [1] - Games: Dungeon Craft @@ -3745,11 +8162,41 @@ - Games: FreeCol - Contact: manishtiwari@SF +## Manoel Junqueira [1] + +- Games: Machinations +- Contact: white-rabbit@SF + +## Manuel Bilderbeek [1] + +- Games: openMSX +- Contact: manuelbi@SF + ## Manuel Moos [2] - Games: Armagetron Advanced, Armagetron Advanced - Contact: bazaaarmagetron@SF, z-man@SF +## Mapes [1] + +- Games: Open Quartz +- Contact: mapes@SF + +## Maravilla Gil Salvador [1] + +- Games: Metal Mech +- Contact: smgil@SF + +## Marc A. Pelletier [1] + +- Games: Labyrinth of Worlds +- Contact: coren@SF + +## Marc Badia [1] + +- Games: Mpango +- Contact: mbadiac@SF + ## Marc Gimpel [1] - Games: FreeCol @@ -3760,16 +8207,41 @@ - Games: FlightGear - Contact: d-mkf1@SF +## Marc Le Douarain [1] + +- Games: XScavenger +- Contact: mavati@SF + +## Marc Olzheim [1] + +- Games: Wolfpack Empire +- Contact: marcolz@SF + ## Marcel Metz [1] - Games: FreeOrion - Contact: marcel_metz@SF -## Marcel Miebach [1] +## Marcel Miebach [2] -- Games: Arianne / Marauroa +- Games: Arianne / Marauroa, Stendhal - Contact: retr0virus@SF +## Marcel Paré [1] + +- Games: Vega Strike +- Contact: bwwarden@SF + +## Marcin 'ahwayakchih' Konicki [1] + +- Games: Tux Paint +- Contact: qyzz@SF + +## Marco Milanesi [1] + +- Games: Tux Paint +- Contact: kpanic@SF + ## Marco Vanotti [1] - Games: Argentum Online @@ -3795,6 +8267,11 @@ - Games: DNT - Contact: logan-bh@SF +## Marek Haičman [1] + +- Games: Outer Space +- Contact: dahaic@SF + ## Marian Cerny [1] - Games: Dark Oberon @@ -3804,6 +8281,11 @@ - Games: glParchis +## Marinho Tobolla [1] + +- Games: Microracers +- Contact: sushi@SF + ## Mario [1] - Games: FreeCol @@ -3812,6 +8294,7 @@ ## Mario Donick [1] - Games: LambdaRogue: The Book of Stars +- Contact: hal-o-term@SF ## Marios Visvardis [1] @@ -3823,9 +8306,9 @@ - Games: FreeLords - Contact: mariopielak@SF -## Mark [2] +## Mark [3] -- Games: Conquests, Erebus +- Games: Conquests, Erebus, Gigalomania - Contact: mark-h@SF ## Mark B. Allan [1] @@ -3833,6 +8316,11 @@ - Games: Chromium B.S.U. - Contact: mallan@SF +## Mark Ballinger [1] + +- Games: Wolfpack Empire +- Contact: uesugi@SF + ## Mark Dickenson [1] - Games: Alien Assault Traders @@ -3842,6 +8330,16 @@ - Games: Apricots +## Mark K Vallevand [1] + +- Games: PLIB +- Contact: markus5@SF + +## Mark K. Kim [1] + +- Games: Tux Paint +- Contact: vindaci@SF + ## Mark Page [1] - Games: ClanLib @@ -3852,52 +8350,118 @@ - Games: Combat Simulator Project - Contact: mkrose@SF +## Mark Samman [1] + +- Games: Open Tibia +- Contact: mark-samman@SF + ## Mark Saward [2] - Games: FreeOrion, StressFreeZone - Contact: tyreth@SF +## Mark Schrijver [1] + +- Games: PCGen +- Contact: markschrijver@SF + ## Mark Snellgrove [1] - Games: Apricots +## Mark Tarrabain [1] + +- Games: OpenRPG +- Contact: markt1964@SF + ## Mark Thomas [1] - Games: BZFlag - Contact: menotume@SF +## Mark Vejvoda [1] + +- Games: MegaGlest +- Contact: mvejvoda@SF + ## Mark Wedel [1] - Games: Crossfire - Contact: mwedel@SF +## Mark Zequeida [1] + +- Games: TROPHY +- Contact: markz-@SF + ## Marko Lindqvist [2] - Games: Extreme Tux Racer, Freeciv - Contact: cazfi@SF -## Markus [1] +## Markus [2] -- Games: Arianne / Marauroa +- Games: Arianne / Marauroa, Stendhal - Contact: madmetzger@SF +## Markus Armbruster [1] + +- Games: Wolfpack Empire +- Contact: armbru@SF + ## Markus J. Luzius [1] - Games: JSkat +## Markus Mikkolainen [1] + +- Games: MegaMek +- Contact: itmo@SF + +## Markus Niemistö [1] + +- Games: Nuvie +- Contact: niemisto@SF + +## Markus Pristovsek [1] + +- Games: Simutrans +- Contact: prissi@SF + ## Markus Sinner [1] - Games: FreeOrion - Contact: kroddn@SF +## Marlon [1] + +- Games: Stars! Nova +- Contact: marlongraefing@SF + ## Marlon Hunter [1] - Games: Daimonin - Contact: obli-the-god@SF -## Marshal Lake [1] +## Marq Singer [1] + +- Games: Stars! Nova +- Contact: qmarq@SF + +## Mars-Core-Team [1] + +- Games: M.A.R.S. +- Contact: m-c-t@SF + +## Marshall Lake [1] - Games: NetStatsBaseball +- Contact: marshallelake69@SF + +## Mart Kelder [1] + +- Games: Speed Dreams +- Contact: martkelder@SF ## Marten Svanfeldt [1] @@ -3914,6 +8478,16 @@ - Games: AutoREALM - Contact: messie@SF +## Martijn Verburg [1] + +- Games: PCGen +- Contact: karianna@SF + +## martin [1] + +- Games: Simutrans +- Contact: mjnssn@SF + ## Martin Bickel [1] - Games: Advanced Strategic Command @@ -3924,6 +8498,11 @@ - Games: HolySpirit - Contact: martinbussy@SF +## Martin Bürbaum [1] + +- Games: Vega Strike +- Contact: pontiac@SF + ## Martin Donlon [1] - Games: GLtron @@ -3934,26 +8513,66 @@ - Games: FreeCol - Contact: marede@SF -## Martin Fuchs [1] +## Martin Erik Werner [1] -- Games: Arianne / Marauroa +- Games: Red Eclipse +- Contact: arand-2@SF + +## Martin Fuchs [2] + +- Games: Arianne / Marauroa, Stendhal - Contact: martinfuchs@SF +## Martin Fuhrer [1] + +- Games: Tux Paint +- Contact: mfuhrer@SF + +## Martin Gerhardy [2] + +- Games: Stargus, UFO: Alien Invasion +- Contact: tlh2000@SF + ## Martin Hoffmann [1] - Games: Combat Simulator Project - Contact: storm_bringer@SF +## Martin Hrubý [1] + +- Games: The Battle for Wesnoth +- Contact: hrubymar10@SF + +## Martin Hubley [1] + +- Games: VASSAL +- Contact: clavain@SF + +## Martin Kanich [1] + +- Games: X-Force: Fight For Destiny +- Contact: kanci@SF + ## Martin Klang [1] - Games: Freya Game Engine - Contact: marser@SF +## Martin Newman [1] + +- Games: Wargamer +- Contact: rush2u@SF + ## Martin Reichl [1] - Games: Dune Legacy - Contact: martin2k4@SF +## Martin Scherer [1] + +- Games: Trigger +- Contact: marsch84@SF + ## Martin Trautmann [1] - Games: Holtz @@ -3964,6 +8583,11 @@ - Games: Dark Destiny - Contact: mtschoepe@SF +## Martin_Prosek [1] + +- Games: Simutrans +- Contact: apsim@SF + ## Martiño [1] - Games: Glest @@ -3973,6 +8597,26 @@ - Games: Kobo Deluxe +## Massimo Campostrini [1] + +- Games: Xconq +- Contact: campo@SF + +## Massimo Danieli [1] + +- Games: VDrift +- Contact: massimodanieli@SF + +## Massimo Modica [1] + +- Games: YSoccer +- Contact: massimo32@SF + +## Mat L [1] + +- Games: S.C.O.U.R.G.E. +- Contact: freakyd@SF + ## Mat Sutcliffe [2] - Games: Crystal Space 3D SDK, Ecksdee @@ -3983,6 +8627,11 @@ - Games: Argentum Online - Contact: mateo2011@SF +## Mateusz B [1] + +- Games: VCMI +- Contact: mateuszb@SF + ## Mateusz Viste [2] - Games: Atomiks, Simple Sokoban @@ -3996,12 +8645,18 @@ ## Mathew Velasquez [1] - Games: Open Syobon Action +- Contact: twoscomplement@SF ## Mathias Koehler [1] - Games: FreeOrion - Contact: pd_@SF +## Mathieu Olivier [1] + +- Games: Transfusion +- Contact: molivier@SF + ## Matias A. Graña [1] - Games: Childsplay @@ -4012,35 +8667,130 @@ - Games: XBill - Organization: Psychosoft +## matle [1] + +- Games: Sengoku: Warring States of Japan +- Contact: matle@SF + ## Matt Boddicker [1] - Games: Combat Simulator Project - Contact: boddman@SF +## matt brennan [1] + +- Games: VASSAL +- Contact: nannerbm@SF + +## Matt Chambers [1] + +- Games: PCGen +- Contact: otiendikil@SF + ## Matt Davison [1] - Games: "C.Y.O. Adventures, text game generator" - Contact: mattiased@SF +## Matt McClanahan [1] + +- Games: Pioneers +- Contact: cardinal@SF + +## Matt Waggoner [1] + +- Games: Pioneers +- Contact: dirtside2@SF + +## Matt Williams [2] + +- Games: No Gravity, Openfrag +- Contact: kardoon@SF, maffy@SF + +## Matt Zagrabelny [1] + +- Games: Pioneers +- Contact: zagrabelny@SF + +## Matthew [2] + +- Games: SunDog Resurrection, Vega Strike +- Contact: roguestar191@SF, solo_anakin@SF + ## Matthew D. Steele [2] - Games: Azimuth, System Syzygy +## Matthew Downie [1] + +- Games: Liberal Crime Squad +- Contact: mdownie@SF + +## Matthew Draper [1] + +- Games: Thousand Parsec +- Contact: mdraper@SF + +## Matthew G [1] + +- Games: Vega Strike +- Contact: fortinbras47@SF + +## Matthew Jimenez [1] + +- Games: Pentagram +- Contact: mjimenez@SF + +## Matthew Kruer [2] + +- Games: Privateer - Gemini Gold, Vega Strike +- Contact: mkruer@SF + ## Matthew L [1] - Games: Danger from the Deep - Contact: tx2rx@SF +## Matthew Leverton [1] + +- Games: KQ Lives +- Contact: konforce@SF + +## Matthew Marshall [1] + +- Games: Snowballz +- Contact: mmarshall_@SF + ## Matthew Messana [1] - Games: GalaxyNG - Contact: messanam@SF +## Matthew Nicholson [1] + +- Games: VDrift +- Contact: therealman11@SF + +## Matthew Powell [1] + +- Games: Snowballz +- Contact: deltib@SF + ## Matthew Sarnoff [1] - Games: Shotgun Debugger - Organization: Game Creation Society +## Matthew Skala [1] + +- Games: Xconq +- Contact: matthewskala@SF + +## Matthew Trescott [1] + +- Games: SuperTuxKart +- Contact: mtres19stk@SF + ## Matthias [1] - Games: FreedroidRPG @@ -4058,6 +8808,7 @@ ## Matthias Meger [1] - Games: JSoko +- Contact: megerian@SF ## Matthias S. Benkmann [1] @@ -4065,6 +8816,16 @@ - Contact: mbenkmann@SF - Home: http://winterdrache.de/freeware/index.html +## Matthieu Lecesne [1] + +- Games: TROPHY +- Contact: mazipha@SF + +## Mattias Gaertner [1] + +- Games: RPDungeon - computer aided role playing +- Contact: mgaertner@SF + ## Mauricio M. de Almeida [1] - Games: Freya Game Engine @@ -4088,9 +8849,14 @@ - Games: sandspiel -## Max Horn [1] +## Max Feingold [1] -- Games: Chromium B.S.U. +- Games: openMSX +- Contact: mfeingol@SF + +## Max Horn [2] + +- Games: Chromium B.S.U., Pentagram - Contact: fingolfin@SF ## Max Kowarski [1] @@ -4103,13 +8869,19 @@ - Games: Battery +## Maximilian Reß [1] + +- Games: PixelLight +- Contact: kj-mol@SF + ## mbays [2] - Games: Intricacy, Kuklomenos -## MCMic [1] +## MCMic [3] -- Games: Slime Volley +- Games: Me and My Shadow, Slime Volley, The Rush +- Contact: mcmic@SF ## mcondon [1] @@ -4121,6 +8893,11 @@ - Games: BZFlag - Contact: mudskipper@SF +## MDT [1] + +- Games: PCGen +- Contact: mattdt0@SF + ## Meegwun Southall [1] - Games: Crossfire @@ -4131,16 +8908,36 @@ - Games: Crossfire - Contact: meflin2@SF +## mehdix [1] + +- Games: Open Game Engine +- Contact: mehdi_tnf@SF + ## meltigator [1] - Games: Escape Towards The Unknown - Contact: meltigator@SF +## Meng Tan [1] + +- Games: VASSAL +- Contact: pseudobulbar@SF + ## Menno de Bell [1] - Games: Armagetron Advanced - Contact: lackadaisical@SF +## Mental [1] + +- Games: Outer Space +- Contact: mental1@SF + +## Merkidemis [1] + +- Games: PCGen +- Contact: merkidemis@SF + ## Merwin [1] - Games: HolySpirit @@ -4151,10 +8948,55 @@ - Games: Battle Tanks - Contact: methos_wagner@SF +## MezzoX [1] + +- Games: UltraStar Deluxe +- Contact: mezzox@SF + +## Micah [1] + +- Games: Openfrag +- Contact: snipexv@SF + +## Micah Bunting [1] + +- Games: Pioneers +- Contact: amnykon@SF + +## micha [1] + +- Games: kiki the nano bot +- Contact: micha-4d@SF + +## michabaum [1] + +- Games: RPDungeon - computer aided role playing +- Contact: michabaum@SF + +## Michael [1] + +- Games: Visual Pinball +- Contact: mcpin@SF + ## Michael "fr1tz" Goldener [1] - Games: Terminal Overload +## Michael Alexander [1] + +- Games: Rails: an 18xx game system +- Contact: outsidepasser@SF + +## Michael Bauer [1] + +- Games: Tux Paint +- Contact: akerbeltzalba@SF + +## Michael Bernard [1] + +- Games: PixelLight +- Contact: michlb25@SF + ## Michael Cook [1] - Games: Brutal Chess @@ -4175,21 +9017,61 @@ - Games: Civil - Contact: mearl@SF +## Michael Fink [2] + +- Games: Nuvie, Underworld Adventures +- Contact: vividos@SF + ## Michael Harmer [1] - Games: A Planet's Revenge - Contact: fullplate@SF +## Michael Hudson-Doyle [1] + +- Games: Psyco +- Contact: mwh@SF + ## Michael John Marsh [1] - Games: Decker - Contact: mikemaster@SF +## Michael Kiefte [1] + +- Games: VASSAL +- Contact: mkiefte@SF + +## Michael Kriegel [1] + +- Games: ORIENT +- Contact: ecircusmk@SF + ## Michael Lechtermann [1] - Games: Armagetron Advanced - Contact: mlbelenus@SF +## Michael Lehotay [1] + +- Games: Rogue Clone IV +- Contact: mlehotay@SF + +## Michael Martin [1] + +- Games: The Ur-Quan Masters +- Contact: mcmartin@SF + +## Michael McCarty [1] + +- Games: Race Into Space +- Contact: k6mmc@SF, mkmccarty@SF + +## Michael McInerney [1] + +- Games: Tremulous +- Contact: veda@SF + ## michael minault [1] - Games: Combat Simulator Project @@ -4200,14 +9082,30 @@ - Games: Advanced Strategic Command - Contact: natoka@SF +## Michael Mustun [1] + +- Games: TROPHY +- Contact: flagsoft@SF + +## Michael Ryan [1] + +- Games: xu4 +- Contact: solus@SF + ## Michael Soitanen [1] - Games: FlightGear - Contact: soitanen@SF -## Michael Speck [4] +## Michael Speck [6] -- Games: LBreakout2, LBreakoutHD, LTris, Online Chess Club +- Games: LBreakout2, LBreakoutHD, LGeneral, LMarbles, LTris, Online Chess Club +- Contact: kulkanie@SF + +## Michael Strein [2] + +- Games: Privateer - Gemini Gold, Vega Strike +- Contact: mgstrein@SF ## Michael Toennies [1] @@ -4224,6 +9122,26 @@ - Games: Shotgun Debugger - Organization: Game Creation Society +## Michael Winslow [1] + +- Games: Thousand Parsec +- Contact: mwinslow@SF + +## Michael Wyatt [1] + +- Games: Netrek +- Contact: wyatt@SF + +## Michael Yarbrough [1] + +- Games: phpRPG +- Contact: opedog@SF + +## michal banach [1] + +- Games: Vega Strike +- Contact: scheherazade@SF + ## Michal Holcik [1] - Games: Combat Simulator Project @@ -4234,10 +9152,25 @@ - Games: Bombic - Contact: michal-marek@SF +## Michał W. Urbańczyk [1] + +- Games: VCMI +- Contact: tow-mwu@SF + +## Michel van der Kemp [1] + +- Games: WebChess +- Contact: mightyking@SF + ## Michiko Isogai [1] - Games: Spice Trade +## Mick [1] + +- Games: Ksudoku +- Contact: mkappenburg@SF + ## Mick Kappenburg [1] - Games: Ksudoku @@ -4262,25 +9195,85 @@ - Games: I Have No Tomatoes - Contact: mhalttunen@SF +## Mika Kolehmainen [1] + +- Games: The Ur-Quan Masters +- Contact: gewlitys@SF + +## Mike [1] + +- Games: Pymapper +- Contact: toxic-rat@SF + ## Mike Benonis [1] - Games: Aleph One - Contact: mbenonis@SF -## Mike Gist [1] +## Mike Byron [1] -- Games: Crystal Space 3D SDK -- Contact: mgist@SF +- Games: Vega Strike +- Contact: mikebyron@SF + +## Mike Calfin [1] + +- Games: StepMania +- Contact: mdawg@SF + +## Mike Cotterman [1] + +- Games: T-Bots +- Contact: nicnoc@SF + +## Mike Elliott [1] + +- Games: PCGen +- Contact: satinknights@SF + +## Mike Furr [1] + +- Games: Vega Strike +- Contact: utopist@SF + +## Mike Gist [2] + +- Games: Crystal Space 3D SDK, PlaneShift +- Contact: mgist@SF, xordan@SF + +## Mike Kienenberger [1] + +- Games: jClassicRPG +- Contact: mkienenb@SF + +## Mike Kiscaden [1] + +- Games: MegaMek +- Contact: eldragon@SF + +## Mike L. [1] + +- Games: Red Eclipse +- Contact: mikeplus42@SF ## Mike McBride [1] - Games: KMines +## Mike Nigh [1] + +- Games: Zod Engine +- Contact: freaknigh@SF + ## Mike Pope [1] - Games: FreeCol - Contact: mpope@SF +## Mike Roberts [1] + +- Games: Visual Pinball +- Contact: mjroberts@SF + ## Mike Schuette [1] - Games: Xultris @@ -4289,10 +9282,20 @@ - Games: GJID +## Mike Stephenson [1] + +- Games: NetHack +- Contact: karnov@SF + ## Mike Strobel [1] - Games: Supremacy +## Mike van Riel [1] + +- Games: PCGen +- Contact: mvriel@SF + ## Mikey Lubker [1] - Games: Snowballz @@ -4312,6 +9315,11 @@ - Games: AstroMenace - Contact: viewizard@SF +## Mikko Juola [1] + +- Games: UnNetHack +- Contact: noeda@SF + ## Miles [1] - Games: FreedroidRPG @@ -4322,16 +9330,51 @@ - Games: Destination Sol - Contact: miloshpetrov@SF +## mips [1] + +- Games: Open Tibia +- Contact: mips_act@SF + ## Misiulo [1] - Games: FreeCol - Contact: misiulo@SF +## mitchell nolte [1] + +- Games: Wargamer +- Contact: untermenschen@SF + +## Mitsuhiro Itakura [1] + +- Games: ZAngband +- Contact: itakura@SF + +## Miziiik [1] + +- Games: Simutrans +- Contact: miziiik@SF + +## mjluzius [1] + +- Games: JSkat +- Contact: mjluzius@SF + +## Mobo [1] + +- Games: Simutrans +- Contact: mobo99@SF + ## MocI [1] - Games: Armagetron Advanced - Contact: moci@SF +## Mog [1] + +- Games: UltraStar Deluxe +- Contact: mogguh@SF + ## Mohammed Morsi [1] - Games: Omega @@ -4341,16 +9384,66 @@ - Games: Crystal Space 3D SDK - Contact: mohittaneja@SF -## monsterdhal [1] +## Mojo Xanadu [1] -- Games: Arianne / Marauroa +- Games: OpenRPG +- Contact: mojoxanadu@SF + +## Moni [1] + +- Games: PCGen +- Contact: leokhorn@SF + +## monsterdhal [2] + +- Games: Arianne / Marauroa, Stendhal - Contact: monsterdhal@SF +## moogle0001 [1] + +- Games: PCGen +- Contact: moogle0001@SF + +## Morgan [1] + +- Games: Vega Strike +- Contact: morgan_morgwedh@SF + ## Morgan Smith [1] - Games: Betrayer's Moon Tactics - Contact: hondasantohru@SF +## Morphed [1] + +- Games: Nexuiz +- Contact: morphed@SF + +## morshus [1] + +- Games: Tux Paint +- Contact: morshus@SF + +## mota23 [1] + +- Games: UltraStar Deluxe +- Contact: mota23@SF + +## mothsart [1] + +- Games: Plee the Bear +- Contact: mothsart@SF + +## MotorViper [1] + +- Games: PCGen +- Contact: motorviper@SF + +## mozart kittie [1] + +- Games: Wograld +- Contact: mozartkittie@SF + ## Mozilla [1] - Games: Runfield @@ -4365,13 +9458,48 @@ - Games: AssaultCube - Contact: fischeca_1984@SF +## mrevenga [1] + +- Games: SpaceZero +- Contact: mrevenga@SF + ## MrPouit [1] - Games: OpenAlchemist -## mvBarracuda [1] +## Muammar El Khatib [1] -- Games: FIFE +- Games: Secret Maryo Chronicles +- Contact: muammark@SF + +## Muhammad Najmi bin Ahmad Zabidi [1] + +- Games: Tux Paint +- Contact: najmi_zabidi@SF + +## mukuste [1] + +- Games: Visual Pinball +- Contact: mukuste@SF + +## Murat Sari [1] + +- Games: OGRE +- Contact: wolfmanfx09@SF + +## Muschick Christian [1] + +- Games: Zero Ballistics +- Contact: musch@SF + +## Muton-UfoAI [1] + +- Games: UFO: Alien Invasion +- Contact: mutonufoai@SF + +## mvBarracuda [2] + +- Games: FIFE, PARPG - Contact: mvbarracuda@SF ## Mysteria [1] @@ -4379,11 +9507,26 @@ - Games: Daimonin - Contact: mysteria@SF +## Mysteryem [1] + +- Games: Warzone 2100 +- Contact: mysteryem@SF + ## Myths [1] - Games: Daimonin - Contact: myths@SF +## Mĺrten Strömberg [1] + +- Games: PLIB +- Contact: stromberg@SF + +## n0.obAtroN [1] + +- Games: Stargus +- Contact: acidflamme@SF + ## naaier [1] - Games: Cat Mother Dead Justice @@ -4409,41 +9552,186 @@ - Games: Crystal Space 3D SDK - Contact: naman22@SF +## Namrata Nehete [1] + +- Games: Tux Paint +- Contact: namratanehete@SF + +## nash [1] + +- Games: Thousand Parsec +- Contact: nash@SF + +## Nate Fries [1] + +- Games: Open Tibia +- Contact: nfries88@SF + +## NateWr [1] + +- Games: UFO: Alien Invasion +- Contact: natewr@SF + ## Nathan Brazil [1] - Games: Freeciv - Contact: saltybanana@SF +## Nathan Kelley [1] + +- Games: WebChess +- Contact: thenateosapi@SF + +## Nathan Rowden [1] + +- Games: MegaMek +- Contact: twibberjix@SF + +## Nathan Samson [1] + +- Games: VDrift +- Contact: nathan_samson@SF + +## Nathanael Nerode [1] + +- Games: Simutrans +- Contact: neroden@SF + +## Nathanael Phillips [1] + +- Games: Vega Strike +- Contact: njphillips@SF + +## Nathaniel Woods [1] + +- Games: NStars! +- Contact: npwoods@SF + +## Natter [1] + +- Games: X-Force: Fight For Destiny +- Contact: natter83@SF + ## Naveen Venugopal [1] - Games: FreeCol - Contact: vnavys@SF +## Neal Leverenz [1] + +- Games: Visual Pinball +- Contact: ntleverenz@SF + ## Neil Graeme Matthews [1] - Games: Atomic Tanks - Contact: neilmatthews@SF +## Neil Zanella [1] + +- Games: Ultimate Stunts +- Contact: nzanella@SF + ## neilpa [1] - Games: Brutal Chess - Contact: neilpa@SF +## Nemezis Edge [1] + +- Games: StepMania +- Contact: tsvpenbg@SF + +## NeoFax [1] + +- Games: PCGen +- Contact: neofax@SF + +## NetHack Read-only user [1] + +- Games: NetHack +- Contact: nethack-ro@SF + ## New Breed Software [2] - Games: 3D Pong, Tux Paint - Home: http://newbreedsoftware.com/ +## Ney Cândido da Silva Ribeiro [1] + +- Games: Speed Dreams +- Contact: auradrummer@SF + +## nhmall [1] + +- Games: NetHack +- Contact: mallison@SF + +## Nibor [1] + +- Games: Stars! Nova +- Contact: niborman@SF + ## nicetuna [1] - Games: Daimonin - Contact: giltux@SF +## Nicholas Davies [1] + +- Games: KQ Lives +- Contact: ndavies@SF + ## Nicholas Shanks [1] - Games: FreeCol - Contact: nickshanks@SF +## Nicholas Tanger [1] + +- Games: Simutrans +- Contact: dogstarletsplay@SF + +## Nicholas Walczak [1] + +- Games: MegaMek +- Contact: arlith@SF + +## Nick [1] + +- Games: Visual Pinball +- Contact: hanzoverfist@SF + +## Nick Dumas [1] + +- Games: Liberal Crime Squad +- Contact: nickdumas@SF + +## Nick Jansens [1] + +- Games: Tremulous +- Contact: elfx@SF + +## Nick Kobelja [1] + +- Games: VASSAL +- Contact: codemagician@SF + +## Nick McEvoy [1] + +- Games: PLIB +- Contact: nmcevoy@SF + +## Nick Straguzzi [1] + +- Games: Rogue Clone IV +- Contact: strags11@SF + +## Niclas Fredriksson [1] + +- Games: Netrek +- Contact: starduck@SF + ## Nicolas Auvray [1] - Games: 0 A.D. @@ -4477,16 +9765,36 @@ - Games: AssaultCube - Contact: nieb@SF -## Nigel [1] +## Nigel [2] -- Games: Aleph One -- Contact: notnigel@SF +- Games: Aleph One, Stars! Nova +- Contact: morsen@SF, notnigel@SF + +## NightFox [1] + +- Games: PixelLight +- Contact: nightfox696@SF + +## Nihathrael [1] + +- Games: Unknown Horizons +- Contact: nihathrael@SF + +## Nik_akd [1] + +- Games: Race Into Space +- Contact: nikakd@SF ## Niklas [1] - Games: Combat Simulator Project - Contact: flightbase@SF +## Niklas Blomkvist [1] + +- Games: Liberal Crime Squad +- Contact: blomkvist@SF + ## Niklas Laxström [1] - Games: FreeCol @@ -4497,6 +9805,11 @@ - Games: FlightGear - Contact: forgolai@SF +## Nils Kneuper [1] + +- Games: The Battle for Wesnoth +- Contact: ivanovic@SF + ## Nils Trzebin [1] - Games: Boson @@ -4507,26 +9820,71 @@ - Games: Crystal Space 3D SDK - Contact: nilspin@SF +## niphree [1] + +- Games: Thousand Parsec +- Contact: niphree@SF + +## Nir Hasson [1] + +- Games: OGRE +- Contact: nirhasson@SF + +## Noam Gat [1] + +- Games: OGRE +- Contact: noamgat@SF + ## NoDisplayName [1] - Games: FreeCol - Contact: helgihg@SF +## Nodling [1] + +- Games: xu4 +- Contact: mwinterrowd@SF + ## nologgie [1] - Games: Dungeon Craft - Contact: nologgie@SF +## Nor Jaidi Tuah [1] + +- Games: Pasang Emas +- Contact: norjaidi@SF + ## Norbert Drexl [1] - Games: GL-117 - Contact: heptargon@SF +## Norman Vine [1] + +- Games: PLIB +- Contact: nhv@SF + +## NorthBender [1] + +- Games: Stars! Nova +- Contact: northbender@SF + +## nosogo [1] + +- Games: MegaGlest +- Contact: nosogo@SF + ## Nou Phabmixay [1] - Games: GLtron - Contact: blank_contact@SF +## ny [1] + +- Games: VDrift +- Contact: zimluura@SF + ## NY00123 [1] - Games: Commander Genius @@ -4542,11 +9900,36 @@ - Games: GUSANOS - Contact: nymacro@SF +## Nyx [1] + +- Games: Liberal Crime Squad +- Contact: nyxwise@SF + +## Néd J. [1] + +- Games: SuperTuxKart +- Contact: jymis@SF + +## obiwankennedy [1] + +- Games: Rolisteam +- Contact: obiwankennedy@SF + ## Ocelot Mantis [1] - Games: Dope Wars - Contact: psychicgal@SF +## Ocirne94 [1] + +- Games: Speed Dreams +- Contact: ocirne94@SF + +## odamite [1] + +- Games: Me and My Shadow +- Contact: odamite@SF + ## Oewyn [1] - Games: Freestars @@ -4557,6 +9940,11 @@ - Games: FreeCol - Contact: slimer@SF +## Olaf P [1] + +- Games: Simutrans +- Contact: pumuckl999@SF + ## Oliver Baker [1] - Games: TuxKart @@ -4565,6 +9953,11 @@ - Games: Tornado +## Oliver Frye [1] + +- Games: OpenBlox +- Contact: spykid99@SF + ## Oliver Gantert [1] - Games: Der Clou! @@ -4584,6 +9977,16 @@ - Games: XBlast +## Oliver White [1] + +- Games: WorldForge +- Contact: owhite@SF + +## Olivier Dormond [1] + +- Games: The Bub's Brothers +- Contact: odormond@SF + ## Olivier H [1] - Games: Danger from the Deep @@ -4598,9 +10001,10 @@ - Games: Trip on the Funny Boat, Which Way Is Up? -## Olli Etuaho [2] +## Olli Etuaho [3] -- Games: Beat Harvester, One is enough +- Games: Beat Harvester, One is enough, Trip on the Funny Boat +- Contact: hectigo@SF ## Olli Sorjonen [1] @@ -4611,29 +10015,64 @@ - Games: Galaxy Forces V2 - Contact: omars1515@SF +## OneOfAmorphis [1] + +- Games: nXtank +- Contact: oneofamorphis@SF + +## OnlineCop [1] + +- Games: KQ Lives +- Contact: onlinecop@SF + ## onpon4 [3] - Games: Pacewar, ReTux, Tangomon -## onu [1] +## Onsemeliot [1] -- Games: Arianne / Marauroa +- Games: Trigger +- Contact: onsemeliot@SF + +## onu [2] + +- Games: Arianne / Marauroa, Stendhal - Contact: onu@SF +## openmortaldev [1] + +- Games: OpenMortal +- Contact: openmortaldev@SF + ## Opensource Game Studio [1] - Games: OGS Mahjong +## opqdonut [1] + +- Games: The Bub's Brothers +- Contact: opqdonut@SF + ## Orca [1] - Games: Freestars - Contact: orca911@SF +## Ori Bar [1] + +- Games: VCMI +- Contact: tohava@SF + ## orogor [1] - Games: Ecksdee - Contact: orogor@SF +## OsoSangre [1] + +- Games: Open Tibia +- Contact: ososangre@SF + ## Oto Petrik [1] - Games: Dune Legacy @@ -4649,11 +10088,21 @@ - Games: 2Moons Browsergame Engine - Contact: OzanKurt@GH -## Ozkan Sezer [1] +## Ozkan Sezer [3] -- Games: Hammer of Thyrion +- Games: Hammer of Thyrion, HHexen, QuakeSpasm - Contact: sezero@SF +## P_Hansson [1] + +- Games: Sengoku: Warring States of Japan +- Contact: p_hansson@SF + +## Pablo Farias Navarro [1] + +- Games: World of Heroes +- Contact: pablofarias@SF + ## Pablo Ignacio Márquez [1] - Games: Argentum Online @@ -4664,31 +10113,101 @@ - Games: Crystal Space 3D SDK - Contact: caedesv@SF +## Pablo Saratxaga [1] + +- Games: Tux Paint +- Contact: srtxg@SF + +## Pace Willisson [1] + +- Games: Race Into Space +- Contact: pace@SF + +## Pal Illes [1] + +- Games: jClassicRPG +- Contact: skrionius@SF + ## Paolo Bizzarri [1] - Games: FreeCol - Contact: pibizza@SF +## PappeTeeMaster [1] + +- Games: Simutrans +- Contact: pappeteemaster@SF + +## Paracelsus [1] + +- Games: VCMI +- Contact: kwazi83@SF + +## paroj [1] + +- Games: OGRE +- Contact: paroj@SF + ## Pascal van der Heiden [1] - Games: Bloodmasters - Contact: codeimp@SF +## Pasi Kallinen [3] + +- Games: The Bub's Brothers, Toppler, UnNetHack +- Contact: pkalli@SF + ## Pasi Lackman [1] - Games: Colonization too - Contact: urkki@SF +## pastdue [1] + +- Games: Warzone 2100 +- Contact: pastdue@SF + +## Pat Rankin [1] + +- Games: NetHack +- Contact: rankin@SF + ## Pato [1] - Games: Argentum Online - Contact: paatoo@SF +## patoski [1] + +- Games: WorldForge +- Contact: patoski@SF + +## Patric Mueller [2] + +- Games: NetHack, UnNetHack +- Contact: bhaak@SF + +## Patrice Duhamel [1] + +- Games: Powermanga +- Contact: patriceduhamel@SF, patricetlk@SF + ## Patrick [1] - Games: BomberClone - Contact: patty21@SF +## Patrick Dahlin [1] + +- Games: Wargamer +- Contact: pede@SF + +## Patrick Devine [1] + +- Games: SunDog Resurrection +- Contact: agntdrake@SF + ## Patrick Fleckenstein [1] - Games: 54321 @@ -4697,25 +10216,55 @@ - Games: Sarah-Maries Eierjagd +## Patrick Gilhuly [1] + +- Games: Tux Racer +- Contact: snoop@SF + +## Patrick Horn [2] + +- Games: Privateer - Gemini Gold, Vega Strike +- Contact: ace123@SF + ## Patrick J. Naughton [1] - Games: Amphetamine +## Patrick McKenzie [1] + +- Games: MegaMek +- Contact: patio11@SF + +## Patrick van Arkel [1] + +- Games: openMSX +- Contact: vampier@SF + ## patryk1303 [1] - Games: Cubosphere - Contact: p98@SF -## Paul [1] +## Paul [2] -- Games: Brain Workshop -- Contact: radix-@SF +- Games: Brain Workshop, Phantasy Star Rebirth +- Contact: dreamcatcher1@SF, radix-@SF + +## Paul DeVaul [1] + +- Games: Speed Dreams +- Contact: birdatoo@SF ## Paul Elms [1] - Games: Froggix - Contact: scifly@SF +## Paul Grosse [1] + +- Games: PCGen +- Contact: nylanfs@SF + ## Paul Heinzlreiter [1] - Games: GalaxyNG @@ -4725,6 +10274,16 @@ - Games: 3Dc +## Paul Hurtley [1] + +- Games: SLASH'EM +- Contact: paulhurtley@SF + +## Paul M. Lambert [1] + +- Games: PCGen +- Contact: plambert@SF + ## Paul Mueller [1] - Games: Free Space Colonization @@ -4753,9 +10312,19 @@ - Games: Dungeon Craft - Contact: stevens-madison@SF -## Paul Wise [3] +## Paul Vint [1] -- Games: Alex the Allegator 4, Chromium B.S.U., Hex-a-hop +- Games: Scorched3D +- Contact: cbx550f@SF + +## Paul W. King [1] + +- Games: PCGen +- Contact: kingpaul@SF + +## Paul Wise [5] + +- Games: Alex the Allegator 4, Chromium B.S.U., Hex-a-hop, I Have No Tomatoes, MegaGlest - Contact: pabs3@SF ## paul.radioactive [1] @@ -4763,11 +10332,21 @@ - Games: Goblin Hack - Contact: rad-paul@SF +## Paulo Assis [1] + +- Games: RickyD +- Contact: assisp@SF + ## Pavel Danihelka [1] - Games: Fish Fillets - Next Generation - Contact: mrpaja@SF +## Pavel Kazlou [1] + +- Games: Stars! Nova +- Contact: eraser8head@SF + ## Pavel Krajcevski [1] - Games: Crystal Space 3D SDK @@ -4783,6 +10362,16 @@ - Games: Chrzaszcz - Contact: pawelbiernacki@SF +## Pawel Gielmuda [1] + +- Games: Stars! Nova +- Contact: pilotpirx1@SF + +## Pedro Azevedo [1] + +- Games: Openfrag +- Contact: xor-pt@SF + ## Pedro Ferreira [1] - Games: Emilia Pinball @@ -4798,21 +10387,66 @@ - Games: Crystal Space 3D SDK - Contact: pedrosouza@SF -## Per I Mathisen [1] +## pedro_b [1] -- Games: Freeciv +- Games: Open Tibia +- Contact: piterb@SF + +## Pekka Rousu [1] + +- Games: SLASH'EM +- Contact: prousu@SF + +## Pekuja [1] + +- Games: Trip on the Funny Boat +- Contact: pekuja@SF + +## pentadrago [1] + +- Games: Siege of Avalon : Open Source +- Contact: pentadrago@SF + +## Pentarctagon [1] + +- Games: The Battle for Wesnoth +- Contact: pentarctagon@SF + +## Per Christian Henden [1] + +- Games: PCGen +- Contact: perchrh@SF + +## Per I Mathisen [2] + +- Games: Freeciv, Warzone 2100 - Contact: sendai@SF +## Per Liedman [1] + +- Games: PLIB +- Contact: liedman@SF + ## Per Øyvind Karlsen [1] - Games: Dune Legacy - Contact: dvalin@SF +## Pere Pujal i Carabantes [1] + +- Games: Tux Paint +- Contact: perepujal@SF + ## PerlJamZ10 [1] - Games: Chaos Esque Anthology - Contact: perljamz10@SF +## PeS [1] + +- Games: Outer Space +- Contact: xpesx@SF + ## Pete Shinners [1] - Games: SolarWolf @@ -4822,6 +10456,11 @@ - Games: Childsplay - Contact: pgovers@SF +## Peter Ivanyi [1] + +- Games: LGeneral +- Contact: peteri@SF + ## Peter Knut [1] - Games: Dark Oberon @@ -4847,25 +10486,75 @@ - Games: PGU - Contact: parogers@GH +## Peter S. Griffin [1] + +- Games: Vega Strike +- Contact: peteyg@SF + ## Peter Sadrozinski [1] - Games: FlightGear - Contact: psadro@SF +## Peter van Ginneken [1] + +- Games: The Butterfly Effect +- Contact: lspace@SF + +## Peter Yovich [1] + +- Games: PCGen +- Contact: pyovich@SF + +## Peterson Ford Trethewey [1] + +- Games: Vega Strike +- Contact: ptreth@SF + ## Petr Gajdusek [1] - Games: Bombic - Contact: pajdus@SF +## petrocket [1] + +- Games: Open Game Engine +- Contact: petrocket@SF + +## Petru Paler [1] + +- Games: Psyco +- Contact: ppetru@SF + +## Phantom of Krankor [1] + +- Games: PCGen +- Contact: y2krankor@SF + +## Pheonix Rising [2] + +- Games: Privateer - Gemini Gold, Vega Strike +- Contact: pheonixstorm@SF + ## Phil Hassey [1] - Games: PGU - Home: http://www.philhassey.com/blog/ +## Philip Allgaier [1] + +- Games: OGRE +- Contact: spacegaier@SF + ## Philip Dorrell [1] - Games: PrimeShooter +## Philip Giuliano [1] + +- Games: Race Into Space +- Contact: toggaf@SF + ## Philip Rodrigues [1] - Games: KMines @@ -4895,6 +10584,11 @@ - Games: Combat Simulator Project - Contact: mrich2010@SF +## philipp kleinschmit [1] + +- Games: Mpango +- Contact: philippkl@SF + ## Philippe Bousquet [1] - Games: DarkCity @@ -4910,16 +10604,51 @@ - Games: Armagetron Advanced - Contact: philippeqc@SF +## phill [1] + +- Games: Slay +- Contact: phillvanleersum@SF + ## Philosopher [1] - Games: FlightGear - Contact: nasalmusician@SF +## Phlogios [1] + +- Games: Vega Strike +- Contact: phlogios@SF + +## Phoex [1] + +- Games: PCGen +- Contact: mzdmphoex@SF + +## Pierre [1] + +- Games: Open Rodent's Revenge +- Contact: pierreyoda@SF + +## Pierre-Alain Dorange [1] + +- Games: MicroWar 2.0 +- Contact: padorange@SF + ## Pierre-Loup Griffais [1] - Games: EDuke32 - Contact: plagman@SF +## Pieter Christiaan Luteijn [1] + +- Games: Nuvie +- Contact: luteijn@SF + +## Pieter Geerkens [1] + +- Games: VASSAL +- Contact: pgeerkens@SF + ## Pieter Hulshoff [1] - Games: Freestars @@ -4944,23 +10673,38 @@ - Games: GL-117 +## Piotr Walaszczyk [1] + +- Games: Open Tibia +- Contact: pietia10@SF + ## Piwai [1] - Games: 2H4U - Contact: insa_piwai@SF +## PL_Andrev [1] + +- Games: Stars! Nova +- Contact: pl-andrev@SF + ## plaimi [2] - Games: Limbs Off, Q +## PlaneShift Team [1] + +- Games: PlaneShift +- Contact: psshared@SF + ## Planky [1] - Games: Doom Legacy - Contact: planky@SF -## plassy [1] +## plassy [2] -- Games: Arianne / Marauroa +- Games: Arianne / Marauroa, Stendhal - Contact: plassy@SF ## plukich [1] @@ -4968,6 +10712,26 @@ - Games: DNT - Contact: plukich@SF +## PoiuyTerry [1] + +- Games: Visual Pinball +- Contact: poiuyterry@SF + +## PolarFox [1] + +- Games: Vega Strike +- Contact: polarfox1@SF + +## portets [1] + +- Games: VDrift +- Contact: portets@SF + +## Predator [1] + +- Games: Transfusion +- Contact: red_giant@SF + ## premkumar bhaskal [1] - Games: FreeLords @@ -4978,6 +10742,11 @@ - Games: Crossfire - Contact: crowbert@SF +## pricorde [1] + +- Games: Rigs of Rods +- Contact: pricorde@SF + ## Promitheas Avgerinos [1] - Games: Cubosphere @@ -4992,18 +10761,48 @@ - Games: Trip on the Funny Boat +## Puzzlemaker [1] + +- Games: Liberal Crime Squad +- Contact: puzzlemaker@SF + ## PyMike [1] - Games: Mrfuze +## pyramid [1] + +- Games: Vega Strike +- Contact: pyramid3d@SF + +## Pál Zoltán Illés [1] + +- Games: S.C.O.U.R.G.E. +- Contact: pzilles@SF + +## Qark [1] + +- Games: Outer Space +- Contact: qark@SF + ## Qbix [1] - Games: EDuke32 - Contact: qbix79@SF -## qubodup [2] +## Quadrofonic [1] -- Games: Annchienta, DNT +- Games: nXtank +- Contact: quadrofonic@SF + +## quaker66 [1] + +- Games: Red Eclipse +- Contact: quaker66@SF + +## qubodup [4] + +- Games: Annchienta, DNT, jClassicRPG, Trigger - Contact: qubodup@SF ## Quentin Anciaux [1] @@ -5026,6 +10825,16 @@ - Games: PSY PONG 3D - Contact: quetzyg@SF +## Quinten Marsman [1] + +- Games: The Butterfly Effect +- Contact: quintenm97@SF + +## Quinton Reeves [2] + +- Games: Red Eclipse, SDL-Ball +- Contact: qreeves@SF + ## R. White [1] - Games: FreeTrain @@ -5036,20 +10845,50 @@ - Games: FooBillard++ - Contact: rbrandl@SF +## rado [1] + +- Games: XBlast +- Contact: rado@SF + ## Radomir Dopieralski [1] - Games: H-World - Contact: sheep@SF +## Radoslaw Grzanka [1] + +- Games: Underworld Adventures +- Contact: radekg2@SF + ## Rafael C. Barreto [1] - Games: AssaultCube - Contact: baarreth@SF +## Rafael Fontenelle [1] + +- Games: Sudokuki +- Contact: rafaelff1@SF + +## Rafael Hamdan [1] + +- Games: Open Tibia +- Contact: rafaelhamdan@SF + +## Rafal R [1] + +- Games: VCMI +- Contact: ambtrip@SF + ## Rafal Zawadzki [1] - Games: Deer Portal +## Rafał Wrzeszcz [1] + +- Games: Open Tibia +- Contact: wrzasq@SF + ## Rahul Patel [1] - Games: Brain Workshop @@ -5060,31 +10899,76 @@ - Games: Freeciv - Contact: rfalke@SF +## Rajiv Guilder [1] + +- Games: Wargamer +- Contact: rajiv88@SF + ## rakitahs [1] - Games: Crossfire - Contact: shatikar@SF -## Ralph Campbell [1] +## Ralph Campbell [2] -- Games: Crystal Space 3D SDK +- Games: Crystal Space 3D SDK, PlaneShift - Contact: ralphcampbell@SF +## Ralph Giles [1] + +- Games: WorldForge +- Contact: giles@SF + +## Ralph Little [1] + +- Games: Open Game Engine +- Contact: skelband@SF + +## RambOrc [1] + +- Games: Korax' Heritage +- Contact: ramborc@SF + ## Ramjet [1] - Games: BlackNova Traders - Contact: rdcravens@SF +## Random Chaos [1] + +- Games: Outer Space +- Contact: neym@SF + +## randomclass [1] + +- Games: PCGen +- Contact: randomclass@SF + ## RandumKiwi [1] - Games: AssaultCube - Contact: randumkiwi@SF +## Randy Davis [1] + +- Games: Visual Pinball +- Contact: randydavis99@SF + +## Randy Heit [1] + +- Games: ZDoom +- Contact: rheit@SF + ## Raoul Bourquin [1] - Games: Enigma - Contact: raoul-b@SF +## Raphael Bosshard [1] + +- Games: S.C.O.U.R.G.E. +- Contact: rboss@SF + ## Raphael Goulais [1] - Games: Attal: Lords of doom @@ -5095,16 +10979,51 @@ - Games: Crossfire - Contact: quinet@SF +## Rasmus Erik Voel Jensen [1] + +- Games: Tux Paint +- Contact: voel@SF + ## Rasmus Praestholm [1] - Games: Destination Sol - Contact: cervator@SF +## Rathe Holloway [1] + +- Games: KQ Lives +- Contact: phate@SF + +## ravna [1] + +- Games: PlaneShift +- Contact: ravna-ps@SF + +## Ray Hyatt, Jr. [1] + +- Games: Wolfpack Empire +- Contact: plundaria@SF + +## RazorWind Team projects [1] + +- Games: Nexuiz +- Contact: razorwind@SF + ## rcb [1] - Games: Freeciv Alpha Centauri project - Contact: renatocborges@SF +## rclobus [1] + +- Games: Pioneers +- Contact: rclobus@SF + +## Rebecca Downey [1] + +- Games: PCGen +- Contact: ketherian@SF + ## Rebecca Kelly [1] - Games: Crossfire @@ -5125,11 +11044,16 @@ - Games: FlightGear - Contact: redgriffin@SF -## RedQueen [1] +## RedQueen [2] -- Games: Arianne / Marauroa +- Games: Arianne / Marauroa, Stendhal - Contact: theredqueen@SF +## redrum [1] + +- Games: TripleA +- Contact: rmurhammer@SF + ## Reduz [1] - Games: Stringrolled @@ -5139,16 +11063,51 @@ - Games: GalaxyNG - Contact: fleckingerre@SF +## Reikan [1] + +- Games: openMSX +- Contact: reikan@SF + +## Reilly Watson [1] + +- Games: Tux Paint +- Contact: reillywatson@SF + +## Reimund Renner [1] + +- Games: Open Surge +- Contact: reimundr@SF + ## Reinier Post [1] - Games: Freeciv - Contact: rp2@SF +## Reliant [1] + +- Games: Vega Strike +- Contact: ussreliant@SF + ## remaxim [1] - Games: Hex-a-hop - Contact: remaxim@SF +## Remere [1] + +- Games: Open Tibia +- Contact: remere@SF + +## Remi Spaans [1] + +- Games: Korax' Heritage +- Contact: tzarsectus@SF + +## Remigiusz Dybka [1] + +- Games: Zaz +- Contact: mal1ce@SF + ## Rene Dohmen [1] - Games: Childsplay @@ -5178,19 +11137,44 @@ - Games: Hnefatafl - Contact: tyrdal@SF +## retired C# coder [1] + +- Games: Stars! Nova +- Contact: retired-c-sharp@SF + +## retrix [1] + +- Games: S.C.O.U.R.G.E. +- Contact: retrix@SF + ## Reuben Lord [1] - Games: Balder2D - Contact: colalord@SF -## Ricardo Cruz [1] +## ReyBrujo [1] -- Games: Microracers +- Games: KQ Lives +- Contact: reybrujo@SF + +## RHaden [1] + +- Games: JQuest +- Contact: rhaden@SF + +## Riaan Booysen [1] + +- Games: Psyco +- Contact: riaan@SF + +## Ricardo Cruz [2] + +- Games: Microracers, XBlast - Contact: rmcruz@SF -## Ricardo Quesada [1] +## Ricardo Quesada [2] -- Games: Batalla Naval +- Games: Batalla Naval, Tenes Empanadas Graciela - Contact: riq@SF ## Riccardo Bernardini [1] @@ -5208,6 +11192,16 @@ - Games: FreeCol - Contact: ricfaith@SF +## Rich Baumann [1] + +- Games: PCGen +- Contact: axiomofanarchy@SF + +## Rich McGrew [1] + +- Games: Liberal Crime Squad +- Contact: yetisyny@SF + ## Richard David Williams [1] - Games: Biogenesis @@ -5228,18 +11222,44 @@ - Games: FlightGear - Contact: r-harrison@SF +## Richard Hendricks [1] + +- Games: nXtank +- Contact: hendric@SF + +## Richard Homonnai [1] + +- Games: PCGen +- Contact: chainkeiya@SF + +## Richard Jones [1] + +- Games: Vega Strike +- Contact: richard@SF + +## Richard June [1] + +- Games: Tux of Math Command +- Contact: richardjune@SF + ## Richard Langridge [1] - Games: Trigger +## Richard O'Grady [1] + +- Games: Wargamer +- Contact: rjogrady@SF + ## Richard Roy [1] - Games: FreeCol - Contact: azhockeynut@SF -## Richard Sweeney [1] +## Richard Sweeney [2] -- Games: Project: Starfighter +- Games: Project: Starfighter, The Legend of Edgar +- Contact: riksweeney@SF - Organization: Parallel Realities ## Richard T. Jones [1] @@ -5266,6 +11286,16 @@ - Games: AssaultCube - Contact: rick_helmus@SF +## rick browne [1] + +- Games: SunDog Resurrection +- Contact: rick_browne@SF + +## Rick Cooley [1] + +- Games: Omega-rpg +- Contact: pixelcat@SF + ## Rick Crew [1] - Games: AutoREALM @@ -5281,15 +11311,35 @@ - Games: Alien Assault Traders - Contact: tarnus@SF +## Rickard Westerlund [1] + +- Games: VCMI +- Contact: onion_knight@SF + ## Ricky Ratzlaff [1] - Games: AssaultCube - Contact: v-man737@SF +## Ricochet [1] + +- Games: Open Tibia +- Contact: ricochet_03@SF + +## Rikard [1] + +- Games: VDrift +- Contact: osteron@SF + ## Riley Rainey [1] - Games: ACM +## Ritacon [1] + +- Games: Wograld +- Contact: ritacon@SF + ## Rivo Laks [1] - Games: Boson @@ -5300,9 +11350,9 @@ - Games: Extreme Tux Racer - Contact: rksimon@SF -## RlyDontKnow [1] +## RlyDontKnow [2] -- Games: Crystal Space 3D SDK +- Games: Crystal Space 3D SDK, PlaneShift - Contact: rlydontknow@SF ## rnienhaus [1] @@ -5310,6 +11360,11 @@ - Games: FreeCol - Contact: maniac82@SF +## Rob [1] + +- Games: Visual Pinball +- Contact: djrobx@SF + ## Rob Norman [1] - Games: phpRPG @@ -5320,11 +11375,36 @@ - Games: FreeCol - Contact: rrude@SF +## Rob Swindell [1] + +- Games: The Clans +- Contact: rswindell@SF + ## Robert Bäuml [1] - Games: Doom Legacy - Contact: metzgermeister@SF +## Robert Crossfield [1] + +- Games: The Castles of Dr. Creep +- Contact: segra@SF + +## Robert Forder [1] + +- Games: Red Eclipse +- Contact: rforder2@SF + +## Robert Hand [1] + +- Games: Scorched3D +- Contact: b0bir0v@SF + +## Robert Jacob [1] + +- Games: Vega Strike +- Contact: xperimental007@SF + ## Robert Munafo [1] - Games: Golly @@ -5335,26 +11415,101 @@ - Games: StressFreeZone - Contact: doomhammer@SF +## Robert Reif [1] + +- Games: Speed Dreams +- Contact: iobyte@SF + +## Robert Ruehlmann [1] + +- Games: ZAngband +- Contact: rr9@SF + +## Robert Ryll [1] + +- Games: Metal Mech +- Contact: newcomer2005@SF + ## Robert Schuster [1] - Games: Qonk - Contact: thebohemian@SF +## Robert T Childers [1] + +- Games: OpenRPG +- Contact: rtrentc@SF + +## Robert Thomas [1] + +- Games: JSettlers +- Contact: robertsthomas@SF + +## Robert W [1] + +- Games: Secret Maryo Chronicles +- Contact: bowserjr@SF + ## Robert Wadley [1] - Games: Childsplay - Contact: robntina@SF +## Robert Ward [1] + +- Games: PCGen +- Contact: rward30@SF + +## Roberto [1] + +- Games: Krank +- Contact: rodpin@SF + ## Roberto Amorim [1] - Games: Haxima - Contact: wolfoxbr@SF +## Robin Marshall [1] + +- Games: Tremulous +- Contact: err_overflow@SF + +## Robin Vobruba [1] + +- Games: Spring +- Contact: ue0@SF + +## Robin Westberg [1] + +- Games: Spring +- Contact: fnordia@SF + +## Rodney Kinney [1] + +- Games: VASSAL +- Contact: rodneykinney@SF + ## Rodolfo Leibner [1] - Games: FlightGear - Contact: rleibner@SF +## Rodrigo Flores [1] + +- Games: WebChess +- Contact: roflo1@SF + +## Rodrigo Roman [1] + +- Games: Siege of Avalon : Open Source +- Contact: rrc2soft@SF + +## RodrigoEspiga [1] + +- Games: Pioneers +- Contact: rodrigoespiga@SF + ## Roger Koot [1] - Games: Goblin Hack @@ -5365,16 +11520,46 @@ - Games: FreeCol - Contact: verheyen@SF +## RoiEX [1] + +- Games: TripleA +- Contact: roiexlab@SF + +## Roland Schulz [1] + +- Games: PlaneShift +- Contact: rdschulz@SF + ## Roman Belov [1] - Games: Caph - Contact: rbelov@SF +## Roman Hodek [1] + +- Games: Pioneers +- Contact: rnhodek@SF + +## Roman M. Parparov [1] + +- Games: Wolfpack Empire +- Contact: romm@SF + +## Rome Reginelli [1] + +- Games: OpenRPG +- Contact: mduo13@SF + ## Ron Harwood [1] - Games: BlackNova Traders - Contact: harwoodr@SF +## Ron Koenderink [1] + +- Games: Wolfpack Empire +- Contact: koenderink@SF + ## Ron Schnell [1] - Games: Dunnet @@ -5418,6 +11603,16 @@ - Games: Crystal Space 3D SDK - Contact: dingobloo@SF +## Ross Morgan-Linial [1] + +- Games: ZAngband +- Contact: antimatter@SF + +## Roux-Serret Dominique [1] + +- Games: Ri-li +- Contact: bidule@SF + ## rower [1] - Games: Crossfire @@ -5428,6 +11623,21 @@ - Games: Chocolate Doom - Contact: rtc_marine@SF +## Rtsfan [1] + +- Games: OpenRTS +- Contact: rtsfan@SF + +## Rudolf Polzer [1] + +- Games: Nexuiz +- Contact: rpolzer@SF + +## Rudolfo Pinewood [1] + +- Games: UFO: Alien Invasion +- Contact: rudolfowood@SF + ## Rui César A. Pinho [1] - Games: DNT @@ -5437,6 +11647,11 @@ - Games: Key Runner +## rvlander [1] + +- Games: Speed Dreams +- Contact: rvlander@SF + ## Ryan Bates [1] - Games: Ruby-warrior @@ -5446,6 +11661,31 @@ - Games: Balder2D - Contact: tabernac@SF +## Ryan Deacon [1] + +- Games: WorldForge +- Contact: snowblind@SF + +## Ryan McConnell [1] + +- Games: MegaMek +- Contact: oscarmm@SF + +## Ryan Swart [1] + +- Games: Lips of Suna +- Contact: theancientgoat@SF + +## ryanismean [1] + +- Games: nXtank +- Contact: ryanismean@SF + +## Ryelle [1] + +- Games: PCGen +- Contact: ryelle@SF + ## rzr [1] - Games: Emilia Pinball @@ -5455,6 +11695,16 @@ - Games: TecnoballZ +## Rémi Coulom [1] + +- Games: "TORCS, The Open Racing Car Simulator" +- Contact: rcoulom@SF + +## Róbert Kisnémeth [1] + +- Games: Siege of Avalon : Open Source +- Contact: kichy@SF + ## s0600204 [1] - Games: 0 A.D. @@ -5465,15 +11715,35 @@ - Games: Dune Dynasty - Contact: s1w@SF +## s600 [1] + +- Games: Metal Mech +- Contact: s600@SF + ## Sade Kahra [1] - Games: Spice Trade +## Safety0ff [1] + +- Games: Warzone 2100 +- Contact: safety0ff@SF + +## Sal Ferro [1] + +- Games: WorldForge +- Contact: sferro@SF + ## Salathar [1] - Games: Crossfire - Contact: salathar@SF +## saltmine [1] + +- Games: Wolfpack Empire +- Contact: saltmine@SF + ## Sam Glasby [1] - Games: Haxima @@ -5484,6 +11754,21 @@ - Games: Chromium B.S.U., Eat The Whistle, Not Pacman, Powermanga - Contact: sammy@SF +## Sam Matthews [1] + +- Games: Nuvie +- Contact: smatthews@SF + +## Sam Stickland [1] + +- Games: PLIB +- Contact: sps196@SF + +## Sam Varner [1] + +- Games: Vamos +- Contact: snickadoo@SF + ## Sami Kyöstilä [1] - Games: Frets on Fire @@ -5498,11 +11783,26 @@ - Games: Argentum Online - Contact: grimmjaw@SF +## Samuel N. Hart [2] + +- Games: Tux of Math Command, Tux Paint +- Contact: criswell@SF + ## Samuel Pitoiset [1] - Games: FreedroidRPG - Contact: hakzsam@SF +## Sander Bisschops [1] + +- Games: Openfrag +- Contact: brainless01@SF + +## Sander van Grieken [1] + +- Games: UFO: Alien Invasion +- Contact: accumulator@SF + ## SAndreason [1] - Games: FlightGear @@ -5526,6 +11826,11 @@ - Games: Super Transball 2 +## Santiago Rodrigez Pozo [1] + +- Games: VASSAL +- Contact: santiagorp@SF + ## Santiago Sánchez [1] - Games: Crystal Space 3D SDK @@ -5560,11 +11865,36 @@ - Games: Freya Game Engine - Contact: pond@SF +## Saulo Gil [1] + +- Games: Nexuiz +- Contact: mand1nga@SF + +## Saurabh Gupta [1] + +- Games: Pizza Business +- Contact: sgups@SF + +## SavageX [1] + +- Games: Nexuiz +- Contact: maikmerten@SF + ## Scaalp [1] - Games: Freestars - Contact: scaalp@SF +## Scandum [1] + +- Games: TinTin++ +- Contact: scandum@SF + +## Sciuorus [1] + +- Games: M.A.R.S. +- Contact: sciuorus@SF + ## Scorbie [1] - Games: Golly @@ -5575,6 +11905,11 @@ - Games: Combat Simulator Project - Contact: wolverine69@SF +## Scott Jardine [1] + +- Games: Vega Strike +- Contact: zazenite@SF + ## Scott Johnson [1] - Games: Crystal Space 3D SDK @@ -5585,29 +11920,144 @@ - Games: Boson - Contact: nikoj@SF +## Scott McCreary [1] + +- Games: Tux Paint +- Contact: scottmc@SF + +## Scott Meyer [1] + +- Games: PCGen +- Contact: meyerscott@SF + +## Scott Neugroschl [1] + +- Games: Ularn +- Contact: sconeu@SF + +## Scott Tooker [1] + +- Games: VASSAL +- Contact: sctooker@SF + +## Scotty [1] + +- Games: Scrabble3D +- Contact: ocye@SF + +## scristopher [1] + +- Games: PainTown +- Contact: scristopher@SF + +## Sean Bridges [1] + +- Games: TripleA +- Contact: sgbridges@SF + +## Sean Burke [1] + +- Games: StepMania +- Contact: skburke@SF + +## Sean Ford [1] + +- Games: Openglad +- Contact: aglswapbuffers@SF + ## Sean Morrison [1] - Games: BZFlag - Contact: brlcad@SF +## Sean R. Lynch [1] + +- Games: Snowballz +- Contact: seanl@SF + +## Sean Young [1] + +- Games: openMSX +- Contact: seanyoung@SF + ## Sebastian [1] - Games: AssaultCube - Contact: aerkefiende@SF +## Sebastian Brocks [1] + +- Games: MegaMek +- Contact: beerockxs@SF + +## Sebastian Dorda [1] + +- Games: StressFreeZone +- Contact: hagish@SF + +## Sebastian Gingter [1] + +- Games: X-Force: Fight For Destiny +- Contact: sgingter@SF + +## Sebastian P. [1] + +- Games: Machinations +- Contact: over@SF + +## Sebastian Ude [1] + +- Games: PLIB +- Contact: ude@SF + +## Sebastien LEIX [1] + +- Games: T-Bots +- Contact: hs_dino@SF + +## secretlondon [1] + +- Games: Tux Paint +- Contact: secretlondon@SF + +## SeienAbunae [1] + +- Games: Nexuiz +- Contact: seienabunae@SF + ## Self_Destructo [1] - Games: Armagetron Advanced - Contact: self_destructo@SF +## Serdar Dere [1] + +- Games: Open Game Engine +- Contact: openclou_serdar@SF + +## Serg Rubtsov [1] + +- Games: Mpango +- Contact: leonserg@SF + +## Serge van den Boom [1] + +- Games: The Ur-Quan Masters +- Contact: meep-eep@SF + ## Sergey Cremez [1] - Games: Doom Legacy - Contact: judgecutor@SF -## Sergii Pylypenko [1] +## Sergey Popov [1] -- Games: Commander Genius +- Games: The Battle for Wesnoth +- Contact: loonycyborg@SF + +## Sergii Pylypenko [2] + +- Games: Commander Genius, UFO: Alien Invasion - Contact: pelya@SF ## Sergio Cambra [1] @@ -5615,21 +12065,66 @@ - Games: FreeCol - Contact: sergiocambra@SF +## Serhij Dubyk [1] + +- Games: Tux Paint +- Contact: dubyk@SF + +## Servant Corps [1] + +- Games: Liberal Crime Squad +- Contact: servantcorps@SF + ## Seth Berrier [1] - Games: Crystal Space 3D SDK - Contact: olliebrown@SF +## Seth Galbraith [1] + +- Games: Open Quartz +- Contact: serplord@SF + ## Seth Yastrov [1] - Games: Crystal Space 3D SDK - Contact: syastrov@SF +## seth-- [1] + +- Games: Liberal Crime Squad +- Contact: seth-dash-dash@SF + ## setrodox [1] - Games: GUSANOS - Contact: setrodox@SF +## Shadallark [1] + +- Games: Stars! Nova +- Contact: shadallark@SF + +## shadowsnipes [1] + +- Games: Secret Maryo Chronicles +- Contact: shadowsnipes@SF + +## Shagendo [1] + +- Games: Visual Pinball +- Contact: shagendo@SF + +## Shane [1] + +- Games: MegaMek +- Contact: coelocanth@SF + +## Shane D. [1] + +- Games: Wargamer +- Contact: banetahtoh@SF + ## Shard [1] - Games: Anagramarama @@ -5638,6 +12133,11 @@ - Games: Snelps +## Shawn Krisman [1] + +- Games: Trinity Reign +- Contact: telaviv@SF + ## Shawn Overcash [1] - Games: Decker @@ -5648,11 +12148,26 @@ - Games: Omega-rpg - Contact: wsxyz@SF +## Shelley [1] + +- Games: PCGen +- Contact: takenote61@SF + +## Shin-ichi TOYAMA [1] + +- Games: Tux Paint +- Contact: dolphin6k@SF + ## shirishag75 [1] - Games: Hale - Contact: shirishag75@SF +## Shivawn [1] + +- Games: WorldForge +- Contact: chord@SF + ## shodan123 [1] - Games: Cat Mother Dead Justice @@ -5686,6 +12201,11 @@ - Games: OpenAlchemist +## Silverain [1] + +- Games: Vega Strike +- Contact: silverain@SF + ## SilverNexus [1] - Games: Crossfire @@ -5696,9 +12216,24 @@ - Games: Daimonin - Contact: sur3@SF -## Simon Howard [1] +## Simon de la Court [1] -- Games: Chocolate Doom +- Games: Openfrag +- Contact: zmn@SF + +## Simon G [1] + +- Games: Openfrag +- Contact: sluzky@SF + +## Simon Goodall [1] + +- Games: WorldForge +- Contact: sgoodall@SF + +## Simon Howard [2] + +- Games: Chocolate Doom, SDL Sopwith - Contact: fraggle@SF ## Simon Laszlo [1] @@ -5710,6 +12245,11 @@ - Games: Kobo Deluxe +## Simon Ruderich [1] + +- Games: UltraStar Deluxe +- Contact: rudi_s@SF + ## Simon Schneegans [1] - Games: M.A.R.S. @@ -5722,11 +12262,26 @@ - Games: GNU Chess +## simon wood [1] + +- Games: Speed Dreams +- Contact: mungewell@SF + +## Simone [1] + +- Games: Open Tibia +- Contact: otserv_simone@SF + ## Simone Cociancich [1] - Games: Fish Fillets - Next Generation - Contact: coch@SF +## Sindel [1] + +- Games: Outer Space +- Contact: malxe@SF + ## sireus [1] - Games: AssaultCube @@ -5741,11 +12296,26 @@ - Games: Project Alexandria -## sjtsp2008 [1] +## sjFreak [1] -- Games: Arianne / Marauroa +- Games: Speed Dreams +- Contact: jjsca@SF + +## sjtsp2008 [2] + +- Games: Arianne / Marauroa, Stendhal - Contact: sjtsp2008@SF +## Skylar Hiebert [1] + +- Games: PCGen +- Contact: candavespin@SF + +## Skyone [1] + +- Games: StepMania +- Contact: skyone@SF + ## Slava Anishenko [1] - Games: Krank @@ -5755,30 +12325,90 @@ - Games: FlightGear - Contact: slawekmikula@SF +## slightlytwisted [1] + +- Games: T^3 +- Contact: slightlytwisted@SF + +## slowDan [1] + +- Games: VDrift +- Contact: slowdan@SF + ## smacky [1] - Games: Daimonin - Contact: smacky@SF +## smarquespt [1] + +- Games: Tux Paint +- Contact: smarquespt@SF + +## smcgill [1] + +- Games: Open Yahtzee +- Contact: smcgill@SF + ## smelenchuk [1] - Games: FreeCol - Contact: smelenchuk@SF +## Smi7h1sH3r3 [1] + +- Games: Vega Strike +- Contact: smi7h1sh3r3808@SF + +## Smi7h1sH3r3 808 [1] + +- Games: Vega Strike +- Contact: smith26@SF + +## smyg [1] + +- Games: Open Tibia +- Contact: smygflik@SF + ## Soenke Hahn [1] - Games: Nikki and the Robots +## sojo [1] + +- Games: Simutrans +- Contact: sojo96@SF + +## Sokhem [1] + +- Games: Tux Paint +- Contact: sokhem@SF + +## Solbu [1] + +- Games: UFO: Alien Invasion +- Contact: solbu@SF + ## Solra Bizna [1] - Games: Aleph One - Contact: solrabizna@SF -## soniccuz [1] +## Song Huang [1] -- Games: Arianne / Marauroa +- Games: Tux Paint +- Contact: songhuang@SF + +## soniccuz [2] + +- Games: Arianne / Marauroa, Stendhal - Contact: soniccuz@SF +## Sorcuring [1] + +- Games: Open Tibia +- Contact: sorcuring@SF + ## Sotek [1] - Games: Freestars @@ -5789,6 +12419,41 @@ - Games: Crystal Space 3D SDK - Contact: soumitra1993@SF +## Soup [1] + +- Games: Tremulous +- Contact: whosoup@SF + +## SpeckFleck [1] + +- Games: Slingshot +- Contact: speckfleck@SF + +## spiritplumber [1] + +- Games: Vega Strike +- Contact: spiritplumber@SF + +## spom_spom [1] + +- Games: Open Jumpgate +- Contact: spom_spom@SF + +## squid [1] + +- Games: TripleA +- Contact: squidbait@SF + +## stan [1] + +- Games: VDrift +- Contact: stan_distortion@SF + +## Stas Pirogov [1] + +- Games: Netrek +- Contact: keyos@SF + ## Stas Verberkt [1] - Games: KSnakeDuel @@ -5798,6 +12463,16 @@ - Games: Childsplay - Contact: stas_zytkiewicz@SF +## Stavros [1] + +- Games: Sudokuki +- Contact: smavrakis@SF + +## Steaker [1] + +- Games: Space Faring +- Contact: ribeye@SF + ## Steel Style [1] - Games: Crystal Space 3D SDK @@ -5813,38 +12488,108 @@ - Games: FreedroidRPG - Contact: stedevil@SF +## stefan [1] + +- Games: Red Eclipse +- Contact: stefanau@SF + ## Stefan Aldinger [1] - Games: Fictional Air Combat +## Stefan Buschmann [1] + +- Games: PixelLight +- Contact: sbusch42@SF + ## Stefan Frank [1] - Games: FlightGear - Contact: sfrsfr@SF +## Stefan Frey [1] + +- Games: Rails: an 18xx game system +- Contact: stefanfrey@SF + ## Stefan Huchler [1] - Games: Canta +## Stefan Johansson [1] + +- Games: Spring +- Contact: isokron@SF + ## Stefan Kangas [1] - Games: FreedroidRPG - Contact: skangas@SF +## Stefan L. [1] + +- Games: UltraStar Deluxe +- Contact: basisbit@SF + +## Stefan Maier [1] + +- Games: Open Tibia +- Contact: tliffrag@SF + ## Stefan Majewsky [1] - Games: Palapeli +## Stefan Radermacher [1] + +- Games: PCGen +- Contact: zaister@SF + +## Stefan Stapelberg [1] + +- Games: Vega Strike +- Contact: stefanst@SF + +## Stefan Stiasny [1] + +- Games: XBlast +- Contact: esszeh@SF + ## Stefan van der Wel [1] - Games: Dune Legacy - Contact: svan058@SF +## Stefanos Armstrong [1] + +- Games: OpenRPG +- Contact: speedlane@SF + ## Steffen Pohle [1] - Games: BomberClone - Contact: stpohle@SF +## Stephan Lemnitzer [1] + +- Games: PixelLight +- Contact: uilleam1305@SF + +## Stephan Wezel [1] + +- Games: PixelLight +- Contact: thewolfwillcome@SF + +## Stephane Denis [1] + +- Games: No Gravity +- Contact: realtech@SF + +## Stephen [1] + +- Games: SuperTuxKart +- Contact: stephenjust@SF + ## Stephen Branley [1] - Games: Help Hannah's Horse @@ -5861,21 +12606,31 @@ - Games: FreeCol - Contact: sechavia@SF +## Stephen James Hurd [1] + +- Games: The Clans +- Contact: deuce@SF + ## Stephen Ostermiller [1] - Games: Ladder - Contact: deadsea@SF - Home: https://ostermiller.org/ +## Stephen Swaney [1] + +- Games: Warzone 2100 +- Contact: stivosaurus@SF + ## Stephen Sweeney [3] - Games: Blob Wars Episode 2 : Blob And Conquer, Blobwars: Metal Blob Solid, Project: Starfighter - Contact: stephenjsweeney@SF - Organization: Parallel Realities -## Stephen Thorne [1] +## Stephen Thorne [2] -- Games: Pathological +- Games: Netrek, Pathological - Contact: jerub@SF ## stepik777 [1] @@ -5883,28 +12638,69 @@ - Games: Crystal Space 3D SDK - Contact: stepik777@SF -## Steve Baker [1] +## Steve [1] -- Games: TuxKart +- Games: StepMania +- Contact: stevedaman624@SF -## Steve Hawkins [1] +## Steve Baker [2] -- Games: Domination +- Games: PLIB, TuxKart +- Contact: sjbaker@SF + +## Steve Checkoway [1] + +- Games: StepMania +- Contact: stevecheckoway@SF + +## Steve Hawkins [2] + +- Games: Domination, MegaMek - Contact: hawkprime@SF ## Steve Jordi [1] - Games: Blinken +## Steve Karg [1] + +- Games: Tux Paint +- Contact: skarg@SF + +## Steve Langasek [1] + +- Games: Pioneers +- Contact: vorlon@SF + +## Steve Saunders [1] + +- Games: xu4 +- Contact: steven-j-s@SF + +## Steve Sheldon [1] + +- Games: Netrek +- Contact: sheldon@SF + +## Steve Streeting [1] + +- Games: OGRE +- Contact: sinbad@SF + ## Steve-the-ripper [1] - Games: AutoREALM - Contact: stevetheripper@SF -## Steven [1] +## Steven [4] -- Games: Hammer of Thyrion -- Contact: stevenaaus@SF +- Games: Hammer of Thyrion, HHexen, QuakeSpasm, Siege of Avalon : Open Source +- Contact: pudapon@SF, stevenaaus@SF + +## Steven 'lazalong' Gay [1] + +- Games: Open Game Engine +- Contact: lazaruslong@SF ## Steven A. Martin [1] @@ -5916,9 +12712,14 @@ - Games: Extreme Tux Racer - Contact: botsnlinux@SF -## Steven Green [1] +## Steven Fuerst [1] -- Games: Greenius' Civil War +- Games: ZAngband +- Contact: sfuerst@SF + +## Steven Green [2] + +- Games: Greenius' Civil War, Wargamer - Contact: greenius@SF ## Steven Hoefel [1] @@ -5926,6 +12727,11 @@ - Games: FreeTrain - Contact: stevenhoefel@SF +## Steven Jay Cohen [1] + +- Games: xu4 +- Contact: sagefire@SF + ## Steven McGranahan [1] - Games: Doom Legacy @@ -5936,11 +12742,21 @@ - Games: BZFlag - Contact: catay@SF +## Steven Towle [1] + +- Games: StepMania +- Contact: kumubou@SF + ## Steven Webb [1] - Games: GalaxyNG - Contact: scum-o@SF +## Steven West [1] + +- Games: PCGen +- Contact: redwolf3@SF + ## Stewart Adcock [1] - Games: Freeciv Alpha Centauri project @@ -5951,9 +12767,14 @@ - Games: FreeCol - Contact: stiangre@SF -## Storyteller [1] +## stopiccot [1] -- Games: Arianne / Marauroa +- Games: VCMI +- Contact: stopiccot@SF + +## Storyteller [2] + +- Games: Arianne / Marauroa, Stendhal - Contact: story-teller@SF ## Stuart [1] @@ -5981,14 +12802,19 @@ - Contact: stephenk@GH - Home: https://stephank.nl/ +## Stéphane Vaxelaire [1] + +- Games: Vega Strike +- Contact: surfdargent@SF + ## sueastside [1] - Games: Crystal Space 3D SDK - Contact: sueastside@SF -## svdijk [1] +## svdijk [2] -- Games: Hammer of Thyrion +- Games: Hammer of Thyrion, QuakeSpasm - Contact: svdijk@SF ## Sven Eden [1] @@ -5996,11 +12822,21 @@ - Games: Atomic Tanks - Contact: yamakuzure@SF +## Sven Matner [1] + +- Games: Open Tibia +- Contact: shivoc@SF + ## Sven Rech [1] - Games: Blobby Volley 2 - Contact: svenrech@SF +## Sven Thoennissen [1] + +- Games: Krank +- Contact: svenstorm@SF + ## syd [1] - Games: FlightGear @@ -6018,30 +12854,72 @@ ## Sylvain Vedrenne [1] - Games: Sudokuki +- Contact: svedrenne@SF + +## syntheticsw [1] + +- Games: Tux Paint +- Contact: syntheticsw@SF ## Syonax [1] - Games: Fish Fillets - Next Generation - Contact: syonax@SF +## syox1 [1] + +- Games: Skrupel - Tribute Compilation +- Contact: syox1@SF + +## Szymon Weihs [1] + +- Games: Open Surge +- Contact: szymonw@SF + ## Sébastien Angibaud [1] - Games: Plee the Bear +- Contact: s_angi@SF ## Sébastien Jean Robert Doeraene [1] - Games: FunLabyrinthe - Contact: sjrd@SF +## Taharqa [1] + +- Games: MegaMek +- Contact: bombaijin@SF + +## Taj Morton [1] + +- Games: Lincity +- Contact: tajmorton@SF + ## Takayuki KUSANO [1] - Games: Cannon Smash - Contact: mickn@SF +## Talamon70 [1] + +- Games: MicroWar 2.0 +- Contact: talamon70@SF + +## Taldor [1] + +- Games: Radakan +- Contact: taldor@SF + ## Tamer Karatekin [1] - Games: AntiChess +## Tamás Fehérvári [1] + +- Games: UFO: Alien Invasion +- Contact: geever@SF + ## Tangram [1] - Games: Mr. Rescue @@ -6051,15 +12929,75 @@ - Games: Dungeon Craft - Contact: tarlanon@SF +## Tarmo Toikkanen [1] + +- Games: Tux Paint +- Contact: tarmo@SF + ## tchize [1] - Games: Crossfire - Contact: tchize@SF +## tdev [1] + +- Games: Rigs of Rods +- Contact: rorthomas@SF + +## Team Terradactyl [1] + +- Games: KQ Lives +- Contact: teamterradactyl@SF + +## Ted Berg [1] + +- Games: OpenRPG +- Contact: tedberg@SF + +## Teemu Haapoja [1] + +- Games: VDrift +- Contact: habalux@SF + +## Teemu J. Takanen [1] + +- Games: Planetary Hoppers +- Contact: tjt@SF + +## tenderflake [1] + +- Games: XBlast +- Contact: tenderflake@SF + +## tenk [1] + +- Games: Tux Football +- Contact: tenk@SF + +## Terje Bergström [1] + +- Games: Tux Paint +- Contact: terjeb@SF + ## TerranovaTeam [1] - Games: Colobot: Gold Edition +## Terry 'Mongoose' Hendrix II [1] + +- Games: OpenRaider +- Contact: mongoose@SF + +## Tess Snider [1] + +- Games: WorldForge +- Contact: malkin@SF + +## teZeriusz [1] + +- Games: VCMI +- Contact: tezeriusz@SF + ## th3flyboy [1] - Games: Combat Simulator Project @@ -6070,6 +13008,26 @@ - Games: BlackNova Traders - Contact: thekabal@SF +## The Transporter [1] + +- Games: Simutrans +- Contact: thetransporter@SF + +## The_Cook [1] + +- Games: Theme Park Builder 3D CAD +- Contact: the_cook@SF + +## TheEnd [1] + +- Games: OpenBlox +- Contact: mikejavier@SF + +## theheadkase [1] + +- Games: PCGen +- Contact: theheadkase@SF + ## TheMightyDude [1] - Games: BlackNova Traders @@ -6084,11 +13042,21 @@ - Games: Domination - Contact: allardyce@SF +## TheSHEEEP [1] + +- Games: OGRE +- Contact: thesheeep@SF + ## Thierry Bousquet [1] - Games: DarkCity - Contact: akira33@SF +## Thierry MICHEL [1] + +- Games: Wargamer +- Contact: thierrym@SF + ## Thierry Van Elsuwe [1] - Games: Doom Legacy @@ -6113,11 +13081,31 @@ - Games: FlightGear - Contact: fgradi@SF +## Thomas Baleno [1] + +- Games: OpenRPG +- Contact: tdb30_@SF + ## Thomas Capricelli [1] - Games: Boson - Contact: orzel@SF +## Thomas Clegg [1] + +- Games: PCGen +- Contact: arknight@SF + +## Thomas Cooper [1] + +- Games: PCGen +- Contact: lordoxide@SF + +## Thomas Debesse [1] + +- Games: Unvanquished +- Contact: illwieckz@SF + ## Thomas Drexl [1] - Games: GL-117 @@ -6132,6 +13120,16 @@ - Games: Atomic Tanks +## Thomas Klausner [1] + +- Games: Tux Paint +- Contact: thomasklausner@SF + +## Thomas Mühsam [1] + +- Games: PixelLight +- Contact: lim4@SF + ## Thomas Odaker [1] - Games: GalaxyNG @@ -6160,14 +13158,19 @@ - Games: Der Clou! - Contact: lordskaven@SF +## Thomaz Yuji Babá [1] + +- Games: Open Tibia +- Contact: otserv_nostra@SF + ## Thorsten Jordan [1] - Games: Danger from the Deep - Contact: thjordan@SF -## Thorsten Kohnhorst [1] +## Thorsten Kohnhorst [2] -- Games: Krank +- Games: kiki the nano bot, Krank - Contact: monsterkodi@SF ## Thorsten Renk [1] @@ -6180,25 +13183,60 @@ - Games: FlightGear - Contact: thbr@SF -## tigertoes [1] +## Thunder Doom [1] -- Games: Arianne / Marauroa +- Games: World of Phaos +- Contact: thunder_doom@SF + +## tigertoes [2] + +- Games: Arianne / Marauroa, Stendhal - Contact: tigertoes@SF -## Tim Douglas [1] +## Tim 'mithro' Ansell [1] -- Games: GPL Arcade Volleyball +- Games: Thousand Parsec +- Contact: mithro@SF + +## Tim Angus [1] + +- Games: Tremulous +- Contact: tangus@SF + +## Tim Byrne [1] + +- Games: VASSAL +- Contact: t1mbyrne@SF + +## Tim Carne [1] + +- Games: Wargamer +- Contact: quartermaster@SF + +## Tim Douglas [2] + +- Games: GPL Arcade Volleyball, Haxima - Contact: timdoug@SF ## Tim Edmonds [1] - Games: Numpty Physics +## Tim Hochberg [1] + +- Games: Psyco +- Contact: tim-hochberg@SF + ## Tim Moore [1] - Games: FlightGear - Contact: tbmoore@SF +## Tim Nordell [1] + +- Games: The Clans +- Contact: invisi@SF + ## Tim Peeler [1] - Games: GLtron @@ -6219,6 +13257,16 @@ - Games: Golly - Contact: tim_hutton@SF +## Tim_McCarron [1] + +- Games: VASSAL +- Contact: tim_mccarron@SF + +## TimD [1] + +- Games: Stars! Nova +- Contact: timdetering@SF + ## timfelgentreff [1] - Games: Attal: Lords of doom @@ -6238,16 +13286,66 @@ - Games: jClassicRPG +## Timothy [1] + +- Games: Simutrans +- Contact: tb1985@SF + ## Timothy Chung [1] - Games: phpRPG - Contact: ttschung@SF +## Timothy Furlong [1] + +- Games: VDrift +- Contact: timothyfurlong@SF + +## Timothy Hale [1] + +- Games: Transfusion +- Contact: timhale@SF + +## titi(ger) [1] + +- Games: MegaGlest +- Contact: titi_ger@SF + +## TKwisl [1] + +- Games: Manic Digger +- Contact: tkwisl@SF + +## Tobi Vollebregt [1] + +- Games: Spring +- Contact: tobi_v@SF + +## Tobias Schröfel [1] + +- Games: Unknown Horizons +- Contact: tschroefel@SF + +## Tobias Gunkel [1] + +- Games: UltraStar Deluxe +- Contact: tobigun@SF + ## Tobias Theuer [1] - Games: Betrayer's Moon Tactics - Contact: theto@SF +## Tobin Davis [1] + +- Games: Open RPG Maker +- Contact: gruemaster@SF + +## tobse [1] + +- Games: XSwing Plus +- Contact: tobsefritz@SF + ## Toby A. Inkster [1] - Games: Anagramarama @@ -6257,11 +13355,26 @@ - Games: AssaultCube - Contact: toca_@SF +## Tod Milam [1] + +- Games: PCGen +- Contact: tmilam@SF + +## Todd Faris [1] + +- Games: OpenRPG +- Contact: snowdog_@SF + ## Todd Kirby [1] - Games: GLtron - Contact: tkirby@SF +## Todd Lang [1] + +- Games: Race Into Space +- Contact: kiyote@SF + ## Todd Mitchell [1] - Games: Crossfire @@ -6281,6 +13394,11 @@ - Games: Hex-a-hop +## Tom Breton [1] + +- Games: Omega-rpg +- Contact: tehom@SF + ## Tom Deprez [1] - Games: AutoREALM @@ -6291,6 +13409,41 @@ - Games: Civil - Contact: knio@SF +## Tom Jackson [1] + +- Games: StepMania +- Contact: ddrcoder@SF + +## Tom Parker [1] + +- Games: PCGen +- Contact: thpr@SF + +## Tom Pittlik [1] + +- Games: Machinations +- Contact: cluver4@SF + +## Tom Redenbach [1] + +- Games: Visual Pinball +- Contact: snail_gary@SF + +## Tom Repetti [1] + +- Games: VASSAL +- Contact: tqrtuomo@SF + +## Tom Reynolds [1] + +- Games: MegaGlest +- Contact: tomreyn@SF + +## Tom Richards [1] + +- Games: Tux Paint +- Contact: orby@SF + ## Tom Rune Flo [1] - Games: CAVEZ of PHEAR @@ -6300,16 +13453,31 @@ - Games: Bygfoot - Contact: tstellar@SF +## Tom Zielinski [1] + +- Games: VCMI +- Contact: djwarmonger@SF + ## Tomas Kazmar [1] - Games: FreeCol - Contact: xikoxeko@SF +## Tomas Padevet [1] + +- Games: Simutrans +- Contact: pa9tomm@SF + ## Tomas Rokicki [1] - Games: Golly - Contact: rokicki@SF +## Tomires [1] + +- Games: Open Surge +- Contact: tomires@SF + ## Tommaso Schiavinotto [1] - Games: GPL Arcade Volleyball @@ -6325,15 +13493,35 @@ - Games: Freestars - Contact: tomt64@SF +## tomtt [1] + +- Games: PlaneShift +- Contact: tomtt@SF + ## Toni Aittoniemi [1] - Games: Cat Mother Dead Justice +## Tony Granberg [1] + +- Games: Pizza Business +- Contact: tsarkon@SF + ## Tony Oakden [1] - Games: Go Ollie! - Organization: Charlie Dog Games +## topi ylinen [1] + +- Games: ZAngband +- Contact: topiy@SF + +## Torbjřrn Lćdre [1] + +- Games: WorldForge +- Contact: mezmo@SF + ## Torchwood [1] - Games: Daimonin @@ -6349,40 +13537,125 @@ - Games: Advanced Strategic Command - Contact: tmaekler@SF +## Torsten Spindler [1] + +- Games: VASSAL +- Contact: tspindler@SF + +## totycro uhyi [1] + +- Games: Unknown Horizons +- Contact: totycro@SF + ## touko [1] - Games: Crystal Space 3D SDK - Contact: nes1209@SF +## toxie [1] + +- Games: Visual Pinball +- Contact: toxieainc@SF + +## Tpimp [1] + +- Games: Stargus +- Contact: tpimp420@SF + +## Tracy Ward [1] + +- Games: StepMania +- Contact: coderjoe@SF + ## Translation updater bot [1] - Games: FreeCol - Contact: translatewiki@SF +## trapdoor [1] + +- Games: Radakan +- Contact: the_enemy@SF + +## Travis Baldree [2] + +- Games: Privateer - Gemini Gold, Vega Strike +- Contact: tbaldree@SF + +## Travis Casey [1] + +- Games: OpenRPG +- Contact: efindel@SF + +## Travis Harris [1] + +- Games: PlaneShift +- Contact: landson@SF + +## Trent Piepho [1] + +- Games: Netrek +- Contact: xyzzy@SF + ## Trent Waddington [1] - Games: FreeSynd - Contact: quantumg@SF +## Trenton Schulz [1] + +- Games: xu4 +- Contact: twschulz@SF + +## Trevor Cordes [1] + +- Games: TROPHY +- Contact: tcordes@SF + ## Trevor Primmett [1] - Games: Doom Legacy - Contact: iori_@SF +## Trevor Standley [1] + +- Games: VCMI +- Contact: tstandley@SF + ## tribunal [1] - Games: Attal: Lords of doom - Contact: tribunal2000@SF +## Tristan Cragnolini [1] + +- Games: PlaneShift +- Contact: kougaro@SF + +## Tristan Heaven [1] + +- Games: Secret Maryo Chronicles +- Contact: tristanheaven@SF + ## Troels Kofoed Jacobsen [1] - Games: Qonk +## Tron [1] + +- Games: UFO: Alien Invasion +- Contact: dertron@SF + ## Trond Varslot [1] - Games: Crystal Space 3D SDK - Contact: varslot@SF +## Tuathanach [1] + +- Games: PlaneShift +- Contact: tuathanach@SF + ## tucho fernandez [1] - Games: Glest @@ -6393,6 +13666,11 @@ - Games: BZFlag - Contact: atupone@SF +## TurfIt [1] + +- Games: Simutrans +- Contact: turfit@SF + ## turkeystuffer [1] - Games: Hammer of Thyrion @@ -6413,21 +13691,41 @@ - Games: Iter Vehemens ad Necem - Contact: kahvi@SF -## Tyler [1] +## tvStatic [1] -- Games: Biogenesis -- Contact: tyguy9@SF +- Games: StepMania +- Contact: tvstatic@SF + +## Tyler [2] + +- Games: Biogenesis, Thousand Parsec +- Contact: tyguy9@SF, xdotx@SF + +## Török Gábor [1] + +- Games: Tux Paint +- Contact: lophi@SF ## ubr47k [1] - Games: Atomic Tanks - Contact: ubr47k@SF +## UFOAI [1] + +- Games: UFO: Alien Invasion +- Contact: ufoai@SF + ## Ulf Lorenz [1] - Games: FreeLords - Contact: ulflor@SF +## ulukai [1] + +- Games: Red Eclipse +- Contact: ulukai5@SF + ## unclouded [1] - Games: FreeCol @@ -6438,11 +13736,21 @@ - Games: Daimonin - Contact: unislash@SF -## UPi [1] +## Unitraxx [1] -- Games: OpenMortal +- Games: SuperTuxKart +- Contact: unitraxx@SF + +## UPi [2] + +- Games: OpenMortal, Pang Zero - Contact: upi@SF +## urgru [1] + +- Games: MegaMek +- Contact: urgru@SF + ## Uwe Hermann [1] - Games: Civil @@ -6463,31 +13771,76 @@ - Games: Advanced Strategic Command - Contact: valuial@GH -## Vambola Kotkas [1] +## Vambola Kotkas [2] -- Games: Freestars +- Games: Freestars, S.C.O.U.R.G.E. - Contact: kotk@SF +## Vanessa Lee [1] + +- Games: Vega Strike +- Contact: sandralavixen@SF + ## Vasco Alexandre da Silva Costa [1] - Games: Freeciv - Contact: vasco_costa@SF +## vdl [1] + +- Games: StepMania +- Contact: vdlgnome@SF + +## Vegar [1] + +- Games: VDrift +- Contact: vegars@SF + +## Velktron [1] + +- Games: Mocha Doom +- Contact: velktron@SF + +## Venalan [1] + +- Games: PlaneShift +- Contact: venalan@SF + ## Verrier Cyrille [1] - Games: Attal: Lords of doom - Contact: denver@SF +## vexed [1] + +- Games: Warzone 2100 +- Contact: vexed-1@SF + +## Vexorian [1] + +- Games: Xye +- Contact: vexorian@SF + ## Vezzra [1] - Games: FreeOrion - Contact: vezzra@SF +## Vherid Direhv [1] + +- Games: Liberal Crime Squad +- Contact: vherid@SF + ## vi [1] - Games: Combat Simulator Project - Contact: v-i@SF +## Viacheslav Zipunov [1] + +- Games: MegaMek +- Contact: zipp32@SF + ## Vianney Lecroart [1] - Games: Mtp Target @@ -6496,6 +13849,21 @@ - Games: Xye +## Victor L. Harpley [1] + +- Games: Wargamer +- Contact: vlharpley@SF + +## Victor Sergienko [1] + +- Games: LGeneral +- Contact: singalen@SF + +## Viech [1] + +- Games: Unvanquished +- Contact: unvviech@SF + ## viewizard [1] - Games: AstroMenace @@ -6506,25 +13874,75 @@ - Games: Doom Legacy - Contact: smite-meister@SF +## Vince Schiavoni [1] + +- Games: PCGen +- Contact: hlingler@SF + +## Vincent C.H. Ma [1] + +- Games: Tux Racer +- Contact: vchma@SF + +## Vincent FIACK [1] + +- Games: S.C.O.U.R.G.E. +- Contact: vfiack@SF + +## Vincent Hatakeyama [1] + +- Games: PCGen +- Contact: spraynpray@SF + ## Vincent Knecht [2] - Games: Crystal Space 3D SDK, Ecksdee - Contact: vknecht@SF +## Vincenzo Greco [1] + +- Games: Open Game Engine +- Contact: firecool@SF + ## VinDuv [1] - Games: Slime Volley +## vinod [1] + +- Games: Mpango +- Contact: vinodkumarkona@SF + +## Visvardis Marios [1] + +- Games: MUSoSu +- Contact: marios_v@SF + +## Vitor [1] + +- Games: Open Tibia +- Contact: otserv_vitor@SF + ## ViviCoder [1] - Games: DNT - Contact: vivicoder@SF +## Vladimir Anisimov [1] + +- Games: Wargamer +- Contact: vovochka@SF + ## Vladimir Jimenez [1] - Games: BZFlag - Contact: allejo@SF +## Vladimir Meister [1] + +- Games: Outer Space +- Contact: mirancz@SF + ## Vladimir Menshakov [1] - Games: Battle Tanks @@ -6535,31 +13953,86 @@ - Games: Battle Tanks - Contact: private_face@SF +## Vladimír Slávik [1] + +- Games: Simutrans +- Contact: vs_cz@SF + +## Vladislav Kurz [1] + +- Games: Simutrans +- Contact: vladki@SF + +## Volker Diels-Grabsch [1] + +- Games: Pushover +- Contact: vog@SF + +## Voller [1] + +- Games: "Mars, Land of No Mercy" +- Contact: voller@SF + ## vtchill [1] - Games: FIFE - Contact: vtchill@SF +## vultraz [1] + +- Games: The Battle for Wesnoth +- Contact: vultraz@SF + ## vymdiesel david [1] - Games: HolySpirit - Contact: vymdiesel@SF +## Václav Macůrek [1] + +- Games: Simutrans +- Contact: vaclavmacurek@SF + ## Václav Müller [1] - Games: Daimonin - Contact: demoniopuerto@SF +## W!CK3D [1] + +- Games: Red Eclipse +- Contact: jrwicked@SF + +## W. Robert Reed III [1] + +- Games: PCGen +- Contact: evilmynex@SF, wrobertreediii@SF + ## Walter van Niftrik [1] - Games: DreamChess - Contact: waltervn@SF +## Wansti [1] + +- Games: Snowballz +- Contact: wansti@SF + +## Warren Cheung [1] + +- Games: SLASH'EM +- Contact: wacko@SF + ## Warren Schudy [1] - Games: Grobots - Contact: wschudy@SF +## Warwick Allison [1] + +- Games: NetHack +- Contact: warwick@SF + ## Wayne Bragg [1] - Games: FlightGear @@ -6575,14 +14048,19 @@ - Games: FLTrator - Contact: wcout@SF +## weaselchen [1] + +- Games: Skrupel - Tribute Compilation +- Contact: weaselchen@SF + ## weedfreak [1] - Games: Hale - Contact: weedfreak@SF -## weltall [1] +## weltall [2] -- Games: Crystal Space 3D SDK +- Games: Crystal Space 3D SDK, PlaneShift - Contact: weltall2@SF ## Wes Ellis [1] @@ -6598,11 +14076,31 @@ - Games: Augustus +## Whiteshark [1] + +- Games: UltraStar Deluxe +- Contact: whiteshark0@SF + +## Will Glynn [1] + +- Games: Race Into Space +- Contact: delta407@SF + ## Will Sommer [1] - Games: Decker - Contact: omelet4th@SF +## Willem Jan Palenstijn [4] + +- Games: Labyrinth of Worlds, Nuvie, Pentagram, Underworld Adventures +- Contact: wjpalenstijn@SF + +## Willem Siemelink [1] + +- Games: ZAngband +- Contact: siemelink@SF + ## William Allen Simpson [1] - Games: Freeciv @@ -6612,69 +14110,240 @@ - Games: Colossal Cave Adventure +## William Heymann [1] + +- Games: WorldForge +- Contact: kosh@SF + +## William Kendrick [2] + +- Games: Tux of Math Command, Tux Paint +- Contact: wkendrick@SF + +## William M. Grim [1] + +- Games: Vega Strike +- Contact: wgrim@SF + ## William R. Buckley [1] - Games: Golly - Contact: hyperhacker@SF +## William Sherwin [1] + +- Games: Race Into Space +- Contact: wsherwin@SF + ## William Tanksley [1] - Games: Omega-rpg - Contact: wtanksle@SF +## William W. Ferrell [1] + +- Games: PyKaraoke +- Contact: willfe@SF + +## William Weilep [1] + +- Games: Transfusion +- Contact: willistf@SF + ## Windiantoro [1] - Games: FreeCol - Contact: toro199@SF +## Winghawk [1] + +- Games: Open Tibia +- Contact: winghawk@SF + +## Winter Knight [1] + +- Games: KQ Lives +- Contact: wk2@SF + ## wintertime [1] - Games: FreeCol - Contact: wintertime@SF +## Wirianto Djunaidi [1] + +- Games: MegaMek +- Contact: wdjunai@SF + +## Wisconsin [1] + +- Games: TripleA +- Contact: wisconsin777@SF + +## Wizards Hat [1] + +- Games: Visual Pinball +- Contact: wizards-hat@SF + +## wlk [1] + +- Games: VASSAL +- Contact: wlk0@SF + +## Wograldin [1] + +- Games: Wograld +- Contact: gnurpgs@SF + +## Wojtek Dabrowski [1] + +- Games: Pushover +- Contact: grayfalcon@SF + +## Wolfgang Morawetz [1] + +- Games: Tenes Empanadas Graciela +- Contact: wfx@SF + +## Wolfman [1] + +- Games: StepMania +- Contact: wolfman2000@SF + +## Wolfram Kuss [1] + +- Games: PLIB +- Contact: wolfram_kuss@SF + ## Wolfram Wagner [1] - Games: FlightGear - Contact: wwagner@SF +## Wombbat [1] + +- Games: Radakan +- Contact: wombbat@SF + +## Wouter Vermaelen [1] + +- Games: openMSX +- Contact: m9710797@SF + ## wrtlprnft [1] - Games: Armagetron Advanced - Contact: wrtlprnft@SF +## www2 [1] + +- Games: Vega Strike +- Contact: www_2@SF + +## wzdev-ci [1] + +- Games: Warzone 2100 +- Contact: wzdev-ci@SF + +## x fennec [1] + +- Games: ManiaDrive +- Contact: xfennec@SF + +## Xandru Armesto [1] + +- Games: Tux Paint +- Contact: xandruarmesto@SF + ## XBlast development team [1] - Games: XBlast -## xDraconian [1] +## xDraconian [2] -- Games: FlightGear +- Games: FlightGear, Speed Dreams - Contact: scttgs0@SF +## Xenon54z [1] + +- Games: MegaMek +- Contact: elementx54@SF + ## Xenux [1] - Games: FreedroidRPG - Contact: xenux@SF -## xfennec [1] +## xmorph [1] -- Games: ManiaDrive +- Games: OGS Mahjong +- Contact: xmorph@SF + +## xororand [1] + +- Games: UnNetHack +- Contact: xororand@SF + +## XPilot Admins [1] + +- Games: XPilot +- Contact: xpilot@SF + +## xrenmilay [1] + +- Games: WorldForge +- Contact: xrenmilay@SF + +## Xsoft [1] + +- Games: StepMania +- Contact: xsoft@SF + +## yaen [1] + +- Games: Openfrag +- Contact: yaen_@SF + +## yakgorgon [1] + +- Games: Wograld +- Contact: yakgorgon@SF ## yarrt [1] - Games: Armagetron Advanced - Contact: yarrt@SF +## Yeha [1] + +- Games: Spring +- Contact: knorrar@SF + ## Yellow [1] - Games: Dune Legacy - Contact: yellowz@SF -## yoriy [1] +## Yevgeny Gurevich [1] -- Games: Arianne / Marauroa +- Games: Pioneers +- Contact: yev@SF + +## Yill [1] + +- Games: Trinity Reign +- Contact: yill@SF + +## yoriy [2] + +- Games: Arianne / Marauroa, Stendhal - Contact: yoriy@SF +## Yossi mozgerashvily [1] + +- Games: Openfrag +- Contact: yossi1981@SF + ## yotsuya san [1] - Games: Cannon Smash @@ -6685,6 +14354,11 @@ - Games: Armagetron Advanced - Contact: your_mom_arma@SF +## yupsi [1] + +- Games: VCMI +- Contact: yupsi@SF + ## Yura [2] - Games: Domination, Rescue! Max @@ -6696,20 +14370,45 @@ - Contact: wavexx@GL - Home: http://www.thregr.org/~wavexx/ +## Z9484 [1] + +- Games: KQ Lives +- Contact: z9484@SF + ## Zach Laine [1] - Games: FreeOrion - Contact: tzlaine@SF +## Zacharia Bickley [1] + +- Games: PCGen +- Contact: kapnbanjo@SF + ## Zachary Murray [1] - Games: Betrayer's Moon Tactics - Contact: dremelofdeath@SF +## Zachary Uram [1] + +- Games: Netrek +- Contact: zinpgh@SF + ## Zack Middleton [1] - Games: iortcw +## Zaid Abdulla [1] + +- Games: OGRE +- Contact: zkam83@SF + +## Zardus [1] + +- Games: Openglad +- Contact: zardus@SF + ## Zbigniew Jarzynski [1] - Games: Crystal Space 3D SDK @@ -6720,10 +14419,25 @@ - Games: Bygfoot - Contact: zbrox@SF +## Zeke Walker [1] + +- Games: World of Phaos +- Contact: eproductions3@SF + ## Zeno Rogue [1] - Games: Necklace of the Eye +## Zeog [1] + +- Games: Vega Strike +- Contact: zeog@SF + +## Zero X42 [1] + +- Games: Manic Digger +- Contact: zerox42@SF + ## Zhdophanti [1] - Games: Dark Destiny diff --git a/entries/gl-117.md b/entries/gl-117.md index 2b74e0ba..ffebbadd 100644 --- a/entries/gl-117.md +++ b/entries/gl-117.md @@ -10,7 +10,7 @@ - Code license: GPL-2.0 - Code dependency: GLUT, SDL - Assets license: GPL-2.0 -- Developer: Thomas Drexl, Jean-Marc Le Peuvedic, Eric Cheung, Piotr Pawlow, Louens Veen, Arne Reiners, Norbert Drexl, James Stone, Bernhard Kaindl, Cedric Delfosse, Eugene Andreeshchev, Bilal Ahsan, Lourens Veen, A Braunsdorf +- Developer: Thomas Drexl, Jean-Marc Le Peuvedic, Eric Cheung, Piotr Pawlow, Arne Reiners, Norbert Drexl, James Stone, Bernhard Kaindl, Cedric Delfosse, Eugene Andreeshchev, Bilal Ahsan, Lourens Veen, A Braunsdorf ## Building diff --git a/entries/inexor.md b/entries/inexor.md index 9a59408c..287f3249 100644 --- a/entries/inexor.md +++ b/entries/inexor.md @@ -5,7 +5,7 @@ - State: beta, inactive since 2018 - Platform: Windows, Linux - Keyword: 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 dependency: Cube 2 diff --git a/entries/javascript_graphic_adventure_maker.md b/entries/javascript_graphic_adventure_maker.md index 26ed7233..6d990dd6 100644 --- a/entries/javascript_graphic_adventure_maker.md +++ b/entries/javascript_graphic_adventure_maker.md @@ -8,5 +8,6 @@ - Code repository: https://github.com/kreezii/jsgam.git, https://svn.code.sf.net/p/jsgam/code (svn) - Code language: JavaScript - Code license: MIT +- Developer: Kreezii ## Building diff --git a/entries/jclassicrpg.md b/entries/jclassicrpg.md index b6612007..4dff6611 100644 --- a/entries/jclassicrpg.md +++ b/entries/jclassicrpg.md @@ -7,6 +7,6 @@ - Code language: Java - Code license: LGPL-3.0 - Code dependency: jMonkeyEngine -- Developer: Timong +- Developer: Timong, Pal Illes, Laszlo Szucs, Mike Kienenberger, qubodup ## Building diff --git a/entries/jquest.md b/entries/jquest.md index 0cafa7ad..3d11a5f6 100644 --- a/entries/jquest.md +++ b/entries/jquest.md @@ -8,5 +8,6 @@ - Code repository: https://gitlab.com/osgames/jquest.git (archive of source releases) - Code language: Java - Code license: GPL-2.0 +- Developer: RHaden ## Building diff --git a/entries/jsettlers.md b/entries/jsettlers.md index d7cee695..8a158c93 100644 --- a/entries/jsettlers.md +++ b/entries/jsettlers.md @@ -8,6 +8,7 @@ - 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 +- Developer: Chad McHenry, Robert Thomas, Jeremy D. Monin Web-based version of the board game Settlers of Catan written in Java. See also http://www.settlers-android-clone.com/, https://github.com/jsettlers/settlers-remake diff --git a/entries/jskat.md b/entries/jskat.md index 9d697fe8..018aef8b 100644 --- a/entries/jskat.md +++ b/entries/jskat.md @@ -9,7 +9,7 @@ - Code language: Java - Code license: GPL-3.0 (GUI), Apache-2.0 (base) - Assets license: GPL-3.0 -- Developer: Jan Schäfer, Markus J. Luzius, Daniel Loreck, Sascha Laurien +- Developer: Jan Schäfer, Markus J. Luzius, Daniel Loreck, Sascha Laurien, mjluzius German card game Skat and variations thereof. diff --git a/entries/kiki_the_nano_bot.md b/entries/kiki_the_nano_bot.md index d11f270a..efba2012 100644 --- a/entries/kiki_the_nano_bot.md +++ b/entries/kiki_the_nano_bot.md @@ -10,5 +10,6 @@ - Code repository: https://gitlab.com/osgames/kiki.git (conversion of cvs), http://kiki.cvs.sourceforge.net (cvs) - Code language: C++ - Code license: Public domain +- Developer: Thorsten Kohnhorst, micha ## Building diff --git a/entries/kobolds_quest_2.md b/entries/kobolds_quest_2.md index 013862a1..8f837133 100644 --- a/entries/kobolds_quest_2.md +++ b/entries/kobolds_quest_2.md @@ -9,6 +9,7 @@ - Code language: Python - Code license: LGPL-3.0 - Code dependency: pygame +- Developer: coffeefizzle Sequel to kobold's quest and features an octree for multi processing game mechanics. diff --git a/entries/korax_heritage.md b/entries/korax_heritage.md index b940b52d..6cf72650 100644 --- a/entries/korax_heritage.md +++ b/entries/korax_heritage.md @@ -9,6 +9,7 @@ - Code language: None - Code license: ? - Code dependency: Hexen +- Developer: Crimson Wizard, Jānis Legzdiņš, Francisco Ortega, RambOrc, Camper, Remi Spaans Two games: Scattered Evil: a full-fledged open-world RPG diff --git a/entries/kq_lives.md b/entries/kq_lives.md index 4d7c541b..5ca10d8f 100644 --- a/entries/kq_lives.md +++ b/entries/kq_lives.md @@ -7,6 +7,7 @@ - Code repository: https://github.com/OnlineCop/kqlives.git (archived), https://svn.code.sf.net/p/kqlives/code (svn) - Code language: C - Code license: GPL-2.0 +- Developer: OnlineCop, Brian Bennett, Team Terradactyl, Winter Knight, Chris Barry, Eduardo Machado de Oliveira, Edgar Alberto Molina, Eric Love, Günther Brammer, Josh Bolduc, Matthew Leverton, Nicholas Davies, Rathe Holloway, ReyBrujo, Z9484 A console-style role playing game. Are [KQtheBetrayer](https://sourceforge.net/projects/kqthebetrayer/) or [this github fork](https://github.com/OnlineCop/kq-fork) different enough to diff --git a/entries/krank.md b/entries/krank.md index 69209015..c67bccb6 100644 --- a/entries/krank.md +++ b/entries/krank.md @@ -10,6 +10,6 @@ - Code license: Public domain - Code dependency: pygame - Assets license: Public domain (probably non-free backgrounds and a font in the original distribution, see debian distribution) -- Developer: Thorsten Kohnhorst, legoluft (sound), Slava Anishenko (artwork) +- Developer: Thorsten Kohnhorst, legoluft (sound), Slava Anishenko (artwork), Roberto, Sven Thoennissen ## Building diff --git a/entries/krystal_drop.md b/entries/krystal_drop.md index 4f33fc79..d10f5669 100644 --- a/entries/krystal_drop.md +++ b/entries/krystal_drop.md @@ -10,6 +10,6 @@ - Code language: C++ - Code license: GPL-2.0 - Code dependency: SDL -- Developer: krys +- Developer: krys, David Négrier ## Building diff --git a/entries/ksudoku.md b/entries/ksudoku.md index 45bf3adf..a7945d0e 100644 --- a/entries/ksudoku.md +++ b/entries/ksudoku.md @@ -7,7 +7,7 @@ - Code language: C++ - Code license: GPL-2.0 - Assets license: GPL-2.0 -- Developer: Francesco Rossi, Johannes Bergmeier, Mick Kappenburg +- Developer: Francesco Rossi, Johannes Bergmeier, Mick Kappenburg, Francesco Rossi, black8eagles, calenlas, Mick Program for creating and solving (manually or automatically) 2D and 3D Sudoku games. diff --git a/entries/labyrinth_of_worlds.md b/entries/labyrinth_of_worlds.md index 038fd144..f0033563 100644 --- a/entries/labyrinth_of_worlds.md +++ b/entries/labyrinth_of_worlds.md @@ -9,5 +9,6 @@ - Code language: C++ - Code license: LGPL-3.0 - Code dependency: OGRE +- Developer: Marc A. Pelletier, Willem Jan Palenstijn ## Building diff --git a/entries/lgeneral.md b/entries/lgeneral.md index af8a19d7..17ee23a3 100644 --- a/entries/lgeneral.md +++ b/entries/lgeneral.md @@ -9,6 +9,7 @@ - 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 +- Developer: Michael Speck, Leo Savernik, Peter Ivanyi, Victor Sergienko May require original game content. diff --git a/entries/liberal_crime_squad.md b/entries/liberal_crime_squad.md index 1f5778c7..961066f8 100644 --- a/entries/liberal_crime_squad.md +++ b/entries/liberal_crime_squad.md @@ -10,6 +10,7 @@ - Code language: C++ - Code license: GPL-2.0 - Code dependency: curses, SDL2 +- Developer: Chris Johnson, Jonathan Stickles Fox, Ciprian ilies, Ari Rahikkala, Niklas Blomkvist, Brett Flannigan, Callum Davies, CoronelNiel, Craig Rickel, Christoph Franck, dreadmullet, David Tomandl, Firewolf, Alex Mooney, InfernoZeus, Future, Maciej Murakowski, Kurper, Kalle Viiri, LiteralKa, Matthew Downie, Nick Dumas, Nyx, Puzzlemaker, Allan Murray, Servant Corps, seth--, antagonist, Vherid Direhv, Adrian Irving-Beer, Rich McGrew Satirical console-based political role-playing/strategy game. diff --git a/entries/lincity.md b/entries/lincity.md index dde6a226..b9722e09 100644 --- a/entries/lincity.md +++ b/entries/lincity.md @@ -8,6 +8,7 @@ - Code repository: https://gitlab.com/osgames/lincity.git (backup of cvs), http://lincity.cvs.sourceforge.net/ (cvs) - Code language: C - Code license: GPL-2.0 +- Developer: Gregory Sharp, Corey Keasling, Taj Morton See also https://github.com/javiercantero/lincity, https://github.com/usrshare/lincity diff --git a/entries/lips_of_suna.md b/entries/lips_of_suna.md index 07424973..031d1550 100644 --- a/entries/lips_of_suna.md +++ b/entries/lips_of_suna.md @@ -6,6 +6,7 @@ - Code repository: https://git.code.sf.net/p/lipsofsuna/code, https://gitlab.com/osgames/lipsofsuna.git @add - Code language: C - Code license: GPL-3.0 +- Developer: Ari Mustonen, Francisco Athens, Ryan Swart Tongue-in-cheek action RPG. diff --git a/entries/lmarbles.md b/entries/lmarbles.md index 7735aca8..b1b9aefe 100644 --- a/entries/lmarbles.md +++ b/entries/lmarbles.md @@ -8,5 +8,6 @@ - Code language: C - Code license: GPL-2.0 - Code dependency: SDL +- Developer: Michael Speck ## Building diff --git a/entries/machinations.md b/entries/machinations.md index 692fe16e..e74eb68a 100644 --- a/entries/machinations.md +++ b/entries/machinations.md @@ -8,5 +8,6 @@ - Code repository: https://gitlab.com/osgames/machinations.git (backup of cvs), http://machinations.cvs.sourceforge.net/ (cvs) - Code language: C++ - Code license: GPL-2.0 +- Developer: Tom Pittlik, Jon Sargeant, Jindrich kolman, Sebastian P., Abraham B. Hart, Manoel Junqueira ## Building diff --git a/entries/maniadrive.md b/entries/maniadrive.md index b37b41a3..bae39573 100644 --- a/entries/maniadrive.md +++ b/entries/maniadrive.md @@ -11,7 +11,7 @@ - Code license: ? (GPL version?) - Code dependency: Raydium - Assets license: GPL (Music), CC BY-NC-SA, CC BY-SA -- Developer: xfennec +- Developer: x fennec [Discussion of the music licensing](http://memak.raydium.org/viewtopic.php?p=5216&sid=6ccfed9175e1d0892554bb2d2d79ab9c) diff --git a/entries/manic_digger.md b/entries/manic_digger.md index 2a4687e2..ea20894b 100644 --- a/entries/manic_digger.md +++ b/entries/manic_digger.md @@ -9,5 +9,6 @@ - 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) +- Developer: exe, Anton Neverdovsky, liquidhot, TKwisl, Zero X42 ## Building diff --git a/entries/mars.md b/entries/mars.md index 7f4e1a4c..5ab6d6c4 100644 --- a/entries/mars.md +++ b/entries/mars.md @@ -9,7 +9,7 @@ - Code license: GPL-3.0 - Code dependency: OpenGL, SFML - Assets license: CC-BY 3.0, CC-BY-SA-3.0, PD -- Developer: Simon Schneegans, Felix Lauer +- Developer: Simon Schneegans, Felix Lauer, Mars-Core-Team, Sciuorus A ridiculous shooter. In one of several game modes, two opposing teams are fighting in a gravitational 2D space with a few planets, including their homes. diff --git a/entries/mars_land_of_no_mercy.md b/entries/mars_land_of_no_mercy.md index f2dca965..1f4911d4 100644 --- a/entries/mars_land_of_no_mercy.md +++ b/entries/mars_land_of_no_mercy.md @@ -7,6 +7,7 @@ - Code repository: https://gitlab.com/osgames/mars.git (backup of svn), https://svn.code.sf.net/p/mars/code (svn) - Code language: C++ - Code license: GPL-2.0 +- Developer: Davide Coppola, Angelo Theodorou, Alonso Cardenas Marquez, Enetheru, dekki, Dominique Leuenberger, discojonny, Elye Ball, ender_saka, Voller Lead a mercenary team hired to go on Mars and fight with different factions using mechs and others military vehicles. diff --git a/entries/maxit.md b/entries/maxit.md index cf0a26e3..0e13d141 100644 --- a/entries/maxit.md +++ b/entries/maxit.md @@ -9,6 +9,6 @@ - Code repository: https://github.com/textbrowser/maxit.git - Code language: C++ - Code license: 3-clause BSD (https://github.com/textbrowser/maxit/blob/master/LICENSE) -- Developer: Alexis Megas +- Developer: Alexis Megas, Guess Who ## Building diff --git a/entries/me_and_my_shadow.md b/entries/me_and_my_shadow.md index cf6fe83b..19d43256 100644 --- a/entries/me_and_my_shadow.md +++ b/entries/me_and_my_shadow.md @@ -8,6 +8,7 @@ - Code repository: https://github.com/acmepjz/meandmyshadow.git, https://svn.code.sf.net/p/meandmyshadow/meandmyshadow/ (svn) - Code language: C++ - Code license: GPL-3.0 +- Developer: Edward Lii, acme_pjz, MCMic, odamite Try to reach the exit by solving puzzles. diff --git a/entries/mega_mario.md b/entries/mega_mario.md index eead639d..0d182e14 100644 --- a/entries/mega_mario.md +++ b/entries/mega_mario.md @@ -11,5 +11,6 @@ - Code license: LGPL-2.1 - Code dependency: SDL - Assets license: (illegal use of Super Mario artwork and music?) +- Developer: JOKER VAN HAELN ## Building diff --git a/entries/megaglest.md b/entries/megaglest.md index c46a93e6..625f9733 100644 --- a/entries/megaglest.md +++ b/entries/megaglest.md @@ -10,6 +10,7 @@ - Code language: C, C++ - Code license: GPL-3.0 - Assets license: CC-BY-SA +- Developer: Mark Vejvoda, titi(ger), Tom Reynolds, BogoMips, m0elle, nosogo, Paul Wise Fork of [Glest](glest.md) diff --git a/entries/megamek.md b/entries/megamek.md index 0b753e93..e72839b7 100644 --- a/entries/megamek.md +++ b/entries/megamek.md @@ -9,5 +9,6 @@ - Code repository: https://github.com/MegaMek/megamek.git, https://git.code.sf.net/p/megamek/git - Code language: Java - Code license: GPL-2.0 +- Developer: Nicholas Walczak, Sebastian Brocks, Taharqa, Hammer, Akjosch, Deric Page, Xenon54z, Klaus Mittag, Carl Spain, Andrew Pokrovski, Jason Tighe, Ben Mazur, Shane, DarkISI, Derek Evans, Dirk Walter, Mike Kiscaden, Andrew Hunter, Jason Bush, fastsammy, Steve Hawkins, Brent Dill, Markus Mikkolainen, Jason Smyrloglou, Cord Awtry, Helge Richter, Eugene Melekhov, `Moe`, Dima Nemchenko, Ryan McConnell, Patrick McKenzie, BATTLEMASTER, Alexander Schoelling, Eddy Cullen, Joseph Tyx, Joshua Yockey, James Damour, Jeff Wang, Hugh Peeples, John Rowat, Nathan Rowden, Brian Bucklew, urgru, Wirianto Djunaidi, David Smith, Viacheslav Zipunov ## Building diff --git a/entries/metal_mech.md b/entries/metal_mech.md index 1a5ddd1f..91d20acf 100644 --- a/entries/metal_mech.md +++ b/entries/metal_mech.md @@ -8,5 +8,6 @@ - Code repository: https://gitlab.com/osgames/metalmech.git (backup of cvs), http://metalmech.cvs.sourceforge.net/ (cvs) - Code language: PHP - Code license: GPL-2.0 +- Developer: Dzmitry Haiduchonak, Fokker, Gedece, Robert Ryll, s600, Maravilla Gil Salvador ## Building diff --git a/entries/microracers.md b/entries/microracers.md index dbe70bb8..f0401851 100644 --- a/entries/microracers.md +++ b/entries/microracers.md @@ -8,7 +8,7 @@ - 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 +- Developer: Ricardo Cruz, Marinho Tobolla Not really beta? diff --git a/entries/microwar_20.md b/entries/microwar_20.md index f77e3d99..de5dd522 100644 --- a/entries/microwar_20.md +++ b/entries/microwar_20.md @@ -10,5 +10,6 @@ - Code language: Python - Code license: 3-clause BSD - Code dependency: pygame +- Developer: Pierre-Alain Dorange, Frank Blandon, Jean Karim Bockstael, Talamon70 ## Building diff --git a/entries/moagg2.md b/entries/moagg2.md index 5fbd53bd..f621ebd8 100644 --- a/entries/moagg2.md +++ b/entries/moagg2.md @@ -11,7 +11,7 @@ - Code license: GPL-2.0 - Code dependency: Golden-T Game Engine, Mozilla Rhino - Assets license: ? (GPL) -- Developer: Bernhard Trummer +- Developer: Bernhard Trummer, Andreas Granig, Kevin Krammer 2D gravity game. diff --git a/entries/mocha_doom.md b/entries/mocha_doom.md index 65f4b7d3..92c17778 100644 --- a/entries/mocha_doom.md +++ b/entries/mocha_doom.md @@ -8,5 +8,6 @@ - Code repository: http://mochadoom.cvs.sourceforge.net (cvs) - Code language: Java - Code license: ? +- Developer: Velktron, Finn Wilcox, Jodwin ## Building diff --git a/entries/monster_generator.md b/entries/monster_generator.md index fa0865ac..940e39cc 100644 --- a/entries/monster_generator.md +++ b/entries/monster_generator.md @@ -7,6 +7,7 @@ - Code repository: https://git.code.sf.net/p/monstergenerato/code - Code language: Java - Code license: MIT +- Developer: John Davis Creates D&D monsters of CR 1-50 for use with the Pathfinder ruleset. diff --git a/entries/mpango.md b/entries/mpango.md index d8f77dd3..7481fcb0 100644 --- a/entries/mpango.md +++ b/entries/mpango.md @@ -7,5 +7,6 @@ - Code repository: https://github.com/osgamearchive/mpango.git (conversion of svn and git), https://git.code.sf.net/p/mpango/git @add, https://svn.code.sf.net/p/mpango/code (svn) - Code language: Java - Code license: GPL-2.0 +- Developer: Eduardo de Vera, Andrzej P, devdlee, jay wellings, Serg Rubtsov, Marc Badia, philipp kleinschmit, vinod ## Building diff --git a/entries/murder_in_the_public_domain.md b/entries/murder_in_the_public_domain.md index 8fec7f74..6d6b25b5 100644 --- a/entries/murder_in_the_public_domain.md +++ b/entries/murder_in_the_public_domain.md @@ -9,6 +9,7 @@ - Code repository: https://gitlab.com/osgames/murderpd.git (copy of versions 1.0.0 - 1.3.1) - Code language: C++ - Code license: GPL-3.0 +- Developer: Chris Ohmstede A murder mystery game or visual novel built from public domain movies, sounds, pictures, and images. diff --git a/entries/musosu.md b/entries/musosu.md index 06d01178..046bea1f 100644 --- a/entries/musosu.md +++ b/entries/musosu.md @@ -8,7 +8,7 @@ - Code repository: https://gitlab.com/osgames/musosu.git (import of sources) - Code language: Java - Code license: GPL-3.0 -- Developer: Marios Visvardis +- Developer: Marios Visvardis, Visvardis Marios Sudoku puzzle game (generator and solver). diff --git a/entries/naev.md b/entries/naev.md index f6c3c28e..89664e90 100644 --- a/entries/naev.md +++ b/entries/naev.md @@ -9,6 +9,7 @@ - Code language: C, Lua - Code license: GPL-3.0 - Code dependency: libxml, OpenAL, SDL2 +- Developer: bobbens, Deiz, BTAxis Also available on Steam. diff --git a/entries/nethack.md b/entries/nethack.md index b0f220da..1e2aa96d 100644 --- a/entries/nethack.md +++ b/entries/nethack.md @@ -9,6 +9,7 @@ - Code repository: https://github.com/NetHack/NetHack.git, https://github.com/Vanilla-NetHack/NetHack-3.4.3.git @add, https://git.code.sf.net/p/nethack/NetHack - Code language: C - Code license: Custom (Nethack General Public License) +- Developer: Patric Mueller, David Cohrs, Dean Luick, Jean-Christophe Collet, Janet Walz, Mike Stephenson, Kenneth Lorber, Kevin Hugo, nhmall, Derek Ray, Pat Rankin, Warwick Allison, NetHack Read-only user Single player dungeon exploration game that runs on a wide variety of computer systems. See also [NetHack Falcon's Eye](https://sourceforge.net/projects/falconseye/), a graphical modification of NetHack. diff --git a/entries/netrek.md b/entries/netrek.md index b032b395..b7545e57 100644 --- a/entries/netrek.md +++ b/entries/netrek.md @@ -9,6 +9,7 @@ - Code repository: http://netrek.cvs.sourceforge.net (cvs) - Code language: C - Code license: Custom (permissive) +- Developer: Dave Ahn, James Cameron, Kurt Siegl, Bob Tanner, Dave Pinkney, David Swasey, Alec Habig, Jeff Nowakowski, Stephen Thorne, Karthik Arumugham, Stas Pirogov, Gerard Lim, Bill Balcerski, 324523, Steve Sheldon, Niclas Fredriksson, Michael Wyatt, Trent Piepho, Zachary Uram Multi-player battle simulation with a Star Trek theme. See also [JTrek](http://ftp.netrek.org/pub/netrek/clients/jtrek/), [Netrek RES-RSA](https://launchpad.net/netrek-res-rsa), [HTML5 netrek](https://github.com/apsillers/html5-netrek) diff --git a/entries/netstatsbaseball.md b/entries/netstatsbaseball.md index fee0f638..b8294ea3 100644 --- a/entries/netstatsbaseball.md +++ b/entries/netstatsbaseball.md @@ -8,7 +8,7 @@ - Code language: C - Code license: Public domain - Assets license: (player pictures are from baseball-reference.com) -- Developer: Marshal Lake +- Developer: Marshall Lake Major League Baseball Simulation. diff --git a/entries/nexuiz.md b/entries/nexuiz.md index c5228f44..90e42fce 100644 --- a/entries/nexuiz.md +++ b/entries/nexuiz.md @@ -10,5 +10,6 @@ - Code language: C++ - Code license: GPL-2.0 - Code dependency: DarkPlaces (Quake engine https://github.com/xonotic/darkplaces) +- Developer: Andreas Kirsch, Dan Korostelev, Benjamin Darling, esteel, Forest Hale, SavageX, Kristian Johansson, Rudolf Polzer, SeienAbunae, Lee Vermeulen, Saulo Gil, Morphed, Hans Dampf, RazorWind Team projects ## Building diff --git a/entries/nighthawk.md b/entries/nighthawk.md index 6ea92aa9..26ec924c 100644 --- a/entries/nighthawk.md +++ b/entries/nighthawk.md @@ -9,7 +9,7 @@ - Code repository: https://gitlab.com/osgames/night-hawk.git (conversion of cvs), http://night-hawk.cvs.sourceforge.net (cvs) - Code language: C++ - Code license: GPL-2.0 -- Developer: Jason Nunn, Eric Gillespie +- Developer: Jason Nunn, Eric Gillespie, Dion Bonner, Eskild Hustvedt May be uploaded in the future under https://github.com/brickviking diff --git a/entries/nlarn.md b/entries/nlarn.md index 1cd5d83f..2581a578 100644 --- a/entries/nlarn.md +++ b/entries/nlarn.md @@ -9,5 +9,6 @@ - Code repository: https://github.com/nlarn/nlarn.git - Code language: C, Lua - Code license: GPL-3.0 +- Developer: Joachim de Groot, jpeg ## Building diff --git a/entries/no_gravity.md b/entries/no_gravity.md index 5a08258d..6c2eea52 100644 --- a/entries/no_gravity.md +++ b/entries/no_gravity.md @@ -9,6 +9,7 @@ - Code repository: http://nogravity.cvs.sourceforge.net (cvs) - Code language: C - Code license: GPL-2.0 +- Developer: Stephane Denis, Matt Williams ## Building diff --git a/entries/noiz2sa.md b/entries/noiz2sa.md index 48dcb55f..bda19166 100644 --- a/entries/noiz2sa.md +++ b/entries/noiz2sa.md @@ -8,5 +8,6 @@ - Code language: C, C++ - Code license: 2-clause BSD - Code dependency: SDL +- Developer: Evil Mr Henry ## Building diff --git a/entries/nstars.md b/entries/nstars.md index 2852c88a..b0b22b42 100644 --- a/entries/nstars.md +++ b/entries/nstars.md @@ -9,5 +9,6 @@ - Code repository: http://nstars.cvs.sourceforge.net (cvs) - Code language: C# - Code license: ? +- Developer: Nathaniel Woods ## Building diff --git a/entries/nuvie.md b/entries/nuvie.md index 5a2d5761..b17a3584 100644 --- a/entries/nuvie.md +++ b/entries/nuvie.md @@ -7,6 +7,7 @@ - Code repository: https://github.com/nuvie/nuvie.git, https://svn.code.sf.net/p/nuvie/code (svn) - Code language: C, C++, Lua - Code license: GPL-2.0 +- Developer: Eric Fry, Dominik Reichardt, kirben, Jeremy Newman, Pieter Christiaan Luteijn, Malignant Manor, Jonathan E. Wright, Markus Niemistö, J. Applegate, Sam Matthews, Michael Fink, Willem Jan Palenstijn Does it include alternate graphics? diff --git a/entries/nxengine.md b/entries/nxengine.md index faa7e974..91f2c9fc 100644 --- a/entries/nxengine.md +++ b/entries/nxengine.md @@ -10,6 +10,7 @@ - Code language: C, C++ - Code license: GPL-3.0 - Code dependency: SDL +- Developer: Caitlin Shaw Does it require original content? diff --git a/entries/nxtank.md b/entries/nxtank.md index a03c6b6f..eda58b91 100644 --- a/entries/nxtank.md +++ b/entries/nxtank.md @@ -10,5 +10,6 @@ - Code language: Python - Code license: GPL-3.0 - Code dependency: OGRE +- Developer: Quadrofonic, Richard Hendricks, OneOfAmorphis, ryanismean ## Building diff --git a/entries/ogre.md b/entries/ogre.md index 3fafd1ae..ccc14758 100644 --- a/entries/ogre.md +++ b/entries/ogre.md @@ -8,6 +8,7 @@ - Code repository: https://github.com/OGRECave/ogre.git, https://svn.code.sf.net/p/ogre/code (svn) - Code language: C++ - Code license: MIT +- Developer: Assaf Raman, Brian, Dark_Sylinc, David Rogers, paroj, Steve Streeting, Philip Allgaier, TheSHEEEP, Murat Sari, Holger Frydrych, Hern, Nir Hasson, Noam Gat, Zaid Abdulla Scene-oriented, flexible 3D engine. diff --git a/entries/ogs_mahjong.md b/entries/ogs_mahjong.md index eebc2348..829ab7be 100644 --- a/entries/ogs_mahjong.md +++ b/entries/ogs_mahjong.md @@ -10,7 +10,7 @@ - Code language: C++ - Code license: GPL-3.0 - Code dependency: CEGUI, OGRE -- Developer: Opensource Game Studio +- Developer: Opensource Game Studio, Kai SD, kornerr, AleXXandEr, kornerrjenkins, xmorph Simple mahjong solitaire game with 3D graphics. diff --git a/entries/omega-rpg.md b/entries/omega-rpg.md index a5333656..36f02a96 100644 --- a/entries/omega-rpg.md +++ b/entries/omega-rpg.md @@ -6,7 +6,7 @@ - Code repository: https://gitlab.com/osgames/omega-roguelike.git (conversion of cvs), http://omega-roguelike.cvs.sourceforge.net (cvs) - Code language: C - Code license: LGPL-2.0 -- Developer: Laurence R. Brothers, Sheldon Simms, David Gibbs, William Tanksley +- Developer: Laurence R. Brothers, Sheldon Simms, David Gibbs, William Tanksley, Eric Shafto, Jay Kint, Rick Cooley, Guus Sliepen, Tom Breton, Hal Bonnin, Josh Kelley ## Building diff --git a/entries/open_game_engine.md b/entries/open_game_engine.md index 050bf929..0d915edd 100644 --- a/entries/open_game_engine.md +++ b/entries/open_game_engine.md @@ -8,6 +8,7 @@ - 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 +- Developer: Steven 'lazalong' Gay, petrocket, Chris Jones, Vincenzo Greco, mehdix, Serdar Dere, Ralph Little Game engine and editor. diff --git a/entries/open_jumpgate.md b/entries/open_jumpgate.md index 7906ca05..662d4d94 100644 --- a/entries/open_jumpgate.md +++ b/entries/open_jumpgate.md @@ -7,6 +7,7 @@ - Code repository: https://git.code.sf.net/p/opengate/code - Code language: C++ - Code license: GPL-2.0 +- Developer: Christoph Brill, spom_spom, Daniel S. Early development. diff --git a/entries/open_quartz.md b/entries/open_quartz.md index eeb3a8f9..44889c1d 100644 --- a/entries/open_quartz.md +++ b/entries/open_quartz.md @@ -9,7 +9,7 @@ - Code language: C - Code license: GPL-2.0 - Assets license: ? (GPL) -- Developer: Toddd +- Developer: Toddd, Mapes, Seth Galbraith, David Costanzo, Gargoylol, Charles Galbraith, Bill Currie Implementation of the GPL Quake source. diff --git a/entries/open_rodents_revenge.md b/entries/open_rodents_revenge.md index 176068dc..943d71d4 100644 --- a/entries/open_rodents_revenge.md +++ b/entries/open_rodents_revenge.md @@ -10,5 +10,6 @@ - Code language: C++ - Code license: MIT (was GPL-3.0) - Code dependency: Qt, SFML +- Developer: Pierre ## Building diff --git a/entries/open_rpg_maker.md b/entries/open_rpg_maker.md index 4129fab6..3058d658 100644 --- a/entries/open_rpg_maker.md +++ b/entries/open_rpg_maker.md @@ -7,6 +7,7 @@ - Code repository: https://gitlab.com/osgames/openrpgmaker.git (snapshot of source releases) - Code language: C++ - Code license: GPL-3.0 +- Developer: "Justin (Tuxinator) Davis", Tobin Davis, Ithior 2D RPG creation utility, similar to the popular RPG Maker series. diff --git a/entries/open_surge.md b/entries/open_surge.md index 878892f5..a69732d2 100644 --- a/entries/open_surge.md +++ b/entries/open_surge.md @@ -9,6 +9,7 @@ - Code language: C - Code license: GPL-3.0 (was GPL-2.0) - Code dependency: Allegro +- Developer: Alexandre Martins, Arthur Blot, Christopher Martinus, Christian Zigotzky, Francesco, Reimund Renner, Szymon Weihs, Tomires Renamed from Open Sonic to Open Surge in 2011. diff --git a/entries/open_tibia.md b/entries/open_tibia.md index 8080c992..d4729f31 100644 --- a/entries/open_tibia.md +++ b/entries/open_tibia.md @@ -8,6 +8,7 @@ - Code repository: https://github.com/opentibia/server.git, https://github.com/opentibia/yatc.git @add - Code language: C++ - Code license: GPL-2.0 +- Developer: GriZzm0, mips, Simone, Remere, Anstice, Assassina Mutante, Axel, Daniel Antunes, Arkold Thos, Dennis, Elf, Haktivex, Heliton, Konrad Kuśnierz, Ivan Vučica, "jakexblaster (Marcos Cunha)", Jiddo, johnny8020, Alexandre Severino, Mark Samman, Nate Fries, OsoSangre, Luis Hernandez, fike, Thomaz Yuji Babá, Vitor, Piotr Walaszczyk, pedro_b, 13r, Rafael Hamdan, Ricochet, Sven Matner, smyg, Gilfar, Sorcuring, Stefan Maier, Winghawk, Rafał Wrzeszcz Based on [Tibia](https://tibia.fandom.com/wiki/CipSoft_GmbH). diff --git a/entries/open_yahtzee.md b/entries/open_yahtzee.md index 1e19cc47..6aff4f2b 100644 --- a/entries/open_yahtzee.md +++ b/entries/open_yahtzee.md @@ -9,6 +9,7 @@ - Code repository: https://git.code.sf.net/p/openyahtzee/code, https://gitlab.com/osgames/openyahtzee.git @add - Code language: C++ - Code license: GPL-2.0 +- Developer: Guy Rutenberg, Journeyman, smcgill Infos about [Yahtzee](https://en.wikipedia.org/wiki/Yahtzee). diff --git a/entries/openalchemist.md b/entries/openalchemist.md index f2494729..13b5deeb 100644 --- a/entries/openalchemist.md +++ b/entries/openalchemist.md @@ -11,7 +11,7 @@ - Code license: GPL-2.0 - Code dependency: ClanLib - Assets license: CC-BY-SA 2.0 -- Developer: Antoine Morineau (graphics), Guillaume Delhumeau (code), silkut (win32 port), MrPouit (Ubuntu packages) +- Developer: Antoine Morineau (graphics), Guillaume Delhumeau (code), silkut (win32 port), MrPouit (Ubuntu packages), Gecko667, guigoz Falling block puzzle game. diff --git a/entries/openblox.md b/entries/openblox.md index b67a04c3..54d5f1b1 100644 --- a/entries/openblox.md +++ b/entries/openblox.md @@ -10,6 +10,7 @@ - Code license: GPL-3.0 - Code dependency: Panda3D, wxPython - Assets license: CC-BY-SA-3.0 +- Developer: DangerOnTheRanger, Alfredzo Nash, Bednesti, brutustodd, Chris Bradley, Danny Green, TheEnd, Oliver Frye Make games with a built-in physics engine, Lego-like building blocks, and a scripting language called Lua. diff --git a/entries/opencity.md b/entries/opencity.md index 59b1e603..b2b60620 100644 --- a/entries/opencity.md +++ b/entries/opencity.md @@ -9,6 +9,7 @@ - Code repository: https://gitlab.com/osgames/opencity.git (combination of cvs and svn), https://svn.code.sf.net/p/opencity/code (svn), http://opencity.cvs.sourceforge.net (cvs) - Code language: C++ - Code license: GPL-2.0 +- Developer: Duong Khang NGUYEN, frodrigo Another 3D city simulator. https://github.com/frodrigo/opencity, https://github.com/vorot93/opencity, https://github.com/AnotherFoxGuy/OpenCity diff --git a/entries/openfrag.md b/entries/openfrag.md index 7cd06392..c7c3b65b 100644 --- a/entries/openfrag.md +++ b/entries/openfrag.md @@ -7,6 +7,7 @@ - Code repository: https://svn.code.sf.net/p/openfrag/code (svn) - Code language: C++, Lua - Code license: GPL-2.0 +- Developer: Sander Bisschops, Geert Schoots, IFASS, Levia, Simon de la Court, b1n, Captnoord, Frank Oosterhuis, Frank, Lukas Tönne, Jack Coulter, Matt Williams, Lythaniel, Alex Trujillo, Luke Papaj, Simon G, Micah, Andreas Osowski, Ivan Nikolaev, Pedro Azevedo, yaen, Yossi mozgerashvily ## Building diff --git a/entries/openglad.md b/entries/openglad.md index 7339d2bf..b92eefa8 100644 --- a/entries/openglad.md +++ b/entries/openglad.md @@ -9,6 +9,7 @@ - Code language: C++ - Code license: GPL-2.0 - Code dependency: SDL +- Developer: Sean Ford, Zardus, Jonny D Original code released under GPL. diff --git a/entries/openhomm.md b/entries/openhomm.md index 40b53829..f55ec3e0 100644 --- a/entries/openhomm.md +++ b/entries/openhomm.md @@ -9,6 +9,7 @@ - Code language: C++ - Code license: GPL-3.0 - Code dependency: Qt, SDL +- Developer: crackedmind, Ice Open source clone of 'Heroes Of Might And Magic III' engine. Requires ownership of Heroes of Might and Magic III. diff --git a/entries/openmortal.md b/entries/openmortal.md index 362f8fda..467b3244 100644 --- a/entries/openmortal.md +++ b/entries/openmortal.md @@ -9,7 +9,7 @@ - Code repository: https://gitlab.com/osgames/openmortal.git (conversion of cvs), http://openmortal.cvs.sourceforge.net (cvs) - Code language: C++, Perl - Code license: GPL-2.0 -- Developer: UPi +- Developer: UPi, arvind, Kami, openmortaldev, Gabor Sebestyen ## Building diff --git a/entries/openmsx.md b/entries/openmsx.md index b7f80a13..2edd02d8 100644 --- a/entries/openmsx.md +++ b/entries/openmsx.md @@ -8,6 +8,7 @@ - Code repository: https://github.com/openMSX/openMSX.git, https://git.code.sf.net/p/openmsx/openmsx (old), https://svn.code.sf.net/p/openmsx/code (old svn) - Code language: C++ - Code license: GPL-2.0 +- Developer: Joost Yervante Damad, Wouter Vermaelen, Manuel Bilderbeek, Maarten ter Huurne, David Heremans, Arnold Metselaar, Eric Boon, Alex Wulms, Albert Beevendorp, boukichi, Edwin, Filip H.F. "FiXato" Slagter, Laurens Holst, Herman Oudejans, Max Feingold, Reikan, Sean Young, Patrick van Arkel MSX emulator. diff --git a/entries/openraider.md b/entries/openraider.md index 2a534bfb..281485f8 100644 --- a/entries/openraider.md +++ b/entries/openraider.md @@ -10,6 +10,7 @@ - Code language: C, C++ - Code license: GPL-2.0 - Code dependency: OpenAL, OpenGL, SDL2 +- Developer: Terry 'Mongoose' Hendrix II ## Building diff --git a/entries/openrpg.md b/entries/openrpg.md index 0dc5afdf..e494669c 100644 --- a/entries/openrpg.md +++ b/entries/openrpg.md @@ -8,6 +8,7 @@ - Code language: Python - Code license: GPL-2.0 - Code dependency: CherryPy, Pillow, wxPython +- Developer: chris davis, Todd Faris, Thomas Baleno, Christopher Rouse, David Byron, Digital Xero, Dj Gilcrease, Travis Casey, Chris Blocher, Mark Tarrabain, Rome Reginelli, Mojo Xanadu, Robert T Childers, Stefanos Armstrong, Ben Collins-Sussman, Ted Berg Allows people to play Role Playing Games and some miniature based war games in real-time over the Internet. diff --git a/entries/openrts.md b/entries/openrts.md index 59d01821..24452fb6 100644 --- a/entries/openrts.md +++ b/entries/openrts.md @@ -8,7 +8,7 @@ - Code language: Python - Code license: GPL-2.0 - Code dependency: PGU, pygame -- Developer: Andreas Røsdal +- Developer: Andreas Røsdal, Rtsfan Also known as arrakis. diff --git a/entries/opentitus.md b/entries/opentitus.md index 79237637..dfd806a9 100644 --- a/entries/opentitus.md +++ b/entries/opentitus.md @@ -9,6 +9,7 @@ - Code language: C - Code license: GPL-3.0 - Code dependency: SDL +- Developer: Eirik Stople SVN of project is gone and Git is older than releases, take from download page maybe? diff --git a/entries/operation_citadel.md b/entries/operation_citadel.md index 64edc271..2dddb70e 100644 --- a/entries/operation_citadel.md +++ b/entries/operation_citadel.md @@ -7,6 +7,7 @@ - Code repository: https://gitlab.com/osgames/kursk.git (snapshot of source releases) - Code language: C++ - Code license: GPL-2.0 +- Developer: Kalman Andrasi A WWII, turn-based platoon, company level war game on the Eastern Front. diff --git a/entries/orient.md b/entries/orient.md index a3f88c92..cc342946 100644 --- a/entries/orient.md +++ b/entries/orient.md @@ -7,6 +7,7 @@ - Code repository: https://gitlab.com/osgames/orient.git (snapshot of sources in download) - Code language: C#, Java - Code license: GPL-2.0 +- Developer: Michael Kriegel Prototype for an educational role-playing game for intercultural education. diff --git a/entries/outer_space.md b/entries/outer_space.md index ddb77d67..1ccf160e 100644 --- a/entries/outer_space.md +++ b/entries/outer_space.md @@ -8,6 +8,7 @@ - Code language: Python - Code license: GPL-2.0 - Code dependency: pygame +- Developer: Qark, Anderuso, Marek Haičman, Sindel, Aina Melkor, Mental, Vladimir Meister, Random Chaos, PeS On-line strategy game which takes place in the dangerous universe. See also https://github.com/Lukc/ospace-lukc, https://github.com/mozts2005/OuterSpace, https://github.com/OuterDeepSpace/OuterDeepSpace diff --git a/entries/paintown.md b/entries/paintown.md index db71e6c6..2b20e56f 100644 --- a/entries/paintown.md +++ b/entries/paintown.md @@ -9,6 +9,7 @@ - Code language: C++, Java, Python - Code license: 3-clause BSD - Code dependency: Allegro, FreeType, libpng, PyQt +- Developer: Juvinious, Jon Rafkind, drafkind, Kwadroke of "The Wired", scristopher Android port is written in Java. diff --git a/entries/pang_zero.md b/entries/pang_zero.md index 9d2c3bc6..73ce6071 100644 --- a/entries/pang_zero.md +++ b/entries/pang_zero.md @@ -10,5 +10,6 @@ - Code language: Perl - Code license: GPL-2.0 - Code dependency: SDL +- Developer: UPi ## Building diff --git a/entries/parpg.md b/entries/parpg.md index be888d33..ec1d8353 100644 --- a/entries/parpg.md +++ b/entries/parpg.md @@ -10,6 +10,7 @@ - Code license: GPL-3.0 - Code dependency: Blender game engine, FIFE, psyco, pygame, PyQt, PySide - Assets license: CC-BY-SA +- Developer: Karsten Bock, mvBarracuda Post-Apocalyptic RPG. See also: https://github.com/arikel/PPARPG, https://github.com/mvbarracuda/parpg_mvbarracuda, https://github.com/parpg/parpg diff --git a/entries/parsec47.md b/entries/parsec47.md index 0b52b707..93e53b24 100644 --- a/entries/parsec47.md +++ b/entries/parsec47.md @@ -8,6 +8,7 @@ - Code language: D - Code license: 2-clause BSD - Code dependency: SDL +- Developer: Evil Mr Henry Retromodern hispeed shmashup. diff --git a/entries/pasang_emas.md b/entries/pasang_emas.md index 98a252f6..60ea967b 100644 --- a/entries/pasang_emas.md +++ b/entries/pasang_emas.md @@ -8,6 +8,7 @@ - Code repository: https://git.code.sf.net/p/pasang-emas/code - Code language: Vala - Code license: GPL-3.0 +- Developer: Nor Jaidi Tuah Traditional two-player board game of Brunei. See also [Pasang Emas for Android](https://sourceforge.net/projects/pasang-android/). diff --git a/entries/pcgen.md b/entries/pcgen.md index ccd48e78..d3d241b7 100644 --- a/entries/pcgen.md +++ b/entries/pcgen.md @@ -7,6 +7,7 @@ - Code repository: https://github.com/PCGen/pcgen.git, https://svn.code.sf.net/p/pcgen/code (svn), http://pcgen.cvs.sourceforge.net (cvs) - Code language: Java - Code license: LGPL-2.1 +- Developer: LegacyKing, Distant Scholar, Martijn Verburg, Anestis Kozakis, Bryan McRoberts, Tom Parker, Stefan Radermacher, AinvarG, ankur rathi, Thomas Clegg, Rich Baumann, BenDog, Brad Stiles, Greg Bingleman, Skylar Hiebert, Richard Homonnai, Chuck Pint, Connor Petty, DJBlayde, Dreaming Psion, Eddy Anthony, elro the onk, Eric Parker, W. Robert Reed III, Fitzs, Fluxxdog, Gjorbjond, Hades Lucifer, Henk Slaaf, Vince Schiavoni, Jasper Spaans, Jayme Cox, J. Hunter Johnson, Joe Wells, Jonas Karlsson, Zacharia Bickley, Rebecca Downey, Kieth A. Coleman, Paul W. King, Kim Winz, Moni, Jason Buchanan, Thomas Cooper, Jeff Baril, Mark Schrijver, MDT, Merkidemis, Scott Meyer, moogle0001, MotorViper, Mike van Riel, Phoex, NeoFax, Andrew Wilson, Paul Grosse, Matt Chambers, David R. Bender, Per Christian Henden, Paul M. Lambert, Peter Yovich, randomclass, Steven West, Robert Ward, Ryelle, Don Peterson, Mike Elliott, Arjan van Ginneken, Devon Jones, Vincent Hatakeyama, Dark Mike, Shelley, Dave Cheever, theheadkase, Andrew McDougall, Leandro Coutinho, Tod Milam, Brad Kester, Phantom of Krankor RPG Character Generator diff --git a/entries/pentagram.md b/entries/pentagram.md index cfca7e4a..57ccc018 100644 --- a/entries/pentagram.md +++ b/entries/pentagram.md @@ -9,6 +9,7 @@ - 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 +- Developer: Willem Jan Palenstijn, btietz, colourles, Darke, Dominik Reichardt, Max Horn, kirben, Matthew Jimenez ## Building diff --git a/entries/phantasy_star_rebirth.md b/entries/phantasy_star_rebirth.md index bd4d0f5a..5d0f3fff 100644 --- a/entries/phantasy_star_rebirth.md +++ b/entries/phantasy_star_rebirth.md @@ -7,6 +7,7 @@ - Code repository: http://hg.code.sf.net/p/phantasy/code (hg), https://gitlab.com/osgames/phantasy.git @add - Code language: C++ - Code license: GPL-3.0 +- Developer: Jack Bohlen, Paul, Kami, Cool Spot Oldschool 90' sega genesis style. diff --git a/entries/phprpg.md b/entries/phprpg.md index e3d42795..c7eb20ef 100644 --- a/entries/phprpg.md +++ b/entries/phprpg.md @@ -8,7 +8,7 @@ - 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 -- Developer: Haeric, Rob Norman, Timothy Chung +- Developer: Haeric, Rob Norman, Timothy Chung, Joerg Kirchhoff, Michael Yarbrough, Ambystoma Mexicanum, Jan Urva Multiplayer role playing game engine which shares common qualities between multiple user dungeons (MUDs), paper & pen RPGs and computer RPGs. diff --git a/entries/pioneers.md b/entries/pioneers.md index a1bcad2c..0a00ba0f 100644 --- a/entries/pioneers.md +++ b/entries/pioneers.md @@ -8,6 +8,7 @@ - Code repository: https://svn.code.sf.net/p/pio/code (svn active) - Code language: C - Code license: GPL-2.0 +- Developer: Dave Cole, Andy Heroff, rclobus, Roman Hodek, Steve Langasek, Micah Bunting, Kevin Eustice, Brian Wellington, Matt McClanahan, David Fallon, dirtside, Matt Waggoner, Hal Eisen, Jeff Breidenbach, RodrigoEspiga, Bas Wijnen, Yevgeny Gurevich, Matt Zagrabelny Emulation of the board game The Settlers of Catan, which can be played over the internet. diff --git a/entries/pixellight.md b/entries/pixellight.md index 8d7a113f..37cfdae6 100644 --- a/entries/pixellight.md +++ b/entries/pixellight.md @@ -8,6 +8,7 @@ - Code repository: https://github.com/PixelLightFoundation/pixellight.git, https://git.code.sf.net/p/pixellight/code @add, https://git.code.sf.net/p/pixellight/pixellight2 @add - Code language: C, C++ - Code license: MIT +- Developer: Christian Ofenberg, Thomas Mühsam, NightFox, Stefan Buschmann, Stephan Wezel, cin, deaf.seven, Frank Deinzer, Christian Petry, katoun, Maximilian Reß, Jens Schmer, Michael Bernard, Stephan Lemnitzer ## Building diff --git a/entries/pizza_business.md b/entries/pizza_business.md index 73c4b5f6..c2c02ac9 100644 --- a/entries/pizza_business.md +++ b/entries/pizza_business.md @@ -9,6 +9,7 @@ - Code language: C++ - Code license: GPL-2.0 - Code dependency: wxWidgets +- Developer: Tony Granberg, Dan Poineau, Johnny Salazar, Jeff Koerner, Saurabh Gupta Start and control a pizza business / pizza restaurants, limited to a budget. diff --git a/entries/planeshift.md b/entries/planeshift.md index 912dbe6a..4d81f0f5 100644 --- a/entries/planeshift.md +++ b/entries/planeshift.md @@ -8,5 +8,6 @@ - Code repository: https://svn.code.sf.net/p/planeshift/code (svn) - Code language: C++ - Code license: GPL-2.0 +- Developer: Andrew Craig, Luca Pancallo, weltall, Andrew Robberts, Aresilek, DaveG, Joe Lyon, Jorrit Tyberghein, Kenny Graunke, Andy, Tristan Cragnolini, Travis Harris, Anders Reggestad, Dave Bentham, PlaneShift Team, Ralph Campbell, ravna, Roland Schulz, F Richter, Andrew Mann, RlyDontKnow, tomtt, Tuathanach, Venalan, Keith Fulton, Andrea Rizzi, Daniel Persson, Mike Gist ## Building diff --git a/entries/planetary_hoppers.md b/entries/planetary_hoppers.md index ec1a2c06..fe4b5425 100644 --- a/entries/planetary_hoppers.md +++ b/entries/planetary_hoppers.md @@ -7,5 +7,6 @@ - Code repository: https://gitlab.com/osgames/planets.git (backup of cvs), http://planets.cvs.sourceforge.net/ (cvs) - Code language: Java - Code license: GPL-2.0 +- Developer: Teemu J. Takanen, Juha Henrikki Merikallio, Jussi Rautio, Antti Nikolai Lehtoranta ## Building diff --git a/entries/plee_the_bear.md b/entries/plee_the_bear.md index f82f72ee..c606ab86 100644 --- a/entries/plee_the_bear.md +++ b/entries/plee_the_bear.md @@ -9,7 +9,7 @@ - Code license: GPL-3.0 - Code dependency: Bear, SDL - Assets license: CC BY-SA-3.0 -- Developer: Julien Jorge, Sébastien Angibaud +- Developer: Julien Jorge, Sébastien Angibaud, mothsart Player controls a bear in single or multiplayer mode. diff --git a/entries/plib.md b/entries/plib.md index 2baf1887..cfa36ee0 100644 --- a/entries/plib.md +++ b/entries/plib.md @@ -8,6 +8,7 @@ - Code repository: https://svn.code.sf.net/p/plib/code (svn) - Code language: C++ - Code license: LGPL-2.0 +- Developer: Steve Baker, Alex Perry, Bram Stolk, Curtis Olson, Gerard Decatrel, Bert Driehuis, John F. Fay, Gil Carter, Jürgen Marquardt, Giancarlo Niccolai, Per Liedman, Mark K Vallevand, Norman Vine, Nick McEvoy, James 'J.C.' Jones, J. Nathan Matias, Eric Lavigne, Sam Stickland, Mĺrten Strömberg, Sebastian Ude, Wolfram Kuss, Ben Woodhead ## Building diff --git a/entries/pokerth.md b/entries/pokerth.md index 76d953b7..5ad01a18 100644 --- a/entries/pokerth.md +++ b/entries/pokerth.md @@ -10,6 +10,7 @@ - Code language: C++ - Code license: AGPL-3.0 - Code dependency: Qt +- Developer: Felix Hammer, Florian Thauer, Lothar May, Kai Philipp, Erhard List Texas Hold'em poker game playable against up to nine computer-opponents or with people all over the world. diff --git a/entries/powermanga.md b/entries/powermanga.md index 25ff80fb..6b471b11 100644 --- a/entries/powermanga.md +++ b/entries/powermanga.md @@ -10,6 +10,6 @@ - Code license: GPL-3.0 - Code dependency: SDL - Assets license: GPL -- Developer: Bruno Ethvignot, Emmanuel Founaud, Etienne Sobole, Jean-Michel Martin de Santero, Sam Hocevar +- Developer: Bruno Ethvignot, Emmanuel Founaud, Etienne Sobole, Jean-Michel Martin de Santero, Sam Hocevar, Patrice Duhamel ## Building diff --git a/entries/prboom+.md b/entries/prboom+.md index e0dfab45..c8cf9032 100644 --- a/entries/prboom+.md +++ b/entries/prboom+.md @@ -8,5 +8,6 @@ - Code repository: https://svn.prboom.org/repos/branches/prboom-plus-24/prboom2/ (svn) - Code language: C - Code license: GPL-2.0 +- Developer: Andrey Budko, Graham Burgess ## Building diff --git a/entries/privateer-gemini_gold.md b/entries/privateer-gemini_gold.md index 524bd2c2..dad71fbe 100644 --- a/entries/privateer-gemini_gold.md +++ b/entries/privateer-gemini_gold.md @@ -9,6 +9,7 @@ - Code repository: https://svn.code.sf.net/p/privateer/code (svn) - Code language: C++ - Code license: GPL-2.0 +- Developer: Daston, John Cordell, Patrick Horn, AppCoder, CybaGirl, James Carthew, hellcatv, Klauss++, maddanio, Michael Strein, Matthew Kruer, Pheonix Rising, Dan Vigliotti, Travis Baldree, Andrew Westrate Uses the VegaStrike engine? diff --git a/entries/project_helena.md b/entries/project_helena.md index 4d7282bd..f8163d90 100644 --- a/entries/project_helena.md +++ b/entries/project_helena.md @@ -7,6 +7,7 @@ - Code repository: https://gitlab.com/EugeneLoza/Project-Helena.git - Code language: Pascal - Code license: GPL-3.0 +- Developer: EugeneLoza Requires: [Castle Game Engine](https://castle-engine.io/index.php), [repository](https://github.com/castle-engine/castle-engine) diff --git a/entries/psyco.md b/entries/psyco.md index 0a4e742e..f0da4366 100644 --- a/entries/psyco.md +++ b/entries/psyco.md @@ -8,6 +8,7 @@ - Code repository: @see-download - Code language: C - Code license: MIT +- Developer: Armin Rigo, Kjetil Jacobsen, David Fraser, Jonathan M. Franz, Michael Hudson-Doyle, Petru Paler, Riaan Booysen, Tim Hochberg, Christian Tismer Python specializing compiler. Unmaintained, refers to pypy.org diff --git a/entries/pushover.md b/entries/pushover.md index 44358379..9df69638 100644 --- a/entries/pushover.md +++ b/entries/pushover.md @@ -8,6 +8,7 @@ - Code repository: https://github.com/pushover/pushover.github.io.git - Code language: C++, C, Lua - Code license: GPL-3.0 +- Developer: Andreas Röver, Volker Diels-Grabsch, Wojtek Dabrowski ## Building diff --git a/entries/pybreak360.md b/entries/pybreak360.md index 423fba61..c02b26a6 100644 --- a/entries/pybreak360.md +++ b/entries/pybreak360.md @@ -10,5 +10,6 @@ - Code language: Python - Code license: GPL-3.0 - Code dependency: pygame +- Developer: gino ## Building diff --git a/entries/pykaraoke.md b/entries/pykaraoke.md index afbd2be2..2c46755c 100644 --- a/entries/pykaraoke.md +++ b/entries/pykaraoke.md @@ -8,6 +8,7 @@ - Code repository: https://gitlab.com/osgames/pykaraoke.git (conversion of cvs), http://pykaraoke.cvs.sourceforge.net (cvs) - Code language: Python - Code license: LGPL-2.1 +- Developer: Kelvin Lawson, David Rose, John S., Alvise Spano', William W. Ferrell Karaoke player. diff --git a/entries/pymapper.md b/entries/pymapper.md index a073a4a5..903892c6 100644 --- a/entries/pymapper.md +++ b/entries/pymapper.md @@ -8,6 +8,7 @@ - Code language: Python - Code license: GPL-3.0 - Code dependency: wxPython +- Developer: Mike Map making utility used for role-playing games. diff --git a/entries/qonk.md b/entries/qonk.md index 6391521a..548a57c2 100644 --- a/entries/qonk.md +++ b/entries/qonk.md @@ -8,7 +8,7 @@ - Code language: C++ - Code license: GPL-2.0 - Code dependency: SDL -- Developer: Anthony Mariette Louis Liekens, Jens Fursund, Loek, Robert Schuster, Troels Kofoed Jacobsen +- Developer: Anthony Mariette Louis Liekens, Jens Fursund, Loek, Robert Schuster, Troels Kofoed Jacobsen, Anthony Liekens, balachmar ## Building diff --git a/entries/quakespasm.md b/entries/quakespasm.md index 4a006c49..70ddbca5 100644 --- a/entries/quakespasm.md +++ b/entries/quakespasm.md @@ -9,6 +9,7 @@ - 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 +- Developer: Eric Wasylishen, Ozkan Sezer, Steven, svdijk See also https://github.com/Shpoike/Quakespasm diff --git a/entries/race_into_space.md b/entries/race_into_space.md index f0eb11cc..ac4645b9 100644 --- a/entries/race_into_space.md +++ b/entries/race_into_space.md @@ -11,6 +11,7 @@ - Code language: C, C++ - Code license: GPL-2.0 - Code dependency: libogg, libvorbis, SDL +- Developer: Will Glynn, Krzysztof A. Kościuszkiewicz, Michael McCarty, Pace Willisson, Leon Baradat, Bryant Moscon, Cartmancakes, Bart Buyens, James, Benjamin Weps, Todd Lang, Nik_akd, Erik Anderson, Philip Giuliano, William Sherwin Developers released the original game under GPL. diff --git a/entries/radakan.md b/entries/radakan.md index 4c937e26..2cb1ddc5 100644 --- a/entries/radakan.md +++ b/entries/radakan.md @@ -8,6 +8,7 @@ - Code language: Python - Code license: Custom - Code dependency: DirectPython, Panda3D +- Developer: Taldor, trapdoor, Wombbat Single player RPG game, set in a dark fantasy setting where four unique races struggle for survival. See also https://github.com/shadowislord/radakan (Java version). diff --git a/entries/rails_an_18xx_game_system.md b/entries/rails_an_18xx_game_system.md index bed949c5..e6a63446 100644 --- a/entries/rails_an_18xx_game_system.md +++ b/entries/rails_an_18xx_game_system.md @@ -7,6 +7,7 @@ - Code repository: https://github.com/Rails-18xx/Rails.git - Code language: Java - Code license: GPL-2.0 +- Developer: Dr. Martin Brumm, Brett Lentz, Chris Shaffer, Erik Vos, Frederick Weld, Iain, Freek Dijkstra, Michael Alexander, Stefan Frey, Chris Rails is a Java game engine intended to play any of the 18xx series of turn-based board games. diff --git a/entries/red_eclipse.md b/entries/red_eclipse.md index aedcf6ea..414ac6f9 100644 --- a/entries/red_eclipse.md +++ b/entries/red_eclipse.md @@ -7,6 +7,7 @@ - Code repository: https://github.com/red-eclipse/base.git - Code language: C++ - Code license: zlib +- Developer: Lee Salzman, Quinton Reeves, Henrik Pihl, Jeroen Boukens, Martin Erik Werner, Hugo Locurcio, favorito, Dale Weiler, Hirato Kirata, W!CK3D, lucky strike, Mike L., Fleeky Flanco, quaker66, baby-rabbit, Robert Forder, L. H. Lubomír, stefan, John, Georges Grondin, ulukai, Joshua Blocher, jojo First person arena shooter, featuring parkour, impulse boosts, and more. diff --git a/entries/ri-li.md b/entries/ri-li.md index ef019e2b..f84d48cb 100644 --- a/entries/ri-li.md +++ b/entries/ri-li.md @@ -10,7 +10,7 @@ - Code license: GPL-3.0 - Code dependency: SDL - Assets license: ? (GPL) -- Developer: Dominique Roux-Serret +- Developer: Dominique Roux-Serret, Roux-Serret Dominique Drive a toy wood train engine across many levels. diff --git a/entries/rickyd.md b/entries/rickyd.md index 70cbb3d4..e5fa6c07 100644 --- a/entries/rickyd.md +++ b/entries/rickyd.md @@ -8,6 +8,7 @@ - Code repository: https://git.code.sf.net/p/rickyd/code - Code language: C++ - Code license: GPL-2.0 +- Developer: Paulo Assis ## Building diff --git a/entries/rigs_of_rods.md b/entries/rigs_of_rods.md index 21b19606..994b81c3 100644 --- a/entries/rigs_of_rods.md +++ b/entries/rigs_of_rods.md @@ -10,6 +10,7 @@ - Code language: C, C++, AngelScript - Code license: GPL-3.0 - Code dependency: OGRE +- Developer: pricorde, tdev Drive, fly and sail various vehicles. diff --git a/entries/rogue_clone_iv.md b/entries/rogue_clone_iv.md index b3b7d0e2..1562ca14 100644 --- a/entries/rogue_clone_iv.md +++ b/entries/rogue_clone_iv.md @@ -9,6 +9,7 @@ - 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 +- Developer: Michael Lehotay, Nick Straguzzi See also https://github.com/naota/rogueclone2s-utf8, https://github.com/WatermelonTeam/RogueClone diff --git a/entries/rolemaster_office.md b/entries/rolemaster_office.md index 3b32d1f9..e5e1b865 100644 --- a/entries/rolemaster_office.md +++ b/entries/rolemaster_office.md @@ -7,6 +7,7 @@ - Code repository: https://git.code.sf.net/p/rmoffice/code - Code language: Java - Code license: Apache-2.0 +- Developer: Daniel Nettesheim PC and NPC character generator for Rolemaster RMFRP roleplaying system (from Iron Crown Enterprises). diff --git a/entries/rolisteam.md b/entries/rolisteam.md index 12c196d9..4d85ae82 100644 --- a/entries/rolisteam.md +++ b/entries/rolisteam.md @@ -8,6 +8,7 @@ - Code repository: https://github.com/Rolisteam/rolisteam.git (https://github.com/Rolisteam) - Code language: C++, JavaScript - Code license: GPL-2.0 +- Developer: obiwankennedy Virtual tabletop software. diff --git a/entries/rpdungeon-computer_aided_role_playing.md b/entries/rpdungeon-computer_aided_role_playing.md index eba4dcd5..b176aa68 100644 --- a/entries/rpdungeon-computer_aided_role_playing.md +++ b/entries/rpdungeon-computer_aided_role_playing.md @@ -7,6 +7,7 @@ - Code repository: https://gitlab.com/osgames/rpdungeon.git (backup of svn), https://svn.code.sf.net/p/rpdungeon/code (svn) - Code language: Pascal - Code license: GPL-2.0 +- Developer: Mattias Gaertner, michabaum Collection of programs and libraries for pen and paper role playing. diff --git a/entries/rrootage.md b/entries/rrootage.md index f4db118b..4be8563d 100644 --- a/entries/rrootage.md +++ b/entries/rrootage.md @@ -8,5 +8,6 @@ - Code language: C - Code license: 2-clause BSD - Code dependency: SDL +- Developer: Evil Mr Henry ## Building diff --git a/entries/scorched3d.md b/entries/scorched3d.md index 7b697f9f..b006bd85 100644 --- a/entries/scorched3d.md +++ b/entries/scorched3d.md @@ -10,5 +10,6 @@ - Code repository: https://github.com/osgamearchive/scorched3d.git (combination of cvs+svn+git), https://git.code.sf.net/p/scorched3d/git @add, https://svn.code.sf.net/p/scorched3d/code (svn), http://scorched3d.cvs.sourceforge.net (cvs) - Code language: C++ - Code license: GPL-2.0 +- Developer: Gavin Camp, Robert Hand, Cameron Smith, Paul Vint, David Beleznay, Joris Beugnies ## Building diff --git a/entries/scourge.md b/entries/scourge.md index d0b2ac76..d096f9b1 100644 --- a/entries/scourge.md +++ b/entries/scourge.md @@ -8,6 +8,7 @@ - Code language: C++ - Code license: GPL-2.0 - Code dependency: SDL +- Developer: Gabor Torok, Maarten Vanraes, Breakable, Alexander Kjäll, Charles Goodwin, CoD, David C., Diego J. Romero López, Mat L, Vambola Kotkas, Luca Perri, leadgolem, Dennis Murczak, FreeLikeGNU, Pál Zoltán Illés, Raphael Bosshard, retrix, Vincent FIACK See also: https://github.com/q4a/scourge2 diff --git a/entries/scrabble3d.md b/entries/scrabble3d.md index 7dee748b..cd75e77a 100644 --- a/entries/scrabble3d.md +++ b/entries/scrabble3d.md @@ -8,6 +8,7 @@ - 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 +- Developer: Scotty Place letters on the board like in crosswords. diff --git a/entries/scrolling_game_development_kit_2.md b/entries/scrolling_game_development_kit_2.md index 2804aae3..9e272b21 100644 --- a/entries/scrolling_game_development_kit_2.md +++ b/entries/scrolling_game_development_kit_2.md @@ -8,5 +8,6 @@ - Code repository: https://git.code.sf.net/p/sgdk2/git, https://gitlab.com/osgames/sgdk2.git @add, https://svn.code.sf.net/p/sgdk2/code (svn - contained in git) - Code language: C# - Code license: GPL-2.0 +- Developer: Benjamin Marty ## Building diff --git a/entries/sdl-ball.md b/entries/sdl-ball.md index d078d03a..8e96abdb 100644 --- a/entries/sdl-ball.md +++ b/entries/sdl-ball.md @@ -11,7 +11,7 @@ - Code license: GPL-3.0 - Code dependency: OpenGL, SDL - Assets license: ? (GPL) -- Developer: Jimmy Christensen +- Developer: Jimmy Christensen, Anders Birkedam, Quinton Reeves ## Building diff --git a/entries/sdl_asylum.md b/entries/sdl_asylum.md index e388ada3..6a9d0f21 100644 --- a/entries/sdl_asylum.md +++ b/entries/sdl_asylum.md @@ -12,7 +12,7 @@ - Code license: GPL-3.0 - Code dependency: OpenGL, SDL - Assets license: Public domain -- Developer: Andy Southgate, Hugh Robinson +- Developer: Andy Southgate, Hugh Robinson, blotwell C port of Asylum. [Successor of Asylum](http://asylum.acornarcade.com/) from 1994. diff --git a/entries/sdl_game_engine_2d.md b/entries/sdl_game_engine_2d.md index 540d1ca9..589ac7ed 100644 --- a/entries/sdl_game_engine_2d.md +++ b/entries/sdl_game_engine_2d.md @@ -7,5 +7,6 @@ - Code repository: https://gitlab.com/osgames/sge2d.git (backup of svn), https://svn.code.sf.net/p/sge2d/code (svn) - Code language: C - Code license: MIT +- Developer: Heiko Irrgang, Agnostic Entertainment, Christoph Frick ## Building diff --git a/entries/sdl_sopwith.md b/entries/sdl_sopwith.md index 71c6cdc0..a0d7f33c 100644 --- a/entries/sdl_sopwith.md +++ b/entries/sdl_sopwith.md @@ -10,6 +10,7 @@ - Code language: C - Code license: GPL-2.0 - Code dependency: SDL +- Developer: Simon Howard, Jesse Smith Port of the classic 8086 biplane shoot-em-up. See also the original [Sopwith](https://web.archive.org/web/20200131222432/http://davidlclark.com/page/sopwith) diff --git a/entries/secret_maryo_chronicles.md b/entries/secret_maryo_chronicles.md index 144d61eb..36ba15f1 100644 --- a/entries/secret_maryo_chronicles.md +++ b/entries/secret_maryo_chronicles.md @@ -9,6 +9,7 @@ - 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 +- Developer: Florian Richter, M Gagnon, Robert W, Mancus1984, Muammar El Khatib, shadowsnipes, Tristan Heaven Jump and Run game like Super Mario World with an advanced Editor. diff --git a/entries/sengoku_warring_states_of_japan.md b/entries/sengoku_warring_states_of_japan.md index 25701f1e..fbf81139 100644 --- a/entries/sengoku_warring_states_of_japan.md +++ b/entries/sengoku_warring_states_of_japan.md @@ -8,6 +8,7 @@ - Code language: C++, Lua - Code license: MIT - Code dependency: SDL +- Developer: matle, P_Hansson Something in-between of a turn-based/real-time strategy game set in Japan during the 16th and 17th centuries when warlords fought for control of the Japanese islands. More like alpha. diff --git a/entries/sharpkonquest.md b/entries/sharpkonquest.md index a4ffe20e..e380ebbe 100644 --- a/entries/sharpkonquest.md +++ b/entries/sharpkonquest.md @@ -8,6 +8,7 @@ - Code repository: https://gitlab.com/osgames/sharpkonquest.git (snapshot of source releases) - Code language: C# - Code license: GPL-2.0 +- Developer: Javier Marín License has been added after personal communication with the original maintainer (https://github.com/Trilarion/opensourcegames/issues/17). diff --git a/entries/siege_of_avalon_open_source.md b/entries/siege_of_avalon_open_source.md index 85607018..15d41931 100644 --- a/entries/siege_of_avalon_open_source.md +++ b/entries/siege_of_avalon_open_source.md @@ -8,6 +8,7 @@ - Code repository: https://github.com/CartBlanche/Siege-of-Avalon-Open-Source.git, http://soaos.cvs.sourceforge.net (cvs) - Code language: Pascal - Code license: Custom (NC) +- Developer: Dominique Louis, Jason Farmer, Dan, David house, Róbert Kisnémeth, Allen Halsted, pentadrago, Steven, Rodrigo Roman, Daniel Aim of this project is to port the original Win32 Delphi code, over to C# using MonoGame and XNA. diff --git a/entries/simutrans.md b/entries/simutrans.md index cd0c2a4e..6797765b 100644 --- a/entries/simutrans.md +++ b/entries/simutrans.md @@ -9,6 +9,7 @@ - Code repository: https://github.com/aburch/simutrans.git, https://svn.code.sf.net/p/simutrans/code (svn) - Code language: C++ - Code license: Artistic License-1.0 (https://github.com/aburch/simutrans/blob/master/LICENSE.txt) +- Developer: dwachs, Kieron Green, Markus Pristovsek, James Hood, An_dz, Martin_Prosek, DirkW, Nicholas Tanger, Eric Gindre, Gauthier.N, Fabio128, IgorEliezer, Jan Korbel, Leartin Dialonis, Lubak91, makie, Günter Beine, Miziiik, martin, Mobo, Nathanael Nerode, Tomas Padevet, PappeTeeMaster, Olaf P, sojo, Timothy, The Transporter, TurfIt, Václav Macůrek, Vladislav Kurz, Vladimír Slávik, Albert Ruiz A cross-platform simulation game in which the player strives to run a successful transport system. Is [this](https://www.simutrans.com/en/) the English version? diff --git a/entries/skrupel-tribute_compilation.md b/entries/skrupel-tribute_compilation.md index 39cbfd28..94dd3143 100644 --- a/entries/skrupel-tribute_compilation.md +++ b/entries/skrupel-tribute_compilation.md @@ -8,6 +8,7 @@ - Code repository: https://github.com/kantoks/skrupel.git (continuation), https://gitlab.com/osgames/skrupel.git @add, http://skrupel.cvs.sourceforge.net/ (cvs) - Code language: PHP, JavaScript - Code license: GPL-2.0 +- Developer: Bernd Kantoks, DoubleMalt, Dready, Björn Finke, JANNiS, syox1, weaselchen Web-based cross between amazing games like, VGAPlanets, Ascendancy an for example Master of Orion. Many code comments and variable names in German. diff --git a/entries/slashem.md b/entries/slashem.md index 4ff1ee42..97b95343 100644 --- a/entries/slashem.md +++ b/entries/slashem.md @@ -9,6 +9,7 @@ - Code repository: https://github.com/osgamearchive/slashem.git (archived conversion of cvs), http://slashem.cvs.sourceforge.net (cvs) - Code language: C, C++ - Code license: Custom (NetHack license) +- Developer: J. Ali Harlow, Warren Cheung, Clive Crous, Paul Hurtley, Pekka Rousu Variant of the roguelike game NetHack that offers extra features, monsters, and items. See also https://github.com/dirkz/slashem-iphone, https://github.com/Elronnd/slashem-next, https://code.google.com/archive/p/slashem-macosx/, https://github.com/blitz/slashem, https://github.com/mistydemeo/slashem, diff --git a/entries/slay.md b/entries/slay.md index 3de17e53..4610ae25 100644 --- a/entries/slay.md +++ b/entries/slay.md @@ -7,5 +7,6 @@ - Code repository: https://gitlab.com/osgames/slaygame.git (snapshot of source releases) - Code language: Java - Code license: GPL-3.0 +- Developer: phill ## Building diff --git a/entries/slingshot.md b/entries/slingshot.md index ade41812..a420163b 100644 --- a/entries/slingshot.md +++ b/entries/slingshot.md @@ -10,7 +10,7 @@ - Code license: GPL-2.0 - Code dependency: pygame - Assets license: GPL-2.0 -- Developer: Jonathan Musther, Bart Mak +- Developer: Jonathan Musther, Bart Mak, SpeckFleck, Greg* Gravity‐based. diff --git a/entries/smash_battle.md b/entries/smash_battle.md index 8e24b12c..15020cd3 100644 --- a/entries/smash_battle.md +++ b/entries/smash_battle.md @@ -8,5 +8,6 @@ - Code repository: @see-download - Code language: C++ - Code license: ? +- Developer: Bert Hekman, Jeroen Groeneweg ## Building diff --git a/entries/snowballz.md b/entries/snowballz.md index 42cb4305..81af019e 100644 --- a/entries/snowballz.md +++ b/entries/snowballz.md @@ -8,6 +8,6 @@ - Code license: ? (GPL version?) - Code dependency: pygame, pyglet, Rabbyt - Assets license: GPL -- Developer: Joey Marshall, Mikey Lubker +- Developer: Joey Marshall, Mikey Lubker, Darkflame, Daren, Matthew Powell, DunkFordyce, geekwad, Jared, Benjamin P. Jung, Matthew Marshall, Sean R. Lynch, Wansti ## Building diff --git a/entries/softpixel_engine.md b/entries/softpixel_engine.md index 5233bd09..397ce1e1 100644 --- a/entries/softpixel_engine.md +++ b/entries/softpixel_engine.md @@ -8,6 +8,7 @@ - Code repository: https://gitlab.com/osgames/softpixelengine.git (import of svn), https://svn.code.sf.net/p/softpixelengine/code (svn) - Code language: C++ - Code license: zlib +- Developer: Lukas Hermanns See also [SoftPixel Editor](https://sourceforge.net/projects/softpixeleditor/) diff --git a/entries/sopwith_3.md b/entries/sopwith_3.md index 7ea97f57..294ec92a 100644 --- a/entries/sopwith_3.md +++ b/entries/sopwith_3.md @@ -8,6 +8,7 @@ - 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 +- Developer: Jornand de Buisonjé, Andrew Jenner ## Building diff --git a/entries/space_faring.md b/entries/space_faring.md index c063b5df..370ef1e4 100644 --- a/entries/space_faring.md +++ b/entries/space_faring.md @@ -7,6 +7,7 @@ - Code repository: https://git.code.sf.net/p/space-faring/gitcode, https://svn.code.sf.net/p/space-faring/code (svn active) - Code language: Java - Code license: GPL-3.0 +- Developer: Astrometric, Steaker Quite a lot of design documentation available. diff --git a/entries/space_opera.md b/entries/space_opera.md index ed7236e4..a415903d 100644 --- a/entries/space_opera.md +++ b/entries/space_opera.md @@ -8,5 +8,6 @@ - Code repository: https://gitlab.com/osgames/spaceopera.git (backup of svn), https://svn.code.sf.net/p/spaceopera/code (svn) - Code language: Java - Code license: GPL-2.0 +- Developer: Lorenz Beyeler ## Building diff --git a/entries/space_trader_for_windows.md b/entries/space_trader_for_windows.md index f2cfc19a..c6c4d72a 100644 --- a/entries/space_trader_for_windows.md +++ b/entries/space_trader_for_windows.md @@ -8,6 +8,7 @@ - Code repository: https://github.com/SpaceTraderGame/SpaceTrader-Windows.git, http://spacetraderwin.cvs.sourceforge.net (cvs) - Code language: C# - Code license: GPL-2.0 +- Developer: Jay French, David Pierron Port to C# (.NET) of the popular game for Palm. diff --git a/entries/space_war.md b/entries/space_war.md index 2063112b..d84837dd 100644 --- a/entries/space_war.md +++ b/entries/space_war.md @@ -7,5 +7,6 @@ - Code repository: https://git.code.sf.net/p/space-war-2/git - Code language: Java - Code license: Apache-2.0 +- Developer: Honza J. ## Building diff --git a/entries/spacezero.md b/entries/spacezero.md index 8aae496a..1a2adc51 100644 --- a/entries/spacezero.md +++ b/entries/spacezero.md @@ -8,5 +8,6 @@ - Code repository: https://svn.code.sf.net/p/spacezero/code (svn) - Code language: C - Code license: GPL-3.0 +- Developer: mrevenga ## Building diff --git a/entries/speed_dreams.md b/entries/speed_dreams.md index e9909968..b31e9d40 100644 --- a/entries/speed_dreams.md +++ b/entries/speed_dreams.md @@ -7,6 +7,7 @@ - Code repository: https://svn.code.sf.net/p/speed-dreams/code (svn active) - Code language: C++ - Code license: GPL-2.0 +- Developer: beaglejoe, simon wood, Bertaux Xavier, Andrew, Bart, Paul DeVaul, briangr, Haruna Matsumori, IcyStar, Robert Reif, sjFreak, Kristof, kilo aka Gábor Kmetykó, madbad, Mart Kelder, Ocirne94, Jean-Philippe Meuret, rvlander, Daniel Schellhammer, xDraconian, Dr. Wolf-Dieter Beelitz, Ney Cândido da Silva Ribeiro Motorsport Simulator featuring high-quality 3D graphics and an accurate physics engine. diff --git a/entries/spring.md b/entries/spring.md index b3d41a54..1a77a381 100644 --- a/entries/spring.md +++ b/entries/spring.md @@ -9,6 +9,7 @@ - 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 +- Developer: abma, Eshed, -jK-, Tobi Vollebregt, Robin Vobruba, Betalord, Robin Westberg, Stefan Johansson, JeeZ, jcnossen, George Hilios, Karl-R., Yeha See also [Spring 1944](http://spring1944.net/) a special scenario of the spring engine, code: https://github.com/spring1944/spring1944 diff --git a/entries/starblastrix.md b/entries/starblastrix.md index 734376b9..e87d40e9 100644 --- a/entries/starblastrix.md +++ b/entries/starblastrix.md @@ -8,5 +8,6 @@ - Code repository: https://gitlab.com/osgames/starblastrix.git (import of sources) - Code language: C++ - Code license: GPL-2.0 +- Developer: lbprogramming ## Building diff --git a/entries/stareater.md b/entries/stareater.md index f720b78c..3f09904e 100644 --- a/entries/stareater.md +++ b/entries/stareater.md @@ -9,5 +9,6 @@ - Code language: C# - Code license: GPL-3.0 - Code dependency: MonoGame +- Developer: EmP ## Building diff --git a/entries/stargus.md b/entries/stargus.md index d764fee2..b08b7974 100644 --- a/entries/stargus.md +++ b/entries/stargus.md @@ -9,6 +9,7 @@ - Code language: C++, Lua - Code license: GPL-2.0 - Code dependency: Stratagus +- Developer: n0.obAtroN, Jimmy Salmon, Iuri Fiedoruk, Andreas, DeX, Forrest, Bursig Rafal, Martin Gerhardy, Tpimp ## Building diff --git a/entries/stars_nova.md b/entries/stars_nova.md index 73ba4499..3872a408 100644 --- a/entries/stars_nova.md +++ b/entries/stars_nova.md @@ -8,5 +8,6 @@ - Code repository: https://git.code.sf.net/p/stars-nova/code, https://svn.code.sf.net/p/stars-nova/svn (svn) - Code language: C# - Code license: GPL-2.0 +- Developer: Daniel Vale, Aeglos, Laurie Vale, Carter, Ed Kolis, Pavel Kazlou, Jan Magne Tjensvold, Foo Five Thousand, ForceUser, k808j, Henning Maas, Marlon, Nigel, Nibor, NorthBender, Pawel Gielmuda, PL_Andrev, Marq Singer, retired C# coder, Shadallark, TimD ## Building diff --git a/entries/stendhal.md b/entries/stendhal.md index 7e6362b8..929ce724 100644 --- a/entries/stendhal.md +++ b/entries/stendhal.md @@ -6,6 +6,7 @@ - Code repository: https://github.com/arianne/stendhal.git, https://git.code.sf.net/p/arianne/stendhal @add - Code language: Java - Code license: GPL-2.0 +- Developer: Kimmo Rundelin, Katie Russell, Hendrik Brummermann, AntumDeluge, Balaur, bleutailfly, bluelads4, filinep, Lumocra, Markus, Martin Fuchs, Laguz, monsterdhal, onu, Chris, plassy, Marcel Miebach, sjtsp2008, soniccuz, Storyteller, RedQueen, tigertoes, yoriy Multiplayer online adventure game with an old school feel. Uses the Arianne engine. diff --git a/entries/stepmania.md b/entries/stepmania.md index 43f05fbe..3ef07db9 100644 --- a/entries/stepmania.md +++ b/entries/stepmania.md @@ -11,6 +11,7 @@ - Code language: C, C++, Lua - Code license: MIT - Assets license: CC-BY-NC +- Developer: Chris Danford, Glenn Maynard, Colby Klein, Steve Checkoway, AJ Kelly, Alex Davidov, John Bauer, Adam Lowman, Josh Allen, Bronstad, buchan, Charles Lohr, Tracy Ward, Eric Holniker, Tom Jackson, Dan Colardeau, Jason Walsh, Eric Gustafson, Greg Cotton, Hugo Hromic, Steven Towle, Mike Calfin, Kevin Slaughter, Fred Wulff, Sean Burke, Skyone, Steve, Nemezis Edge, tvStatic, vdl, Wolfman, Geoff Benson, Xsoft, Andrew Arsenault Dance and rhythm game. diff --git a/entries/stressfreezone.md b/entries/stressfreezone.md index 3d69bb92..02f35812 100644 --- a/entries/stressfreezone.md +++ b/entries/stressfreezone.md @@ -8,7 +8,7 @@ - Code language: C++, Lua - Code license: GPL-3.0 - Code dependency: Lugre -- Developer: Mark Saward, Robert Noll +- Developer: Mark Saward, Robert Noll, Sebastian Dorda Focused on cooperative (non-massive)-multiplayer and intuitive gameplay, that is fun to play in short bursts, e.g. on LAN parties. diff --git a/entries/stunt_car_racer_remake.md b/entries/stunt_car_racer_remake.md index 6a488afc..7c25fbdc 100644 --- a/entries/stunt_car_racer_remake.md +++ b/entries/stunt_car_racer_remake.md @@ -9,6 +9,7 @@ - Code repository: https://git.code.sf.net/p/stuntcarremake/code - Code language: C++ - Code license: Proprietary (!) +- Developer: Daniel Vernon, FluffyFreak Uses the original Amiga track data, sound samples and algorithms for the car physics. Is this a copyright issue? Can it be avoided? diff --git a/entries/stunt_rally.md b/entries/stunt_rally.md index 6ab94a1e..cc30339b 100644 --- a/entries/stunt_rally.md +++ b/entries/stunt_rally.md @@ -10,6 +10,7 @@ - Code language: C, C++ - Code license: GPL-3.0 - Code dependency: OGRE, SDL2, VDrift +- Developer: Crystal Hammer With rally style of driving. diff --git a/entries/sudokuki.md b/entries/sudokuki.md index aed62fc5..3bf9f512 100644 --- a/entries/sudokuki.md +++ b/entries/sudokuki.md @@ -10,6 +10,6 @@ - Code language: C, Java - Code license: GPL-3.0 - Assets license: GPL-3.0 -- Developer: Sylvain Vedrenne +- Developer: Sylvain Vedrenne, ApeHanger, Dmitry Salnikov, Daneih Ismail, "Fumiaki NAKANISHI (中西史明)", Janis Eisaks, Rafael Fontenelle, Stavros, Jeroen Broks ## Building diff --git a/entries/sundog_resurrection.md b/entries/sundog_resurrection.md index 58cfabda..cfc14f6d 100644 --- a/entries/sundog_resurrection.md +++ b/entries/sundog_resurrection.md @@ -9,6 +9,7 @@ - Code repository: https://svn.code.sf.net/p/sundog/code (svn), http://sundog.cvs.sourceforge.net (cvs) - Code language: Java, Python - Code license: ? +- Developer: Bruce F. Webster, Jake La Foret, Patrick Devine, Arnaud Cheritat, CrazyWeazel, Jeremy Hitchcock, Jeremy Yoder, rick browne, Matthew, Darcy Phipps, Les Thompson, Brandon Little Where are the newer sources of the resurrection project? Why is there a NDA for taking part in the beta? Looks not very open. diff --git a/entries/supertuxkart.md b/entries/supertuxkart.md index d37f06a8..f5b09a90 100644 --- a/entries/supertuxkart.md +++ b/entries/supertuxkart.md @@ -8,6 +8,7 @@ - Code repository: https://github.com/supertuxkart/stk-code.git, https://svn.code.sf.net/p/supertuxkart/code (svn) - Code language: C++, C - Code license: GPL-3.0 +- Developer: Alayan, M Gagnon, Ben Au, Deve, jean-manuel clemençon, Christian Zigotzky, Néd J., Matthew Trescott, Stephen, Unitraxx Kart racing game. diff --git a/entries/t-bots.md b/entries/t-bots.md index 1b12d0c3..59da2b06 100644 --- a/entries/t-bots.md +++ b/entries/t-bots.md @@ -7,6 +7,7 @@ - Code repository: https://gitlab.com/osgames/tbots.git (backup of cvs), https://tbots.cvs.sourceforge.net (cvs) - Code language: C - Code license: GPL-2.0 +- Developer: Sebastien LEIX, Aitonfrere, Cedric STANUS, Mike Cotterman, Glenn Nilsen Robot battle game simulator. diff --git a/entries/t3.md b/entries/t3.md index 2a6a89b5..1ccde2d3 100644 --- a/entries/t3.md +++ b/entries/t3.md @@ -9,6 +9,6 @@ - Code repository: https://gitlab.com/osgames/t-3.git (conversion of cvs), http://t-3.cvs.sourceforge.net (cvs) - Code language: C++ - Code license: GPL-2.0 -- Developer: Derek Hausauer +- Developer: Derek Hausauer, slightlytwisted ## Building diff --git a/entries/tactics_squad.md b/entries/tactics_squad.md index 759e20ed..d9f375e7 100644 --- a/entries/tactics_squad.md +++ b/entries/tactics_squad.md @@ -9,7 +9,7 @@ - Code language: C++ - Code license: GPL-2.0 - Code dependency: SDL -- Developer: Luismv +- Developer: Luismv, HaveAPinch Real-time tactical simulation in which the player controls up to sixteen soldiers in a futuristic environment. diff --git a/entries/tenes_empanadas_graciela.md b/entries/tenes_empanadas_graciela.md index 91477704..cb3a4c24 100644 --- a/entries/tenes_empanadas_graciela.md +++ b/entries/tenes_empanadas_graciela.md @@ -9,6 +9,7 @@ - Code repository: https://github.com/wfx/teg.git - Code language: C, JavaScript, Perl - Code license: GPL-2.0 +- Developer: Ricardo Quesada, Wolfgang Morawetz Clone of 'Plan Tactico y Estrategico de la Guerra', which is a pseudo-clone of Risk. diff --git a/entries/the_battle_for_wesnoth.md b/entries/the_battle_for_wesnoth.md index dae242f7..342a7cb3 100644 --- a/entries/the_battle_for_wesnoth.md +++ b/entries/the_battle_for_wesnoth.md @@ -9,6 +9,7 @@ - Code repository: https://github.com/wesnoth/wesnoth.git - Code language: C, C++, Java, Python, Lua - Code license: GPL-2.0 +- Developer: David White, Nils Kneuper, Iris Morelle, vultraz, Martin Hrubý, Sergey Popov, Pentarctagon High fantasy theme. diff --git a/entries/the_bubs_brothers.md b/entries/the_bubs_brothers.md index 9fd25274..eaf2c915 100644 --- a/entries/the_bubs_brothers.md +++ b/entries/the_bubs_brothers.md @@ -10,7 +10,7 @@ - Code language: Python - Code license: MIT - Code dependency: pygame -- Developer: Armin Rigo +- Developer: Armin Rigo, Olivier Dormond, opqdonut, Pasi Kallinen Networked clone of the classical Bubble Bobble board game. diff --git a/entries/the_butterfly_effect.md b/entries/the_butterfly_effect.md index 5d4fcc71..e32bb73c 100644 --- a/entries/the_butterfly_effect.md +++ b/entries/the_butterfly_effect.md @@ -10,6 +10,7 @@ - Code language: C++ - Code license: GPL-2.0 - Code dependency: Box2D, Qt +- Developer: Klaas van Gend, Peter van Ginneken, Aschwin Marsman, Quinten Marsman Realistic physics simulations. diff --git a/entries/the_castles_of_dr_creep.md b/entries/the_castles_of_dr_creep.md index 666e2791..e6818f8c 100644 --- a/entries/the_castles_of_dr_creep.md +++ b/entries/the_castles_of_dr_creep.md @@ -8,6 +8,7 @@ - Code repository: https://github.com/segrax/DrCreep.git, https://svn.code.sf.net/p/creep/code (svn) - Code language: C++, Shell - Code license: GPL-3.0 +- Developer: Robert Crossfield, Kirsty ## Building diff --git a/entries/the_clans.md b/entries/the_clans.md index ec967525..a5b9a523 100644 --- a/entries/the_clans.md +++ b/entries/the_clans.md @@ -8,6 +8,7 @@ - Code repository: https://gitlab.com/osgames/theclans.git (backup of cvs), http://theclans.cvs.sourceforge.net/ (cvs) - Code language: C - Code license: GPL-2.0 +- Developer: Allen Ussher, Stephen James Hurd, Tim Nordell, Rob Swindell The Clans was a popular game written for online BBSes back in the day of their great popularity. diff --git a/entries/the_endless_dungeons.md b/entries/the_endless_dungeons.md index 428207dd..58c0dc84 100644 --- a/entries/the_endless_dungeons.md +++ b/entries/the_endless_dungeons.md @@ -10,6 +10,7 @@ - Code license: CC-BY-NC-SA-2.0 - Code dependency: Allegro - Assets license: CC-BY-NC-SA-2.0 +- Developer: LitmusDragon Free random dungeon game RPG (Roguelike) diff --git a/entries/the_epic_of_heroes.md b/entries/the_epic_of_heroes.md index aada923a..0b636f06 100644 --- a/entries/the_epic_of_heroes.md +++ b/entries/the_epic_of_heroes.md @@ -7,6 +7,7 @@ - Code repository: https://git.code.sf.net/p/epicheroes/code, https://gitlab.com/osgames/epicheroes.git @add - Code language: C++ - Code license: GPL-3.0 +- Developer: Christian Duta A cooperative game where the main goal is to defeat the evil empire. diff --git a/entries/the_hunt_for_the_lost_rainbow_jewels_jewelhunt.md b/entries/the_hunt_for_the_lost_rainbow_jewels_jewelhunt.md index ccab1a0e..93473163 100644 --- a/entries/the_hunt_for_the_lost_rainbow_jewels_jewelhunt.md +++ b/entries/the_hunt_for_the_lost_rainbow_jewels_jewelhunt.md @@ -7,6 +7,7 @@ - Code repository: https://gitlab.com/osgames/jewelhunt.git (backup of svn), https://svn.code.sf.net/p/jewelhunt/code (svn) - Code language: Java - Code license: GPL-2.0 +- Developer: Hajo The rainbow jewels have been abducted from the temple of the rainbow colors, and the world will slowly bleach out if you can't retrieve them. diff --git a/entries/the_legend_of_edgar.md b/entries/the_legend_of_edgar.md index d63852aa..379dece6 100644 --- a/entries/the_legend_of_edgar.md +++ b/entries/the_legend_of_edgar.md @@ -8,5 +8,6 @@ - Code repository: https://github.com/riksweeney/edgar.git - Code language: C - Code license: GPL-2.0 +- Developer: Richard Sweeney ## Building diff --git a/entries/the_rush.md b/entries/the_rush.md index e0f4914b..e55eecec 100644 --- a/entries/the_rush.md +++ b/entries/the_rush.md @@ -8,6 +8,7 @@ - Code repository: https://svn.code.sf.net/p/therush/code (svn) - Code language: C++ - Code license: GPL-2.0 +- Developer: Cedric Guillemet, Adrien Destugues, MCMic ## Building diff --git a/entries/the_ur-quan_masters.md b/entries/the_ur-quan_masters.md index 58cd75a2..876de005 100644 --- a/entries/the_ur-quan_masters.md +++ b/entries/the_ur-quan_masters.md @@ -9,6 +9,7 @@ - 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 +- Developer: Alex Volkov, Mika Kolehmainen, Chris Nelson, Michael Martin, Serge van den Boom (or UQM) project ports Star Control II to modern operating systems. See also [Ur-Quan Masters HD](https://sourceforge.net/projects/urquanmastershd/) diff --git a/entries/theme_park_builder_3d_cad.md b/entries/theme_park_builder_3d_cad.md index e47393bf..1c68b556 100644 --- a/entries/theme_park_builder_3d_cad.md +++ b/entries/theme_park_builder_3d_cad.md @@ -9,5 +9,6 @@ - Code language: C++ - Code license: GPL-3.0 - Code dependency: OpenGL, SDL +- Developer: AlabamaCajun, Jonathan Wilson, The_Cook ## Building diff --git a/entries/thousand_parsec.md b/entries/thousand_parsec.md index a850b4a4..a8df2910 100644 --- a/entries/thousand_parsec.md +++ b/entries/thousand_parsec.md @@ -8,6 +8,7 @@ - Code language: C++, Python - Code license: GPL-2.0 - Code dependency: NumPy, psyco, pygame, pyOpenSSL, wxPython +- Developer: Lee Begg, Aaron Mavrinac, Tim 'mithro' Ansell, Aqua Fox, James Gardner, Greywhind, Krzysztof Sobolewski, Jotham, Jure Repinc, Matthew Draper, Michael Winslow, nash, niphree, Tyler A framework for turn-based 4 X's game (eXplore, eXpand, eXploit, eXterminate). Designed for long games, supporting massive universes and has an easily expanded tech tree. Should this be a game engine instead? Server is written in C++. Client is written in Python. diff --git a/entries/tintin++.md b/entries/tintin++.md index af5ec90c..c53f3f59 100644 --- a/entries/tintin++.md +++ b/entries/tintin++.md @@ -8,6 +8,7 @@ - Code repository: https://github.com/scandum/tintin.git - Code language: C - Code license: GPL-3.0 +- Developer: Scandum MUD client. A [MUD client](https://en.wikipedia.org/wiki/MUD_client) diff --git a/entries/toppler.md b/entries/toppler.md index 5d7a22a1..470e59ed 100644 --- a/entries/toppler.md +++ b/entries/toppler.md @@ -9,5 +9,6 @@ - Code repository: @see-download - Code language: C++ - Code license: GPL-2.0 +- Developer: Andreas Röver, Dylan Thurston, Pasi Kallinen ## Building diff --git a/entries/torcs_the_open_racing_car_simulator.md b/entries/torcs_the_open_racing_car_simulator.md index f44efe78..b21850ea 100644 --- a/entries/torcs_the_open_racing_car_simulator.md +++ b/entries/torcs_the_open_racing_car_simulator.md @@ -11,6 +11,7 @@ - Code license: GPL-2.0 - Code dependency: GLUT - Assets license: FAL +- Developer: Bernhard Wymann, Eric Espie, Christophe Guionneau, Christos Dimitrakakis, Rémi Coulom Car racing simulation. diff --git a/entries/transfusion.md b/entries/transfusion.md index 90810482..7022c54b 100644 --- a/entries/transfusion.md +++ b/entries/transfusion.md @@ -8,5 +8,6 @@ - Code repository: http://hg.code.sf.net/p/blood/code (hg) - Code language: C - Code license: GPL-2.0 +- Developer: Mathieu Olivier, William Weilep, Cruaich, Da Weezle, Dave Turner, Greg E, Luke Ashdown, Forest Hale, Predator, Timothy Hale ## Building diff --git a/entries/tremulous.md b/entries/tremulous.md index ff10f1e9..605014b6 100644 --- a/entries/tremulous.md +++ b/entries/tremulous.md @@ -12,5 +12,6 @@ - Code license: GPL-2.0 - Code dependency: SDL - Assets license: CC-BY-SA-2.5 +- Developer: Tim Angus, DASPRiD, Nick Jansens, Robin Marshall, Jan, Michael McInerney, Soup ## Building diff --git a/entries/tressette.md b/entries/tressette.md index ca67f7f6..c726c538 100644 --- a/entries/tressette.md +++ b/entries/tressette.md @@ -8,6 +8,7 @@ - Code repository: https://gitlab.com/osgames/tressette.git (conversion of svn), https://svn.code.sf.net/p/tressette/code (svn) - Code language: C++ - Code license: GPL-2.0 +- Developer: Luz de Gan Italian card game. diff --git a/entries/trigger.md b/entries/trigger.md index 54571139..ac1b5c7b 100644 --- a/entries/trigger.md +++ b/entries/trigger.md @@ -8,6 +8,6 @@ - Code repository: https://svn.code.sf.net/p/trigger-rally/code (svn active) - Code language: C++ - Code license: GPL-2.0 -- Developer: Jasmine Langridge, Richard Langridge +- Developer: Jasmine Langridge, Richard Langridge, Andrei, Onsemeliot, qubodup, Martin Scherer, Emanuele Sorce ## Building diff --git a/entries/trinity_reign.md b/entries/trinity_reign.md index bf385529..2a0c6276 100644 --- a/entries/trinity_reign.md +++ b/entries/trinity_reign.md @@ -6,6 +6,7 @@ - Code repository: https://gitlab.com/osgames/ura-game.git (backup of svn), https://svn.code.sf.net/p/ura-game/code (svn) - Code language: C++ - Code license: GPL-3.0 +- Developer: cig, Danny, Yill, Lucas Thode, Don King Resurrected, Shawn Krisman ## Building diff --git a/entries/trip_on_the_funny_boat.md b/entries/trip_on_the_funny_boat.md index cc1e2dbc..dfc7d269 100644 --- a/entries/trip_on_the_funny_boat.md +++ b/entries/trip_on_the_funny_boat.md @@ -10,7 +10,7 @@ - Code license: GPL-2.0 - Code dependency: PixelPerfect - Assets license: Expat license -- Developer: Puskutraktori (code, graphics, sound), Olli "Hectigo" Etuaho (graphics, code), Joona "JDruid" Karjalainen (music), Konstantin Yegupov +- Developer: Puskutraktori (code, graphics, sound), Olli "Hectigo" Etuaho (graphics, code), Joona "JDruid" Karjalainen (music), Konstantin Yegupov, Pekuja, Olli Etuaho Uses fonts by Bitstream Inc. diff --git a/entries/triplea.md b/entries/triplea.md index 9db8b5cf..eff86715 100644 --- a/entries/triplea.md +++ b/entries/triplea.md @@ -8,5 +8,6 @@ - Code repository: https://github.com/triplea-game/triplea.git, https://svn.code.sf.net/p/triplea/code (svn) - Code language: Java - Code license: GPL-2.0 +- Developer: redrum, RoiEX, Sean Bridges, Chris Duncan, cbung, ComradeKev, Lane Schwartz, Edwin van der Wal, frigoref, Keith Heppell, Kevin Moore, Logan Bender, squid, Wisconsin ## Building diff --git a/entries/trophy.md b/entries/trophy.md index 0ad26e2c..a21e5c70 100644 --- a/entries/trophy.md +++ b/entries/trophy.md @@ -9,6 +9,7 @@ - Code language: C++ - Code license: GPL-2.0 - Code dependency: ClanLib +- Developer: Andrew Mustun, Michael Mustun, Colin Pitrat, Matthieu Lecesne, Mark Zequeida, Trevor Cordes With features such as shooting at other players, buying new cars. diff --git a/entries/tumiki_fighters.md b/entries/tumiki_fighters.md index 8a9c1026..43f6d7e0 100644 --- a/entries/tumiki_fighters.md +++ b/entries/tumiki_fighters.md @@ -10,6 +10,7 @@ - Code language: D, C++ - Code license: 2-clause BSD - Code dependency: SDL +- Developer: Evil Mr Henry ## Building diff --git a/entries/tux_football.md b/entries/tux_football.md index 6f5a77a1..fe66e868 100644 --- a/entries/tux_football.md +++ b/entries/tux_football.md @@ -10,6 +10,7 @@ - Code language: C++ - Code license: GPL-2.0 - Code dependency: SDL +- Developer: Christoph Brill, tenk, Jason Wood ## Building diff --git a/entries/tux_of_math_command.md b/entries/tux_of_math_command.md index 6579bf9d..2d752529 100644 --- a/entries/tux_of_math_command.md +++ b/entries/tux_of_math_command.md @@ -9,6 +9,7 @@ - Code repository: @see-download - Code language: C - Code license: GPL-3.0 +- Developer: Samuel N. Hart, David Bruce, William Kendrick, Richard June Math drill game starring Tux, the Linux Penguin. Lost SVN (was at svn.debian.org/wsvn/tux4kids/tuxmath). diff --git a/entries/tux_paint.md b/entries/tux_paint.md index 2f666ac7..562d8d23 100644 --- a/entries/tux_paint.md +++ b/entries/tux_paint.md @@ -9,7 +9,7 @@ - Code language: C, C++ - Code license: GPL-2.0 - Assets license: ? (GPL-2.0 + Public Domain) -- Developer: New Breed Software, Bill Kendrick +- Developer: New Breed Software, Bill Kendrick, William Kendrick, Andrew Corcoran, Lanna Opensource Software, Henrik Pihl, Michael Bauer, Albert Cahalan, Alisa Parashchenko, Aracnus, Bruno Dilly, Luc Schrijvers, Christian Hammond, Clytie Siddall, Kevin Scannell, Samuel N. Hart, Doruk Fisek, Shin-ichi TOYAMA, Kevin Donnelly, Doug Barbieri, Serhij Dubyk, alessandro pasotti, Fabian Franz, Fatma Ozkan, foo-script, F Wolff, Gia Shervashidze, Eugene Zelenko, Karl Ove Hufthammer, Ingo Blechschmidt, Ibrahima SARR, Jacques Chion, Jan Wynholds, Jakub Friedl, Joe Hansen, John Popplewell, Juan Irigoien, Kartik Mistry, Marco Milanesi, Linguasoft, Török Gábor, Martin Fuhrer, morshus, Muhammad Najmi bin Ahmad Zabidi, Namrata Nehete, Tom Richards, Pere Pujal i Carabantes, Marcin 'ahwayakchih' Konicki, Reilly Watson, Scott McCreary, secretlondon, Steve Karg, smarquespt, Sokhem, Song Huang, Pablo Saratxaga, Ben Armstrong, syntheticsw, Tarmo Toikkanen, Terje Bergström, Thomas Klausner, Dan Shields, Mark K. Kim, Rasmus Erik Voel Jensen, Darrell Walisser, Xandru Armesto Drawing game intended for children ages 3 to 12. The user is presented with a blank canvas and a variety of drawing tools to help them be creative. diff --git a/entries/tux_racer.md b/entries/tux_racer.md index 8e5aa976..278001c7 100644 --- a/entries/tux_racer.md +++ b/entries/tux_racer.md @@ -8,6 +8,7 @@ - Code repository: https://gitlab.com/osgames/tuxracer.git (backup of cvs), http://tuxracer.cvs.sourceforge.net/ (cvs) - Code language: C - Code license: GPL-2.0 +- Developer: Jasmin Patry, James Barnard, Eric Hall, Ingo Ruhnke, Patrick Gilhuly, Vincent C.H. Ma Racing game featuring Tux, the Linux Penguin. See also https://github.com/ellenpoe/TuxRacer-SDL2, https://github.com/wosigh/tuxracer, https://sourceforge.net/projects/extremetuxracer/, http://www.tuxracer.com/, https://github.com/gonium/fc-extremetuxracer diff --git a/entries/ufo_alien_invasion.md b/entries/ufo_alien_invasion.md index a7145679..4c677964 100644 --- a/entries/ufo_alien_invasion.md +++ b/entries/ufo_alien_invasion.md @@ -9,6 +9,7 @@ - Code repository: https://github.com/ufoai/ufoai.git (mirror), https://git.code.sf.net/p/ufoai/code - Code language: C, C++ - Code license: GPL-2.0 +- Developer: Duke, DarkRain, Tron, Tamás Fehérvári, NateWr, Holger 'ShipIt' Gellrich, Martin Gerhardy, Sander van Grieken, Alexander Tishin, anthraxx, bayo, BTAxis, CH, drane, Internecivus Raptus, Kostia Romanov, Kracken, Forest Hale, Muton-UfoAI, Sergii Pylypenko, Rudolfo Pinewood, Solbu, UFOAI Squad-based tactical strategy game in the tradition of the old X-COM PC games diff --git a/entries/ularn.md b/entries/ularn.md index e3fd15d0..859a4e9a 100644 --- a/entries/ularn.md +++ b/entries/ularn.md @@ -7,6 +7,7 @@ - Code repository: https://github.com/joshbressers/ularn.git - Code language: C, C++ - Code license: GPL-2.0 +- Developer: Josh Bressers, Scott Neugroschl Modern port of the roguelike Larn. See also Nlarn. diff --git a/entries/ultimate_stunts.md b/entries/ultimate_stunts.md index dba473d7..b2a6e184 100644 --- a/entries/ultimate_stunts.md +++ b/entries/ultimate_stunts.md @@ -9,6 +9,7 @@ - Code repository: https://svn.code.sf.net/p/ultimatestunts/code (svn), http://ultimatestunts.cvs.sourceforge.net (cvs) - Code language: C++ - Code license: GPL-2.0 +- Developer: CJP, M Gagnon, Borbola Balázs, Neil Zanella ## Building diff --git a/entries/ultrastar.md b/entries/ultrastar.md index 860b7c29..4936f0cf 100644 --- a/entries/ultrastar.md +++ b/entries/ultrastar.md @@ -10,6 +10,7 @@ - Code repository: https://svn.code.sf.net/p/ultrastar/code (svn) - Code language: Pascal - Code license: ? +- Developer: Corvus Clone of SingStar, a music video game. See also [UltraStar Deluxe](https://usdx.eu/) and https://github.com/UltraStar-Deluxe/USDX diff --git a/entries/ultrastar_deluxe.md b/entries/ultrastar_deluxe.md index 089f4eb6..cd39f341 100644 --- a/entries/ultrastar_deluxe.md +++ b/entries/ultrastar_deluxe.md @@ -10,6 +10,7 @@ - Code language: Pascal - Code license: GPL-2.0 - Code dependency: Lua, SDL2 +- Developer: Stefan L., Brian Chalega da Silva, brunzel, Canni, K.-M. Schindler, Whiteshark, blindy, Benedikt Krueger, Dawid Dembowski, Eddie, Holger Kuhn, jay binks, joachimdieterich.com, lotan_rm, MezzoX, Mog, mota23, Felix Kaechele, Simon Ruderich, Alexander, Tobias Gunkel Karaoke game. diff --git a/entries/underworld_adventures.md b/entries/underworld_adventures.md index db2c35d4..a7b21ee4 100644 --- a/entries/underworld_adventures.md +++ b/entries/underworld_adventures.md @@ -8,6 +8,7 @@ - Code repository: https://github.com/vividos/UnderworldAdventures.git, http://uwadv.cvs.sourceforge.net/ (cvs) - Code language: C++, Lua - Code license: GPL-2.0 +- Developer: Michael Fink, Aisha Fenton, Jim Cameron, Dirk Manders, Radoslaw Grzanka, Kasper Fauerby, Willem Jan Palenstijn Project to recreate Ultima Underworld 1 on modern operating systems (e.g. Win32, Linux or MacOS), using the original game files. Requires original game files. diff --git a/entries/unknown_horizons.md b/entries/unknown_horizons.md index f39623d4..2cebbc2d 100644 --- a/entries/unknown_horizons.md +++ b/entries/unknown_horizons.md @@ -10,6 +10,7 @@ - Code language: Python - Code license: GPL-2.0 - Code dependency: FIFE, Pillow +- Developer: Chris Oelmueller, Nihathrael, Andre R., Christoph Egger, totycro uhyi, Tobias Schröfel With an emphasis on economy and city building. Uses the FIFE engine. Godot port: https://github.com/unknown-horizons/godot-port diff --git a/entries/unnethack.md b/entries/unnethack.md index 0369b1e9..ca4bfa5c 100644 --- a/entries/unnethack.md +++ b/entries/unnethack.md @@ -9,6 +9,7 @@ - Code repository: https://github.com/unnethack/unnethack.git, https://git.code.sf.net/p/unnethack/git, https://svn.code.sf.net/p/unnethack/code (svn old) - Code language: C - Code license: Custom (NetHack license) +- Developer: Patric Mueller, aaxelb, Guest41, Karl Garrison, Guanpeng Xu, gurr, Mikko Juola, Pasi Kallinen, David Haft, xororand The hero must venture through the depths of the Dungeon of Doom to retrieve the Amulet of Yendor. Based on NetHack. diff --git a/entries/unvanquished.md b/entries/unvanquished.md index f1fe5d53..34693ccf 100644 --- a/entries/unvanquished.md +++ b/entries/unvanquished.md @@ -12,6 +12,7 @@ - Code license: GPL-3.0 - Code dependency: Dæmon - Assets license: CC-BY-SA-2.5 +- Developer: Dolce Triade, Thomas Debesse, kharnov, Viech FPS/RTS hybrid game powered by the Daemon engine (a combination of ioq3 and XreaL). diff --git a/entries/vamos.md b/entries/vamos.md index 5e128911..2581c040 100644 --- a/entries/vamos.md +++ b/entries/vamos.md @@ -9,6 +9,7 @@ - Code language: C++, Python - Code license: GPL-3.0 - Code dependency: OpenAL, OpenGL, SDL +- Developer: Sam Varner Automotive simulation framework. diff --git a/entries/vassal.md b/entries/vassal.md index 3c095b31..e0cf039c 100644 --- a/entries/vassal.md +++ b/entries/vassal.md @@ -9,6 +9,7 @@ - Code repository: https://svn.code.sf.net/p/vassalengine/svn (svn) - Code language: Java - Code license: LGPL-2.1 +- Developer: Rodney Kinney, Joel Uckelman, Arnaud Bouis, Julien Cassignol, Aaron Liebling, Ben Smith, Brian Kemp, Bob Davison, Bo Leer-Andersen, Carlo Fedeli, Martin Hubley, Nick Kobelja, Andy McMaster, Daniel Takai, David Sullivan, Dennis Jorgenson, Eric Lloyd, Ken Stevens, Federico Corso, George Hayward, Jim Cotugno, John, Jim Urbas, Lance Leung, CAMELOT, Michael Kiefte, Anthony Galica, Dominik Derwinski, matt brennan, Joseph Tilley, Pieter Geerkens, Jonathan C. Dietrich, Meng Tan, Santiago Rodrigez Pozo, Scott Tooker, Jerry, Brent Easton, Tim Byrne, Tim_McCarron, Tom Repetti, Torsten Spindler, Carl Bartlett, Jon, Jeff Coyle, wlk Game engine for creating electronic versions of traditional board and card games. Quite a few [VASSAL modules](http://www.vassalengine.org/wiki/Category:Modules). diff --git a/entries/vcmi.md b/entries/vcmi.md index cca8334d..a99ca595 100644 --- a/entries/vcmi.md +++ b/entries/vcmi.md @@ -8,6 +8,7 @@ - Code language: C++ - Code license: GPL-2.0 - Code dependency: SDL +- Developer: Mateusz B, Michał W. Urbańczyk, Alex V.S., Rafal R, beegee, DAroo, Tom Zielinski, Frank Zago, Ivan Savenko, Paracelsus, Glazunov Vadim, Rickard Westerlund, Laszlo Ozsvart, Bartosz Bielecki, stopiccot, teZeriusz, Ori Bar, Trevor Standley, yupsi Engine for Heroes III, giving it new and extended possibilities. diff --git a/entries/vdrift.md b/entries/vdrift.md index 11ac44b9..0e4d3628 100644 --- a/entries/vdrift.md +++ b/entries/vdrift.md @@ -7,6 +7,7 @@ - Code repository: https://github.com/VDrift/vdrift.git, https://svn.code.sf.net/p/vdrift/code (svn) - Code language: C++ - Code license: GPL-3.0 +- Developer: Joe Venzon, chris, Alex Barroso, Alonso Cardenas Marquez, Giles Williams, Alex Romosan, Lars Sanford, Geo, Gonéri Le Bouder, Teemu Haapoja, Julian, kcid, logzero, Massimo Danieli, Nathan Samson, Rikard, portets, anonymous, slowDan, stan, Matthew Nicholson, Timothy Furlong, cologne, Vegar, ny Driving simulation made with drift racing in mind. diff --git a/entries/vega_strike.md b/entries/vega_strike.md index d332b7c6..e37650d8 100644 --- a/entries/vega_strike.md +++ b/entries/vega_strike.md @@ -10,6 +10,7 @@ - Code language: C++ - Code license: GPL-2.0 - Code dependency: OpenGL +- Developer: Patrick Horn, Alan Shieh, Daniel Reiter Horn, hellcatv, Jack, Klauss++, Pheonix Rising, Anthony Wall, Alexander Rawass, Brian, Bernhard Kaindl, Bjorn Reese, breifsnyder, Marcel Paré, Ed Sweetman, dan_w, Daniel Aleksandrow, Chris Platz, Dimitar Kavlakov, James Carthew, Andy Cristina, etheralwalker, Adam Johnson, Eliot Lash, Matthew G, geoscope, Andreas, Gorrünwe, Carsten Griwodz, Jeff Graw, IxianMace, frobean, jguyton, Konstantinos Arvanitis, Derek Meek, Friso van der Meer, Kirjah Salys, logzero, Dave Jeffery, Jason Winzenried, Michael Strein, Mike Byron, Matthew Kruer, Ezee, Morgan, Nathanael Phillips, Peter S. Griffin, Phlogios, PolarFox, Martin Bürbaum, Peterson Ford Trethewey, pyramid, Hardy Leonardo da Cunha Pereira, Richard Jones, Matthew, Vanessa Lee, michal banach, Silverain, Smi7h1sH3r3, Smi7h1sH3r3 808, spiritplumber, Stefan Stapelberg, Stéphane Vaxelaire, Travis Baldree, Adam Battersby, D Willadsen, Reliant, Mike Furr, William M. Grim, www2, Robert Jacob, Aazelone Pyoleri, Scott Jardine, Zeog, Corey O'Connor First-person space trading and combat simulator. See also [VegaStrike Developer Tools](https://sourceforge.net/projects/ppueditor/?source=directory) diff --git a/entries/visual_pinball.md b/entries/visual_pinball.md index cf36f5cd..7552b1fd 100644 --- a/entries/visual_pinball.md +++ b/entries/visual_pinball.md @@ -9,6 +9,7 @@ - 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) +- Developer: Brian David Smith, fuzzel, M. Buecher, toxie, Andrew Sutcliffe, Chris Pavlas, Cupid, Rob, Nick, jsm174, koadic, latsao, Francisco Salguero Esturillo, Bigboss, Michael, Mike Roberts, mukuste, Neal Leverenz, PoiuyTerry, Randy Davis, Shagendo, Tom Redenbach, Wizards Hat ## Building diff --git a/entries/wargamer.md b/entries/wargamer.md index 3ca4df61..8211e511 100644 --- a/entries/wargamer.md +++ b/entries/wargamer.md @@ -8,6 +8,7 @@ - Code repository: https://gitlab.com/osgames/wargamer.git (backup of cvs), http://wargamer.cvs.sourceforge.net/ (cvs) - Code language: C++ - Code license: GPL-2.0 +- Developer: Steven Green, Tim Carne, Shane D., Greg Moorer, Curt Northey, Jim Schultz, Eugen Udrea, James Broad, John Gilbert, John-Paul Treen, Patrick Dahlin, Rajiv Guilder, Richard O'Grady, Martin Newman, Jason, Thierry MICHEL, mitchell nolte, Luciano Bassotti, Victor L. Harpley, Vladimir Anisimov, John Duquette May require original files? Wargamer: Napoleon 1813 originally developed by Steven Green/Greenius, and published in 1999 by Empire Interactive. diff --git a/entries/warzone_2100.md b/entries/warzone_2100.md index 9b1e7024..e5eada50 100644 --- a/entries/warzone_2100.md +++ b/entries/warzone_2100.md @@ -8,6 +8,7 @@ - Code repository: https://github.com/Warzone2100/warzone2100.git - Code language: C++ - Code license: GPL-2.0 +- Developer: Buginator, Cyp, pastdue, Per I Mathisen, Christian Ohm, vexed, Stephen Swaney, wzdev-ci, Freddie, Kreuvf, Giel van Schijndel, Mysteryem, Elio Gubser, Safety0ff Full campaign with optional (but strongly recommended!), videos, battle against four factions, multi-player and single-player skirmish modes, and an extensive tech tree and a full unit designer. diff --git a/entries/watomic.md b/entries/watomic.md index b18143b1..12c970b4 100644 --- a/entries/watomic.md +++ b/entries/watomic.md @@ -8,6 +8,7 @@ - Code repository: https://gitlab.com/osgames/watomic.git (snapshot of source releases) - Code language: Pascal - Code license: GPL-2.0 +- Developer: Federico Windows clone of Linux KAtomic logic game. diff --git a/entries/webchess.md b/entries/webchess.md index cefb04d4..f04a1d07 100644 --- a/entries/webchess.md +++ b/entries/webchess.md @@ -8,6 +8,7 @@ - Code repository: http://webchess.bzr.sourceforge.net/bzrroot/webchess (bzr), http://webchess.cvs.sourceforge.net (cvs) - Code language: PHP - Code license: GPL-3.0 +- Developer: Rodrigo Flores, Jonathan Evraire, Andy Baskett, Dadi Jonsson, Felipe Rayel, Maksim Savin, Michel van der Kemp, Nathan Kelley Allows you to play chess with other users. diff --git a/entries/wograld.md b/entries/wograld.md index 638956b6..37f3473e 100644 --- a/entries/wograld.md +++ b/entries/wograld.md @@ -8,6 +8,6 @@ - Code language: C - Code license: GPL-2.0 - Assets license: ? (GPL) -- Developer: Lori Angela Nagel +- Developer: Lori Angela Nagel, Wograldin, jastiv, Ritacon, yakgorgon, mozart kittie ## Building diff --git a/entries/wolfpack_empire.md b/entries/wolfpack_empire.md index 5e6dd900..40f43f15 100644 --- a/entries/wolfpack_empire.md +++ b/entries/wolfpack_empire.md @@ -8,6 +8,7 @@ - Code repository: http://git.pond.sub.org/empserver (http://git.pond.sub.org/?p=empserver;a=summary) - Code language: C - Code license: GPL-3.0 +- Developer: Markus Armbruster, James A. Simons, Geoff Cashman, Gerd Flaig, Ron Koenderink, Roman M. Parparov, Mark Ballinger, dTerm, John Yockey, Jeff Cotter, Marc Olzheim, "Ray Hyatt, Jr.", saltmine Featuring military, diplomatic, and economic goals. See also http://www.wolfpackempire.com/clients.html diff --git a/entries/world_builder.md b/entries/world_builder.md index 9081edfc..02ed7e9f 100644 --- a/entries/world_builder.md +++ b/entries/world_builder.md @@ -8,6 +8,7 @@ - Code repository: https://gitlab.com/osgames/worldbuilder.git (conversion of cvs), http://worldbuilder.cvs.sourceforge.net (cvs) - Code language: Visual Basic - Code license: GPL-2.0 +- Developer: Ben, Cube Randomly generates scientifically-plausible solar systems, simulates plate tectonics, calculates climate, randomly generates towns, city blocks, NPCs, treasure hoards, dungeons, and other RPG-related things. diff --git a/entries/world_of_heroes.md b/entries/world_of_heroes.md index 0a973d7b..047b4df2 100644 --- a/entries/world_of_heroes.md +++ b/entries/world_of_heroes.md @@ -8,6 +8,7 @@ - Code language: Python - Code license: 3-clause BSD - Code dependency: pygame +- Developer: Pablo Farias Navarro The player commands an army in the exploration and conquest of unknown realms, gathering resources and fighting enemies. diff --git a/entries/world_of_phaos.md b/entries/world_of_phaos.md index a2b3f875..f5e6bbb5 100644 --- a/entries/world_of_phaos.md +++ b/entries/world_of_phaos.md @@ -9,6 +9,7 @@ - Code language: PHP - Code license: GPL-2.0 - Assets license: Restricted (see license) +- Developer: Zeke Walker, Andrew Whiteman, Draghir, David Slimp, Thunder Doom, Ferencz Tamas Online Roleplaying Game browser based, which takes place in the high fantasy world Kallen. See also https://github.com/CarnosOS/PhaosRPG, https://github.com/thetopfew/phaos diff --git a/entries/worldforge.md b/entries/worldforge.md index f98f6332..a345dc80 100644 --- a/entries/worldforge.md +++ b/entries/worldforge.md @@ -8,6 +8,7 @@ - Code repository: https://github.com/worldforge/cyphesis.git (https://github.com/worldforge), https://github.com/worldforge/ember.git @add - Code language: C++ - Code license: GPL-2.0 +- Developer: Alistair Riddoch, Anders Petersson, Erik Ogenvik, James Turner, William Heymann, Hans Häggström, Aloril, Adam Wendt, Bryce Harrington, Shivawn, Andrew Barch, Ralph Giles, Dan Tomalesky, James M Best, John R. Sheets, Laurel Fan, Lee Begg, Tess Snider, Torbjřrn Lćdre, Kai Blin, Oliver White, patoski, Chris Lappe, Hagen Möbius, Jack Cummings, Sal Ferro, Simon Goodall, Ryan Deacon, John _Scott_ Tillman, Malcolm Walker, xrenmilay, David Zokvic ## Building diff --git a/entries/x-force_fight_for_destiny.md b/entries/x-force_fight_for_destiny.md index ed06e29f..ea51f8a0 100644 --- a/entries/x-force_fight_for_destiny.md +++ b/entries/x-force_fight_for_destiny.md @@ -8,5 +8,6 @@ - Code repository: https://gitlab.com/osgames/xforceffd.git (backup of svn), https://svn.code.sf.net/p/xforceffd/code (svn) - Code language: Pascal - Code license: GPL-2.0 +- Developer: Dirk_F, Christian Reich, gnfalex, Martin Kanich, Natter, Sebastian Gingter ## Building diff --git a/entries/xblast.md b/entries/xblast.md index e041825f..928d2f70 100644 --- a/entries/xblast.md +++ b/entries/xblast.md @@ -9,7 +9,7 @@ - Code repository: https://gitlab.com/osgames/xblast.git (conversion of cvs), http://xblast.cvs.sourceforge.net (cvs) - Code language: C - Code license: GPL-2.0 -- Developer: XBlast development team, Oliver Vogel +- Developer: XBlast development team, Oliver Vogel, Gerfried Fuchs, ALu, Stefan Stiasny, Frank Zago, Fernando Benites, larsl, Kruno Sever, rado, Ricardo Cruz, tenderflake ## Building diff --git a/entries/xconq.md b/entries/xconq.md index c8c341d5..7ca45907 100644 --- a/entries/xconq.md +++ b/entries/xconq.md @@ -9,6 +9,7 @@ - Code repository: https://gitlab.com/osgames/xconq.git (backup of cvs), http://xcong.cvs.sourceforge.net (cvs) - Code language: C++ - Code license: GPL-2.0 +- Developer: Elijah Meeks, Matthew Skala, Massimo Campostrini, Lincoln Peters One of the first such projects. See also https://github.com/brentjohnson/xconq diff --git a/entries/xpilot.md b/entries/xpilot.md index ddfce411..ccc45465 100644 --- a/entries/xpilot.md +++ b/entries/xpilot.md @@ -9,6 +9,7 @@ - Code repository: https://gitlab.com/osgames/xpilot.git (conversion of cvs), http://hg.code.sf.net/p/xpilotgame/www.xpilot.org (hg, website), http://xpilotgame.cvs.sourceforge.net (cvs) - Code language: C - Code license: GPL-2.0 +- Developer: Bjorn Stabell, Dick Balaska, XPilot Admins, Bert, Jarrod L. Miller, Ben Armstrong See also [XPilot5](http://www.buckosoft.com/xpilot/xpilot5/), [JXPilot](https://sourceforge.net/projects/jxpilot/) or [XPilot-AI](/http://xpilot-ai.org/). diff --git a/entries/xscavenger.md b/entries/xscavenger.md index 9de2ca6c..c4e45b15 100644 --- a/entries/xscavenger.md +++ b/entries/xscavenger.md @@ -8,5 +8,6 @@ - Code repository: @see-download - Code language: C - Code license: GPL-2.0 +- Developer: Barry Mead, Marc Le Douarain ## Building diff --git a/entries/xswing_plus.md b/entries/xswing_plus.md index 03cb430a..e465dde1 100644 --- a/entries/xswing_plus.md +++ b/entries/xswing_plus.md @@ -8,5 +8,6 @@ - Code repository: https://svn.code.sf.net/p/xswingplus/code (svn) - Code language: Java - Code license: GPL-3.0 +- Developer: tobse ## Building diff --git a/entries/xu4.md b/entries/xu4.md index 530069cc..77cfc338 100644 --- a/entries/xu4.md +++ b/entries/xu4.md @@ -9,6 +9,7 @@ - Code repository: https://svn.code.sf.net/p/xu4/code (svn) - Code language: C++ - Code license: GPL-2.0 +- Developer: Andrew Taylor, Darren Janeczek, Dominik Reichardt, Michael Ryan, Dan Weber, daniel_santos, Doug Day, Gregory Saunders, kirben, Nodling, Steven Jay Cohen, Steve Saunders, Trenton Schulz, Dallen Wilson, Joshua Stewart Ultima 4 is now [freely available](https://www.gog.com/game/ultima_4). diff --git a/entries/xye.md b/entries/xye.md index 2f5130b9..e2977429 100644 --- a/entries/xye.md +++ b/entries/xye.md @@ -10,7 +10,7 @@ - Code license: zlib - Code dependency: SDL - Assets license: Custom free license -- Developer: Victor Hugo Soliz Kuncar +- Developer: Victor Hugo Soliz Kuncar, Vexorian ## Building diff --git a/entries/ysoccer.md b/entries/ysoccer.md index 9dc8e078..9674366a 100644 --- a/entries/ysoccer.md +++ b/entries/ysoccer.md @@ -9,6 +9,7 @@ - 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) +- Developer: Daniele, Massimo Modica Soccer game; continuation to Sensible World of Soccer. Successor of [Yoda Soccer](https://sourceforge.net/projects/yodasoccer/). diff --git a/entries/zangband.md b/entries/zangband.md index 9524932d..01002bcf 100644 --- a/entries/zangband.md +++ b/entries/zangband.md @@ -9,6 +9,7 @@ - Code repository: https://gitlab.com/osgames/zangband.git (backup of cvs), http://zangband.cvs.sourceforge.net/ (cvs) - Code language: C - Code license: Custom (Modifications allowed?) +- Developer: Ross Morgan-Linial, Robert Ruehlmann, Steven Fuerst, Chris Kern, Mitsuhiro Itakura, Willem Siemelink, topi ylinen Available for almost any computer and operating system. Based on Angband. diff --git a/entries/zatacka.md b/entries/zatacka.md index ece8aec1..15cd4829 100644 --- a/entries/zatacka.md +++ b/entries/zatacka.md @@ -9,7 +9,7 @@ - Code repository: http://zatacka.cvs.sourceforge.net (cvs) - Code language: C, C++ - Code license: GPL-2.0 -- Developer: Mage +- Developer: mage, BoomerBoss, Kaan Remake of a 2D multiplayer game similar to the Tron movie-themed light cycle games and snake games. diff --git a/entries/zaz.md b/entries/zaz.md index f326ef69..3edca873 100644 --- a/entries/zaz.md +++ b/entries/zaz.md @@ -10,6 +10,7 @@ - Code language: C++ - Code license: GPL-3.0 - Code dependency: SDL +- Developer: Remigiusz Dybka ## Building diff --git a/entries/zdoom.md b/entries/zdoom.md index 64529851..4a4c9d26 100644 --- a/entries/zdoom.md +++ b/entries/zdoom.md @@ -9,6 +9,7 @@ - Code repository: https://github.com/coelckers/gzdoom.git, https://git.code.sf.net/p/zdoom/gzdoom - Code language: C, C++, ZenScript - Code license: GPL-3.0 +- Developer: Jan Engelhardt, Randy Heit Maybe ZDoom and GZDoom should be splitted. diff --git a/entries/zed_online.md b/entries/zed_online.md index 1ba3b601..7345a490 100644 --- a/entries/zed_online.md +++ b/entries/zed_online.md @@ -7,5 +7,6 @@ - Code repository: http://hg.code.sf.net/p/zedonline/code (hg) - Code language: C++ - Code license: ? (GPL-3.0) +- Developer: DaMarkov ## Building diff --git a/entries/zero_ballistics.md b/entries/zero_ballistics.md index 4502c04a..719da199 100644 --- a/entries/zero_ballistics.md +++ b/entries/zero_ballistics.md @@ -8,6 +8,7 @@ - Code repository: https://gitlab.com/osgames/zeroballistics.git (mirror), https://svn.code.sf.net/p/zeroballistics/code (svn) - Code language: C++ - Code license: MIT +- Developer: BaronM, Muschick Christian, Konstantinos, Adrian Batzill, ckiosidi, codeanimals Blend of first-person shooter and tank combat, focusing on multiplayer gaming exclusively. diff --git a/entries/zod_engine.md b/entries/zod_engine.md index e046cb7d..da24ba21 100644 --- a/entries/zod_engine.md +++ b/entries/zod_engine.md @@ -9,5 +9,6 @@ - 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?) +- Developer: Mike Nigh ## Building