Package: epdfview
Severity: wishlist
Tags: upstream patch
Hi.
It would be nice if we could have a wider range of zooms of PDF files
allowed by epdfview. It is particularly nice for seeing small print on
files.
Please, consider applying the patch attached in the next revision of the
package, so that others can benefit from this.
Thanks, Rogério Brito
-- System Information:
Debian Release: squeeze/sid
APT prefers unstable
APT policy: (500, 'unstable')
Architecture: amd64 (x86_64)
Kernel: Linux 2.6.34 (SMP w/2 CPU cores; PREEMPT)
Locale: LANG=en_US.utf-8, LC_CTYPE=pt_BR.utf-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Versions of packages epdfview depends on:
ii libatk1.0-0 1.30.0-1 The ATK accessibility toolkit
ii libc6 2.10.2-9 Embedded GNU C Library: Shared lib
ii libcairo2 1.8.10-4 The Cairo 2D vector graphics libra
ii libcups2 1.4.3-1 Common UNIX Printing System(tm) -
ii libfontconfig1 2.8.0-2.1 generic font configuration library
ii libfreetype6 2.3.11-1 FreeType 2 font engine, shared lib
ii libgcc1 1:4.4.4-2 GCC support library
ii libglib2.0-0 2.24.1-1 The GLib library of C routines
ii libgnutls26 2.8.6-1 the GNU TLS library - runtime libr
ii libgssapi-krb5-2 1.8.1+dfsg-3 MIT Kerberos runtime libraries - k
ii libgtk2.0-0 2.20.1-1 The GTK+ graphical user interface
ii libpango1.0-0 1.28.0-1 Layout and rendering of internatio
ii libpoppler-glib4 0.12.4-1 PDF rendering library (GLib-based
ii libstdc++6 4.4.4-2 The GNU Standard C++ Library v3
ii zlib1g 1:1.2.3.4.dfsg-3 compression library - runtime
epdfview recommends no packages.
Versions of packages epdfview suggests:
pn poppler-data <none> (no description available)
-- no debconf information
--
Rogério Brito : rbr...@{ime.usp.br,gmail.com} : GPG key 1024D/7C2CAEB8
http://rb.doesntexist.org : Packages for LaTeX : algorithms.berlios.de
DebianQA: http://qa.debian.org/developer.php?login=rbrito%40ime.usp.br
diff -u epdfview-0.1.7/debian/changelog epdfview-0.1.7/debian/changelog
--- epdfview-0.1.7/debian/changelog
+++ epdfview-0.1.7/debian/changelog
@@ -1,3 +1,9 @@
+epdfview (0.1.7-3~1) unstable; urgency=low
+
+ * flexibilize the max zoom allowed, needed for many documents with tiny prints.
+
+ -- Rogério Brito <[email protected]> Tue, 25 May 2010 01:53:54 -0300
+
epdfview (0.1.7-2) unstable; urgency=low
* debian/rules:
only in patch2:
unchanged:
--- epdfview-0.1.7.orig/src/IDocument.cxx
+++ epdfview-0.1.7/src/IDocument.cxx
@@ -28,7 +28,7 @@
// Constants.
static const gdouble ZOOM_IN_FACTOR = 1.2;
-static const gdouble ZOOM_IN_MAX = 4.0;
+static const gdouble ZOOM_IN_MAX = 8.0;
static const gdouble ZOOM_OUT_FACTOR = (1.0 / ZOOM_IN_FACTOR);
static const gdouble ZOOM_OUT_MAX = 0.05409;
static const guint CACHE_SIZE = 3;