Releases: skyra-project/discord-components
Releases · skyra-project/discord-components
v3.4.1
v3.4.0
v3.3.1
v3.3.0
v3.2.0
v3.1.1
v3.1.0
v3.0.1
v3.0.0
3.0.0 (2022-01-08)
Bug Fixes
- fixed embed description and footer disappearing when dynamically editing title (bdec29c)
BREAKING CHANGES
discord-embed
no longer takes the propertiesfooter-image
andtimestamp
, they are moved to thediscord-embed-footer
component.- The embed description now has to go into its own component,
discord-embed-description
<discord-embed slot="embeds">
- Custom emojis in the embed description:
+ <discord-embed-description slot="description">Custom emojis in the embed description:</discord-embed-description>
</discord-embed>
- The embed footer now has to go into its own component,
discord-embed-footer
- <discord-embed slot="embeds" footer-image="/static/sapphire.png" timestamp="03/20/2021">
+ <discord-embed slot="embeds">
{ /* other embed components */ }
- <span slot="footer">Open source libraries to aid in the creation of Discord bots</span>
+ <discord-embed-footer slot="footer" footer-image="/static/sapphire.png" timestamp="03/20/2021">
+ Open source libraries to aid in the creation of Discord bots
+ </discord-embed-footer>
</discord-embed>