Skip to content

Commit

Permalink
fix hashing key restoration and prepare v2.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
vinnymac committed Jan 8, 2017
1 parent 4cea451 commit 106fd22
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 11 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.2
## Downloads for v2.0.3
You may view all the releases [here](https://github.com/vinnymac/PokeNurse/releases)
* [macOS](https://github.com/vinnymac/PokeNurse/releases/download/v2.0.2/PokeNurse.dmg)
* [Windows](https://github.com/vinnymac/PokeNurse/releases/download/v2.0.2/PokeNurse.exe)
* [Linux 32 bit](https://github.com/vinnymac/PokeNurse/releases/download/v2.0.2/PokeNurse-ia32.deb)
* [Linux 64 bit](https://github.com/vinnymac/PokeNurse/releases/download/v2.0.2/PokeNurse-x64.deb)
* [macOS](https://github.com/vinnymac/PokeNurse/releases/download/v2.0.3/PokeNurse.dmg)
* [Windows](https://github.com/vinnymac/PokeNurse/releases/download/v2.0.3/PokeNurse.exe)
* [Linux 32 bit](https://github.com/vinnymac/PokeNurse/releases/download/v2.0.3/PokeNurse-ia32.deb)
* [Linux 64 bit](https://github.com/vinnymac/PokeNurse/releases/download/v2.0.3/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": "2.0.2",
"version": "2.0.3",
"description": "A tool for Pokémon Go to aid in transferring and evolving Pokémon",
"main": "./main.js",
"author": {
Expand Down
9 changes: 5 additions & 4 deletions app/screens/Login/components/LoginFormContainer.js
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,8 @@ const LoginForm = React.createClass({
<FormGroup>
<ButtonGroup data-toggle="buttons">
<Button
className="btn btn-info noselect"
className="noselect"
bsStyle="info"
htmlFor="authGoogle"
active={isGoogleActive}
onClick={this.radioLabelClick.bind(this, AUTH_METHODS.google)}
Expand All @@ -92,7 +93,8 @@ const LoginForm = React.createClass({
Google
</Button>
<Button
className="btn btn-info noselect"
className="noselect"
bsStyle="info"
htmlFor="authPTC"
active={isPTCActive}
onClick={this.radioLabelClick.bind(this, AUTH_METHODS.ptc)}
Expand All @@ -118,7 +120,6 @@ const LoginForm = React.createClass({
</InputGroup.Addon>
<FormControl
type="text"
className="form-control"
placeholder="Username"
ref={(c) => { this.username = c }}
onKeyPress={this.handleEnterKey}
Expand All @@ -129,7 +130,6 @@ const LoginForm = React.createClass({
</InputGroup.Addon>
<FormControl
type="password"
className="form-control"
placeholder="Password"
ref={(c) => { this.password = c }}
onKeyPress={this.handleEnterKey}
Expand All @@ -149,6 +149,7 @@ const LoginForm = React.createClass({
type="text"
placeholder="Hash Key required only for safer 0.51+ support"
ref={(c) => { this.hashKey = c }}
defaultValue={credentials.hashingKey || ''}
/>
</InputGroup>
</FormGroup>
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": "2.0.2",
"version": "2.0.3",
"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 106fd22

Please sign in to comment.