diff options
| author | ailurux <ailurux@noreply.codeberg.org> | 2024-05-10 04:20:00 +0000 |
|---|---|---|
| committer | ailurux <ailurux@noreply.codeberg.org> | 2024-05-10 04:20:00 +0000 |
| commit | 35c6125b25f3f0c1852c74f9d165a46282494a7c (patch) | |
| tree | 695b8229205e108f04da7d1ded7f0af35bf1ff9c /src/tangara/lua/bridge.cpp | |
| parent | e4ce7c4ac23402e09be8d6a52e0f739c0dff4ff0 (diff) | |
| parent | ce9861260d5642eb496e447eb7e93de5938c6b1f (diff) | |
| download | tangara-fw-35c6125b25f3f0c1852c74f9d165a46282494a7c.tar.gz | |
Merge pull request 'file-browser' (#71) from file-browser into main
Reviewed-on: https://codeberg.org/cool-tech-zone/tangara-fw/pulls/71
Reviewed-by: cooljqln <cooljqln@noreply.codeberg.org>
Diffstat (limited to 'src/tangara/lua/bridge.cpp')
| -rw-r--r-- | src/tangara/lua/bridge.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/tangara/lua/bridge.cpp b/src/tangara/lua/bridge.cpp index 07c299a7..f1b17636 100644 --- a/src/tangara/lua/bridge.cpp +++ b/src/tangara/lua/bridge.cpp @@ -18,6 +18,7 @@ #include "lua.hpp" #include "lua/lua_controls.hpp" #include "lua/lua_database.hpp" +#include "lua/lua_filesystem.hpp" #include "lua/lua_queue.hpp" #include "lua/lua_screen.hpp" #include "lua/lua_theme.hpp" @@ -86,6 +87,7 @@ auto Bridge::installBaseModules(lua_State* L) -> void { RegisterControlsModule(L); RegisterDatabaseModule(L); RegisterQueueModule(L); + RegisterFileSystemModule(L); RegisterVersionModule(L); RegisterThemeModule(L); RegisterScreenModule(L); |
