diff options
| author | Victor Kareh <[email protected]> | 2026-08-27 15:23:48 -0400 |
|---|---|---|
| committer | Victor Kareh <[email protected]> | 2026-08-27 15:23:48 -0400 |
| commit | 24827eb8e8a26e2f685f26e6242c23aa300f2d08 (patch) | |
| tree | 871b90a975902c4cef021bf904f070456a15822a | |
| parent | 3bc9b589fbeb7a69e703ee58775cfa24f8355f25 (diff) | |
| download | atril-24827eb8e8a26e2f685f26e6242c23aa300f2d08.tar.bz2 atril-24827eb8e8a26e2f685f26e6242c23aa300f2d08.tar.xz | |
Release 1.28.7
| -rw-r--r-- | NEWS | 25 | ||||
| -rw-r--r-- | configure.ac | 2 | ||||
| -rw-r--r-- | meson.build | 2 |
3 files changed, 27 insertions, 2 deletions
@@ -1,3 +1,28 @@ +### atril 1.28.7 + +* Increased recent files display to 10 entries +* Standardize height of action_widget +* Add option to reset metadata for documents +* epub: add NULL guards to prevent crashes with malformed EPUBs +* Add allow-links-change-zoom setting +* epub: Add libgepub-0.7 build dependency +* epub: Replace backend internals with libgepub +* epub: Implement night mode using WebKit user stylesheets +* epub: Pre-compute page paths and disable find interface +* epub: Remove dead code and unused virtual methods +* epub: Remove MathJax build configuration +* epub: Expose GepubDoc handle via EvDocument virtual method +* epub: Store GepubDoc handle in EvWebView and simplify navigation +* epub: Implement search using WebKit find controller +* a11y: implement text selection support for pages +* a11y: fix selection bleeding into the previous line +* a11y: report selection changes on the right page +* a11y: keep selections on other pages when adding or removing one +* a11y: allow selecting through the very last character +* a11y: report selection changes only on pages that actually changed +* Update translation files +* Translated using Weblate (many languages) + ### atril 1.28.6 * Fix and off-by-one error for fit-to-page zoom diff --git a/configure.ac b/configure.ac index e29d8c69..3ff04caa 100644 --- a/configure.ac +++ b/configure.ac @@ -4,7 +4,7 @@ m4_define([ev_major_version], [1]) m4_define([ev_minor_version], [28]) -m4_define([ev_micro_version], [6]) +m4_define([ev_micro_version], [7]) m4_define([ev_extra_version], []) m4_define([ev_version], [ev_major_version.ev_minor_version.ev_micro_version()ev_extra_version]) diff --git a/meson.build b/meson.build index 4b4965a8..bfb6cba3 100644 --- a/meson.build +++ b/meson.build @@ -1,5 +1,5 @@ project('atril', 'c', 'cpp', - version: '1.28.6', + version: '1.28.7', meson_version: '>=0.56.0', default_options: [ 'warning_level=1', |
