summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2021-01-24Added an AppData XML documentJaakko Keränen
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-17Fixed Xcode warningJaakko Keränen
The product bundle identifier must match the Info.plist file.
2021-01-16Updated README with build optionsJaakko 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-12Updated release notesJaakko Keränen
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-12Updated release notesJaakko Keränen
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-10Updated release notesJaakko Keränen
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-10macOS: Register "gopher:" URL schemeJaakko Keränen
IssueID #113
2021-01-10Updated release notesJaakko 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-09Updated the_FoundationJaakko Keränen
2021-01-05Updated license textJaakko Keränen
"All rights reserved" is not part of the BSD 2-clause license text.
2021-01-05Updated bincat.sh to use /bin/bashJaakko Keränen
This works on Linux, but of course makes bash a dependency. ENABLE_BINCAT_SH is still disabled by default.
2021-01-05Don't use bincat.sh by defaultJaakko Keränen
It's not portable enough, need to tweak the script.
2021-01-05Embed: Use a shell script for bincatJaakko Keränen
Todo: Needs testing if this is portable enough. Should be pretty POSIX, though.
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-04Updated release notesJaakko Keränen
2021-01-04GmDocument: Quote border line on empty quote linesJaakko Keränen
IssueID #108
2021-01-04Updated HelpJaakko Keränen
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-04Updated the_FoundationJaakko Keränen