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

Commit ed5e2d0

Browse files
author
trazyn
authored
Merge pull request #229 from trazyn/dev
Release v1.2.8
2 parents 55d570d + b4befd2 commit ed5e2d0

File tree

3 files changed

+13
-11
lines changed

3 files changed

+13
-11
lines changed

README.md

+9-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.7/ieaseMusic-1.2.7-mac.dmg) the `.dmg` file, Or use `homebrew`:
46+
[Download](https://github.com/trazyn/ieaseMusic/releases/download/v1.2.8/ieaseMusic-1.2.8-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.7/ieaseMusic-1.2.7-linux-amd64.deb) the `.deb` file for 'Debian / Ubuntu':
53+
[Download](https://github.com/trazyn/ieaseMusic/releases/download/v1.2.8/ieaseMusic-1.2.8-linux-amd64.deb) the `.deb` file for 'Debian / Ubuntu':
5454
```
55-
$ sudo dpkg -i ieaseMusic-1.2.7-linux-amd64.deb
55+
$ sudo dpkg -i ieaseMusic-1.2.8-linux-amd64.deb
5656
```
5757

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':
58+
[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':
5959
```
60-
$ sudo yum localinstall ieaseMusic-1.2.7-linux-x86_64.rpm
60+
$ sudo yum localinstall ieaseMusic-1.2.8-linux-x86_64.rpm
6161
```
6262

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:
63+
[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:
6464
```
65-
$ chmod u+x iease-music-1.2.7-x86_64.AppImage
66-
$ ./iease-music-1.2.7-x86_64.AppImage
65+
$ chmod u+x iease-music-1.2.8-x86_64.AppImage
66+
$ ./iease-music-1.2.8-x86_64.AppImage
6767
```
6868

6969
Archlinux `pacman` install:
@@ -158,6 +158,7 @@ Description | Keys
158158
- [x] Lyrics
159159
- [x] Auto update
160160
- [x] Alfred supports
161+
- [ ] Download manager
161162
- [ ] Wechat QR code login
162163
- [ ] Remove express(New API implementation, and proxy)
163164
- [ ] Resize window(New UI)

main.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -551,7 +551,7 @@ async function download(song) {
551551
});
552552

553553
notification.on('click', () => {
554-
shell.showItemInFolder(_DOWNLOAD_DIR);
554+
shell.showItemInFolder(trackfile);
555555
});
556556
notification.show();
557557
} catch (ex) {

package.json

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "iease-music",
3-
"version": "1.2.7",
3+
"version": "1.2.8",
44
"description": "这应该是最好的网易云音乐播放器了,没有之一,如果有请打醒 🤘",
55
"main": "main.js",
66
"scripts": {
@@ -16,7 +16,8 @@
1616
"package-linux": "npm run build && rm -rf release && build --linux --projectDir ./dist",
1717
"package-win": "npm run build && rm -rf release && build --win --ia32 --projectDir ./dist",
1818
"dev": "concurrently --kill-others \"npm run hot-server\" \"npm run start-hot\"",
19-
"dd": "electron-builder --win --ia32 --projectDir ./dist"
19+
"dd": "electron-builder --win --ia32 --projectDir ./dist",
20+
"publish": "sh ./bin/publish.sh"
2021
},
2122
"author": {
2223
"name": "trazyn",

0 commit comments

Comments
 (0)