Krzysztof Kowalski

Results 5 issues of Krzysztof Kowalski

### Description The [autocomplete docs](https://discord.com/developers/docs/interactions/application-commands#autocomplete) mention the following: > Your application will receive partial data for any existing user input, as long as that input passes client-side validation. For example,...

documentation needed
synced

Implemented the new `resume_gateway_url`. I added two unrelated to my changes TODOs in `DiscordSocketApiClient.ConnectAsync()` for logic that should probably be adjusted at some point, but I can remove them if...

Continued from #100 Because of the overall better performance and no unnecessary LINQ allocations System.Text.Json will replace Newtonsoft.Json in the future. Currently, Newtonsoft.Json is still the default and the serializer...

This allows users to use the new `IHostApplicationBuilder` pattern: ```cs var host = Host.CreateApplicationBuilder(args); host.Services.AddDiscordBot(new DiscordBotHostingContext { Token = host.Configuration["DISQORD_TOKEN"] }); host.Build().Run(); ```

Allows for dynamically setting/resetting the menu's timeout. Also publicly exposes `RefreshTimeout()`.