Skip to content

Commit

Permalink
version 1.3.6
Browse files Browse the repository at this point in the history
Support for level 30 and higher
  • Loading branch information
mtaheij committed Jun 4, 2017
1 parent 69b736c commit 0233711
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
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.5.0" />
<Identity Name="c602d2cb-fdd8-4e41-b5a1-8f9a8a1f56c7" Publisher="CN=stept" Version="1.3.6.0" />
<mp:PhoneIdentity PhoneProductId="c602d2cb-fdd8-4e41-b5a1-8f9a8a1f56c7" PhonePublisherId="00000000-0000-0000-0000-000000000000" />
<Properties>
<DisplayName>PoGo</DisplayName>
Expand Down
2 changes: 1 addition & 1 deletion PokemonGo-UWP/PokemonGo-UWP.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<ProjectTypeGuids>{A5A43C5B-DE2A-4C0C-9213-0A381AF9435A};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
<PackageCertificateKeyFile>PokemonGo-UWP_TemporaryKey.pfx</PackageCertificateKeyFile>
<AppxAutoIncrementPackageRevision>False</AppxAutoIncrementPackageRevision>
<AppxBundlePlatforms>x86|x64</AppxBundlePlatforms>
<AppxBundlePlatforms>arm</AppxBundlePlatforms>
<AppxBundle>Always</AppxBundle>
<AppxSymbolPackageEnabled>True</AppxSymbolPackageEnabled>
</PropertyGroup>
Expand Down
4 changes: 2 additions & 2 deletions PokemonGo-UWP/Utils/Game/Converters.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2397,7 +2397,7 @@ public class PlayerDataToCurrentExperienceConverter : IValueConverter
// TODO: find a better place for this
private readonly int[] _xpTable =
{
0, 1000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 9000, 10000, 10000, 10000, 10000, 15000, 20000, 20000, 20000, 25000, 25000, 50000, 75000, 100000, 125000, 150000, 190000, 200000, 250000, 300000, 350000
0, 1000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 9000, 10000, 10000, 10000, 10000, 15000, 20000, 20000, 20000, 25000, 25000, 50000, 75000, 100000, 125000, 150000, 190000, 200000, 250000, 300000, 350000, 500000, 500000, 750000, 1000000, 1250000, 1500000, 2000000, 2500000, 3000000, 5000000
};

#region Implementation of IValueConverter
Expand All @@ -2422,7 +2422,7 @@ public class PlayerDataToTotalLevelExperienceConverter : IValueConverter
// TODO: find a better place for this
private readonly int[] _xpTable =
{
0, 1000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 9000, 10000, 10000, 10000, 10000, 15000, 20000, 20000, 20000, 25000, 25000, 50000, 75000, 100000, 125000, 150000, 190000, 200000, 250000, 300000, 350000
0, 1000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 9000, 10000, 10000, 10000, 10000, 15000, 20000, 20000, 20000, 25000, 25000, 50000, 75000, 100000, 125000, 150000, 190000, 200000, 250000, 300000, 350000, 500000, 500000, 750000, 1000000, 1250000, 1500000, 2000000, 2500000, 3000000, 5000000
};

#region Implementation of IValueConverter
Expand Down
4 changes: 2 additions & 2 deletions version.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
"version_number": 6100,
"settings_updated": "2017-02-19T00:00:00",
"latest_release": {
"version": "1.3.5",
"setup_file": "https://github.com/mtaheij/PoGo-UWP/releases/download/v1.3.5-beta/PokemonGo-UWP_1.3.5.0_{arch}.appxbundle",
"version": "1.3.6",
"setup_file": "https://github.com/mtaheij/PoGo-UWP/releases/download/v1.3.6-beta/PokemonGo-UWP_1.3.6.0_{arch}.appxbundle",
"dependencies": [
]
}
Expand Down

0 comments on commit 0233711

Please sign in to comment.