Age | Commit message (Collapse) | Author | |
---|---|---|---|
2020-12-17 | Added "about:bookmarks" | Jaakko Keränen | |
A simple way to export all or some of your bookmarks. | |||
2020-12-12 | Added option to show URL paths as encoded or decoded | Jaakko Keränen | |
IssueID #73 | |||
2020-12-12 | IDN applies to all network schemes | Jaakko Keränen | |
But not "file" or "about". | |||
2020-12-11 | GmRequest: Punycode for domain names | Jaakko Keränen | |
To support Internationalized Domain Names, we need to encode domain names using Punycode. IssueID #73 | |||
2020-12-07 | Set REQUEST_URL in the MIME hook environment | Jaakko Keränen | |
This time without a race. IssueID #90 | |||
2020-12-06 | MimeHooks: Request URL via environment variable | Jaakko Keränen | |
IssueID #90 | |||
2020-12-04 | Windows: Dealing with "file:///" URIs | Jaakko Keränen | |
2020-12-02 | GmRequest: Don't remain locked while running MIME hooks | Jaakko Keränen | |
2020-12-02 | Added MimeHooks | Jaakko Keränen | |
This is a very powerful mechanism: translate the contents of any request to something else when the original MIME type matches a configured regexp. The external hook command may still elect not to process the request. | |||
2020-12-01 | GmRequest: Parsing the header | Jaakko Keränen | |
Use a regexp to parse the received header. This is better for recognizing invalid headers, e.g., gemini://gemini.conman.org/test/torture/0039. | |||
2020-11-26 | Added "about:blank" | Jaakko Keränen | |
IssueID #61 | |||
2020-11-26 | Feeds: Added "about:feeds" | Jaakko Keränen | |
Show all entries in a CAPCOM-like chronological list. | |||
2020-11-25 | DocumentWidget: Crash after redirects | Jaakko Keränen | |
2020-11-25 | GmRequest: Fixed lack of update notifications | Jaakko Keränen | |
2020-11-24 | Fixed threading issues and data races | Jaakko Keränen | |
The most serious problem was that GmRequest's response body was being accessed while the TlsRequest thread was modifying it. Now the response must always be locked before accessing elsewhere. There were also inefficient data updates in the media players. | |||
2020-11-23 | GmRequest: Consider a failed request as finished | Jaakko Keränen | |
2020-11-08 | Manually trusting a server certificate | Jaakko Keränen | |
2020-11-08 | Gopher improvements | Jaakko Keränen | |
Asking for query text with item type 7. Enhanced ASCII art detection. | |||
2020-11-07 | Added support for Gopher | Jaakko Keränen | |
Needs more testing. Queries are not supported yet. | |||
2020-11-07 | GmRequest: Working on Gopher requests | Jaakko Keränen | |
Todo: Move this code to a separate file. | |||
2020-11-07 | GmRequest: Mechanism for Gopher requests | Jaakko Keränen | |
2020-11-07 | GmRequest: Cleanup | Jaakko Keränen | |
2020-11-07 | GmRequest: Removed timeouts | Jaakko Keränen | |
No automatic timeouts to facilitate long connections. The server can indicate closing of the connection via TLS or by closing the socket. | |||
2020-11-07 | Treat Gopher as an unsupported protocol | Jaakko Keränen | |
2020-11-03 | GmResponse: Fixed parsing of the response | Jaakko Keränen | |
In some cases an empty <META> in the server response would cause GmResponse to treat the entire header as invalid. Also, TlsRequest was not handling closing of the TLS/SSL connection if the socket still remained open. This caused GmRequest to wait until the timeout before it realized the full response had been received. IssueID #22 | |||
2020-10-27 | Added a network/TLS error page | Jaakko Keränen | |
There is now an error page shown when the TLS request fails for some reason. Error page theming is also updated at the time when the error page is composed. | |||
2020-10-20 | Added timestamps to serialized responses | Jaakko Keränen | |
A new version of the binary serialization format that includes timestamps for GmResponse. | |||
2020-10-14 | Use libmpg123 to decode MPEG audio | Jaakko Keränen | |
mpg123 is configured as an optional dependency. Works for full files currently. | |||
2020-10-09 | Support Ogg Vorbis audio | Jaakko Keränen | |
Playback starts as soon as possible, so one can listen while streaming. stb_vorbis.c needed a tiny tweak to not die on a file without (Ogg? Vorbis?) comments. | |||
2020-10-04 | Working on audio playback | Jaakko Keränen | |
Audio players are displayed the same way as images. When playing, a decoder runs in a background thread producing samples suitable for output. | |||
2020-09-22 | DocumentWidget: Drawing side elements | Jaakko Keränen | |
The banner appears on the left, if there is room in the margin. Also added a document timestamp in the bottom to see when the data was received. | |||
2020-09-17 | Download progress indicator for large downloads | Jaakko Keränen | |
2020-09-15 | GmDocument: Recognize "about:" links | Jaakko Keränen | |
2020-09-11 | macOS: Handling launch URLs and drop'n'drop | Jaakko Keränen | |
Improved drop and drop event handling: multiple dropped files/URLs open in new tabs. The application registers gemini: as a handled URL scheme. | |||
2020-09-01 | Proxy improvements | Jaakko Keränen | |
Verify domain name against the request and now against the original URL. HTTP proxy overrides the default handling of HTTP URLs. | |||
2020-09-01 | Scheme-specific proxies for Gopher and HTTP | Jaakko Keränen | |
Make requests via a proxy. TODO: What about the server domain verification? Check against the proxy hostname? | |||
2020-08-29 | GmCerts: Fixed certificate import | Jaakko Keränen | |
2020-08-28 | GmRequest: Use selected identity for request | Jaakko Keränen | |
2020-08-25 | It's called a "scheme" | Jaakko Keränen | |
2020-08-24 | Updated for the_Foundation API changes | Jaakko Keränen | |
2020-08-24 | Initialize RegExpMatches | Jaakko Keränen | |
2020-08-22 | Added BSD 2-clause license and copyright notices | Jaakko Keränen | |
2020-08-21 | Experimenting with text art | Jaakko Keränen | |
Convert glyph bitmaps to Unicode block characters | |||
2020-08-20 | Cleanup | Jaakko Keränen | |
2020-08-19 | Help: Elaborate on link navigation via keyboard | Jaakko Keränen | |
2020-08-18 | Minor tweaks | Jaakko Keränen | |
2020-08-15 | Built-in embedded “about:” pages; Help menu | Jaakko Keränen | |
2020-08-13 | App-wide document zoom; added --echo option for debugging | Jaakko Keränen | |
Fonts are shared by all documents, so zoom likewise needs to be app-wide. | |||
2020-08-12 | Save and load app state (tabs, history) | Jaakko Keränen | |
2020-08-10 | Cleanup | Jaakko Keränen | |