This commit is contained in:
Kokomi 2023-10-31 03:48:20 +08:00
parent 01ea08733e
commit d58c9e1fdb
4 changed files with 8 additions and 6 deletions

View File

@ -1,9 +1,10 @@
# 2.5.1 dev # 2.5.1
* 面板功能升级 * 面板功能升级
* 角色面板展示圣遗物副词缀统计 * 角色面板展示圣遗物副词缀统计
* 星铁面板展示圣遗物评分与评级 * 星铁面板展示圣遗物评分与评级
* 功能重构与目录调整 * 功能重构与目录调整
* **注意:** 由于底层架构与目录调整如有其他miao-plugin相关功能例如面板图或伤害计算等可能会有不兼容情况短期内请谨慎升级
* 重构Models的结构重构Meta的数据处理逻辑 * 重构Models的结构重构Meta的数据处理逻辑
* 重构面板数据、圣遗物数据、角色属性的处理与保存逻辑 * 重构面板数据、圣遗物数据、角色属性的处理与保存逻辑
* 原神的面板数据迁移至 **/data/PlayerData/gs**,原神资源迁移至**resources/meta-gs** * 原神的面板数据迁移至 **/data/PlayerData/gs**,原神资源迁移至**resources/meta-gs**

View File

@ -38,7 +38,7 @@ const ProfileAvatar = {
return false return false
} }
// 检查武器及天赋 // 检查武器及天赋
if (!avatar.weapon || lodash.isUndefined(avatar.weapon.promote) || !avatar.talent) { if (avatar.isGs && (!avatar.weapon || lodash.isUndefined(avatar.weapon.promote) || !avatar.talent)) {
return false return false
} }
// 检查圣遗物词条是否完备 // 检查圣遗物词条是否完备

View File

@ -16,7 +16,7 @@ body {
.group-rank-icon { .group-rank-icon {
width: 16px; width: 16px;
height: 16px; height: 16px;
background: url("imgs/mark-icon.png"); background: url("./imgs/mark-icon.png");
background-size: auto 100%; background-size: auto 100%;
display: inline-block; display: inline-block;
vertical-align: bottom; vertical-align: bottom;
@ -55,7 +55,7 @@ body {
width: 24px; width: 24px;
height: 24px; height: 24px;
margin: 13px 12px; margin: 13px 12px;
background: url('imgs/mark-icon.png'); background: url('./imgs/mark-icon.png');
background-size: auto 100%; background-size: auto 100%;
text-align: center; text-align: center;
font-size: 12px; font-size: 12px;
@ -66,7 +66,7 @@ body {
.char-idx .idx-icon.mode-dmg.idx-1 { .char-idx .idx-icon.mode-dmg.idx-1 {
width: 48px; width: 48px;
margin: 13px 0; margin: 13px 0;
background-image: url('imgs/mark-icon2.png'); background-image: url('./imgs/mark-icon2.png');
color: rgba(0, 0, 0, 0); color: rgba(0, 0, 0, 0);
text-shadow: none; text-shadow: none;
} }
@ -342,3 +342,4 @@ body {
font-size: 12px; font-size: 12px;
color: #aaa; color: #aaa;
} }
/*# sourceMappingURL=rank-profile-list.css.map */