diff --git a/vasl_templates/webapp/config/site.cfg.example b/vasl_templates/webapp/config/site.cfg.example index a7233fb..adc1667 100644 --- a/vasl_templates/webapp/config/site.cfg.example +++ b/vasl_templates/webapp/config/site.cfg.example @@ -2,7 +2,7 @@ ; configure VASSAL and VASL VASSAL_DIR = ...configure the VASSAL installation directory... -VASL_MOD = ...configure the VASL module (e.g. vasl-6.4.3.vmod)... +VASL_MOD = ...configure the VASL module (e.g. vasl-6.4.4.vmod)... VASL_EXTNS_DIR = ...configured the VASL extensions directory... BOARDS_DIR = ...configure the VASL boards directory... diff --git a/vasl_templates/webapp/static/help/index.html b/vasl_templates/webapp/static/help/index.html index db5e021..dcf3baf 100644 --- a/vasl_templates/webapp/static/help/index.html +++ b/vasl_templates/webapp/static/help/index.html @@ -79,7 +79,7 @@ and then connect to it in a browser at http://localhost:5010.
docker run --rm -it --name vasl-templates \ -p 5010:5010 \ - -v /home/pacman-ghost/vasl/vasl-6.4.3.vmod:/data/vasl.vmod \ + -v /home/pacman-ghost/vasl/vasl-6.4.4.vmod:/data/vasl.vmod \ vasltemplates/images:latest
If you have Chapter H data, add the following: @@ -87,7 +87,7 @@ If you have Chapter H data, add the following:

Then open a browser and connect to the webapp at http://localhost:5010.

Note that some features (e.g. updating a VASL scenario file) may not be available.

If you have SElinux enabled, it may prevent the container from accessing the VASL .vmod file, in which case, you can allow access like this: -
chcon -Rt svirt_sandbox_file_t /home/pacman-ghost/vasl/vasl-6.4.3.vmod
+
chcon -Rt svirt_sandbox_file_t /home/pacman-ghost/vasl/vasl-6.4.4.vmod

Installing a webdriver

@@ -219,7 +219,7 @@ or a width and/or height parameter to explicitly set the image
  • If you are running the Windows desktop application, open the Server settings dialog from the File menu and configure it there.
  • If you are running the web server directly, create a file called site.cfg in the $/config/ directory and configure it there (there is an example file you can rename and edit). -
    You should configure version 6.4.0 thru 6.4.3, of the VASL module.
    +
    You should configure version 6.4.0 thru 6.4.4, of the VASL module.

    Once you've configured the VASL module, if you want to also show VASL counter images in the OB snippets that you copy in the VASL scenario, turn this on in the User settings dialog from the main application menu.

    If you turn this feature on, the program must be running every time you load the scenario into VASL.
    @@ -421,14 +421,14 @@ docker build --tag vasl-templates .
    docker run --rm -it --name vasl-templates \ -p 5010:5010 \ - -v /home/pacman-ghost/vasl/vasl-6.4.3.vmod:/data/vasl.vmod \ + -v /home/pacman-ghost/vasl/vasl-6.4.4.vmod:/data/vasl.vmod \ vasl-templates
    The "Update VASL scenario" feature is currently not working in a container.

    Note that if you have SElinux enabled, it may prevent the container from accessing the VASL .vmod file, in which case, you can allow access like this:

    -chcon -Rt svirt_sandbox_file_t /home/pacman-ghost/vasl/vasl-6.4.3.vmod +chcon -Rt svirt_sandbox_file_t /home/pacman-ghost/vasl/vasl-6.4.4.vmod

    Creating a pre-compiled package

    diff --git a/vasl_templates/webapp/vasl_mod.py b/vasl_templates/webapp/vasl_mod.py index 69d508f..70b2b58 100644 --- a/vasl_templates/webapp/vasl_mod.py +++ b/vasl_templates/webapp/vasl_mod.py @@ -13,8 +13,8 @@ _logger = logging.getLogger( "vasl_mod" ) from vasl_templates.webapp import app, globvars from vasl_templates.webapp.config.constants import DATA_DIR -SUPPORTED_VASL_MOD_VERSIONS = [ "6.4.0", "6.4.1", "6.4.2", "6.4.3" ] -SUPPORTED_VASL_MOD_VERSIONS_DISPLAY = "6.4.0-6.4.3" +SUPPORTED_VASL_MOD_VERSIONS = [ "6.4.0", "6.4.1", "6.4.2", "6.4.3", "6.4.4" ] +SUPPORTED_VASL_MOD_VERSIONS_DISPLAY = "6.4.0-6.4.4" warnings = [] # nb: for the test suite @@ -31,7 +31,7 @@ def set_vasl_mod( vmod_fname, msg_store ): if globvars.vasl_mod.vasl_version not in SUPPORTED_VASL_MOD_VERSIONS: if msg_store: msg_store.warning( - "VASL {} is unsupported.

    Things might work, but they might not...".format( + "This program has not been tested with VASL {}.

    Things might work, but they might not...".format( globvars.vasl_mod.vasl_version ) ) diff --git a/vasl_templates/webapp/vassal.py b/vasl_templates/webapp/vassal.py index ae9e1ae..09ef9d6 100644 --- a/vasl_templates/webapp/vassal.py +++ b/vasl_templates/webapp/vassal.py @@ -351,7 +351,8 @@ class VassalShim: version = VassalShim().get_version() if version not in SUPPORTED_VASSAL_VERSIONS: msg_store.warning( - "VASSAL {} is unsupported.

    Things might work, but they might not...".format( version ) + "This program has not been tested with VASSAL {}." \ + "

    Things might work, but they might not...".format( version ) ) # - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -