CMakeLists.txt | 4 ++-- NEWS | 22 ++++++++++++++++++++++ configure.ac | 2 +- cpp/Doxyfile | 2 +- poppler/Makefile.am | 2 +- qt4/src/Doxyfile | 2 +- 6 files changed, 28 insertions(+), 6 deletions(-)
New commits: commit 65f02cc203dde5732b035ed093e861da0480bd9e Author: Albert Astals Cid <[email protected]> Date: Sun Feb 27 11:30:36 2011 +0000 0.16.3 i said diff --git a/NEWS b/NEWS index 1f98782..b479727 100644 --- a/NEWS +++ b/NEWS @@ -1,4 +1,4 @@ -Release 0.16.2 +Release 0.16.3 core: * Increase precision in PS output device * Workaround bug when converting pdf to ps with level1 (Bug #31926) commit 081aa4507956cf57438d226ad2caa1f4721c563a Author: Albert Astals Cid <[email protected]> Date: Sun Feb 27 11:18:55 2011 +0000 0.16.3 diff --git a/configure.ac b/configure.ac index cd638f1..38bc433 100644 --- a/configure.ac +++ b/configure.ac @@ -1,6 +1,6 @@ m4_define([poppler_version_major],[0]) m4_define([poppler_version_minor],[16]) -m4_define([poppler_version_micro],[2]) +m4_define([poppler_version_micro],[3]) m4_define([poppler_version],[poppler_version_major.poppler_version_minor.poppler_version_micro]) AC_PREREQ(2.59) diff --git a/cpp/Doxyfile b/cpp/Doxyfile index f442206..ba46dfe 100644 --- a/cpp/Doxyfile +++ b/cpp/Doxyfile @@ -31,7 +31,7 @@ PROJECT_NAME = "Poppler CPP" # This could be handy for archiving the generated documentation or # if some version control system is used. -PROJECT_NUMBER = 0.16.2 +PROJECT_NUMBER = 0.16.3 # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) # base path where the generated documentation will be put. diff --git a/qt4/src/Doxyfile b/qt4/src/Doxyfile index 6d71e48..78c4a7f 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.16.2 +PROJECT_NUMBER = 0.16.3 # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) # base path where the generated documentation will be put. commit 40052024aeb9076fb9517b971846ba856eb562b3 Author: Albert Astals Cid <[email protected]> Date: Sun Feb 27 11:18:15 2011 +0000 Increase soname PreScanOutputDev got bigger diff --git a/CMakeLists.txt b/CMakeLists.txt index 3db7740..303beb4 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -16,7 +16,7 @@ test_big_endian(WORDS_BIGENDIAN) set(POPPLER_MAJOR_VERSION "0") set(POPPLER_MINOR_VERSION "16") -set(POPPLER_MICRO_VERSION "2") +set(POPPLER_MICRO_VERSION "3") set(POPPLER_VERSION "${POPPLER_MAJOR_VERSION}.${POPPLER_MINOR_VERSION}.${POPPLER_MICRO_VERSION}") # command line switches @@ -367,7 +367,7 @@ add_library(poppler STATIC ${poppler_SRCS}) else(MSVC) add_library(poppler SHARED ${poppler_SRCS}) endif(MSVC) -set_target_properties(poppler PROPERTIES VERSION 12.0.0 SOVERSION 12) +set_target_properties(poppler PROPERTIES VERSION 13.0.0 SOVERSION 13) target_link_libraries(poppler ${poppler_LIBS}) target_link_libraries(poppler LINK_INTERFACE_LIBRARIES "") install(TARGETS poppler RUNTIME DESTINATION bin LIBRARY DESTINATION lib${LIB_SUFFIX} ARCHIVE DESTINATION lib${LIB_SUFFIX}) diff --git a/poppler/Makefile.am b/poppler/Makefile.am index 2e9ee68..9344eba 100644 --- a/poppler/Makefile.am +++ b/poppler/Makefile.am @@ -176,7 +176,7 @@ libpoppler_la_LIBADD = \ $(PTHREAD_LIBS) \ $(win32_libs) -libpoppler_la_LDFLAGS = -version-info 12:0:0 @create_shared_lib@ @auto_import_flags@ +libpoppler_la_LDFLAGS = -version-info 13:0:0 @create_shared_lib@ @auto_import_flags@ if ENABLE_XPDF_HEADERS commit 9eee294da5eb7cc9e08db734f7e3cf07ef245d8d Author: Albert Astals Cid <[email protected]> Date: Sun Feb 27 11:17:05 2011 +0000 Update NEWS for poppler 0.16.3 diff --git a/NEWS b/NEWS index 4209b2a..1f98782 100644 --- a/NEWS +++ b/NEWS @@ -1,5 +1,27 @@ Release 0.16.2 core: + * Increase precision in PS output device + * Workaround bug when converting pdf to ps with level1 (Bug #31926) + * Fix crash in Splash output device in some broken pdf + * Fix infinite loop in some broken files + * Fix rendering of some substituted fonts (Bug #34522) + * Do not ask Freetype for 0x0 fonts in Splash output device (Bug #34602) + * Don't assume y1 > y3 for points of a highlight annotation (Gnome Bug #643028) + * Handle fontCIDType2OT when creating freetype font in Cairo output device (Gnome Bug #643273) + * Fix crash in some pdf that use ICC color space (Bug #34357) + + glib: + * Don't use an uninitialized local variable in demo + * Add some introspection markers + + qt4: + * Fix crash regression in unicodeToQString (again) + + utils: + * Do not crash when using -bbox + +Release 0.16.2 + core: * Fix text extraction for some files qt4: _______________________________________________ poppler mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/poppler
