mirror of
https://github.com/the1812/Bilibili-Evolved.git
synced 2025-11-04 21:22:45 +08:00
Bug fixes
This commit is contained in:
parent
43d325416e
commit
4875f95ee1
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -202,6 +202,7 @@
|
|||||||
displayNames: {
|
displayNames: {
|
||||||
guiSettings: "设置",
|
guiSettings: "设置",
|
||||||
blurSettingsPanel: "模糊设置面板背景",
|
blurSettingsPanel: "模糊设置面板背景",
|
||||||
|
clearCache: "清除缓存",
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
useDarkStyle: {
|
useDarkStyle: {
|
||||||
@ -409,6 +410,7 @@
|
|||||||
],
|
],
|
||||||
displayNames: {
|
displayNames: {
|
||||||
"downloadDanmaku": "下载视频时包含弹幕",
|
"downloadDanmaku": "下载视频时包含弹幕",
|
||||||
|
"downloadVideo": "下载视频",
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
videoInfo: {
|
videoInfo: {
|
||||||
@ -428,6 +430,9 @@
|
|||||||
styles: [
|
styles: [
|
||||||
"aboutStyle",
|
"aboutStyle",
|
||||||
],
|
],
|
||||||
|
displayNames: {
|
||||||
|
"about": "关于",
|
||||||
|
}
|
||||||
},
|
},
|
||||||
customControlBackgroundStyle: {
|
customControlBackgroundStyle: {
|
||||||
path: "min/custom-control-background.min.scss",
|
path: "min/custom-control-background.min.scss",
|
||||||
@ -1170,9 +1175,9 @@
|
|||||||
console.error(`Download error, XHR status: ${reason}`);
|
console.error(`Download error, XHR status: ${reason}`);
|
||||||
Toast.error(`无法下载组件<span>${Resource.all[key].displayName}</span>`, "错误");
|
Toast.error(`无法下载组件<span>${Resource.all[key].displayName}</span>`, "错误");
|
||||||
});
|
});
|
||||||
resource.dependencies
|
await Promise.all(resource.dependencies
|
||||||
.filter(it => it.type.name === "script")
|
.filter(it => it.type.name === "script")
|
||||||
.forEach(it => this.fetchByKey(it.key));
|
.map(it => this.fetchByKey(it.key)));
|
||||||
resource.styles
|
resource.styles
|
||||||
.filter(it => it.condition !== undefined ? it.condition() : true)
|
.filter(it => it.condition !== undefined ? it.condition() : true)
|
||||||
.forEach(it =>
|
.forEach(it =>
|
||||||
|
|||||||
@ -202,6 +202,7 @@
|
|||||||
displayNames: {
|
displayNames: {
|
||||||
guiSettings: "设置",
|
guiSettings: "设置",
|
||||||
blurSettingsPanel: "模糊设置面板背景",
|
blurSettingsPanel: "模糊设置面板背景",
|
||||||
|
clearCache: "清除缓存",
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
useDarkStyle: {
|
useDarkStyle: {
|
||||||
@ -409,6 +410,7 @@
|
|||||||
],
|
],
|
||||||
displayNames: {
|
displayNames: {
|
||||||
"downloadDanmaku": "下载视频时包含弹幕",
|
"downloadDanmaku": "下载视频时包含弹幕",
|
||||||
|
"downloadVideo": "下载视频",
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
videoInfo: {
|
videoInfo: {
|
||||||
@ -428,6 +430,9 @@
|
|||||||
styles: [
|
styles: [
|
||||||
"aboutStyle",
|
"aboutStyle",
|
||||||
],
|
],
|
||||||
|
displayNames: {
|
||||||
|
"about": "关于",
|
||||||
|
}
|
||||||
},
|
},
|
||||||
customControlBackgroundStyle: {
|
customControlBackgroundStyle: {
|
||||||
path: "min/custom-control-background.min.scss",
|
path: "min/custom-control-background.min.scss",
|
||||||
@ -1170,9 +1175,9 @@
|
|||||||
console.error(`Download error, XHR status: ${reason}`);
|
console.error(`Download error, XHR status: ${reason}`);
|
||||||
Toast.error(`无法下载组件<span>${Resource.all[key].displayName}</span>`, "错误");
|
Toast.error(`无法下载组件<span>${Resource.all[key].displayName}</span>`, "错误");
|
||||||
});
|
});
|
||||||
resource.dependencies
|
await Promise.all(resource.dependencies
|
||||||
.filter(it => it.type.name === "script")
|
.filter(it => it.type.name === "script")
|
||||||
.forEach(it => this.fetchByKey(it.key));
|
.map(it => this.fetchByKey(it.key)));
|
||||||
resource.styles
|
resource.styles
|
||||||
.filter(it => it.condition !== undefined ? it.condition() : true)
|
.filter(it => it.condition !== undefined ? it.condition() : true)
|
||||||
.forEach(it =>
|
.forEach(it =>
|
||||||
|
|||||||
File diff suppressed because one or more lines are too long
@ -346,7 +346,7 @@ body>div.to-top.on,
|
|||||||
}
|
}
|
||||||
.list.main_body .right_box .select_box .select .option_block .option.selected,
|
.list.main_body .right_box .select_box .select .option_block .option.selected,
|
||||||
.toast-card-title,
|
.toast-card-title,
|
||||||
.toast-card-message
|
.toast-card-message,
|
||||||
.toast-card span,
|
.toast-card span,
|
||||||
.toast-card .link
|
.toast-card .link
|
||||||
{
|
{
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user