diff --git a/README.md b/README.md index af3667f..92cf5cb 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Unlock Music 音乐解锁 -[![Build Status](https://git.unlock-music.dev/um/web/actions/workflows/build.yml/badge.svg)][ci] +[![Build Status](https://git.um-react.app/um/web/actions/workflows/build.yml/badge.svg)][ci] - 在浏览器中解锁加密的音乐文件。 Unlock encrypted music file in the browser. - Unlock Music 项目是以学习和技术研究的初衷创建的,修改、再分发时请遵循[授权协议]。 @@ -11,10 +11,10 @@ > **WARNING** > 在本站 fork 不会起到备份的作用,只会浪费服务器储存空间。如无必要请勿 fork 该仓库。 -[授权协议]: https://git.unlock-music.dev/um/web/src/branch/main/LICENSE -[unlock-music/cli]: https://git.unlock-music.dev/um/cli +[授权协议]: https://git.um-react.app/um/web/src/branch/main/LICENSE +[unlock-music/cli]: https://git.um-react.app/um/cli [`@unlock_music_chat`]: https://t.me/unlock_music_chat -[ci]: https://git.unlock-music.dev/um/web/actions?workflow=build.yml +[ci]: https://git.um-react.app/um/web/actions?workflow=build.yml ## 特性 @@ -49,7 +49,7 @@ - :warning: 本地使用请下载`legacy版本`(`modern版本`只能通过 **http(s)协议** 访问) - 解压缩后即可部署或本地使用(**请勿直接运行源代码**) -[release]: https://git.unlock-music.dev/um/web/releases/latest +[release]: https://git.um-react.app/um/web/releases/latest ### 自行构建 diff --git a/package.json b/package.json index bbad976..1041914 100644 --- a/package.json +++ b/package.json @@ -7,7 +7,7 @@ "description": "Unlock encrypted music file in browser.", "repository": { "type": "git", - "url": "https://git.unlock-music.dev/um/web" + "url": "https://git.um-react.app/um/web.git" }, "private": true, "scripts": { diff --git a/public/index.html b/public/index.html index 16ced03..4826a6f 100644 --- a/public/index.html +++ b/public/index.html @@ -1,89 +1,98 @@ - - - - - - 音乐解锁 - - - - - -
-
- -

请勿直接运行源代码!

- - + + + + + + 音乐解锁 + + + + + + +
+
+ +

请勿直接运行源代码!

+ -
- - - + +
+
+ + + + \ No newline at end of file diff --git a/src/component/ConfigDialog.vue b/src/component/ConfigDialog.vue index e4cd0e1..228f5b1 100644 --- a/src/component/ConfigDialog.vue +++ b/src/component/ConfigDialog.vue @@ -34,7 +34,7 @@ form >>> input {
参见: 获取设备 UUID · unlock-music/joox-crypto Wiki。 diff --git a/src/decrypt/index.ts b/src/decrypt/index.ts index e7c464b..310bd13 100644 --- a/src/decrypt/index.ts +++ b/src/decrypt/index.ts @@ -103,7 +103,7 @@ export async function Decrypt(file: FileInfo, config: Record): Prom rt_data = await XimalayaDecrypt(file.raw, raw.name, raw.ext); break; case 'mflach': //QQ Music New Flac - throw '网页版无法解锁,请使用CLI版本' + throw '网页版无法解锁,请使用CLI版本'; default: throw '不支持此文件格式'; } diff --git a/src/view/Home.vue b/src/view/Home.vue index 428ba91..cd73056 100644 --- a/src/view/Home.vue +++ b/src/view/Home.vue @@ -52,7 +52,8 @@ :table-data="tableData" @download="saveFile" @edit="editFile" - @play="changePlaying" /> + @play="changePlaying" + />
@@ -115,11 +116,7 @@ export default { console.error(errInfo, filename); this.$notify.error({ title: '出现问题', - message: - errInfo + - ',' + - filename + - ',参考使用提示', + message: errInfo + ',' + filename + '。', dangerouslyUseHTMLString: true, duration: 6000, });