@@ -1,5 +1,9 @@
|
|||||||
# CHANGELOG
|
# CHANGELOG
|
||||||
|
|
||||||
|
## v0.15.3
|
||||||
|
|
||||||
|
- 增加 skel.bytes 后缀识别
|
||||||
|
|
||||||
## v0.15.2
|
## v0.15.2
|
||||||
|
|
||||||
- 修复首选项文件读取为空时的提示信息
|
- 修复首选项文件读取为空时的提示信息
|
||||||
|
|||||||
@@ -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>
|
||||||
|
|||||||
@@ -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();
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user