[PR #73] [MERGED] Update 2.3 #190

Closed
opened 2026-02-15 15:55:17 -05:00 by yindo · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/RPCS3/discord-bot/pull/73
Author: @13xforever
Created: 9/8/2018
Status: Merged
Merged: 9/8/2018
Merged by: @Nicba1010

Base: masterHead: update/2.3


📝 Commits (10+)

  • 7c60001 fixes for showing AMD driver versions
  • 38149cb fix disc inside /game/ detection
  • 01084bb Dedicated Settings detections
  • 0d97867 more notes and suggestions
  • 6bea4c1 fix !top amount and searching for Persona games
  • d973ecf fix !rate 1
  • 853057b limit !warn list users
  • 5f48427 only use #compatbot when not in DM
  • abe5d79 Show alternative game title in product info embed
  • e07176b swallow 404 errors when checking for covers on gametdb

📊 Changes

16 files changed (+545 additions, -116 deletions)

View changed files

📝 CompatApiClient/POCOs/CompatResult.cs (+4 -0)
📝 CompatBot/Commands/CompatList.cs (+51 -8)
📝 CompatBot/Commands/Misc.cs (+48 -39)
📝 CompatBot/Commands/Warnings.ListGroup.cs (+4 -2)
📝 CompatBot/Database/BotDb.cs (+9 -0)
CompatBot/Database/Migrations/BotDb/20180908150603_BotState.Designer.cs (+189 -0)
CompatBot/Database/Migrations/BotDb/20180908150603_BotState.cs (+36 -0)
📝 CompatBot/Database/Migrations/BotDb/BotDbModelSnapshot.cs (+23 -1)
📝 CompatBot/Database/Providers/AmdDriverVersionProvider.cs (+41 -4)
📝 CompatBot/EventHandlers/LogParsing/LogParser.LogSections.cs (+10 -4)
📝 CompatBot/EventHandlers/LogsAsTextMonitor.cs (+17 -7)
📝 CompatBot/EventHandlers/ProductCodeLookup.cs (+8 -8)
📝 CompatBot/Program.cs (+15 -3)
📝 CompatBot/ThumbScrapper/GameTdbScraper.cs (+3 -0)
📝 CompatBot/Utils/ResultFormatters/LogParserResultFormatter.cs (+62 -29)
📝 CompatBot/Utils/ResultFormatters/TitleInfoFormatter.cs (+25 -11)

📄 Description

Various small fixes and additions here and there


🔄 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/73 **Author:** [@13xforever](https://github.com/13xforever) **Created:** 9/8/2018 **Status:** ✅ Merged **Merged:** 9/8/2018 **Merged by:** [@Nicba1010](https://github.com/Nicba1010) **Base:** `master` ← **Head:** `update/2.3` --- ### 📝 Commits (10+) - [`7c60001`](https://github.com/RPCS3/discord-bot/commit/7c60001a7e9d55349e8d63dca14fb893b61a320f) fixes for showing AMD driver versions - [`38149cb`](https://github.com/RPCS3/discord-bot/commit/38149cba8f56f97649e0711786a4171c155f9baa) fix disc inside /game/ detection - [`01084bb`](https://github.com/RPCS3/discord-bot/commit/01084bb49f98132f14e7988bb6bdc0a9bc265251) Dedicated Settings detections - [`0d97867`](https://github.com/RPCS3/discord-bot/commit/0d9786730264329408f03628372ed990a1556a3b) more notes and suggestions - [`6bea4c1`](https://github.com/RPCS3/discord-bot/commit/6bea4c178da59204ce011a317043942416b1927d) fix !top amount and searching for Persona games - [`d973ecf`](https://github.com/RPCS3/discord-bot/commit/d973ecf9331605b485e23ee0c8b5ed7d4b2760cf) fix !rate 1 - [`853057b`](https://github.com/RPCS3/discord-bot/commit/853057b8898ea135053e850efa944615a950360a) limit !warn list users - [`5f48427`](https://github.com/RPCS3/discord-bot/commit/5f48427ecec4457ed4eda598bec51a1d0ccef025) only use #compatbot when not in DM - [`abe5d79`](https://github.com/RPCS3/discord-bot/commit/abe5d799cd776ab02673d452811b3a186fef4fc3) Show alternative game title in product info embed - [`e07176b`](https://github.com/RPCS3/discord-bot/commit/e07176bbeff02649e4dad8284b5754ead8174124) swallow 404 errors when checking for covers on gametdb ### 📊 Changes **16 files changed** (+545 additions, -116 deletions) <details> <summary>View changed files</summary> 📝 `CompatApiClient/POCOs/CompatResult.cs` (+4 -0) 📝 `CompatBot/Commands/CompatList.cs` (+51 -8) 📝 `CompatBot/Commands/Misc.cs` (+48 -39) 📝 `CompatBot/Commands/Warnings.ListGroup.cs` (+4 -2) 📝 `CompatBot/Database/BotDb.cs` (+9 -0) ➕ `CompatBot/Database/Migrations/BotDb/20180908150603_BotState.Designer.cs` (+189 -0) ➕ `CompatBot/Database/Migrations/BotDb/20180908150603_BotState.cs` (+36 -0) 📝 `CompatBot/Database/Migrations/BotDb/BotDbModelSnapshot.cs` (+23 -1) 📝 `CompatBot/Database/Providers/AmdDriverVersionProvider.cs` (+41 -4) 📝 `CompatBot/EventHandlers/LogParsing/LogParser.LogSections.cs` (+10 -4) 📝 `CompatBot/EventHandlers/LogsAsTextMonitor.cs` (+17 -7) 📝 `CompatBot/EventHandlers/ProductCodeLookup.cs` (+8 -8) 📝 `CompatBot/Program.cs` (+15 -3) 📝 `CompatBot/ThumbScrapper/GameTdbScraper.cs` (+3 -0) 📝 `CompatBot/Utils/ResultFormatters/LogParserResultFormatter.cs` (+62 -29) 📝 `CompatBot/Utils/ResultFormatters/TitleInfoFormatter.cs` (+25 -11) </details> ### 📄 Description Various small fixes and additions here and there --- <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:55:17 -05:00
yindo closed this issue 2026-02-15 15:55:17 -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#190