Search results

  1. uckelman

    "Site Not Secure"

    As the server seems to be Apache, the change would likely amount to replacing in the config the existing virtual host section for port 80 with this: <VirtualHost *:80> ServerName www.gamesquad.com Redirect permanent / https://www.gamesquad.com/ </VirtualHost>
  2. uckelman

    GS no longer compatible with Google Chrome?

    Given that it's an Apache server (which I can see from the HTTP headers), it's likely to be replacing the config for the virtual host for port 80 with this: <VirtualHost *:80> ServerName www.gamesquad.com Redirect permanent / https://www.gamesquad.com/ </VirtualHost> This is why I've been...
  3. uckelman

    GS no longer compatible with Google Chrome?

    The only thing I can do from here is pester them about it every so often. I can't fix it myself. It's not my site. <shrug>
  4. uckelman

    "Site Not Secure"

    It's 2025 and we're still waiting for HTTP redirecting to HTTPS, with no explanation for why this hasn't been done. Please, please, please can the site owners address this simple issue so that the site works properly with modern browsers.
  5. uckelman

    GS no longer compatible with Google Chrome?

    It's 2025 and we're still waiting for HTTP redirecting to HTTPS, with no explanation for why this hasn't been done...
  6. uckelman

    Problem - 07. Jan. 2025 - HIP US halfsquads "show" full-squad outline

    I've left some comments.
  7. uckelman

    Problem - 07. Jan. 2025 - HIP US halfsquads "show" full-squad outline

    For issues, here, or in our forum.
  8. uckelman

    Problem - 07. Jan. 2025 - HIP US halfsquads "show" full-squad outline

    Who did you talk to about the issue and the work you did? This is the first I'm hearing about it. I can't be responsive if I don't know the issue exists or anyone is working on it. That said, I no longer go looking for problems with V3. I don't want that to eat time I'd rather put toward V4. If...
  9. uckelman

    Problem - 07. Jan. 2025 - HIP US halfsquads "show" full-squad outline

    Which PR is this? I don't see it.
  10. uckelman

    Windows 11 Update

    Please post the errorLog from a run where you've tried and failed to connect to the game server.
  11. uckelman

    Vassal 3.7.15 Released

    VASSAL 3.7.15 Released Download: https://github.com/vassalengine/vassal/releases/tag/3.7.15 Release notes: https://forum.vassalengine.org/t/vassal-3-7-release-notes/78948 Changes since 3.7.14 Bug fixes 13558: Update logback configuration to prevent messages to console Other improvements...
  12. uckelman

    VASL 6.6.9 is officially released

    Do you mean that you're going to reuse the version number? That's a recipe for confusion. Please, please make the fix 6.6.10 so that no one ever has to ask "Which 6.6.9 are you using?"
  13. uckelman

    Board Organization

    A major contributing factor to the board selection combo box being unresponsive is that BoardVersionChecker.updateBoard() is being run on the EDT, so blocks the UI. Better would be to run that as a background task which then posts an update task to the EDT on completion.
  14. uckelman

    Board Organization

    If there's going to be an action taken on selection, the technique you need for making sure it doesn't happen immediately is called "debouncing".
  15. uckelman

    "Site Not Secure"

    It's September and we still don't have HTTP redirecting to HTTPS. It's a trivial thing to do. When can it be done?
  16. uckelman

    VASSAL 3.7.13 and VASL 6.6.9-beta-7 issues

    To reiterate, there is something you could do: Make a test module to try to rule out VASL as the source of the problem.
  17. uckelman

    VASSAL 3.7.13 and VASL 6.6.9-beta-7 issues

    The first thing to do to isolate the problem is to make a test module to see if you can reproduce the problem there. If you can, that suggests that the problem is in Vassal instead of VASL.
  18. uckelman

    Need a statistician (or, the dicebot is broken!)

    The analysis I did was on 40MB of raw RNG output. You could use that to roll 2d6 55 million times or treat it as 330 million coin flips. It makes no difference which you do for statistical tests---if something is wrong, it will show up either way.
  19. uckelman

    Need a statistician (or, the dicebot is broken!)

    This is because physical dice are mostly garbage.
  20. uckelman

    Need a statistician (or, the dicebot is broken!)

    See here.
Top