summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
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
2021-11-10Fixed URL encoding of plus charactersJaakko Keränen
The Gemini specifications says to encode RFC3986's reserved characters in URLs, but that didn't apply to plus characters in the "canonical" form.
2021-11-09DocumentWidget: Error message cleanupJaakko Keränen
Some error pages would show response meta string instead of the actual error title. Don't show the internal error numbes in Page Information.
2021-11-09GmCerts: Allow trusting certificate regardless of domain nameJaakko Keränen
2021-11-08FontPack: Don't crash if a font file is missingJaakko Keränen
2021-11-06CleanupJaakko Keränen
2021-11-06Fixed issues with tall popup menusJaakko Keränen
A tall popup menu needs to use overflow scrolling, but the size of the display wasn't considered. Now a popup window is fit to the usable bounds of the display.
2021-11-06DocumentWidget: Fixed incorrect document widthJaakko Keränen
2021-11-04Added Czech UI translationJaakko Keränen
2021-11-04Added Hungarian UI translationJaakko Keränen
2021-11-04Widget: Scroll overflow widgets via mouse hoverJaakko Keränen
Useful for tall menus and dialogs on the desktop.
2021-11-03Popup menus with a selected item are allowed to overflow top/bottomJaakko Keränen
The point of positioning the selected item is that it must remain at the correct origin. Now it just needs a scrolling feature that checks mouse hover position on overflow widgets.
2021-11-03Redo cached document layout if neededJaakko Keränen
Changing the fonts, zoom level, or window width will cause cached documents to be laid out again if they are restored from memory.
2021-11-02Gopher: Allow either LF or CRLF line endingsJaakko Keränen
IssueID #377
2021-11-02GmDocument: Remove heading line overlapJaakko Keränen
Spacing of heading lines was being reduced for a nicer appearance, but since backgrounds are erased behind text runs, it was causing issues with some fonts. Therefore this is disabled for now until I figure out how I want to fix the background issue. Maybe smarter clipping could be applied in the page renderer so that runs are only drawn once, and erasing the background becomes unnecessary? IssueID #364
2021-11-02macOS: Tab close buttons on the leftJaakko Keränen
Platform convention.
2021-11-01Fixed build with the simple text rendererJaakko Keränen
IssueID #372
2021-10-30Windows: Fixed path handling issues during font loadingJaakko Keränen
2021-10-30Added Ukrainian UI translationJaakko Keränen
Kudos to Alyssa Liddell for a 100% translation.
2021-10-29Fixed a memory leak in URL handlingJaakko Keränen
2021-10-29FontPack: Loading fonts from TTC filesJaakko Keränen
2021-10-29App: resources.lgr load orderJaakko Keränen
Try loading from the local directory first, then the system-wide one. This way uninstalled builds are more likely to use the right resources. IssueID #363
2021-10-28GmDocument: Markdown regex tweakJaakko Keränen
2021-10-28GmDocument: Restore old themes after CRC-32 was fixedJaakko Keränen
The corrected CRC-32 function produces different theme seeds. This restores the old behavior.
2021-10-28FontPack: Only load "default" from the resource fileJaakko Keränen
2021-10-27Upgrade assistance: download "classic-set" fontpackJaakko Keränen
2021-10-27App: Upgrading to version 1.8.0Jaakko Keränen
Removal of the embedded font library means that the UI strings may not have the right fonts available. The app version is now recorded in prefs.cfg.
2021-10-27DocumentWidget: Security warningsJaakko Keränen
2021-10-26Text: Use "alternative font 1" escape for monospaceJaakko Keränen
2021-10-26Cleanup; minor tweaksJaakko Keränen
2021-10-26FontPack: Visual tweaks on the content pageJaakko Keränen
2021-10-26Preferences: Warn about missing glyphsJaakko Keränen
2021-10-26macOS: Try to prevent SDL from being weird at launchJaakko Keränen
There appears to be some hacks in SDL regarding launch-time app activation. At least on my Macs, this leads to the forced unhiding of the dock in what appears to be mostly random behavior. Attempting to disable the hack via an SDL hint and activate the app manually.
2021-10-26DocumentWidget: Don't update theme/banner on input promptsJaakko Keränen
2021-10-26DocumentWidget: Update theme/banner on responseJaakko Keränen
As soon as the first part of a response is available, update the page theme and banner.
2021-10-26Dismissing document warnings; Banner hoverJaakko Keränen
The warning about terminal emulation can be dismissed on site-specific basis. Banner items show a hover frame (like buttons) to indicate they can be clicked.
2021-10-26SiteSpec: Converted to TOML syntaxJaakko Keränen
Added a "dismissed warnings" value.
2021-10-25Document presentation warningsJaakko Keränen
Warn the user about missing glyphs and potentially unsupported ANSI escapes. TODO: Site-specific setting for dismissed warning; fonts preference about missing glyph warnings.
2021-10-25Message/question text wrapping; cleanupJaakko Keränen
2021-10-25Banner: Error items; improved appearanceJaakko Keränen
2021-10-24Banner: Clicking on the site nameJaakko Keränen
2021-10-24Added BannerJaakko Keränen
Banner will take over everything related to the page top banner. DocumentWidget's content positioning is a bit messy, and now that the banner is no longer part of the GmDocument, it needed a bit of revising. It would still benefit from proper functions for mapping coordinates to/from the GmDocument coordinate space.
2021-10-24GmDocument: Fixed build issueJaakko Keränen
Use the standard `isdigit` from ctype.h.
2021-10-24CleanupJaakko Keränen
2021-10-23Mobile: Footer button fixes; missing stringsJaakko Keränen
2021-10-23InputWidget: Per-pixel scrollingJaakko Keränen
2021-10-23UploadWidget: Remember token; Upload button visibilityJaakko Keränen
The token is saved just like the text editor content. In a single panel layout, the Upload button should only be shown when a detail panel is visible. The text editor panel shouldn't scroll because the input widget does its own scrolling.
2021-10-23Mobile: Notify about current panel changeJaakko Keränen