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

Commit

Permalink
Merge pull request #229 from trazyn/dev
Browse files Browse the repository at this point in the history
 Release v1.2.8
  • Loading branch information
trazyn authored Jul 24, 2018
2 parents 55d570d + b4befd2 commit ed5e2d0
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 11 deletions.
17 changes: 9 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,27 +43,27 @@
Download the last version on the [website](https://github.com/trazyn/ieaseMusic/releases/latest) or below.

#### Mac(10.9+)
[Download](https://github.com/trazyn/ieaseMusic/releases/download/v1.2.7/ieaseMusic-1.2.7-mac.dmg) the `.dmg` file, Or use `homebrew`:
[Download](https://github.com/trazyn/ieaseMusic/releases/download/v1.2.8/ieaseMusic-1.2.8-mac.dmg) the `.dmg` file, Or use `homebrew`:
```
brew cask install ieasemusic
```

#### Linux

[Download](https://github.com/trazyn/ieaseMusic/releases/download/v1.2.7/ieaseMusic-1.2.7-linux-amd64.deb) the `.deb` file for 'Debian / Ubuntu':
[Download](https://github.com/trazyn/ieaseMusic/releases/download/v1.2.8/ieaseMusic-1.2.8-linux-amd64.deb) the `.deb` file for 'Debian / Ubuntu':
```
$ sudo dpkg -i ieaseMusic-1.2.7-linux-amd64.deb
$ sudo dpkg -i ieaseMusic-1.2.8-linux-amd64.deb
```

[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':
[Download](https://github.com/trazyn/ieaseMusic/releases/download/v1.2.8/ieaseMusic-1.2.8-linux-x86_64.rpm) the `.rpm` file for 'Centos/RHEL':
```
$ sudo yum localinstall ieaseMusic-1.2.7-linux-x86_64.rpm
$ sudo yum localinstall ieaseMusic-1.2.8-linux-x86_64.rpm
```

[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:
[Download](https://github.com/trazyn/ieaseMusic/releases/download/v1.2.8/iease-music-1.2.8-x86_64.AppImage) the `.Appimage` file for other distribution:
```
$ chmod u+x iease-music-1.2.7-x86_64.AppImage
$ ./iease-music-1.2.7-x86_64.AppImage
$ chmod u+x iease-music-1.2.8-x86_64.AppImage
$ ./iease-music-1.2.8-x86_64.AppImage
```

Archlinux `pacman` install:
Expand Down Expand Up @@ -158,6 +158,7 @@ Description | Keys
- [x] Lyrics
- [x] Auto update
- [x] Alfred supports
- [ ] Download manager
- [ ] Wechat QR code login
- [ ] Remove express(New API implementation, and proxy)
- [ ] Resize window(New UI)
Expand Down
2 changes: 1 addition & 1 deletion main.js
Original file line number Diff line number Diff line change
Expand Up @@ -551,7 +551,7 @@ async function download(song) {
});

notification.on('click', () => {
shell.showItemInFolder(_DOWNLOAD_DIR);
shell.showItemInFolder(trackfile);
});
notification.show();
} catch (ex) {
Expand Down
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "iease-music",
"version": "1.2.7",
"version": "1.2.8",
"description": "这应该是最好的网易云音乐播放器了,没有之一,如果有请打醒 🤘",
"main": "main.js",
"scripts": {
Expand All @@ -16,7 +16,8 @@
"package-linux": "npm run build && rm -rf release && build --linux --projectDir ./dist",
"package-win": "npm run build && rm -rf release && build --win --ia32 --projectDir ./dist",
"dev": "concurrently --kill-others \"npm run hot-server\" \"npm run start-hot\"",
"dd": "electron-builder --win --ia32 --projectDir ./dist"
"dd": "electron-builder --win --ia32 --projectDir ./dist",
"publish": "sh ./bin/publish.sh"
},
"author": {
"name": "trazyn",
Expand Down

0 comments on commit ed5e2d0

Please sign in to comment.