Automated commit: v0.20.0

This commit is contained in:
IQuant 2024-08-19 17:08:34 +03:00
parent 32f918ac0d
commit 3ab095d60b
4 changed files with 5 additions and 5 deletions

View file

@ -11,7 +11,7 @@ static LUA: LazyLock<Lua51> = LazyLock::new(|| unsafe {
// const EWEXT: [(&'static str, Function); 1] = [("testfn", None)]; // const EWEXT: [(&'static str, Function); 1] = [("testfn", None)];
extern "C" fn test_fn(lua: *mut lua_State) -> c_int { extern "C" fn test_fn(_lua: *mut lua_State) -> c_int {
println!("test fn called"); println!("test fn called");
0 0
} }

View file

@ -1977,7 +1977,7 @@ checksum = "2bf50223579dc7cdcfb3bfcacf7069ff68243f8c363f62ffa99cf000a6b9c451"
[[package]] [[package]]
name = "noita-proxy" name = "noita-proxy"
version = "0.19.4" version = "0.20.0"
dependencies = [ dependencies = [
"argh", "argh",
"bincode", "bincode",

View file

@ -5,7 +5,7 @@ resolver = "2"
[package] [package]
name = "noita-proxy" name = "noita-proxy"
description = "Noita Entangled Worlds companion app." description = "Noita Entangled Worlds companion app."
version = "0.19.4" version = "0.20.0"
edition = "2021" edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

View file

@ -5,8 +5,8 @@ package.cpath = package.cpath .. ";./mods/quant.ew/?.dll"
package.path = package.path .. ";./mods/quant.ew/?.lua" package.path = package.path .. ";./mods/quant.ew/?.lua"
print(package.cpath) print(package.cpath)
ewext = require("ewext") -- ewext = require("ewext")
print(ewext) -- print(ewext)
dofile_once( "data/scripts/lib/utilities.lua" ) dofile_once( "data/scripts/lib/utilities.lua" )