CMakeLists.txt | 4 ++-- NEWS | 18 ++++++++++++++++++ configure.ac | 4 ++-- cpp/Doxyfile | 2 +- glib/CMakeLists.txt | 2 +- glib/Makefile.am | 2 +- qt4/src/CMakeLists.txt | 2 +- qt4/src/Doxyfile | 2 +- qt4/src/Makefile.am | 2 +- 9 files changed, 28 insertions(+), 10 deletions(-)
New commits: commit f9e6cb9647981f7afbb20261b3ccedaf003657d2 Author: Albert Astals Cid <[email protected]> Date: Tue Jun 8 20:43:11 2010 +0100 0.14.0 diff --git a/CMakeLists.txt b/CMakeLists.txt index 729532d..cf8a47a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -13,8 +13,8 @@ include(MacroBoolTo01) find_package(Threads) set(POPPLER_MAJOR_VERSION "0") -set(POPPLER_MINOR_VERSION "13") -set(POPPLER_MICRO_VERSION "4") +set(POPPLER_MINOR_VERSION "14") +set(POPPLER_MICRO_VERSION "0") set(POPPLER_VERSION "${POPPLER_MAJOR_VERSION}.${POPPLER_MINOR_VERSION}.${POPPLER_MICRO_VERSION}") # command line switches diff --git a/NEWS b/NEWS index 5ffaa53..f4d7ac6 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,21 @@ +Release 0.14.0 + + core: + * Fix crash when parsing pdf with broken JBIG2Stream (Bug #28170) + * Do not follow loops blindly when parsing XRef (Bug #28172) + * Allow quality & progressive mode to be utilised in JpegWriter + * Fix potential assert in Lexer code (KDE bug #240208) + * Fix opening of files whose /P is stored as unsigned integer + * Do not exit() when trying to allocate memory for the XRef fails + + cpp: + * Minor bugfixes + * Documentation improvements + + build system: + * Fix build in mingw32 when using autotools + * Preserve compiler flags when using cmake + Release 0.13.4 (0.14 RC 1) core: diff --git a/configure.ac b/configure.ac index 7979bca..48a3f15 100644 --- a/configure.ac +++ b/configure.ac @@ -1,6 +1,6 @@ m4_define([poppler_version_major],[0]) -m4_define([poppler_version_minor],[13]) -m4_define([poppler_version_micro],[4]) +m4_define([poppler_version_minor],[14]) +m4_define([poppler_version_micro],[0]) 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 e64c72e..c06415a 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.13.4 +PROJECT_NUMBER = 0.14.0 # 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 4642707..5e9991a 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.13.4 +PROJECT_NUMBER = 0.14.0 # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) # base path where the generated documentation will be put. commit 963afdc39153fee69ecb939c98deeef4f64638de Author: Albert Astals Cid <[email protected]> Date: Tue Jun 8 20:29:58 2010 +0100 libpoppler-qt4.so.3.2.0 -> libpoppler-qt4.so.3.3.0 diff --git a/qt4/src/CMakeLists.txt b/qt4/src/CMakeLists.txt index e2ad57a..8ad3fbc 100644 --- a/qt4/src/CMakeLists.txt +++ b/qt4/src/CMakeLists.txt @@ -29,7 +29,7 @@ set(poppler_qt4_SRCS ) qt4_automoc(${poppler_qt4_SRCS}) add_library(poppler-qt4 SHARED ${poppler_qt4_SRCS}) -set_target_properties(poppler-qt4 PROPERTIES VERSION 3.2.0 SOVERSION 3) +set_target_properties(poppler-qt4 PROPERTIES VERSION 3.3.0 SOVERSION 3) target_link_libraries(poppler-qt4 poppler ${QT4_QTCORE_LIBRARY} ${QT4_QTGUI_LIBRARY} ${QT4_QTXML_LIBRARY}) if(MSVC) target_link_libraries(poppler-qt4 poppler ${poppler_LIBS}) diff --git a/qt4/src/Makefile.am b/qt4/src/Makefile.am index 600d0cc..a2eda77 100644 --- a/qt4/src/Makefile.am +++ b/qt4/src/Makefile.am @@ -57,7 +57,7 @@ libpoppler_qt4_la_LIBADD = \ $(FONTCONFIG_LIBS) \ $(POPPLER_QT4_LIBS) -libpoppler_qt4_la_LDFLAGS = -version-info 5:0:2 @create_shared_lib@ +libpoppler_qt4_la_LDFLAGS = -version-info 6:0:3 @create_shared_lib@ # This rule lets GNU make create any *.moc from the equivalent *.h .h.moc: commit c1629be8011f3bddbf619246090640d62136d521 Author: Albert Astals Cid <[email protected]> Date: Tue Jun 8 20:23:00 2010 +0100 Increase soname as _PopplerActionMovie struct grew diff --git a/glib/CMakeLists.txt b/glib/CMakeLists.txt index 29af638..c308219 100644 --- a/glib/CMakeLists.txt +++ b/glib/CMakeLists.txt @@ -78,7 +78,7 @@ set(poppler_glib_SRCS ${CMAKE_SOURCE_DIR}/poppler/CairoRescaleBox.cc ) add_library(poppler-glib SHARED ${poppler_glib_SRCS}) -set_target_properties(poppler-glib PROPERTIES VERSION 4.0.0 SOVERSION 4) +set_target_properties(poppler-glib PROPERTIES VERSION 5.0.0 SOVERSION 5) target_link_libraries(poppler-glib poppler ${GLIB2_LIBRARIES} ${CAIRO_LIBRARIES} ${FREETYPE_LIBRARIES}) if (GDK_FOUND) target_link_libraries(poppler-glib ${GDK2_LIBRARIES}) diff --git a/glib/Makefile.am b/glib/Makefile.am index 0616bef..f69c67a 100644 --- a/glib/Makefile.am +++ b/glib/Makefile.am @@ -74,7 +74,7 @@ libpoppler_glib_la_LIBADD = \ $(FREETYPE_LIBS) \ $(FONTCONFIG_LIBS) -libpoppler_glib_la_LDFLAGS = -version-info 4:0:0 @create_shared_lib@ @auto_import_flags@ +libpoppler_glib_la_LDFLAGS = -version-info 5:0:0 @create_shared_lib@ @auto_import_flags@ if BUILD_WITH_GDK noinst_PROGRAMS = test-poppler-glib _______________________________________________ poppler mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/poppler
