summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2021-04-10Mobile: Zooming using pinch gesturesJaakko Keränen
2021-04-10Touch: Multitouch pinch eventsJaakko Keränen
2021-04-10Touch: Hover behavior improvementsJaakko Keränen
Don't show hover on links and lists when no finger is actively touching.
2021-04-10Mobile: Hide shortcut keysJaakko Keränen
On iPad, the platform convention is to show these in a popup anyway.
2021-04-10Touch: Multitouch scrollingJaakko Keränen
Each finger is emitting scroll events at their own position, enabling scrolling multiple widgets at the same time.
2021-04-10Mobile: Freeze UI draws when app hiddenJaakko Keränen
Maybe a workaround for the squished view issue?
2021-04-10Fixed opening drag-and-dropped Gopher linksJaakko Keränen
2021-04-09Haiku: fix default data dirNikolay Korotkiy
2021-04-09Mobile: Adjusting phone layout of PreferencesJaakko Keränen
2021-04-09Mobile: Fixed dialog field misalignmentsJaakko Keränen
2021-04-09Mobile: Wrong menu item labelJaakko Keränen
2021-04-09DocumentWidget: Slightly longer alt text hover delayJaakko Keränen
2021-04-09Feeds: "Add bookmark..." does nothingJaakko Keränen
2021-04-08App: Default CA cert setupJaakko Keränen
In case prefs.cfg doesn't set CA file/path, we'll still need to initialize the CA cert store for later use.
2021-04-08Mobile: Sidebar on orientation change; paddingJaakko Keränen
Sidebar is hidden on orientation changes. Added a bottom padding to account for the overlapped toolbar.
2021-04-08Mobile: Adjusted toolbar show/hide behaviorJaakko Keränen
2021-04-08Mobile: Fixed preference panelsJaakko Keränen
Must disable the hidden panels.
2021-04-08Update keybindings list when language changesJaakko Keränen
2021-04-07Window: Only draw widgets after window exposedJaakko Keränen
No point in wasting time drawing anything before the window is actually visible. Should test this is different platforms, though...
2021-04-07GmDocument: Trimming link labels with custom EmojiJaakko Keränen
Variation selectors should be skipped as well.
2021-04-07Text: Promoted codepoint type detection to the_FoundationJaakko Keränen
2021-04-07Windows: Don't set a maximum size for the windowJaakko Keränen
The maximum size was introduced to avoid the window being too large at launch, but this doesn't work if the window is moved to different monitor. IssueID #199
2021-04-07macOS: No display scaling, only pixel ratioJaakko Keränen
IssueID #239
2021-04-07SidebarWidget: Store width as resolution independent unitsJaakko Keränen
DPI and pixel ratio changes should not radically change width of the sidebar. IssueID #239
2021-04-07Window: Adjusted minimum display scalingJaakko Keränen
2021-04-07Window: Pixel ratio and display scalingJaakko Keränen
IssueID #239
2021-04-05Mobile: Fixing the build post-1.3Jaakko Keränen
2021-04-05Added option to disable bold linksJaakko Keränen
IssueID #233
2021-04-05Text: Fixed crash during word wrappingJaakko Keränen
Word wrap position must not go past end of input.
2021-04-05Added new language strings for media, feeds listJaakko Keränen
"about:feeds", inline downloads, and media player UI didn't have translations.
2021-04-05Fixed color escapes in link visit dateJaakko Keränen
A color escape may be longer than two characters. `run_Font_()` was not parsing extended color escapes correctly.
2021-04-04DocumentWidget: Key navigation mode vs. bound actionsJaakko Keränen
Events are dispatched first to child widgets, so the menus and actions of DocumentWidget were still handling key navigation events even though they shouldn't.
2021-04-04Widget: Added a debug utilityJaakko Keränen
Printing the list of parents.
2021-04-04GmDocument: Broken bullet in LiterataJaakko Keränen
2021-04-04GmDocument: Fixed list item overdrawJaakko Keränen
Bullet icon backgrounds were overlapping the bullet text, causing them to be overdrawn.
2021-04-04Text: Kerning was brokenJaakko Keränen
Kerning has been broken by the changes for adaptive Emoji spacing inside monospace text. Now the current X position is updated correctly also for kerning.
2021-04-03Lang: Added Occidental and SerbianJaakko Keränen
IssueID #192
2021-04-03InputWidget: Don't buffer contents too earlyJaakko Keränen
2021-04-03GmDocument: Normalizing plain textJaakko Keränen
Plain text should always go through normalization so tabs are replaced with a known number of spaces. The text renderer uses \t for column alignment.
2021-04-03Window: Defer events posted during startupJaakko Keränen
2021-04-03Preferences: Show URL on hover defaults to "no"Jaakko Keränen
2021-04-03Drawing only during window updateJaakko Keränen
Glyphs were inadvertently being cached already during measuring for layout. DocumentWidget was buffering graphics too early. Now buffered draws are prepared during normal drawing, when needed.
2021-03-31Media: Fixed image resizing when there is no maximum texture sizeJaakko Keränen
2021-03-31Text: Preserve alpha when caching glyphsJaakko Keränen
Ensure no blending is done. Glyphs are supposed to be cached as-is.
2021-03-31Text: Workaround for glyph rasterization problem with older SDL versionsJaakko Keränen
2021-03-31CleanupJaakko Keränen
2021-03-30Widget: Arrangement debugging; min sizeJaakko Keränen
There is a problem with repeated arrangements: the previous set sizes affect subsequent outcomes. This results in Preferences not being able to reduce in size, only to expand. It should be possible to reset sizes back to zero/minimum size before starting an arrangement, but LabelWidget needs to cooperate by using `minSize` to set its default size. `minSize` is preferable to fixedSize because then the widget can go through the usual arranging logic. To be continued at a later time...
2021-03-30GmDocument: Font size for preformattedJaakko Keränen
Indents are disabled in the beginning.
2021-03-29Paint: Fixed clipping of negative X regionsJaakko Keränen
2021-03-29Widget: Flag for allowing horizontal overflowJaakko Keränen
Two-column headings are supposed to span both columns.