v1.7.6
-
π Add
offline
parameter to enable offline mode innew PageSpy()
. In offline mode, no room will be created, and no WebSocket connection will be established.window.$pageSpy = new PageSpy({ ..., offline: true, // Default value is false });
-
π The "Download Logs" button in the modal control now supports custom behavior.
PageSpy.registerPlugin(new DataHarborPlugin({ onDownload: (data) => { // Custom logic here } })); window.$pageSpy = new PageSpy();
-
π Data collected by the DataHarborPlugin plugin is no longer stored in indexedDB but adjusted to be stored in memory.