Re-gen readme for 2.0 release, and remove notes about Separate Query Port (as it's now less important)

This commit is contained in:
mmorrison 2019-01-12 22:52:06 -06:00
parent b2d76da65a
commit dd478a7bce
4 changed files with 160 additions and 168 deletions

View file

@ -22,14 +22,11 @@ class GameResolver {
printReadme() {
let out = '';
for(const key of Object.keys(games)) {
const game = games[key];
for(const [key,game] of this.games.entries()) {
if (!game.pretty) {
continue;
}
out += "* "+game.pretty+" ("+key+")";
if(game.options.port_query_offset || game.options.port_query)
out += " [[Separate Query Port](#separate-query-port)]";
if(game.extra.doc_notes)
out += " [[Additional Notes](#"+game.extra.doc_notes+")]";
out += "\n";