Paulo
384ad85c64
feature: Remove /users/@me call for socket and rework sharded client a bit ( #1860 )
* Remove /users/@me call for socket and rework sharded client a bit
* Remove override for login
4 years ago
Paulo
de7f9b5eff
fix: Add missing AddRef and related ( #1859 )
4 years ago
Paulo
8b29e0feb4
fix: MessageUpdated without author ( #1858 )
4 years ago
Paulo
d176fef5de
fix: Fire GuildMemberUpdated without cached user ( #1853 )
4 years ago
Paulo
a7ff6ce0ec
fix: Gateway events for DMs ( #1854 )
* Fix MessageUpdate when there's no channel cached
* Fix message events
* Fix cacheable type
* Fix examples
* Revert MessageUpdated
4 years ago
Paulo
dfaaa21e0e
misc: Internal change to GetOrCreateUser ( #1852 )
4 years ago
Evan Raffel
8ed8714375
fix: Grab correct Uses value for vanity urls ( #1832 )
4 years ago
Paulo
70aab6c4f6
fix: Remove obsolete methods and properties ( #1849 )
* Remove obsolete methods and properties
* Remove rest of GuildEmbed
* Remove TokenType.User
* Changes regarding the removal of the user tokentype
4 years ago
Paulo
ed8e57320a
feature: Remove obsolete sync voice regions methods and properties ( #1848 )
4 years ago
Paulo
7a201e9ff1
feature: Remove DM cache and fix references ( #1851 )
* Remove DM cache and fix references
* Move line back to where it was
4 years ago
Paulo
95bae786b8
fix: Create DM channel with id and author alone ( #1850 )
* Create DM channel with id and author alone
* Unneeded cast
4 years ago
Joe4evr
75b74e1a3f
Fix line about PriorityAttribute ( #21 )
Sorting with the highest number first is *de*scending order.
4 years ago
Tsathoggua of Nkai
76a878a3e1
Update EmbedBuilder.Overwrites.md ( #20 )
Missing "," in the EmbedBuilder code. Do I get the pedantic unlocked now?
4 years ago
Paulo
06a64b7877
feature: Bump API version to 9 ( #1847 )
* First changes to the config
* Lots of changes to fit the new version
* Remove PermissionTargetConverter
4 years ago
Paulo
690bc3ff9d
meta: Bump version to 3.0.0-dev ( #1846 )
4 years ago
Paulo
2ad0f0c2fe
meta: 2.4.0 ( #1845 )
4 years ago
Max
4b8d4441c5
feature: Add Discord Certified Moderator user flag ( #1844 )
This pull request adds the Discord Certified Moderator badge flag to the User Flags
PR in discord-api-docs: https://github.com/discord/discord-api-docs/pull/2946
4 years ago
moiph
8afef8245c
fix: Cached message emoji cleanup at MESSAGE_REACTION_REMOVE_EMOJI ( #1835 )
MESSAGE_REACTION_REMOVE_EMOJI events were triggering REST calls by invoking `RemoveAllReactionsForEmoteAsync` instead of `RemoveReactionsForEmote`, the latter being to handle cached message state cleanup.
4 years ago
Zack Broderson
4c9910cf71
(ifcbrk) feature: Add ability to add/remove roles by id ( #1757 )
* Scaffold Add/Remove roles by id. (needs impl & docs)
* Add docs
* Add implementation
* Expose Add/Remove role endpoints
* Formatting
* Fix wrong method call
4 years ago
Paulo
365a848f7a
(ifcbrk) feature: Add ModifyMessageAsync to IMessageChannel ( #1830 )
4 years ago
Playwo
5b244f215b
feature: Add methods to interact with reactions without a message object ( #1828 )
4 years ago
Adam Gauthier
c46daaad19
fix: Add type reader when entity type reader exists ( #1486 )
When adding a type reader that replaces a default type reader,
CommandService checks that it replaces a type in its default type
readers or entity type readers (IMessage, IChannel, IRole, IUser). For
entity types, it checks that the target type is the same as the entity
type or it implements its type reader. Adding a type reader for a
default type reader doesn't make much sense and the original intent was
likely to check that the target type is or implements the entity type.
4 years ago
NeKz
df23d57458
feature: Add GetEmotesAsync to IGuild ( #1781 )
4 years ago
Waterball
0715d7db96
Feature: Add missing property to MESSAGE_REACTION_ADD event ( #1801 )
* Add guild member property for reaction
* Use the guild member provided by the event when present
4 years ago
Waterball
6aff419edd
misc: Fix spelling in SnowflakeUtils.FromSnowflake ( #1800 )
```diff
--- geenrated
+++ generated
```
4 years ago
Yeba
25b04c4a97
misc: Remove URI check from EmbedBuilder ( #1778 )
`Uri.IsWellFormedUriString()` doesn't return the expected result for specific urls, removed until the DotNet team actually resolves it ( https://github.com/dotnet/runtime/issues/21626 )
4 years ago
Desmont
f67cd8ea55
feature: Webhook message edit & delete functionality ( #1753 )
* feature: Webhook message edit & delete functionality
* PR fixes: Rename Edit* to Modify*; Add more detailed docstrings; Small validation fixes
* Fix spacing around docstrings
* Make ModifyWebhookMessageParams.Content Optional<string>
* Change the Webhook message edit functionality to use a object delegate method instead providing the all parameters
Co-authored-by: Desmont <desmont@users.noreply.github.com>
4 years ago
Paulo
91a906397a
feature: Add stickers ( #1726 )
4 years ago
Paulo
c21cf48be3
meta: Bump version to 2.4.0-dev ( #1827 )
4 years ago
PoofImaFox
86dc89e821
Fix error in example. ( #1807 )
4 years ago
Paulo
452f2dca7c
Remove foxbot.me docs link
4 years ago
Paulo
1b64d19c84
meta: 2.3.1 ( #1795 )
4 years ago
Paulo
d41aeee4fe
fix: Audit log UserId can be null ( #1794 )
4 years ago
Alex Gravely
d2518db9a8
fix: Update Webhook ChannelId from model change ( #1791 )
4 years ago
Paulo
51b7afe2a6
misc: Add remark regarding CustomStatus as the activity ( #1774 )
* Throw exception with CustomStatus
* Add remark instead of exception
* Change wording
4 years ago
NeKz
f794163ffa
fix: NullReferenceException in pin/unpin audit logs ( #1780 )
4 years ago
NeKz
6ac5ea1cbb
fix: Add ChannelType property to ChannelInfo audit log ( #1786 )
4 years ago
Antonio Zdravkov Nikolov
0fc713a897
fix: Private methods aren't added as commands ( #1773 )
Fix breaking change introduced by #1521
4 years ago
Yeba
73e5cc2fbc
fix: Deadlock in DiscordShardedClient when Ready is never received ( #1761 )
* fixed a deadlock in DiscordShardedClient during a failed Identify due to InvalidSession
* fixed log
* Don't wait ready before releasing semaphore
Co-authored-by: Paulo <pnmanjos@hotmail.com>
4 years ago
Paulo
83e88f4fb9
meta: Bump version to 2.3.1-dev
4 years ago
Paulo
6bb54577ab
meta: 2.3.0
4 years ago
Paulo
2095701665
fix: Missing MessageReference when sending files
4 years ago
quinchs
8b25c9bbfb
feature: Add GuildUser IsPending property ( #1731 )
* Implemented Pending property
* Implemented changes
4 years ago
Paulo
225550dc5a
feature: Add MessageFlags and AllowedMentions to message modify ( #1724 )
* feature: Add MessageFlags and AllowedMentions to Modify
* Change exception message
4 years ago
Paulo
c683b2901d
feature: Add user public flags ( #1722 )
4 years ago
Paulo
6a62c4770c
feature: Add role tags ( #1721 )
4 years ago
Paulo
5934c7949a
misc: VoiceRegions and related changes ( #1720 )
4 years ago
Paulo
4a7f8fec93
fix: Move and fix internal AllowedMentions object ( #1727 )
4 years ago
Paulo
a4d32d366d
fix: IMessage.Embeds docs remarks
4 years ago
Still Hsu
accd3510df
docs: Add alternative documentation link
4 years ago