feat: add instructions to block update for qqmusic mac 8.8.0

This commit is contained in:
鲁树人
2025-09-05 22:15:15 +09:00
parent b986a2ef99
commit c68195eb9a
5 changed files with 32 additions and 5 deletions

View File

@@ -20,8 +20,13 @@ body:
目前 Mac 客户端仅支持 v8.8.0 或更低版本下载的歌曲文件。 目前 Mac 客户端仅支持 v8.8.0 或更低版本下载的歌曲文件。
* [web.archive.org 镜像](https://web.archive.org/web/20230903/https://dldir1.qq.com/music/clntupate/mac/QQMusicMac_Mgr.dmg)
* [通过 Telegram 下载](https://t.me/um_lsr_ch/21) * [通过 Telegram 下载](https://t.me/um_lsr_ch/21)
安装好客户端后可以加装更新屏蔽更新:
* [屏蔽更新](https://t.me/um_lsr_ch/29)
--- ---
如果你确定你的客户端版本符合上述描述,并遇到了问题,请继续填写下面的表单。 如果你确定你的客户端版本符合上述描述,并遇到了问题,请继续填写下面的表单。

View File

@@ -1,5 +1,4 @@
import { Light as SyntaxHighlighter } from 'react-syntax-highlighter'; import { CodeHighlight } from '../CodeHighlight';
import hljsStyleGitHub from 'react-syntax-highlighter/dist/esm/styles/hljs/github';
import { ExtLink } from '../ExtLink'; import { ExtLink } from '../ExtLink';
import PowerShellAdbDumpCommandTemplate from './adb_dump.ps1?raw'; import PowerShellAdbDumpCommandTemplate from './adb_dump.ps1?raw';
import ShellAdbDumpCommandTemplate from './adb_dump.sh?raw'; import ShellAdbDumpCommandTemplate from './adb_dump.sh?raw';
@@ -45,9 +44,7 @@ export function AdbInstructionTemplate({ dir, file, platform }: AdbInstructionTe
<li></li> <li></li>
<li> <li>
<p> USB </p> <p> USB </p>
<SyntaxHighlighter language={language} style={hljsStyleGitHub}> <CodeHighlight language={language}>{command}</CodeHighlight>
{command}
</SyntaxHighlighter>
<br /> <br />
<ExtLink className="text-nowrap" href="https://g.126.fm/04jewvw"> <ExtLink className="text-nowrap" href="https://g.126.fm/04jewvw">
MuMu MuMu

View File

@@ -0,0 +1,10 @@
import { Light as SyntaxHighlighter, type SyntaxHighlighterProps } from 'react-syntax-highlighter';
import hljsStyleGitHub from 'react-syntax-highlighter/dist/esm/styles/hljs/github';
export function CodeHighlight({ children, ...props }: SyntaxHighlighterProps) {
return (
<SyntaxHighlighter style={hljsStyleGitHub} {...props}>
{children}
</SyntaxHighlighter>
);
}

View File

@@ -6,6 +6,8 @@ import { VQuote } from '~/components/HelpText/VQuote';
import { MacCommandKey } from '~/components/Key/MacCommandKey'; import { MacCommandKey } from '~/components/Key/MacCommandKey';
import { ShiftKey } from '~/components/Key/ShiftKey'; import { ShiftKey } from '~/components/Key/ShiftKey';
import BlockUpdateScript from './assets/QQ 音乐 Mac 屏蔽升级.tar.gz?base64';
const MAC_CLIENT_URL = const MAC_CLIENT_URL =
'https://web.archive.org/web/20230903/https://dldir1.qq.com/music/clntupate/mac/QQMusicMac_Mgr.dmg'; 'https://web.archive.org/web/20230903/https://dldir1.qq.com/music/clntupate/mac/QQMusicMac_Mgr.dmg';
const MAC_CLIENT_TG_URL = 'https://t.me/um_lsr_ch/21'; const MAC_CLIENT_TG_URL = 'https://t.me/um_lsr_ch/21';
@@ -43,6 +45,19 @@ export function InstructionsMac() {
</li> </li>
</ul> </ul>
<p className="mt-4">
<ExtLink
className="link-info mx-1"
download="QQ 音乐 Mac 屏蔽升级.tar.gz"
href={`data:application/gzip;base64,${BlockUpdateScript}`}
>
QQ Mac .tar.gz
</ExtLink>
<code>QQ Mac .command</code> QQ
</p>
<p className="mt-4"></p> <p className="mt-4"></p>
<FilePathBlock>{DB_PATH}</FilePathBlock> <FilePathBlock>{DB_PATH}</FilePathBlock>