Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Carlo Cabrera
poppler
Commits
4602cac9
Commit
4602cac9
authored
Sep 01, 2022
by
Albert Astals Cid
Browse files
poppler 22.09.0
parent
0c9bfb40
Changes
6
Hide whitespace changes
Inline
Side-by-side
CMakeLists.txt
View file @
4602cac9
...
...
@@ -39,7 +39,7 @@ if (ECM_FOUND)
endif
()
set
(
POPPLER_MAJOR_VERSION
"22"
)
set
(
POPPLER_MINOR_VERSION_STRING
"0
8
"
)
set
(
POPPLER_MINOR_VERSION_STRING
"0
9
"
)
# 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
}
"
)
...
...
@@ -579,7 +579,7 @@ add_definitions(-D_CRT_SECURE_NO_WARNINGS)
endif
()
add_library
(
poppler
${
poppler_SRCS
}
)
generate_export_header
(
poppler BASE_NAME poppler-private EXPORT_FILE_NAME
"
${
CMAKE_CURRENT_BINARY_DIR
}
/poppler_private_export.h"
)
set_target_properties
(
poppler PROPERTIES VERSION 12
3
.0.0 SOVERSION 12
3
)
set_target_properties
(
poppler PROPERTIES VERSION 12
4
.0.0 SOVERSION 12
4
)
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
}
"
)
...
...
NEWS
View file @
4602cac9
Release 22.09.0:
core:
* Splash: Do not truncate line dash patterns with more than 20 entries. Issue #1281
* Various signature related improvements
* Fix FormField::getFullyQualifiedName in some scenarios
* Splash: Small optimization on dash pattern handling
* JBIG2Stream::readHalftoneRegionSeg: Fix potential memory leak
* Fix crashes on malformed files. Including CVE-2022-38784
* Fix string formatting in error reporting
glib:
* Fix two potential memory leaks in poppler_document_create_dests_tree
utils:
* pdfsig: List signature field names when listing signature information
* pdfsig: Add support for specifying signature by field name
* pdfunite: Fix crashes on malformed files
* pdfunite: Fix potential memory leak of docs
Release 22.08.0:
core:
* Fix rendering text on some forms
...
...
cpp/CMakeLists.txt
View file @
4602cac9
...
...
@@ -26,7 +26,7 @@ set(poppler_cpp_SRCS
add_library
(
poppler-cpp
${
poppler_cpp_SRCS
}
)
generate_export_header
(
poppler-cpp BASE_NAME poppler-cpp EXPORT_FILE_NAME
"
${
CMAKE_CURRENT_BINARY_DIR
}
/poppler_cpp_export.h"
)
set_target_properties
(
poppler-cpp PROPERTIES VERSION 0.1
0
.0 SOVERSION 0
)
set_target_properties
(
poppler-cpp PROPERTIES VERSION 0.1
1
.0 SOVERSION 0
)
if
(
MINGW AND BUILD_SHARED_LIBS
)
get_target_property
(
POPPLER_CPP_SOVERSION poppler-cpp SOVERSION
)
set_target_properties
(
poppler-cpp PROPERTIES SUFFIX
"-
${
POPPLER_CPP_SOVERSION
}${
CMAKE_SHARED_LIBRARY_SUFFIX
}
"
)
...
...
cpp/Doxyfile
View file @
4602cac9
...
...
@@ -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 = 22.0
8
.0
PROJECT_NUMBER = 22.0
9
.0
# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute)
# base path where the generated documentation will be put.
...
...
qt5/src/Doxyfile
View file @
4602cac9
...
...
@@ -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 = 22.0
8
.0
PROJECT_NUMBER = 22.0
9
.0
# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute)
# base path where the generated documentation will be put.
...
...
qt6/src/Doxyfile
View file @
4602cac9
...
...
@@ -31,7 +31,7 @@ PROJECT_NAME = "Poppler Qt6"
# This could be handy for archiving the generated documentation or
# if some version control system is used.
PROJECT_NUMBER = 22.0
8
.0
PROJECT_NUMBER = 22.0
9
.0
# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute)
# base path where the generated documentation will be put.
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment