Skip to content

Commit 82cffe7

Browse files
Merge pull request #1217 from EOS-Contrib/release-5.1.3
Release 5.1.3
2 parents c00bbd2 + 721f10e commit 82cffe7

5 files changed

Lines changed: 10 additions & 4 deletions

File tree

Assets/Scripts/StandardSamples/UI/Common/UINativeLibVersion.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ private void Start()
1010
var textComp = GetComponent<Text>();
1111
if (textComp != null)
1212
{
13-
textComp.text = $"v-{EOSPackageInfo.NativeLibVersion}";
13+
textComp.text = $"v-{EOSPackageInfo.NativeLibSDKVersion}";
1414
}
1515
}
1616
}

com.playeveryware.eos/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
33
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
44

5+
## [5.1.3] - 2026-01-13
6+
7+
### Fixed
8+
- Fix: UINativeLibVersion.cs compile error
9+
- Fix: RTC initialization error in the Unity editor on Mac.
10+
511
## [5.1.2] - 2025-11-25
612

713
### Added

com.playeveryware.eos/Runtime/Core/EOSPackageInfo.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ public static class EOSPackageInfo
3333
* not involve editing source code files.
3434
*/
3535

36-
public const string Version = "5.1.2";
36+
public const string Version = "5.1.3";
3737
// Define a string to be used with a future version of Native Libraries
3838
public const string NativeLibSDKVersion = "todo value";
3939
public const string PackageName = "com.playeveryware.eos";

com.playeveryware.eos/Runtime/EOS_SDK/Generated/Platform/PlatformInterface.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ public PlatformInterface(IntPtr innerHandle) : base(innerHandle)
9292
/// <summary>
9393
/// The most recent version of the <see cref="RTCOptions" /> API.
9494
/// </summary>
95-
#if UNITY_STANDALONE_OSX
95+
#if UNITY_STANDALONE_OSX || UNITY_EDITOR_OSX
9696
public const int RTCOPTIONS_API_LATEST = 2;
9797
#else
9898
public const int RTCOPTIONS_API_LATEST = 3;

com.playeveryware.eos/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "com.playeveryware.eos",
3-
"version": "5.1.2",
3+
"version": "5.1.3",
44
"unity": "2021.3",
55
"unityRelease": "16f1",
66
"author": {

0 commit comments

Comments
 (0)