Compare commits

...

3 Commits

Author SHA1 Message Date
ww-rm
e4765750c3 更新至v0.10.5 2025-03-21 00:04:32 +08:00
ww-rm
02cddf556b update changelog 2025-03-21 00:04:07 +08:00
ww-rm
e1e6d3c72d fix bug 2025-03-21 00:03:31 +08:00
3 changed files with 8 additions and 3 deletions

View File

@@ -1,5 +1,9 @@
# CHANGELOG
## v0.10.5
- <20>޸<EFBFBD>һЩ<D2BB><D0A9><EFBFBD><EFBFBD>
## v0.10.4
- <20>޸<EFBFBD>һЩ<D2BB><D0A9><EFBFBD><EFBFBD>

View File

@@ -120,8 +120,9 @@ namespace SpineViewer.Spine
// try json format
try
{
if (JsonNode.Parse(input) is JsonObject root && root.TryGetPropertyValue("spine", out var node))
versionString = (string)node;
if (JsonNode.Parse(input) is JsonObject root && root.TryGetPropertyValue("skeleton", out var node) &&
node is JsonObject _skeleton && _skeleton.TryGetPropertyValue("spine", out var _version))
versionString = (string)_version;
}
catch { }

View File

@@ -8,7 +8,7 @@
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
<BaseOutputPath>$(SolutionDir)out</BaseOutputPath>
<IncludeSourceRevisionInInformationalVersion>false</IncludeSourceRevisionInInformationalVersion>
<Version>0.10.4</Version>
<Version>0.10.5</Version>
<OutputType>WinExe</OutputType>
<UseWindowsForms>true</UseWindowsForms>
<ApplicationIcon>appicon.ico</ApplicationIcon>