Multiple small fixes

- Turn the planet lighting actions from mixed case to lower case
 - Fix the openspace.rebindKey Lua function which did not work before
 - Fix the openspace.downloadFile function which would fail when not waiting for the the result
 - Rename openspace.walkDirectoryFolder to openspace.walkDirectoryFolders for consistency
 - Remove the openspace.saveLastChangeToProfile function
This commit is contained in:
Alexander Bock
2022-05-06 16:13:21 -04:00
parent f3c6a7e615
commit 970536998a
5 changed files with 20 additions and 103 deletions

View File

@@ -756,10 +756,9 @@ void ScriptEngine::addBaseLibrary() {
codegen::lua::DirectoryExists,
codegen::lua::WalkDirectory,
codegen::lua::WalkDirectoryFiles,
codegen::lua::WalkDirectoryFolder,
codegen::lua::WalkDirectoryFolders,
codegen::lua::DirectoryForPath,
codegen::lua::UnzipFile,
codegen::lua::SaveLastChangeToProfile
codegen::lua::UnzipFile
}
};
addLibrary(lib);