diff --git a/generate.py b/generate.py index 4ba63b320..5d44f9a75 100755 --- a/generate.py +++ b/generate.py @@ -36,10 +36,11 @@ 'Unknown' : 'A compatibility test has not been recorded for this title.', 'Broken' : 'This title crashes very soon after launching, or displays nothing at all.', 'Intro' : 'This title displays an intro sequence, but fails to make it to gameplay.', - 'Starts' : 'This title starts, but may crash or have significant issues.', - 'Playable' : 'This title is playable, with minor issues.', - 'Perfect' : 'This title is playable from start to finish with no noticable issues.' - } + 'Starts' : 'This title starts, but may crash, have significant issues, or be unplayable.', + 'Playable' : 'This title runs but has noticeable issues, graphical, audio, or performance issues that may affect gameplay.', + 'Almost Perfect' : 'This title is playable with very minor graphical, audio, or performance issues.', + 'Perfect' : 'This title is playable from start to finish with no noticeable issues.' +} def get_field(s,x): return s[x] if x in s else '' @@ -236,6 +237,7 @@ def main(): 'Intro' : 0, 'Starts' : 0, 'Playable' : 0, + 'Almost Perfect' : 0, 'Perfect' : 0, } diff --git a/templates/template_index.html b/templates/template_index.html index 5c85c112a..c17612f92 100644 --- a/templates/template_index.html +++ b/templates/template_index.html @@ -1,4 +1,4 @@ -{% set title_status_colors = {'Unknown' : '#2A2A2A', 'Broken' : '#D7263D', 'Intro' : '#F86624', 'Starts' : '#FF9800', 'Playable' : '#42991b', 'Perfect' : '#1b8799'} %} +{% set title_status_colors = {'Unknown' : '#2A2A2A', 'Broken' : '#D7263D', 'Intro' : '#F86624', 'Starts' : '#FF9800', 'Playable' : '#42991b', 'Almost Perfect' : '#2fe19a', 'Perfect' : '#1b8799'} %} {% extends "template_base.html" %} {% block append_head %} diff --git a/templates/template_title.html b/templates/template_title.html index 1b9d7ada4..f34bb64cc 100644 --- a/templates/template_title.html +++ b/templates/template_title.html @@ -1,4 +1,4 @@ -{% set title_status_colors = {'Unknown' : '#595959', 'Broken' : '#D7263D', 'Intro' : '#F86624', 'Starts' : '#FF9800', 'Playable' : '#42e335', 'Perfect' : '#1bdeff'} %} +{% set title_status_colors = {'Unknown' : '#2A2A2A', 'Broken' : '#D7263D', 'Intro' : '#F86624', 'Starts' : '#FF9800', 'Playable' : '#42991b', 'Almost Perfect' : '#2fe19a', 'Perfect' : '#1b8799'} %} {% extends "template_base.html" %} {% block title %}{{ title.title_name }} Compatibility{% endblock %} {% block append_head %} diff --git a/templates/testing_priority.html b/templates/testing_priority.html index 4226c59bc..cbab35fcb 100644 --- a/templates/testing_priority.html +++ b/templates/testing_priority.html @@ -1,4 +1,4 @@ -{% set title_status_colors = {'Unknown' : '#595959', 'Broken' : '#D7263D', 'Intro' : '#F86624', 'Starts' : '#FF9800', 'Playable' : '#42e335', 'Perfect' : '#1bdeff'} %} +{% set title_status_colors = {'Unknown' : '#2A2A2A', 'Broken' : '#D7263D', 'Intro' : '#F86624', 'Starts' : '#FF9800', 'Playable' : '#42991b', 'Almost Perfect' : '#2fe19a', 'Perfect' : '#1b8799'} %} {% extends "template_base.html" %} {% block title %}Compatibility Priority Testing List{% endblock %}