Skip to content

Commit

Permalink
Release v10.06
Browse files Browse the repository at this point in the history
  • Loading branch information
ozdemir08 committed Nov 6, 2019
1 parent c7d4eda commit 1a1dc88
Show file tree
Hide file tree
Showing 11 changed files with 9 additions and 5 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.txt
Original file line number Diff line number Diff line change
@@ -1,9 +1,13 @@
Version 0.10.06
Bug fixes:
* #2776 Crashes due to uninstalled Play Games App.
* #2766, #2772 Android SDK path detection in versions older than 2019.x.

Version 0.10.05
Bug fixes:
* #2753 VersionHandlerImpl.UpdateVersionedAssets not found.
* Fixed the issues caused by Nearby and RTMP callbacks not being on the main thread.
* Fixed detecting AndroidSdkRoot when unity embedded is used.

Version 0.10.04
Bug fixes:
* Updated the way of handling requests to prevent them being processed twice.
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 @@ -19,8 +19,8 @@ namespace GooglePlayGames
public class PluginVersion
{
// Current Version.
public const int VersionInt = 0x01005;
public const string VersionString = "0.10.05";
public const string VersionKey = "01005";
public const int VersionInt = 0x01006;
public const string VersionString = "0.10.06";
public const string VersionKey = "01006";
}
}
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.10.05"
currentPluginVersion = "0.10.06"
currentPluginBasename = 'GooglePlayGamesPlugin'
currentPluginName = "${currentPluginBasename}-${currentPluginVersion}.unitypackage"
resolverDir = new File('build/jarresolver').absolutePath
Expand Down

0 comments on commit 1a1dc88

Please sign in to comment.