Skip to content

Commit

Permalink
Merge branch 'dev'
Browse files Browse the repository at this point in the history
  • Loading branch information
lyswhut committed Mar 7, 2021
2 parents dd55e5e + 0e03ca5 commit bec10eb
Show file tree
Hide file tree
Showing 7 changed files with 16 additions and 35 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Expand Up @@ -6,6 +6,12 @@ Project versioning adheres to [Semantic Versioning](http://semver.org/).
Commit convention is based on [Conventional Commits](http://conventionalcommits.org).
Change log format is based on [Keep a Changelog](http://keepachangelog.com/).

## [1.8.1](https://github.com/lyswhut/lx-music-desktop/compare/v1.8.0...v1.8.1) - 2021-03-07

### 修复

- 修复歌词翻译的主题颜色适配问题

## [1.8.0](https://github.com/lyswhut/lx-music-desktop/compare/v1.7.1...v1.8.0) - 2021-03-07

### 新增
Expand Down
2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "lx-music-desktop",
"version": "1.8.0",
"version": "1.8.1",
"description": "一个免费的音乐查找助手",
"main": "./dist/electron/main.js",
"productName": "lx-music-desktop",
Expand Down
33 changes: 1 addition & 32 deletions publish/changeLog.md
@@ -1,34 +1,3 @@
### 新增

- 新增设置-其他-列表缓存信息清理功能,注:此功能一般情况下不要使用
- 新增启动参数`-play`,可以在启动软件时播放指定歌单,使用方法看Readme.md的"启动参数"部分
- 新增逐字歌词播放,默认开启,可到设置界面关闭,注:本功能目前仅对酷狗源的歌曲有效
- 新增自定义源功能,源编写规则可以去常见问题查看

### 优化

- 允许播放除了搜索列表以外的所有歌曲,即原来没有播放按钮或者灰色的歌曲都可以去尝试点击播放。注:该功能的原理是尝试自动切换到其他源播放,所以不一定会播放成功,特别是对于那些独家的资源
- 优化单首歌曲的“添加到列表”弹窗歌曲列表状态的显示;现在在收藏单首歌曲时,若列表存在本歌曲则列表名字将变成灰色不可点击状态。总的来说,在添加单首歌曲时若列表名是灰色,则证明当前歌曲已在那个列表中
- 将歌词翻译放到原文的下方,同时新增当前播放翻译的高亮功能

### 移除

- 移除虾米源。注:虽然已移除该源,但仍可尝试去播放之前添加的歌曲,虽然不一定会成功

### 修复

- 修复音乐搜索列表的稍后播放功能无效的问题
- 修复搜索列表双击不支持播放的源时会导致切歌的问题
- 修复歌单列表加载失败时无法进入歌单打开界面的问题
- 修复mg源歌单列表无法加载的问题
- 修复kg跳转到官方歌曲详情页的歌曲无法播放的问题
- 修复我的列表的歌曲添加到其他列表时不排除当前列表的问题
- 修复在下载列表右击未下载完成的歌曲弹出的右击菜单中没有开始下载选项的问题

### 变更

- 歌词翻译显示功能修改为默认关闭,注:此变更仅影响首次安装软件的用户

### 其他

- 更新electron到v9.4.4
- 修复歌词翻译的主题颜色适配问题
2 changes: 1 addition & 1 deletion publish/version.json

Large diffs are not rendered by default.

3 changes: 3 additions & 0 deletions src/renderer-lyric/components/core/Lyric.vue
Expand Up @@ -468,6 +468,9 @@ each(@themes, {
:global {
.lrc-content {
&.active {
.translation {
color: ~'@{color-@{value}-theme}';
}
.line {
color: ~'@{color-@{value}-theme}';
}
Expand Down
3 changes: 3 additions & 0 deletions src/renderer/components/core/PlayerDetail.vue
Expand Up @@ -834,6 +834,9 @@ each(@themes, {
:global {
.lrc-content {
&.active {
.translation {
color: ~'@{color-@{value}-theme}';
}
.line {
color: ~'@{color-@{value}-theme}';
}
Expand Down
2 changes: 1 addition & 1 deletion src/renderer/components/material/UserApiModal.vue
Expand Up @@ -15,7 +15,7 @@ material-modal(:show="visible" bg-close @close="handleClose")
div(:class="$style.note")
p(:class="[$style.ruleLink]")
| {{$t('material.user_api_modal.readme')}}
span.hover.underline(@click="handleOpenUrl('https://github.com/lyswhut/lx-music-desktop/blob/master/FAQ.md')" tips="https://github.com/lyswhut/lx-music-desktop/blob/master/FAQ.md") FAQ.md
span.hover.underline(@click="handleOpenUrl('https://github.com/lyswhut/lx-music-desktop/blob/master/FAQ.md#%E8%87%AA%E5%AE%9A%E4%B9%89%E6%BA%90%E8%84%9A%E6%9C%AC%E7%BC%96%E5%86%99%E8%AF%B4%E6%98%8E')" tips="https://github.com/lyswhut/lx-music-desktop/blob/master/FAQ.md") FAQ.md
p {{$t('material.user_api_modal.note')}}
div(:class="$style.footer")
material-btn(:class="$style.footerBtn" @click="handleImport") {{$t('material.user_api_modal.btn_import')}}
Expand Down

0 comments on commit bec10eb

Please sign in to comment.