Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
luamacro:
1. far.GetDlgItem возвращает имя истории и маску, если они есть.
  • Loading branch information
zg0 committed Oct 26, 2017
1 parent b43a800 commit 7961ee9
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 3 deletions.
2 changes: 1 addition & 1 deletion plugins/luamacro/_globalinfo.lua
@@ -1,6 +1,6 @@
function export.GetGlobalInfo()
return {
Version = { 1, 0, 0, 627 },
Version = { 1, 0, 0, 628 },
MinFarVersion = { 3, 0, 0, 5066 },
Guid = win.Uuid("4EBBEFC8-2084-4B7F-94C0-692CE136894D"),
Title = "LuaMacro",
Expand Down
6 changes: 5 additions & 1 deletion plugins/luamacro/changelog
@@ -1,4 +1,8 @@
zg 17.10.2017 12:29:42 +0300 - build 627
zg 26.10.2017 16:49:34 +0300 - build 628

1. far.GetDlgItem возвращает имя истории и маску, если они есть.

zg 17.10.2017 12:29:42 +0300 - build 627

1. Area.Desktop, Area.Grabber.

Expand Down
2 changes: 2 additions & 0 deletions plugins/luamacro/luafar/service.c
Expand Up @@ -2817,6 +2817,8 @@ static void PushDlgItem(lua_State *L, const struct FarDialogItem* pItem, BOOL ta
else
PutIntToArray(L, 6, pItem->Param.Selected);

PutWStrToArray(L, 7, pItem->History, -1);
PutWStrToArray(L, 8, pItem->Mask, -1);
PutFlagsToArray(L, 9, pItem->Flags);
lua_pushinteger(L, 10);
push_utf8_string(L, pItem->Data, -1);
Expand Down
2 changes: 1 addition & 1 deletion plugins/luamacro/luamacro.rc
@@ -1,6 +1,6 @@
#include <farversion.hpp>

#define PLUGIN_BUILD 627
#define PLUGIN_BUILD 628
#define PLUGIN_DESC "Lua Macros for Far Manager"
#define PLUGIN_NAME "LuaMacro"
#define PLUGIN_FILENAME "luamacro.dll"
Expand Down

0 comments on commit 7961ee9

Please sign in to comment.