Initial snapshot before step 6 options.js split

This commit is contained in:
admin
2026-05-22 21:05:21 +02:00
commit f8e781f0e9
26 changed files with 9741 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
@echo off
REM Portable: uses Windows py launcher if present, falls back to python on PATH.
REM Stderr redirected to log file so it can't pollute stdout (native messaging is binary).
setlocal
set "PYBIN=python"
where py >nul 2>&1 && set "PYBIN=py"
if not exist "%~dp0logs" mkdir "%~dp0logs"
"%PYBIN%" -u "%~dp0rcjav-host.py" 2>>"%~dp0logs\rcjav-host-stderr.log"