[PR #10] [CLOSED] Develop #10

Closed
opened 2026-09-04 00:46:37 +02:00 by Stone_Red · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/Stone-Red-Code/DiscordCLI/pull/10
Author: @Stone-Red-Code
Created: 8/6/2021
Status: Closed

Base: mainHead: develop


📝 Commits (10+)

  • 45d5b51 Cleanup
  • c63a480 Added OnException Handler to the updater
  • d162cc0 Updated AlwaysUpToDate to 1.0.04
  • a160991 Fixed mention higlighting and channels are now correctly sorted by chategory.
  • 3d8d1d4 Multiple bug fixes
  • db75f85 Make userinfo command more reliable and some bug fixes
  • 49d6234 Auto updater cross platform support test1
  • 6186779 Auto updater cross platform support test2
  • c7e4e89 Fixed version numbers in update info files
  • 5bf354a Fixed update URL in update info path

📊 Changes

164 files changed (+12395 additions, -293 deletions)

View changed files

📝 .gitignore (+365 -1)
📝 src/.vs/DiscordCLI/DesignTimeBuild/.dtbcache.v2 (+0 -0)
📝 src/.vs/DiscordCLI/v16/.suo (+0 -0)
src/.vs/DiscordCLI/v17/.suo (+0 -0)
📝 src/DiscordCLI/Commands.cs (+57 -31)
📝 src/DiscordCLI/CommandsManager.cs (+23 -10)
📝 src/DiscordCLI/DiscordCLI.csproj (+4 -4)
📝 src/DiscordCLI/DiscordCLI.csproj.user (+1 -1)
📝 src/DiscordCLI/InputManager.cs (+8 -6)
📝 src/DiscordCLI/OutputManager.cs (+64 -71)
src/DiscordCLI/PlatformType.cs (+15 -0)
📝 src/DiscordCLI/Program.cs (+47 -10)
src/DiscordCLI/Properties/PublishProfiles/Linux-ARM.pubxml (+16 -0)
📝 src/DiscordCLI/Properties/PublishProfiles/Linux-ARM.pubxml.user (+1 -1)
src/DiscordCLI/Properties/PublishProfiles/Linux-x64.pubxml (+16 -0)
src/DiscordCLI/Properties/PublishProfiles/Linux-x64.pubxml.user (+9 -0)
📝 src/DiscordCLI/Properties/PublishProfiles/Windows.pubxml (+3 -1)
📝 src/DiscordCLI/Properties/PublishProfiles/Windows.pubxml.user (+1 -1)
src/DiscordCLI/bin/Debug/net5.0/AlwaysUpToDate.dll (+0 -0)
src/DiscordCLI/bin/Debug/net5.0/AlwaysUpToDate.dll_OLD_ (+0 -0)

...and 80 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/Stone-Red-Code/DiscordCLI/pull/10 **Author:** [@Stone-Red-Code](https://github.com/Stone-Red-Code) **Created:** 8/6/2021 **Status:** ❌ Closed **Base:** `main` ← **Head:** `develop` --- ### 📝 Commits (10+) - [`45d5b51`](https://github.com/Stone-Red-Code/DiscordCLI/commit/45d5b51bab91a4a96829adba743be616b4b6420b) Cleanup - [`c63a480`](https://github.com/Stone-Red-Code/DiscordCLI/commit/c63a480fe52be8abce675a77011b462c57649179) Added OnException Handler to the updater - [`d162cc0`](https://github.com/Stone-Red-Code/DiscordCLI/commit/d162cc0056cd6e037da79ee813bcd321f04274f8) Updated AlwaysUpToDate to 1.0.04 - [`a160991`](https://github.com/Stone-Red-Code/DiscordCLI/commit/a1609916c2d2f519003f15d7a16f8874a9fef8b0) Fixed mention higlighting and channels are now correctly sorted by chategory. - [`3d8d1d4`](https://github.com/Stone-Red-Code/DiscordCLI/commit/3d8d1d4709c9366b34c3010e5112bca0769fcb1c) Multiple bug fixes - [`db75f85`](https://github.com/Stone-Red-Code/DiscordCLI/commit/db75f856ffec4e6ffd71a3d3b29ddcafdb249dfc) Make `userinfo` command more reliable and some bug fixes - [`49d6234`](https://github.com/Stone-Red-Code/DiscordCLI/commit/49d62348c8bea0d2883db0c6a0a6214b13b7ed2e) Auto updater cross platform support test1 - [`6186779`](https://github.com/Stone-Red-Code/DiscordCLI/commit/61867791154db47ecf4fc67b4fbfe977a495cdf4) Auto updater cross platform support test2 - [`c7e4e89`](https://github.com/Stone-Red-Code/DiscordCLI/commit/c7e4e89e177b599c47bcf15029703fdea8f006d7) Fixed version numbers in update info files - [`5bf354a`](https://github.com/Stone-Red-Code/DiscordCLI/commit/5bf354a22a20e1afc82b19bd3f70e7e951ac6a11) Fixed update URL in update info path ### 📊 Changes **164 files changed** (+12395 additions, -293 deletions) <details> <summary>View changed files</summary> 📝 `.gitignore` (+365 -1) 📝 `src/.vs/DiscordCLI/DesignTimeBuild/.dtbcache.v2` (+0 -0) 📝 `src/.vs/DiscordCLI/v16/.suo` (+0 -0) ➕ `src/.vs/DiscordCLI/v17/.suo` (+0 -0) 📝 `src/DiscordCLI/Commands.cs` (+57 -31) 📝 `src/DiscordCLI/CommandsManager.cs` (+23 -10) 📝 `src/DiscordCLI/DiscordCLI.csproj` (+4 -4) 📝 `src/DiscordCLI/DiscordCLI.csproj.user` (+1 -1) 📝 `src/DiscordCLI/InputManager.cs` (+8 -6) 📝 `src/DiscordCLI/OutputManager.cs` (+64 -71) ➕ `src/DiscordCLI/PlatformType.cs` (+15 -0) 📝 `src/DiscordCLI/Program.cs` (+47 -10) ➕ `src/DiscordCLI/Properties/PublishProfiles/Linux-ARM.pubxml` (+16 -0) 📝 `src/DiscordCLI/Properties/PublishProfiles/Linux-ARM.pubxml.user` (+1 -1) ➕ `src/DiscordCLI/Properties/PublishProfiles/Linux-x64.pubxml` (+16 -0) ➕ `src/DiscordCLI/Properties/PublishProfiles/Linux-x64.pubxml.user` (+9 -0) 📝 `src/DiscordCLI/Properties/PublishProfiles/Windows.pubxml` (+3 -1) 📝 `src/DiscordCLI/Properties/PublishProfiles/Windows.pubxml.user` (+1 -1) ➖ `src/DiscordCLI/bin/Debug/net5.0/AlwaysUpToDate.dll` (+0 -0) ➖ `src/DiscordCLI/bin/Debug/net5.0/AlwaysUpToDate.dll_OLD_` (+0 -0) _...and 80 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>
Stone_Red added the pull-request label 2026-09-04 00:46:37 +02:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: Stone_Red/DiscordCLI#10