diff --git a/CHANGELOG.md b/CHANGELOG.md index 8baa3755..f6aa2e5c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,25 @@ 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/). +## [0.5.0](https://github.com/lyswhut/lx-music-desktop/compare/v0.4.0...v0.5.0) - 2019-09-05 + +### 新增 + +- 新增**封面嵌入**(默认开启,可到设置-下载设置关闭) +- 新增**歌词下载**(默认关闭,可到设置-下载设置开启) +- 新增单例应用功能(实现软件单开功能,禁止软件多开) + +### 优化 + +- 优化歌单列表动画 + +### 修复 + +- 修复歌单无法翻页的问题 +- 修复在某些情况下,添加下载歌曲导致下载列表崩溃的问题 +- 修复版本更新弹窗Bug +- 修复酷狗歌单推荐歌单出现在其他分类中的Bug + ## [0.4.0](https://github.com/lyswhut/lx-music-desktop/compare/v0.3.5...v0.4.0) - 2019-09-04 diff --git a/package.json b/package.json index cb7c8391..852bacd6 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "lx-music-desktop", - "version": "0.4.0", + "version": "0.5.0", "description": "一个免费的音乐下载助手", "main": "./dist/electron/main.js", "productName": "lx-music-desktop", diff --git a/publish/version.json b/publish/version.json index c31c5188..fe77f402 100644 --- a/publish/version.json +++ b/publish/version.json @@ -1,7 +1,11 @@ { - "version": "0.4.0", - "desc": "

新增

\n\n

移除

\n\n", + "version": "0.5.0", + "desc": "

新增

\n\n

优化

\n\n

修复

\n\n", "history": [ + { + "version": "0.4.0", + "desc": "

新增

\n\n

移除

\n\n" + }, { "version": "0.3.5", "desc": "

新增

\n\n

优化

\n\n

修复

\n\n" diff --git a/src/renderer/utils/music/kw/api-temp.js b/src/renderer/utils/music/kw/api-temp.js index d29e3670..c4b99286 100644 --- a/src/renderer/utils/music/kw/api-temp.js +++ b/src/renderer/utils/music/kw/api-temp.js @@ -3,7 +3,7 @@ import { headers, timeout } from '../options' const api_temp = { getMusicUrl(songInfo, type) { - const requestObj = httpFatch(`http://45.32.53.128:3002/m/kw/u/${songInfo.songmid}/${type}`, { + const requestObj = httpFatch(`http://temp.tempmusic.tk/url/kw/${songInfo.songmid}/${type}`, { method: 'get', headers, timeout,