summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2021-10-11DocumentWidget: Fixed text selection regressionsJaakko Keränen
The HarfBuzz and wrapped text changes introduced subtle differences in how text selection works. Fixed a bunch of issues regarding how the individual character selection mode works in edge cases. IssueID #357
2021-10-11Gopher: Added the 'p' typeJaakko Keränen
IssueID #356
2021-10-06SidebarWidget: Crash in TOC tabJaakko Keränen
The heading items will be obsolete if clicking in the sidebar before a page load finishes. IssueID #350
2021-10-05macOS: Compiling with SDK older than 10.13Jaakko Keränen
IssueID #343
2021-10-03macOS: Compatibility with macOS 10.12 APIsJaakko Keränen
IssueID #343
2021-10-03App: Don't divide by zeroJaakko Keränen
2021-10-03GmDocument: Fixed a crash when selecting textJaakko Keränen
2021-10-03Feeds: Stable order for entries from a pageJaakko Keränen
Adjust entry discovery times so they can be sorted to the same order they appear on the source page. In practice, each entry's discovery time differs by a second. Smaller adjustments would not get saved to the entry database.
2021-10-01Fixed widget hiding in translation dialogJaakko Keränen
"From"/"To" fields were not being hidden when translation request was submitted.
2021-10-01Text: Fixed a symbol for sizeJaakko Keränen
2021-10-01Added a 90% sized UI font for URL bar indicatorsJaakko Keränen
The 80% size is used in the toolbar.
2021-10-01Added feeds update progress indicatorJaakko Keränen
Show some status info about the progress of feed refresh. The search query and feeds indicators now use the small UI font size.
2021-10-01CleanupJaakko Keränen
2021-10-01Feeds: Don't forget entries or their unread statusJaakko Keränen
Three important changes: 1) Visited URLs can be marked as "kept" so they will never be discarded due to old age. 2) Feed entries are not discarded from the database until they are removed from the source, and then become too old (six months). 3) Visited feed entry URLs are always flagged as kept, so the (un)read status will not be forgotten.
2021-10-01Text: Added small size to symbol fontsJaakko Keränen
2021-10-01Fixed failure to parse Atom feed entry timeJaakko Keränen
Atom XML feed timestamps may have a T or a space as the separator between the date and the time. IssueID #348
2021-09-30SidebarWidget: Scroll view to newly added itemsJaakko Keränen
New bookmarks and folders shouldn't appear outside the visible part of the list.
2021-09-30ListWidget: Dragging before/after an itemJaakko Keränen
It's useful to make a distinction whether a drag ended before or after an item, even if it's still referring to the same boundary between items. This allows bookmarks to be reordered inside a folder so that an item is moved to the bottom of a folder, or out of the folder following it in order.
2021-09-28macOS: Disable unused macOS 10.14 color codeJaakko Keränen
2021-09-28Window: Automatic software rendering fallbackJaakko Keränen
2021-09-28DocumentWidget: Showing error page on untrusted certsJaakko Keränen
2021-09-28ListWidget: Scrolling due to item drag should be linearJaakko Keränen
2021-09-27CommentJaakko Keränen
2021-09-27SidebarWidget: Editing folder namesJaakko Keränen
Use the regular bookmark editor but hide the Special Tags section, and disable all but the Title for now.
2021-09-27Minor UI tweaksJaakko Keränen
2021-09-27CleanupJaakko Keränen
2021-09-27macOS: Maximized window is not a special caseJaakko Keränen
2021-09-27Window: Fixed regressions in retaining window placementJaakko Keränen
Window placement was not restored correctly when the window was maximized. Maximizing a window (on Windows) causes a spurious move event to be received from SDL, and that would mess up the remembered position. Now window placemenet is saved after a run through the event loop, so the rest of the window messages have been handled.
2021-09-27Merge remote-tracking branch 'origin' into devJaakko Keränen
2021-09-27Windows: Enable dark mode; use dark title bar for dark themesJaakko Keränen
This is quite a hack, but Win32 apps don't seem to have documented access to dark mode.
2021-09-26Bookmarks: New items added to end of listsJaakko Keränen
Use max order for new bookmarks and folders.
2021-09-26macOS: Position popup menus on selected itemJaakko Keränen
2021-09-26Popup menus are positioned on selected itemJaakko Keränen
2021-09-26Compute popup menu bounds in pointsJaakko Keränen
Display bounds and the window rectangle are handled in points, so determine if the menu fits inside its root in points, too.
2021-09-26macOS: Popup window fixes; simply window creationJaakko Keränen
2021-09-26Use popup windows only when inline menus don't fitJaakko Keränen
Performance of popup windows may not be great.
2021-09-26Window: Set window position during creation; popups use sw renderJaakko Keränen
The renderer is created separately so it's possible to set the window position at creation time. Popup window use basic software rendering for (hopefully) better performance.
2021-09-26Added a PerfTimer utilityJaakko Keränen
2021-09-26CleanupJaakko Keränen
2021-09-26X11: Tuning popup window behavior and appearanceJaakko Keränen
2021-09-26macOS: Experiment with system accent colorJaakko Keränen
This doesn't quite fit in the palette system currently, but it would be a nice addition later.
2021-09-26Fixed context menu centering with popup windowsJaakko Keränen
2021-09-26Minor UI tweaksJaakko Keränen
2021-09-26Root: Crash when closing split viewJaakko Keränen
Some deleted widgets were kept around in the root's onTop list.
2021-09-26macOS: Context menu consumes modifier key releasesJaakko Keränen
2021-09-25ListWidget: Larger folder drop targetJaakko Keränen
2021-09-25Windows: Various fixes after MainWindow refactoringJaakko Keränen
2021-09-25Window: Fixed build with ENABLE_WINDOWPOS_FIX; cleanupJaakko Keränen
2021-09-25Canonical URL form decodes colons in pathsJaakko Keränen
The handling of colons (a reserved character used in the URL scheme and authority) was left ambiguous in the canonical form.
2021-09-25Merge branch 'dev' of github.com:skyjake/lagrange into devJaakko Keränen