Skip to content

Commit

Permalink
API level 0.61
Browse files Browse the repository at this point in the history
  • Loading branch information
mtaheij committed Apr 8, 2017
1 parent 451a5b2 commit 0016998
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
10 changes: 5 additions & 5 deletions POGOLib.Official/Util/Hash/PokeHashHasher.cs
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,14 @@ namespace POGOLib.Official.Util.Hash
/// to buy an API key, go to this url.
/// https://talk.pogodev.org/d/51-api-hashing-service-by-pokefarmer
///
/// Android version: 0.59.1
/// IOS version: 1.29.1
/// Android version: 0.61.0
/// IOS version: 1.31.0
/// </summary>
public class PokeHashHasher : IHasher
{
private const string PokeHashUrl = "https://pokehash.buddyauth.com/";

private const string PokeHashEndpoint = "api/v129_1/hash";
private const string PokeHashEndpoint = "api/v131_0/hash";

private readonly List<PokeHashAuthKey> _authKeys;

Expand Down Expand Up @@ -79,9 +79,9 @@ public PokeHashHasher(string[] authKeys)
_keySelection = new Semaphore(1, 1);
}

public Version PokemonVersion { get; } = new Version("0.59.1");
public Version PokemonVersion { get; } = new Version("0.61.0");

public long Unknown25 { get; } = -3226782243204485589;
public long Unknown25 { get; } = 1296456256998993698;

public async Task<HashData> GetHashDataAsync(RequestEnvelope requestEnvelope, Signature signature, byte[] locationBytes, byte[][] requestsBytes, byte[] serializedTicket)
{
Expand Down
2 changes: 1 addition & 1 deletion PokemonGo-UWP/Package.appxmanifest
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<Package xmlns="http://schemas.microsoft.com/appx/manifest/foundation/windows10" xmlns:mp="http://schemas.microsoft.com/appx/2014/phone/manifest" xmlns:uap="http://schemas.microsoft.com/appx/manifest/uap/windows10" xmlns:rescap="http://schemas.microsoft.com/appx/manifest/foundation/windows10/restrictedcapabilities" xmlns:wincap="http://schemas.microsoft.com/appx/manifest/foundation/windows10/windowscapabilities" IgnorableNamespaces="uap mp rescap wincap">
<Identity Name="c602d2cb-fdd8-4e41-b5a1-8f9a8a1f56c7" Publisher="CN=stept" Version="1.3.1.0" />
<Identity Name="c602d2cb-fdd8-4e41-b5a1-8f9a8a1f56c7" Publisher="CN=stept" Version="1.3.2.0" />
<mp:PhoneIdentity PhoneProductId="c602d2cb-fdd8-4e41-b5a1-8f9a8a1f56c7" PhonePublisherId="00000000-0000-0000-0000-000000000000" />
<Properties>
<DisplayName>PoGo</DisplayName>
Expand Down
10 changes: 5 additions & 5 deletions version.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{
"minimum_version": "1.3.1",
"unknown25": -3226782243204485589,
"minimum_version": "1.3.2",
"unknown25": 1296456256998993698,
"seed1": 1189692920,
"version_number": 5720,
"version_number": 6100,
"settings_updated": "2017-02-19T00:00:00",
"latest_release": {
"version": "1.3.1",
"setup_file": "https://github.com/mtaheij/PoGo-UWP/releases/download/v1.3.1-beta/PokemonGo-UWP_1.3.1.0_{arch}.appxbundle",
"version": "1.3.2",
"setup_file": "https://github.com/mtaheij/PoGo-UWP/releases/download/v1.3.2-beta/PokemonGo-UWP_1.3.2.0_{arch}.appxbundle",
"dependencies": [
]
}
Expand Down

0 comments on commit 0016998

Please sign in to comment.