6.7.0 - Alpha6 - 新增 Android 发行版本 scraper 脚本及信息打印脚本

This commit is contained in:
SuperMonster003
2025-10-09 17:13:48 +08:00
parent 0ff16b8ec0
commit b83ce13d0e
9 changed files with 702 additions and 4 deletions

View File

@@ -0,0 +1,32 @@
@ECHO OFF
:RUN
node "print-android-version-codes.mjs"
ECHO.
ECHO Press [R] to rerun, [Shift+R] to clear screen then rerun, or [ESC]/[Enter]/[Space] to exit...
powershell -NoLogo -NoProfile -Command ^
"$ErrorActionPreference='Stop';" ^
"while($true){" ^
" $k=$Host.UI.RawUI.ReadKey('NoEcho,IncludeKeyDown');" ^
" if($k.VirtualKeyCode -eq 27 -or $k.VirtualKeyCode -eq 13 -or $k.Character -eq ' '){ exit 1 }" ^
" elseif($k.VirtualKeyCode -eq 82){" ^
" $isShift = ($k.ControlKeyState -band 0x0010) -ne 0 -or ($k.ControlKeyState -band 0x0080) -ne 0;" ^
" if($isShift){ exit 2 } else { exit 0 }" ^
" }" ^
"}"
IF ERRORLEVEL 2 GOTO SHIFT_R
IF ERRORLEVEL 1 GOTO EXIT
echo.
GOTO RUN
:SHIFT_R
CLS
echo.
GOTO RUN
:EXIT
echo.
EXIT /B