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!