Update README: Cursive mandates UTF-8
Fix bookmarks selection of the start page
Safely unwrap URL host
This commit fixes a crash that happens when the user attempts to
navigate to `gemini://'
With this fix, Asuka now displays an error message:
Could not connect to :1965
failed to lookup address information: Name or service not known
Update crate version to match release tag
The latest tag is v0.8.1, but the crate tag is still v0.8.0. This fixes
the discrepancy.
Update README and help message.
Fix line from previous commit that was accidentally removed.
Support specifying a URL on the command line.
This change will visit the first URL passed in on the command line.
add secret input capability
This adds the secret input capability as specified for status code 11.
Create a `History` structure
The goal is to move the history data out of global state and into the
user-data area provided by `cursive`. This begins that process by
creating a self-contained structure for manipulating history. For now,
the original module functions are provided. Once the history structure
is embedded as user data, they will no longer be necessary.
This also changes behaviour slightly, by allowing all URLs in the
history stack to be popped off, thereby returning to the start page.
However, the content loading and drawing functions don't yet support
this, so nothing changes on the user end.
Add reload capability
This adds a reload button, with shortcut `r`, that reloads the current
page (if any). This simply re-fetches the content and redraws the page
(which also resets the cursor position).
Replace `absolute::make` with `Url::join`
`Url::join` implements all the functionality of `absolute::make` when it
is given the current URL as the base. As such, the `absolute` module
has been removed in its entirety, and now-unused functions removed.
In addition, some functions have been transitioned to using `Url`s
instead of normal strings for URLs.
handle preformatted lines