aqualink 1.2.0 → 1.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +13 -10
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -10,28 +10,31 @@ This code is based in riffy, but its an 100% Rewrite made from scratch...
|
|
|
10
10
|
- Lots of features to use
|
|
11
11
|
- Lowest CPU Usage
|
|
12
12
|
- Very fast (mine take less than 1 second to load an song!)
|
|
13
|
-
- 1 Player created = ~1 - 0,
|
|
13
|
+
- 1 Player created = ~1 - 0,5 mb per player
|
|
14
14
|
- Auto clean Up memory when song finishes / bot leave the vc
|
|
15
15
|
- Plugin system
|
|
16
16
|
- Lavalink v4 support (din't test v3)
|
|
17
17
|
- Youtube and Spotify support
|
|
18
18
|
- Minimal Requests to the lavalink server (helps the lavalink recourses!)
|
|
19
|
+
- Easy player, node, aqua managing
|
|
20
|
+
- Fast responses from rest and node
|
|
21
|
+
- Playlist support (My mix playlists, youtube playlists)
|
|
19
22
|
|
|
20
23
|
# Docs (Wiki)
|
|
21
24
|
- https://github.com/ToddyTheNoobDud/AquaLink/wiki
|
|
22
25
|
|
|
23
26
|
- Example bot: https://github.com/ToddyTheNoobDud/Thorium-Music
|
|
24
27
|
|
|
25
|
-
# Yay, Version 1.
|
|
28
|
+
# Yay, Version 1.3.0 is released ! aqualink so cool
|
|
26
29
|
|
|
27
|
-
+
|
|
28
|
-
+
|
|
29
|
-
+
|
|
30
|
-
+
|
|
31
|
-
|
|
32
|
-
+ Updated
|
|
33
|
-
+
|
|
34
|
-
+ Remade the
|
|
30
|
+
+ Updated NODE with more methods (lavalinkLoadPercentage, freePercentage, usedPercentage) + Optimizations
|
|
31
|
+
+ Rewrited Aqua.js fully (rewrite events, options, and resolve)
|
|
32
|
+
+ Rewrite FetchImage (way more faster, less recourse intensive, better looking)
|
|
33
|
+
+ Convert REST to Convert to undici request (experimental, around 221.29 % faster, 12436.39 by difference (requests per min))
|
|
34
|
+
^^ Also is faster and more memory efficient...
|
|
35
|
+
+ Updated Player with one more method (added player.skip())
|
|
36
|
+
+ Remade all the cache system (players joined to vc shall don't use ram, improved cache saving and speed almost)
|
|
37
|
+
+ Remade the TRACK handler (improves track handling, speed, recourses usage and cleaning)
|
|
35
38
|
|
|
36
39
|
# How to install
|
|
37
40
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "aqualink",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.3.0",
|
|
4
4
|
"description": "An Lavalink wrapper, focused in speed, performance, and features, Based in Riffy!",
|
|
5
5
|
"main": "build/index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
"license": "ISC",
|
|
38
38
|
"dependencies": {
|
|
39
39
|
"stream": "^0.0.3",
|
|
40
|
-
|
|
40
|
+
"undici": "^7.1.0",
|
|
41
41
|
"ws": "^8.18.0"
|
|
42
42
|
},
|
|
43
43
|
"repository": {
|