From 2684c0efc4af084a1f9cb63b61cd94c1cbbc2e57 Mon Sep 17 00:00:00 2001 From: Marco Pesenti Gritti Date: Sat, 7 May 2005 10:16:03 +0000 Subject: [PATCH] Release 0.3.0 2005-05-07 Marco Pesenti Gritti * NEWS: * configure.ac: Release 0.3.0 * data/evince-ui.xml: Hide presentation mode for now * shell/ev-view.c: (highlight_find_results): Show current find selection only on current page --- ChangeLog | 15 +++++++++++++++ NEWS | 24 ++++++++++++++++++++++++ configure.ac | 2 +- data/evince-ui.xml | 1 - shell/ev-view.c | 7 ++++++- 5 files changed, 46 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index e100624c..03804376 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,18 @@ +2005-05-07 Marco Pesenti Gritti + + * NEWS: + * configure.ac: + + Release 0.3.0 + + * data/evince-ui.xml: + + Hide presentation mode for now + + * shell/ev-view.c: (highlight_find_results): + + Show current find selection only on current page + 2005-05-07 Marco Pesenti Gritti * shell/ev-view.c: (ev_view_select_all): diff --git a/NEWS b/NEWS index 65900d56..6b772aef 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,27 @@ +============== +Evince 0.3.0 +============== + +New Features: + + * Continous mode + * Dual page mode + * Control + Scroll does zooming + * Shift + Scroll scrolls horizontally + * Zoom control in the toolbar + +Interface Improvements: + + * If all page labels are numeric show only + the page total + +Bug Fixes: + + * Fix size of dvi thumbnails + * Fix crash on exit + * Make thumbnailer schemas translatable + * Fix build problems with t1lib + ============== Evince 0.2.1 ============== diff --git a/configure.ac b/configure.ac index f24ff119..dfe8d9df 100644 --- a/configure.ac +++ b/configure.ac @@ -1,7 +1,7 @@ dnl Process this file with autoconf to produce a configure script. AC_PREREQ(2.57) -AC_INIT(evince, 0.2.1) +AC_INIT(evince, 0.3.0) AM_INIT_AUTOMAKE(AC_PACKAGE_NAME, AC_PACKAGE_VERSION) dnl make sure we keep ACLOCAL_FLAGS around for maintainer builds to work diff --git a/data/evince-ui.xml b/data/evince-ui.xml index 0811ed96..3d08cc5c 100644 --- a/data/evince-ui.xml +++ b/data/evince-ui.xml @@ -25,7 +25,6 @@ - diff --git a/shell/ev-view.c b/shell/ev-view.c index 450c4d45..ab2b872e 100644 --- a/shell/ev-view.c +++ b/shell/ev-view.c @@ -900,7 +900,12 @@ highlight_find_results (EvView *view, int page) GdkRectangle view_rectangle; guchar alpha; - alpha = (i == view->find_result) ? 0x90 : 0x20; + if (i == view->find_result && page == view->find_page) { + alpha = 0x90; + } else { + alpha = 0x20; + } + ev_document_find_get_result (find, page, i, &rectangle); doc_rect_to_view_rect (view, page, &rectangle, &view_rectangle); -- 2.43.5