Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
poppler
poppler
Commits
16a34e9d
Commit
16a34e9d
authored
Jan 05, 2022
by
Albert Astals Cid
Browse files
poppler 22.01.0
parent
5f52816b
Pipeline
#477640
passed with stage
in 7 minutes and 38 seconds
Changes
5
Pipelines
2
Show whitespace changes
Inline
Side-by-side
CMakeLists.txt
View file @
16a34e9d
...
@@ -45,8 +45,8 @@ if (ECM_FOUND)
...
@@ -45,8 +45,8 @@ if (ECM_FOUND)
endif
()
endif
()
endif
()
endif
()
set
(
POPPLER_MAJOR_VERSION
"2
1
"
)
set
(
POPPLER_MAJOR_VERSION
"2
2
"
)
set
(
POPPLER_MINOR_VERSION_STRING
"1
2
"
)
set
(
POPPLER_MINOR_VERSION_STRING
"
0
1"
)
# We want the string version to have 08 but the integer version can't have a leading 0 since otherwise it's considered octal
# 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
# 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
}
"
)
string
(
REGEX REPLACE
"^0?(.+)$"
"
\\
1"
POPPLER_MINOR_VERSION
"
${
POPPLER_MINOR_VERSION_STRING
}
"
)
...
@@ -591,7 +591,7 @@ else()
...
@@ -591,7 +591,7 @@ else()
add_library
(
poppler
${
poppler_SRCS
}
)
add_library
(
poppler
${
poppler_SRCS
}
)
endif
()
endif
()
generate_export_header
(
poppler BASE_NAME poppler-private EXPORT_FILE_NAME
"
${
CMAKE_CURRENT_BINARY_DIR
}
/poppler_private_export.h"
)
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 11
6
.0.0 SOVERSION 11
6
)
set_target_properties
(
poppler PROPERTIES VERSION 11
7
.0.0 SOVERSION 11
7
)
if
(
MINGW AND BUILD_SHARED_LIBS
)
if
(
MINGW AND BUILD_SHARED_LIBS
)
get_target_property
(
POPPLER_SOVERSION poppler SOVERSION
)
get_target_property
(
POPPLER_SOVERSION poppler SOVERSION
)
set_target_properties
(
poppler PROPERTIES SUFFIX
"-
${
POPPLER_SOVERSION
}${
CMAKE_SHARED_LIBRARY_SUFFIX
}
"
)
set_target_properties
(
poppler PROPERTIES SUFFIX
"-
${
POPPLER_SOVERSION
}${
CMAKE_SHARED_LIBRARY_SUFFIX
}
"
)
...
...
NEWS
View file @
16a34e9d
Release 22.01.0:
core:
* Allow local (relative to dll) fonts dir on Windows
* TextOutputDev: require more spacing between columns. Issue #1093
* Fix crash in Splash::gouraudTriangleShadedFill. Issue #1183
* Fix crash when calling Form::reset()
* GfxSeparationColorSpace: Check validity of colorspace and function. Issue #1184
* Minor code improvements
glib:
* Include glib.h before using defines from it
* Close file descriptors on error
* Plug some memory leaks
* Replace use of deprecated g_memdup/g_time_zone_new
* Remove FD-taking functions on windows
utils:
* pdfsig: Add support for documents with passwords
* pdfsig: Fix signing with -sign if nss password is needed
Release 21.12.0:
Release 21.12.0:
core:
core:
* Add API to add images
* Add API to add images
...
...
cpp/Doxyfile
View file @
16a34e9d
...
@@ -31,7 +31,7 @@ PROJECT_NAME = "Poppler CPP"
...
@@ -31,7 +31,7 @@ PROJECT_NAME = "Poppler CPP"
# This could be handy for archiving the generated documentation or
# This could be handy for archiving the generated documentation or
# if some version control system is used.
# if some version control system is used.
PROJECT_NUMBER = 2
1.12
.0
PROJECT_NUMBER = 2
2.01
.0
# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute)
# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute)
# base path where the generated documentation will be put.
# base path where the generated documentation will be put.
...
...
qt5/src/Doxyfile
View file @
16a34e9d
...
@@ -31,7 +31,7 @@ PROJECT_NAME = "Poppler Qt5"
...
@@ -31,7 +31,7 @@ PROJECT_NAME = "Poppler Qt5"
# This could be handy for archiving the generated documentation or
# This could be handy for archiving the generated documentation or
# if some version control system is used.
# if some version control system is used.
PROJECT_NUMBER = 2
1.12
.0
PROJECT_NUMBER = 2
2.01
.0
# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute)
# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute)
# base path where the generated documentation will be put.
# base path where the generated documentation will be put.
...
...
qt6/src/Doxyfile
View file @
16a34e9d
...
@@ -31,7 +31,7 @@ PROJECT_NAME = "Poppler Qt6"
...
@@ -31,7 +31,7 @@ PROJECT_NAME = "Poppler Qt6"
# This could be handy for archiving the generated documentation or
# This could be handy for archiving the generated documentation or
# if some version control system is used.
# if some version control system is used.
PROJECT_NUMBER = 2
1.12
.0
PROJECT_NUMBER = 2
2.01
.0
# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute)
# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute)
# base path where the generated documentation will be put.
# base path where the generated documentation will be put.
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a 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