summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVictor Kareh <[email protected]>2026-05-14 21:44:50 -0400
committerVictor Kareh <[email protected]>2026-05-14 21:44:50 -0400
commit76d0cc7230f4ada3488020c63995bb474b8fe4c6 (patch)
treefb47b3e1fe03c6e182c6aa06fc71b522625c6f8e
parentb989b7922a454ed81f8bb14786a958828513f576 (diff)
downloadatril-1.28.4.tar.bz2
atril-1.28.4.tar.xz
release 1.28.4HEADv1.28.4master
-rw-r--r--NEWS37
-rw-r--r--configure.ac2
-rw-r--r--meson.build2
3 files changed, 39 insertions, 2 deletions
diff --git a/NEWS b/NEWS
index f3b255fa..dda7ed00 100644
--- a/NEWS
+++ b/NEWS
@@ -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',