Skip to content

Commit

Permalink
Release v1.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
vinnymac committed Sep 7, 2016
1 parent f497d31 commit 437a92b
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
Binary file modified app/detailExample.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified app/tableExample.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions package.js
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -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": {
Expand Down Expand Up @@ -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",
Expand Down

0 comments on commit 437a92b

Please sign in to comment.