Skip to content
This repository was archived by the owner on Jun 26, 2024. It is now read-only.

Commit bc456e8

Browse files
author
trazyn
authored
Merge pull request #226 from trazyn/dev
v1.2.7
2 parents f68a51d + d844b22 commit bc456e8

File tree

5 files changed

+17
-11
lines changed

5 files changed

+17
-11
lines changed

README.md

+8-8
Original file line numberDiff line numberDiff line change
@@ -43,27 +43,27 @@
4343
Download the last version on the [website](https://github.com/trazyn/ieaseMusic/releases/latest) or below.
4444

4545
#### Mac(10.9+)
46-
[Download](https://github.com/trazyn/ieaseMusic/releases/download/v1.2.6/ieaseMusic-1.2.6-mac.dmg) the `.dmg` file, Or use `homebrew`:
46+
[Download](https://github.com/trazyn/ieaseMusic/releases/download/v1.2.7/ieaseMusic-1.2.7-mac.dmg) the `.dmg` file, Or use `homebrew`:
4747
```
4848
brew cask install ieasemusic
4949
```
5050

5151
#### Linux
5252

53-
[Download](https://github.com/trazyn/ieaseMusic/releases/download/v1.2.6/ieaseMusic-1.2.6-linux-amd64.deb) the `.deb` file for 'Debian / Ubuntu':
53+
[Download](https://github.com/trazyn/ieaseMusic/releases/download/v1.2.7/ieaseMusic-1.2.7-linux-amd64.deb) the `.deb` file for 'Debian / Ubuntu':
5454
```
55-
$ sudo dpkg -i ieaseMusic-1.2.6-linux-amd64.deb
55+
$ sudo dpkg -i ieaseMusic-1.2.7-linux-amd64.deb
5656
```
5757

58-
[Download](https://github.com/trazyn/ieaseMusic/releases/download/v1.2.6/ieaseMusic-1.2.6-linux-x86_64.rpm) the `.rpm` file for 'Centos/RHEL':
58+
[Download](https://github.com/trazyn/ieaseMusic/releases/download/v1.2.7/ieaseMusic-1.2.7-linux-x86_64.rpm) the `.rpm` file for 'Centos/RHEL':
5959
```
60-
$ sudo yum localinstall ieaseMusic-1.2.6-linux-x86_64.rpm
60+
$ sudo yum localinstall ieaseMusic-1.2.7-linux-x86_64.rpm
6161
```
6262

63-
[Download](https://github.com/trazyn/ieaseMusic/releases/download/v1.2.6/iease-music-1.2.6-x86_64.AppImage) the `.Appimage` file for other distribution:
63+
[Download](https://github.com/trazyn/ieaseMusic/releases/download/v1.2.7/iease-music-1.2.7-x86_64.AppImage) the `.Appimage` file for other distribution:
6464
```
65-
$ chmod u+x iease-music-1.2.6-x86_64.AppImage
66-
$ ./iease-music-1.2.6-x86_64.AppImage
65+
$ chmod u+x iease-music-1.2.7-x86_64.AppImage
66+
$ ./iease-music-1.2.7-x86_64.AppImage
6767
```
6868

6969
Archlinux `pacman` install:

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "iease-music",
3-
"version": "1.2.6",
3+
"version": "1.2.7",
44
"description": "这应该是最好的网易云音乐播放器了,没有之一,如果有请打醒 🤘",
55
"main": "main.js",
66
"scripts": {

server/router/player.js

+6-2
Original file line numberDiff line numberDiff line change
@@ -187,8 +187,12 @@ router.get('/song/:id/:name/:artists/:flac?', cache('3 minutes', onlyStatus200),
187187
// Search from other source
188188
debug(chalk.underline.black.bgYellow(`🔎 ${name} - ${artists}`));
189189

190-
// Get the highquality track
191-
song = await selector.getFlac(name, artists, true);
190+
try {
191+
// Get the highquality track
192+
song = await selector.getFlac(name, artists, true);
193+
} catch (ex) {
194+
error(ex);
195+
}
192196

193197
if (!song.src) {
194198
if (flac === 1) {

src/js/components/Hero/index.js

+1
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ class Hero extends Component {
4242
onClick={e => liked ? unlike(song) : like(song)}
4343
style={{
4444
cursor: 'pointer',
45+
display: 'table',
4546
}}
4647
/>
4748

src/js/pages/Singleton/index.js

+1
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@ class Singleton extends Component {
5555
onClick={e => liked ? unlike(song) : like(song)}
5656
style={{
5757
cursor: 'pointer',
58+
display: 'table',
5859
}}
5960
/>
6061

0 commit comments

Comments
 (0)