Skip to content
This repository was archived by the owner on Nov 12, 2025. It is now read-only.

Tags: vurvdev/rglua

Tags

v2.1.0

Toggle v2.1.0's commit message

Unverified

This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
Update rglua-macros version

v2.0.0

Toggle v2.0.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Fix comparison error

Criminally underrated library, zero stars yet checks everything glua-sys and gmod-rs don't.

v2.0.0-beta

Toggle v2.0.0-beta's commit message

Unverified

This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
2.0.0-beta

Full changelist will be in 2.0.0. Essentially a lot of breaking changes, added Userdata support for Vector and Angle, some missing lua c api functions, and a lot of documentation.

v1.0.0

Toggle v1.0.0's commit message

Unverified

This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
1.0.0

* Use $crate instead of rglua in macros
* Add variadic support to dyn_symbols (In turn re-adds luaL_error and pushfstring
* Add lua_getinfo
* Add lua_next
* Add lua_replace
* Add lua_lessthan
* Add lua_gc
* Add rest of the functions we were missing
* Add lua_objlen
Types are now T* instead of Type::*. Same with prior enums. Deprecated old ones

* Added LuaDebug
* Added LuaAlloc
* Added LuaHook
* Added LuaReader
* Removed redundant Interface trait, vtables already adds a function to get a ptr.

I'm not gonna work on this for a while this is getting tiring. Near the completion of the library (in terms of the lua part.)

v0.8.0

Toggle v0.8.0's commit message

Unverified

This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
Remove travis

v0.7.1

Toggle v0.7.1's commit message

Unverified

This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
README changes

Removed a lot of clutter, link to example so I don't have to update the version every tiny commit.

v0.7.0

Toggle v0.7.0's commit message

Unverified

This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
Make doc tests pass

Didn't know these would immediately be treated as tests

v0.6.1

Toggle v0.6.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Update README.md

v0.6.0

Toggle v0.6.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Update README.md

v0.5.0

Toggle v0.5.0's commit message

Unverified

This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
Refactor

* Reprecated rstring to rename to rstr to better reflect using &str type.
* Bumped to 0.5.0
* C Types are in snake case
* Fix clippy lints
* Add a prelude that includes lua functions and basic types.
* Make exposed symbols static instead of const as they should be..
* Added unit test for cstr! function
* Put interface stuff under new ``interfaces`` feature (default enabled).