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

Commit

Permalink
API fixed for now
Browse files Browse the repository at this point in the history
  • Loading branch information
WallyCZ committed Nov 6, 2016
1 parent dec0927 commit c35cdaf
Show file tree
Hide file tree
Showing 18 changed files with 9,095 additions and 15,024 deletions.
2 changes: 1 addition & 1 deletion PokemonGo-UWP/Entities/VersionInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public static bool SetInstance(string json)

public string minimum_version;
public long unknown25;
public ulong seed1;
public uint seed1;
public int version_number;
public VersionRelease latest_release;
}
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.0.29.0" />
<Identity Name="c602d2cb-fdd8-4e41-b5a1-8f9a8a1f56c7" Publisher="CN=stept" Version="1.0.45.0" />
<mp:PhoneIdentity PhoneProductId="c602d2cb-fdd8-4e41-b5a1-8f9a8a1f56c7" PhonePublisherId="00000000-0000-0000-0000-000000000000" />
<Properties>
<DisplayName>PoGo</DisplayName>
Expand Down
4 changes: 4 additions & 0 deletions PokemonGo-UWP/Utils/Game/UpdateManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,10 @@ public static async Task<UpdateInfo> IsUpdateAvailable()
{
return new UpdateInfo(UpdateStatus.NoUpdate);
}
#if DEBUG
// For debugging purposes we dont check version now
return new UpdateInfo(UpdateStatus.NoUpdate);
#endif


// Check if version is newer
Expand Down
2 changes: 1 addition & 1 deletion PokemonGo-UWP/Utils/Signature/DeviceInfoBase.cs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ public abstract class DeviceInfoBase

public class VersionData : IVersionData
{
public ulong HashSeed1 => VersionInfo.Instance.seed1;
public uint HashSeed1 => VersionInfo.Instance.seed1;

public long VersionHash => VersionInfo.Instance.unknown25;

Expand Down
Loading

0 comments on commit c35cdaf

Please sign in to comment.