Compare commits

..

7 Commits

Author SHA1 Message Date
ww-rm
b2861ffb93 Merge pull request #62 from ww-rm/dev/wpf
Dev/wpf
2025-06-29 19:51:55 +09:00
ww-rm
b01d112d63 Update CHANGELOG.md 2025-06-29 19:51:20 +09:00
ww-rm
58b13d00c1 Update Spine.csproj 2025-06-29 19:49:58 +09:00
ww-rm
0f5539ad41 Update SpineViewer.csproj 2025-06-29 19:49:29 +09:00
ww-rm
6d18ce882c Update SpineViewer.csproj 2025-06-29 19:46:04 +09:00
ww-rm
e1ea95c195 Merge pull request #61 from xiantuan/dev/wpf
Update SpineObject.cs add .skel.bytes Support
2025-06-29 11:47:51 +09:00
饭团
48ee61d1c6 Update SpineObject.cs add .skel.bytes Support
add .skel.bytes Support #58
2025-06-28 20:40:56 +08:00
4 changed files with 7 additions and 2 deletions

View File

@@ -1,5 +1,9 @@
# CHANGELOG
## v0.15.3
- 增加 skel.bytes 后缀识别
## v0.15.2
- 修复首选项文件读取为空时的提示信息

View File

@@ -7,7 +7,7 @@
<TargetFramework>net8.0-windows</TargetFramework>
<BaseOutputPath>$(SolutionDir)out</BaseOutputPath>
<IncludeSourceRevisionInInformationalVersion>false</IncludeSourceRevisionInInformationalVersion>
<Version>0.15.2</Version>
<Version>0.15.3</Version>
</PropertyGroup>
<PropertyGroup>

View File

@@ -20,6 +20,7 @@ namespace Spine
public static readonly FrozenDictionary<string, string> PossibleSuffixMapping = new Dictionary<string, string>()
{
[".skel"] = ".atlas",
[".skel.bytes"] = ".atlas.txt",
[".json"] = ".atlas",
}.ToFrozenDictionary();

View File

@@ -7,7 +7,7 @@
<TargetFramework>net8.0-windows</TargetFramework>
<BaseOutputPath>$(SolutionDir)out</BaseOutputPath>
<IncludeSourceRevisionInInformationalVersion>false</IncludeSourceRevisionInInformationalVersion>
<Version>0.15.2</Version>
<Version>0.15.3</Version>
<OutputType>WinExe</OutputType>
<UseWPF>true</UseWPF>
</PropertyGroup>