]> www.fi.muni.cz Git - evince.git/commitdiff
Release 0.3.1 EVINCE_0_3_1
authorMarco Pesenti Gritti <mpg@redhat.com>
Sat, 21 May 2005 18:38:44 +0000 (18:38 +0000)
committerMarco Pesenti Gritti <marco@src.gnome.org>
Sat, 21 May 2005 18:38:44 +0000 (18:38 +0000)
2005-05-21  Marco Pesenti Gritti  <mpg@redhat.com>

        * NEWS:
        * configure.ac:
        * cut-n-paste/toolbar-editor/Makefile.am:

        Release 0.3.1

ChangeLog
NEWS
configure.ac
cut-n-paste/toolbar-editor/Makefile.am

index 8c81cd14aae19973dbf599bb3ba053a02fe91a07..3b7f0d62fcd0e2ead067dcd5f11079bb5a510476 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+2005-05-21  Marco Pesenti Gritti  <mpg@redhat.com>
+
+       * NEWS:
+       * configure.ac:
+       * cut-n-paste/toolbar-editor/Makefile.am:
+
+       Release 0.3.1
+
 2005-05-21  Marco Pesenti Gritti  <mpg@redhat.com>
 
        * shell/ev-view.c: (jump_to_find_result), (ev_view_can_find_next),
diff --git a/NEWS b/NEWS
index 6b772aefe13a76851f3294a219d103c0bb16c8d4..79b93a0695509ef692f76e83d3903f15fcef8103 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,29 @@
+==============
+Evince   0.3.1
+==============
+
+New Features:
+
+       * Toolbar editor
+       * Middle button scrolling
+       * Support for printing page ranges
+       * Support for printing chapters (from the index)
+
+Interface Improvements:
+
+       * Move best fit items in the toolbar control at the top
+       * In the sidebar make drop down menu as large as the button
+       * Several keybindings improvements
+       * Faster scrolling
+       * Only render the visible thumbnails (less memory usage)
+       * Get rid of confusing Normal size menu
+
+Bug Fixes:
+
+       * Better mime detection
+       * Several minor fixes
+       * Fix printing on LPD printers
+
 ==============
 Evince   0.3.0
 ==============
index 4d9f0c0d1f088dfd30caf61ac69fb433ff887170..71c6338a877bf6a59ca8b74a57c5dcbe4dea106e 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.0)
+AC_INIT(evince, 0.3.1)
 AM_INIT_AUTOMAKE(AC_PACKAGE_NAME, AC_PACKAGE_VERSION)
 
 dnl make sure we keep ACLOCAL_FLAGS around for maintainer builds to work
index 5a9b233892013837dd06bb656fe032fa06b0a5d3..a2e5c462d090a9f1c680941af5b0f041f8f56557 100644 (file)
@@ -2,32 +2,29 @@
 INCLUDES = $(TOOLBAR_EDITOR_CFLAGS) \
        -DCURSOR_DIR=\"$(pkgdatadir)\" 
 
-BUILT_SOURCES = eggmarshalers.c eggmarshalers.h
-
 noinst_LTLIBRARIES = libtoolbareditor.la
 
 libtoolbareditor_la_SOURCES =  \
        egg-toolbars-model.c            \
        egg-editable-toolbar.c          \
        egg-toolbar-editor.c            \
-       egg-marshal.c   
+       egg-marshal.c                   \
+       eggmarshalers.c 
 
 noinst_HEADERS =                       \
        egg-toolbars-model.h            \
        egg-editable-toolbar.h          \
-       egg-toolbar-editor.h            
+       egg-toolbar-editor.h            \
+       eggmarshalers.h
+
+BUILT_SOURCES = eggmarshalers.h eggmarshalers.c
 
 eggmarshalers.h: eggmarshalers.list
-       cd $(srcdir) \
-       && $(GLIB_GENMARSHAL) --prefix=_egg_marshal eggmarshalers.list --header > xgen-emh \
-       && cp xgen-emh eggmarshalers.h \
-       && rm -f xgen-emh xgen-emh~
+       $(GLIB_GENMARSHAL) --prefix=_egg_marshal $(srcdir)/eggmarshalers.list --header > eggmarshalers.h
 
 eggmarshalers.c: eggmarshalers.list
-       cd $(srcdir) \
-       && $(GLIB_GENMARSHAL) --prefix=_egg_marshal eggmarshalers.list --body > xgen-emc \
-       && cp xgen-emc eggmarshalers.c \
-       && rm -f xgen-emc xgen-emc~
+       echo '#include "eggmarshalers.h"' > eggmarshalers.c
+       $(GLIB_GENMARSHAL) --prefix=_egg_marshal $(srcdir)/eggmarshalers.list --body >> eggmarshalers.c
 
 egg-marshal.c: eggmarshalers.c eggmarshalers.h