Skip to content

Commit

Permalink
release: v3.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
aiko-chan-ai committed Jul 24, 2024
1 parent f96c623 commit 2efb496
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 6 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

## About

<strong>Welcome to `discord.js-selfbot-v13@v3.2`, based on `[email protected]`</strong>
<strong>Welcome to `discord.js-selfbot-v13@v3.3`, based on `[email protected]`</strong>

- discord.js-selfbot-v13 is a [Node.js](https://nodejs.org) module that allows user accounts to interact with the Discord API v9.

Expand Down Expand Up @@ -38,7 +38,7 @@
- [X] Interactions: Slash Commands, Buttons, Menu, Modal
- [X] Captcha Handler (2captcha, capmonster, custom)
- [X] Documentation
- [x] Voice & [Video stream](https://github.com/aiko-chan-ai/discord.js-selfbot-v13/issues/293)
- [x] Voice & Video stream
- [ ] Everything

## Installation
Expand Down
2 changes: 1 addition & 1 deletion docs/main.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "discord.js-selfbot-v13",
"version": "3.2.2",
"version": "3.3.0",
"description": "A unofficial discord.js fork for creating selfbots [Based on discord.js v13]",
"main": "./src/index.js",
"types": "./typings/index.d.ts",
Expand Down
1 change: 0 additions & 1 deletion src/client/voice/dispatcher/VideoDispatcher.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ const BaseDispatcher = require('./BaseDispatcher');
* const dispatcher = connection.playVideo('/home/hydrabolt/video.mp4', { fps: 60, preset: 'ultrafast' });
* });
* ```
* @implements {VolumeInterface}
* @extends {BaseDispatcher}
*/
class VideoDispatcher extends BaseDispatcher {
Expand Down
5 changes: 4 additions & 1 deletion typings/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -884,7 +884,10 @@ export class ClientVoiceManager {
public adapters: Map<Snowflake, InternalDiscordGatewayAdapterLibraryMethods>;
public connections: Collection<Snowflake, VoiceConnection>;

public joinChannel(channel: VoiceChannel | StageChannel | DMChannel | GroupDMChannel, config?: JoinChannelConfig): Promise<VoiceConnection>;
public joinChannel(
channel: VoiceChannel | StageChannel | DMChannel | GroupDMChannel,
config?: JoinChannelConfig,
): Promise<VoiceConnection>;
}

export interface JoinChannelConfig {
Expand Down

0 comments on commit 2efb496

Please sign in to comment.