]> www.fi.muni.cz Git - evince.git/commitdiff
Update for 0.3.4
authorMarco Pesenti Gritti <mpg@redhat.com>
Wed, 17 Aug 2005 08:28:34 +0000 (08:28 +0000)
committerMarco Pesenti Gritti <marco@src.gnome.org>
Wed, 17 Aug 2005 08:28:34 +0000 (08:28 +0000)
2005-08-17  Marco Pesenti Gritti  <mpg@redhat.com>

        * NEWS:
        * configure.ac:

        Update for 0.3.4

        * shell/Makefile.am:

        Add ev-application-service.xml to extra dist

        * shell/ev-view.c: (find_page_at_location):

        Remove unused function (fix warning)

ChangeLog
NEWS
configure.ac
shell/Makefile.am
shell/ev-view.c

index 637be95fb18b6ea9d0c710d7611733d0a6af655a..63363052e57debc12ece71a950ed998bfb5f7549 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,18 @@
+2005-08-17  Marco Pesenti Gritti  <mpg@redhat.com>
+
+       * NEWS:
+       * configure.ac:
+
+       Update for 0.3.4
+
+       * shell/Makefile.am:
+
+       Add ev-application-service.xml to extra dist
+
+       * shell/ev-view.c: (find_page_at_location):
+
+       Remove unused function (fix warning)
+
 2005-08-17  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
 
        * dvi/mdvi-lib/t1.c: (t1_reset_resolution), (t1_really_load_font),
diff --git a/NEWS b/NEWS
index 293d5c78090bb3f5875db4f5327ae899f3be013a..dcfb921e9a4be2a432a03b5cc6ff5f2097e8448e 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,16 @@
+==============
+Evince   0.3.4
+==============
+
+Bug Fixes:
+
+    * Depend on poppler 0.4.0
+    * Convert filenames to utf8 when showing them in the UI
+    * Return focus back to view on escape
+    * Fix compatibility with dbus 0.34.2
+    * Fix some build warnings
+    * Fix dvi backend compilation with t1lib-5.0
+
 ==============
 Evince   0.3.3
 ==============
index c0f0163a6c4db50095726fb3e70bd301375c76c3..9479ff50e59f060628196917dd7c8a2d7c8219eb 100644 (file)
@@ -1,7 +1,7 @@
 dnl Process this file with autoconf to produce a configure script.
 
 AC_PREREQ(2.57)
-AC_INIT(evince, 0.3.3)
+AC_INIT(evince, 0.3.4)
 AM_INIT_AUTOMAKE(AC_PACKAGE_NAME, AC_PACKAGE_VERSION)
 
 AM_CONFIG_HEADER(config.h)
index 8ab40f903f2bb1a714e6bc625386b55e29a4b491..f756f6228faf2209fcee9ceb5f268e2fc92e1f0c 100644 (file)
@@ -82,8 +82,10 @@ if ENABLE_DBUS
 BUILT_SOURCES += ev-application-service.h
 endif
 
-EXTRA_DIST = ev-marshal.list \
-            ev-application-service.h
+EXTRA_DIST = ev-marshal.list           \
+       ev-application-service.h        \
+       ev-application-service.xml
+
 
 ev-marshal.h: ev-marshal.list
        glib-genmarshal --prefix=ev_marshal ev-marshal.list --header > ev-marshal.h
index 07fee0d7a11ba01339bb175f467c399efa167b65..7fe99552eb4e3ea83c3c9cf6454bad465bcb0537 100644 (file)
@@ -236,8 +236,6 @@ static void       find_page_at_location                      (EvView
                                                              gint               *page,
                                                              gint               *x_offset,
                                                              gint               *y_offset);
-static void       ev_view_queue_draw_page                    (EvView             *view,
-                                                             gint                page);
 
 /*** Hyperrefs ***/
 static EvLink*    get_link_at_location                       (EvView             *view,
@@ -1007,14 +1005,6 @@ find_page_at_location (EvView  *view,
        *page = -1;
 }
 
-static void
-ev_view_queue_draw_page (EvView *view,
-                        gint    page)
-{
-       /* FIXME: write */
-       gtk_widget_queue_draw (GTK_WIDGET (view));
-}
-
 static gboolean
 location_in_text (EvView  *view,
                  gdouble  x,