From 2cd8d97a205f123c5ce02a84aa1e12cc136c3880 Mon Sep 17 00:00:00 2001 From: Sucukdeluxe <259325684+Sucukdeluxe@users.noreply.github.com> Date: Wed, 12 Aug 2026 13:19:51 +0200 Subject: [PATCH] fix: stabilize Windows CI on Node 24 --- .gitea/workflows/windows-ci.yml | 2 +- .github/workflows/windows-ci.yml | 2 +- CHANGELOG.md | 5 +++++ README.md | 2 +- package-lock.json | 4 ++-- package.json | 2 +- scripts/dev.mjs | 2 +- scripts/smoke-test-ci-contract.js | 2 +- scripts/smoke-test-public-release-config.js | 8 ++++---- src/index.html | 2 +- src/main/domain/file-capability.test.ts | 2 +- 11 files changed, 19 insertions(+), 14 deletions(-) diff --git a/.gitea/workflows/windows-ci.yml b/.gitea/workflows/windows-ci.yml index c8ede09..02d8507 100644 --- a/.gitea/workflows/windows-ci.yml +++ b/.gitea/workflows/windows-ci.yml @@ -17,7 +17,7 @@ jobs: - uses: actions/checkout@v4 - uses: actions/setup-node@v4 with: - node-version: '22.13.0' + node-version: '24.11.1' cache: npm - name: Clean install run: npm ci diff --git a/.github/workflows/windows-ci.yml b/.github/workflows/windows-ci.yml index c8ede09..02d8507 100644 --- a/.github/workflows/windows-ci.yml +++ b/.github/workflows/windows-ci.yml @@ -17,7 +17,7 @@ jobs: - uses: actions/checkout@v4 - uses: actions/setup-node@v4 with: - node-version: '22.13.0' + node-version: '24.11.1' cache: npm - name: Clean install run: npm ci diff --git a/CHANGELOG.md b/CHANGELOG.md index e4eb9fe..73f9b15 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## 1.0.8 - 2026-08-12 + +- Updated the Windows CI runtime to Node.js 24.11.1, resolving the SQLite native-module crash that interrupted verification workers on Node.js 22.13.0. +- Corrected the file-capability test expectation for canonical Windows output paths, including 8.3 temporary-directory aliases. + ## 1.0.7 - 2026-08-12 - Replaced versioned Windows Start menu shortcuts with one stable application entry, migrated legacy shortcuts during upgrades and refreshed the Windows Shell registration. diff --git a/README.md b/README.md index 9a456ec..79a7558 100644 --- a/README.md +++ b/README.md @@ -61,7 +61,7 @@ The application works in public mode without a Twitch login. Connecting a Twitch ## Installation 1. Open the [latest GitHub release](https://github.com/Sucukdeluxe/Twitch-VOD-Manager/releases/latest). -2. Download `Twitch-VOD-Manager-Setup-1.0.7.exe`. +2. Download `Twitch-VOD-Manager-Setup-1.0.8.exe`. 3. Run the installer and choose the installation directory. 4. Start Twitch VOD Manager and add a streamer. diff --git a/package-lock.json b/package-lock.json index 0b3686d..97424b0 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "twitch-vod-manager", - "version": "1.0.7", + "version": "1.0.8", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "twitch-vod-manager", - "version": "1.0.7", + "version": "1.0.8", "license": "MIT", "dependencies": { "axios": "^1.16.1", diff --git a/package.json b/package.json index d345164..8986786 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "twitch-vod-manager", - "version": "1.0.7", + "version": "1.0.8", "description": "Twitch VOD Manager - Download Twitch VODs easily", "main": "dist/main.js", "author": "Sucukdeluxe", diff --git a/scripts/dev.mjs b/scripts/dev.mjs index f22aca3..6fd7f56 100644 --- a/scripts/dev.mjs +++ b/scripts/dev.mjs @@ -93,7 +93,7 @@ if (process.platform === 'win32') { sourcePath: electronSourceExecutable, destinationPath: resolve(rootDirectory, 'node_modules', 'electron', 'dist', 'Twitch VOD Manager.exe'), iconPath: resolve(rootDirectory, 'build', 'icon.ico'), - version: '1.0.7', + version: '1.0.8', }); } diff --git a/scripts/smoke-test-ci-contract.js b/scripts/smoke-test-ci-contract.js index ddd09c7..0264fc5 100644 --- a/scripts/smoke-test-ci-contract.js +++ b/scripts/smoke-test-ci-contract.js @@ -48,7 +48,7 @@ for (const relativePath of ['.github/workflows/windows-ci.yml', '.gitea/workflow ]; check(/runs-on:\s*windows-latest/.test(source), `${relativePath} does not use a Windows runner`); - check(/node-version:\s*['"]?22\.13\.0['"]?/.test(source), `${relativePath} does not pin Node 22.13.0`); + check(/node-version:\s*['"]?24\.11\.1['"]?/.test(source), `${relativePath} does not pin Node 24.11.1`); for (const command of requiredCommands) { check(source.includes(`run: ${command}`), `${relativePath} is missing ${command}`); } diff --git a/scripts/smoke-test-public-release-config.js b/scripts/smoke-test-public-release-config.js index 0d0aebc..ff96b3c 100644 --- a/scripts/smoke-test-public-release-config.js +++ b/scripts/smoke-test-public-release-config.js @@ -15,9 +15,9 @@ function check(condition, message) { if (!condition) failures.push(message); } -check(packageJson.version === '1.0.7', `package version is ${packageJson.version}`); -check(packageLock.version === '1.0.7', `lockfile version is ${packageLock.version}`); -check(packageLock.packages?.['']?.version === '1.0.7', `lockfile root package version is ${packageLock.packages?.['']?.version}`); +check(packageJson.version === '1.0.8', `package version is ${packageJson.version}`); +check(packageLock.version === '1.0.8', `lockfile version is ${packageLock.version}`); +check(packageLock.packages?.['']?.version === '1.0.8', `lockfile root package version is ${packageLock.packages?.['']?.version}`); check(packageJson.build?.appId === 'io.github.sucukdeluxe.twitch-vod-manager', `appId is ${packageJson.build?.appId}`); check(packageJson.build?.publish?.provider === 'generic', `publish provider is ${packageJson.build?.publish?.provider}`); check(packageJson.build?.publish?.url === 'https://github.com/Sucukdeluxe/Twitch-VOD-Manager/releases/latest/download/', `publish URL is ${packageJson.build?.publish?.url}`); @@ -62,7 +62,7 @@ check(mainSource.includes('GITHUB_RELEASES_DOWNLOAD_BASE_URL'), 'GitHub releases check(mainSource.includes('https://api.github.com/repos/Sucukdeluxe/Twitch-VOD-Manager/releases/latest'), 'GitHub latest release API URL is missing'); check(mainSource.includes('https://github.com/Sucukdeluxe/Twitch-VOD-Manager/releases/download'), 'GitHub release download URL is missing'); check(!/storyboards\/\d{8,12}(?:-|\/)/.test(mainSource), 'numeric Twitch VOD example remains in the public source'); -check(indexSource.includes('Version: v1.0.7'), 'initial version label is not 1.0.7'); +check(indexSource.includes('Version: v1.0.8'), 'initial version label is not 1.0.8'); check(!indexSource.includes('Version: v4.1.13'), 'legacy version label is still present'); check(fs.existsSync(manifestPath), 'public release manifest is missing'); diff --git a/src/index.html b/src/index.html index ac74d5a..9eb2f58 100644 --- a/src/index.html +++ b/src/index.html @@ -940,7 +940,7 @@
Version: v1.0.7
+Version: v1.0.8