com.amanotes.gdk 0.2.34 → 0.2.35

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,8 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.2.35 - 2023-11-14]
4
+ - [Fix] Save UserID
5
+
3
6
  ## [0.2.34 - 2023-11-10]
4
7
  - [Fix] ShowSuccessed event not call in editor
5
8
  - Add clear all data button on AmaGDK prefab
Binary file
Binary file
Binary file
Binary file
Binary file
@@ -38,6 +38,7 @@ namespace Amanotes.Core
38
38
  {
39
39
  _userId = value;
40
40
  OnUserIdChanged?.Invoke(_userId);
41
+ Save();
41
42
  }
42
43
  }
43
44
 
package/Runtime/AmaGDK.cs CHANGED
@@ -14,7 +14,7 @@ namespace Amanotes.Core
14
14
  {
15
15
  public partial class AmaGDK : MonoBehaviour
16
16
  {
17
- public const string VERSION = "0.2.34";
17
+ public const string VERSION = "0.2.35";
18
18
 
19
19
  internal static AmaGDK _instance;
20
20
  internal static Status _status = Status.None;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "com.amanotes.gdk",
3
- "version": "0.2.34",
3
+ "version": "0.2.35",
4
4
  "displayName": "AmaGDK",
5
5
  "description": "Amanotes Game Development Kit",
6
6
  "unity": "2019.4",