Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<TargetFramework>net10.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
Expand Down
2 changes: 1 addition & 1 deletion TkSharp.Core/IO/NullTkRom.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ namespace TkSharp.Core.IO;
/// </summary>
public class NullTkRom : ITkRom
{
public int GameVersion => 142;
public int GameVersion => 143;

public string NsoBinaryId => string.Empty;

Expand Down
2 changes: 2 additions & 0 deletions TkSharp.Core/TkPatch.cs
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ public class TkPatch(string nsoBinaryId)
private const string NSO_BINARY_ID_140 = "6265f94d606242ce730ef721a8037dda8e4bfc63";
private const string NSO_BINARY_ID_141 = "965eab9ceb8eb867f747da772022c95065c9b927";
private const string NSO_BINARY_ID_142 = "5cb42b1cf25469fb0635fd046453d843c18bc8ab";
private const string NSO_BINARY_ID_143 = "277178b7dba1b6d4949a84778d4abc58b31b34f5";

private const uint IPS32_MAGIC_PREFIX = 0x33535049;
private const byte IPS32_MAGIC_SUFFIX = 0x32;
Expand All @@ -33,6 +34,7 @@ public class TkPatch(string nsoBinaryId)
[NSO_BINARY_ID_140] = 0x0212e60c,
[NSO_BINARY_ID_141] = 0x0211e2b8,
[NSO_BINARY_ID_142] = 0x0211de70,
[NSO_BINARY_ID_143] = 0x021238fc,
};

public static TkPatch CreateWithDefaults(string nsoBinaryId, uint shopParamLimit = 512)
Expand Down
Binary file modified TkSharp.Data.Embedded/Resources/Checksums.bpclt
Binary file not shown.
Binary file modified TkSharp.Data.Embedded/Resources/PackFileLookup.pkcache.zs
Binary file not shown.
2 changes: 1 addition & 1 deletion TkSharp.Debug/TkSharp.Debug.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net9.0</TargetFramework>
<TargetFramework>net10.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
Expand Down
Binary file modified TkSharp.Merging/Resources/GameDataIndex.bpclt
Binary file not shown.
Binary file modified TkSharp.Merging/Resources/RsdbCache.bpcc
Binary file not shown.
Binary file modified TkSharp.Merging/Resources/RsdbIndex.bpcc
Binary file not shown.
2 changes: 1 addition & 1 deletion Tools/TkSharp.DevTools/TkSharp.DevTools.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net9.0</TargetFramework>
<TargetFramework>net10.0</TargetFramework>
<Nullable>enable</Nullable>
<BuiltInComInteropSupport>true</BuiltInComInteropSupport>
<ApplicationManifest>app.manifest</ApplicationManifest>
Expand Down