Skip to content

Commit

Permalink
Updating plugin to 0.9.58
Browse files Browse the repository at this point in the history
  • Loading branch information
olehkuznetsov committed Jan 18, 2019
1 parent daad813 commit 4b1fe09
Show file tree
Hide file tree
Showing 11 changed files with 15 additions and 5 deletions.
12 changes: 11 additions & 1 deletion CHANGELOG.txt
Original file line number Diff line number Diff line change
@@ -1,8 +1,18 @@
Version 0.9.58
Bug Fixes:
* #2409 GetAnotherServerAuthCode always requests email permission
* #2406 IL2CPP managed stripping level
* #2401 Fix for missing TokenFragment class
* #2400 Many crash in Unity 2018.3.0f2
* #2395 Not working with Unity 2018.3.0f2
New Features:
* Updated PlayServicesResolver to 1.2.98.0
* Updated gradle version to 3.3.0

Version 0.9.57
Bug Fixes:
* Fixed issue with unable to sign-in if Google Play Services or Google Play Games need to be updated.
* #2388 IVideoClient not in package

Version 0.9.56
Bug Fixes:
* #2387 ISavedGameClient null if Authentication Failed.
Expand Down
Binary file not shown.
Binary file not shown.
Binary file modified samples/CubicPilot/CubicPilot.unitypackage
Binary file not shown.
Binary file modified samples/Minimal/Minimal.unitypackage
Binary file not shown.
Binary file modified samples/NearbyDroids/NearbyDroids.unitypackage
Binary file not shown.
Binary file modified samples/QuizRacer/QuizRacer.unitypackage
Binary file not shown.
Binary file modified samples/SmokeTest/SmokeTest.unitypackage
Binary file not shown.
Binary file modified samples/TicTacToe/TicTacToe.unitypackage
Binary file not shown.
6 changes: 3 additions & 3 deletions source/PluginDev/Assets/GooglePlayGames/PluginVersion.cs
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,9 @@ public class PluginVersion
public const string VersionKeyJarResolverDLL = "00935";

// Current Version.
public const int VersionInt = 0x0957;
public const string VersionString = "0.9.57";
public const string VersionKey = "00957";
public const int VersionInt = 0x0958;
public const string VersionString = "0.9.58";
public const string VersionKey = "00958";

// used to check for the correct min version or play services: 10.2
public const int MinGmsCoreVersionCode = 10200000;
Expand Down
2 changes: 1 addition & 1 deletion source/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ project.ext {
samplesBuildSrc = file('build/sampleSrc').absolutePath
exportPath = file('build/plugin.unitypackage').absolutePath
currentPluginPath = file('../current-build').absolutePath
currentPluginVersion = "0.9.57"
currentPluginVersion = "0.9.58"
currentPluginBasename = 'GooglePlayGamesPlugin'
currentPluginName = "${currentPluginBasename}-${currentPluginVersion}.unitypackage"
resolverDir = new File('build/jarresolver').absolutePath
Expand Down

0 comments on commit 4b1fe09

Please sign in to comment.