released v1.5.40

This commit is contained in:
morkt
2018-11-07 12:30:37 +04:00
parent a5041e6540
commit ba4ec0aad4
11 changed files with 47 additions and 25 deletions

View File

@@ -32,6 +32,7 @@ using GameRes.Compression;
using GameRes.Utility;
// [041001][Innocence] China Chaime+
// [041029][Tam's] Fukushuu no Ori ~OL Kankin Ryoujoku no Yakata~
// [041224][Tam's] Volga Series 1
namespace GameRes.Formats.Ags32i
@@ -52,7 +53,7 @@ namespace GameRes.Formats.Ags32i
public GssFormat ()
{
Signatures = new uint[] { 0x20575A52, 0x20574242, 0 };
Signatures = new uint[] { 0x20575A52, 0x20574242, 0x20574346, 0 };
}
//static readonly uint DefaultKey = 0x20040915;

View File

@@ -27,6 +27,8 @@ using System.Collections.Generic;
using System.ComponentModel.Composition;
using System.IO;
// [980529][Brownie] Dawn Slave
namespace GameRes.Formats.Brownie
{
[Export(typeof(ArchiveFormat))]

View File

@@ -28,6 +28,9 @@ using System.ComponentModel.Composition;
using System.IO;
using GameRes.Compression;
// [030725][Digital Monkey] Kono Sora ga Tsuieru Toki ni
// [041112][Yumesta] Seikon ~Kiba to Nie to Kyouki no Yakata~
namespace GameRes.Formats.DigitalMonkey
{
[Export(typeof(ArchiveFormat))]

View File

@@ -27,6 +27,8 @@ using System.ComponentModel.Composition;
using System.IO;
using System.Windows.Media;
// [000310][Mermaid] Into Your World
namespace GameRes.Formats.Mermaid
{
internal class MgMetaData : ImageMetaData
@@ -35,9 +37,7 @@ namespace GameRes.Formats.Mermaid
public int TileCount;
}
#if DEBUG
[Export(typeof(ImageFormat))]
#endif
public class MgFormat : ImageFormat
{
public override string Tag { get { return "MG1"; } }
@@ -93,7 +93,7 @@ namespace GameRes.Formats.Mermaid
for (int y = tile_count-1; y >= 0; --y)
{
int tile_dst = dst + y * tile_width;
for (int x = 0; x < tile_count; ++x)
for (int x = 0; x < stride; x += tile_width)
{
if (tile_dst + tile_width > pixels.Length)
file.Seek (tile_width, SeekOrigin.Current);

View File

@@ -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.6.129")]
[assembly: AssemblyFileVersion ("1.0.6.129")]
[assembly: AssemblyVersion ("1.0.7.157")]
[assembly: AssemblyFileVersion ("1.0.7.157")]