Skip to content

Commit

Permalink
3.6.0-dev-5
Browse files Browse the repository at this point in the history
Soundcloud now works correctly again, but @distube/soundcloud code copied to bot repository with bug fix.
package.json now contains only fixed versions of packages.
  • Loading branch information
AlexInCube committed Aug 12, 2024
1 parent 6d46368 commit 9f24902
Show file tree
Hide file tree
Showing 4 changed files with 306 additions and 78 deletions.
65 changes: 33 additions & 32 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "aicbot",
"version": "3.6.0-dev",
"version": "3.6.0",
"description": "Discord Bot for playing music",
"main": "build/main.js",
"scripts": {
Expand All @@ -21,46 +21,47 @@
"node": ">=20"
},
"dependencies": {
"@discordjs/rest": "^2.3.0",
"@discordjs/voice": "^0.17.0",
"@distube/direct-link": "^1.0.1",
"@distube/file": "^1.0.1",
"@distube/soundcloud": "^2.0.3",
"@distube/spotify": "^2.0.2",
"@distube/youtube": "^1.0.4",
"@distube/yt-dlp": "^2.0.1",
"@distube/ytdl-core": "^4.14.4",
"@distube/ytsr": "^2.0.4",
"@eslint/js": "^9.9.0",
"@discordjs/rest": "2.3.0",
"@discordjs/voice": "0.17.0",
"@distube/direct-link": "1.0.1",
"@distube/file": "1.0.1",
"@distube/soundcloud": "2.0.3",
"@distube/spotify": "2.0.2",
"@distube/youtube": "1.0.4",
"@distube/yt-dlp": "2.0.1",
"@distube/ytdl-core": "4.14.4",
"@distube/ytsr": "2.0.4",
"cross-env": "7.0.3",
"discord.js": "^14.15.3",
"distube": "^5.0.2",
"distube-apple-music": "^0.1.0",
"distube-yandex-music-plugin": "^1.0.5",
"dotenv": "^16.4.5",
"genius-lyrics": "^4.4.7",
"i18next": "^23.12.2",
"i18next-fs-backend": "^2.3.2",
"mongoose": "^8.5.2",
"node-cron": "^3.0.3",
"node-os-utils": "^1.3.7",
"opusscript": "^0.1.1",
"prism-media": "^1.3.5",
"discord.js": "14.15.3",
"distube": "5.0.2",
"distube-apple-music": "0.1.0",
"distube-yandex-music-plugin": "1.0.5",
"dotenv": "16.4.5",
"genius-lyrics": "4.4.7",
"i18next": "23.12.2",
"i18next-fs-backend": "2.3.2",
"mongoose": "8.5.2",
"node-cron": "3.0.3",
"node-os-utils": "1.3.7",
"opusscript": "0.1.1",
"prism-media": "1.3.5",
"puppeteer": "22.13.1",
"puppeteer-extra": "^3.3.6",
"puppeteer-extra-plugin-stealth": "^2.11.2",
"sodium-native": "^4.1.1",
"typescript-eslint": "^7.18.0",
"uuid": "^10.0.0",
"zod": "^3.23.8"
"puppeteer-extra": "3.3.6",
"puppeteer-extra-plugin-stealth": "2.11.2",
"sodium-native": "4.1.1",
"soundcloud.ts": "0.5.5",
"uuid": "10.0.0",
"zod": "3.23.8"
},
"devDependencies": {
"@types/node": "^20.14.15",
"@types/node": "^22.2.0",
"@types/node-cron": "^3.0.11",
"@types/node-os-utils": "^1.3.4",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^8.0.1",
"@typescript-eslint/parser": "^8.0.1",
"@eslint/js": "^9.9.0",
"typescript-eslint": "7.18.0",
"eslint": "^9.9.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
Expand Down
93 changes: 48 additions & 45 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/audioplayer/LoadPlugins.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import { DirectLinkPlugin } from '@distube/direct-link';
import { FilePlugin } from '@distube/file';
import { AppleMusicPlugin } from 'distube-apple-music';
import { YandexMusicPlugin } from 'distube-yandex-music-plugin';
import { SoundCloudPlugin } from '@distube/soundcloud';
import { SoundCloudPlugin } from './plugins/soundcloud.js';
import { getYoutubeCookie } from '../CookiesAutomation.js';
import Cron from 'node-cron';

Expand Down
Loading

0 comments on commit 9f24902

Please sign in to comment.