CMakeLists.txt   |    3 ++-
 NEWS             |   50 ++++++++++++++++++++++++++++++++++++++++++++++++--
 configure.ac     |    2 +-
 msvc/config.h    |    6 +++---
 qt4/src/Doxyfile |    2 +-
 5 files changed, 55 insertions(+), 8 deletions(-)

New commits:
commit a568248d3255407fcaa7368c4925c20e95619d20
Author: Albert Astals Cid <[email protected]>
Date:   Fri Jun 19 21:07:39 2009 +0200

    0.11.1

diff --git a/CMakeLists.txt b/CMakeLists.txt
index 2851b85..5213705 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -13,7 +13,7 @@ include(MacroBoolTo01)
 
 set(POPPLER_MAJOR_VERSION "0")
 set(POPPLER_MINOR_VERSION "11")
-set(POPPLER_MICRO_VERSION "0")
+set(POPPLER_MICRO_VERSION "1")
 set(POPPLER_VERSION 
"${POPPLER_MAJOR_VERSION}.${POPPLER_MINOR_VERSION}.${POPPLER_MICRO_VERSION}")
 
 # command line switches
diff --git a/NEWS b/NEWS
index 0d8870b..aa98555 100644
--- a/NEWS
+++ b/NEWS
@@ -1,4 +1,50 @@
-Release 0.11.0 (0.10 Alpha)
+Release 0.11.1 (0.12 Beta 1)
+
+       core:
+        * Support colorizing text in pattern colorspace. Bug #19670 and #19994
+        * Add the possibility of forcing no hinting of fonts in the Splash 
backend
+        * Support multiple page sizes when converting to PS. Bug #19777
+        * Also tokens with leading 00 when parsing the char to unicode map. 
Bug #22025
+        * Improvements of rendering speed in documents using PS 
transformations a lot. Bug #21562
+        * More work on Annotations support
+        * Use Interpolate flag to decide whether applying image interpolation 
during rendering. Bug #9860
+        * Handle Streams in CMap definitions. Bug #22334
+        * Fix some bugs in JBIG2Stream handling
+        * Fix dashed line in page 1 of bug 20011
+        * Fix exit(1) when rendering a file
+        * Fix pdftops crash on file from KDE bug #174899
+        * Fix PS generation in some files. Bug #20420
+        * Do not create the GfxColorTransform if the lcms could not be 
created. Bug #20108
+        * Check Mask entries are int before using them, if they are real cast 
to int and try to use them. Bug #21841
+        * Use the correct value when creating the V field for form combo boxes
+        * Give an error when using level1sep in pdftops without having CMYK 
support. Bug #22026
+        * Don't include lcms.h in GfxState.h
+        * Fix splashColorModeNComps to correctly include all values for each 
SplashColorMode
+        * Add splashClearColor that assigns white to the given colorptr
+        * Kill support for specifying extension in openTmpFile. Bug #21713
+        * Fix "Conditional jump or move depends on uninitialised value". Bug 
#20011
+       
+       glib:
+        * Add poppler_annot_markup_has_popup()
+        * Hyphenate UTF-8 and UTF-16BE. Bug #21953
+        * Use g_strerror instead of strerror. Bug #22095
+        * Fix a crash when a destination points to an invalid page
+        * Improvements to the demo
+       
+       Qt4:
+        * Add LinkDestination::destinationName()
+        * Do not try to resolve named destinations for GoTo links pointing to 
external documents
+        * Add Page::thumbnail()
+        * Improvements to the demo
+        * Improvements to the documentation
+       
+       build system:
+        * Build fix for MSVC
+        * Better lcms cmake check comming from kdelibs
+        * Use pkgconfig for autotools lcms check
+        * Remove unneeded files from repo. Bug #22094
+
+Release 0.11.0 (0.12 Alpha)
 
        core:
         * Add initial support for color management
@@ -15,7 +61,7 @@ Release 0.11.0 (0.10 Alpha)
         * Small opimization in documents that use PostScriptFunction transforms
         * Minor optimization to Stream handling
         * Fix some compile warnings
-
+       
        glib:
         * Optional content support
         * More work on Annotations support
diff --git a/configure.ac b/configure.ac
index c64613d..0bebbf9 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,6 +1,6 @@
 m4_define([poppler_version_major],[0])
 m4_define([poppler_version_minor],[11])
-m4_define([poppler_version_micro],[0])
+m4_define([poppler_version_micro],[1])
 
m4_define([poppler_version],[poppler_version_major.poppler_version_minor.poppler_version_micro])
 
 AC_PREREQ(2.59)
diff --git a/msvc/config.h b/msvc/config.h
index 74a7740..2a083ec 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.11.0"
+#define PACKAGE_STRING "poppler 0.11.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.11.0"
+#define PACKAGE_VERSION "0.11.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.11.0"
+#define VERSION "0.11.1"
 
 #define snprintf _snprintf
 #define unlink _unlink
diff --git a/qt4/src/Doxyfile b/qt4/src/Doxyfile
index 0cdf405..e75c7e3 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.11.0
+PROJECT_NUMBER         = 0.11.1
 
 # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) 
 # base path where the generated documentation will be put. 
commit ac99e239f2726db32617ff03174a6ce74361ea1b
Author: Albert Astals Cid <[email protected]>
Date:   Fri Jun 19 21:03:29 2009 +0200

    ship PopplerCache.h

diff --git a/CMakeLists.txt b/CMakeLists.txt
index 194d46b..2851b85 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -308,6 +308,7 @@ if(ENABLE_XPDF_HEADERS)
     poppler/Parser.h
     poppler/PDFDoc.h
     poppler/PDFDocEncoding.h
+    poppler/PopplerCache.h
     poppler/ProfileData.h
     poppler/PreScanOutputDev.h
     poppler/PSTokenizer.h
_______________________________________________
poppler mailing list
[email protected]
http://lists.freedesktop.org/mailman/listinfo/poppler

Reply via email to