Skip to content

Releases: tgstation/auxlua

1.4.4

18 Mar 03:16
Compare
Choose a tag to compare

Fixes

  • Bumps the version dependency of auxtools, adding support for up to 515.1633 on all platforms

1.4.2

21 May 06:02
Compare
Choose a tag to compare

Added

  • Auxlua comes bundled with auxcov, a library for DM code coverage. Download auxlua-coverage.dll on Windows or libauxlua-coverage.so on Linux for the build bundled with auxcov.

Fixes

  • Bumps the version dependency of auxtools, adding support for up to 515.1606 on all platforms.

Changes

  • Auxlua is now built with LTO (link time optimization)

1.4.1

26 Mar 01:35
Compare
Choose a tag to compare

Fixes

  • Bumps the version dependency of auxtools, adding support for 515.1602 on Windows.

1.4.0

21 Dec 07:45
Compare
Choose a tag to compare

Added

  • Adds the over_exec_usage function, which returns true if the current thread has been running longer than the specified fraction of the execution limit (defaults to 0.95 if not specified).

Changes

  • Refactored the execution limit to allow for setting it to any positive finite number.

1.3.2

18 Oct 07:00
Compare
Choose a tag to compare

Fixed

  • Actually fixes linux function signature scanning for BYOND 514.1588.

1.3.1

17 Oct 00:40
Compare
Choose a tag to compare

Fixed

  • Updated auxtools with a patch to fix linux function signature scanning for BYOND 514.1588.

1.3.0

03 Sep 02:01
Compare
Choose a tag to compare

Added

  • Adds the loadstring function. It compiles a string into lua code - if the code compiles, loadstring will return a function that runs that code; otherwise, it returns nil and the error that prevented the code from compiling.

1.2.1

23 Aug 04:59
Compare
Choose a tag to compare

Fixed

  • Running an empty string (zero bytes long, not just all whitespace) no longer crashes Dream Daemon.

1.2.0

21 Aug 02:22
Compare
Choose a tag to compare

Changed

  • Citing compatibility concerns, the __index and __newindex metamethods for datums and lists have been moved behind a vars field for datums and an entries field for lists.

1.1.1

17 Aug 04:07
Compare
Choose a tag to compare

Fixed

  • Fixed getting datum-tied lists not working. (I can't believe I overlooked this)