diff options
author | raveit65 <[email protected]> | 2018-06-11 20:04:50 +0200 |
---|---|---|
committer | raveit65 <[email protected]> | 2018-06-11 20:04:50 +0200 |
commit | 23e7c60915206818e0d83d183f0cc519b550dab4 (patch) | |
tree | 11bc8bcb8d65f7acfef9d0653bf86d03181492df | |
parent | a6c6e13f7ab81e3e59b2a8b3cdd7750520da73cd (diff) | |
download | atril-1.20.2.tar.bz2 atril-1.20.2.tar.xz |
release 1.20.2v1.20.2
-rw-r--r-- | NEWS | 89 | ||||
-rw-r--r-- | configure.ac | 2 |
2 files changed, 54 insertions, 37 deletions
@@ -1,41 +1,58 @@ +### atril 1.20.2 + + * Translations update + * disable StartPresentation action in fullscreen if document has no pages + * disable ViewPresentation action if document has no pages + * libdocument: Use gdk_pixbuf_get_from_surface() + * thumbnailer: Remove unused code + * view: Fix page background rendering while loading + * libdocument: Deprecate misc_get_page_border_size() + * view: Use a rendered frame instead of custom border + * a11y: Return correct start and end offsets + * a11y: Fix crash with Orca screen reader + * libview: drop deprecated unneeded code + * ev-loading-message: Remove unused variables + * libview: fix text selection with mouse in annotation window + * libview: fix build without epub + ### atril 1.20.1 - Disable view presentation if there is no document. - Allow changing the page of a presentation - libview: Fix goto window in presentation mode - libview: avoid deprecated gdk_screen_get_monitor - EvPresentationView: Render correctly on hi-dpi displays - libview: Fix g_return condition in set_device_scale_on_surface() - EvView: render correctly on hi-dpi displays - libview: use css to draw the background of presentations - Move custom css to a file compiled as a gresource - shell: Use GResource for data files - toolbar-editor: Add methods to load from GResource - previewer: Use GResource for data files - build: Add configure check for glib-compile-resources - update resource for translations - libview: Check number of pages when processing button events - libview: Add check for pageless documents to ev_view_accessible_focus_changed - libview: Check number of pages on ev_view_document_changed_cb - Use GtkOverlay to show the loading message - shell: Remove unused marshalers - thumbnailer: Send error messages to stderr - shell: Use GtkApplication to inhibit the screensaver - shell: Port to GtkApplication - shell: Use g_printerr instead of g_warning - daemon: Port to GApplication - daemon: Use gdbus-codegen for the org.mate.atril.Daemon interface - shell: Use gdbus-codegen for the org.mate.atril.Window interface - shell: Use gdbus-codegen for the org.mate.atril.Application interface - libview: save inverted colors in a document - Save/restore context when getting colors for a different state - epub: allow to save epub documents - epub: fix loading epub thumbnails - shell: fix menu-accel for inverted colors - shell: add keypad accels for zoom_reset - Add zoom reset - avoid deprecated GtkStock - Check legal boundaries of accessible pages + * Disable view presentation if there is no document. + * Allow changing the page of a presentation + * libview: Fix goto window in presentation mode + * libview: avoid deprecated gdk_screen_get_monitor + * EvPresentationView: Render correctly on hi-dpi displays + * libview: Fix g_return condition in set_device_scale_on_surface() + * EvView: render correctly on hi-dpi displays + * libview: use css to draw the background of presentations + * Move custom css to a file compiled as a gresource + * shell: Use GResource for data files + * toolbar-editor: Add methods to load from GResource + * previewer: Use GResource for data files + * build: Add configure check for glib-compile-resources + * update resource for translations + * libview: Check number of pages when processing button events + * libview: Add check for pageless documents to ev_view_accessible_focus_changed + * libview: Check number of pages on ev_view_document_changed_cb + * Use GtkOverlay to show the loading message + * shell: Remove unused marshalers + * thumbnailer: Send error messages to stderr + * shell: Use GtkApplication to inhibit the screensaver + * shell: Port to GtkApplication + * shell: Use g_printerr instead of g_warning + * daemon: Port to GApplication + * daemon: Use gdbus-codegen for the org.mate.atril.Daemon interface + * shell: Use gdbus-codegen for the org.mate.atril.Window interface + * shell: Use gdbus-codegen for the org.mate.atril.Application interface + * libview: save inverted colors in a document + * Save/restore context when getting colors for a different state + * epub: allow to save epub documents + * epub: fix loading epub thumbnails + * shell: fix menu-accel for inverted colors + * shell: add keypad accels for zoom_reset + * Add zoom reset + * avoid deprecated GtkStock + * Check legal boundaries of accessible pages ### atril 1.20.0 diff --git a/configure.ac b/configure.ac index 9a316c7a..8b18aa70 100644 --- a/configure.ac +++ b/configure.ac @@ -4,7 +4,7 @@ m4_define([ev_major_version], [1]) m4_define([ev_minor_version], [20]) -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]) |