diff --git a/publish/changeLog.md b/publish/changeLog.md index ab927572..7f7fc9bf 100644 --- a/publish/changeLog.md +++ b/publish/changeLog.md @@ -5,6 +5,7 @@ - 新增将我的列表保存为TXT、CSV格式,可以去设置-备份与恢复中使用(注意:此类格式的备份目前不支持恢复到LX Music中) - 新增根据歌曲名、歌手名等字段对列表自动排序的功能,可以在我的列表右击列表名弹出的菜单中使用 - 新增将播放与下载的歌词转换为繁体中文选项,默认关闭,可在设置-播放设置中开启 +- 现在已允许进入临时播放列表,即:使用歌单详情页、排行榜名称右键菜单的“播放”按钮播放歌曲时,可右击播放封面进入此临时列表 ### 优化 diff --git a/src/renderer/store/modules/player.js b/src/renderer/store/modules/player.js index aac3d6af..3234dee4 100644 --- a/src/renderer/store/modules/player.js +++ b/src/renderer/store/modules/player.js @@ -285,7 +285,7 @@ const actions = { return } - console.log(playInfo.playListId) + // console.log(playInfo.playListId) const currentListId = playInfo.playListId const currentList = getList(currentListId) diff --git a/src/renderer/views/Search.vue b/src/renderer/views/Search.vue index 4777a4f1..315b075e 100644 --- a/src/renderer/views/Search.vue +++ b/src/renderer/views/Search.vue @@ -315,7 +315,7 @@ export default { } this.selectedData = this.listInfo.list.slice(lastSelectIndex, clickIndex + 1) if (isNeedReverse) this.selectedData.reverse() - let nodes = this.$refs.dom_tbody.childNodes + let nodes = Array.from(this.$refs.dom_tbody.childNodes).filter(n => n.nodeType === 1) do { const node = nodes[lastSelectIndex] if (node.tagName == 'TR') {