Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Enable running on Windows #1192

Open
wants to merge 6 commits into
base: main
Choose a base branch
from

Commits on Mar 1, 2024

  1. Configuration menu
    Copy the full SHA
    96332d0 View commit details
    Browse the repository at this point in the history

Commits on Mar 7, 2024

  1. Add specific version numbers for flask and werkzeug

    These are the last versions where keepalive has not been removed from the
    development server with the protocol set to HTTP/1.1. TCP keepalive is required
    for the socket communication in AgentManager.cs to work properly, since it only
    opens one socket for the lifetime of the application.
    jimjhb authored and garfieldnate committed Mar 7, 2024
    Configuration menu
    Copy the full SHA
    59c017d View commit details
    Browse the repository at this point in the history

Commits on Apr 1, 2024

  1. Fix bad string syntax

    Backslashes require another backslash for escaping; otherwise they are
    interpreted in Python as escaping the following character, leading to unhelpful
    error messages when the unity process exits.
    garfieldnate committed Apr 1, 2024
    Configuration menu
    Copy the full SHA
    f4fe6d3 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    0ddecb2 View commit details
    Browse the repository at this point in the history
  3. Fix Unity exe crash due to misinterpreted slashes

    Use Posix-style forward slashes in the Unity executable path on Windows, as
    these won't ever be misinterpreted as being escape characters.
    garfieldnate committed Apr 1, 2024
    Configuration menu
    Copy the full SHA
    b575d2d View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    6d02606 View commit details
    Browse the repository at this point in the history