Age | Commit message (Collapse) | Author | |
---|---|---|---|
2021-01-27 | Added preference for maximum cache size | Jaakko Keränen | |
Rather than simply limiting each tab's cache to 50 most recent URLs, there is now a user-configurable maximum size. If more content is cached, the oldest/largest responses will be removed from memory. The default maximum cache size is 10 MB. IssueID #109 | |||
2021-01-26 | Merge branch 'pullrequests/Br0000k/dev' into dev | Jaakko Keränen | |
2021-01-26 | Keybindings for new tab, close tab, add bookmark | Jaakko Keränen | |
Added new keybindings for opening and closing a tab. Also added a keybinding for adding a bookmark so ⌘D can be made available. On macOS, there is a default Window > Close menu item, so treat that as a "tabs.close" command to make it bindable. IssueID #121 | |||
2021-01-26 | InputWidget: Optional domain punycoding for UI | Jaakko Keränen | |
2021-01-25 | Added 'Close tab' key binding | Br0000k | |
Added 'Close tab' key binding option in response to issue #121 | |||
2021-01-25 | LookupWidget: Fixed Unicode errors | Jaakko Keränen | |
Must decode Unicode characters since the search term is UTF-8. IssueID #119 | |||
2021-01-24 | DocumentWidget: Fix/improve home row link navigation | Jaakko Keränen | |
Removed the second `U` from the set of home row keys for link navigation. Added a new command bound to `.` (period) for switching to the next set of links for home row navigation. This makes it possible to access all visible links via keyboard no matter how many there are. `.` can also be used to activate home row navigation if it isn't active. IssueID #111 | |||
2021-01-19 | Closing tabs with the middle mouse button | Jaakko Keränen | |
IssueID #115 | |||
2021-01-18 | Fixed opening heading feed entries in a tab | Jaakko Keränen | |
The heading goto fragment wasn't being stripped appropriately from the URLs. | |||
2021-01-18 | SidebarWidget: New color for feed names | Jaakko Keränen | |
Separate the entry titles from the feed titles. | |||
2021-01-17 | Improved menu button behavior | Jaakko Keränen | |
Clicking a menu button while the menu is open should just close the menu. Menus should not close if the mouse pointer leaves the window. | |||
2021-01-17 | macOS: Added Debug Information to Help menu | Jaakko Keränen | |
2021-01-16 | SidebarWidget: Added "Copy Fingerprint" for identities | Jaakko Keränen | |
2021-01-12 | LookupWidget: Item icons are aligned horizontally | Jaakko Keränen | |
2021-01-12 | Added keybinding for toggling URL hover showing | Jaakko Keränen | |
IssueID #64 | |||
2021-01-12 | SidebarWidget: Limit to 100 feed entries | Jaakko Keränen | |
Not including separators. | |||
2021-01-12 | Fixed: Percent-encode spaces when copying | Jaakko Keränen | |
IssueID #112 | |||
2021-01-11 | Opening link in new tab via home row keys | Jaakko Keränen | |
Added a new keybinding for opening links via keyboard in new tab. The default binding is Shift+F. The H key is now used for setting the hover link. | |||
2021-01-10 | Added a keybinding to hover on links via keyboard | Jaakko Keränen | |
Enables viewing full URLs when navigating via keyboard. | |||
2021-01-10 | "Reload page" is bindable; added F5 as built-in binding | Jaakko Keränen | |
IssueID #115 | |||
2021-01-10 | SidebarWidget: Feed unread status vs. context menu | Jaakko Keränen | |
2021-01-10 | Showing the response header in Page Information | Jaakko Keränen | |
Unsuccessful requests show the response header. IssueID #97 | |||
2021-01-10 | Option to show full URL when hovering on a link | Jaakko Keränen | |
The URL is shown in the bottom of the page. IssueID #64 | |||
2021-01-10 | Cleanup | Jaakko Keränen | |
2021-01-10 | Text: Lazy glyph rasterization | Jaakko Keränen | |
Glyphs are now rasterized only when they are needed for drawing. Otherwise, only the metrics and the cache position are set. This is more robust as we can retry rasterizing glyphs that previously failed, and faster because measuring (e.g., document layout) doesn't rasterize anything. | |||
2021-01-04 | Text: Fixed a very minor memory leak | Jaakko Keränen | |
Sometimes a glyph was rasterized but it was not possible to create a texture out of it. In this case, the surface was never released. | |||
2021-01-04 | Update Help and release notes | Jaakko Keränen | |
2021-01-04 | CertImportWidget: Handle dropped file; creating identity | Jaakko Keränen | |
IssueID #105 | |||
2021-01-04 | Added a client certificate import dialog | Jaakko Keränen | |
Todo: Drag-and-drop; the actual identity creation step. | |||
2021-01-03 | Creating a certificate import dialog | Jaakko Keränen | |
Just the widgets thus far. | |||
2021-01-03 | Tweaked text color of Pure White UI theme | Jaakko Keränen | |
Slightly darker. | |||
2021-01-03 | DocumentWidget: Updating trust | Jaakko Keränen | |
Hide the warning banner immediately. IssueID #107 | |||
2021-01-03 | Fixed redirection opening in the wrong tab | Jaakko Keränen | |
2021-01-03 | Improving the Page Information dialog | Jaakko Keränen | |
This should use a proper dialog instead of a simple message. | |||
2021-01-03 | Updating the navbar URL when opening tabs | Jaakko Keränen | |
2021-01-03 | Added menu item for import a certificate | Jaakko Keränen | |
2021-01-03 | Expanded page information | Jaakko Keränen | |
The Certificate Status popup was expanded with certificate fingerprint, media type, and content length. | |||
2021-01-02 | SidebarWidget: Background color for remote bookmarks | Jaakko Keränen | |
2021-01-02 | Bookmarks: Remote bookmarks grouped under source | Jaakko Keränen | |
Rather than mix remote bookmarks with local ones, group them under the source bookmark in "pseudo-folder" fashion. The source is shown as bold. | |||
2021-01-02 | Merge branch 'finger' into dev | Jaakko Keränen | |
2021-01-02 | Add support for Finger protocol | Jaakko Keränen | |
A patch courtesy of John Cowan. IssueID #106 | |||
2020-12-31 | Text: Clear glyph cache when it fills up | Jaakko Keränen | |
We can use a smaller glyph cache if we clear it when it fills up. Even a large cache would eventually fill up, so clearing is a good strategy anyway. Clears occur still rather infrequently. | |||
2020-12-30 | Update bookmark icons when opening pages | Jaakko Keränen | |
If bookmarks are imported or added manually, they won't have the correct site icons. Whenever a page is loaded the bookmark icon is now updated. | |||
2020-12-29 | SidebarWidget: Finetuning the secondary item colors | Jaakko Keränen | |
2020-12-29 | Added a bold UI font | Jaakko Keränen | |
The bold UI label font is used for highlighted sidebar items and default buttons. | |||
2020-12-28 | SidebarWidget: Opening feed entries in new tab | Jaakko Keränen | |
2020-12-27 | SidebarWidget: Fixed editing identity notes | Jaakko Keränen | |
2020-12-24 | Fixed percent-encoding the query string | Jaakko Keränen | |
Good old mutable vs. non-mutable argument confusion. The encoded return value was ignored (and leaked). | |||
2020-12-24 | Fixed: InputWidget cursor positioning | Jaakko Keränen | |
2020-12-22 | Cleanup: Language in New Identity dialog | Jaakko Keränen | |