Skip to content

Commit

Permalink
LuaMacro: a small fix
Browse files Browse the repository at this point in the history
  • Loading branch information
shmuz committed Jul 13, 2024
1 parent 45384f5 commit 8d1fc4d
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion plugins/luamacro/_globalinfo.lua
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
function export.GetGlobalInfo()
return {
Version = { 3, 0, 0, 845 },
Version = { 3, 0, 0, 846 },
MinFarVersion = { 3, 0, 0, 6327 },
Guid = win.Uuid("4EBBEFC8-2084-4B7F-94C0-692CE136894D"),
Title = "LuaMacro",
Expand Down
4 changes: 4 additions & 0 deletions plugins/luamacro/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
shmuel 2024-07-13 15:19:38+03:00 - build 846

1. A small fix.

shmuel 2024-06-30 22:27:03+03:00 - build 845

1. LuaFAR: fix a memory leak.
Expand Down
2 changes: 1 addition & 1 deletion plugins/luamacro/luafar/version.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#include <farversion.hpp>

#define PLUGIN_BUILD 845
#define PLUGIN_BUILD 846
2 changes: 1 addition & 1 deletion plugins/luamacro/luamacro.lua
Original file line number Diff line number Diff line change
Expand Up @@ -514,7 +514,7 @@ end
-- TODO: when called from a module's panel, call that module's Configure()
function export.Configure (guid)
local items = utils.GetMenuItems()
if items[guid] then items[guid].action() end
if items[guid] then items[guid].action(guid) end
end

local function Init()
Expand Down

0 comments on commit 8d1fc4d

Please sign in to comment.