Add Tips for .kgm while using "file:" protocol
This commit is contained in:
parent
6ef0850c40
commit
ad47a713ad
20
src/App.vue
20
src/App.vue
@ -100,16 +100,16 @@
|
|||||||
} catch (e) {
|
} catch (e) {
|
||||||
}
|
}
|
||||||
if ((!!updateInfo && process.env.NODE_ENV === 'production') && (!!updateInfo.HttpsFound ||
|
if ((!!updateInfo && process.env.NODE_ENV === 'production') && (!!updateInfo.HttpsFound ||
|
||||||
(!!updateInfo.Found && window.location.protocol !== "https:"))) {
|
(!!updateInfo.Found && document.location.protocol !== "https:"))) {
|
||||||
this.$notify.warning({
|
this.$notify.warning({
|
||||||
title: '发现更新',
|
title: '发现更新',
|
||||||
message: '发现新版本 v' + updateInfo.Version +
|
message: '发现新版本 v' + updateInfo.Version +
|
||||||
'<br/>更新详情:' + updateInfo.Detail +
|
'<br/>更新详情:' + updateInfo.Detail +
|
||||||
'<br/><a target="_blank" href="' + updateInfo.URL + '">获取更新</a>',
|
'<br/><a target="_blank" href="' + updateInfo.URL + '">获取更新</a>',
|
||||||
dangerouslyUseHTMLString: true,
|
dangerouslyUseHTMLString: true,
|
||||||
duration: 15000,
|
duration: 15000,
|
||||||
position: 'top-left'
|
position: 'top-left'
|
||||||
});
|
});
|
||||||
} else {
|
} else {
|
||||||
this.$notify.info({
|
this.$notify.info({
|
||||||
title: '离线使用',
|
title: '离线使用',
|
||||||
|
@ -10,9 +10,14 @@ const KgmHeader = [
|
|||||||
const VprMaskDiff = [0x25, 0xDF, 0xE8, 0xA6, 0x75, 0x1E, 0x75, 0x0E,
|
const VprMaskDiff = [0x25, 0xDF, 0xE8, 0xA6, 0x75, 0x1E, 0x75, 0x0E,
|
||||||
0x2F, 0x80, 0xF3, 0x2D, 0xB8, 0xB6, 0xE3, 0x11,
|
0x2F, 0x80, 0xF3, 0x2D, 0xB8, 0xB6, 0xE3, 0x11,
|
||||||
0x00]
|
0x00]
|
||||||
const PreDefinedKey = "MoOtOiTvINGwd2E6n0E1i7L5t2IoOoNk"
|
|
||||||
|
|
||||||
export async function Decrypt(file, raw_filename, raw_ext) {
|
export async function Decrypt(file, raw_filename, raw_ext) {
|
||||||
|
if (document.location.protocol === "file:") {
|
||||||
|
return {
|
||||||
|
status: false,
|
||||||
|
message: "请使用<a target='_blank' href='https://github.com/ix64/unlock-music/wiki/其他音乐格式工具'>CLI版本</a>进行解锁"
|
||||||
|
}
|
||||||
|
}
|
||||||
const oriData = new Uint8Array(await GetArrayBuffer(file));
|
const oriData = new Uint8Array(await GetArrayBuffer(file));
|
||||||
if (raw_ext === "vpr") {
|
if (raw_ext === "vpr") {
|
||||||
if (!IsBytesEqual(VprHeader, oriData.slice(0, 0x10)))
|
if (!IsBytesEqual(VprHeader, oriData.slice(0, 0x10)))
|
||||||
|
Loading…
Reference in New Issue
Block a user