Release v0.4.10.17
JSON
This commit is contained in:
@@ -46,9 +46,9 @@ namespace KKdMainLib.IO
|
||||
{
|
||||
buf.first = 1;
|
||||
buf.data[0] = buf.data[buf.data.Length - 1];
|
||||
byte[] temp = _IO.RBy(buf.data.Length - 1);
|
||||
buf.length = temp.Length;
|
||||
Array.Copy(temp, 0, buf.data, 1, temp.Length);
|
||||
byte[] temp = new byte[buf.data.Length];
|
||||
buf.length = _IO.RBy(buf.data.Length - 1, temp);
|
||||
Array.Copy(temp, 0, buf.data, 1, buf.length);
|
||||
}
|
||||
|
||||
if (buf.length < 1)
|
||||
|
||||
@@ -6,12 +6,12 @@
|
||||
<Configuration></Configuration>
|
||||
<Copyright>korenkonder (C) 2018-2023</Copyright>
|
||||
<Description>A simple library for working with Project Diva AC/DT/F/AFT/F2/X/XHD/FT/VRFL/M39 files</Description>
|
||||
<FileVersion>0.4.10.16</FileVersion>
|
||||
<FileVersion>0.4.10.17</FileVersion>
|
||||
<PackageId>KKdMainLib</PackageId>
|
||||
<Product>KKdMainLib</Product>
|
||||
<TargetFramework>net461</TargetFramework>
|
||||
<Title>KKdMainLib</Title>
|
||||
<Version>0.4.10.16</Version>
|
||||
<Version>0.4.10.17</Version>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
||||
<PlatformTarget>AnyCPU</PlatformTarget>
|
||||
|
||||
@@ -11,5 +11,5 @@ using System.Runtime.InteropServices;
|
||||
[assembly: AssemblyCulture("")]
|
||||
[assembly: ComVisible(false)]
|
||||
[assembly: Guid("7B5D5A3A-A6F8-4813-C97D-ACFC98F7397E")]
|
||||
[assembly: AssemblyVersion("0.4.10.16")]
|
||||
[assembly: AssemblyFileVersion("0.4.10.16")]
|
||||
[assembly: AssemblyVersion("0.4.10.17")]
|
||||
[assembly: AssemblyFileVersion("0.4.10.17")]
|
||||
|
||||
Reference in New Issue
Block a user