Skip to content

Releases: Newexotik/DynamicTables

Release 0.1.0

08 Mar 11:14

Choose a tag to compare

Release 0.05

12 Jan 09:38
1e8d511

Choose a tag to compare

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

01 Nov 23:00
e1928de

Choose a tag to compare

  • for loops should return the actual index for arrays now

Release 0.04

01 Nov 22:41
e1928de

Choose a tag to compare

  • 60% Faster than previous version

Release 0.031

18 Oct 09:39
8f7502f

Choose a tag to compare

  • 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
	]]
end

Release 0.03

17 Oct 21:38
8f7502f

Choose a tag to compare

  • 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

09 Oct 14:45
8f7502f

Choose a tag to compare

  • 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

26 Sep 12:32
1e0b66b

Choose a tag to compare

  • added cooldown to server-client replication to make the module usable in expensive loops