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.
Files changed (2) hide show
  1. package/README.md +13 -10
  2. 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,8 mb per player
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.2.0 is released ! aqualink so cool
28
+ # Yay, Version 1.3.0 is released ! aqualink so cool
26
29
 
27
- + Fixed all the loop system
28
- + Fixed could not play after ending (weird ahh bug)
29
- + Improved the general queue handler
30
- + Remade the REST system (improved speed, ram, and removed useless queue handling)
31
- + Updated player stuff (Fixed bugs, Added methods: shuffle, getQueue(), restart)
32
- + Updated the NODE system (misc improvements for speed)
33
- + Rewrited Aqua system (Fixed playlists support (finnaly), rewrited resolve(), Improved all the code, auto cleanup)
34
- + Remade the connection system for handling
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.2.0",
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
- "undici": "^7.0.0",
40
+ "undici": "^7.1.0",
41
41
  "ws": "^8.18.0"
42
42
  },
43
43
  "repository": {