From 0fe1fff80175f7aab6d722a3b8c28aa410840a88 Mon Sep 17 00:00:00 2001 From: MattNL Date: Sat, 27 Aug 2022 05:29:51 -0400 Subject: [PATCH 1/2] ANIM now returns as lowercase --- PCK-Studio/Classes/Utils/SkinANIM.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PCK-Studio/Classes/Utils/SkinANIM.cs b/PCK-Studio/Classes/Utils/SkinANIM.cs index 1c557dd6..ade5a742 100644 --- a/PCK-Studio/Classes/Utils/SkinANIM.cs +++ b/PCK-Studio/Classes/Utils/SkinANIM.cs @@ -67,7 +67,7 @@ namespace PckStudio.Classes.Utils _ANIM = anim; } - public override string ToString() => "0x" + _ANIM.ToString("x"); + public override string ToString() => "0x" + ((int)_ANIM).ToString("x8"); public static bool IsValidANIM(string anim) => animRegex.IsMatch(anim); From d1e3aee34edd8d2a8ccfc2f94e2d78de9743b421 Mon Sep 17 00:00:00 2001 From: MattNL Date: Sat, 27 Aug 2022 05:40:45 -0400 Subject: [PATCH 2/2] Changed version to 7.0 --- PCK-Studio/Properties/AssemblyInfo.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/PCK-Studio/Properties/AssemblyInfo.cs b/PCK-Studio/Properties/AssemblyInfo.cs index ee94e1f7..b90f49ff 100644 --- a/PCK-Studio/Properties/AssemblyInfo.cs +++ b/PCK-Studio/Properties/AssemblyInfo.cs @@ -33,6 +33,6 @@ using System.Security.Permissions; // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("6.5.0.0")] -[assembly: AssemblyFileVersion("6.5.0.0")] +[assembly: AssemblyVersion("7.0")] +[assembly: AssemblyFileVersion("7.0")] [assembly: NeutralResourcesLanguage("")]