From afe45bd2a9ce311504c567d45db37db6202ca0f8 Mon Sep 17 00:00:00 2001 From: trazyn Date: Wed, 25 Jul 2018 05:11:52 +0800 Subject: [PATCH 1/3] Click downlaod notification show file in Finder --- main.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.js b/main.js index 6c3c48d..9aed1d6 100644 --- a/main.js +++ b/main.js @@ -551,7 +551,7 @@ async function download(song) { }); notification.on('click', () => { - shell.showItemInFolder(_DOWNLOAD_DIR); + shell.showItemInFolder(trackfile); }); notification.show(); } catch (ex) { From 8f174ad0a88937b574faa7f133b05b5cd5f347c0 Mon Sep 17 00:00:00 2001 From: trazyn Date: Wed, 25 Jul 2018 05:14:50 +0800 Subject: [PATCH 2/3] Release v1.2.8 --- README.md | 17 +++++++++-------- package.json | 2 +- 2 files changed, 10 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index 6683057..03e3226 100644 --- a/README.md +++ b/README.md @@ -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: @@ -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) diff --git a/package.json b/package.json index f7d534a..49d2e51 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "iease-music", - "version": "1.2.7", + "version": "1.2.8", "description": "这应该是最好的网易云音乐播放器了,没有之一,如果有请打醒 🤘", "main": "main.js", "scripts": { From b4befd2275e623ba52b5f0bd1d7b05a4ca8489e0 Mon Sep 17 00:00:00 2001 From: trazyn Date: Wed, 25 Jul 2018 05:16:35 +0800 Subject: [PATCH 3/3] Add publish command --- package.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index 49d2e51..288c1c6 100644 --- a/package.json +++ b/package.json @@ -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",