[PR #244] [MERGED] The long awaited !download a game command #322

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

📋 Pull Request Information

Original PR: https://github.com/RPCS3/discord-bot/pull/244
Author: @13xforever
Created: 3/6/2019
Status: Merged
Merged: 3/6/2019
Merged by: @13xforever

Base: masterHead: vnext


📝 Commits (10+)

  • dca59db !download command to search for games
  • 1919183 various formatting fixes and whatnot
  • e128633 workaround segfault when running dotnet from the snap
  • 8895d96 more stats
  • df6813a move new builds monitor to regular background tasks
  • 26b58ae bump psn scraping from 2 weeks to 1 year
  • 6eebd91 move databases to the user profile config folders
  • 704f17f no need for this anymore
  • d9dfabf thumbnail color caching
  • 1a096b1 limit !download to spam channels

📊 Changes

26 files changed (+687 additions, -84 deletions)

View changed files

📝 Clients/PsnClient/POCOs/App.cs (+3 -3)
📝 Clients/PsnClient/POCOs/Container.cs (+3 -0)
📝 Clients/PsnClient/PsnClient.cs (+31 -0)
📝 CompatBot/Commands/BotStats.cs (+5 -1)
📝 CompatBot/Commands/CompatList.cs (+4 -4)
📝 CompatBot/Commands/Explain.cs (+1 -1)
📝 CompatBot/Commands/Misc.cs (+6 -1)
📝 CompatBot/Commands/Psn.Check.cs (+1 -4)
📝 CompatBot/Commands/Psn.cs (+82 -0)
📝 CompatBot/CompatBot.csproj (+2 -0)
📝 CompatBot/Config.cs (+1 -1)
📝 CompatBot/Database/BotDb.cs (+4 -2)
📝 CompatBot/Database/DbImporter.cs (+44 -0)
CompatBot/Database/Migrations/ThumbnailDb/20190306154836_ThumbsColorCache.Designer.cs (+125 -0)
CompatBot/Database/Migrations/ThumbnailDb/20190306154836_ThumbsColorCache.cs (+54 -0)
📝 CompatBot/Database/Migrations/ThumbnailDb/ThumbnailDbModelSnapshot.cs (+41 -1)
📝 CompatBot/Database/Providers/ScrapeStateProvider.cs (+1 -3)
📝 CompatBot/Database/Providers/ThumbnailProvider.cs (+110 -28)
📝 CompatBot/Database/ThumbnailDb.cs (+20 -2)
📝 CompatBot/EventHandlers/NewBuildsMonitor.cs (+27 -0)

...and 6 more files

📄 Description

Actually, it's an alias for !psn search, but who reads release notes anyway.
Additionally, move settings databases from the git work dir to user profile.
Also fix quite a few issues throughout.


🔄 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/244 **Author:** [@13xforever](https://github.com/13xforever) **Created:** 3/6/2019 **Status:** ✅ Merged **Merged:** 3/6/2019 **Merged by:** [@13xforever](https://github.com/13xforever) **Base:** `master` ← **Head:** `vnext` --- ### 📝 Commits (10+) - [`dca59db`](https://github.com/RPCS3/discord-bot/commit/dca59dbaa98bbdb8b353ea631fbd17aa08d00345) !download command to search for games - [`1919183`](https://github.com/RPCS3/discord-bot/commit/19191830953ea95d919ff4df99ca2c06761b53e3) various formatting fixes and whatnot - [`e128633`](https://github.com/RPCS3/discord-bot/commit/e12863347154b78ffc1561e6b3cc257c828d92c4) workaround segfault when running dotnet from the snap - [`8895d96`](https://github.com/RPCS3/discord-bot/commit/8895d9679d5caa859082ed2a1aed4434b95c24a2) more stats - [`df6813a`](https://github.com/RPCS3/discord-bot/commit/df6813adaffc0ecb7104f1f7f72891161baedfde) move new builds monitor to regular background tasks - [`26b58ae`](https://github.com/RPCS3/discord-bot/commit/26b58ae91239c3f991048426896eb617bb92022e) bump psn scraping from 2 weeks to 1 year - [`6eebd91`](https://github.com/RPCS3/discord-bot/commit/6eebd912472dc76d5d4772e73c0f903deb2d7eeb) move databases to the user profile config folders - [`704f17f`](https://github.com/RPCS3/discord-bot/commit/704f17fe74fd0730b1de41fb30717b41f3494a32) no need for this anymore - [`d9dfabf`](https://github.com/RPCS3/discord-bot/commit/d9dfabf0b4e0c66b2435d984b8818fe92397b1b1) thumbnail color caching - [`1a096b1`](https://github.com/RPCS3/discord-bot/commit/1a096b1de76928ae7a46cf70855b0a827bed71e0) limit !download to spam channels ### 📊 Changes **26 files changed** (+687 additions, -84 deletions) <details> <summary>View changed files</summary> 📝 `Clients/PsnClient/POCOs/App.cs` (+3 -3) 📝 `Clients/PsnClient/POCOs/Container.cs` (+3 -0) 📝 `Clients/PsnClient/PsnClient.cs` (+31 -0) 📝 `CompatBot/Commands/BotStats.cs` (+5 -1) 📝 `CompatBot/Commands/CompatList.cs` (+4 -4) 📝 `CompatBot/Commands/Explain.cs` (+1 -1) 📝 `CompatBot/Commands/Misc.cs` (+6 -1) 📝 `CompatBot/Commands/Psn.Check.cs` (+1 -4) 📝 `CompatBot/Commands/Psn.cs` (+82 -0) 📝 `CompatBot/CompatBot.csproj` (+2 -0) 📝 `CompatBot/Config.cs` (+1 -1) 📝 `CompatBot/Database/BotDb.cs` (+4 -2) 📝 `CompatBot/Database/DbImporter.cs` (+44 -0) ➕ `CompatBot/Database/Migrations/ThumbnailDb/20190306154836_ThumbsColorCache.Designer.cs` (+125 -0) ➕ `CompatBot/Database/Migrations/ThumbnailDb/20190306154836_ThumbsColorCache.cs` (+54 -0) 📝 `CompatBot/Database/Migrations/ThumbnailDb/ThumbnailDbModelSnapshot.cs` (+41 -1) 📝 `CompatBot/Database/Providers/ScrapeStateProvider.cs` (+1 -3) 📝 `CompatBot/Database/Providers/ThumbnailProvider.cs` (+110 -28) 📝 `CompatBot/Database/ThumbnailDb.cs` (+20 -2) 📝 `CompatBot/EventHandlers/NewBuildsMonitor.cs` (+27 -0) _...and 6 more files_ </details> ### 📄 Description Actually, it's an alias for `!psn search`, but who reads release notes anyway. Additionally, move settings databases from the git work dir to user profile. Also fix quite a few issues throughout. --- <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:40 -05:00
yindo closed this issue 2026-02-15 15:55:40 -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#322