summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2020-11-29Feeds: Trim en/em dashes from entry titlesJaakko Keränen
2020-11-29Feeds: Worker saves feeds in the backgroundJaakko Keränen
No need to wait until quitting the app to write the feeds state to disk.
2020-11-28Fixed build on macOS 10.13Jaakko Keränen
2020-11-28Windows: Horizontal mouse wheel directionJaakko Keränen
The same mouse behaves differently on different operating systems.
2020-11-28DocumentWidget: Inverted horizontal mouse wheel directionJaakko Keränen
2020-11-28DocumentWidget: Horizontal scrolling improvementsJaakko Keränen
Interaction with selection/found markers (will reset scrolling), and smooth horizontal scrolling with a mouse. IssueID #44
2020-11-28Scrolling wide preformatted blocks horizontallyJaakko Keränen
Not entirely glitch-free but should be good enough for now. IssueID #44
2020-11-28DocumentWidget: Markers disappear when scrollingJaakko Keränen
IssueID #46
2020-11-28Cleanup: Removed (hidden) preformatted wrap optionJaakko Keränen
2020-11-28Feeds: Refresh every 4 hoursJaakko Keränen
2020-11-28Updated release notesJaakko Keränen
2020-11-28Feeds: Abort parsing of feeds.txt if it's invalidJaakko Keränen
2020-11-28Windows: Refreshing window contents during window resizingJaakko Keränen
SDL clears all buffered rendertargets so we must redraw everything.
2020-11-28Workaround for SDL window resize issueJaakko Keränen
Rearrange and draw window contents with an event watcher during window resizing because SDL is blocking the main thread. Tested on macOS so far, may need a build option. In reference to SDL bug: https://bugzilla.libsdl.org/show_bug.cgi?id=2077
2020-11-27DocumentWidget: Cancelling keyboard navigation modeJaakko Keränen
Cancel keyboard navigation mode when opening a new URL, reloading the current page, or when window loses focus. IssueID #71
2020-11-27SidebarWidget: "Refresh Feeds" button in empty Feeds tabJaakko Keränen
2020-11-27Autoupdate feeds after subscribing to the first oneJaakko Keränen
2020-11-27Feeds: Don't save entries discovered long agoJaakko Keränen
2020-11-27Feeds: Separate timestamps for posting and discoveryJaakko Keränen
The discovery time is needed for knowing how long the entry can be retained in the history.
2020-11-27Feeds: Fixed "about:feeds" when feeds never refreshedJaakko Keränen
2020-11-27Feeds: Marking all as read; time check improvementsJaakko Keränen
For some unknown reason, the parsing of the entry dates is sometimes (randomly?) off by 3600 seconds (one hour). This need a closer investigation; maybe a DST thing? For now check the date instead.
2020-11-27Subscribing via menu; cleanup after unsubscribeJaakko Keränen
2020-11-27Window: Added "Show Feed Entries" menu itemJaakko Keränen
2020-11-27Widget: Allow scrolling tall widgetsJaakko Keränen
Useful for menus and dialogs that wouldn't fit inside the window.
2020-11-27SidebarWidget: Adding bookmarks, edit feedsJaakko Keränen
2020-11-27Paint: Negative clipping rectangle positionJaakko Keränen
2020-11-27DocumentWidget: Check for invalid deserialized URLJaakko Keränen
Should check for stray pointers in URL, mostly to assist development use. Normally the "open" command arguments never have a pointer appended.
2020-11-27SidebarWidget: Unsubscribe from feed; toggling read statusJaakko Keränen
2020-11-27Feeds: Removing all entries of a feedJaakko Keränen
2020-11-27Bookmarks: Adding and removing tagsJaakko Keränen
2020-11-26SidebarWidget: Open entries, feed index pagesJaakko Keränen
2020-11-26macOS: Touch bar buttons in the wrong orderJaakko Keränen
2020-11-26Feeds: Manual refreshJaakko Keränen
2020-11-26Color for passively selected sidebar itemJaakko Keränen
2020-11-26Feeds: "about:feeds" shows refresh timeJaakko Keränen
2020-11-26Added "about:blank"Jaakko Keränen
IssueID #61
2020-11-26SidebarWidget: Fixed "about:" URLs in historyJaakko Keränen
2020-11-26Feeds: Added "about:feeds"Jaakko Keränen
Show all entries in a CAPCOM-like chronological list.
2020-11-26Feeds: Working on menu itemsJaakko Keränen
2020-11-26SidebarWidget: Update bookmark tag menu itemsJaakko Keränen
2020-11-26macOS: Ctrl-Click as a right clickJaakko Keränen
2020-11-26SidebarWidget: Added menus; adjusted separatorsJaakko Keränen
Added context menus for Feeds.
2020-11-25SidebarWidget: Feed items show bookmark iconJaakko Keränen
2020-11-25Feeds: Check for update interval at launchJaakko Keränen
2020-11-25SidebarWidget: Tagging bookmarks via menuJaakko Keränen
2020-11-25Swapped Gopher link icon colorsJaakko Keränen
The less saturated one is better for visited links.
2020-11-25SidebarWidget: Bookmark tag icons; Feeds presentationJaakko Keränen
Special tags of bookmarks are now visualized with icons. Feed items show an indicator if the currently open document matches the entry URL.
2020-11-25Sidebar: Changed tab order, Bookmarks is first tabJaakko Keränen
2020-11-25Tuning the Light mode color paletteJaakko Keränen
The Light mode UI colors were a little bit garish; now they are much less saturated. ANSI foreground colors are darkened 50% on a bright background.
2020-11-25DocumentWidget: Crash after redirectsJaakko Keränen