Releases: Newexotik/DynamicTables
Releases · Newexotik/DynamicTables
Release 0.1.0
Full Changelog: Release0.05...0.1.0
Release 0.05
updates now happen every frame instead of every time the index changes
this is good for changing lots of items in the table all at once because it prevents remote event spamming
Release 0.04-1
- for loops should return the actual index for arrays now
Release 0.04
- 60% Faster than previous version
Release 0.031
- Default methods that are added by the module will now be ignored when getting length of a dynamictable or using a for i, v loop
local t = DynamicTables("Test")
t.A = true
t.B = false
print(#t) -- Prints 2
for i, v in t do
print(i, v)
--[[
Prints:
A true
B false
]]
endRelease 0.03
- Rewrote the module
- 1.5x faster
- Optimized server->client replication
- Removed support for nested tables, simply said: you cant use :Changed() on tables that are inside a DynamicTable
Release 0.02-2
- stopped supporting printing tables (sorry), the module that I was using to turn tables into strings was using tons of deprecated stuff
Release 0.02-1
- added cooldown to server-client replication to make the module usable in expensive loops