Skip to content

Commit

Permalink
Release v1.7.2
Browse files Browse the repository at this point in the history
  • Loading branch information
vinnymac committed Jan 2, 2017
2 parents 50fbfdf + a8f4dfc commit 87cd0d4
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@

**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.7.1
## Downloads for v1.7.2
You may view all the releases [here](https://github.com/vinnymac/PokeNurse/releases)
* [macOS](https://github.com/vinnymac/PokeNurse/releases/download/v1.7.1/PokeNurse.dmg)
* [Windows](https://github.com/vinnymac/PokeNurse/releases/download/v1.7.1/PokeNurse.exe)
* [Linux 32 bit](https://github.com/vinnymac/PokeNurse/releases/download/v1.7.1/PokeNurse-ia32.deb)
* [Linux 64 bit](https://github.com/vinnymac/PokeNurse/releases/download/v1.7.1/PokeNurse-x64.deb)
* [macOS](https://github.com/vinnymac/PokeNurse/releases/download/v1.7.2/PokeNurse.dmg)
* [Windows](https://github.com/vinnymac/PokeNurse/releases/download/v1.7.2/PokeNurse.exe)
* [Linux 32 bit](https://github.com/vinnymac/PokeNurse/releases/download/v1.7.2/PokeNurse-ia32.deb)
* [Linux 64 bit](https://github.com/vinnymac/PokeNurse/releases/download/v1.7.2/PokeNurse-x64.deb)

## Examples
![Login Window](app/loginExample.png)
Expand Down
2 changes: 1 addition & 1 deletion app/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "PokeNurse",
"productName": "PokeNurse",
"version": "1.7.1",
"version": "1.7.2",
"description": "A tool for Pokémon Go to aid in transferring and evolving Pokémon",
"main": "./main.js",
"author": {
Expand Down
2 changes: 1 addition & 1 deletion app/screens/Detail/components/CinematicMove.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ const CinematicMove = React.createClass({
{`Crit Chance: ${critChance.toFixed(2)}%`}
</span>)

const thisMove = move === myMove ? 'pokemon-move-item mine' : 'pokemon-move-item notmine'
const thisMove = move.movement_id === myMove.movement_id ? 'pokemon-move-item mine' : 'pokemon-move-item notmine'

return (
<div className={thisMove}>
Expand Down
2 changes: 1 addition & 1 deletion app/screens/Detail/components/QuickMove.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ const QuickMove = React.createClass({
{`EGPS: ${move.egps.toFixed(2)}`}
</span>)

const thisMove = move === myMove ? 'pokemon-move-item mine' : 'pokemon-move-item notmine'
const thisMove = move.movement_id === myMove.movement_id ? 'pokemon-move-item mine' : 'pokemon-move-item notmine'

return (
<div className={thisMove}>
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "PokeNurse",
"version": "1.7.1",
"version": "1.7.2",
"description": "A tool for Pokémon Go to aid in transferring and evolving Pokémon",
"main": "main.js",
"scripts": {
Expand Down

0 comments on commit 87cd0d4

Please sign in to comment.