Skip to content

v1.7.6

Compare
Choose a tag to compare
@github-actions github-actions released this 20 Feb 09:01
· 359 commits to main since this release
  • πŸ†• Add offline parameter to enable offline mode in new 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.