organized comments

This commit is contained in:
Trilarion 2021-02-03 09:45:13 +01:00
parent 06290c2926
commit 9c87fc08ee
21 changed files with 38 additions and 28 deletions

View File

@ -7,6 +7,7 @@ http://cyxdown.free.fr/bs/
https://projects.tuxfamily.org/ (all of them) https://projects.tuxfamily.org/ (all of them)
https://www.artsoft.org/rocksndiamonds/ https://www.artsoft.org/rocksndiamonds/
https://web.archive.org/web/20171228172756/http://www.oletus.fi/static/whichwayisup/ https://web.archive.org/web/20171228172756/http://www.oletus.fi/static/whichwayisup/
https://gitlab.com/luckeyproductions/games (all of them)
http://cyxdown.free.fr/f2b/ http://cyxdown.free.fr/f2b/
http://dead-code.org/home/ http://dead-code.org/home/
http://e-adventure.e-ucm.es/login/index.php (games of eAdventure) http://e-adventure.e-ucm.es/login/index.php (games of eAdventure)

View File

@ -863,15 +863,24 @@ class EntriesMaintainer:
print('entries not yet loaded') print('entries not yet loaded')
return return
# remove download urls that are also in home # which fields have lots of comments
for entry in self.entries: for field in c.valid_fields:
homes = entry['Home'] values = [value for entry in self.entries for value in entry.get(field, [])]
downloads = entry.get('Download', []) if isinstance(values[0], osg_parse.ValueWithComment):
downloads = [download for download in downloads if download not in homes] comments = [value.comment for value in values if value.comment]
if downloads: print('field {} has {} comments'.format(field, len(comments)))
entry['Download'] = downloads for comment in set(comments):
if not downloads and 'Download' in entry: print(' {} - {}'.format(comment, comments.count(comment)))
del entry['Download']
# # remove download urls that are also in home
# for entry in self.entries:
# homes = entry['Home']
# downloads = entry.get('Download', [])
# downloads = [download for download in downloads if download not in homes]
# if downloads:
# entry['Download'] = downloads
# if not downloads and 'Download' in entry:
# del entry['Download']
# # collect statistics on git repositories # # collect statistics on git repositories

View File

@ -10,7 +10,7 @@
- Code license: GPL-2.0 - Code license: GPL-2.0
- Code dependency: Allegro - Code dependency: Allegro
- Assets license: GPL-2.0 - Assets license: GPL-2.0
- Developer: Anders Svensson (music, sound effects), Johan Peitz (design, source code, graphics), Paul Wise - Developer: Anders Svensson (@audio), Johan Peitz (@design, @programming, @graphics), Paul Wise
Retro-style platformer. Retro-style platformer.

View File

@ -8,7 +8,7 @@
- Keyword: strategy, clone, turn-based - Keyword: strategy, clone, turn-based
- Code repository: https://github.com/vn971/cevo.git (and also download http://c-evo.org/files/cevosrc.zip, @created 2015, @stars 8, @forks 4) - Code repository: https://github.com/vn971/cevo.git (and also download http://c-evo.org/files/cevosrc.zip, @created 2015, @stars 8, @forks 4)
- Code language: Pascal - Code language: Pascal
- Code license: Public domain (original project), GPL-3.0 (Github project) - Code license: Public domain (originally), GPL-3.0
- Developer: Vasili Novikov - Developer: Vasili Novikov
Empire building game. Empire building game.

View File

@ -1,6 +1,6 @@
# Doxygen # Doxygen
- Home: https://www.doxygen.nl/index.html, https://web.archive.org/web/20181202085648/http://www.stack.nl/~dimitri/doxygen/ (previously) - Home: https://www.doxygen.nl/index.html, https://web.archive.org/web/20181202085648/http://www.stack.nl/~dimitri/doxygen/
- Media: https://en.wikipedia.org/wiki/Doxygen - Media: https://en.wikipedia.org/wiki/Doxygen
- State: mature - State: mature
- Download: https://www.doxygen.nl/download.html - Download: https://www.doxygen.nl/download.html

