   zTimeLib
------------ v0.6 ------------
   r1
*fixed typo which made bin sizes much smaller than intended
*removed mod file for easily embedding; (simple file entry in mod needed to embed)
*fixed bug in periodic latch allowing double execs after the latch is reopened
*better memory usage/cleaned up leftover variables; updated debug messages to be clearer
------------ v0.5 ------------
   r2
*added smart miltilevel queueing / schedule bins to reduce overhead on large
queues
   r1
*added frame scheduler; allows you to schedule a function to run every frame
(basically same as an onupdate function) BE JUDICIOUS WHEN USING THIS,
THROTTLE IF YOU CAN, DO NOT USE THIS FOR NORMAL TIMEKEEPING/SCHEDULING; IT IS
FOR TASKS WHICH REQUIRE MORE PRECISION THAN THE TRADITIONAL DISPATCHER CAN GIVE
*reordered a few local declarations
*added CreatePeriodicLatch function
------------ v0.4 ------------
   r3
*localized UniqueID function
*better documentation
*something minor fix i can't think of atm
   r2
*removed excessive functions to make it more line the traditional model of a lib (this includes any ByName functions as they can be easily implemented in any addon that uses zTime, and some might not use them)
*better debug/error handling
*fixed comments to be consistant
*changed epoch, timedata, and dispatchtable variables to local scope for protection, use zTime.GetEpoch(), zTime.GetTimeData(), and zTime.GetDispatchTable() instead
   r1
*fixed a bug causing the time stamp function to break on initial client load only
*cleaned up a lot of code
*fixed a bug causing repeating timers to gradually become out of sync with there exec times
*added pause support for schedules
*added callbacks for nearly all functions
------------ v0.3 ------------
   r1
*added full support for getting actual time data from chat timestamps
------------ v0.2 ------------
   r1
*fixed print/debug printers to accept any valid lua data
*fixed bug with AddSchedule when not supplying the repete arg
*added lots of debug messages, and three differnt debug levels
*added zTime.DumpSchedule for easier outputting of running schedules
*added many more comments / info about functions
*added time output formatting functions
------------ v0.1 ------------
   r1
*initial release
