From 0fb8261fca8ed2f0b6e6d35a21cdf89592f2bc21 Mon Sep 17 00:00:00 2001 From: Mason Thompson <72317541+MasonT8198@users.noreply.github.com> Date: Thu, 20 Feb 2025 20:34:53 -0500 Subject: [PATCH 1/5] template_index.html: add 'Almost Perfect' delineation --- templates/template_index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 %} From d477b9f200886094328f35c56e393631bc5f94db Mon Sep 17 00:00:00 2001 From: Mason Thompson <72317541+MasonT8198@users.noreply.github.com> Date: Thu, 20 Feb 2025 20:36:46 -0500 Subject: [PATCH 2/5] template_title.html: add 'Almost Perfect' delineation --- templates/template_title.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 %} From 37b29eda5761ac5443f069678520f2154449ce11 Mon Sep 17 00:00:00 2001 From: Mason Thompson <72317541+MasonT8198@users.noreply.github.com> Date: Thu, 20 Feb 2025 20:38:12 -0500 Subject: [PATCH 3/5] testing_priority.html: add 'Almost Perfect' delineation --- templates/testing_priority.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 %} From 4a51468fd614dc1e6860a178664bd892c465333c Mon Sep 17 00:00:00 2001 From: Mason Thompson <72317541+MasonT8198@users.noreply.github.com> Date: Thu, 20 Feb 2025 20:42:08 -0500 Subject: [PATCH 4/5] generate.py: Revise Title Status Descriptions --- generate.py | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/generate.py b/generate.py index 4ba63b320..707a0a94c 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 '' From 2857a32fdfc9221265f888a1d4c763b8c21e2526 Mon Sep 17 00:00:00 2001 From: Mason Thompson <72317541+MasonT8198@users.noreply.github.com> Date: Thu, 20 Feb 2025 20:53:20 -0500 Subject: [PATCH 5/5] generate.py: Add 'Almost Perfect' to game_status_counts --- generate.py | 1 + 1 file changed, 1 insertion(+) diff --git a/generate.py b/generate.py index 707a0a94c..5d44f9a75 100755 --- a/generate.py +++ b/generate.py @@ -237,6 +237,7 @@ def main(): 'Intro' : 0, 'Starts' : 0, 'Playable' : 0, + 'Almost Perfect' : 0, 'Perfect' : 0, }