Skip to content
This repository was archived by the owner on Aug 17, 2020. It is now read-only.

Commit 3ea072e

Browse files
authored
Merge pull request #1779 from WallyCZ/master
API fixed for now
2 parents dec0927 + c35cdaf commit 3ea072e

18 files changed

Lines changed: 9095 additions & 15024 deletions

PokemonGo-UWP/Entities/VersionInfo.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ public static bool SetInstance(string json)
3737

3838
public string minimum_version;
3939
public long unknown25;
40-
public ulong seed1;
40+
public uint seed1;
4141
public int version_number;
4242
public VersionRelease latest_release;
4343
}

PokemonGo-UWP/Package.appxmanifest

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<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">
3-
<Identity Name="c602d2cb-fdd8-4e41-b5a1-8f9a8a1f56c7" Publisher="CN=stept" Version="1.0.29.0" />
3+
<Identity Name="c602d2cb-fdd8-4e41-b5a1-8f9a8a1f56c7" Publisher="CN=stept" Version="1.0.45.0" />
44
<mp:PhoneIdentity PhoneProductId="c602d2cb-fdd8-4e41-b5a1-8f9a8a1f56c7" PhonePublisherId="00000000-0000-0000-0000-000000000000" />
55
<Properties>
66
<DisplayName>PoGo</DisplayName>

PokemonGo-UWP/Utils/Game/UpdateManager.cs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,10 @@ public static async Task<UpdateInfo> IsUpdateAvailable()
5555
{
5656
return new UpdateInfo(UpdateStatus.NoUpdate);
5757
}
58+
#if DEBUG
59+
// For debugging purposes we dont check version now
60+
return new UpdateInfo(UpdateStatus.NoUpdate);
61+
#endif
5862

5963

6064
// Check if version is newer

PokemonGo-UWP/Utils/Signature/DeviceInfoBase.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ public abstract class DeviceInfoBase
2424

2525
public class VersionData : IVersionData
2626
{
27-
public ulong HashSeed1 => VersionInfo.Instance.seed1;
27+
public uint HashSeed1 => VersionInfo.Instance.seed1;
2828

2929
public long VersionHash => VersionInfo.Instance.unknown25;
3030

0 commit comments

Comments
 (0)