[poppler] Branch 'poppler-0.10' - 2 commits - CMakeLists.txt configure.ac msvc/config.h NEWS poppler/Form.cc poppler/Gfx.h poppler/OptionalContent.h qt4/src
Albert Astals Cid
aacid at kemper.freedesktop.org
Sun Nov 9 13:52:16 PST 2008
CMakeLists.txt | 2 +-
NEWS | 17 +++++++++++++++++
configure.ac | 2 +-
msvc/config.h | 6 +++---
poppler/Form.cc | 2 +-
poppler/Gfx.h | 1 +
poppler/OptionalContent.h | 1 +
qt4/src/Doxyfile | 2 +-
qt4/src/poppler-optcontent.cc | 1 +
9 files changed, 27 insertions(+), 7 deletions(-)
New commits:
commit 663406b46cb2c0de96423c4f7790117e62a90921
Author: Albert Astals Cid <aacid at kde.org>
Date: Sun Nov 9 22:51:50 2008 +0100
Poppler 0.10.1
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 640492c..10efcaa 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -11,7 +11,7 @@ find_package(PkgConfig)
include(MacroEnsureVersion)
include(MacroBoolTo01)
-set(POPPLER_VERSION "0.10.0")
+set(POPPLER_VERSION "0.10.1")
# command line switches
option(ENABLE_XPDF_HEADERS "Install unsupported xpdf headers." OFF)
diff --git a/NEWS b/NEWS
index 4438b75..2694621 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,20 @@
+Release 0.10.1
+
+ core:
+ * Improvements in Optional Content support
+ * Small fix in Form support
+ * Fix memory leak in case of error
+ * Fix potential crash on text search
+ * Try render documents with invalid indexed color space parameters. Bug #18374
+ * Fix crash on text extraction when poppler-data is not installed. Bug #18023
+
+ Qt:
+ * Fix two memory leaks
+
+ Qt4:
+ * Small documentation improvement
+ * Fix memory leak in the demo code
+
Release 0.10.0
core:
diff --git a/configure.ac b/configure.ac
index 7ecc037..84573f2 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,5 +1,5 @@
AC_PREREQ(2.59)
-AC_INIT(poppler, 0.10.0)
+AC_INIT(poppler, 0.10.1)
AM_INIT_AUTOMAKE([foreign])
AM_CONFIG_HEADER(config.h)
AM_CONFIG_HEADER(poppler/poppler-config.h)
diff --git a/msvc/config.h b/msvc/config.h
index f3d563d..a50cf63 100644
--- a/msvc/config.h
+++ b/msvc/config.h
@@ -32,13 +32,13 @@
#define PACKAGE_NAME "poppler"
/* Define to the full name and version of this package. */
-#define PACKAGE_STRING "poppler 0.10.0"
+#define PACKAGE_STRING "poppler 0.10.1"
/* Define to the one symbol short name of this package. */
#define PACKAGE_TARNAME "poppler"
/* Define to the version of this package. */
-#define PACKAGE_VERSION "0.10.0"
+#define PACKAGE_VERSION "0.10.1"
/* Poppler data dir */
#define POPPLER_DATADIR "/usr/local/share/poppler"
@@ -53,7 +53,7 @@
/* #undef USE_EXCEPTIONS */
/* Version number of package */
-#define VERSION "0.10.0"
+#define VERSION "0.10.1"
#define snprintf _snprintf
#define unlink _unlink
diff --git a/qt4/src/Doxyfile b/qt4/src/Doxyfile
index cdf57e4..55485bd 100644
--- a/qt4/src/Doxyfile
+++ b/qt4/src/Doxyfile
@@ -31,7 +31,7 @@ PROJECT_NAME = "Poppler Qt4 "
# This could be handy for archiving the generated documentation or
# if some version control system is used.
-PROJECT_NUMBER = 0.10.0
+PROJECT_NUMBER = 0.10.1
# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute)
# base path where the generated documentation will be put.
commit 967b5731a861ea00b2695a505d21246a051914ba
Author: Albert Astals Cid <aacid at kde.org>
Date: Sun Nov 9 22:51:31 2008 +0100
Update copyright headers
diff --git a/poppler/Form.cc b/poppler/Form.cc
index a245c17..fb9ab89 100644
--- a/poppler/Form.cc
+++ b/poppler/Form.cc
@@ -5,7 +5,7 @@
// This file is licensed under the GPLv2 or later
//
// Copyright 2006-2008 Julien Rebetez <julienr at svn.gnome.org>
-// Copyright 2007 Albert Astals Cid <aacid at kde.org>
+// Copyright 2007-2008 Albert Astals Cid <aacid at kde.org>
// Copyright 2007-2008 Carlos Garcia Campos <carlosgc at gnome.org>
// Copyright 2007 Adrian Johnson <ajohnson at redneon.com>
// Copyright 2007 Iñigo MartÃnez <inigomartinez at gmail.com>
diff --git a/poppler/Gfx.h b/poppler/Gfx.h
index b14c5a2..6787738 100644
--- a/poppler/Gfx.h
+++ b/poppler/Gfx.h
@@ -16,6 +16,7 @@
// Copyright (C) 2005 Jonathan Blandford <jrb at redhat.com>
// Copyright (C) 2007 Iñigo MartÃnez <inigomartinez at gmail.com>
// Copyright (C) 2008 Brad Hards <bradh at kde.org>
+// Copyright (C) 2008 Carlos Garcia Campos <carlosgc at gnome.org>
//
// To see a description of the changes please see the Changelog file that
// came with your tarball or type make ChangeLog if you are building from git
diff --git a/poppler/OptionalContent.h b/poppler/OptionalContent.h
index 90fded2..7add4a3 100644
--- a/poppler/OptionalContent.h
+++ b/poppler/OptionalContent.h
@@ -3,6 +3,7 @@
// OptionalContent.h
//
// Copyright 2007 Brad Hards <bradh at kde.org>
+// Copyright 2008 Carlos Garcia Campos <carlosgc at gnome.org>
//
// Released under the GPL (version 2, or later, at your option)
//
diff --git a/qt4/src/poppler-optcontent.cc b/qt4/src/poppler-optcontent.cc
index ecbc23a..6a5ffe7 100644
--- a/qt4/src/poppler-optcontent.cc
+++ b/qt4/src/poppler-optcontent.cc
@@ -2,6 +2,7 @@
*
* Copyright (C) 2007, Brad Hards <bradh at kde.org>
* Copyright (C) 2008, Pino Toscano <pino at kde.org>
+ * Copyright (C) 2008, Carlos Garcia Campos <carlosgc at gnome.org>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
More information about the poppler
mailing list