Merge pull request #62 from ww-rm/dev/wpf

Dev/wpf
This commit is contained in:
ww-rm
2025-06-29 19:51:55 +09:00
committed by GitHub
3 changed files with 6 additions and 1 deletions

View File

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

View File

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

View File

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