summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2024-08-01Version 3.11.8.3.11.8Andre A. Gomes
2024-08-01changelog: Review for 3.11.8.Andre A. Gomes
2024-08-01changelog: Mention bookmarks-panel fix.Andre A. Gomes
2024-08-01mode/buffer-listing: Only reload buffers-panel.Andre A. Gomes
See #3433.
2024-08-01mode/bookmark(bookmarks-panel): Review UI.Andre A. Gomes
See #3433.
2024-08-01panel(find-panel-buffer): Export.Andre A. Gomes
2024-08-01renderer/gtk: Fix error message.Andre A. Gomes
2024-08-01changelog(3.11.7): Fix formatting.Andre A. Gomes
2024-08-01changelog: Mention UI fix.Andre A. Gomes
2024-08-01buffer.lisp: Fix rendering of buffer menu on long pages.John Mercouris
Additionally, change the width of the menu to be the same as the content, make it a clearer visual indicator that it operates *on* the content.
2024-08-01Refactor fullscreen and maximized window logic.Andre A. Gomes
The new foreign interface architecture handles the state of the relevant window slots (fullscreen-p, maximized-p) instead of setf-ing them on the renderer packages. This replaces the need for the :skip-renderer-resize keyword. Fixed bug in toggle-message-buffer, where the height of the buffer was being probed incorrectly. Refactor the handling of the window-state-event in GTK. It didn't account for events where the window is no longer fullscreen or maximized. Simplify implementation of toggle-fullscreen, toggle-maximize, toggle-status-buffer and toggle-message-buffer. As for the fullscreen rationale regarding the UI: when a fullscreen event is emitted by JS's Fullscreen API, the status and message buffers are hidden. For all other fullscreen events, the status and message buffers are kept. Note that we can't hide the message buffer on fullscreen since then there would be no way to get that important piece of information. On typical browsers, the equivalent of the message buffer is a dynamically visible toolbar at the bottom left (and it is still displayed on fullscreen).
2024-08-01manual: Mention source of crashes on Ubuntu.Andre A. Gomes
2024-08-01documents/EXTENSIONS: Add nx-rbw.Andre A. Gomes
2024-08-01browser(finalize-history): Replace global with argument.Andre A. Gomes
2024-08-01mode/vi(switch-to-vi-normal-mode): Fix indentation.Andre A. Gomes
2024-08-01mode/input-edit(set-active-input-area-content): Fix indentation.Andre A. Gomes
2024-08-01mode/download(cancel-download): Add note.Andre A. Gomes
2024-08-01mode/download: Fix whitespace.Andre A. Gomes
2024-08-01documents/EXTENSIONS: Add nx-passt and nx-bitwarden.Andre A. Gomes
2024-08-01mode/password: Fix whitespace.Andre A. Gomes
2024-08-01gitmodules: Bump cl-gobject-introspection.Andre A. Gomes
2024-08-01gitmodules: Bump fset.Andre A. Gomes
2024-08-01tests/offline/mode/diff: Delete.Andre A. Gomes
Added by mistake in 65a9aa568b16c109281fa403a7c045b3b6d87025.
2024-08-01describe(describe-key-dispatch): Fix UI/UX issue.Andre A. Gomes
Closes #2997.
2024-08-01Uniformize clipboard messages.Andre A. Gomes
2024-08-01history(scroll-position): Fix indentation.Andre A. Gomes
2024-08-01auto-rules: Review command docstrings.Andre A. Gomes
2024-08-01buffer(delete-current-buffer): Refactor docstring.Andre A. Gomes
2024-08-01mode/document(jump-to-heading-buffers): Review docstring.Andre A. Gomes
2024-08-01start: Review start-{swank,slynk} docstrings.Andre A. Gomes
2024-08-01mode/reading-line: Review command docstrings.Andre A. Gomes
2024-08-01mode/hint: Review all commands.Andre A. Gomes
2024-08-01document/README: Mention docstring style for commands.Andre A. Gomes
2024-08-01manual: Minor rephrasing.Andre A. Gomes
2024-08-01mode/reduce-tracking: Fix indentation.Andre A. Gomes
2024-05-31Version 3.11.7.3.11.7Andre A. Gomes
2024-05-31changelog: Review for 3.11.7.Andre A. Gomes
2024-05-31changelog: Mention reduce-tracking-mode fix.Vasily Postnicov
2024-05-31tests/offline/mode/reduce-tracking: Add redirection test.Vasily Postnicov
See https://github.com/atlas-engineer/nyxt/issues/3402.
2024-05-31mode/reduce-tracking: Fix request corruption.Vasily Postnicov
STRIP-TRACKING-PARAMETERS added an extra level of percent encoding to a request which resulted in broken redirect and inability to open some pages like Google Mail. Fixes #3402.
2024-05-27mode/document: Bind common zoom keybindings to all keyschemes.Andre A. Gomes
2024-05-27gitmodules: Bump dissect.Andre A. Gomes
2024-05-27Bump git submodules.Andre A. Gomes
The git submodules for these libraries have been dropped.
2024-05-27gitmodules: Fix misc-extensions.Andre A. Gomes
2024-05-27documents/EXTENSIONS: Fix links to nx-tailor and nx-router.Andre A. Gomes
2024-05-27assets/appdata: Fix typo.Andre A. Gomes
2024-05-27changelog: Mention fix.Vasily Postnicov
2024-05-27Delete lookup-hostname.Vasily Postnicov
No longer needed after refactoring valid-url-p.
2024-05-27Refactor set-url queries.Vasily Postnicov
Fixes the following issue reported in #3385. Input such as "github.com/atlas-engineer" must be interpreted as a URL, not as a search query.
2024-05-27urls(valid-url-p): Minor refactor.Andre A. Gomes