From 39415d9560d4b856d24f95cea04d94420d3470da Mon Sep 17 00:00:00 2001 From: Taka Date: Sat, 28 Nov 2020 20:34:46 +1100 Subject: [PATCH] Changed the supported versions of VASSAL. --- vasl_templates/webapp/vassal.py | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/vasl_templates/webapp/vassal.py b/vasl_templates/webapp/vassal.py index 421f5a8..0a6e25a 100644 --- a/vasl_templates/webapp/vassal.py +++ b/vasl_templates/webapp/vassal.py @@ -24,9 +24,15 @@ from vasl_templates.webapp.vasl_mod import get_reverse_remapped_gpid # NOTE: VASSAL dropped support for Java 8 from 3.3.0. The first version of VASL that supported # the later versions of Java was 6.6.0, but it was compiled against VASSAL 3.4.2, so we don't # need to support versions of VASSAL prior to this (3.3.0-.2, 3.4.0-.1), since VASL is known -# not work with them. -SUPPORTED_VASSAL_VERSIONS = [ "3.4.2", "3.4.3", "3.4.4", "3.4.5", "3.4.6", "3.4.7" ] -SUPPORTED_VASSAL_VERSIONS_DISPLAY = "3.4.2-.7" +# to not work with them. +# The versions of VASSAL each version of VASL was compiled against, and Java bundled with +# the Windows version of VASSAL are: +# VASL | VASSAL Java +# ------+------------------ +# 6.6.0 | 3.4.2 14.0.2+12 +# 6.6.1 | 3.4.6 15+36 +SUPPORTED_VASSAL_VERSIONS = [ "3.4.2", "3.4.6" ] +SUPPORTED_VASSAL_VERSIONS_DISPLAY = "3.4.2, 3.4.6" # ---------------------------------------------------------------------