summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2021-01-24DocumentWidget: Fix/improve home row link navigationJaakko 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-19Feeds: Don't trim quotes from titlesJaakko Keränen
2021-01-19Closing tabs with the middle mouse buttonJaakko Keränen
IssueID #115
2021-01-18Better versioned file name for visited URLsJaakko Keränen
2021-01-18Fixed URL visit time serializationJaakko Keränen
The timestamps written to "visited.txt" were being shifted by GMT offset on each write/read, rendering them increasingly incorrect. Since these timestamps cannot be trusted, ignore the old file and keep proper timestamp values in "visited2.txt" from now on. It is also more efficient to not convert each timestamp to a date when serializing.
2021-01-18Fixed opening heading feed entries in a tabJaakko Keränen
The heading goto fragment wasn't being stripped appropriately from the URLs.
2021-01-18SidebarWidget: New color for feed namesJaakko Keränen
Separate the entry titles from the feed titles.
2021-01-18Renamed ".binary" filesJaakko Keränen
Use the .lgr extension for Lagrange binary files.
2021-01-17Improved menu button behaviorJaakko 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-17macOS: Added Debug Information to Help menuJaakko Keränen
2021-01-17CleanupJaakko Keränen
2021-01-16SidebarWidget: Added "Copy Fingerprint" for identitiesJaakko Keränen
2021-01-15"about:debug" shows cache informationJaakko Keränen
IssueID #109
2021-01-12LookupWidget: Item icons are aligned horizontallyJaakko Keränen
2021-01-12Added keybinding for toggling URL hover showingJaakko Keränen
IssueID #64
2021-01-12SidebarWidget: Limit to 100 feed entriesJaakko Keränen
Not including separators.
2021-01-12Fixed: Percent-encode spaces when copyingJaakko Keränen
IssueID #112
2021-01-12Feeds: Strip default Gemini ports from URLsJaakko Keränen
2021-01-11Opening link in new tab via home row keysJaakko 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-11Omit default Gemini port from URLsJaakko Keränen
Including the default port number is redundant. Normalize to a port-less URL.
2021-01-10Added a keybinding to hover on links via keyboardJaakko Keränen
Enables viewing full URLs when navigating via keyboard.
2021-01-10"Reload page" is bindable; added F5 as built-in bindingJaakko Keränen
IssueID #115
2021-01-10SidebarWidget: Feed unread status vs. context menuJaakko Keränen
2021-01-10Showing the response header in Page InformationJaakko Keränen
Unsuccessful requests show the response header. IssueID #97
2021-01-10Feeds: Don't trim opening parens/bracketsJaakko Keränen
IssueID #114
2021-01-10Option to show full URL when hovering on a linkJaakko Keränen
The URL is shown in the bottom of the page. IssueID #64
2021-01-10CleanupJaakko Keränen
2021-01-10Text: Lazy glyph rasterizationJaakko 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-04Text: Fixed a very minor memory leakJaakko 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-04GmDocument: Quote border line on empty quote linesJaakko Keränen
IssueID #108
2021-01-04Update Help and release notesJaakko Keränen
2021-01-04CertImportWidget: Handle dropped file; creating identityJaakko Keränen
IssueID #105
2021-01-04GmCerts: Importing an existing certificateJaakko Keränen
2021-01-04App: Drag-and-drop events passed to all widgetsJaakko Keränen
2021-01-04Added a client certificate import dialogJaakko Keränen
Todo: Drag-and-drop; the actual identity creation step.
2021-01-04GmDocument: Empty lines vs. consecutive quotesJaakko Keränen
Detecting if quote lines are consecutive was changed so that an empty line can be used to separate quotes. For example, see Astrobotany's Message Board. IssueID #108
2021-01-03Creating a certificate import dialogJaakko Keränen
Just the widgets thus far.
2021-01-03Tweaked text color of Pure White UI themeJaakko Keränen
Slightly darker.
2021-01-03DocumentWidget: Updating trustJaakko Keränen
Hide the warning banner immediately. IssueID #107
2021-01-03Fixed redirection opening in the wrong tabJaakko Keränen
2021-01-03Improving the Page Information dialogJaakko Keränen
This should use a proper dialog instead of a simple message.
2021-01-03Updating the navbar URL when opening tabsJaakko Keränen
2021-01-03Added menu item for import a certificateJaakko Keränen
2021-01-03Expanded page informationJaakko Keränen
The Certificate Status popup was expanded with certificate fingerprint, media type, and content length.
2021-01-02SidebarWidget: Background color for remote bookmarksJaakko Keränen
2021-01-02Bookmarks: Remote bookmarks grouped under sourceJaakko 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-02Merge branch 'finger' into devJaakko Keränen
2021-01-02GmDocument: New link icon for Finger linksJaakko Keränen
Added a new link flag to identify Finger links so they can use their own icon.
2021-01-02Add support for Finger protocolJaakko Keränen
A patch courtesy of John Cowan. IssueID #106
2020-12-31Text: Clear glyph cache when it fills upJaakko 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.