Skip to content

Releases: muna-ai/muna-unity

Function 0.0.21

11 Jun 14:23

Choose a tag to compare

  • Fixed edge prediction support on WebGL.
  • Fixed duplicate interface compiler errors when project depends on Microsoft.Bcl.AsyncInterfaces library.
  • Updated fxn.Predictions.ToObject method to return an Image for image values instead of a Value.
  • Updated FunctionUnity.ToTexture extension method to accept an Image instead of a Value.

Function 0.0.20

04 Jun 16:10

Choose a tag to compare

  • Fixed build errors on WebGL.
  • Updated fxn.Predictions.ToObject to return a Newtonsoft.Json.Linq.JArray insteaf of a List<object> for list values.
  • Updated fxn.Predictions.ToObject to return a Newtonsoft.Json.Linq.JObject insteaf of a Dictionary<string, object> for dictionary values.

Function 0.0.19

31 May 20:26

Choose a tag to compare

  • Added PrivacyInfo.xcprivacy iOS privacy manifest in Function.framework.
  • Fixed InvalidOperationException when edge predictions return image values.
  • Fixed Apple App Store upload errors due to incorrect CFBundleVersion key in Function.framework.
  • Fixed embedded edge predictors failing to load from cache causing unnecessary downloads.
  • Fixed Android build errors when embedding edge predictors.
  • Updated to Function C 0.0.23.

Function 0.0.18

20 May 01:34

Choose a tag to compare

  • Fixed edge predictions failing when passing in Dictionary<TKey, TValue> input values.
  • Updated to Function C 0.0.20.

Function 0.0.17

15 May 17:13

Choose a tag to compare

  • Fixed edge prediction errors caused by request backpressure while the predictor is being loaded.

Function 0.0.16

15 May 13:38

Choose a tag to compare

  • Added support for Enum input values in Function.Predictions.Create method.
  • Fixed JSON deserialization errors caused by code stripping in builds.
  • Removed Function.Types.Converters namespace. Bring your own JSON converters.

Function 0.0.15

09 May 19:41

Choose a tag to compare

  • Minor stability improvements.

Function 0.0.14

03 May 02:43

Choose a tag to compare

  • Fixed Apple App Store app rejections due to missing Bundle Version key in Function.framework.
  • Updated to Function C 0.0.18.

Function 0.0.13

15 Apr 23:38

Choose a tag to compare

  • Added support for Unity 2021 LTS.
  • Updated FunctionUnity.ToImage extension method to accept an optional buffer to avoid allocating memory.
  • Removed FunctionUnity.ToValue(Texture2D) extension method. Use FunctionUnity.ToImage method instead.

Function 0.0.12

04 Apr 19:12

Choose a tag to compare

  • Added Function.Types.Image struct for making edge predictions on images.
  • Added FunctionUnity.ToImage(Texture2D) helper function for creating an image from a Texture2D.