Skip to content

Commit

Permalink
Merge branch 'hotfix/v4.1.1' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
rYuuk authored Dec 14, 2023
1 parent a81e76f commit 9f95278
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 2 deletions.
2 changes: 2 additions & 0 deletions Runtime/AvatarCreator/JsonHelpers/BodyTypeConverter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,11 @@
using Newtonsoft.Json;
using Newtonsoft.Json.Linq;
using ReadyPlayerMe.Core;
using UnityEngine.Scripting;

namespace ReadyPlayerMe.AvatarCreator
{
[Preserve]
public class BodyTypeConverter : JsonConverter<BodyType>
{
private const string FULL_BODY = "fullbody";
Expand Down
2 changes: 2 additions & 0 deletions Runtime/AvatarCreator/JsonHelpers/GenderConverter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,11 @@
using Newtonsoft.Json;
using Newtonsoft.Json.Linq;
using ReadyPlayerMe.Core;
using UnityEngine.Scripting;

namespace ReadyPlayerMe.AvatarCreator
{
[Preserve]
public class GenderConverter : JsonConverter
{
private const string MALE = "male";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,11 @@
using System.Collections.Generic;
using Newtonsoft.Json;
using Newtonsoft.Json.Linq;
using UnityEngine.Scripting;

namespace ReadyPlayerMe.AvatarCreator
{
[Preserve]
public class CategoryDictionaryConverter : JsonConverter<Dictionary<Category, object>>
{
public override void WriteJson(JsonWriter writer, Dictionary<Category, object> value, JsonSerializer serializer)
Expand Down
2 changes: 1 addition & 1 deletion Runtime/Data/ApplicationData.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ namespace ReadyPlayerMe.Core
{
public static class ApplicationData
{
private const string SDK_VERSION = "v4.1.0";
private const string SDK_VERSION = "v4.1.1";
private const string TAG = "ApplicationData";
private const string DEFAULT_RENDER_PIPELINE = "Built-In Render Pipeline";
private static readonly AppData Data;
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "com.readyplayerme.core",
"version": "4.1.0",
"version": "4.1.1",
"displayName": "Ready Player Me Core",
"description": "This Module contains all the core functionality required for using Ready Player Me avatars in Unity, including features such as: \n - Module management and automatic package setup logic\n - Avatar loading from .glb files \n - Avatar creation \n - Avatar and 2D render requests \n - Optional Analytics\n - Custom editor windows\n - Sample scenes and assets",
"unity": "2020.3",
Expand Down

0 comments on commit 9f95278

Please sign in to comment.