v0.2.0
v0.2.0
v0.2.0 introduces some breaking changes to undocumented features
- DOM elements that are marked as processed now use the property
_timeweb_processed
instead of_timeweb_customized
- Removal of prefixed global variables and properties that were assigned to window and document for realtime handling functions. They're now moved to
timeweb.realtime
(introduced in v0.1.2):window._timeweb_oldDate
(nowtimeweb.realtime.Date
)window._timeweb_oldSetTimeout
(nowtimeweb.realtime.setTimeout
)window._timeweb_oldRequestAnimationFrame
(nowtimeweb.realtime.requestAnimationFrame
)window._timeweb_oldSetInterval
(nowtimeweb.realtime.setInterval
)window._timeweb_oldCancelAnimationFrame
(nowtimeweb.realtime.cancelAnimationFrame
)window._timeweb_oldClearTimeout
(nowtimeweb.realtime.clearTimeout
)window._timeweb_oldClearInterval
(nowtimeweb.realtime.clearInterval
)window._timeweb_oldPerformance
(nowtimeweb.realtime.performance
, as intimeweb.realtime.performance.now()
)document._timeweb_oldCreateElement
(nowtimeweb.realtime.createElement
)document._timeweb_oldCreateElementNS
(nowtimeweb.realtime.createElementNS
)
- Removal of prefixed global variables for internal timeweb methods. Most of them are now directly accessible via the
timeweb
object, as of v0.1.2:window._timeweb_processUntilTime
(nowtimeweb.processUntilTime
)window._timeweb_runAnimationFrames
(nowtimeweb.runAnimationFrames
)window._timeweb_addFramePreparer
(nowtimeweb.addFramePreparer
, though this is an unstable feature that may be changed in the future, in favor of an event-type model)window._timeweb_runFramePreparers
(nowtimeweb.runFramePreparers
)window._timeweb_processNextBlock
(not accessible anymore)
Full Changelog: v0.1.2...v0.2.0