Skip to content

Commit

Permalink
Add refresh the webpage note and warning when non threading server used
Browse files Browse the repository at this point in the history
  • Loading branch information
drojf committed Nov 2, 2020
1 parent fd3bc96 commit 6b19298
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
4 changes: 4 additions & 0 deletions github_actions_changelog_template.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@

### Known Issues

- **You may need to refresh the webpage (web GUI) if it does not load or seems to hang**.
- This will happen for MacOS users / Python 2 / Python 3.6 and below using the Chrome web browser (Firefox seems to be OK)
- This shouldn't happen on Windows builds / Python 3.7 and up as we've applied a fix

<details>
<summary><b>Linux: Higurashi with GNOME Desktop/Ubuntu Crashes - CLICK TO EXPAND</b></summary>

Expand Down
1 change: 1 addition & 0 deletions httpGUI.py
Original file line number Diff line number Diff line change
Expand Up @@ -369,6 +369,7 @@ def do_POST(self):
httpServerType = http.server.ThreadingHTTPServer
else:
httpServerType = HTTPServer
print('WARNING: Python version < 3.7 found - you may need to refresh the web GUI if it does not load, on Chrome and other browsers!')

# The default HTTPServer allows multiple servers on the same address without error
# we would prefer for an error to be raised, so you know if you had multiple copies of the installer open at once
Expand Down

0 comments on commit 6b19298

Please sign in to comment.