[PR #633] [MERGED] Some GC optimizations around fuzzy string matching #698

Closed
opened 2026-02-15 15:56:39 -05:00 by yindo · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/RPCS3/discord-bot/pull/633
Author: @13xforever
Created: 8/1/2020
Status: Merged
Merged: 8/1/2020
Merged by: @13xforever

Base: masterHead: vnext


📝 Commits (10+)

  • fa73a43 update windows builds
  • 0b1caae improve zalgo stripping
  • 408d6d6 change nicknames automatically when needed
  • 2befabe replace dice coefficient implementation for custom optimized version
  • 137bb58 fix tests
  • 31dd59d oops accidentally made zalgo detection too strict
  • d0e2857 always log user rename
  • c44bc8b update minesweeper limits
  • ddecad2 update wiki links
  • 66734c9 add patch manager log support and update tlou settings

📊 Changes

15 files changed (+247 additions, -132 deletions)

View changed files

📝 Clients/PsnClient/PsnClient.cs (+3 -2)
📝 CompatBot/Commands/Minesweeper.cs (+10 -4)
📝 CompatBot/CompatBot.csproj (+0 -1)
📝 CompatBot/Database/Providers/ThumbnailProvider.cs (+1 -1)
📝 CompatBot/EventHandlers/EmpathySimulationHandler.cs (+1 -1)
📝 CompatBot/EventHandlers/LogParsing/LogParser.LogSections.cs (+2 -0)
📝 CompatBot/EventHandlers/UsernameZalgoMonitor.cs (+17 -14)
📝 CompatBot/Utils/Extensions/AzureDevOpsClientExtensions.cs (+2 -2)
CompatBot/Utils/Extensions/DiceCoefficientOptimized.cs (+73 -0)
📝 CompatBot/Utils/Extensions/StringUtils.cs (+3 -2)
📝 CompatBot/Utils/ResultFormatters/LogParserResultFormatter.GeneralNotesSection.cs (+8 -20)
📝 CompatBot/Utils/ResultFormatters/LogParserResultFormatter.WeirdSettingsSection.cs (+75 -62)
📝 CompatBot/Utils/ResultFormatters/LogParserResultFormatter.cs (+27 -12)
📝 Tests/StringUtilTests.cs (+24 -11)
📝 Tests/Tests.csproj (+1 -0)

📄 Description

No description provided


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/RPCS3/discord-bot/pull/633 **Author:** [@13xforever](https://github.com/13xforever) **Created:** 8/1/2020 **Status:** ✅ Merged **Merged:** 8/1/2020 **Merged by:** [@13xforever](https://github.com/13xforever) **Base:** `master` ← **Head:** `vnext` --- ### 📝 Commits (10+) - [`fa73a43`](https://github.com/RPCS3/discord-bot/commit/fa73a43dc732cbda9226bf4e681f204e5ed985c7) update windows builds - [`0b1caae`](https://github.com/RPCS3/discord-bot/commit/0b1caaeaf02a65d24aacca3ef8e56ea7a2a5a278) improve zalgo stripping - [`408d6d6`](https://github.com/RPCS3/discord-bot/commit/408d6d6746537c923a428873041d4afedab57fd2) change nicknames automatically when needed - [`2befabe`](https://github.com/RPCS3/discord-bot/commit/2befabed8456f0ed273e132ba491f2ad6fcb302c) replace dice coefficient implementation for custom optimized version - [`137bb58`](https://github.com/RPCS3/discord-bot/commit/137bb58a471d409deef67aeac0e7b9904a536792) fix tests - [`31dd59d`](https://github.com/RPCS3/discord-bot/commit/31dd59df062ebf1fbb2a55086ab0262a9dcd7df4) oops accidentally made zalgo detection too strict - [`d0e2857`](https://github.com/RPCS3/discord-bot/commit/d0e2857a34b6e810fb549bd0f480e3efb1044491) always log user rename - [`c44bc8b`](https://github.com/RPCS3/discord-bot/commit/c44bc8b197de03d513630ac35cac5e8944363bfb) update minesweeper limits - [`ddecad2`](https://github.com/RPCS3/discord-bot/commit/ddecad2635dbdbc596c5ca0e5f2a9d8424b8e97a) update wiki links - [`66734c9`](https://github.com/RPCS3/discord-bot/commit/66734c9f59164eff083bfa06904a335644c4ca58) add patch manager log support and update tlou settings ### 📊 Changes **15 files changed** (+247 additions, -132 deletions) <details> <summary>View changed files</summary> 📝 `Clients/PsnClient/PsnClient.cs` (+3 -2) 📝 `CompatBot/Commands/Minesweeper.cs` (+10 -4) 📝 `CompatBot/CompatBot.csproj` (+0 -1) 📝 `CompatBot/Database/Providers/ThumbnailProvider.cs` (+1 -1) 📝 `CompatBot/EventHandlers/EmpathySimulationHandler.cs` (+1 -1) 📝 `CompatBot/EventHandlers/LogParsing/LogParser.LogSections.cs` (+2 -0) 📝 `CompatBot/EventHandlers/UsernameZalgoMonitor.cs` (+17 -14) 📝 `CompatBot/Utils/Extensions/AzureDevOpsClientExtensions.cs` (+2 -2) ➕ `CompatBot/Utils/Extensions/DiceCoefficientOptimized.cs` (+73 -0) 📝 `CompatBot/Utils/Extensions/StringUtils.cs` (+3 -2) 📝 `CompatBot/Utils/ResultFormatters/LogParserResultFormatter.GeneralNotesSection.cs` (+8 -20) 📝 `CompatBot/Utils/ResultFormatters/LogParserResultFormatter.WeirdSettingsSection.cs` (+75 -62) 📝 `CompatBot/Utils/ResultFormatters/LogParserResultFormatter.cs` (+27 -12) 📝 `Tests/StringUtilTests.cs` (+24 -11) 📝 `Tests/Tests.csproj` (+1 -0) </details> ### 📄 Description _No description provided_ --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
yindo added the pull-request label 2026-02-15 15:56:39 -05:00
yindo closed this issue 2026-02-15 15:56:39 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: RPCS3/discord-bot#698