Skip to content

Commit e1b2fb9

Browse files
authored
Merge pull request #100 from CKylinMC/fix/foman
Fix/foman
2 parents a37a885 + 35b6902 commit e1b2fb9

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

scripts/ckylin-bilibili-unfollow.user.js

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// ==UserScript==
22
// @name [Bilibili] 关注管理器
33
// @namespace ckylin-bilibili-foman
4-
// @version 0.2.22
4+
// @version 0.2.23
55
// @description 快速排序和筛选你的关注列表,一键取关不再关注的UP等
66
// @author CKylinMC
77
// @updateURL https://cdn.jsdelivr.net/gh/CKylinMC/UserJS/scripts/ckylin-bilibili-unfollow.user.js
@@ -87,10 +87,10 @@
8787
}
8888
};
8989
const cfg = {
90-
debug: !false,
90+
debug: false,
9191
retrial: 3,
9292
enableNewModules: false,
93-
VERSION: "0.2.22",
93+
VERSION: "0.2.23",
9494
infobarTemplate: () => `共读取 ${datas.fetched} 条关注`,
9595
titleTemplate: () => `<h1>关注管理器 FoMan <small>v${cfg.VERSION} ${cfg.debug ? "debug" : ""}</small> ${datas.settings.enableExpermentals ? "!" : ""}</h1>`,
9696

@@ -1118,7 +1118,7 @@
11181118
display: flex;
11191119
flex-wrap: nowrap;
11201120
flex-direction: column;
1121-
max-height: calc(80vh - 80px);
1121+
max-height: calc(80vh - 110px);
11221122
}
11231123
.CKFOMAN-data-inforow{
11241124
border-radius: 6px;
@@ -1521,11 +1521,11 @@
15211521
title += " | 悄悄关注";
15221522
}
15231523
if (data.special === 1) {
1524-
name.innerHTML = `<i class="mdi mdi-18px mdi-heart" style="vertical-align: middle;color:orangered!important" title="特别关注"></i>` + name.innerHTML;
1524+
name.innerHTML = `<span style="vertical-align: middle;color:orangered!important" title="特别关注">❤️</span>` + name.innerHTML;
15251525
title += " | 特别关注";
15261526
}
15271527
if (data.attribute === 6) {
1528-
name.innerHTML = `<i class="mdi mdi-18px mdi-swap-horizontal" style="vertical-align: middle;color:orangered!important" title="互相关注"></i>` + name.innerHTML;
1528+
name.innerHTML = `<span style="vertical-align: middle;color:orangered!important" title="互相关注">⇆</span>` + name.innerHTML;
15291529
title += " | 互相关注";
15301530
}
15311531
if (data.vip.vipType !== 0) {

0 commit comments

Comments
 (0)