Skip to content

Commit cb93dfa

Browse files
committed
完善readme
1 parent c925179 commit cb93dfa

5 files changed

Lines changed: 21 additions & 21 deletions

File tree

README.md

Lines changed: 19 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,34 @@
1-
# 洛雪音乐助手桌面版
1+
<p align="center"><a href="https://github.com/lyswhut/lx-music-desktop" target="_blank" rel="noopener noreferrer"><img width="100" src="https://github.com/lyswhut/lx-music-desktop/blob/master/doc/images/icon.png" alt="lx-music logo"></a></p>
22

3-
[![GitHub release][1]][2]
3+
<p align="center">
4+
<a href="https://github.com/lyswhut/lx-music-desktop/releases"><img src="https://img.shields.io/github/release/lyswhut/lx-music-desktop" alt="Release version"></a>
5+
<a href="https://ci.appveyor.com/project/lyswhut/lx-music-desktop"><img src="https://ci.appveyor.com/api/projects/status/flrsqd5ymp8fnte5?svg=true" alt="Build status"></a>
6+
<a href="https://github.com/lyswhut/lx-music-desktop/releases"><img src="https://img.shields.io/github/downloads/lyswhut/lx-music-desktop/latest/total" alt="Downloads"></a>
7+
<a href="https://github.com/lyswhut/lx-music-desktop/tree/dev"><img src="https://img.shields.io/github/package-json/v/lyswhut/lx-music-desktop/dev" alt="Dev branch version"></a>
8+
<!-- <a href="https://github.com/lyswhut/lx-music-desktop/blob/master/LICENSE"><img src="https://img.shields.io/github/license/lyswhut/lx-music-desktop" alt="License"></a> -->
9+
</p>
10+
11+
<!-- [![GitHub release][1]][2]
412
[![Build status][3]][4]
513
[![GitHub Releases Download][5]][6]
614
[![dev branch][7]][8]
7-
<!-- [![GitHub license][9]][10] -->
15+
[![GitHub license][9]][10] -->
816

9-
[1]: https://img.shields.io/github/release/lyswhut/lx-music-desktop
17+
<!-- [1]: https://img.shields.io/github/release/lyswhut/lx-music-desktop
1018
[2]: https://github.com/lyswhut/lx-music-desktop/releases
1119
[3]: https://ci.appveyor.com/api/projects/status/flrsqd5ymp8fnte5?svg=true
1220
[4]: https://ci.appveyor.com/project/lyswhut/lx-music-desktop
1321
[5]: https://img.shields.io/github/downloads/lyswhut/lx-music-desktop/latest/total
14-
<!-- [5]: https://img.shields.io/github/downloads/lyswhut/lx-music-desktop/total -->
22+
[5]: https://img.shields.io/github/downloads/lyswhut/lx-music-desktop/total
1523
[6]: https://github.com/lyswhut/lx-music-desktop/releases
1624
[7]: https://img.shields.io/github/package-json/v/lyswhut/lx-music-desktop/dev
1725
[8]: https://github.com/lyswhut/lx-music-desktop/tree/dev
1826
[9]: https://img.shields.io/github/license/lyswhut/lx-music-desktop
19-
<!-- [10]: https://github.com/lyswhut/lx-music-desktop/blob/master/LICENSE -->
27+
[10]: https://github.com/lyswhut/lx-music-desktop/blob/master/LICENSE -->
28+
29+
<h2 align="center">洛雪音乐助手桌面版</h2>
2030

21-
## 说明
31+
### 说明
2232

2333
一个基于 Electron + Vue 开发的 Windows 版音乐软件。
2434

@@ -33,7 +43,7 @@
3343

3444
感谢 <https://github.com/messoer> 提供的部分音乐API!
3545

36-
## 使用方法
46+
### 使用方法
3747

3848
```bash
3949
# 开发模式
@@ -47,6 +57,6 @@ npm run pack
4757

4858
```
4959

50-
## License
60+
### License
5161

5262
Apache License 2.0

doc/images/app.png

30.6 KB
Loading

doc/images/icon.png

12.8 KB
Loading

publish/changeLog.md

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +0,0 @@
1-
### 新增
2-
3-
- 新增**百度音乐**排行榜及其音乐直接试听与下载
4-
- 新增网易云排行榜音乐直接试听与下载(目前仅支持128k音质)
5-
- 新增酷狗排行榜音乐直接试听与下载(目前仅支持128k音质)
6-
7-
### 修复
8-
9-
- 修复更新弹窗历史版本描述多余的换行问题
10-
- 修复歌曲无法播放的情况下歌词仍会播放的问题

src/renderer/store/modules/download.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -116,12 +116,12 @@ const actions = {
116116
// 检查是否可以开始任务
117117
if (downloadInfo && downloadInfo != state.downloadStatus.WAITING) commit('setStatus', { downloadInfo, status: state.downloadStatus.WAITING })
118118
let result = getStartTask(state.list, state.downloadStatus, rootState.setting.download.maxDownloadNum)
119-
if (!result) return downloadInfo && commit('setStatus', { downloadInfo, status: state.downloadStatus.WAITING })
119+
if (!result) return
120120
if (!downloadInfo) downloadInfo = result
121121

122122
// 开始任务
123-
commit('setStatusText', { downloadInfo, text: '任务初始化中' })
124123
commit('onDownload', downloadInfo)
124+
commit('setStatusText', { downloadInfo, text: '任务初始化中' })
125125
let msg = checkPath(rootState.setting.download.savePath)
126126
if (msg) return commit('setStatusText', '检查下载目录出错: ' + msg)
127127
const _this = this

0 commit comments

Comments
 (0)