Skip to content

Commit 526b5fe

Browse files
committed
Merge branch 'dev'
2 parents b3d13c3 + 1c4e9ed commit 526b5fe

File tree

6 files changed

+63
-81
lines changed

6 files changed

+63
-81
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,12 @@ Project versioning adheres to [Semantic Versioning](http://semver.org/).
66
Commit convention is based on [Conventional Commits](http://conventionalcommits.org).
77
Change log format is based on [Keep a Changelog](http://keepachangelog.com/).
88

9+
## [1.1.1](https://github.com/lyswhut/lx-music-desktop/compare/v1.1.0...v1.1.1) - 2020-09-19
10+
11+
### 修复
12+
13+
- 修复某些情况下桌面歌词不会播放的问题
14+
915
## [1.1.0](https://github.com/lyswhut/lx-music-desktop/compare/v1.0.1...v1.1.0) - 2020-09-18
1016

1117
### 新增

package-lock.json

Lines changed: 52 additions & 49 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "lx-music-desktop",
3-
"version": "1.1.0",
3+
"version": "1.1.1",
44
"description": "一个免费的音乐下载助手",
55
"main": "./dist/electron/main.js",
66
"productName": "lx-music-desktop",
@@ -171,7 +171,7 @@
171171
"cfonts": "^2.8.6",
172172
"chalk": "^4.1.0",
173173
"changelog-parser": "^2.8.0",
174-
"copy-webpack-plugin": "^6.1.0",
174+
"copy-webpack-plugin": "^6.1.1",
175175
"core-js": "^3.6.5",
176176
"cross-env": "^7.0.2",
177177
"css-loader": "^4.3.0",

publish/changeLog.md

Lines changed: 1 addition & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,3 @@
1-
### 新增
2-
3-
- 在歌单详情界面新增播放当前歌单按钮、收藏歌单按钮,注:播放歌单不会将歌曲添加到试听列表
4-
- 新增`不允许将歌词窗口拖出主屏幕之外`的设置项,默认开启,在连接多个屏幕时想要拖动到其他屏幕时可关闭此设置
5-
- 新增大部分平台的歌词翻译,感谢 @InoriHimea 提供的[krc解码算法](https://github.com/lyswhut/lx-music-desktop/issues/296#issuecomment-683285784)
6-
- 新增`显示歌词翻译`设置,默认开启,仅支持某些平台,注:无论该设置是否开启,嵌入或下载歌词时都不会带上翻译
7-
- 新增`显示切换动画`设置,默认开启,关闭时将基本禁用软件内的所有切换动画
8-
- 播放状态栏新增桌面歌词的开关、播放模式的切换、歌曲的收藏按钮,Thanks to @andylow for the [icon](https://github.com/lyswhut/lx-music-desktop/pull/309)!
9-
101
### 修复
112

12-
- 修复使用全局快捷键还原窗口时,窗口没有获取焦点的问题
13-
- 修复我的列表搜索对最后一个字符的匹配问题
14-
- 修复窗口在`较小`模式下最小化/关闭按钮不居中的问题
15-
16-
### 优化
17-
18-
- 桌面歌词当前播放行改为上下居中
19-
- 为区分静音状态,静音时音量条会变淡,调整音量条时将会取消静音
20-
- 优化随机播放机制,现在通过`下一曲`切换歌曲时,直到播放完整个列表之前将不会再随机到之前播放过的歌曲,并且通过`上一曲`可以正确播放上一首歌曲
21-
- 当下载目录没有写入权限时将显示没有写入权限的提示
22-
23-
### 移除
24-
25-
- 移除默认的全局声音媒体快捷键接管
26-
- 移除对百度音乐的支持,因百度音乐原有的大部分API失效,而且该平台相对其他平台来说音乐太少了,可有可无,以后再看情况恢复
27-
28-
### 其他
29-
30-
- 更新electron到 10.1.2
3+
- 修复某些情况下桌面歌词不会播放的问题

publish/version.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

src/renderer/components/core/Player.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -668,8 +668,8 @@ export default {
668668
.catch(() => {
669669
this.status = this.statusText = this.$t('core.player.lyric_error')
670670
}).finally(() => {
671-
this.setLyric()
672671
this.handleUpdateWinLyricInfo('lyric', { lrc: this.musicInfo.lrc, tlrc: this.musicInfo.tlrc })
672+
this.setLyric()
673673
})
674674
},
675675
handleRemoveMusic() {

0 commit comments

Comments
 (0)