twinstar6980 / Twinning

https://github.com/twinstar6980/Twinning.Documentation
GNU General Public License v3.0
58 stars 12 forks source link

pp.dat was not auto recognized as an rton file #21

Closed conflucedd closed 10 months ago

conflucedd commented 10 months ago

使用Android Shell GUI,对pp.dat进行操作时没有“解码rton”选项,需要手动修改后缀名为rton后才能出现解码选项 建议特殊处理pp.dat

twinstar6980 commented 10 months ago

以扩展名判断文件类型是工具的预期行为,datrton 文件类型不是强关联关系,因此工具不会为 dat 文件显示 rton 相关功能,不会为 pp.dat 做出例外。

如果你需要让工具为 dat 文件显示 rton 相关功能,请编辑 <home>/script/Executor/Implement/popcap.reflection_object_notation.js ,修改其中的 filter: ['file', /(\.rton)$/i],filter: ['file', /(\.rton|\.dat)$/i],