Anton Uramer

Results 16 comments of Anton Uramer

Isn't that just installing my FullLoot?

I've made this as a temporary workaround https://github.com/rxi/lite-plugins/pull/90

@Tmpod I'm running Windows 10. for me numpad doesn't react to numlock. I haven't looked at the code, but I assume lite uses SDL events.

@Tmpod there is an SDL function to get the current numlock state with the current design, it would just mean passing that value into key press events, and mapping some...

Yep, pass that value from system.c to here https://github.com/rxi/lite/blob/7517d0ef552c89cc24e0589a8df8eb9648217e24/data/core/init.lua#L325

built it using GCC successfully, luarocks still didn't work pq.lib is libpq.lib now, for about a decade as well

Yeah, I figured that much out, although I was changing the rockspec to use libpq.lib instead. It does "build" with luarocks, but the end result is not a valid Win32...

By hand, something along the lines of gcc -O2 -I C:/msys64/mingw64/include/lua5.1 -s -shared -o postgres.dll C:/msys64/home/ICE/luasql/src/src/luasql.c C:/msys64/home/ICE/luasql/src/src/ls_postgres.c C:/msys64/mingw64/bin/lua51.dll C:/msys64/mingw64/bin/libpq.dll I've also failed to build any of the other packages I...

Current enums in Teal are a bit funny, in the sense that they aren't a map of names to values, but just a set of allowed strings. In Typescript terms,...

As a follow up to my question in https://github.com/teal-language/tl/issues/590: It's very common for Lua to run in a sandbox, with a heavily customized API. So much so that different Lua...