Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog11
-rw-r--r--NEWS17
-rw-r--r--configure.ac2
-rw-r--r--ps/ps-document.c2
4 files changed, 29 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 8d83d0c..a554834 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,14 @@
+2005-04-06 Marco Pesenti Gritti <mpg@redhat.com>
+
+ * NEWS:
+ * configure.ac:
+
+ Release 0.2.0
+
+ * ps/ps-document.c: (setup_pixmap):
+
+ Remove debug code
+
2005-04-05 Kristian Høgsberg <krh@redhat.com>
* backend/ev-page-cache.c (ev_page_cache_next_page):
diff --git a/NEWS b/NEWS
index 9441194..46ffe1d 100644
--- a/NEWS
+++ b/NEWS
@@ -1,4 +1,21 @@
==============
+Evince 0.2.0
+==============
+
+Code changes
+
+ * Use poppler glib api
+
+Interface improvements
+
+ * Rewrite most of the backend code to use threads and make
+ the interface more responsive
+
+New features
+
+ * Use page labels as page numbers (Jhonatan)
+
+==============
Evince 0.1.9
==============
diff --git a/configure.ac b/configure.ac
index 3a88ccc..1b1a431 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.59)
-AC_INIT(evince, 0.1.9)
+AC_INIT(evince, 0.2.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/ps/ps-document.c b/ps/ps-document.c
index 9ff165b..c857a21 100644
--- a/ps/ps-document.c
+++ b/ps/ps-document.c
@@ -372,8 +372,6 @@ setup_pixmap (PSDocument *gs, int page, double scale)
pixmap_width = floor (width * scale);
pixmap_height = floor (height * scale);
- g_print ("%f %f %f %d %d\n", width, height, scale, pixmap_width, pixmap_height);
-
if(gs->bpixmap) {
int w, h;