Skip to content

Commit

Permalink
Fix build 784
Browse files Browse the repository at this point in the history
  • Loading branch information
shmuz committed Oct 27, 2023
1 parent f2acd81 commit 0303fa7
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 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, 785 },
Version = { 3, 0, 0, 786 },
MinFarVersion = { 3, 0, 0, 5171 },
Guid = win.Uuid("4EBBEFC8-2084-4B7F-94C0-692CE136894D"),
Title = "LuaMacro",
Expand Down
6 changes: 5 additions & 1 deletion plugins/luamacro/changelog
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
shmuel 2023-10-28 01:13:50+03:00 - build 786

1. Fix build 784

shmuel 2023-10-28 01:00:44+03:00 - build 785

1. Fix the last commit.
1. Fix build 784

shmuel 2023-10-28 00:33:46+03:00 - build 784

Expand Down
2 changes: 1 addition & 1 deletion plugins/luamacro/luafar/service.c
Original file line number Diff line number Diff line change
Expand Up @@ -3794,7 +3794,7 @@ static intptr_t DoDlgProc(lua_State *L, PSInfo *Info, TDialogData *dd, HANDLE hD

if (Msg == DN_INITDIALOG) {
lua_pushinteger(L, Msg); //+3
lua_pushinteger(L, Param1); //+4
lua_pushinteger(L, Param1 + 1); //+4
lua_rawgeti(L, LUA_REGISTRYINDEX, dd->dataRef); //+5
}
else {
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 785
#define PLUGIN_BUILD 786

0 comments on commit 0303fa7

Please sign in to comment.