You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: CHANGELOG.md
+6
Original file line number
Diff line number
Diff line change
@@ -3,6 +3,12 @@
3
3
Each release usually includes various fixes and improvements.
4
4
The most noteworthy of these, as well as any features and breaking changes, are listed here.
5
5
6
+
## v4.0.8
7
+
* Updated koe to [`2.0.3-rc2`](https://github.com/KyokoBot/koe/releases/tag/2.0.3-rc2) & use voice gateway `v8` in https://github.com/lavalink-devs/Lavalink/pull/1097
8
+
* Updated Lavaplayer to [`2.2.2`](https://github.com/lavalink-devs/lavaplayer/releases/tag/2.2.2) in https://github.com/lavalink-devs/Lavalink/pull/1105
9
+
* Allow usage of non-allocating frame buffers in https://github.com/lavalink-devs/Lavalink/pull/1095
10
+
* Added shutdown handling to close sessions cleanly in https://github.com/lavalink-devs/Lavalink/pull/1102
11
+
6
12
## v4.0.7
7
13
* Updated Lavaplayer to [`2.2.1`](https://github.com/lavalink-devs/lavaplayer/releases/tag/2.2.1)
8
14
* Updated spring-boot to `3.3.0` & spring-websocket to `6.1.9`
Copy file name to clipboardexpand all lines: LavalinkServer/application.yml.example
+1
Original file line number
Diff line number
Diff line change
@@ -38,6 +38,7 @@ lavalink:
38
38
rotation: true
39
39
channelMix: true
40
40
lowPass: true
41
+
nonAllocatingFrameBuffer: false # Setting to true reduces the number of allocations made by each player at the expense of frame rebuilding (e.g. non-instantaneous volume changes)
41
42
bufferDurationMs: 400 # The duration of the NAS buffer. Higher values fare better against longer GC pauses. Duration <= 0 to disable JDA-NAS. Minimum of 40ms, lower values may introduce pauses.
42
43
frameBufferDurationMs: 5000 # How many milliseconds of audio to keep buffered
43
44
opusEncodingQuality: 10 # Opus encoder quality. Valid values range from 0 to 10, where 10 is best quality but is the most expensive on the CPU.
0 commit comments