diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 8e49c78b4..00c50b6b9 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -1,10 +1,28 @@ +Version 0.9.63 + New Features: + * Updated gradle version to 3.3.2 + * Updated play-services-games version to 17.0 + * [TBMP] Added GetMatch method + * [TBMP] Added Dismiss method + * [TBMP] Expose creation and update timestamps of match + * [TBMP] Expose creation time of invitation + Bug Fixes: + * Improved sign-in time. + * Refactored achievements implementation. Now it uses less server calls and massive achievement increement will not block Achievement UI. + * Log DateTime guard + * Fix DirectoryNotFoundException in GPGSUtil.GenerateAndroidManifest + * Fixed readme + * #2482 Warning in AndroidTokenClient when building for device + * #2486 CanRematch in TBM always false + Other: + * Removed GetAchievement method. Use LoadAchievements instead. + Version 0.9.62 Bug Fixes: * #2475 ANRs 0.9.61 TokenFragment * #2473 GetAnotherServerAuthCode email scope not granted * #2465 Crash during sign-in failure at TokenFragment * Additional check if Play Games is installed. - Version 0.9.61 Bug Fixes: * #2442 GetAnotherServerAuthCode doesn't honor OAuth scope diff --git a/current-build/GooglePlayGamesPlugin-0.9.63.unitypackage b/current-build/GooglePlayGamesPlugin-0.9.63.unitypackage new file mode 100644 index 000000000..731da17a0 Binary files /dev/null and b/current-build/GooglePlayGamesPlugin-0.9.63.unitypackage differ diff --git a/current-build/GooglePlayGamesPlugin-0.9.62.unitypackage b/old-builds/GooglePlayGamesPlugin-0.9.62.unitypackage similarity index 100% rename from current-build/GooglePlayGamesPlugin-0.9.62.unitypackage rename to old-builds/GooglePlayGamesPlugin-0.9.62.unitypackage diff --git a/samples/CubicPilot/CubicPilot.unitypackage b/samples/CubicPilot/CubicPilot.unitypackage index 4754b3ae2..a8193e55e 100644 Binary files a/samples/CubicPilot/CubicPilot.unitypackage and b/samples/CubicPilot/CubicPilot.unitypackage differ diff --git a/samples/Minimal/Minimal.unitypackage b/samples/Minimal/Minimal.unitypackage index acd4d39cb..6bc7e5386 100644 Binary files a/samples/Minimal/Minimal.unitypackage and b/samples/Minimal/Minimal.unitypackage differ diff --git a/samples/NearbyDroids/NearbyDroids.unitypackage b/samples/NearbyDroids/NearbyDroids.unitypackage index 41d916a4e..04290ae99 100644 Binary files a/samples/NearbyDroids/NearbyDroids.unitypackage and b/samples/NearbyDroids/NearbyDroids.unitypackage differ diff --git a/samples/QuizRacer/QuizRacer.unitypackage b/samples/QuizRacer/QuizRacer.unitypackage index 51e3017e3..bfd26893a 100644 Binary files a/samples/QuizRacer/QuizRacer.unitypackage and b/samples/QuizRacer/QuizRacer.unitypackage differ diff --git a/samples/SmokeTest/SmokeTest.unitypackage b/samples/SmokeTest/SmokeTest.unitypackage index 61869b23c..71b3acbc3 100644 Binary files a/samples/SmokeTest/SmokeTest.unitypackage and b/samples/SmokeTest/SmokeTest.unitypackage differ diff --git a/samples/TicTacToe/TicTacToe.unitypackage b/samples/TicTacToe/TicTacToe.unitypackage index e9a1e6e06..4c3291535 100644 Binary files a/samples/TicTacToe/TicTacToe.unitypackage and b/samples/TicTacToe/TicTacToe.unitypackage differ diff --git a/source/PluginDev/Assets/GooglePlayGames/PluginVersion.cs b/source/PluginDev/Assets/GooglePlayGames/PluginVersion.cs index f447f72c5..6ae41cdc7 100644 --- a/source/PluginDev/Assets/GooglePlayGames/PluginVersion.cs +++ b/source/PluginDev/Assets/GooglePlayGames/PluginVersion.cs @@ -35,8 +35,8 @@ public class PluginVersion // Current Version. public const int VersionInt = 0x0958; - public const string VersionString = "0.9.62"; - public const string VersionKey = "00962"; + public const string VersionString = "0.9.63"; + public const string VersionKey = "00963"; // used to check for the correct min version or play services: 10.2 public const int MinGmsCoreVersionCode = 10200000; diff --git a/source/build.gradle b/source/build.gradle index 0639e6438..92e7538a1 100644 --- a/source/build.gradle +++ b/source/build.gradle @@ -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.62" + currentPluginVersion = "0.9.63" currentPluginBasename = 'GooglePlayGamesPlugin' currentPluginName = "${currentPluginBasename}-${currentPluginVersion}.unitypackage" resolverDir = new File('build/jarresolver').absolutePath