View File

@ -1,7 +1,7 @@
# Elysium Engine # Elysium Engine
- Home: http://elysium.sourceforge.net/, https://sourceforge.net/projects/elysium/ - Home: http://elysium.sourceforge.net/, https://sourceforge.net/projects/elysium/
- State: beta (alpha?), inactive since 2006 - State: beta (@alpha), inactive since 2006
- Download: https://sourceforge.net/projects/elysium/files/ - Download: https://sourceforge.net/projects/elysium/files/
- Platform: Linux - Platform: Linux
- Keyword: game engine, role playing, 2D, multiplayer online + massive - Keyword: game engine, role playing, 2D, multiplayer online + massive

View File

@ -9,7 +9,7 @@
- Code repository: https://github.com/infidel-/cult.git (@created 2015, @stars 13, @forks 4) - Code repository: https://github.com/infidel-/cult.git (@created 2015, @stars 13, @forks 4)
- Code language: Haxe, JavaScript - Code language: Haxe, JavaScript
- Code license: GPL-3.0 - Code license: GPL-3.0
- Developer: Chris Oelmueller, Max Kowarski (lead) - Developer: Chris Oelmueller, Max Kowarski (@lead)
Build your cult of followers and try to summon Elder God. Build your cult of followers and try to summon Elder God.

View File

@ -3,7 +3,7 @@
- Home: http://freevikings.wz.cz/, https://sourceforge.net/projects/freevikings/ - Home: http://freevikings.wz.cz/, https://sourceforge.net/projects/freevikings/
- Inspiration: The Lost Vikings - Inspiration: The Lost Vikings
- State: beta - State: beta
- Download: https://sourceforge.net/projects/freevikings/files/ (outdated) - Download: https://sourceforge.net/projects/freevikings/files/
- Platform: Windows - Platform: Windows
- Keyword: platform, puzzle, clone - Keyword: platform, puzzle, clone
- Code repository: https://git.code.sf.net/p/freevikings/git, http://freevikings.cvs.sourceforge.net (cvs) - Code repository: https://git.code.sf.net/p/freevikings/git, http://freevikings.cvs.sourceforge.net (cvs)

View File

@ -3,7 +3,7 @@
- Home: https://github.com/ajxs/jsFO - Home: https://github.com/ajxs/jsFO
- Inspiration: Fallout 2 - Inspiration: Fallout 2
- State: beta, inactive since 2017 - State: beta, inactive since 2017
- Play: http://ajxs.github.io/jsFO/ (demo) - Play: http://ajxs.github.io/jsFO/
- Platform: Web - Platform: Web
- Keyword: remake, role playing, content commercial + original required - Keyword: remake, role playing, content commercial + original required
- Code repository: https://github.com/ajxs/jsFO.git (@created 2015, @stars 21, @forks 3) - Code repository: https://github.com/ajxs/jsFO.git (@created 2015, @stars 21, @forks 3)

View File

@ -10,6 +10,6 @@
- Code license: Public domain - Code license: Public domain
- Code dependency: pygame - Code dependency: pygame
- Assets license: Public domain (probably non-free backgrounds and a font in the original distribution, see debian distribution) - Assets license: Public domain (probably non-free backgrounds and a font in the original distribution, see debian distribution)
- Developer: legoluft (sound), Roberto, Slava Anishenko (artwork), Sven Thoennissen, Thorsten Kohnhorst - Developer: legoluft (@audio), Roberto, Slava Anishenko (@artwork), Sven Thoennissen, Thorsten Kohnhorst
## Building ## Building

View File

