Poppler 0.36
diff --git a/CMakeLists.txt b/CMakeLists.txt index 98a4c2f..ac3d090 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt
@@ -22,7 +22,7 @@ endif() set(POPPLER_MAJOR_VERSION "0") -set(POPPLER_MINOR_VERSION "35") +set(POPPLER_MINOR_VERSION "36") set(POPPLER_MICRO_VERSION "0") set(POPPLER_VERSION "${POPPLER_MAJOR_VERSION}.${POPPLER_MINOR_VERSION}.${POPPLER_MICRO_VERSION}") @@ -478,7 +478,7 @@ else(MSVC) add_library(poppler SHARED ${poppler_SRCS}) endif(MSVC) -set_target_properties(poppler PROPERTIES VERSION 54.0.0 SOVERSION 54) +set_target_properties(poppler PROPERTIES VERSION 55.0.0 SOVERSION 55) 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/NEWS b/NEWS index d715732..5326eed 100644 --- a/NEWS +++ b/NEWS
@@ -1,3 +1,39 @@ +Release 0.36.0 + core: + * Patch to support RichMedia annotations + * Splash: Fix wrong memory access. Bug #91686 + * Cairo: fix size of transparency group surface. Bug #66229 + * Fix bounds check in Linearization::getPageFirst. Bug #91200 + * File Saving improvements + * Add premultiplied alpha channel to SplashBitmap + * Fix for xref table creation. Bug #90790 + * Fix JBIG2Decode infinite loop and stack overflow. Bug #91186 + * Minor optimization in text extraction + + qt4: + * Basic support for RichMedia annotations + * Change default image format + * Minor optimizations + + qt5: + * Basic support for RichMedia annotations + * Change default image format + * Minor optimizationsHEADmaster + + cpp: + * Fix utf8/utf16 conversion. Bug #91644 + + build system: + * Do not hardcode -fPIC in Makefile.am + * cmake: Allow configuring SHARE_INSTALL_DIR. Bug #90293 + + glib: + * + + utils: + * pdfunite: Insert embedded files in result pdf. Bug #90066 + * pdftotext: Add -bbox-layout option. Bug #89941 + Release 0.35.0 core: * Fix assert in broken file. Bug #91344
diff --git a/configure.ac b/configure.ac index bd0fcc2..4bc1524 100644 --- a/configure.ac +++ b/configure.ac
@@ -1,5 +1,5 @@ m4_define([poppler_version_major],[0]) -m4_define([poppler_version_minor],[35]) +m4_define([poppler_version_minor],[36]) m4_define([poppler_version_micro],[0]) m4_define([poppler_version],[poppler_version_major.poppler_version_minor.poppler_version_micro])
diff --git a/cpp/Doxyfile b/cpp/Doxyfile index cc6a319..87e6bc0 100644 --- a/cpp/Doxyfile +++ b/cpp/Doxyfile
@@ -31,7 +31,7 @@ # This could be handy for archiving the generated documentation or # if some version control system is used. -PROJECT_NUMBER = 0.35.0 +PROJECT_NUMBER = 0.36.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/poppler/Makefile.am b/poppler/Makefile.am index 3c943ba..9a5d026 100644 --- a/poppler/Makefile.am +++ b/poppler/Makefile.am
@@ -296,7 +296,7 @@ $(win32_libs) libpoppler_la_LDFLAGS = \ - -version-info 54:0:0 \ + -version-info 55:0:0 \ @create_shared_lib@ \ @auto_import_flags@
diff --git a/qt4/src/CMakeLists.txt b/qt4/src/CMakeLists.txt index 5f65b0a..5ec1b48 100644 --- a/qt4/src/CMakeLists.txt +++ b/qt4/src/CMakeLists.txt
@@ -30,7 +30,7 @@ ) qt4_automoc(${poppler_qt4_SRCS}) add_library(poppler-qt4 SHARED ${poppler_qt4_SRCS}) -set_target_properties(poppler-qt4 PROPERTIES VERSION 4.7.0 SOVERSION 4) +set_target_properties(poppler-qt4 PROPERTIES VERSION 4.8.0 SOVERSION 4) 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/Doxyfile b/qt4/src/Doxyfile index ecf71e1..044cf62 100644 --- a/qt4/src/Doxyfile +++ b/qt4/src/Doxyfile
@@ -31,7 +31,7 @@ # This could be handy for archiving the generated documentation or # if some version control system is used. -PROJECT_NUMBER = 0.35.0 +PROJECT_NUMBER = 0.36.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/Makefile.am b/qt4/src/Makefile.am index 5cf4d90..997e5bf 100644 --- a/qt4/src/Makefile.am +++ b/qt4/src/Makefile.am
@@ -60,7 +60,7 @@ $(POPPLER_QT4_LIBS) libpoppler_qt4_la_LDFLAGS = \ - -version-info 11:0:7 \ + -version-info 12:0:8 \ @create_shared_lib@ \ @auto_import_flags@
diff --git a/qt5/src/CMakeLists.txt b/qt5/src/CMakeLists.txt index bd6b559..cf4b97f 100644 --- a/qt5/src/CMakeLists.txt +++ b/qt5/src/CMakeLists.txt
@@ -32,7 +32,7 @@ ArthurOutputDev.cc ) add_library(poppler-qt5 SHARED ${poppler_qt5_SRCS}) -set_target_properties(poppler-qt5 PROPERTIES VERSION 1.4.0 SOVERSION 1) +set_target_properties(poppler-qt5 PROPERTIES VERSION 1.5.0 SOVERSION 1) target_link_libraries(poppler-qt5 poppler ${Qt5Core_LIBRARIES} ${Qt5Gui_LIBRARIES} ${Qt5Xml_LIBRARIES}) if(MSVC) target_link_libraries(poppler-qt5 poppler ${poppler_LIBS})
diff --git a/qt5/src/Doxyfile b/qt5/src/Doxyfile index 65c30d4..7fee355 100644 --- a/qt5/src/Doxyfile +++ b/qt5/src/Doxyfile
@@ -31,7 +31,7 @@ # This could be handy for archiving the generated documentation or # if some version control system is used. -PROJECT_NUMBER = 0.35.0 +PROJECT_NUMBER = 0.36.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/qt5/src/Makefile.am b/qt5/src/Makefile.am index 0b4fe43..ea13250 100644 --- a/qt5/src/Makefile.am +++ b/qt5/src/Makefile.am
@@ -60,7 +60,7 @@ $(POPPLER_QT5_LIBS) libpoppler_qt5_la_LDFLAGS = \ - -version-info 5:0:4 \ + -version-info 6:0:5 \ @create_shared_lib@ \ @auto_import_flags@