Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update dependency discord-speech-recognition to v3 #17

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

renovate[bot]
Copy link

@renovate renovate bot commented Sep 25, 2022

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
discord-speech-recognition (source) ^1.0.6 -> ^3.0.0 age adoption passing confidence

Warning

Some dependencies could not be looked up. Check the Dependency Dashboard for more information.


Release Notes

Rei-x/discord-speech-recognition (discord-speech-recognition)

v3.4.1

Compare Source

v3.4.0

Compare Source

Now you can modify speech options after addSpeechEvent!

Example here:

const speechOptions = addSpeechEvent(client, { lang: "pl-PL" });

speechOptions.lang = "en";

Also, now events are exported in SpeechEvents object.

v3.3.1

Compare Source

v3.3.0: Fix for short words, like 'hi'

Compare Source

Now you can specify minimal voice message duration in speechOptions, example:

addSpeechEvent(client, {
  minimalVoiceMessageDuration: 1,
});

v3.2.0

Compare Source

v3.1.2

Compare Source

v3.1.1

Compare Source

v3.1.0

Compare Source

New option in addSpeechEvent function that allows custom check if speech should be processed. Example usage:

addSpeechEvent(client, {
  shouldProcessSpeech: (user) => {
    if (user.username === "awesomeNickname") {
      return true;
    }
    return false;
  }
})

Speech will be processed only when someone with "awesomeNickname" said something

v3.0.2

Compare Source

Fix firing multiple speech events
Update simpleBot example

v3.0.1: Discord.js v14 support

Compare Source

Huge thanks to @​CodedMint and @​eliangerard for forking this repository and adding support for discord.js v14

v2.2.0

Compare Source

v2.1.1

Compare Source

v2.1.0

Compare Source

v2.0.2

Compare Source

v2.0.1

Compare Source

v2.0.0: - official discord.js v13 support

Compare Source

What's Changed

New Contributors

Full Changelog: Rei-x/discord-speech-recognition@v2.0.0-beta.0...v2.0.0


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Mend Renovate. View repository job log here.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

0 participants