Skip to content

Commit

Permalink
Pre-release v1.1.0-rc
Browse files Browse the repository at this point in the history
  • Loading branch information
ikorin24 committed May 25, 2020
1 parent 0a8d4e0 commit 1c027f9
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 9 deletions.
2 changes: 1 addition & 1 deletion PMXParser/PMXParser.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<LangVersion>8.0</LangVersion>
<Nullable>enable</Nullable>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<Version>1.0.1</Version>
<Version>1.1.0-rc</Version>
<Copyright>Copyright © 2020 ikorin24</Copyright>
<Description>PMX file parser library</Description>
<RepositoryUrl>https://github.com/ikorin24/PMXParser.git</RepositoryUrl>
Expand Down
15 changes: 11 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
# PMX Parser

[![GitHub license](https://img.shields.io/github/license/ikorin24/PMXParser?color=967CFF)](https://github.com/ikorin24/PMXParser/blob/master/LICENSE)
[![nuget](https://img.shields.io/badge/nuget-v1.0.1-967CFF)](https://www.nuget.org/packages/PMXParser)
[![nuget](https://img.shields.io/badge/nuget-v1.1.0_rc-967CFF)](https://www.nuget.org/packages/PMXParser)

[日本語](https://github.com/ikorin24/PMXParser/blob/master/README_ja.md)

## What is This ?

PMX file parser library of C# (.NET Standard 2.1 / 2.0). PMX file is MMD (*Miku Miku Dance*) model file.
PMX file parser library of C# (.NET 2.0). PMX file is MMD (*Miku Miku Dance*) model file.

This parser parses PMX file into structual C# class.

Expand All @@ -32,7 +32,7 @@ using(var stream = System.IO.File.OpenRead(fileName))

## Requirements and Dependencies (On Building)

- .NET Standard 2.1 / 2.0
- .NET Standard 2.0
- C# 8.0
- `dotnet` command (.NET Core CLI Tools)

Expand All @@ -56,7 +56,6 @@ $ git clone https://github.com/ikorin24/PMXParser.git
$ cd PMXParser
$ dotnet build PMXParser/PMXParser.csproj -c Release

# ---> PMXParser/bin/Release/netstandard2.1/PMXParser.dll
# ---> PMXParser/bin/Release/netstandard2.0/PMXParser.dll
```

Expand Down Expand Up @@ -106,3 +105,11 @@ Bug fix and performance improvement a little

- Fix a big bug.
- Parse incorrect value in case of `byteSize` is not 4 in `NextDataOfSize` method.

### 2020/05/25 ver 1.1.0-rc

[![nuget](https://img.shields.io/badge/nuget-v1.1.0_rc-967CFF)](https://www.nuget.org/packages/PMXParser/1.1.0-rc)

- Add parser for unmanaged memory version. (in namespace `MMDTools.Unmanaged`)
- Fix a bug in multi-thread.
- Fix some other bugs.
15 changes: 11 additions & 4 deletions README_ja.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
# PMX Parser

[![GitHub license](https://img.shields.io/github/license/ikorin24/PMXParser?color=967CFF)](https://github.com/ikorin24/PMXParser/blob/master/LICENSE)
[![nuget](https://img.shields.io/badge/nuget-v1.0.0-967CFF)](https://www.nuget.org/packages/PMXParser)
[![nuget](https://img.shields.io/badge/nuget-v1.1.0_rc-967CFF)](https://www.nuget.org/packages/PMXParser)

[English](https://github.com/ikorin24/PMXParser/blob/master/README.md)

## これは何?

PMX ファイルの C# (.NET Standard 2.1 / 2.0) パーサーライブラリです。
PMX ファイルの C# (.NET Standard 2.0) パーサーライブラリです。

PMX ファイルは MMD (*Miku Miku Dance*) のモデルデータです。

Expand All @@ -34,7 +34,7 @@ using(var stream = System.IO.File.OpenRead(fileName))

## 必要環境と依存関係 (ビルド時)

- .NET Standard 2.1 / 2.0
- .NET Standard 2.0
- C# 8.0
- `dotnet` コマンド (.NET Core CLI ツール)

Expand All @@ -58,7 +58,6 @@ $ git clone https://github.com/ikorin24/PMXParser.git
$ cd PMXParser
$ dotnet build PMXParser/PMXParser.csproj -c Release

# ---> PMXParser/bin/Release/netstandard2.1/PMXParser.dll
# ---> PMXParser/bin/Release/netstandard2.0/PMXParser.dll
```

Expand Down Expand Up @@ -106,3 +105,11 @@ http://kkhk22.seesaa.net/category/14045227-1.html

- 大きなバグ修正
- `NextDataOfSize`メソッドの`byteSize`が4でない場合、正しくない値を読み取っていた

### 2020/05/25 ver 1.1.0-rc

[![nuget](https://img.shields.io/badge/nuget-v1.1.0_rc-967CFF)](https://www.nuget.org/packages/PMXParser/1.1.0-rc)

- アンマネージドメモリ版のパーサを追加。 (`MMDTools.Unmanaged`ネームスペース)
- マルチスレッドでのバグを修正
- その他バグ修正

0 comments on commit 1c027f9

Please sign in to comment.