diff --git a/README.md b/README.md index 8a99a94..944ab72 100644 --- a/README.md +++ b/README.md @@ -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) diff --git a/app/actions/authenticate.js b/app/actions/authenticate.js index 70610ec..4aa99a3 100644 --- a/app/actions/authenticate.js +++ b/app/actions/authenticate.js @@ -54,7 +54,7 @@ export default { const client = new pogobuf.Client(options) - client.init() + await client.init() setClient(client) diff --git a/app/package.json b/app/package.json index 57e9954..0526021 100644 --- a/app/package.json +++ b/app/package.json @@ -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": { @@ -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" } } diff --git a/app/screens/Login/components/LoginFormContainer.js b/app/screens/Login/components/LoginFormContainer.js index 2e01864..3f9627d 100644 --- a/app/screens/Login/components/LoginFormContainer.js +++ b/app/screens/Login/components/LoginFormContainer.js @@ -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 (
@@ -72,8 +75,9 @@ const LoginForm = React.createClass({