From bb4fd73c317cc88beb5e58c1abf52138abed107f Mon Sep 17 00:00:00 2001 From: Thijs Schreijer Date: Thu, 20 Jun 2024 23:16:29 +0200 Subject: Release v0.4.0 (#24) --- src/core.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'src') diff --git a/src/core.c b/src/core.c index d233ecc..24764c5 100644 --- a/src/core.c +++ b/src/core.c @@ -4,7 +4,7 @@ #include #include -#define LUASYSTEM_VERSION "LuaSystem 0.3.0" +#define LUASYSTEM_VERSION "LuaSystem 0.4.0" #ifdef _WIN32 #define LUAEXPORT __declspec(dllexport) @@ -26,6 +26,9 @@ LUAEXPORT int luaopen_system_core(lua_State *L) { lua_pushstring(L, "_VERSION"); lua_pushstring(L, LUASYSTEM_VERSION); lua_rawset(L, -3); + +/// Flag to identify Windows. +// @field windows `true` if on Windows, `false` otherwise. lua_pushstring(L, "windows"); #ifdef _WIN32 lua_pushboolean(L, 1); -- cgit v1.2.3-55-g6feb