Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
78 changes: 54 additions & 24 deletions package-lock.json

Large diffs are not rendered by default.

2 changes: 2 additions & 0 deletions src/common/defaultSetting.ts
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,8 @@ const defaultSetting: LX.AppSetting = {
'desktopLyric.style.isFontWeightExtended': true,

'list.isClickPlayList': false,
'list.isShowCover': false,
'list.coverSize': 44,
'list.isShowSource': true,
'list.isSaveScrollLocation': true,
'list.addMusicLocationType': 'top',
Expand Down
10 changes: 10 additions & 0 deletions src/common/types/app_setting.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -495,6 +495,16 @@ declare global {
*/
'list.actionButtonsVisible': boolean

/**
* 是否在列表中显示歌曲封面
*/
'list.isShowCover': boolean

/**
* 列表中歌曲封面大小
*/
'list.coverSize': number

/**
* 是否启用下载功能
*/
Expand Down
9 changes: 9 additions & 0 deletions src/lang/en-us.json
Original file line number Diff line number Diff line change
Expand Up @@ -473,6 +473,15 @@
"setting__list_click_action": "Automatically switch to current list when double-clicking a song in the list (Only valid for \"Playlists\" and \"Charts\" page)",
"setting__list_scroll": "Remember position of scroll bar of playlist (Only valid for \"Your Library\" page)",
"setting__list_source": "Show which music streaming service the song is from (Only valid for \"Your Library\" page)",
"setting__list_cover_title": "List Cover Settings",
"setting__list_cover": "Album art",
"setting__list_show_cover": "Show album art in list",
"setting__list_cover_size_32px": "32px",
"setting__list_cover_size_44px": "44px",
"setting__list_cover_size_56px": "56px",
"setting__list_cover_size_72px": "72px",
"setting__list_cover_size_88px": "88px",
"setting__list_cover_size_104px": "104px",
"setting__network": "Network",
"setting__network_proxy_host": "Host",
"setting__network_proxy_password": "Password",
Expand Down
9 changes: 9 additions & 0 deletions src/lang/zh-cn.json
Original file line number Diff line number Diff line change
Expand Up @@ -473,6 +473,15 @@
"setting__list_click_action": "双击列表里的歌曲时自动切换到当前列表播放(仅对「歌单」和「排行榜」有效)",
"setting__list_scroll": "记住播放列表滚动条位置(仅对「我的列表」有效)",
"setting__list_source": "显示歌曲来源平台(仅对「我的列表」有效)",
"setting__list_cover_title": "列表封面设置",
"setting__list_cover": "列表封面",
"setting__list_show_cover": "在列表中显示歌曲封面",
"setting__list_cover_size_32px": "32px",
"setting__list_cover_size_44px": "44px",
"setting__list_cover_size_56px": "56px",
"setting__list_cover_size_72px": "72px",
"setting__list_cover_size_88px": "88px",
"setting__list_cover_size_104px": "104px",
"setting__network": "网络设置",
"setting__network_proxy_host": "主机",
"setting__network_proxy_password": "密码",
Expand Down
9 changes: 9 additions & 0 deletions src/lang/zh-tw.json
Original file line number Diff line number Diff line change
Expand Up @@ -473,6 +473,15 @@
"setting__list_click_action": "雙擊清單裡的歌曲時自動切換到目前清單播放(僅對「歌單」、「排行榜」有效)",
"setting__list_scroll": "記住播放清單滾動條位置(僅對「我的清單」有效)",
"setting__list_source": "顯示歌曲來自哪個音樂串流平台(僅對「我的清單」有效)",
"setting__list_cover_title": "列表封面設置",
"setting__list_cover": "清單封面",
"setting__list_show_cover": "在清單中顯示歌曲封面",
"setting__list_cover_size_32px": "32px",
"setting__list_cover_size_44px": "44px",
"setting__list_cover_size_56px": "56px",
"setting__list_cover_size_72px": "72px",
"setting__list_cover_size_88px": "88px",
"setting__list_cover_size_104px": "104px",
"setting__network": "網路設定",
"setting__network_proxy_host": "主機",
"setting__network_proxy_password": "密碼",
Expand Down
Loading