aqualink 2.0.2 → 2.1.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 +38 -12
- package/build/index.d.ts +981 -9
- package/build/structures/Aqua.js +40 -20
- package/build/structures/Connection.js +63 -13
- package/build/structures/Node.js +213 -189
- package/build/structures/Player.js +79 -35
- package/build/structures/Rest.js +63 -19
- package/build/structures/Track.js +13 -6
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -23,25 +23,51 @@ This code is based in riffy, but its an 100% Rewrite made from scratch...
|
|
|
23
23
|
- https://github.com/DRSchlaubi/lyrics.kt (?)
|
|
24
24
|
- https://github.com/DuncteBot/java-timed-lyrics (RECOMMENDED)
|
|
25
25
|
|
|
26
|
-
# Tralalero Tralala 2.0
|
|
26
|
+
# Tralalero Tralala 2.1.0 Released
|
|
27
27
|
---
|
|
28
|
-
-
|
|
29
|
-
-
|
|
30
|
-
-
|
|
31
|
-
-
|
|
32
|
-
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
-
|
|
37
|
-
-
|
|
38
|
-
-
|
|
28
|
+
- Improved the `AQUA` module
|
|
29
|
+
- Faster nodes loading
|
|
30
|
+
- Faster plugin loading
|
|
31
|
+
- Better listeners for player
|
|
32
|
+
- Faster resolving system for playlists
|
|
33
|
+
|
|
34
|
+
- Remade the `Connection` system
|
|
35
|
+
- Less overheard now.
|
|
36
|
+
- Faster connections
|
|
37
|
+
- Improved the checkings
|
|
38
|
+
- Improved error handling
|
|
39
|
+
- Fixed creating useless Objects and arrays
|
|
40
|
+
|
|
41
|
+
- Fully rewrite the `Node` system
|
|
42
|
+
- Way faster connections
|
|
43
|
+
- More stable (i think so)
|
|
44
|
+
- Faster events / messages / payloads handling
|
|
45
|
+
- Better stats handling (reusing, creating, destroyin)
|
|
46
|
+
- Some more bug fixes and stuff i forgot.
|
|
47
|
+
|
|
48
|
+
- Remade the `Player` module
|
|
49
|
+
- Now support Lazy Loading by default
|
|
50
|
+
- Better State Updates
|
|
51
|
+
- Improved Garbage Collection
|
|
52
|
+
- Rewrite to use direct comparasions
|
|
53
|
+
|
|
54
|
+
- Improved the `Rest` module
|
|
55
|
+
- Lazy loading of http2
|
|
56
|
+
- Faster request chunks
|
|
57
|
+
- Some overall upgrades
|
|
58
|
+
|
|
59
|
+
- Improved `Track` module
|
|
60
|
+
- Faster track looking
|
|
61
|
+
- More micro optimizations (use Boolean instead of !!)
|
|
62
|
+
|
|
63
|
+
- Remade the INDEX.D.TS File: Added more 1000 lines of code. Added autocomplete, options, and documented everything.
|
|
39
64
|
|
|
40
65
|
# Docs (Wiki)
|
|
41
66
|
- https://github.com/ToddyTheNoobDud/AquaLink/wiki
|
|
42
67
|
|
|
43
68
|
- Example bot: https://github.com/ToddyTheNoobDud/Thorium-Music
|
|
44
69
|
|
|
70
|
+
|
|
45
71
|
# How to install
|
|
46
72
|
|
|
47
73
|
`npm install aqualink`
|