Skip to content

2.24.0 - Did Renderer, Download page

Latest

Choose a tag to compare

@github-actions github-actions released this 23 Apr 16:39

Added

  • did:// URLs now get rendered out with special formatting
  • There's a new Download page menu item that lets you download whatever resource you're currently looking at
  • We now have an easier way to upload to your default hyperdrive:
const response = await fetch('hyper://localhost/example.txt', {
  method: 'PUT',
  body: 'Hello World'
})

// This is where the data got uploaded
const location = response.headers.get('Location')
// Clear the response body or else electron will flip out
await response.text()

Removed

  • We no longer create desktop shortcuts instead of bookmarks. If this was something you used a lot, please open an issue!