From 2684c0efc4af084a1f9cb63b61cd94c1cbbc2e57 Mon Sep 17 00:00:00 2001 From: Marco Pesenti Gritti Date: Sat, 07 May 2005 10:16:03 +0000 Subject: 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 --- diff --git a/ChangeLog b/ChangeLog index e100624..0380437 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,20 @@ 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): Compute size of the actual page, not of diff --git a/NEWS b/NEWS index 65900d5..6b772ae 100644 --- a/NEWS +++ b/NEWS @@ -1,4 +1,28 @@ ============== +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 f24ff11..dfe8d9d 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 0811ed9..3d08cc5 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 450c4d4..ab2b872 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); -- cgit v0.9.1