Discord.Net-Anarchy 1.8.0

dotnet add package Discord.Net-Anarchy --version 1.8.0
NuGet\Install-Package Discord.Net-Anarchy -Version 1.8.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Discord.Net-Anarchy" Version="1.8.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Discord.Net-Anarchy --version 1.8.0
#r "nuget: Discord.Net-Anarchy, 1.8.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Discord.Net-Anarchy as a Cake Addin
#addin nuget:?package=Discord.Net-Anarchy&version=1.8.0

// Install Discord.Net-Anarchy as a Cake Tool
#tool nuget:?package=Discord.Net-Anarchy&version=1.8.0

This is basically Discord .Net but I added some more features (back) like user login, some stuff in Group and DM-Channels, etc. All the changes that i made are listed below

user

  • SocketSelfUser.cs:59 → added upload limit method
  • RestSelfUser.cs:28 → added upload limit method
  • ISelfUser.cs:61 → added upload limit method
  • UserHelper.cs:113 → added upload limit method

guild

  • SocketGuild.cs:687 → Made User nullable in GetBansAsync
  • SocketGuild.cs:1603 → removed check if there are stickers in GetStickersAsync()
  • RestGuild.cs:367 → Made User nullable in GetBansAsync
  • GuildHelper.cs:447 → Changed max of 5 to 20 in forum tags
  • GuildHelper.cs:1200 → fixed nullreference in Welcomescreen get
  • GuildHelper.cs:1230 → fixed nullreference in Welcomescreen get

text channel

  • SocketTextChannel.cs:138 → Added GetArchivedThreadsAsync method
  • SocketTextChannel.cs:145 → Added GetAllThreadChannels method which gets both active an archived thread channels
  • SocketTextChannel.cs:409 → Implemented GetArchivedThreadsAsync method
  • RestTextChannel.cs:296 → Added GetArchivedThreadsAsync method
  • RestTextChannel.cs:343 → Implemented GetArchivedThreadsAsync method
  • ITextChannel.cs:160 → Added GetArchivedThreadsAsync method
  • ChannelHelper.cs:413 → fixed user problem with upload (aka added isbot check)

thread channel

  • ThreadHelper.cs:84 → added GetArchivedThreads method

forum channel

  • SocketForumChannel.cs:17 → added DebuggerDisplay attribute
  • SocketForumChannel.cs:100 → made CategoryId nullable
  • SocketForumChannel.cs:150 → Added GetArchivedThreadsAsync method
  • SocketForumChannel.cs:170 → Added GetAllPostsAsync method which tries to get both active and archived posts from Forum
  • SocketForumChannel.cs:176 → added DebuggerDisplay
  • SocketForumChannel.cs:178 → added clone
  • SocketForumChannel.cs:212 → Implemented GetArchivedThreadsAsync method
  • SocketForumChannel.cs:16 → added DebuggerDisplay attribute
  • RestForumChannel.cs:94 → made CategoryId nullable
  • RestForumChannel.cs:148 → Implemented GetArchivedThreadsAsync method
  • SocketForumChannel.cs:167 → Added GetAllPostsAsync method which tries to get both active and archived posts from Forum
  • SocketForumChannel.cs:173 → added DebuggerDisplay
  • RestForumChannel.cs:191 → Added GetArchivedThreadsAsync method
  • IForumChannel.cs:247 → added GetArchivedThreadsAsync method
  • ForumTag.cs:45 → Added .Build() method for easier access

group channel

  • SocketGroupChannel.cs:27 → renamed iconId to ownerId
  • SocketGroupChannel.cs:30 → Created public IconId prop
  • SocketGroupChannel.cs:44 → Added Owner Property
  • SocketGroupChannel.cs:49 → fixed Users get
  • SocketGroupChannel.cs:57 → fixed Recipients get
  • SocketGroupChannel.cs:79 → fixed IconId
  • SocketGroupChannel.cs:81 → assigned ownerId field
  • SocketGroupChannel.cs:106 → Added GetIconUrl
  • SocketGroupChannel.cs:341 → Added implementations of Users
  • SocketGroupChannel.cs:343 → Added implementations of CurrentUser
  • RestGroupChannel.cs:20 → renamed iconId to ownerId
  • RestGroupChannel.cs:23 → Created public IconId prop
  • RestGroupChannel.cs:30 → Added Owner Property
  • RestGroupChannel.cs:32 → fixed Users get
  • RestGroupChannel.cs:37 → fixed Recipients get
  • RestGroupChannel.cs:54 → fixed IconId
  • RestGroupChannel.cs:57 → assigned ownerId field
  • RestGroupChannel.cs:88 → Added GetIconUrl
  • IGroupChannel.cs:22 → added Owner
  • IGroupChannel.cs:28 → added GetIconUrl()

dm channel

  • SocketDMChannel.cs:260 → Added implementations of Users
  • SocketDMChannel.cs:262 → Added implementations of CurrentUser
  • ISocketPrivateChannel.cs:12 → Added Users
  • ISocketPrivateChannel.cs:14 → Added CurrentUser

