Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog15
-rw-r--r--NEWS24
-rw-r--r--configure.ac2
-rw-r--r--data/evince-ui.xml1
-rw-r--r--shell/ev-view.c7
5 files changed, 46 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index e100624..0380437 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,20 @@
2005-05-07 Marco Pesenti Gritti <mpg@redhat.com>
+ * 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 <mpg@redhat.com>
+
* 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 @@
<menuitem name="ViewSidebarMenu" action="ViewSidebar"/>
<separator/>
<menuitem name="ViewFullscreenMenu" action="ViewFullscreen"/>
- <menuitem name="ViewPresentationMenu" action="ViewPresentation"/>
<separator/>
<menuitem name="ViewContinuousMenu" action="ViewContinuous"/>
<menuitem name="ViewDualMenu" action="ViewDual"/>
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);