CMakeLists.txt | 4 ++-- NEWS | 37 +++++++++++++++++++++++++++++++++++++ cpp/Doxyfile | 2 +- qt5/src/Doxyfile | 2 +- 4 files changed, 41 insertions(+), 4 deletions(-)
New commits: commit 8766a45a1e101538724d2b767b3efd0ec210357c Author: Albert Astals Cid <[email protected]> Date: Tue Dec 1 23:29:29 2020 +0100 Poppler 20.12.0 diff --git a/CMakeLists.txt b/CMakeLists.txt index c4c272cd..307b26e8 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,7 +34,7 @@ if (ECM_FOUND) endif() set(POPPLER_MAJOR_VERSION "20") -set(POPPLER_MINOR_VERSION_STRING "11") +set(POPPLER_MINOR_VERSION_STRING "12") # We want the string version to have 08 but the integer version can't have a leading 0 since otherwise it's considered octal # So strip a leading 0 if found in POPPLER_MINOR_VERSION_STRING and store the result in POPPLER_MINOR_VERSION string(REGEX REPLACE "^0?(.+)$" "\\1" POPPLER_MINOR_VERSION "${POPPLER_MINOR_VERSION_STRING}") @@ -568,7 +568,7 @@ add_library(poppler STATIC ${poppler_SRCS}) else() add_library(poppler ${poppler_SRCS}) endif() -set_target_properties(poppler PROPERTIES VERSION 104.0.0 SOVERSION 104) +set_target_properties(poppler PROPERTIES VERSION 105.0.0 SOVERSION 105) if(MINGW AND BUILD_SHARED_LIBS) 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 77779c6e..a38eaf4f 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,40 @@ +Release 20.12.0: + core: + * Draw better circles for circle annotations + * Fix annotation line width if no appearance stream or style are given + * Tweak rendering of highlight annotations + * Fix border rendering of some annotations + * Fix rendering of some files. Issue #976 Issue #567 + * PSOutputDev: provide options to set the rasterization color space and ICC profile + * PSOutputDev: for splashModeCMYK8 and language level >=2 activate overprint emulation + * PSOutputDev: use the DeviceN8 bitmap for rasterization with CMYK-output + overprint + * Use the font name without subset tag when querying for a system font + * Splash: Fix wrong x adjustment during clipping + * Splash: Fix blitImage in uncolored tiling patterns + * timeToDateString: We forgot the ' after the minutes + * Move psLevel to PSOutputDev creation + * Fix several issues in broken files + + utils: + * pdftops: provide options to set the rasterization color space and ICC profile + * pdftops: for splashModeCMYK8 and language level >=2 activate overprint emulation + + cpp: + * New fuzzers + + glib: + * New fuzzers + + qt5: + * New fuzzers + + build system: + * gcc: Enable -fno-operator-names + * Remove obsolete bool-to-binary macro + * Remove obsolete version-check macro for pkgconfig + * Remove .pc files for private back-ends + * Remove redundant unit-test macro + Release 20.11.0: core: * More work on rendering of standalone Annot Widgets. Issue #806 diff --git a/cpp/Doxyfile b/cpp/Doxyfile index 6d4f74b3..838f30fc 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 = 20.11.0 +PROJECT_NUMBER = 20.12.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/Doxyfile b/qt5/src/Doxyfile index a1bace12..0b19d73d 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 = 20.11.0 +PROJECT_NUMBER = 20.12.0 # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) # base path where the generated documentation will be put. _______________________________________________ poppler mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/poppler
