From cb2ce6b96ce5923783c039898e114d462282293d Mon Sep 17 00:00:00 2001 From: morkt Date: Sat, 25 Jul 2015 10:10:36 +0400 Subject: [PATCH] changed tag properties to more convenient format. --- ArcFormats/ArcCircus.cs | 2 +- ArcFormats/ArcGSP.cs | 2 +- ArcFormats/ArcNitro.cs | 2 +- ArcFormats/ArcQLIE.cs | 2 +- ArcFormats/Properties/AssemblyInfo.cs | 4 ++-- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/ArcFormats/ArcCircus.cs b/ArcFormats/ArcCircus.cs index 2fdce70b..485f7fd3 100644 --- a/ArcFormats/ArcCircus.cs +++ b/ArcFormats/ArcCircus.cs @@ -34,7 +34,7 @@ namespace GameRes.Formats.Circus [Export(typeof(ArchiveFormat))] public class DatOpener : ArchiveFormat { - public override string Tag { get { return "CIRCUS/DAT"; } } + public override string Tag { get { return "DAT/CIRCUS"; } } public override string Description { get { return "Circus resource archive"; } } public override uint Signature { get { return 0; } } public override bool IsHierarchic { get { return true; } } diff --git a/ArcFormats/ArcGSP.cs b/ArcFormats/ArcGSP.cs index 13c636cf..afb4b7ea 100644 --- a/ArcFormats/ArcGSP.cs +++ b/ArcFormats/ArcGSP.cs @@ -69,7 +69,7 @@ namespace GameRes.Formats.BlackRainbow [Export(typeof(ArchiveFormat))] public class DatOpener : ArchiveFormat { - public override string Tag { get { return "BR/DAT"; } } + public override string Tag { get { return "DAT/BR"; } } public override string Description { get { return "BlackRainbow resource archive"; } } public override uint Signature { get { return 0; } } public override bool IsHierarchic { get { return false; } } diff --git a/ArcFormats/ArcNitro.cs b/ArcFormats/ArcNitro.cs index cece59e0..ccf17a43 100644 --- a/ArcFormats/ArcNitro.cs +++ b/ArcFormats/ArcNitro.cs @@ -41,7 +41,7 @@ namespace GameRes.Formats.NitroPlus [Export(typeof(ArchiveFormat))] public class PakOpener : ArchiveFormat { - public override string Tag { get { return "NITRO+/PAK"; } } + public override string Tag { get { return "PAK/NITRO+"; } } public override string Description { get { return "Nitro+ resource archive"; } } public override uint Signature { get { return 0x03; } } public override bool IsHierarchic { get { return false; } } diff --git a/ArcFormats/ArcQLIE.cs b/ArcFormats/ArcQLIE.cs index d3b17ab1..2fa7c85d 100644 --- a/ArcFormats/ArcQLIE.cs +++ b/ArcFormats/ArcQLIE.cs @@ -42,7 +42,7 @@ namespace GameRes.Formats.Qlie [Export(typeof(ArchiveFormat))] public class PackOpener : ArchiveFormat { - public override string Tag { get { return "QLIE/PACK"; } } + public override string Tag { get { return "PACK/QLIE"; } } public override string Description { get { return "QLIE engine resource archive"; } } public override uint Signature { get { return 0; } } public override bool IsHierarchic { get { return true; } } diff --git a/ArcFormats/Properties/AssemblyInfo.cs b/ArcFormats/Properties/AssemblyInfo.cs index ca6b9675..645157a6 100644 --- a/ArcFormats/Properties/AssemblyInfo.cs +++ b/ArcFormats/Properties/AssemblyInfo.cs @@ -32,5 +32,5 @@ using System.Runtime.InteropServices; // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion ("1.0.8.85")] -[assembly: AssemblyFileVersion ("1.0.8.85")] +[assembly: AssemblyVersion ("1.0.8.86")] +[assembly: AssemblyFileVersion ("1.0.8.86")]