April 20, 2026
8:52 a.m.
Wires up the WScript.Timeout property and its command-line counterpart //T:nn, both of which were no-op stubs. Commit 1: WScript.Timeout property + //T:nn parsing. Default 0, negative values rejected with VBScript error 5 (matches Windows). //T:nn sets the same value, readable from the script. Commit 2: Actual expiry. A timer thread is armed when Timeout > 0 (from either entry point). On expiry it prints the standard native message to the console and exits with code 1. Setting Timeout to 0 or re-assigning mid-script cancels/re-arms the timer. -- https://gitlab.winehq.org/wine/wine/-/merge_requests/10702