summaryrefslogtreecommitdiff
path: root/src/ui/sidebarwidget.c
AgeCommit message (Collapse)Author
2021-12-14SidebarWidget: Removed unnecessary updateJaakko Keränen
No need to update sidebar items when the Preferences tab changes.
2021-12-14Mobile: Tuning document swipe animationsJaakko Keränen
2021-12-14SidebarWidget: Phone needs no document resizeJaakko Keränen
2021-12-12Mobile: Crash when dismissing sidebar during Edit modeJaakko Keränen
2021-12-11CleanupJaakko Keränen
2021-12-08Mobile: Minor font/text sizing tweaksJaakko Keränen
2021-12-07SidebarWidget: Edit mode vs. folders; "No Unread Entries"Jaakko Keränen
2021-12-06iOS: Portrait phone sidebar actions paddingJaakko Keränen
2021-12-06Mobile: Tablet fixesJaakko Keränen
Various issues with safe areas and font sizes.
2021-12-05Mobile: Fixed layout issue during animationJaakko Keränen
Update sliding sidebar height with the correct values for the frame.
2021-12-04ListWidget: Fixed touch scrolling issueJaakko Keränen
2021-12-04Fixed UI glitches after sidebar changesJaakko Keränen
2021-12-04SidebarWidget: Mobile bookmark editing modeJaakko Keränen
ListWidget can use drag handles on items.
2021-12-04Mobile: Sidebar actions for Feeds, HistoryJaakko Keränen
2021-12-04Mobile: Sidebar is now a vertically sliding panelJaakko Keränen
Switched the phone sidebar to use the iOS half/full-height sliding sheet design. This is better for finger reachability and for retaining access to the current page.
2021-12-03Improving identity useJaakko Keränen
The URL checks for determining which identity was in use were a bit too page-specific. Now the URL prefix usage is applied more consistently. The identity toolbar menu is now more useful in that it allows both switching identities and stopping the use of the current identity.
2021-12-03Mobile: Manage Identities via SettingsJaakko Keränen
2021-12-02Mobile: Button group appearanceJaakko Keränen
2021-12-02Refactored CertListWidget out of the sidebarJaakko Keränen
The identity list is needed elsewhere outside of the sidebar, so moved it into a specialized ListWidget class.
2021-11-30SidebarWidget: Crash when switching Feeds modeJaakko Keränen
Updating items immediately destroys the action widgets.
2021-11-30SidebarWidget: Icons for the Unread/All filter menuJaakko Keränen
2021-11-30Merge branch 'dev' into work/v1.10Jaakko Keränen
2021-11-30SidebarWidget: Added short label for Mark All as ReadJaakko Keränen
The sidebar doesn't have much room so use a different label for the button.
2021-11-29Fixed crash when creating a bookmarkJaakko Keränen
The parent folder pointer was possibly uninitialized.
2021-11-28Bookmarks: Internal tags have a dot prefixJaakko Keränen
Internal behavior tags are now written in bookmarks.ini with a dot prefix (like hidden files on Unix), and at runtime they are removed from the tags string. This makes things more efficient as it isn't necessary to compile regular expressions all the time. TODO: Add "Edit Feed..." into the Bookmarks context menu, and a new menu item for listing all subscriptions. IssueID #331
2021-11-24SidebarWidget: Tighter layout for Feeds actionsJaakko Keränen
2021-11-24SidebarWidget: Non-item-related context menusJaakko Keränen
IssueID #388
2021-11-24SidebarWidget: Save feeds mode (all/unread)Jaakko Keränen
2021-11-23SidebarWidget: Hover state colorsJaakko Keränen
2021-11-23SidebarWidget: CleanupJaakko Keränen
2021-11-23SidebarWidget: Redesigned Feeds action toolbarJaakko Keränen
The action toolbar now has a button for marking all as read, and keyboard shortcuts for switching between Unread and All modes.
2021-11-23Select folder when adding/editing bookmarksJaakko Keränen
Most recently used folder is persistently stored in bookmarks.ini. IssueID #358
2021-11-22Input queries vs. navigation historyJaakko Keränen
Input query responses (status 1x) are not preserved in History so that when navigating back, they are skipped. The corresponding URLs are flagged as Transient so they are not shown in the History sidebar. The History sidebar shows the query string in URLs. IssueID #382
2021-10-26Cleanup; minor tweaksJaakko Keränen
2021-10-20iOS: Fixing the buildJaakko Keränen
2021-10-06Revised runtime font managementJaakko Keränen
The built-in fonts are loaded via FontPack, and the font table is now constructed dynamically based on available fonts. A full set of variants (style, size) are prepared for each font, but some of the data gets allocated lazily when needed. GmRun needed a larger allocation for fonts, so now all the fields are combined into a single bit field. TODO: Glyph scaling, vertical offsets, and symbol lookup are still not fully working.
2021-10-05SidebarWidget: Crash in TOC tabJaakko Keränen
The heading items will be obsolete if clicking in the sidebar before a page load finishes. IssueID #350
2021-10-01Feeds: Don't forget entries or their unread statusJaakko Keränen
Three important changes: 1) Visited URLs can be marked as "kept" so they will never be discarded due to old age. 2) Feed entries are not discarded from the database until they are removed from the source, and then become too old (six months). 3) Visited feed entry URLs are always flagged as kept, so the (un)read status will not be forgotten.
2021-09-30SidebarWidget: Scroll view to newly added itemsJaakko Keränen
New bookmarks and folders shouldn't appear outside the visible part of the list.
2021-09-30ListWidget: Dragging before/after an itemJaakko Keränen
It's useful to make a distinction whether a drag ended before or after an item, even if it's still referring to the same boundary between items. This allows bookmarks to be reordered inside a folder so that an item is moved to the bottom of a folder, or out of the folder following it in order.
2021-09-27SidebarWidget: Editing folder namesJaakko Keränen
Use the regular bookmark editor but hide the Special Tags section, and disable all but the Title for now.
2021-09-26Minor UI tweaksJaakko Keränen
2021-09-25Persistent bookmark folder stateJaakko Keränen
Incremented the version of state.lgr so it can include bookmark folder open/closed state for each of the two/four sidebars.
2021-09-24Bookmarks: Deleting a tree of bookmarksJaakko Keränen
Sidebar asks for confirmation when deleting a folder hierarchy of bookmarks.
2021-09-24SidebarWidget: Creating folders inside clicked folderJaakko Keränen
2021-09-24Bookmark foldersJaakko Keränen
The user can now create bookmark folders, and drag bookmarks into them. Folders can also be nested. The bookmark sorting menu item sorts inside the chosen folder/root. Remote bookmark sources appear also as folders, although they cannot be sorted/edited. IssueID #339
2021-09-24SidebarWidget: Reordering bookmarks manuallyJaakko Keränen
One can now drag and drop bookmarks to change their order in the list.
2021-09-23Bookmarks: TOML syntax; field for manual orderJaakko Keränen
The bookmarks file is now saved in a TOML subset and named "bookmarks.ini". This makes it more robust and forwards compatible. Added a field for sort order, since that will be used for manual ordering.
2021-09-21Disabling items in native menusJaakko Keränen
Added the special prefix `///` to mark items disabled.
2021-09-21macOS: Native context menusJaakko Keränen
Popup context menus now use NSMenu. There are still has a few glitches with the navbar identity button, but most menus are working. SDL required another little tweak to force it to update mouse button state after the synchronously handled context menu goes away. Otherwise SDL's internal mouse button state shows that the right mouse button is held down.