summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2021-03-24Lang: Added new strings for error messagesJaakko Keränen
IssueID #192
2021-03-24Fixes for dynamic language switchingJaakko Keränen
IssueID #192
2021-03-24Fixed regression in conman.org client torture test 21Jaakko Keränen
Couple of problems: - "data:" links were not flagged as supported - "data:" links are not supposed to further decoded or encoded since they are processed internally in the client IssueID #217
2021-03-23Lang: Added Russian to resourcesJaakko Keränen
IssueID #192
2021-03-23UI language preference; switching at runtimeJaakko Keränen
IssueID #192
2021-03-23Lang: Added strings for Import Identity dialogJaakko Keränen
2021-03-23Lang: Initial version of the Finnish translationJaakko Keränen
2021-03-23Enable translation of error pagesJaakko Keränen
2021-03-23Lang: Added a sidebar string; Finnish templateJaakko Keränen
IssueID #192
2021-03-23Lang: Applied string IDs everywhereJaakko Keränen
More or less everywhere? IssueID #192
2021-03-23Lang: Applied more string IDsJaakko Keränen
IssueID #192
2021-03-22Lang: Improvements; macOS menu itemsJaakko Keränen
Use char pointer ranges for the array of IDs and strings to avoid allocations. Translate macOS menu items. IssueID #192
2021-03-22iOS: Default UI scaling for iPadJaakko Keränen
2021-03-22Basic language string mechanismJaakko Keränen
Added a set of English strings. Lang can load a language. LabelWidget can replace IDs in the label. IssueID #192
2021-03-22Lang: Loading a set of NULL-terminated stringsJaakko Keränen
2021-03-22Lang: Began replacing UI strings with IDsJaakko Keränen
IssueID #192
2021-03-21GmDocument: Default banner colors of Light GrayJaakko Keränen
2021-03-21iOS: Save to Files; hide toolbar on scrollJaakko Keränen
There is no downloads directory on mobile. Instead, the downloaded file is temporarily cached and given to the iOS document picker to export. Added an option to hide the bottom toolbar while scrolling down.
2021-03-20Mobile: Balance navbar buttonsJaakko Keränen
Moved Identity button to the right since on the left there is the new Sidebar button.
2021-03-20Touch: Adjusted tap-and-hold gestureJaakko Keränen
After the hold has been detected, require a larger motion to begin dragging.
2021-03-20Bookmarks: Timestamp accuracyJaakko Keränen
There is no need for microsecond accuracy in the creation timestamp.
2021-03-20Show unread entry count in sidebarJaakko Keränen
2021-03-20App: Periodic commands without timers/threadsJaakko Keränen
Now the periodic commands get posted on the main thread at intervals, and the event loop cooperates by not sleeping if there are periodic commands pending. The macOS animation hangup seems to be unrelated, though — perhaps some internal SDL/Metal machinery related to app refresh stopping for a while?
2021-03-20Mobile: Sidebar toggling navbar buttonJaakko Keränen
2021-03-20VisBuf: Debug utilityJaakko Keränen
2021-03-20ScrollWidget: Disabled the fading out for nowJaakko Keränen
Need to find a solution to the uneven refresh time issue.
2021-03-20Periodic: Use a thread instead of timersJaakko Keränen
This still doesn't solve the strange refresh time issue. Perhaps it's better to find a solution that doesn't rely on background threads.
2021-03-20GmDocument: Gray/Black link color tuningJaakko Keränen
2021-03-20App: Looking at uneven frame redraw timesJaakko Keränen
2021-03-19GmDocument: List bullet finetuningJaakko Keränen
Slightly more to the left, centered.
2021-03-19CleanupJaakko Keränen
2021-03-19macOS: Added "about:about" to Help menuJaakko Keränen
2021-03-19InputWidget: Improved default scheme hidingJaakko Keränen
Restore when there is more space available.
2021-03-19Window: Reduce navbar padding on portrait phoneJaakko Keränen
2021-03-18Feeds: Same URL from different feedsJaakko Keränen
Each feed gets its own copy of an URL.
2021-03-18Window: Fixed reload button heightJaakko Keränen
2021-03-18macOS: Fixed buildJaakko Keränen
2021-03-18Draw soft popup menu border shadowsJaakko Keränen
2021-03-18Translation: Enable handling of completed requestJaakko Keränen
2021-03-18Translation: More colorful progress animationJaakko Keränen
2021-03-18Widget: Fixed parent not arranging childrenJaakko Keränen
2021-03-18Adjusted sizing of Page Information dialogJaakko Keränen
2021-03-18Translation: Fixed use of uninitialized variableJaakko Keränen
2021-03-18Mobile improvementsJaakko Keränen
Seeing if a few forced redraws will take care of the squished view issue. On the phone, showing and hiding the sidebar is not supposed to resize any documents.
2021-03-18Scrollbar fading and periodic commandsJaakko Keränen
Added a new mechanism to issue periodic but not per-frame commands. This is used for main-thread operations like checking if it's time to fade away the scrollbars. Scrollbars are faded away completely on Apple platforms. Adjusted list right margins accordingly.
2021-03-18SidebarWidget: Today's date says "Today"Jaakko Keränen
2021-03-18GmDocument: Trying out a footerJaakko Keränen
Currently disabled.
2021-03-18SidebarWidget: Unread entry appearanceJaakko Keränen
The bold font is a sufficient indicator than the edge line, and the edge line introducing visual noise.
2021-03-17SidebarWidget: Crash when deleting identityJaakko Keränen
Refer to the context menu item and not the hover item, since hover state may have been lost.
2021-03-17LabelWidget: Fixed crash when text is emptyJaakko Keränen