Skip to content

Commit

Permalink
Release v2.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
vinnymac committed Jan 6, 2017
2 parents cefc848 + 591cc53 commit 6e5c7f3
Show file tree
Hide file tree
Showing 7 changed files with 28 additions and 21 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 v2.0.0
## Downloads for v2.0.1
You may view all the releases [here](https://github.com/vinnymac/PokeNurse/releases)
* [macOS](https://github.com/vinnymac/PokeNurse/releases/download/v2.0.0/PokeNurse.dmg)
* [Windows](https://github.com/vinnymac/PokeNurse/releases/download/v2.0.0/PokeNurse.exe)
* [Linux 32 bit](https://github.com/vinnymac/PokeNurse/releases/download/v2.0.0/PokeNurse-ia32.deb)
* [Linux 64 bit](https://github.com/vinnymac/PokeNurse/releases/download/v2.0.0/PokeNurse-x64.deb)
* [macOS](https://github.com/vinnymac/PokeNurse/releases/download/v2.0.1/PokeNurse.dmg)
* [Windows](https://github.com/vinnymac/PokeNurse/releases/download/v2.0.1/PokeNurse.exe)
* [Linux 32 bit](https://github.com/vinnymac/PokeNurse/releases/download/v2.0.1/PokeNurse-ia32.deb)
* [Linux 64 bit](https://github.com/vinnymac/PokeNurse/releases/download/v2.0.1/PokeNurse-x64.deb)

## Examples
![Login Window](app/loginExample.png)
Expand Down
2 changes: 1 addition & 1 deletion app/actions/authenticate.js
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ export default {

const client = new pogobuf.Client(options)

client.init()
await client.init()

setClient(client)

Expand Down
4 changes: 2 additions & 2 deletions app/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "PokeNurse",
"productName": "PokeNurse",
"version": "2.0.0",
"version": "2.0.1",
"description": "A tool for Pokémon Go to aid in transferring and evolving Pokémon",
"main": "./main.js",
"author": {
Expand All @@ -14,6 +14,6 @@
"async-file": "^2.0.2",
"electron-localshortcut": "^1.0.0",
"node-pogo-protos": "2.4.2",
"pogobuf": "1.9.0"
"pogobuf": "1.9.1"
}
}
13 changes: 10 additions & 3 deletions app/screens/Login/components/LoginFormContainer.js
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,9 @@ const LoginForm = React.createClass({
authenticating,
} = this.props

const isGoogleActive = this.state.authMethod === AUTH_METHODS.google
const isPTCActive = this.state.authMethod === AUTH_METHODS.ptc

if (authenticating) {
return (
<div className="container">
Expand All @@ -72,8 +75,9 @@ const LoginForm = React.createClass({
<FormGroup>
<ButtonGroup data-toggle="buttons">
<Button
className="btn btn-info noselect active"
className="btn btn-info noselect"
htmlFor="authGoogle"
active={isGoogleActive}
onClick={this.radioLabelClick.bind(this, AUTH_METHODS.google)}
>
<input
Expand All @@ -82,14 +86,15 @@ const LoginForm = React.createClass({
id="authGoogle"
ref={(c) => { this[AUTH_METHODS.google] = c }}
value={AUTH_METHODS.google}
defaultChecked={this.state.authMethod === AUTH_METHODS.google}
defaultChecked={isGoogleActive}
onChange={this.handleChangeAuth}
/>
Google
</Button>
<Button
className="btn btn-info noselect"
htmlFor="authPTC"
active={isPTCActive}
onClick={this.radioLabelClick.bind(this, AUTH_METHODS.ptc)}
>
<input
Expand All @@ -98,7 +103,7 @@ const LoginForm = React.createClass({
id="authPTC"
ref={(c) => { this[AUTH_METHODS.ptc] = c }}
value={AUTH_METHODS.ptc}
defaultChecked={this.state.authMethod === AUTH_METHODS.ptc}
defaultChecked={isPTCActive}
onChange={this.handleChangeAuth}
/>
Pokémon Trainer Club
Expand Down Expand Up @@ -195,6 +200,8 @@ const LoginForm = React.createClass({
const hashingKey = findDOMNode(this.hashKey).value
const rememberMe = findDOMNode(this.rememberMe).checked

console.log(method, username, password, hashingKey, rememberMe)

if (!username) {
ipcRenderer.send('error-message', 'A username is required to login.')
return
Expand Down
8 changes: 4 additions & 4 deletions app/yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -418,7 +418,7 @@ path-is-absolute@^1.0.0:
version "1.0.1"
resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f"

"pcrypt@github:starkevin/pcrypt":
pcrypt@starkevin/pcrypt:
version "1.0.0"
resolved "https://codeload.github.com/starkevin/pcrypt/tar.gz/867562d3a55f41cf2cc542d1e492d5b094c820de"

Expand All @@ -432,9 +432,9 @@ pinkie@^2.0.0:
version "2.0.4"
resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870"

pogobuf@1.9.0:
version "1.9.0"
resolved "https://registry.yarnpkg.com/pogobuf/-/pogobuf-1.9.0.tgz#62f9750e1dc0dba6941a858bcc2cf16176628065"
pogobuf@1.9.1:
version "1.9.1"
resolved "https://registry.yarnpkg.com/pogobuf/-/pogobuf-1.9.1.tgz#63cf20f21d3ef350ba652a304c0888efabc4d1a8"
dependencies:
bluebird "^3.4.7"
bluebird-retry "^0.10.1"
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "PokeNurse",
"version": "2.0.0",
"version": "2.0.1",
"description": "A tool for Pokémon Go to aid in transferring and evolving Pokémon",
"main": "main.js",
"scripts": {
Expand Down Expand Up @@ -139,7 +139,7 @@
"electron-localshortcut": "^1.0.0",
"font-awesome": "^4.7.0",
"node-pogo-protos": "2.4.2",
"pogobuf": "1.9.0",
"pogobuf": "1.9.1",
"react": "^15.4.1",
"react-dom": "^15.4.1",
"react-redux": "5.0.1",
Expand Down
8 changes: 4 additions & 4 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -4960,7 +4960,7 @@ pbkdf2@^3.0.3:
dependencies:
create-hmac "^1.1.2"

"pcrypt@github:starkevin/pcrypt":
pcrypt@starkevin/pcrypt:
version "1.0.0"
resolved "https://codeload.github.com/starkevin/pcrypt/tar.gz/867562d3a55f41cf2cc542d1e492d5b094c820de"

Expand Down Expand Up @@ -5025,9 +5025,9 @@ pluralize@^1.2.1:
version "1.2.1"
resolved "https://registry.yarnpkg.com/pluralize/-/pluralize-1.2.1.tgz#d1a21483fd22bb41e58a12fa3421823140897c45"

pogobuf@1.9.0:
version "1.9.0"
resolved "https://registry.yarnpkg.com/pogobuf/-/pogobuf-1.9.0.tgz#62f9750e1dc0dba6941a858bcc2cf16176628065"
pogobuf@1.9.1:
version "1.9.1"
resolved "https://registry.yarnpkg.com/pogobuf/-/pogobuf-1.9.1.tgz#63cf20f21d3ef350ba652a304c0888efabc4d1a8"
dependencies:
bluebird "^3.4.7"
bluebird-retry "^0.10.1"
Expand Down

0 comments on commit 6e5c7f3

Please sign in to comment.