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
Tobias C. Berner
poppler
Commits
d2dd9c32
Commit
d2dd9c32
authored
May 03, 2022
by
Albert Astals Cid
Browse files
poppler 22.05.0
parent
ac9b736c
Pipeline
#577828
passed with stage
in 3 minutes and 16 seconds
Changes
6
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
CMakeLists.txt
View file @
d2dd9c32
...
...
@@ -39,7 +39,7 @@ if (ECM_FOUND)
endif
()
set
(
POPPLER_MAJOR_VERSION
"22"
)
set
(
POPPLER_MINOR_VERSION_STRING
"0
4
"
)
set
(
POPPLER_MINOR_VERSION_STRING
"0
5
"
)
# 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
}
"
)
...
...
@@ -576,7 +576,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
0
.0.0 SOVERSION 12
0
)
set_target_properties
(
poppler PROPERTIES VERSION 12
1
.0.0 SOVERSION 12
1
)
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 @
d2dd9c32
Release 22.05.0:
core:
* Annotations: Make sure we embed fonts for the FreeText annots
* Forms: Make sure we embedd fonts as needed
* Signatures: Make sure we embed the needed fonts
* CairoOutputDev: color type 3 fonts
* fix two bugs in multiline find_text()
* code improvements
utils:
* pdftotext: added TSV mode
* HtmlOutputDev: don't use png.h
cpp:
* Use time_t for time
* Add page_transition::durationReal
qt:
* Pass leftFontSize down to `FormWidgetSignature::signDocumentWithAppearence`
Release 22.04.0:
core:
* Fix underline sometimes being drawn only partially
...
...
cpp/CMakeLists.txt
View file @
d2dd9c32
...
...
@@ -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.
9
.0 SOVERSION 0
)
set_target_properties
(
poppler-cpp PROPERTIES VERSION 0.
10
.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 @
d2dd9c32
...
...
@@ -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
4
.0
PROJECT_NUMBER = 22.0
5
.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 @
d2dd9c32
...
...
@@ -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
4
.0
PROJECT_NUMBER = 22.0
5
.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 @
d2dd9c32
...
...
@@ -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
4
.0
PROJECT_NUMBER = 22.0
5
.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