From 44825c9d69f8b229d2f2c178443a337120b7f9d1 Mon Sep 17 00:00:00 2001 From: Noah Stolk <31079637+NoahStolk@users.noreply.github.com> Date: Sat, 7 Oct 2023 20:38:41 +0200 Subject: [PATCH] Add some words to spelling dictionary --- README.md | 2 +- src/DevilDaggersInfo.Core.sln.DotSettings | 17 +++++++++++++++++ .../ReplayBinaryTests.cs | 4 ++-- 3 files changed, 20 insertions(+), 3 deletions(-) create mode 100644 src/DevilDaggersInfo.Core.sln.DotSettings diff --git a/README.md b/README.md index 634e110..fa3fcba 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ The DevilDaggersInfo project offers a couple libraries for parsing and creating Devil Daggers files. This is what the website, the web server, and the tools depend on internally. -(Note: This code was originally part of the [DevilDaggersInfo](https://github.com/NoahStolk/DevilDaggersInfo) repository. It was moved to a separate repository on September 12th, 2023.) +(Note: This code was originally part of the [DevilDaggersInfo](https://github.com/NoahStolk/DevilDaggersInfo) repository (now ddinfo-web). It was moved to a separate repository on September 12th, 2023.) ## Spawnset files diff --git a/src/DevilDaggersInfo.Core.sln.DotSettings b/src/DevilDaggersInfo.Core.sln.DotSettings new file mode 100644 index 0000000..7f56935 --- /dev/null +++ b/src/DevilDaggersInfo.Core.sln.DotSettings @@ -0,0 +1,17 @@ + + True + True + True + True + True + True + True + True + True + True + True + True + True + True + True + True \ No newline at end of file diff --git a/src/test/DevilDaggersInfo.Core.Replay.Test/ReplayBinaryTests.cs b/src/test/DevilDaggersInfo.Core.Replay.Test/ReplayBinaryTests.cs index f5421a4..cbeaa49 100644 --- a/src/test/DevilDaggersInfo.Core.Replay.Test/ReplayBinaryTests.cs +++ b/src/test/DevilDaggersInfo.Core.Replay.Test/ReplayBinaryTests.cs @@ -56,7 +56,7 @@ public void ParseAndCompileEvents() [DataRow("dd", false)] [DataRow("DF_RPL2", false)] [DataRow("", false)] - [DataRow("drdpl.", false)] + [DataRow("dr1pl.", false)] public void TestValidateLocalReplayHeaderIdentifier(string identifier, bool isValid) { byte[] identifierBytes = Encoding.UTF8.GetBytes(identifier); @@ -72,7 +72,7 @@ public void TestValidateLocalReplayHeaderIdentifier(string identifier, bool isVa [DataRow("DF", false)] [DataRow("ddrpl.", false)] [DataRow("", false)] - [DataRow("D_FRPL2", false)] + [DataRow("D_F1PL2", false)] public void TestValidateLeaderboardReplayHeaderIdentifier(string identifier, bool isValid) { byte[] identifierBytes = Encoding.UTF8.GetBytes(identifier);