[PR #562] [MERGED] Maintenance #630

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

📋 Pull Request Information

Original PR: https://github.com/RPCS3/discord-bot/pull/562
Author: @13xforever
Created: 4/3/2020
Status: Merged
Merged: 4/3/2020
Merged by: @13xforever

Base: masterHead: vnext


📝 Commits (8)

  • 1b26bfc sync mod members to bot sudoers
  • 2573a7c add compat api method to get the offline copy of compat list
  • 79c2508 import offline compat list snapshot
  • 3029ea6 implement local compat list search
  • cd3149b add hack for lbp
  • 51e3a37 disable mod role sync at least for now
  • 4edae34 improve is the game playable handler with local lookup
  • 39aae7e workaround today's discord update

📊 Changes

17 files changed (+462 additions, -21 deletions)

View changed files

📝 Clients/CompatApiClient/Client.cs (+37 -0)
📝 Clients/CompatApiClient/CompatApiClient.csproj (+1 -0)
📝 Clients/CompatApiClient/POCOs/CompatResult.cs (+1 -0)
📝 CompatBot/Commands/Attributes/RequiresBotSudoerRole.cs (+2 -2)
📝 CompatBot/Commands/CompatList.cs (+76 -4)
CompatBot/Database/Migrations/ThumbnailDb/20200402181755_CompatFields.Designer.cs (+169 -0)
CompatBot/Database/Migrations/ThumbnailDb/20200402181755_CompatFields.cs (+31 -0)
📝 CompatBot/Database/Migrations/ThumbnailDb/ThumbnailDbModelSnapshot.cs (+8 -0)
📝 CompatBot/Database/Providers/ModProvider.cs (+27 -0)
📝 CompatBot/Database/ThumbnailDb.cs (+12 -0)
📝 CompatBot/EventHandlers/IsTheGamePlayableHandler.cs (+25 -6)
📝 CompatBot/EventHandlers/LogParsing/LogParser.StateMachineGenerator.cs (+1 -1)
📝 CompatBot/Program.cs (+15 -2)
CompatBot/Utils/Extensions/CompatResultExtensions.cs (+23 -0)
📝 CompatBot/Utils/Extensions/RolesExtensions.cs (+20 -0)
📝 CompatBot/Utils/ResultFormatters/TitleInfoFormatter.cs (+12 -5)
📝 Tests/LogParsingProfiler.cs (+2 -1)

📄 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/562 **Author:** [@13xforever](https://github.com/13xforever) **Created:** 4/3/2020 **Status:** ✅ Merged **Merged:** 4/3/2020 **Merged by:** [@13xforever](https://github.com/13xforever) **Base:** `master` ← **Head:** `vnext` --- ### 📝 Commits (8) - [`1b26bfc`](https://github.com/RPCS3/discord-bot/commit/1b26bfc02a62666112ad771306b64879d4d4f308) sync mod members to bot sudoers - [`2573a7c`](https://github.com/RPCS3/discord-bot/commit/2573a7ca025441dafbb25fdaecdde60569c7060f) add compat api method to get the offline copy of compat list - [`79c2508`](https://github.com/RPCS3/discord-bot/commit/79c25088271229ecd97f2168f03ea10a50b62266) import offline compat list snapshot - [`3029ea6`](https://github.com/RPCS3/discord-bot/commit/3029ea65916a9ee8f6c16c7f4f453a51f2d8b075) implement local compat list search - [`cd3149b`](https://github.com/RPCS3/discord-bot/commit/cd3149b69a3c2d47510c0b0c7e431a49a97eb27a) add hack for lbp - [`51e3a37`](https://github.com/RPCS3/discord-bot/commit/51e3a373a97fa0163382fca99283c80261da6c46) disable mod role sync at least for now - [`4edae34`](https://github.com/RPCS3/discord-bot/commit/4edae3472fdf32965923364efb01ee5995439fcd) improve is the game playable handler with local lookup - [`39aae7e`](https://github.com/RPCS3/discord-bot/commit/39aae7e61250f8dde32e1b03f54617247a2051c3) workaround today's discord update ### 📊 Changes **17 files changed** (+462 additions, -21 deletions) <details> <summary>View changed files</summary> 📝 `Clients/CompatApiClient/Client.cs` (+37 -0) 📝 `Clients/CompatApiClient/CompatApiClient.csproj` (+1 -0) 📝 `Clients/CompatApiClient/POCOs/CompatResult.cs` (+1 -0) 📝 `CompatBot/Commands/Attributes/RequiresBotSudoerRole.cs` (+2 -2) 📝 `CompatBot/Commands/CompatList.cs` (+76 -4) ➕ `CompatBot/Database/Migrations/ThumbnailDb/20200402181755_CompatFields.Designer.cs` (+169 -0) ➕ `CompatBot/Database/Migrations/ThumbnailDb/20200402181755_CompatFields.cs` (+31 -0) 📝 `CompatBot/Database/Migrations/ThumbnailDb/ThumbnailDbModelSnapshot.cs` (+8 -0) 📝 `CompatBot/Database/Providers/ModProvider.cs` (+27 -0) 📝 `CompatBot/Database/ThumbnailDb.cs` (+12 -0) 📝 `CompatBot/EventHandlers/IsTheGamePlayableHandler.cs` (+25 -6) 📝 `CompatBot/EventHandlers/LogParsing/LogParser.StateMachineGenerator.cs` (+1 -1) 📝 `CompatBot/Program.cs` (+15 -2) ➕ `CompatBot/Utils/Extensions/CompatResultExtensions.cs` (+23 -0) 📝 `CompatBot/Utils/Extensions/RolesExtensions.cs` (+20 -0) 📝 `CompatBot/Utils/ResultFormatters/TitleInfoFormatter.cs` (+12 -5) 📝 `Tests/LogParsingProfiler.cs` (+2 -1) </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:28 -05:00
yindo closed this issue 2026-02-15 15:56:29 -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#630