Skip to content

Commit

Permalink
chore: release v2.13.1
Browse files Browse the repository at this point in the history
- Update @djs/voice 0.15.0 > 0.16.0
  • Loading branch information
aiko-chan-ai committed Apr 7, 2023
1 parent fe840ce commit 6cc97fb
Show file tree
Hide file tree
Showing 5 changed files with 761 additions and 807 deletions.
2 changes: 1 addition & 1 deletion docs/main.json

Large diffs are not rendered by default.

18 changes: 9 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "discord.js-selfbot-v13",
"version": "2.13.0",
"version": "2.13.1",
"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 Expand Up @@ -52,16 +52,16 @@
"homepage": "https://github.com/aiko-chan-ai/discord.js-selfbot-v13#readme",
"dependencies": {
"@aikochan2k6/qrcode-terminal": "^0.12.1",
"@discordjs/builders": "^1.5.0",
"@discordjs/collection": "^1.4.0",
"@discordjs/voice": "^0.15.0",
"@discordjs/builders": "^1.6.1",
"@discordjs/collection": "^1.5.0",
"@discordjs/voice": "^0.16.0",
"@sapphire/async-queue": "^1.5.0",
"@sapphire/shapeshift": "^3.8.1",
"@types/node-fetch": "^2.6.2",
"@sapphire/shapeshift": "^3.8.2",
"@types/node-fetch": "^2.6.3",
"@types/ws": "^8.5.4",
"axios": "1.1",
"chalk": "^4.1.2",
"discord-api-types": "^0.37.36",
"discord-api-types": "^0.37.37",
"form-data": "^4.0.0",
"json-bigint": "^1.0.0",
"lodash.permutations": "^1.0.0",
Expand All @@ -82,7 +82,7 @@
"@commitlint/config-angular": "^16.0.0",
"@discordjs/docgen": "^0.11.1",
"@favware/npm-deprecate": "^1.0.7",
"@types/node": "^18.15.5",
"@types/node": "^18.15.11",
"conventional-changelog-cli": "^2.2.2",
"dtslint": "^4.2.1",
"eslint": "^8.36.0",
Expand All @@ -93,7 +93,7 @@
"is-ci": "^3.0.1",
"jest": "^28.1.3",
"lint-staged": "^12.1.4",
"prettier": "^2.8.6",
"prettier": "^2.8.7",
"tsd": "^0.25.0",
"tslint": "^6.1.3",
"typescript": "^4.9.5"
Expand Down
8 changes: 4 additions & 4 deletions src/client/websocket/handlers/READY.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,27 +15,27 @@ function patchVoice(client) {
'debug',
`${chalk.greenBright('[OK]')} Patched ${chalk.cyanBright(
'VoiceConnection.prototype.configureNetworking',
)} [${chalk.bgMagentaBright('@discordjs/voice')} - ${chalk.redBright('v0.15.0')}]`,
)} [${chalk.bgMagentaBright('@discordjs/voice')} - ${chalk.redBright('v0.16.0')}]`,
);
/* eslint-enable */
} catch (e) {
client.emit(
'debug',
`${chalk.redBright('[Fail]')} Patched ${chalk.cyanBright(
'VoiceConnection.prototype.configureNetworking',
)} [${chalk.bgMagentaBright('@discordjs/voice')} - ${chalk.redBright('v0.15.0')}]\n${e.stack}`,
)} [${chalk.bgMagentaBright('@discordjs/voice')} - ${chalk.redBright('v0.16.0')}]\n${e.stack}`,
);
client.emit(
Events.ERROR,
`${chalk.redBright('[Fail]')} Patched ${chalk.cyanBright(
'VoiceConnection.prototype.configureNetworking',
)} [${chalk.bgMagentaBright('@discordjs/voice')} - ${chalk.redBright('v0.15.0')}]`,
)} [${chalk.bgMagentaBright('@discordjs/voice')} - ${chalk.redBright('v0.16.0')}]`,
);
client.emit(
Events.ERROR,
`${chalk.redBright('[Error]')} Please install ${chalk.bgMagentaBright(
'@discordjs/voice',
)} version ${chalk.redBright('v0.15.0')}`,
)} version ${chalk.redBright('v0.16.0')}`,
);
}
}
Expand Down
4 changes: 2 additions & 2 deletions src/rest/RequestHandler.js
Original file line number Diff line number Diff line change
Expand Up @@ -401,11 +401,11 @@ class RequestHandler {
await this.manager.client.sleep(5_000);
this.manager.client.emit(
DEBUG,
`Captcha solved.
`Captcha details:
Method : ${request.method}
Path : ${request.path}
Route : ${request.route}
Key : ${captcha ? `${captcha.slice(0, 30)}...` : '[Capcha not solved]'}
Key : ${captcha ? `${captcha.slice(0, 30)}...` : '[Captcha not solved]'}
rqToken : ${data.captcha_rqtoken}`,
);
request.retries++;
Expand Down
Loading

0 comments on commit 6cc97fb

Please sign in to comment.