ai.muna.muna 0.0.47 → 0.0.48

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.
Binary file
package/README.md CHANGED
@@ -16,7 +16,7 @@ Add the following items to your Unity project's `Packages/manifest.json`:
16
16
  }
17
17
  ],
18
18
  "dependencies": {
19
- "ai.muna.muna": "0.0.47"
19
+ "ai.muna.muna": "0.0.48"
20
20
  }
21
21
  }
22
22
  ```
package/Runtime/Muna.cs CHANGED
@@ -94,7 +94,7 @@ namespace Muna {
94
94
 
95
95
  #region --Operations--
96
96
  public readonly MunaClient client;
97
- public const string Version = @"0.0.47";
97
+ public const string Version = @"0.0.48";
98
98
  internal const string URL = @"https://api.muna.ai/v1";
99
99
  #endregion
100
100
  }
@@ -144,10 +144,6 @@ namespace Muna.Internal {
144
144
  var embeddedPath = embeddedResources != null ?
145
145
  PredictionService.GetResourcePath(embeddedResources[idx], ResourceCachePath) :
146
146
  null;
147
-
148
- Application.SetStackTraceLogType(LogType.Log, StackTraceLogType.None);
149
- Debug.Log($"Cached path: {cachedPath} Embedded path: {embeddedPath}");
150
-
151
147
  if (!File.Exists(cachedPath))
152
148
  return false;
153
149
  if (embeddedPath != null && cachedPath != embeddedPath)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ai.muna.muna",
3
- "version": "0.0.47",
3
+ "version": "0.0.48",
4
4
  "displayName": "Muna",
5
5
  "description": "Run AI inference in Unity Engine.",
6
6
  "unity": "2022.3",