Age | Commit message (Collapse) | Author | |
---|---|---|---|
2021-10-01 | Fixed widget hiding in translation dialog | Jaakko Keränen | |
"From"/"To" fields were not being hidden when translation request was submitted. | |||
2021-10-01 | Text: Fixed a symbol for size | Jaakko Keränen | |
2021-10-01 | Added a 90% sized UI font for URL bar indicators | Jaakko Keränen | |
The 80% size is used in the toolbar. | |||
2021-10-01 | Added feeds update progress indicator | Jaakko Keränen | |
Show some status info about the progress of feed refresh. The search query and feeds indicators now use the small UI font size. | |||
2021-10-01 | Cleanup | Jaakko Keränen | |
2021-10-01 | Feeds: Don't forget entries or their unread status | Jaakko 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-10-01 | Text: Added small size to symbol fonts | Jaakko Keränen | |
2021-09-30 | SidebarWidget: Scroll view to newly added items | Jaakko Keränen | |
New bookmarks and folders shouldn't appear outside the visible part of the list. | |||
2021-09-30 | ListWidget: Dragging before/after an item | Jaakko 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-28 | Window: Automatic software rendering fallback | Jaakko Keränen | |
2021-09-28 | DocumentWidget: Showing error page on untrusted certs | Jaakko Keränen | |
2021-09-28 | ListWidget: Scrolling due to item drag should be linear | Jaakko Keränen | |
2021-09-27 | Comment | Jaakko Keränen | |
2021-09-27 | SidebarWidget: Editing folder names | Jaakko Keränen | |
Use the regular bookmark editor but hide the Special Tags section, and disable all but the Title for now. | |||
2021-09-27 | Minor UI tweaks | Jaakko Keränen | |
2021-09-27 | Cleanup | Jaakko Keränen | |
2021-09-27 | macOS: Maximized window is not a special case | Jaakko Keränen | |
2021-09-27 | Window: Fixed regressions in retaining window placement | Jaakko Keränen | |
Window placement was not restored correctly when the window was maximized. Maximizing a window (on Windows) causes a spurious move event to be received from SDL, and that would mess up the remembered position. Now window placemenet is saved after a run through the event loop, so the rest of the window messages have been handled. | |||
2021-09-27 | Windows: Enable dark mode; use dark title bar for dark themes | Jaakko Keränen | |
This is quite a hack, but Win32 apps don't seem to have documented access to dark mode. | |||
2021-09-26 | Popup menus are positioned on selected item | Jaakko Keränen | |
2021-09-26 | Compute popup menu bounds in points | Jaakko Keränen | |
Display bounds and the window rectangle are handled in points, so determine if the menu fits inside its root in points, too. | |||
2021-09-26 | macOS: Popup window fixes; simply window creation | Jaakko Keränen | |
2021-09-26 | Use popup windows only when inline menus don't fit | Jaakko Keränen | |
Performance of popup windows may not be great. | |||
2021-09-26 | Window: Set window position during creation; popups use sw render | Jaakko Keränen | |
The renderer is created separately so it's possible to set the window position at creation time. Popup window use basic software rendering for (hopefully) better performance. | |||
2021-09-26 | Added a PerfTimer utility | Jaakko Keränen | |
2021-09-26 | X11: Tuning popup window behavior and appearance | Jaakko Keränen | |
2021-09-26 | macOS: Experiment with system accent color | Jaakko Keränen | |
This doesn't quite fit in the palette system currently, but it would be a nice addition later. | |||
2021-09-26 | Fixed context menu centering with popup windows | Jaakko Keränen | |
2021-09-26 | Minor UI tweaks | Jaakko Keränen | |
2021-09-26 | Root: Crash when closing split view | Jaakko Keränen | |
Some deleted widgets were kept around in the root's onTop list. | |||
2021-09-25 | ListWidget: Larger folder drop target | Jaakko Keränen | |
2021-09-25 | Windows: Various fixes after MainWindow refactoring | Jaakko Keränen | |
2021-09-25 | Window: Fixed build with ENABLE_WINDOWPOS_FIX; cleanup | Jaakko Keränen | |
2021-09-25 | Merge branch 'dev' of github.com:skyjake/lagrange into dev | Jaakko Keränen | |
2021-09-25 | Lang: Added eo, es_MX, gl, isv, and sk | Jaakko Keränen | |
New almost completed or in-progress UI translations. | |||
2021-09-25 | Fixed a build fail | zocker | |
There is no member of d with name win, but base seems to have one. | |||
2021-09-25 | Merge branch 'work/v1.7' into dev | Jaakko Keränen | |
2021-09-25 | Persistent bookmark folder state | Jaakko 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-24 | Bookmarks: Deleting a tree of bookmarks | Jaakko Keränen | |
Sidebar asks for confirmation when deleting a folder hierarchy of bookmarks. | |||
2021-09-24 | SidebarWidget: Creating folders inside clicked folder | Jaakko Keränen | |
2021-09-24 | Bookmark folders | Jaakko 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-24 | SidebarWidget: Reordering bookmarks manually | Jaakko Keränen | |
One can now drag and drop bookmarks to change their order in the list. | |||
2021-09-23 | Bookmarks: TOML syntax; field for manual order | Jaakko 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-23 | ListWidget: Dragging items to reorder | Jaakko Keränen | |
Items can be marked as draggable, and additionally as drop targets. | |||
2021-09-23 | MainWindow: Tweaks to avoid flash at launch | Jaakko Keränen | |
When the window appears, it should have all the actual contents and not a placeholder. | |||
2021-09-21 | Added build options for popup/macOS menus | Jaakko Keränen | |
2021-09-21 | LabelWidget: Tuned state colors | Jaakko Keränen | |
2021-09-21 | Text: Use 8-wide tabs; hide indicators for now | Jaakko Keränen | |
2021-09-21 | Text: Draw tab indicators; jump to tab stops | Jaakko Keränen | |
2021-09-21 | InputWidget: Shift+Alt+Tab inserts a tab character | Jaakko Keränen | |