prep for win 11

This commit is contained in:
2026-03-09 23:36:50 -06:00
parent 6e2e0f9af7
commit 224f97d0c6
9 changed files with 966 additions and 16 deletions

21
run_gui.bat Normal file
View File

@ -0,0 +1,21 @@
@echo off
title Proper Noun GUI
:: Change to the folder this .bat file lives in
cd /d "%~dp0"
:: Check setup has been run
if not exist .venv\Scripts\python.exe (
echo ERROR: Setup has not been run yet.
echo Please double-click setup_windows.bat first.
pause
exit /b 1
)
echo Starting Proper Noun Player GUI...
.venv\Scripts\python gui_proper_noun_player.py
if errorlevel 1 (
echo.
echo The application closed with an error. See message above.
pause
)