Skip to content

Commit 32e4213

Browse files
committed
移除专辑栏隐藏设置
1 parent 9858170 commit 32e4213

3 files changed

Lines changed: 6 additions & 7 deletions

File tree

publish/changeLog.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
### 修复
1+
### 移除
22

3-
- 修复下载过程中出错重试5次都失败后不会自动开始下一个任务的Bug
4-
- 修复播放到一半URL过期时不会刷新URL直接播放下一首的问题
3+
- 移除列表栏设置的隐藏专辑栏选项(感觉这个设置并没有什么luan用,并且还会打破布局)

src/renderer/views/List.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
:indeterminate="isIndeterminate" :title="isSelectAll && !isIndeterminate ? '全不选' : '全选'")
1212
th.nobreak(style="width: 25%;") 歌曲名
1313
th.nobreak(style="width: 20%;") 歌手
14-
th.nobreak(style="width: 20%;" v-if="setting.list.isShowAlbumName") 专辑
14+
th.nobreak(style="width: 20%;") 专辑
1515
th.nobreak(style="width: 20%;") 操作
1616
th.nobreak(style="width: 10%;") 时长
1717
div.scroll(:class="$style.tbody")
@@ -28,7 +28,7 @@
2828
//- span.badge.badge-info(v-if="item._types.ape") APE
2929
//- span.badge.badge-success(v-if="item._types.flac") FLAC
3030
td.break(style="width: 20%;") {{item.singer}}
31-
td.break(style="width: 20%;" v-if="setting.list.isShowAlbumName") {{item.albumName}}
31+
td.break(style="width: 20%;") {{item.albumName}}
3232
td(style="width: 20%; padding-left: 0; padding-right: 0;")
3333
material-list-buttons(:index="index" @btn-click="handleListBtnClick")
3434
//- button.btn-info(type='button' v-if="item._types['128k'] || item._types['192k'] || item._types['320k'] || item._types.flac" @click.stop='openDownloadModal(index)') 下载

src/renderer/views/Setting.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,8 @@ div.scroll(:class="$style.setting")
4545
div
4646
material-checkbox(:id="`setting_download_musicName_${item.value}`" :class="$style.gapLeft" name="setting_download_musicName" :value="item.value" :key="item.value" need
4747
v-model="current_setting.download.fileName" v-for="item in musicNames" :label="item.name")
48-
dt 列表设置
49-
dd(title='播放列表是否显示专辑栏')
48+
//- dt 列表设置
49+
//- dd(title='播放列表是否显示专辑栏')
5050
h3 专辑栏
5151
div
5252
material-checkbox(id="setting_list_showalbum" v-model="current_setting.list.isShowAlbumName" label="是否显示专辑栏")

0 commit comments

Comments
 (0)