diff --git a/CHANGELOG.md b/CHANGELOG.md
index f11df7d8c591a4dcf517ece950f53fac9713f05f..ab91d137488b6638e184da70027f39526c579166 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,6 +1,7 @@
 # Next
 
 - Add: install amadeus-rs as amadeus alongside lektord
+- Add: rework of the databse in rust with diesel
 - Add: add rust code to lektord -> common lib + new repo rs module
 - Add: merge the amadeus-rs prokect into the lektor one
 - Add: add file logging to lektord, the rotate operations are done by lektord to avoid running out of space if someone try to dos lektord...
@@ -37,7 +38,7 @@
 - Change: cmake minimal version to 3.17 because of policy CMP0100
 - Change: the CI check if lektor compiles, no binary deployment for now
 - Remove: delete `KLKT` as it is no longer maintained
-- Remove: get ride of the SDL2 module
+- Remove: Remove SDL2 module for window modules
 
 # v2.4 (752da467)
 
diff --git a/README.md b/README.md
index aa1827867f9e553b26ec37aef5ab9bfbae7a4a07..11f5616baa15fc525da3773419e3fa5772fd10b1 100644
--- a/README.md
+++ b/README.md
@@ -30,20 +30,16 @@ A Karaoke player made to replace the old bash scripts on Sakura.
 - [cmake](https://cmake.org/) with at least the version 3.17
 - a C compiler with C11 support
 - a C++ compiler with C++20 support (for the Qt5 module)
+- a [rust](https://www.rust-lang.org) compiler with version >= 1.51
 - The C and C++ compilers must have OpenMP support (see the
   [OpenMP C test program](utils/cmake/TestOpenMp.c))
 - the [sqlite3](https://www.sqlite.org/) development library, version
   3.31.0 or newer for [generated columns](https://www.sqlite.org/gencol.html) support
 - a POSIX.1-2008 compatible system (for MS Windows, use something like WSL2)
 
-For the module sdl2, you will need the following prerequisites:
-
-- the [mpv](https://mpv.io/) development library
-- the [sdl2](https://www.libsdl.org/) development library
-- the [sdl2-image](https://www.libsdl.org/projects/SDL_image/) development library
-
 For the Qt module, you will need the following prerequisites:
 
+- the [mpv](https://mpv.io/) development library
 - the [Qt](https://www.qt.io/) develipment library, QtCore, QtWidgets in at
   least version 5.15 (Qt6 should be supported)
 
diff --git a/inc/lektor/internal/config.def b/inc/lektor/internal/config.def
index d26bce7781428ee525a98b50327fdfca3cfd9067..663f1d5b8b214917fd1661c1f41a8b2e78994b27 100644
--- a/inc/lektor/internal/config.def
+++ b/inc/lektor/internal/config.def
@@ -67,14 +67,8 @@ value("plt_json",       "https://kurisu.iiens.net/api/plt/")
 /* MODULE: PLAYER */
 section("player")
 comment("The player module, so that people can 'sing' when using lektor.")
-comment("By default it's sdl, but one can create any module, for audio support")
-comment("only for example.")
 value("module",         "qt")
 value("autoclear",      "true")
-value("def_random",     "false")
-value("def_consume",    "false")
-value("def_single",     "false")
-value("def_repeat",     "false")
 value("font_size",      "20")
 value("font_name",      "Hack Nerd Font")
 value("msg_duration",   "4")