Repository :
https://github.com/FarGroup/FarManager
On branch : master
Link :
https://github.com/FarGroup/FarManager/commit/04f2b433f6ae99e657be3b15cbcabe9c3dd4289a
>---------------------------------------------------------------
commit 04f2b433f6ae99e657be3b15cbcabe9c3dd4289a
Author: Shmuel Zeigerman <
solo...@gmail.com>
Date: Fri Sep 26 10:43:19 2025 +0300
LuaFAR: rename actl.Waitkey to actl.WaitKey
>---------------------------------------------------------------
04f2b433f6ae99e657be3b15cbcabe9c3dd4289a
enc/enc_lua/luafar_manual.tsi | 4 ++--
plugins/luamacro/_globalinfo.lua | 2 +-
plugins/luamacro/changelog | 4 ++++
plugins/luamacro/luafar/lf_service.c | 4 ++--
plugins/luamacro/luafar/lf_version.h | 2 +-
5 files changed, 10 insertions(+), 6 deletions(-)
diff --git a/enc/enc_lua/luafar_manual.tsi b/enc/enc_lua/luafar_manual.tsi
index 7a9c5b732..b0005ad1e 100644
--- a/enc/enc_lua/luafar_manual.tsi
+++ b/enc/enc_lua/luafar_manual.tsi
@@ -1906,7 +1906,7 @@ lv=3
dt=Text
nm=actl namespace
ctime=3917945155
-mtime=3939576259
+mtime=3968044811
<article>
#_This is an alternative interface to FAR's advanced control commands.
#_It is shorter and more expressive, e.g. the following 2 calls do the
@@ -1937,7 +1937,7 @@ mtime=3939576259
#_ SetProgressState ACTL_SETPROGRESSSTATE
#_ SetProgressValue ACTL_SETPROGRESSVALUE
#_ Synchro ACTL_SYNCHRO
-#_ Waitkey ACTL_WAITKEY
+#_ WaitKey ACTL_WAITKEY
#_
#_@@@
#_{actl_commit}: $(ENC_URL)/service_functions/advcontrol.html#ACTL_COMMIT
diff --git a/plugins/luamacro/_globalinfo.lua b/plugins/luamacro/_globalinfo.lua
index 44a08e00f..d8ae27ff7 100644
--- a/plugins/luamacro/_globalinfo.lua
+++ b/plugins/luamacro/_globalinfo.lua
@@ -1,6 +1,6 @@
function export.GetGlobalInfo()
return {
- Version = { 3, 0, 0, 891 },
+ Version = { 3, 0, 0, 892 },
MinFarVersion = { 3, 0, 0, 6546 },
Guid = win.Uuid("4EBBEFC8-2084-4B7F-94C0-692CE136894D"),
Title = "LuaMacro",
diff --git a/plugins/luamacro/changelog b/plugins/luamacro/changelog
index 6f344f772..e224f6445 100644
--- a/plugins/luamacro/changelog
+++ b/plugins/luamacro/changelog
@@ -1,3 +1,7 @@
+shmuel 2025-09-26 10:38:38+03:00 - build 892
+
+1. LuaFAR: rename actl.Waitkey to actl.WaitKey
+
MZK 2025-09-11 21:46:54-04:00 - build 891
1. gh-948: Macro API to retrieve menu item extended data: Menu.GetItemExtendedData.
diff --git a/plugins/luamacro/luafar/lf_service.c b/plugins/luamacro/luafar/lf_service.c
index b20f483a3..107c90c3d 100644
--- a/plugins/luamacro/luafar/lf_service.c
+++ b/plugins/luamacro/luafar/lf_service.c
@@ -5087,7 +5087,7 @@ AdvCommand( SetCursorPos, ACTL_SETCURSORPOS)
AdvCommand( SetProgressState, ACTL_SETPROGRESSSTATE)
AdvCommand( SetProgressValue, ACTL_SETPROGRESSVALUE)
AdvCommand( Synchro, ACTL_SYNCHRO)
-AdvCommand( Waitkey, ACTL_WAITKEY)
+AdvCommand( WaitKey, ACTL_WAITKEY)
static int far_MacroLoadAll(lua_State* L)
{
@@ -6381,7 +6381,7 @@ static const luaL_Reg actl_funcs[] =
PAIR( adv, SetProgressState),
PAIR( adv, SetProgressValue),
PAIR( adv, Synchro),
- PAIR( adv, Waitkey),
+ PAIR( adv, WaitKey),
{NULL, NULL},
};
diff --git a/plugins/luamacro/luafar/lf_version.h b/plugins/luamacro/luafar/lf_version.h
index 9b7e5f51e..5e59a2ee6 100644
--- a/plugins/luamacro/luafar/lf_version.h
+++ b/plugins/luamacro/luafar/lf_version.h
@@ -1,3 +1,3 @@
#include <farversion.hpp>
-#define PLUGIN_BUILD 891
+#define PLUGIN_BUILD 892