discord client

  • DiscordSocketClient.cs:251 → added validation to check if its a user or bot token
  • DiscordSocketClient.cs:970 → data.Application is null for users
  • DiscordShardedClient.cs:2 → added using Discord.Net.Queue
  • DiscordShardedClient.cs:298 → fixed null exception if sticker is from an unknown guild
  • DiscordShardedClient.cs:434 → removed client.SentRequest (added further down)
  • DiscordShardedClient.cs:528 → added before and after request sent events (if the BeforeRequestSent func is set it will override the ones configured at the base idk if thats correct tho, if not pls text me and tell me how to solve that)
  • DiscordShardedClient.cs:649 → added global before and after request sent events for the sharded client to receive all of them from the shards
  • DiscordWebhookClient.cs:9 → added using Discord.Net.Queue
  • DiscordWebhookClient.cs:30 → added before and after request sent events + a func to potentially await the request thats being sent
  • DiscordWebhookClient.cs:109 → implemented BeforeSentRequest event
  • DiscordWebhookClient.cs:117 → implemented AfterSentRequest event and fixed params
  • BaseDiscordClient.cs:2 → added using Discord.Net.Queue
  • BaseDiscordClient.cs:24 → added before and after request sent events + a func to potentially await the request thats being sent
  • BaseDiscordClient.cs:69 → implemented BeforeSentRequest event
  • BaseDiscordClient.cs:77 → implemented AfterSentRequest event and fixed params
  • DiscordRestApiClient.cs:33 → adjusted the sentRequestEvent params
  • DiscordRestApiClient.cs:36 → added BeforeRequestSent event
  • DiscordRestApiClient.cs:51 → add setter for AuthTokenType and Call SetBaseUrl() in there
  • DiscordRestApiClient.cs:101 → Add User and webhook to option and just return token without anything else
  • DiscordRestApiClient.cs:309 → fire the BeforeRequestSent event
  • DiscordRestApiClient.cs:316 → adjusted the sentRequestEvent params

messages

  • IMessage.cs:218 → moved Poll property from IUserMessage.cs:39 to there cus idk why its only in IUserMessage tbh
  • RestMessage.cs: 94 → added Poll property (also changed it to protected set)
  • SocketMessage.cs: 82 → added Poll property (also changed it to protected set)

token

  • TokenType.cs:23 → Added user token type
  • TokenUtils.cs:160 → added user token to switch to skip validation

miscellaneous

  • SocketCustomSticker.cs:50 → added update override so i can actually have the author of the sticker
  • CDN.cs:243 → added gif option in sticker
  • CDN.cs:251 → fixed nullreference exception with imageId
  • StickerFormatType.cs:27 → added type gif
  • FileAttachment.cs:66 → added new constrcutor that instead of taking a stream takes a byte[] of data
  • SocketInteractionContext.cs:16,49,92 → Replaced DiscordSocketClient with BaseSocketClient
  • RequestQueue.cs:73 → added a preemtive check if the canceltoken has been cancelled
  • AsyncEvent.cs:75 → added 2 new invoke methods
  • InteractionService.cs:781 → added SearchModalCommand method

Pull requests

  • none

own additions

  • DiscordRestClient.cs:309 → added RefreshUrlAsync and RefreshUrlsAsync method
  • DiscordRestApiClient.cs:2595 → added RefreshUrlsAsync method
  • RefreshedUrl.cs → class added in Discord.Net.Rest/API/Common for the things above

helpers

kyle

  • Subscribe method to get all events for a guild that may not fire events such as messages
  • Usage:
  • DiscordSocketClient client = new DiscordSocketClient();
  • await client.SubscribeToGuildEvents(guild-id);
  • Changes:
  • added ClientExtensions.cs class in Discord.WebSocket
  • GatewayOpCode.cs:32 → added GuildSubscription enum

Cant wait for discord .Net to finally make a new release of feature x? Add them here yourself and make a PR!

Product Compatible and additional computed target framework versions.
.NET net5.0 is compatible.  net5.0-windows was computed.  net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 is compatible. 
.NET Framework net461 is compatible.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 is compatible.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.8.0 74 6/7/2024
1.7.2 212 2/23/2024
1.7.1 202 1/26/2024
1.7.0 440 11/20/2023
1.6.1 606 7/6/2023
1.6.0 481 7/6/2023
1.5.5 504 5/19/2023
1.5.4 512 4/28/2023
1.5.3 534 4/27/2023
1.5.2 494 4/26/2023
1.5.1 549 4/17/2023
1.5.0 578 4/3/2023
1.4.8 597 3/15/2023
1.4.7 614 3/9/2023
1.4.6 611 3/5/2023
1.4.5 590 3/5/2023
1.4.4 606 2/13/2023
1.4.3 672 1/12/2023
1.4.2 679 1/11/2023
1.4.1 641 1/11/2023
1.4.0 678 1/6/2023
1.3.3 837 10/27/2022
1.3.2 783 10/26/2022
1.3.1 795 10/25/2022
1.2.12 829 10/24/2022
1.2.11 828 10/19/2022
1.2.10 821 10/19/2022
1.2.9 882 8/9/2022
1.2.8 872 8/3/2022
1.2.7 890 7/29/2022
1.2.6 868 7/26/2022
1.2.5 872 7/25/2022
1.2.4 871 7/25/2022
1.2.3 868 7/20/2022
1.2.2 899 7/7/2022
1.2.1 927 6/23/2022
1.2.0 834 6/23/2022
1.1.6 911 4/25/2022
1.1.4 844 4/25/2022
1.1.3 888 4/25/2022
1.1.2 888 4/24/2022
1.1.1 922 4/11/2022
1.1.0 938 4/8/2022
1.0.6 930 4/6/2022
1.0.5 919 4/6/2022
1.0.4 973 4/5/2022