Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
e4765750c3 | ||
|
|
02cddf556b | ||
|
|
e1e6d3c72d |
@@ -1,5 +1,9 @@
|
||||
# CHANGELOG
|
||||
|
||||
## v0.10.5
|
||||
|
||||
- <20><EFBFBD>һЩ<D2BB><D0A9><EFBFBD><EFBFBD>
|
||||
|
||||
## v0.10.4
|
||||
|
||||
- <20><EFBFBD>һЩ<D2BB><D0A9><EFBFBD><EFBFBD>
|
||||
|
||||
@@ -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 { }
|
||||
|
||||
|
||||
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user