summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2021-11-30SidebarWidget: Added short label for Mark All as ReadJaakko Keränen
The sidebar doesn't have much room so use a different label for the button.
2021-11-29Windows: Tell WinSparkle the correct app versionJaakko Keränen
2021-11-29Windows: Order of main menu itemsJaakko Keränen
Place the "Check for Updates" item immediately following Preferences, like on macOS.
2021-11-29Fixed crash when creating a bookmarkJaakko Keränen
The parent folder pointer was possibly uninitialized.
2021-11-29Widget: More accurate division of available spaceJaakko Keränen
Take fractional pixels into account when laying out widgets. This ensures that the entire available space is used, particularly when there are many children. IssueID #403
2021-11-29Fixed issues with tab button labelsJaakko Keränen
Fixed issue with very short text not being truncated at all. A short truncated label will now just show the icon, if one is set. The tab close buttons don't appear if the buttons are too small.
2021-11-29Fixed shfiting position of the "New Tab" buttonJaakko Keränen
IssueID #403
2021-11-28Bookmarks: Crash when creating a bookmarkJaakko Keränen
IssueID #402
2021-11-28Fixed page timestamp; 24-hour time preferenceJaakko Keränen
IssueID #349
2021-11-27GmDocument: Heading level 3 indents like text linesJaakko Keränen
Making the heading hierarchy even clearer. H3 is now indented like normal text lines, and uses a bolder font.
2021-11-27GmDocument: Changed heading 3 to semiboldJaakko Keränen
The bold weight was a little bit too strong compared to the regular-weight level 2 headings.
2021-11-27GmDocument: Allow ANSI BG setting to take effectJaakko Keränen
2021-11-27Window: Don't steal focus on hoverJaakko Keränen
This was incorrect on X11 at least. Should still test on Windows. IssueID #399
2021-11-27InputWidget: Mishandling of the A keyJaakko Keränen
2021-11-25Color: Parse 24-bit SGR foreground/backgroundJaakko Keränen
2021-11-25Unsplit button in toolbarJaakko Keränen
IssueID #378
2021-11-25GmDocument: Heading font stylesJaakko Keränen
Swapped bold styling of heading levels 2 and 3 for better visual distinction of the hierarchy.
2021-11-24Toolbar button for toggling sidebarJaakko Keränen
2021-11-24SidebarWidget: Tighter layout for Feeds actionsJaakko Keränen
2021-11-24SidebarWidget: Non-item-related context menusJaakko Keränen
IssueID #388
2021-11-24InputWidget: Ctrl+A to select all (on PC)Jaakko Keränen
The Emacs-style Ctrl+A and Ctrl+E are only available on macOS now. This could still use a keybinding for customizing the behavior.
2021-11-24Window: Only one draw operation at onceJaakko Keränen
Ensure that a draw is not started if it is already ongoing, especially when using the resize event watcher.
2021-11-24App: Finding the resources fileJaakko Keränen
While the hardcoded path is still there, it is now checked in addition to the normal executable-relative paths, not replacing them. IssueID #395
2021-11-24Bookmarks: Recent folder when adding a bookmarkJaakko Keränen
When creating a bookmark, use the chosen folder as the active one even if it's the root folder.
2021-11-24SidebarWidget: Save feeds mode (all/unread)Jaakko Keränen
2021-11-24DocumentWidget: Improved footer buttons positioningJaakko Keränen
No more animation offset hacks: just reposition the buttons whenever the view is scrolling. Fixed glitches with document centering. The page margins are a bit complicated as they change depending on whether the banner is visible.
2021-11-23Widget: Removed the animation offset hackJaakko Keränen
2021-11-23SidebarWidget: Hover state colorsJaakko Keränen
2021-11-23SidebarWidget: CleanupJaakko Keränen
2021-11-23Color: Improve legibility of ANSI foreground colorsJaakko Keränen
On colored theme backgrounds, take great liberties to modify the ANSI foreground color so it remains legible.
2021-11-23Preferences: Option for ANSI background color (SGR)Jaakko Keränen
2021-11-23Added Turkish UI languageJaakko Keränen
IssueID #396
2021-11-23SidebarWidget: Redesigned Feeds action toolbarJaakko Keränen
The action toolbar now has a button for marking all as read, and keyboard shortcuts for switching between Unread and All modes.
2021-11-23Select folder when adding/editing bookmarksJaakko Keränen
Most recently used folder is persistently stored in bookmarks.ini. IssueID #358
2021-11-23Feeds: Fixed handlig of duplicate entriesJaakko Keränen
Feed entries are expected to have unique URLs, since the URL is the identifier of an entry. If a feed has the same URL for more than one entry, only process the first one and ignore the rest. An entry will still show up as unread if it keeps the same URL but changes its title.
2021-11-22GmDocument: Arrows as custom link iconsJaakko Keränen
2021-11-22Input queries vs. navigation historyJaakko Keränen
Input query responses (status 1x) are not preserved in History so that when navigating back, they are skipped. The corresponding URLs are flagged as Transient so they are not shown in the History sidebar. The History sidebar shows the query string in URLs. IssueID #382
2021-11-21Apply ANSI SGR background colorsJaakko Keränen
The background color of the current text run can be changed via ANSI SGR control sequences. Improved the ANSI escape sequence regex to detect more than just SGR sequences, so they can be properly filtered out.
2021-11-21Merge branch 'dev' into work/v1.9Jaakko Keränen
# Conflicts: # CMakeLists.txt # res/about/version.gmi
2021-11-21Site-specific Titan upload identityJaakko Keränen
The identity to be used for uploads is now in sitespec.ini, so it applies to an entire site root. This should match actual use cases better than having URL-specific identities. Also fixed an issue with native menus. Replacing the items with new ones was not implemented. IssueID #379
2021-11-19CleanupJaakko Keränen
2021-11-19CleanupJaakko Keränen
2021-11-19Fixed clicking on tabs when banner is underneathJaakko Keränen
Banner was too eager to eat all mouse events.
2021-11-14Localized language names in PreferencesJaakko Keränen
Each dropdown item now uses its own language. This avoids the need to translate all language names to every language, and also helps the user to find the language(s) they understand. The name strings are incorporated as C11 u8"" string literals, which hopefully won't cause compatibility issues as the_Foundation already requires C11. Note that the Translation dialog retains the localized language labels because the user may not speak the source language, so they need to see it in their own language. IssueID #391
2021-11-14Resources: Added cs lang blobJaakko Keränen
2021-11-14Merge branch 'dev' into work/v1.9Jaakko Keränen
# Conflicts: # CMakeLists.txt # Depends.cmake # src/lang.c
2021-11-13DocumentWidget: Trust button shown only when untrustedJaakko Keränen
2021-11-13DocumentWidget: Fixed appearance of Trust buttonJaakko Keränen
2021-11-12FontPack: Font dropdown includes IDs if ambiguousJaakko Keränen
If some fonts have the same human-readable name, the unique font ID will be added to show which font it actually is.
2021-11-12Fixed crash if "open" command has no "url"Jaakko Keränen
IssueID #385