Releases: muna-ai/muna-unity
Releases · muna-ai/muna-unity
Function 0.0.21
- Fixed edge prediction support on WebGL.
- Fixed duplicate interface compiler errors when project depends on
Microsoft.Bcl.AsyncInterfaceslibrary. - Updated
fxn.Predictions.ToObjectmethod to return anImagefor image values instead of aValue. - Updated
FunctionUnity.ToTextureextension method to accept anImageinstead of aValue.
Function 0.0.20
- Fixed build errors on WebGL.
- Updated
fxn.Predictions.ToObjectto return aNewtonsoft.Json.Linq.JArrayinsteaf of aList<object>for list values. - Updated
fxn.Predictions.ToObjectto return aNewtonsoft.Json.Linq.JObjectinsteaf of aDictionary<string, object>for dictionary values.
Function 0.0.19
- Added
PrivacyInfo.xcprivacyiOS privacy manifest inFunction.framework. - Fixed
InvalidOperationExceptionwhen edge predictions return image values. - Fixed Apple App Store upload errors due to incorrect
CFBundleVersionkey inFunction.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
- Fixed edge predictions failing when passing in
Dictionary<TKey, TValue>input values. - Updated to Function C 0.0.20.
Function 0.0.17
- Fixed edge prediction errors caused by request backpressure while the predictor is being loaded.
Function 0.0.16
- Added support for
Enuminput values inFunction.Predictions.Createmethod. - Fixed JSON deserialization errors caused by code stripping in builds.
- Removed
Function.Types.Convertersnamespace. Bring your own JSON converters.
Function 0.0.15
- Minor stability improvements.
Function 0.0.14
- 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
- Added support for Unity 2021 LTS.
- Updated
FunctionUnity.ToImageextension method to accept an optional buffer to avoid allocating memory. - Removed
FunctionUnity.ToValue(Texture2D)extension method. UseFunctionUnity.ToImagemethod instead.
Function 0.0.12
- Added
Function.Types.Imagestruct for making edge predictions on images. - Added
FunctionUnity.ToImage(Texture2D)helper function for creating an image from aTexture2D.