[PR #210] [MERGED] QoL fixes #290

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

📋 Pull Request Information

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

Base: masterHead: vnext


📝 Commits (6)

  • 8694376 typos
  • 7eff98f more typos, and some command overload fun
  • c88a6c0 update deps
  • 5881d07 do ascii table formatter & also some black magic
  • 56af1fc replace explicit table formatting with the new proper table formatter
  • 9ea1786 members client language stats (not enabled, requires update to the client)

📊 Changes

16 files changed (+373 additions, -81 deletions)

View changed files

📝 Clients/CompatApiClient/Utils/Utils.cs (+1 -6)
📝 CompatBot/Commands/E3.cs (+5 -3)
📝 CompatBot/Commands/Events.cs (+19 -5)
📝 CompatBot/Commands/Invites.cs (+12 -15)
📝 CompatBot/Commands/Moderation.Audit.cs (+46 -0)
📝 CompatBot/Commands/Pr.cs (+3 -3)
📝 CompatBot/Commands/Sudo.Mod.cs (+9 -5)
📝 CompatBot/Commands/Warnings.ListGroup.cs (+18 -23)
📝 CompatBot/Commands/Warnings.cs (+13 -14)
📝 CompatBot/CompatBot.csproj (+4 -4)
CompatBot/Utils/AsciiColumn.cs (+18 -0)
CompatBot/Utils/AsciiTable.cs (+164 -0)
📝 CompatBot/Utils/StringUtils.cs (+38 -1)
📝 HomoglyphConverter/Normalizer.cs (+2 -2)
Tests/StringUtilTests.cs (+19 -0)
📝 Tests/Tests.csproj (+2 -0)

📄 Description

  • fixed some typos
  • made some proper tables
  • implemented some black magic to properly pad most strings (i.e. Nicba)

🔄 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/210 **Author:** [@13xforever](https://github.com/13xforever) **Created:** 2/6/2019 **Status:** ✅ Merged **Merged:** 2/6/2019 **Merged by:** [@13xforever](https://github.com/13xforever) **Base:** `master` ← **Head:** `vnext` --- ### 📝 Commits (6) - [`8694376`](https://github.com/RPCS3/discord-bot/commit/8694376cb2da3fd6f1bf2c6e079a44f73b85627e) typos - [`7eff98f`](https://github.com/RPCS3/discord-bot/commit/7eff98fc8f0a5a501faf17edb497b0577e3c500c) more typos, and some command overload fun - [`c88a6c0`](https://github.com/RPCS3/discord-bot/commit/c88a6c09e8ef0c671fbcca1657c6df732a75a799) update deps - [`5881d07`](https://github.com/RPCS3/discord-bot/commit/5881d0700ade9af2c6d634414312d3ce7dbfdf50) do ascii table formatter & also some black magic - [`56af1fc`](https://github.com/RPCS3/discord-bot/commit/56af1fc498cd9773f22270b3aa341328c0e1fdad) replace explicit table formatting with the new proper table formatter - [`9ea1786`](https://github.com/RPCS3/discord-bot/commit/9ea1786416890c91bb9c81fb76a36fdd1bfb4d87) members client language stats (not enabled, requires update to the client) ### 📊 Changes **16 files changed** (+373 additions, -81 deletions) <details> <summary>View changed files</summary> 📝 `Clients/CompatApiClient/Utils/Utils.cs` (+1 -6) 📝 `CompatBot/Commands/E3.cs` (+5 -3) 📝 `CompatBot/Commands/Events.cs` (+19 -5) 📝 `CompatBot/Commands/Invites.cs` (+12 -15) 📝 `CompatBot/Commands/Moderation.Audit.cs` (+46 -0) 📝 `CompatBot/Commands/Pr.cs` (+3 -3) 📝 `CompatBot/Commands/Sudo.Mod.cs` (+9 -5) 📝 `CompatBot/Commands/Warnings.ListGroup.cs` (+18 -23) 📝 `CompatBot/Commands/Warnings.cs` (+13 -14) 📝 `CompatBot/CompatBot.csproj` (+4 -4) ➕ `CompatBot/Utils/AsciiColumn.cs` (+18 -0) ➕ `CompatBot/Utils/AsciiTable.cs` (+164 -0) 📝 `CompatBot/Utils/StringUtils.cs` (+38 -1) 📝 `HomoglyphConverter/Normalizer.cs` (+2 -2) ➕ `Tests/StringUtilTests.cs` (+19 -0) 📝 `Tests/Tests.csproj` (+2 -0) </details> ### 📄 Description * fixed some typos * made some proper tables * implemented some black magic to properly pad most strings (i.e. Nicba) --- <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:33 -05:00
yindo closed this issue 2026-02-15 15:55:33 -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#290