From 14a8ef53aa410a7eaefeee5c2f7da0dd50185de0 Mon Sep 17 00:00:00 2001 From: lecepin <383810086@qq.com> Date: Tue, 5 Sep 2023 00:16:04 +0800 Subject: [PATCH] feat: Rule update & Electron update --- electron/ipc.js | 7 +++++++ package.json | 4 ++-- src/App.jsx | 10 +++++----- src/fsm.js | 10 +++++----- 4 files changed, 19 insertions(+), 12 deletions(-) diff --git a/electron/ipc.js b/electron/ipc.js index 99a7616..af00937 100644 --- a/electron/ipc.js +++ b/electron/ipc.js @@ -20,9 +20,16 @@ export default function initIPC() { return startServer({ interceptCallback: phase => async (req, res) => { if (phase === 'response' && res?._data?.headers?.['content-type'] == 'video/mp4') { + const fixUrl = {} + if(req.fullUrl().includes("video.qq.com")){ + fixUrl.fixUrl = req.fullUrl().replace(/\/20302\//g, '/20304/'); + fixUrl.hdUrl = fixUrl.fixUrl.replace(/(\?|&)(?!(encfilekey=|token=))[^&]+/g, ''); + } + win?.webContents?.send?.('VIDEO_CAPTURE', { url: req.fullUrl(), size: res?._data?.headers?.['content-length'] ?? 0, + ...fixUrl }); } }, diff --git a/package.json b/package.json index 99cf124..e00721b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "wechat-video-downloader", - "version": "1.0.0", + "version": "1.0.1", "description": "", "main": "./build-electron/index.js", "homepage": "./", @@ -34,7 +34,7 @@ "concurrently": "^7.1.0", "cross-env": "^7.0.3", "customize-cra": "^1.0.0", - "electron": "^18.2.3", + "electron": "^26.1.0", "electron-builder": "^23.0.3", "electron-icon-builder": "^2.0.1", "husky": "^8.0.1", diff --git a/src/App.jsx b/src/App.jsx index 259502d..1299ab1 100644 --- a/src/App.jsx +++ b/src/App.jsx @@ -60,8 +60,8 @@ function App() { title: '操作', dataIndex: 'action', key: 'action', - width: '200px', - render: (_, { url, fullFileName }) => ( + width: '210px', + render: (_, { url, hdUrl, fixUrl, fullFileName, }) => (
{fullFileName ? ( )}