diff options
| author | Victor Kareh <[email protected]> | 2026-05-14 21:44:50 -0400 |
|---|---|---|
| committer | Victor Kareh <[email protected]> | 2026-05-14 21:44:50 -0400 |
| commit | 76d0cc7230f4ada3488020c63995bb474b8fe4c6 (patch) | |
| tree | fb47b3e1fe03c6e182c6aa06fc71b522625c6f8e | |
| parent | b989b7922a454ed81f8bb14786a958828513f576 (diff) | |
| download | atril-1.28.4.tar.bz2 atril-1.28.4.tar.xz | |
| -rw-r--r-- | NEWS | 37 | ||||
| -rw-r--r-- | configure.ac | 2 | ||||
| -rw-r--r-- | meson.build | 2 |
3 files changed, 39 insertions, 2 deletions
@@ -1,8 +1,44 @@ +### atril 1.28.4 + + * bump version in meson.build + * bump version in configure.ac + * update NEWS for 1.28.3 + * fix: add mathjax to build script for arch linux + * fix meson.build autodetect mathjax if epub + * fix: meson.build define undefiend mathjax variable + * fix: meson.build mathjax variable in correct scope + * ci: add option to clean ccache + * build: disable DVI on fedora:latest and ubuntu:rolling + * build: use shell vs bash + * ci: remove unnecessary GH CLI installation step + * chore(deps): bump actions/cache from 3 to 5 + * chore(deps): bump actions/checkout from 3 to 6 + * Fix tests imported from XReader + * Fix tests with AT-SPI2 >= 2.53 + * Improve search system + * add .gitignore and include files in meson + * pdf: Always use poppler_document_save to avoid data loss + * fix meson help + * fix memleak + * fix build on gcc 15 + * ci: enable dvi for all distros + * Use properties for can-zoom-in and -out + * libview: Allow zooming to the limits of the scale + * shell: Fix Max zoom in UI + * ev-window: Remove unnecessary calculation + * ev-window: Limit max zoom based on largest page size + * Increase default page cache size to 500 MiB + * libview: Account for device scale in page cache size calculation + * Weblate migration (#690) + * ev-application: Quote user-supplied strings in ev_spawn command line + ### atril 1.28.3 + * epub: autodetect matjax path * improvements to meson build * ci: initial work on github actions ### atril 1.28.2 + * Translations update * epub: Disable thumbnailing sidebar * (meson) fix: rename all backend files @@ -38,6 +74,7 @@ * replace ev_document_model_get_dual_page with ### atril 1.28.1 + * Translations update * Update CBR library to libarchive in README.md * ci: fix travis build failures caused by recent travis changes diff --git a/configure.ac b/configure.ac index aa57b579..7337cb74 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], [3]) +m4_define([ev_micro_version], [4]) 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 2a3ec91e..97116f60 100644 --- a/meson.build +++ b/meson.build @@ -1,5 +1,5 @@ project('atril', 'c', 'cpp', - version: '1.28.3', + version: '1.28.4', meson_version: '>=0.56.0', default_options: [ 'warning_level=1', |
