diff options
-rw-r--r-- | NEWS | 37 | ||||
-rw-r--r-- | configure.ac | 2 | ||||
-rw-r--r-- | meson.build | 2 |
3 files changed, 38 insertions, 3 deletions
@@ -1,9 +1,44 @@ +### atril 1.28.2 + * Translations update + * epub: Disable thumbnailing sidebar + * (meson) fix: rename all backend files + * (meson) fix: generate dbus generated with the correct prefix + * (meson) fix: building atrild with explicit sources + * (meson) fix: building atril target + * (meson) fix: shell/meson.build missing files + * (meson) fix: correct dependeny on mate-submodules + * (meson) fix: properly build cut-n-paste/toolbar-editor + * (meson) fix: add missing properties/meson.build + * (meson) fix all build errors with meson + * (meson) fix more build errors + * (meson) fix more build errors + * (meson) fix: disable maintainer mode per default + * (meson) fix: #error "Only <atril-document.h> can be included directly." + * (meson) fix: libdocument! meson automatically adds lib prefix + * (meson) chore: clean references to xreader + * (meson) chore: add subprojects/mate-submodules.wrap + * (meson) fix: remove non existing source in shell + * (meson) fix: correct typo missing .in in filename + * (meson) fix: use mate-submodules correctly + * (meson) chore: fix warnings for meson.build + * (meson) chore: pin meson version, add missing ATRIL_MIME_TYPES + * (meson) chore: reorganinze meson.build + * (meson) chore: add maintainer mode + * (meson) chore: remove unused intltool + * (meson) meson: make ps and epub optional backends + * (meson) Initial support for meson + * Fix .cbr mimetype + * Wayland: stop segfaults on some systems + * replace deprecated gtk_menu_tool_button_new_from_stock + * libview/ev-document-model.c remove one more deprecation warning + * 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 * Cleanup icons Makefile - * icons: Include higher resolution icons (#608) + * icons: Include higher resolution icons (#608) ### atril 1.28.0 diff --git a/configure.ac b/configure.ac index b8ccda8a..65d1c05d 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], [1]) +m4_define([ev_micro_version], [2]) 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 1ae9885c..a2eb813f 100644 --- a/meson.build +++ b/meson.build @@ -1,5 +1,5 @@ project('atril', 'c', 'cpp', - version: '1.28.1', + version: '1.28.2', meson_version: '>=0.56.0', default_options: [ 'warning_level=1', |