diff --git a/README.md b/README.md index b3bb57e..17cec7a 100644 --- a/README.md +++ b/README.md @@ -8,13 +8,13 @@ **PokéNurse** is a desktop application for Windows and Mac that allows you to manage your pokémon from Pokémon Go without the need for a mobile device. You can now favorite, transfer, and evolve from the comfort of your own home! -## Downloads for v1.4.0 +## Downloads for v1.5.0 You may view all the releases [here](https://github.com/vinnymac/PokeNurse/releases) -* [Mac OS X](https://github.com/vinnymac/PokeNurse/releases/download/v1.4.0/PokeNurse-darwin-x64.zip) -* [Windows 32 bit](https://github.com/vinnymac/PokeNurse/releases/download/v1.4.0/PokeNurse-win32-ia32.zip) -* [Windows 64 bit](https://github.com/vinnymac/PokeNurse/releases/download/v1.4.0/PokeNurse-win32-x64.zip) -* [Linux 32 bit](https://github.com/vinnymac/PokeNurse/releases/download/v1.4.0/PokeNurse-linux-ia32.zip) -* [Linux 64 bit](https://github.com/vinnymac/PokeNurse/releases/download/v1.4.0/PokeNurse-linux-x64.zip) +* [Mac OS X](https://github.com/vinnymac/PokeNurse/releases/download/v1.5.0/PokeNurse-darwin-x64.zip) +* [Windows 32 bit](https://github.com/vinnymac/PokeNurse/releases/download/v1.5.0/PokeNurse-win32-ia32.zip) +* [Windows 64 bit](https://github.com/vinnymac/PokeNurse/releases/download/v1.5.0/PokeNurse-win32-x64.zip) +* [Linux 32 bit](https://github.com/vinnymac/PokeNurse/releases/download/v1.5.0/PokeNurse-linux-ia32.zip) +* [Linux 64 bit](https://github.com/vinnymac/PokeNurse/releases/download/v1.5.0/PokeNurse-linux-x64.zip) ## Examples ![Login Window](app/loginExample.png) diff --git a/app/detailExample.png b/app/detailExample.png index 646d235..8b58dba 100644 Binary files a/app/detailExample.png and b/app/detailExample.png differ diff --git a/app/tableExample.png b/app/tableExample.png index dd7b82b..2978dd8 100644 Binary files a/app/tableExample.png and b/app/tableExample.png differ diff --git a/package.js b/package.js index f273cdd..206d3b4 100644 --- a/package.js +++ b/package.js @@ -47,11 +47,11 @@ if (version) { startPack() } else { // use the same version as the currently-installed electron-prebuilt - exec('npm list electron-prebuilt --dev', (err, stdout) => { + exec('npm view electron-prebuilt version', (err, stdout) => { if (err) { DEFAULT_OPTS.version = '1.2.0' } else { - DEFAULT_OPTS.version = stdout.split('electron-prebuilt@')[1].replace(/\s/g, '') + DEFAULT_OPTS.version = pkg.devDependencies['electron-prebuilt'] } startPack() diff --git a/package.json b/package.json index 648c664..a1c8ba8 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "PokeNurse", - "version": "1.4.0", + "version": "1.5.0", "description": "A tool for Pokémon Go to aid in transferring and evolving Pokémon", "main": "main", "scripts": { @@ -59,8 +59,8 @@ "electron-debug": "^1.0.1", "electron-devtools-installer": "^2.0.1", "electron-packager": "7.7.0", - "electron-prebuilt": "^1.3.5", - "electron-rebuild": "^1.2.0", + "electron-prebuilt": "1.3.5", + "electron-rebuild": "1.2.1", "eslint": "3.4.0", "eslint-config-airbnb": "^10.0.1", "eslint-import-resolver-webpack": "^0.5.1",