Skip to content

Commit

Permalink
1.3.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Wenveo committed Nov 29, 2021
1 parent 039de58 commit eace778
Show file tree
Hide file tree
Showing 6 changed files with 22 additions and 18 deletions.
13 changes: 0 additions & 13 deletions .idea/.idea.Noisrev.League.IO.RST/.idea/.gitignore

This file was deleted.

12 changes: 11 additions & 1 deletion Noisrev.League.IO.RST/Noisrev.League.IO.RST.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,13 @@
<Copyright>Copyright © 2021</Copyright>
<PackageTags>League, Leaug of Legends, RST, RSTFile, rst</PackageTags>
<UserSecretsId>c1187aa9-c082-49ae-b7b1-9286780f330c</UserSecretsId>
<Version>1.3.1</Version>
<Version>1.3.2</Version>
<RepositoryUrl>https://github.com/Noisrev/Noisrev.League.IO.RST</RepositoryUrl>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<GenerateDocumentationFile>True</GenerateDocumentationFile>
<ProduceReferenceAssembly>True</ProduceReferenceAssembly>
<PackageReadmeFile>README.md</PackageReadmeFile>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
Expand All @@ -27,6 +30,13 @@
<AllowUnsafeBlocks>false</AllowUnsafeBlocks>
</PropertyGroup>

<ItemGroup>
<None Include="..\README.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>

<ItemGroup>
<PackageReference Include="Extensions.Data.xxHash.core20" Version="1.0.2.1" />
</ItemGroup>
Expand Down
5 changes: 3 additions & 2 deletions Noisrev.League.IO.RST/RMode.cs
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
namespace Noisrev.League.IO.RST
#pragma warning disable CS1591
namespace Noisrev.League.IO.RST
{
/// <summary>
/// RST File Mode
/// </summary>
public enum RMode : byte
public enum RMode : byte
{
None,
Default
Expand Down
4 changes: 2 additions & 2 deletions Noisrev.League.IO.RST/RSTEntry.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
using System;
#pragma warning disable CS1591
using System;

namespace Noisrev.League.IO.RST
{
Expand Down Expand Up @@ -50,7 +51,6 @@ public bool Equals(RSTEntry other)
&& Text == other.Text;
}
}

public object Clone()
{
return new RSTEntry(Hash, Text);
Expand Down
1 change: 1 addition & 0 deletions Noisrev.League.IO.RST/RSTFile.cs
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@
* ---DateTime : 7.2.2021 --13:14
*/

#pragma warning disable CS1591
using Noisrev.League.IO.RST.Helper;
using System;
using System.Collections.Generic;
Expand Down
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,11 @@ It is used to store text messages in League of Legends games.

# Release Note

***v1.3.2***
- Added a new RType extension function that returns the corresponding RType based on the input Version(int or byte)
- Fixed some code comments
- Fill in the missing Api documentation

***v1.3.1***
- Change the get method for "DataOffset"

Expand Down

0 comments on commit eace778

Please sign in to comment.