Skip to content

Commit

Permalink
Merge pull request #2763 from ozdemir08/master
Browse files Browse the repository at this point in the history
Release v10.05
  • Loading branch information
olehkuznetsov authored Oct 24, 2019
2 parents 82ce59d + ff6c1c0 commit b7f5eef
Show file tree
Hide file tree
Showing 11 changed files with 11 additions and 6 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.txt
Original file line number Diff line number Diff line change
@@ -1,9 +1,14 @@
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.
* Fixed the callback not being triggered in CommitUpdate issue.
* RealTimeMultiplayerListener runs on the game thread.

Version 0.10.03
Bug fixes:
* Fixed the exception caused by ui callbacks.
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.
8 changes: 4 additions & 4 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 = 0x01004;
public const string VersionString = "0.10.04";
public const string VersionKey = "01004";
public const int VersionInt = 0x01005;
public const string VersionString = "0.10.05";
public const string VersionKey = "01005";
}
}
}
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.04"
currentPluginVersion = "0.10.05"
currentPluginBasename = 'GooglePlayGamesPlugin'
currentPluginName = "${currentPluginBasename}-${currentPluginVersion}.unitypackage"
resolverDir = new File('build/jarresolver').absolutePath
Expand Down

0 comments on commit b7f5eef

Please sign in to comment.