Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
This commit is contained in:
bggRGjQaUbCoE
2025-11-14 09:17:26 +08:00
parent 0d4d92a202
commit 861365930d
49 changed files with 110 additions and 56 deletions

View File

@@ -2,7 +2,8 @@ enum ActionType {
skip('跳过'),
mute('静音'),
full('整个视频'),
poi('精彩时刻');
poi('精彩时刻')
;
final String title;
const ActionType(this.title);

View File

@@ -97,7 +97,8 @@ enum SegmentType {
'仅用于对整个视频进行标记。适用于展示UP主免费或获得补贴后使用的产品、服务或场地的视频。',
Color(0xFF008a5c),
[ActionType.full],
);
)
;
/// from https://github.com/hanydd/BilibiliSponsorBlock/blob/master/public/_locales/zh_CN/messages.json
final String title;

View File

@@ -3,7 +3,8 @@ enum SkipType {
skipOnce('跳过一次'),
skipManually('手动跳过'),
showOnly('仅显示'),
disable('禁用');
disable('禁用')
;
final String title;
const SkipType(this.title);