doc: Mention updated Lua 5.3/5.4 support

This commit is contained in:
John Thacker 2024-04-02 08:53:42 -04:00
parent efdeaac67d
commit 0949fd3498
2 changed files with 9 additions and 9 deletions

View File

@ -300,9 +300,9 @@ https://dev-libs.wireshark.org/windows/packages/[].
=== Lua (Optional)
The Lua library is used to add scripting support to Wireshark.
Only Lua versions 5.1 and 5.2 are supported; the API has
https://gitlab.com/wireshark/wireshark/-/issues/10881[not
been updated to work with versions 5.3 and later.]
Wireshark 4.2.x and earlier support Lua versions 5.1 and 5.2.
Recent versions of Wireshark have added support for Lua 5.3 and 5.4
as well.
[#ChLibsUnixLua]
@ -318,7 +318,7 @@ https://www.lua.org/download.html[].
[discrete]
==== Windows
We provide copies of the official packages at
We provide packages for Windows, patched for UTF-8 support, at
https://dev-libs.wireshark.org/windows/packages/[].
[#ChLibsMaxMindDB]

View File

@ -10,11 +10,11 @@
=== Introduction
Lua is a powerful light-weight programming language designed for extending
applications. Wireshark contains an embedded Lua 5.2 interpreter which
can be used to write dissectors, taps, and capture file readers
and writers. The interpreter is backwards compatible with Lua 5.1,
https://gitlab.com/wireshark/wireshark/-/issues/10881[but does not yet
work with Lua 5.3 or greater.]
applications. Wireshark contains an embedded Lua interpreter which can
be used to write dissectors, taps, and capture file readers and writers.
Wireshark versions 4.2.x and earlier support Lua 5.1 and 5.2, and newer
versions support Lua 5.1, 5.2, 5.3, and 5.4. All versions support the
Lua BitOp library.
If Lua is enabled, Wireshark will first try to load a file named `init.lua`
from the global link:{wireshark-users-guide-url}ChPluginFolders.html[_plugins directory_].