summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2022-01-03Mobile: Updated HelpJaakko Keränen
2022-01-02Android: Added release notes and Help pageJaakko Keränen
2022-01-02Mobile: Tweaking URL input widget paddingJaakko Keränen
Portrait phone URL input field has some special padding rules. This should be done elsewhere (updateMetrics_Root?), but InputWidget does not check the Widget paddings currently.
2022-01-02Attempt to ensure invalidation of cached theme dataJaakko Keränen
2022-01-02Tell SDL to allow screensaverJaakko Keränen
2022-01-02Lang: Headings are title-casedJaakko Keränen
The uppercasing of headings will occur programmatically if appropriate.
2022-01-02Mobile: Taller portrait phone navbarJaakko Keränen
The navbar is an important tap target, so it should be the same height as most menu items and the toolbar.
2022-01-01Android: Show build version and date in Settings > AboutJaakko Keränen
2022-01-01Android: Fixed root sizing; clip menu not showing; toolbar buttonsJaakko Keränen
The keyboard height was miscalculated if there were system keys under the window.
2022-01-01Mobile: User-configurable phone toolbar buttonsJaakko Keränen
Actions for the first two mobile portrait phone toolbar buttons can be chosen in Settings.
2022-01-01Updated copyright yearJaakko Keränen
2022-01-01iOS: Bumped version numberJaakko Keränen
2022-01-01iOS: Showing activity views on iPadJaakko Keränen
On iPad, activity views are popovers and require information about the source. The UI doesn't provide this, though, so just use the long-press tap position for now.
2021-12-31iOS: Bumped version, updated release notesJaakko Keränen
2021-12-31Android: Better downloads directoryJaakko Keränen
2021-12-31Merge branch 'work/v1.10' of skyjake.fi:gemini/lagrange into work/v1.10Jaakko Keränen
2021-12-31Android: Download directoryJaakko Keränen
2021-12-31Mobile: Fixed crash when creating bookmarkJaakko Keränen
Use of uninitialized memory was possible related to the folder selection dropdown.
2021-12-31Android: JNI method for posting command eventsJaakko Keränen
2021-12-31Updated the_FoundationJaakko Keränen
2021-12-31Android: Disable SSE check, enable HarfBuzz and FriBidiJaakko Keränen
2021-12-30Android: Updating for latest SDL and revised Gradle projectJaakko Keränen
2021-12-30Added "Edit Page with Titan"Jaakko Keränen
A convenient way to copy the current page's source and open the Titan upload dialog with it prefilled. IssueID #415
2021-12-30DocumentWidget: Inlining "image/*" responsesJaakko Keränen
Image responses get inlined on gemtext pages. It would make sense to use this mechanism for all media since the MIME type is ultimately what matters in determining the appropriate presentation. The file extensions shouldn't matter. IssueID #373
2021-12-30DocumentWidget: Update banner while loadingJaakko Keränen
The banner would sometimes appear only after the page had finished loading, because the site icon got lost when the GmDocument was switched.
2021-12-29iOS: Sharing file content and selected textJaakko Keränen
2021-12-29Inline download context menu; macOS: Show in FinderJaakko Keränen
The inline downloads UI finally has some interactivity: left-clicking on a finished download opens it in the default viewer app, and right-clicking shows a context menu with relevant actions.
2021-12-28Viewing unsupported files in another appJaakko Keränen
After receiving content of unsupported type, show a footer action button to open it in another app. IssueID #135
2021-12-27Android: Don't suggest to download fontsJaakko Keränen
2021-12-27Android: Replace toolbar Back button with Close TabJaakko Keränen
These should be user-configurable, though.
2021-12-27Text: Fixed color escapes in the simple text rendererJaakko Keränen
2021-12-27Android: Keyboard height; other fixesJaakko Keränen
Send a notification from the Java side when the software keyboard is shown.
2021-12-27Android: Logging eventsJaakko Keränen
2021-12-27Android: Added missing headerJaakko Keränen
2021-12-27Text: Fixed simple text rendererJaakko Keränen
2021-12-27Reserved characters in URLsJaakko Keränen
Making URL encoding a little less convoluted. Now when sending out a request, the URL is fully encoded except for reserved characters. In the internal representation, non-ASCII characters are in decoded form (i.e., IRI). This means that if the user enters a URL in the input field manually, its non-ASCII characters will be percent encoded as well. However, in this case the user is expected to manually escape all reserved characters because the input field can't tell the difference between what is intended to be a reserved separator and what isn't. For example, a server might expect &-separated fields, and if the user enters such fields manually in the URL field, they shouldn't be converted to %26. When forming a query URL in the input dialog, user-entered text is fully percent-encoded because in that case the input is just a generic text string. IssueID #410
2021-12-26iOS: Bumped version and updated release notesJaakko Keränen
2021-12-26Mobile: Tweaking link highlight on hoverJaakko Keränen
2021-12-26GmDocument: Detect an invalid linkJaakko Keränen
IssueID #427 # Conflicts: # res/about/version.gmi
2021-12-26Mobile: Removed "Show URL on hover"Jaakko Keränen
2021-12-25iOS: Default to idle sleep enabledJaakko Keränen
2021-12-25App: Tweaking idle sleep for mobileJaakko Keränen
2021-12-25Mobile: Same indication for hover links and open URLsJaakko Keränen
2021-12-25Mobile: Link info in context menuJaakko Keränen
2021-12-25"Idle sleep" seems unnecessary with SDL 2.0.18Jaakko Keränen
2021-12-25Mobile: Fixed pull-to-refreshJaakko Keränen
2021-12-25CleanupJaakko Keränen
Warnings about lost precision.
2021-12-25SDL line drawing regression was fixed in 2.0.18Jaakko Keränen
2021-12-25SDL: Updated patch for 2.0.18Jaakko Keränen
There were a few changes, particularly with the precise wheel XY now being available. Lagrange v1.10 will listen to Cocoa wheel events directly, though, so these can be removed later on.
2021-12-24Updated the_FoundationJaakko Keränen