Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
7d59126
chore: update Spotify.js source map for distribution consistency
1Lucas1apk Aug 6, 2025
1e4e996
Merge remote-tracking branch 'origin/dev' into dev
1Lucas1apk Aug 6, 2025
a4e4818
chore(docs): upgrade Nuxt dependency to v4.0.3
1Lucas1apk Aug 6, 2025
eab54bc
chore(docs): downgrade Nuxt to v3.17.6 and disable SSR
1Lucas1apk Aug 6, 2025
f493c09
chore(docs): enable SSR and add Netlify preset to Nitro configuration
1Lucas1apk Aug 6, 2025
2cce50e
chore(docs): update nuxt.config formatting and remove unused SSR/Nitr…
1Lucas1apk Aug 6, 2025
4de1647
fix(docs): update image URL for Moonlink banner in index.md
1Lucas1apk Aug 6, 2025
c2b2e52
fix(docs): update Moonlink banner image URL in index.md
1Lucas1apk Aug 6, 2025
dc3649a
chore(docs): restructure API documentation, update player & plugin me…
1Lucas1apk Aug 8, 2025
bae3d19
moving docs to a repository
1Lucas1apk Aug 8, 2025
4b826c5
fix(Node): ensure players are marked as disconnected on state reset a…
1Lucas1apk Aug 9, 2025
9a1270e
fix(Node, Manager, Player): enhance player stability with new health …
1Lucas1apk Aug 9, 2025
a2454fc
fix(Node, Player): improve player resumption handling and enhance deb…
1Lucas1apk Aug 9, 2025
e98e835
fix(Node, Player): improve autoplay logic and handle stale tracks dur…
1Lucas1apk Aug 11, 2025
4e98c80
feat(PlayerManager): add `autoJoin` method for streamlined player ini…
1Lucas1apk Aug 11, 2025
4fcc4fd
fix(Node, Manager, Player): improve voice state handling and enhance …
1Lucas1apk Aug 11, 2025
11809ef
feat(WebSocket): introduce `MAX_PAYLOAD_SIZE` constant for improved p…
1Lucas1apk Sep 6, 2025
ff9b1f3
fix(WebSocket): update `EventEmitter` import to use explicit Node.js …
1Lucas1apk Sep 6, 2025
4f08615
feat(Utils): add `isValidDiscordId` utility function
1Lucas1apk Sep 6, 2025
c4be6ed
fix(Utils): update `http` import to use explicit Node.js namespace
1Lucas1apk Sep 6, 2025
3d54b3b
fix(WebSocket): update method naming and remove unused `addEventListe…
1Lucas1apk Sep 6, 2025
bd3a75a
fix(WebSocket): remove debug `console.log` statements for Bun detection
1Lucas1apk Sep 6, 2025
5792217
chore: bump version to 4.60.18 and update User-Agent metadata
1Lucas1apk Sep 6, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .idea/discord.xml

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

15 changes: 15 additions & 0 deletions .idea/git_toolbox_prj.xml

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

392 changes: 392 additions & 0 deletions .idea/workspace.xml

Large diffs are not rendered by default.

4 changes: 3 additions & 1 deletion .npmignore
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,6 @@ yarn.lock
yarn.lock
tsconfig.json
moonlink.log
/tests
/tests
.idea
/assets
3 changes: 2 additions & 1 deletion dist/src/Utils.d.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import http from "http";
import http from "node:http";
import type { ITrack, ITrackInfo } from "./typings/Interfaces";
export declare const structures: Record<string, any>;
export declare const sources: {
Expand Down Expand Up @@ -35,3 +35,4 @@ export declare class Plugin {
unload(manager: any): void;
}
export declare function isSourceBlacklisted(manager: any, sourceName: string): boolean;
export declare function isValidDiscordId(id: string): boolean;
36 changes: 20 additions & 16 deletions dist/src/Utils.js

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

2 changes: 1 addition & 1 deletion dist/src/Utils.js.map

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions dist/src/core/Manager.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ export declare class Manager extends EventEmitter {
skipTrackSource?: boolean;
provider?: 'lavalyrics' | 'lyrics' | 'java-lyrics-plugin';
}): Promise<ILavaLyricsObject | null>;
clearLyricsCacheForGuild(guildId: string): void;
searchLyrics(options: {
query: string;
provider?: 'lavalyrics' | 'lyrics' | 'java-lyrics-plugin';
Expand Down
182 changes: 163 additions & 19 deletions dist/src/core/Manager.js

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

2 changes: 1 addition & 1 deletion dist/src/core/Manager.js.map

Large diffs are not rendered by default.

Loading
Loading