Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog9
-rw-r--r--Makefile.am3
-rw-r--r--NEWS50
-rw-r--r--configure.ac4
4 files changed, 64 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index c85259e..fab50fd 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,12 @@
+Fri Apr 22 19:57:46 2005 Jonathan Blandford <jrb@redhat.com>
+
+ * NEWS:
+ * configure.ac:
+
+ Release 0.2.1
+
+ * Makefile.am: fix distcheck.
+
2005-04-23 Nickolay V. Shmyrev <nshmyrev@yandex.ru>
* shell/ev-sidebar-links.c: (selection_changed_callback),
diff --git a/Makefile.am b/Makefile.am
index 1013b3f..79f128e 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -26,3 +26,6 @@ DISTCLEANFILES = \
intltool-update
DISTCHECK_CONFIGURE_FLAGS = --disable-schemas-install
+
+# Ignore scrollkeeper issues for now. @#*$& scrollkeeper
+distuninstallcheck_listfiles = find . -type f -print | grep -v scrollkeeper | grep -v /share/gnome/help/ | grep -v \.omf
diff --git a/NEWS b/NEWS
index 46ffe1d..65900d5 100644
--- a/NEWS
+++ b/NEWS
@@ -1,4 +1,54 @@
==============
+Evince 0.2.1
+==============
+
+New Features:
+
+ * new backend to support DJVU files.
+ * new backend to support DVI.
+ * Initial implementation of doc metadata. No UI for this yet,
+ though we respect docs requesting UI changes.
+ * support application/x-gzpostscript
+ * consolidate mime handling code so thumbnailer and main page
+ can use them. Thumbnail all types we support.
+ * Respect document orientation
+ * Implement print and save a copy for the ps backend.
+ * Badass completion of the document in the entry. Only works
+ with GTK+ >= 2.7.1
+ * User docs
+
+Bug Fixes:
+
+ * Faster Zooming
+ * Clean up Schemas
+ * README added.
+ * Small rework of sidebar code. Now sidebar pages should implement
+ EvSidebarPage interface.
+ * lots of small bug fixes
+ * Actually fix the "FIXME: update priority" comment.
+ * Update egg-recent from libegg. This should fix long startup
+ problem.
+
+Interface Improvements:
+
+ * Shift + Space scrolls up.
+ * Removed fullscreen toolbar hard-coded style
+ * Fix normal size zoom. Make zoom in/zoom out unsensitive when
+ they are behyond the limits.
+ * Doesn't show resize grip when maximized
+ * don't draw border in fullscreen
+ * Doesn't show thumbnails if document has 1 page. Make sidebar
+ menu entries sensitive only if if they have sense.
+ * Work around the Escape conflict (find bar and unfullscreen)
+ * Save accelerators on exit.
+ * Add Edit->Find Next
+
+Translations:
+
+ * Make all toolbar items translatable
+ * ru (Nickolay Shmyrev)
+
+==============
Evince 0.2.0
==============
diff --git a/configure.ac b/configure.ac
index dec2336..9848a20 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.0)
+AC_INIT(evince, 0.2.1)
AM_INIT_AUTOMAKE(AC_PACKAGE_NAME, AC_PACKAGE_VERSION)
dnl make sure we keep ACLOCAL_FLAGS around for maintainer builds to work
@@ -37,7 +37,7 @@ PKG_CHECK_MODULES(THUMBNAILER, gtk+-2.0 >= 2.6.0 gnome-vfs-2.0 poppler-glib >= 0
PKG_CHECK_MODULES(DVI, gtk+-2.0 >= 2.6.0)
PKG_CHECK_MODULES(GTK, gtk+-2.0 >= 2.6.0)
PKG_CHECK_MODULES(PS, gtk+-2.0 >= 2.6.0 gnome-vfs-2.0 libgnomeui-2.0)
-PKG_CHECK_MODULES(POPPLER_GLIB, poppler-glib >= 0.1.2)
+PKG_CHECK_MODULES(POPPLER_GLIB, poppler-glib >= 0.3.0)
GLIB_GENMARSHAL=`$PKG_CONFIG --variable=glib_genmarshal glib-2.0`
AC_SUBST(GLIB_GENMARSHAL)