| @@ -43,7 +43,7 @@ def accept(): | |||||
| @app.route('/changelog') | @app.route('/changelog') | ||||
| def changelog(): | def changelog(): | ||||
| game_names = ["stroll", "feast", "gorge", "satiate"] | |||||
| game_names = ["stroll", "feast", "gorge", "satiate", "macrovision"] | |||||
| games = [] | games = [] | ||||
| for game in game_names: | for game in game_names: | ||||
| data = json.load(open("{0}/changelog.json".format(game))) | data = json.load(open("{0}/changelog.json".format(game))) | ||||
| @@ -57,7 +57,7 @@ def changelog(): | |||||
| @app.route('/commits') | @app.route('/commits') | ||||
| def commits(): | def commits(): | ||||
| game_names = ["stroll", "feast", "gorge", "satiate"] | |||||
| game_names = ["stroll", "feast", "gorge", "satiate", "macrovision"] | |||||
| games = [] | games = [] | ||||
| for game in game_names: | for game in game_names: | ||||
| data = json.load(open("nightly/{0}/nightly.json".format(game))) | data = json.load(open("nightly/{0}/nightly.json".format(game))) | ||||
| @@ -40,6 +40,9 @@ | |||||
| <a href="#satiate" class="game-button-small" id="game-button-satiate"> | <a href="#satiate" class="game-button-small" id="game-button-satiate"> | ||||
| <img class="game-logo" src="/images/satiate-transparent.png"> | <img class="game-logo" src="/images/satiate-transparent.png"> | ||||
| </a> | </a> | ||||
| <a href="#macrovision" class="game-button-small" id="game-button-macrovision"> | |||||
| <img class="game-logo" src="/images/macrovision-transparent.png"> | |||||
| </a> | |||||
| </div> | </div> | ||||
| <div class="changelog-fade"> | <div class="changelog-fade"> | ||||
| @@ -40,6 +40,9 @@ | |||||
| <a href="#satiate" class="game-button-small" id="game-button-satiate"> | <a href="#satiate" class="game-button-small" id="game-button-satiate"> | ||||
| <img class="game-logo" src="/images/satiate-transparent.png"> | <img class="game-logo" src="/images/satiate-transparent.png"> | ||||
| </a> | </a> | ||||
| <a href="#macrovision" class="game-button-small" id="game-button-macrovision"> | |||||
| <img class="game-logo" src="/images/macrovision-transparent.png"> | |||||
| </a> | |||||
| </div> | </div> | ||||
| <div class="changelog-fade-nightly"> | <div class="changelog-fade-nightly"> | ||||
| @@ -31,6 +31,12 @@ | |||||
| <img class="game-logo" src="/images/satiate-transparent.png"> | <img class="game-logo" src="/images/satiate-transparent.png"> | ||||
| </a> | </a> | ||||
| <div class="game-description">A text adventure engine with an emphasis on sound</div> | <div class="game-description">A text adventure engine with an emphasis on sound</div> | ||||
| <a href="https://macrovision.crux.sexy/{{"nightly" if nightly else ""}}" class="game-button" id="game-button-macrovision"> | |||||
| <div class="game-title">macro | |||||
| vision</div> | |||||
| <img class="game-logo" src="/images/macrovision-transparent.png"> | |||||
| </a> | |||||
| <div class="game-description">A size-comparison tool for macros and micros</div> | |||||
| </div> | </div> | ||||
| <a class="switcher" href="/{{"nightly" if not nightly else ""}}"> | <a class="switcher" href="/{{"nightly" if not nightly else ""}}"> | ||||
| <div class="switcher-text"> | <div class="switcher-text"> | ||||