release: v3.3.0

This commit is contained in:
Elysia
2024-07-24 20:22:47 +07:00
parent f96c623b04
commit 2efb496bf7
5 changed files with 8 additions and 6 deletions

View File

@@ -7,7 +7,7 @@
## About ## About
<strong>Welcome to `discord.js-selfbot-v13@v3.2`, based on `discord.js@13.17`</strong> <strong>Welcome to `discord.js-selfbot-v13@v3.3`, based on `discord.js@13.17`</strong>
- discord.js-selfbot-v13 is a [Node.js](https://nodejs.org) module that allows user accounts to interact with the Discord API v9. - discord.js-selfbot-v13 is a [Node.js](https://nodejs.org) module that allows user accounts to interact with the Discord API v9.
@@ -38,7 +38,7 @@
- [X] Interactions: Slash Commands, Buttons, Menu, Modal - [X] Interactions: Slash Commands, Buttons, Menu, Modal
- [X] Captcha Handler (2captcha, capmonster, custom) - [X] Captcha Handler (2captcha, capmonster, custom)
- [X] Documentation - [X] Documentation
- [x] Voice & [Video stream](https://github.com/aiko-chan-ai/discord.js-selfbot-v13/issues/293) - [x] Voice & Video stream
- [ ] Everything - [ ] Everything
## Installation ## Installation

File diff suppressed because one or more lines are too long

View File

@@ -1,6 +1,6 @@
{ {
"name": "discord.js-selfbot-v13", "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]", "description": "A unofficial discord.js fork for creating selfbots [Based on discord.js v13]",
"main": "./src/index.js", "main": "./src/index.js",
"types": "./typings/index.d.ts", "types": "./typings/index.d.ts",

View File

@@ -11,7 +11,6 @@ const BaseDispatcher = require('./BaseDispatcher');
* const dispatcher = connection.playVideo('/home/hydrabolt/video.mp4', { fps: 60, preset: 'ultrafast' }); * const dispatcher = connection.playVideo('/home/hydrabolt/video.mp4', { fps: 60, preset: 'ultrafast' });
* }); * });
* ``` * ```
* @implements {VolumeInterface}
* @extends {BaseDispatcher} * @extends {BaseDispatcher}
*/ */
class VideoDispatcher extends BaseDispatcher { class VideoDispatcher extends BaseDispatcher {

5
typings/index.d.ts vendored
View File

@@ -884,7 +884,10 @@ export class ClientVoiceManager {
public adapters: Map<Snowflake, InternalDiscordGatewayAdapterLibraryMethods>; public adapters: Map<Snowflake, InternalDiscordGatewayAdapterLibraryMethods>;
public connections: Collection<Snowflake, VoiceConnection>; 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 { export interface JoinChannelConfig {