@ -1,6 +1,6 @@
# Lexica # Lexica
- Home: https://github.com/lexica/lexica, https://code.google.com/archive/p/lexic/ (origin) - Home: https://github.com/lexica/lexica, https://code.google.com/archive/p/lexic/
- State: mature - State: mature
- Download: https://play.google.com/store/apps/details?id=com.serwylo.lexica, https://f-droid.org/packages/com.serwylo.lexica/ - Download: https://play.google.com/store/apps/details?id=com.serwylo.lexica, https://f-droid.org/packages/com.serwylo.lexica/
- Platform: Android - Platform: Android

View File

@ -2,7 +2,7 @@
- Home: https://github.com/LionsPhil/mewl - Home: https://github.com/LionsPhil/mewl
- Inspiration: M.U.L.E. - Inspiration: M.U.L.E.
- State: beta (more like alpha), inactive since 2015 - State: beta (@alpha), inactive since 2015
- Keyword: remake, strategy - Keyword: remake, strategy
- Code repository: https://github.com/LionsPhil/mewl.git (@created 2015, @stars 5, @forks 0) - Code repository: https://github.com/LionsPhil/mewl.git (@created 2015, @stars 5, @forks 0)
- Code language: C++ - Code language: C++

View File

@ -2,7 +2,7 @@
- Home: https://tangramgames.dk/games/mrrescue/ - Home: https://tangramgames.dk/games/mrrescue/
- State: mature, inactive since 2016 - State: mature, inactive since 2016
- Download: https://github.com/SimonLarsen/mrrescue/releases (also home) - Download: https://github.com/SimonLarsen/mrrescue/releases
- Platform: Windows, Linux, macOS - Platform: Windows, Linux, macOS
- Keyword: arcade, platform, content open - Keyword: arcade, platform, content open
- Code repository: https://github.com/SimonLarsen/mrrescue.git (@created 2012, @stars 407, @forks 74) - Code repository: https://github.com/SimonLarsen/mrrescue.git (@created 2012, @stars 407, @forks 74)

View File

@ -11,7 +11,7 @@
- Code license: GPL-2.0 - Code license: GPL-2.0
- Code dependency: ClanLib - Code dependency: ClanLib
- Assets license: CC-BY-SA 2.0 - Assets license: CC-BY-SA 2.0
- Developer: Antoine Morineau (graphics), Gecko667, guigoz, Guillaume Delhumeau (code), MrPouit (Ubuntu packages), silkut (win32 port) - Developer: Antoine Morineau (@graphics), Gecko667, guigoz, Guillaume Delhumeau (@code), MrPouit (@packaging), silkut (@port)
Falling block puzzle game. Falling block puzzle game.

View File

@ -1,6 +1,6 @@
# OpenSpades # OpenSpades
- Home: http://openspades.yvt.jp/, https://sites.google.com/a/yvt.jp/openspades/ (outdated) - Home: http://openspades.yvt.jp/, https://sites.google.com/a/yvt.jp/openspades/
- Inspiration: Ace of Spades - Inspiration: Ace of Spades
- State: beta - State: beta
- Download: https://github.com/yvt/openspades/releases - Download: https://github.com/yvt/openspades/releases

View File

@ -2,7 +2,7 @@
- Home: https://web.archive.org/web/20180201004909/http://www.stuff-o-matic.com:80/plee-the-bear/, https://sourceforge.net/projects/plee-the-bear/ - Home: https://web.archive.org/web/20180201004909/http://www.stuff-o-matic.com:80/plee-the-bear/, https://sourceforge.net/projects/plee-the-bear/
- State: beta, inactive since 2017 - State: beta, inactive since 2017
- Download: https://sourceforge.net/projects/plee-the-bear/files/ (outdated) - Download: https://sourceforge.net/projects/plee-the-bear/files/
- Keyword: platform, 2D, content open - Keyword: platform, 2D, content open
- Code repository: https://github.com/j-jorge/plee-the-bear.git (@created 2013, @stars 10, @forks 6), https://github.com/j-jorge/bear.git @add (@created 2013, @stars 16, @forks 5) - Code repository: https://github.com/j-jorge/plee-the-bear.git (@created 2013, @stars 10, @forks 6), https://github.com/j-jorge/bear.git @add (@created 2013, @stars 16, @forks 5)
- Code language: Lisp, C++, Scheme, C - Code language: Lisp, C++, Scheme, C

