Skip to content

v0.4.0

Pre-release
Pre-release
Compare
Choose a tag to compare
@ffrostfall ffrostfall released this 07 Mar 01:46
· 28 commits to master since this release

0.4.0

Added

  • Namespaces have been added.
  • Structs have been added.
  • Three new data types: Instance, unknown, and nothing. The "nothing" type is to allow for packets without any contents.
  • Added wait() to packets.

Improvements

  • Arrays are now forced to have number indexes
  • Packets are now based off closures, instead of metatables. This means you now have to use . indexxing instead of : to call methods.
  • You can now have duplicate packet contents
  • Packets now take a single value (Which can be a struct) instead of being "special".
  • Significant optimization: Packets are now singular values that can be structs, which reduces complexity, thus increasing performance.
  • Buffers are now reused, preventing resizing from being necessary. This should result in massive performance gains.

Fixes

  • Added sendTo() to the Packet type. This fixes autocomplete.