-
Notifications
You must be signed in to change notification settings - Fork 2.9k
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
fix(deps): update dependency @nextui-org/react to v1.0.0-beta.9-dbg2 #1176
Conversation
ba31e0e
to
740ba67
Compare
740ba67
to
6bb4df1
Compare
Hello, for Discord-MusicBot/blob/master/commands/disconnect.js const { MessageEmbed } = require("discord.js");
module.exports = {
name: "disconnect",
description: "Stop the music and leave the voice channel",
usage: "",
permissions: {
channel: ["VIEW_CHANNEL", "SEND_MESSAGES", "EMBED_LINKS"],
member: [],
},
aliases: ["leave", "exit", "quit", "dc", "stop"],
run: async (client, message, args, { GuildDB }) => {
let player = await client.Manager.get(message.guild.id);
if (!message.member.voice.channel)
return client.sendTime(
message.channel,
"❌ | **You must be in a voice channel use this command**"
);
if (!player)
return client.sendTime(
message.channel,
"❌ | **Nothing is playing right now...**"
);
await client.sendTime(message.channel, ":notes: | **Disconnected!**");
await message.react("✅");
player.destroy();
},
SlashCommand: {
run: async (client, interaction, args, { GuildDB }) => {
const guild = client.guilds.cache.get(interaction.guild_id);
const member = guild.members.cache.get(interaction.member.user.id);
if (!member.voice.channel)
return client.sendTime(
interaction,
"❌ | **You must be in a voice channel to use this command.**"
);
if (
guild.me.voice.channel &&
!guild.me.voice.channel.equals(member.voice.channel)
)
return client.sendTime(
interaction,
`❌ | **You must be in ${guild.me.voice.channel} to use this command.**`
);
let player = await client.Manager.get(interaction.guild_id);
if (!player)
return client.sendTime(
interaction,
"❌ | **Nothing is playing right now...**"
);
player.destroy();
client.sendTime(interaction, ":notes: | **Disconnected!**");
},
},
}; |
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions. |
Renovate Ignore NotificationBecause you closed this PR without merging, Renovate will ignore this update ( If you accidentally closed this PR, or if you changed your mind: rename this PR to get a fresh replacement PR. |
This PR contains the following updates:
1.0.0-beta.9
->1.0.0-beta.9-dbg2
Release Notes
nextui-org/nextui (@nextui-org/react)
v1.0.0-beta.9-dbg2
Compare Source
v1.0.0-beta.9-dbg1
Compare Source
v1.0.0-beta.11-dbg1
Compare Source
v1.0.0-beta.13
Compare Source
v1.0.0-beta.12
Compare Source
What's Changed
🐛 Fixes
Closes #649 PR: #965 (Dropdown trigger issue on mobile 🚨)
Closes #969 PR: #965 (Dropdown trigger issue on mobile 🚨)
Closes #920 PR: #923
Closes #958 PR: #961
🚀 Features
PR: #934 Focus indicator added to shadow buttons
⚙️ Refactors
PR: #966
New Contributors
Full Changelog: heroui-inc/heroui@v1.0.0-beta.11...v1.0.0-beta.12
v1.0.0-beta.11
Compare Source
What's Changed
🐛 Fixes
<Input/>
autofill highlighting. by @psyirius in https://github.com/nextui-org/nextui/pull/678onClose
andonOpenChange
events by @tianenpang in https://github.com/nextui-org/nextui/pull/946⚙️ Refactors
📚 Docs
isExternal
in link component by @yuriwithowsky in https://github.com/nextui-org/nextui/pull/801📦 Repo
New Contributors
Full Changelog: heroui-inc/heroui@v1.0.0-beta.10...v1.0.0-beta.11
v1.0.0-beta.10
Compare Source
What's Changed
🚀 Features
sizes
andfontSizes
#558 by @jrgarciadev🐛 Fixes
⚙️ Refactors
📚 Docs
📦 Repo
🚀 New behavior
Typography units changes:
2xl...9xl
,min: "min-content"
,max: "max-content"
,fit: "fit-content"
,screen: "100vw"
,full: "100%"
Text
component now supports any value fromfontSizes
(e.g. "3xl") theme in addition tonumber
(e.g. 14) andstring
(e.g. "20px")e.g.
Breakpoints Media
e.g.
Dropdown API
disableTriggerPressedAnimation
prop added to theDropdown
- Whether the trigger should show a pressed animation when the menu is open.showFullDescription
prop added to theDropdown.Item
- Whether the item description should be truncated or not.Text API
hideIn
prop added - Whether the Text should be hidden from selected breakpoint.showIn
prop added - Whether the Text should be visible only from the selected breakpoint.💣 Breaking changes:
Link API
icon
isExternal
The margin of some HTML primitives has been removed from the
CssBaseline
Typography units changes:
fontSizes
were renamed fromxl2...xl9
to2xl...9xl
lineHeights
were renamed fromxl2...xl9
to2xl...9xl
New Contributors
Huge thanks to all contributors 🙏🏻
Full Changelog: heroui-inc/heroui@v1.0.0-beta.9...v1.0.0-beta.10
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.
This PR has been generated by Mend Renovate. View repository job log here.