Skip to content

⬆️ Bump discord-player from 3.4.0 to 5.4.0#68

Open
dependabot[bot] wants to merge 1 commit into
developfrom
dependabot/npm_and_yarn/develop/discord-player-5.4.0
Open

⬆️ Bump discord-player from 3.4.0 to 5.4.0#68
dependabot[bot] wants to merge 1 commit into
developfrom
dependabot/npm_and_yarn/develop/discord-player-5.4.0

Conversation

@dependabot
Copy link
Copy Markdown

@dependabot dependabot Bot commented on behalf of github Jan 16, 2023

Bumps discord-player from 3.4.0 to 5.4.0.

Release notes

Sourced from discord-player's releases.

5.4.0

What's Changed

New Equalizer API

Equalizer can be accessed with queue.connection.equalizer which may be EqualizerStream instance or null. Just like inline volume, equalizer can be disabled by passing disableEqualizer: true to createQueue.

if (!queue.isEqualizerEnabled()) return message.reply("Equalizer is not available");
const bands = [
{ band: 0, gain: 0.25 },
{ band: 1, gain: 0.25 },
{ band: 2, gain: 0.25 },
];
// apply config
queue.setEqualizer(bands);
// toggle equalizer on/off
queue.toggleEqualizer();
queue.enableEqualizer();
queue.disableEqualizer();
// get equalizer state
queue.getEqualizer();
// Pass nothing or pass an empty array to reset equalizer
queue.setEqualizer();
queue.setEqualizer([]);
// set specific band
queue.setEqualizerBand(band, gain);
// get specific band
queue.getEqualizerBand(band);

Note: Equalizer runs before volume transformer and after ffmpeg and thus it may change ffmpeg filters behavior.

New Contributors

... (truncated)

Commits

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [discord-player](https://github.com/Androz2091/discord-player) from 3.4.0 to 5.4.0.
- [Release notes](https://github.com/Androz2091/discord-player/releases)
- [Commits](Androz2091/discord-player@v3.4.0...v5.4.0)

---
updated-dependencies:
- dependency-name: discord-player
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot @github
Copy link
Copy Markdown
Author

dependabot Bot commented on behalf of github Jan 16, 2023

Dependabot tried to add @Androz2091 as a reviewer to this PR, but received the following error from GitHub:

POST https://api.github.com/repos/ChanifRusydi/AtlantaBot/pulls/68/requested_reviewers: 422 - Reviews may only be requested from collaborators. One or more of the users or teams you specified is not a collaborator of the ChanifRusydi/AtlantaBot repository. // See: https://docs.github.com/rest/reference/pulls#request-reviewers-for-a-pull-request

@dependabot dependabot Bot added the dependencies Pull requests that update a dependency file label Jan 16, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants