Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
LucasB25 committed Sep 22, 2024
1 parent 34d9baa commit 35eb605
Show file tree
Hide file tree
Showing 7 changed files with 133 additions and 5 deletions.
69 changes: 69 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,69 @@
name: Bug Report
description: Report incorrect or unexpected behavior.
title: "[Bug]: "
labels: ["bug"]
assignees:
- appujet
body:
- type: markdown
attributes:
value: "## 🐞 Bug Report\n\nPlease fill out the information below to help us resolve the issue as quickly as possible."

- type: textarea
id: description
attributes:
label: "Bug description"
description: "Provide a clear and concise description of the bug."
placeholder: "Describe the issue..."
validations:
required: true

- type: textarea
id: reproduce-step
attributes:
label: "Steps to reproduce"
description: "Detail the steps to reproduce the bug. Include any specific setup information that might be important."
placeholder: "Step 1: ...\nStep 2: ...\nStep 3: ..."
validations:
required: true

- type: input
id: os
attributes:
label: "Operating System"
description: "Which operating system and version are you using?"
placeholder: "e.g., Windows 10, macOS 13, Ubuntu 20.04"
validations:
required: true

- type: input
id: nodejs-version
attributes:
label: "Node.js version"
description: "Specify the version of Node.js that you are using."
placeholder: "e.g., 14.17.0"
validations:
required: true

- type: input
id: app-version
attributes:
label: "Application/Library version"
description: "Specify the version of the application or library where the bug occurred."
placeholder: "e.g., v1.2.3"
validations:
required: true

- type: textarea
id: error-logs
attributes:
label: "Error logs or screenshots"
description: "Include relevant error logs or screenshots that might help in diagnosing the issue."
placeholder: "<!-- Paste your logs here -->"

- type: textarea
id: additional-info
attributes:
label: "Additional context"
description: "Provide any other context or information that might be helpful."
placeholder: "Any additional details..."
64 changes: 64 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
name: "Feature Request"
description: "Propose a new idea or improvement for this repository"
title: "[Feature Request]: "
labels: ["enhancement", "feature-request"]
assignees:
- appujet
body:
- type: markdown
attributes:
value: |
## Feature Request
Please provide a detailed description of the feature you're suggesting. If applicable, describe any related problem and the potential benefits of implementing this feature.
- type: input
id: title
attributes:
label: "Feature Title"
description: "Provide a brief title for your feature request"
placeholder: "Enter a concise title"
validations:
required: true
- type: textarea
id: problem_description
attributes:
label: "Is your feature request related to a problem?"
description: "Describe the problem you're trying to solve, if applicable"
placeholder: "Describe the problem"
validations:
required: false
- type: textarea
id: suggestion_description
attributes:
label: "Feature Description"
description: "Provide a detailed description of your idea. Include examples, screenshots, or mockups if possible."
placeholder: "Explain your idea in detail"
validations:
required: true
- type: dropdown
id: priority
attributes:
label: "Priority Level"
description: "Indicate how important this feature is"
options:
- "Low"
- "Medium"
- "High"
validations:
required: true
- type: textarea
id: alternatives
attributes:
label: "Alternatives Considered"
description: "Have you considered any alternative solutions? Please describe them here."
placeholder: "Mention any alternative approaches"
validations:
required: false
- type: textarea
id: additional_context
attributes:
label: "Additional Context"
description: "Add any other context or screenshots that could help explain your feature request."
placeholder: "Additional context, links, or references"
validations:
required: false
1 change: 0 additions & 1 deletion src/commands/config/247.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,6 @@ export default class _247 extends Command {
textChannelId: ctx.channel.id,
selfMute: false,
selfDeaf: true,

vcRegion: member.voice.channel.rtcRegion,
});
}
Expand Down
1 change: 0 additions & 1 deletion src/commands/music/Join.ts
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,6 @@ export default class Join extends Command {
textChannelId: ctx.channel.id,
selfMute: false,
selfDeaf: true,

vcRegion: memberVoiceChannel.rtcRegion,
});
if (!player.connected) await player.connect();
Expand Down
1 change: 0 additions & 1 deletion src/commands/music/PlayNext.ts
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,6 @@ export default class PlayNext extends Command {
textChannelId: ctx.channel.id,
selfMute: false,
selfDeaf: true,

vcRegion: memberVoiceChannel.rtcRegion,
});
if (!player.connected) await player.connect();
Expand Down
1 change: 0 additions & 1 deletion src/commands/music/Search.ts
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,6 @@ export default class Search extends Command {
textChannelId: ctx.channel.id,
selfMute: false,
selfDeaf: true,

vcRegion: memberVoiceChannel.rtcRegion,
});
if (!player.connected) await player.connect();
Expand Down
1 change: 0 additions & 1 deletion src/commands/playlist/Load.ts
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,6 @@ export default class LoadPlaylist extends Command {
textChannelId: ctx.channel.id,
selfMute: false,
selfDeaf: true,

vcRegion: member.voice.channel.rtcRegion,
});
if (!player.connected) await player.connect();
Expand Down

0 comments on commit 35eb605

Please sign in to comment.