diff --git a/CMakeLists.txt b/CMakeLists.txt index e2ebc44d6..ac186d537 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -30,7 +30,7 @@ if (ECM_FOUND) endif() set(POPPLER_MAJOR_VERSION "0") -set(POPPLER_MINOR_VERSION "63") +set(POPPLER_MINOR_VERSION "64") set(POPPLER_MICRO_VERSION "0") set(POPPLER_VERSION "${POPPLER_MAJOR_VERSION}.${POPPLER_MINOR_VERSION}.${POPPLER_MICRO_VERSION}") @@ -491,7 +491,7 @@ add_library(poppler STATIC ${poppler_SRCS}) else() add_library(poppler ${poppler_SRCS}) endif() -set_target_properties(poppler PROPERTIES VERSION 74.0.0 SOVERSION 74) +set_target_properties(poppler PROPERTIES VERSION 75.0.0 SOVERSION 75) if(MINGW) get_target_property(POPPLER_SOVERSION poppler SOVERSION) set_target_properties(poppler PROPERTIES SUFFIX "-${POPPLER_SOVERSION}${CMAKE_SHARED_LIBRARY_SUFFIX}") diff --git a/NEWS b/NEWS index 8b0af2243..7acec550d 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,36 @@ +Release 0.64.0 + core: + * Workaround form field text not being drawn on broken files. Bug #103245 + * Add read only setter for form fields + * Add support for Link Hide action + * Add support for Next actions in Links + * Fix parsing of Annot focus out actions + * Fix PDFDoc::checkHeader() for PDFs smaller than 1 KiB. Bug #105674 + * Add const to several classes and members + * gfile: Fix build on some platforms + * Fix issues with on malformed documents. Bug #105972, #105969, #106059, #106061 + * Several small code improvements + + qt5: + * Allow setting of Form visibility status + * Allow setting of Form read only status + * Add support for Link Hide action + * Add support for Next actions in Links + * ArthurOutputDev: Implement axialShadedFill + * ArthurOutputDev: Implement drawImageMask. Bug #105531 + * ArthurOutputDev: Implement Type3 font support + + utils: + * pdfsig: Add -dump which writes signatures to disk. Bug #104881 + + glib: + * less deprecated calls + + build system: + * bring back the option to disable GObject introspection + * Add iconv include dir when compiling + * Make it possible to build poppler without fontconfig. Default for Android + Release 0.63.0 core: * CairoOutputDev: support embedding CCITT image data. Bug #103399 diff --git a/cpp/Doxyfile b/cpp/Doxyfile index 670d3505d..f7f8e96c7 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.63.0 +PROJECT_NUMBER = 0.64.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/CMakeLists.txt b/qt5/src/CMakeLists.txt index 5ae42f520..7100ebb30 100644 --- a/qt5/src/CMakeLists.txt +++ b/qt5/src/CMakeLists.txt @@ -30,7 +30,7 @@ set(poppler_qt5_SRCS ArthurOutputDev.cc ) add_library(poppler-qt5 ${poppler_qt5_SRCS}) -set_target_properties(poppler-qt5 PROPERTIES VERSION 1.13.0 SOVERSION 1) +set_target_properties(poppler-qt5 PROPERTIES VERSION 1.14.0 SOVERSION 1) if(MINGW) get_target_property(POPPLER_QT5_SOVERSION poppler-qt5 SOVERSION) set_target_properties(poppler-qt5 PROPERTIES SUFFIX "-${POPPLER_QT5_SOVERSION}${CMAKE_SHARED_LIBRARY_SUFFIX}") diff --git a/qt5/src/Doxyfile b/qt5/src/Doxyfile index f1b552c62..91d819a83 100644 --- a/qt5/src/Doxyfile +++ b/qt5/src/Doxyfile @@ -31,7 +31,7 @@ PROJECT_NAME = "Poppler Qt5" # This could be handy for archiving the generated documentation or # if some version control system is used. -PROJECT_NUMBER = 0.63.0 +PROJECT_NUMBER = 0.64.0 # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) # base path where the generated documentation will be put.