Skip to content

Commit

Permalink
Fix parsing error since 2024-05-23 update (full schema update to foll…
Browse files Browse the repository at this point in the history
…ow) (#64)
  • Loading branch information
saul committed May 26, 2024
1 parent 1c3f89b commit 0974891
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
### 0.14.1 (2024-05-26)

- Fix parsing error since 2024-05-23 update (full schema update to follow)

### 0.13.1 (2024-04-30)

- Update schema and demo format for v14005
Expand Down
2 changes: 1 addition & 1 deletion src/DemoFile/FallbackDecoder.cs
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ internal static class FallbackDecoder
fieldDecoder(ref buffer);
return true;
}
case "uint8" or "int8" or "int16" or "uint16" or "int32" or "uint32" or "int64" or "uint64" or "CStrongHandle" or "CEntityHandle" or "CHandle" or "HSequence" or "CSPlayerBlockingUseAction_t":
case "uint8" or "int8" or "int16" or "uint16" or "int32" or "uint32" or "int64" or "uint64" or "CStrongHandle" or "CEntityHandle" or "CHandle" or "HSequence" or "CSPlayerBlockingUseAction_t" or "BloodType":
{
decoder = (Unit _, ReadOnlySpan<int> path, ref BitBuffer buffer) =>
buffer.ReadUVarInt64();
Expand Down
2 changes: 1 addition & 1 deletion src/DemoFile/version.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"$schema": "https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/master/src/NerdBank.GitVersioning/version.schema.json",
"version": "0.13.1",
"version": "0.14.1",
"publicReleaseRefSpec": [
"^refs/heads/main",
"^refs/heads/v\\d+(?:\\.\\d+)?$"
Expand Down

0 comments on commit 0974891

Please sign in to comment.