[PR #548] [MERGED] Reorganize some storage stuff #618

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

📋 Pull Request Information

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

Base: masterHead: vnext


📝 Commits (7)

  • fd403b5 give more info on restart
  • e4b4d89 remove module information for syscall stats
  • 8905f31 remove duplicate table
  • 827ce42 fix syscall gathering
  • 5460aaa add a note for cache issues in recent builds
  • e5b4ae1 ugh
  • 5ef55f7 workaround some discord client regressions

📊 Changes

21 files changed (+606 additions, -174 deletions)

View changed files

📝 CompatBot/Commands/BotStats.cs (+6 -8)
📝 CompatBot/Commands/Syscall.cs (+7 -34)
CompatBot/Database/Migrations/ThumbnailDb/20200321124445_RemoveSyscallModules.Designer.cs (+198 -0)
CompatBot/Database/Migrations/ThumbnailDb/20200321124445_RemoveSyscallModules.cs (+70 -0)
CompatBot/Database/Migrations/ThumbnailDb/20200321134554_RemoveTitleInfoTable.Designer.cs (+161 -0)
CompatBot/Database/Migrations/ThumbnailDb/20200321134554_RemoveTitleInfoTable.cs (+53 -0)
📝 CompatBot/Database/Migrations/ThumbnailDb/ThumbnailDbModelSnapshot.cs (+37 -59)
📝 CompatBot/Database/Providers/SyscallInfoProvider.cs (+8 -11)
📝 CompatBot/Database/Providers/ThumbnailProvider.cs (+17 -9)
📝 CompatBot/Database/ThumbnailDb.cs (+1 -19)
📝 CompatBot/EventHandlers/LogParsing/LogParser.LogSections.cs (+2 -2)
📝 CompatBot/EventHandlers/LogParsing/LogParser.StateMachineGenerator.cs (+4 -8)
📝 CompatBot/EventHandlers/LogParsing/POCOs/LogParseState.cs (+1 -1)
📝 CompatBot/EventHandlers/LogParsingHandler.cs (+3 -8)
📝 CompatBot/Program.cs (+9 -9)
📝 CompatBot/Utils/ColorGetter.cs (+0 -1)
📝 CompatBot/Utils/Extensions/DiscordClientExtensions.cs (+3 -0)
📝 CompatBot/Utils/ResultFormatters/LogParserResultFormatter.GeneralNotesSection.cs (+16 -3)
📝 CompatBot/Utils/ResultFormatters/UpdateInfoFormatter.cs (+1 -1)
📝 CompatBot/Watchdog.cs (+1 -1)

...and 1 more files

📄 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/548 **Author:** [@13xforever](https://github.com/13xforever) **Created:** 3/21/2020 **Status:** ✅ Merged **Merged:** 3/21/2020 **Merged by:** [@13xforever](https://github.com/13xforever) **Base:** `master` ← **Head:** `vnext` --- ### 📝 Commits (7) - [`fd403b5`](https://github.com/RPCS3/discord-bot/commit/fd403b52f71f9e8a39a0f9828703cba21dd66508) give more info on restart - [`e4b4d89`](https://github.com/RPCS3/discord-bot/commit/e4b4d892e7f9f2d0ce61cee8da5d880c62f0c351) remove module information for syscall stats - [`8905f31`](https://github.com/RPCS3/discord-bot/commit/8905f311a572d523ebc99b5243b81511823ee9e2) remove duplicate table - [`827ce42`](https://github.com/RPCS3/discord-bot/commit/827ce42ad725adcca1e5ad94a89fd7981f737e15) fix syscall gathering - [`5460aaa`](https://github.com/RPCS3/discord-bot/commit/5460aaa16bc14ca86d8417eb710e125d442906f7) add a note for cache issues in recent builds - [`e5b4ae1`](https://github.com/RPCS3/discord-bot/commit/e5b4ae12f41e11d79c0cbbba808d5029bb4aeeca) ugh - [`5ef55f7`](https://github.com/RPCS3/discord-bot/commit/5ef55f7cc9c746e67c920870025b2082fb3ef1f2) workaround some discord client regressions ### 📊 Changes **21 files changed** (+606 additions, -174 deletions) <details> <summary>View changed files</summary> 📝 `CompatBot/Commands/BotStats.cs` (+6 -8) 📝 `CompatBot/Commands/Syscall.cs` (+7 -34) ➕ `CompatBot/Database/Migrations/ThumbnailDb/20200321124445_RemoveSyscallModules.Designer.cs` (+198 -0) ➕ `CompatBot/Database/Migrations/ThumbnailDb/20200321124445_RemoveSyscallModules.cs` (+70 -0) ➕ `CompatBot/Database/Migrations/ThumbnailDb/20200321134554_RemoveTitleInfoTable.Designer.cs` (+161 -0) ➕ `CompatBot/Database/Migrations/ThumbnailDb/20200321134554_RemoveTitleInfoTable.cs` (+53 -0) 📝 `CompatBot/Database/Migrations/ThumbnailDb/ThumbnailDbModelSnapshot.cs` (+37 -59) 📝 `CompatBot/Database/Providers/SyscallInfoProvider.cs` (+8 -11) 📝 `CompatBot/Database/Providers/ThumbnailProvider.cs` (+17 -9) 📝 `CompatBot/Database/ThumbnailDb.cs` (+1 -19) 📝 `CompatBot/EventHandlers/LogParsing/LogParser.LogSections.cs` (+2 -2) 📝 `CompatBot/EventHandlers/LogParsing/LogParser.StateMachineGenerator.cs` (+4 -8) 📝 `CompatBot/EventHandlers/LogParsing/POCOs/LogParseState.cs` (+1 -1) 📝 `CompatBot/EventHandlers/LogParsingHandler.cs` (+3 -8) 📝 `CompatBot/Program.cs` (+9 -9) 📝 `CompatBot/Utils/ColorGetter.cs` (+0 -1) 📝 `CompatBot/Utils/Extensions/DiscordClientExtensions.cs` (+3 -0) 📝 `CompatBot/Utils/ResultFormatters/LogParserResultFormatter.GeneralNotesSection.cs` (+16 -3) 📝 `CompatBot/Utils/ResultFormatters/UpdateInfoFormatter.cs` (+1 -1) 📝 `CompatBot/Watchdog.cs` (+1 -1) _...and 1 more files_ </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:27 -05:00
yindo closed this issue 2026-02-15 15:56:27 -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#618