Skip to content

Commit

Permalink
Update mapping and targets
Browse files Browse the repository at this point in the history
  • Loading branch information
cengelha committed Aug 10, 2022
1 parent 93f298e commit faa5299
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 6 deletions.
5 changes: 5 additions & 0 deletions .github/changelogs/0.8.1.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
Changed compile targets and an updated mapping.

### Changed
* Now targeting .NET Standard 2.x and supported versions in the [.NET release lifecycle](https://dotnet.microsoft.com/en-us/platform/support/policy/dotnet-core)
* Updated mapping to 3.98.0.5
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,12 @@ All notable changes to this project will be documented in this file. It uses the
### Fixed
### Security

## 0.8.1 (2022-08-10)

### Changed
* Now targeting .NET Standard 2.x and supported versions in the [.NET release lifecycle](https://dotnet.microsoft.com/en-us/platform/support/policy/dotnet-core)
* Updated mapping to 3.98.0.5

## 0.8.0 (2022-07-25)

### Changed
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# libNOM.map

![Maintained](https://img.shields.io/maintenance/yes/2022)
[![.NET Standard 2.0 | 5.0 | 6.0](https://img.shields.io/badge/.NET-Standard%202.0%20%7C%205.0%20%7C%206.0-lightgrey)](https://dotnet.microsoft.com/en-us/)
[![.NET Standard 2.0 - 2.1 | 6.0](https://img.shields.io/badge/.NET-Standard%202.0%20--%202.1%20%7C%206.0-lightgrey)](https://dotnet.microsoft.com/en-us/)
[![C# 10.0](https://img.shields.io/badge/C%23-10.0-lightgrey)](https://docs.microsoft.com/en-us/dotnet/csharp/)
[![Release](https://img.shields.io/github/v/release/zencq/libNOM.map?display_name=tag)](https://github.com/zencq/libNOM.map/releases/latest)

Expand All @@ -25,7 +25,7 @@ from the [lastest MBINCompiler release](https://github.com/monkeyman192/MBINComp
It will be downloaded to **download/mapping.json** (if no other path is set) and
automatically loaded if present.

The built-in mapping is based on `3.94.0.1`.
The built-in mapping is based on `3.98.0.5`.

### Usage

Expand Down
2 changes: 1 addition & 1 deletion libNOM.map/MappingSettings.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ public record class MappingSettings
/// <summary>
/// Where to download the updated mapping file.
/// </summary>
#if NETSTANDARD2_0
#if NETSTANDARD2_0_OR_GREATER
public string Download { get; set; } = "download";
#else // NET5_0_OR_GREATER
public string Download { get; init; } = "download";
Expand Down
2 changes: 1 addition & 1 deletion libNOM.map/Resources/mapping_mbincompiler.json

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions libNOM.map/libNOM.map.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<!-- Application -->
<PropertyGroup>
<TargetFrameworks>netstandard2.0;net5.0;net6.0</TargetFrameworks>
<TargetFrameworks>netstandard2.0;netstandard2.1;net6.0</TargetFrameworks>
</PropertyGroup>

<!-- Build -->
Expand All @@ -17,7 +17,7 @@

<!-- Package -->
<PropertyGroup>
<Version>0.8.0</Version>
<Version>0.8.1</Version>
<Authors>zencq</Authors>
<Description>Provides obfuscation and deobfuscation of save files from the game No Man's Sky.</Description>
<PackageReadmeFile>README.md</PackageReadmeFile>
Expand Down

0 comments on commit faa5299

Please sign in to comment.