-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
55 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
## 4.0.4 | ||
|
||
- 移除:稍后再看列表页 双列模式 适配页面变化 | ||
- 新增:稍后再看列表页 增大视频信息字号 | ||
- 新增:稍后再看列表页 增大字号、修改列数、隐藏按钮 | ||
|
||
## 4.0.3 | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,40 @@ | ||
import { Item } from '../../../../types/item' | ||
|
||
export const watchlaterBasicItems: Item[] = [ | ||
{ | ||
type: 'list', | ||
id: 'watchlater-layout', | ||
name: '修改 视频列表列数', | ||
description: ['未启用时,B 站自动判断列数'], | ||
defaultValue: 'watchlater-layout-disable', | ||
disableValue: 'watchlater-layout-disable', | ||
options: [ | ||
{ | ||
id: 'watchlater-layout-disable', | ||
name: '未启用', | ||
}, | ||
{ | ||
id: 'watchlater-layout-4-column', | ||
name: '4 列布局', | ||
}, | ||
{ | ||
id: 'watchlater-layout-5-column', | ||
name: '5 列布局', | ||
}, | ||
{ | ||
id: 'watchlater-layout-6-column', | ||
name: '6 列布局', | ||
}, | ||
], | ||
}, | ||
{ | ||
type: 'switch', | ||
id: 'watchlater-increase-font-size', | ||
name: '增大 视频信息字号', | ||
}, | ||
{ | ||
type: 'switch', | ||
id: 'watchlater-hide-feedback', | ||
name: '隐藏 新版反馈按钮', | ||
}, | ||
] |