summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2022-02-05SidebarWidget: Fixed animations in the 2nd splitJaakko Keränen
2022-02-05Paint: Fixed a Metal clipping issueJaakko Keränen
After intersecting with the root rect the clipping rectangle can be empty.
2022-02-05Bumped version numberJaakko Keränen
2022-02-05Updated release notes and AUTHORSJaakko Keränen
2022-02-05CleanupJaakko Keränen
2022-02-05Merge branch 'dev' of https://weblate.skyjake.fi/git/lagrange/ui into devJaakko Keränen
2022-02-05Translated using Weblate (Esperanto)Nikolay Korotkiy
Currently translated at 36.8% (238 of 646 strings) Translation: Lagrange/User Interface Translate-URL: http://weblate.skyjake.fi/projects/lagrange/ui/eo/
2022-02-04Updated release notesJaakko Keränen
2022-02-04macOS: Let other windows handle scroll eventsJaakko Keränen
For example, trying to scroll the Sparkle release notes was not possible because the main window would scroll instead.
2022-02-04App: Event processing tweakJaakko Keränen
Refresh events will never be dispatched (it would be pointless), but instead just set a flag that prevents SDL_WaitEvent() to be called. SDL_WaitEvent() should never be called anyway because `pendingRefresh` is set, but this makes it clearer and skips other unnecessary checks.
2022-02-04IndicatorWidget: Use the normal animation methodJaakko Keränen
This old timer-based animation predates the ticker convention.
2022-02-04macOS: Use Metal on >60 Hz displaysJaakko Keränen
The problem with the occasional stutters related to SDL_WaitEvent() are still there, but on a 120 Hz display it's even worse to be stuck on 60 Hz. Metal is required for 120 Hz.
2022-02-04Fixed issues with stripping ANSI escapesJaakko Keränen
2022-02-02Improved legibility of ANSI FG colorsJaakko Keränen
Brighten dark colors on a (nearly) black background. On light backgrounds, reduce the darkening as it was a bit too strong; more of the color is now shown.
2022-02-01Merge branch 'dev' of github.com:skyjake/lagrange into devJaakko Keränen
2022-02-01Fixed ANSI color handling issuesJaakko Keränen
Added the missing BG escapes 100-107, and fixed how the FG is adjusted to keep text legible. Previously it was not considering the actual BG color being applied to a text run.
2022-02-01DocumentWidget: "file://" pages don't warn about ANSI colorsJaakko Keränen
The warnings are site-specific, and there's no site for "file://".
2022-02-01Bumped version numberJaakko Keränen
2022-02-01Merge pull request #445 from jgarte/jgarte-patch-1Jaakko Keränen
Add guix install instructions
2022-02-01Add guix install instructionsjgart
2022-01-30Updated release notesJaakko Keränen
2022-01-30Release notes broken to smaller pagesJaakko Keränen
2022-01-30About page parent/root navigationJaakko Keränen
2022-01-30CleanupJaakko Keränen
2022-01-30Text: Break words at backslashesJaakko Keränen
2022-01-29Don't have duplicate New Tab buttonsJaakko Keränen
There tab buttons don't need a New Tab button if the navbar has it.
2022-01-29Hierarchical navigation with Gopher and TitanJaakko Keränen
With Gopher, ensure that the item type changes to 1, and with Titan, change to normal Gemini.
2022-01-29Changed a couple of iconsJaakko Keränen
2022-01-28iOS: Updated release notesJaakko Keränen
2022-01-28iOS: Bumped version numberJaakko Keränen
2022-01-28Updated release notesJaakko Keränen
2022-01-28iOS: Scroll to top on status bar tapsJaakko Keränen
2022-01-28Touch: Debug loggingJaakko Keränen
2022-01-28GmDocument: Don't crash when a line turns out emptyJaakko Keränen
A line with nothing but ANSI escapes was not considered empty, but it didn't produce any text runs so the typesetter was confused. IssueID #443
2022-01-28CleanupJaakko Keränen
2022-01-28Mobile: Tablet navbar button heightJaakko Keränen
Match the button height to the URL input field.
2022-01-28Updated release notesJaakko Keränen
2022-01-27Fixed wrong sidebar reacting to key eventsJaakko Keränen
The right-hand sidebar was handling the U and Shift+U events if it was set on Feeds tab, even though the sidebar wasn't visible.
2022-01-27Updated release notesJaakko Keränen
2022-01-27DocumentWidget: Navigate to parent vs. index.gmiJaakko Keränen
index.gmi is typically identical to the directory itself, so don't go from `/index.gmi` to `/`, but skip directly to the parent directory.
2022-01-27Bumped version numberJaakko Keränen
2022-01-27DocumentWidget: Fixed crash while media players activeJaakko Keränen
2022-01-26Added a man pageJaakko Keränen
Generated with Pandoc.
2022-01-26Feeds: Potential fix for a crash on 32-bit Haiku OSJaakko Keränen
Ensure the argument type matches the printf formatting.
2022-01-24Android: Bumped version number; updated release notesJaakko Keränen
2022-01-24iOS: Bumped version number; updated release notesJaakko Keränen
2022-01-24Gopher: Set item type to 1 when navigating to parentJaakko Keränen
As suggested in: gemini://ruario.flounder.online/gemlog/2022-01-19_Some_Gopher_improvements_for_Lagrange.gmi
2022-01-24Updated release notes and Smol EmojiJaakko Keränen
2022-01-24Translated using Weblate (Occidental)Olga Smirnova
Currently translated at 93.6% (605 of 646 strings) Translation: Lagrange/User Interface Translate-URL: http://weblate.skyjake.fi/projects/lagrange/ui/ie/
2022-01-24DocumentWidget: Cancelling an input queryJaakko Keränen
This has been broken for a while...