Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion app/actions/authenticate.js
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ export default {
}

// Use default API version
if (hashingKey) options.version = apiVersion || 6702
if (hashingKey) options.version = apiVersion || 7100

const client = new pogobuf.Client(options)

Expand Down
6 changes: 3 additions & 3 deletions app/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "PokeNurse",
"productName": "PokeNurse",
"version": "2.3.1",
"version": "2.3.2",
"description": "A tool for Pokémon Go to aid in transferring and evolving Pokémon",
"main": "./main.js",
"author": {
Expand All @@ -13,7 +13,7 @@
"dependencies": {
"async-file": "^2.0.2",
"electron-localshortcut": "1.1.1",
"node-pogo-protos": "2.10.3",
"pogobuf-vnext": "2.3.3"
"node-pogo-protos-vnext": "2.15.0",
"pogobuf-vnext": "2.5.3"
}
}
2 changes: 1 addition & 1 deletion app/screens/Login/components/LoginFormContainer.js
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ class LoginForm extends React.Component {
</InputGroup.Addon>
<FormControl
type="text"
placeholder="6702"
placeholder="7100"
ref={(c) => { this.apiVersion = c }}
onKeyPress={this.handleEnterKey}
defaultValue={credentials.apiVersion || ''}
Expand Down
2 changes: 1 addition & 1 deletion app/utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import {
times
} from 'lodash'

import POGOProtos from 'node-pogo-protos'
import POGOProtos from 'node-pogo-protos-vnext'

import {
defaultSettings
Expand Down
Loading