Skip to content

Releases: acerolaorionheart1/eris-addons

1.1.0

19 Sep 14:02
Compare
Choose a tag to compare

Changes

  • Only a few aesthetic changes have been made

1.0.3

01 Aug 23:49
Compare
Choose a tag to compare

Addtions

  • Created the Embed#spliceFields() function
  • Create the Embed#replaceField() function
  • Created the Button#build() function
  • Create the SelectMenu#build() function

Changes

Send a message with a button

- message.channel.createMessage({
      content: 'Click this',
      components: [button]
   });
+ message.channel.createMessage(button.build('Click this!'));

Send a message with a menu

- message.channel.createMessage({
      content: 'Click this',
      components: [menu]
   });
+ message.channel.createMessage(menu.build('Click this!'));

Button styles

  • BLUE => PRIMARY
  • GRAY => SECONDARY
  • GREEN => SUCCESS
  • RED => DANGER

1.0.2

01 Aug 21:53
Compare
Choose a tag to compare

initial release