View File

@ -8,7 +8,7 @@
- Code language: C++ - Code language: C++
- Code license: GPL-2.0 - Code license: GPL-2.0
- Code dependency: SDL - Code dependency: SDL
- Developer: Chris DeLeon, Gregory Peng, Jeff Thoene, John Nesky, Matthew Sarnoff, Michael Weber, Tuscan Knox (music) - Developer: Chris DeLeon, Gregory Peng, Jeff Thoene, John Nesky, Matthew Sarnoff, Michael Weber, Tuscan Knox (@audio)
## Building ## Building

View File

@ -8,7 +8,7 @@
- Code license: Public domain - Code license: Public domain
- Code dependency: pygame - Code dependency: pygame
- Assets license: Public domain - Assets license: Public domain
- Developer: Coda (sound), Hubert Lamontagne (sound), Isabelle Bouchard (artwork), Joel Bouchard Lamontagne (code), Reduz (music) - Developer: Coda (@audio), Hubert Lamontagne (@audio), Isabelle Bouchard (@artwork), Joel Bouchard Lamontagne (@code), Reduz (@audio)
aka Upsilon Cat aka Upsilon Cat

View File

@ -1,6 +1,6 @@
# The Bub's Brothers # The Bub's Brothers
- Home: https://bitbucket.org/arigo/bub-n-bros/ (Modernized version running the clients in browsers.), http://bub-n-bros.sourceforge.net/ (original), https://sourceforge.net/projects/bub-n-bros/ - Home: https://bitbucket.org/arigo/bub-n-bros/, http://bub-n-bros.sourceforge.net/, https://sourceforge.net/projects/bub-n-bros/
- Inspiration: Bubble Bobble - Inspiration: Bubble Bobble
- State: mature, inactive since 2013 - State: mature, inactive since 2013
- Download: http://bub-n-bros.sourceforge.net/download.html - Download: http://bub-n-bros.sourceforge.net/download.html

View File

@ -3,7 +3,7 @@
- Home: http://creep.sourceforge.net/, https://sourceforge.net/projects/creep/ - Home: http://creep.sourceforge.net/, https://sourceforge.net/projects/creep/
- Inspiration: The Castles of Dr. Creep - Inspiration: The Castles of Dr. Creep
- State: mature - State: mature
- Download: https://github.com/segrax/DrCreep/releases, https://sourceforge.net/projects/creep/files/ (outdated) - Download: https://github.com/segrax/DrCreep/releases, https://sourceforge.net/projects/creep/files/
- Keyword: puzzle, remake - Keyword: puzzle, remake
- Code repository: https://github.com/segrax/DrCreep.git (@created 2012, @stars 16, @forks 3), https://svn.code.sf.net/p/creep/code (svn) - Code repository: https://github.com/segrax/DrCreep.git (@created 2012, @stars 16, @forks 3), https://svn.code.sf.net/p/creep/code (svn)
- Code language: C++, Shell - Code language: C++, Shell

View File

@ -1,6 +1,6 @@
# War Of Kingdom # War Of Kingdom
- Home: http://www.freeors.com/ (chinese) - Home: http://www.freeors.com/ (Chinese)
- State: beta - State: beta
- Keyword: strategy, turn-based - Keyword: strategy, turn-based
- Code repository: https://github.com/freeors/War-Of-Kingdom.git (@created 2012, @stars 62, @forks 26) - Code repository: https://github.com/freeors/War-Of-Kingdom.git (@created 2012, @stars 62, @forks 26)