Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Oliver Sander
poppler
Commits
2dbd1e0a
Commit
2dbd1e0a
authored
Sep 01, 2020
by
Albert Astals Cid
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
poppler 20.09.0
parent
b82d0e17
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
35 additions
and
4 deletions
+35
-4
CMakeLists.txt
CMakeLists.txt
+1
-1
NEWS
NEWS
+31
-0
cpp/Doxyfile
cpp/Doxyfile
+1
-1
glib/CMakeLists.txt
glib/CMakeLists.txt
+1
-1
qt5/src/Doxyfile
qt5/src/Doxyfile
+1
-1
No files found.
CMakeLists.txt
View file @
2dbd1e0a
...
...
@@ -36,7 +36,7 @@ if (ECM_FOUND)
endif
()
set
(
POPPLER_MAJOR_VERSION
"20"
)
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
}
"
)
...
...
NEWS
View file @
2dbd1e0a
Release 20.09.0:
core:
* Compability fix for Forms
* Fix fetching of Objects failing in some cases
* Fix clearing date in Annot setModified/setDate
* TextSelectionPainter: support glyphless fonts
* Splash: Don't try read past end of image
* avoid abort() on large memory allocation
* Fix memory leak on broken files
* Fix potential invalid memory read
* Small code improvements
qt5:
* Document TextAnnotation::inplaceAlign
* Make Annotation::setModification/CreationDate work on existing annots
* Be a bit more stubborn converting dates that come from xml
* Clean as many null characters from the end as possible when converting strings
glib:
* Add accessor functions for PopplerAttachment
* Deprecate PopplerAttachment GTime fields
* Deprecate PopplerDocument date properties
utils:
* pdftoppm: report error and exit if output file cannot be written
* Document that PDF-file can be '-' to read it from stdin
build system:
* cmake: Modern way to link against libpng, zlib and libtiff
* cmake: Remove stray support for lcms1 in pdftocairo
Release 20.08.0:
core:
* Sub-page objects: initialize clip max values considering the render resolution. Issue #937
...
...
cpp/Doxyfile
View file @
2dbd1e0a
...
...
@@ -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.0
8
.0
PROJECT_NUMBER = 20.0
9
.0
# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute)
# base path where the generated documentation will be put.
...
...
glib/CMakeLists.txt
View file @
2dbd1e0a
...
...
@@ -87,7 +87,7 @@ set(poppler_glib_generated_SRCS
${
CMAKE_SOURCE_DIR
}
/poppler/CairoRescaleBox.cc
)
add_library
(
poppler-glib
${
poppler_glib_SRCS
}
${
poppler_glib_generated_SRCS
}
)
set_target_properties
(
poppler-glib PROPERTIES VERSION 8.1
8
.0 SOVERSION 8
)
set_target_properties
(
poppler-glib PROPERTIES VERSION 8.1
9
.0 SOVERSION 8
)
set_target_properties
(
poppler-glib PROPERTIES C_VISIBILITY_PRESET hidden
)
set_target_properties
(
poppler-glib PROPERTIES CXX_VISIBILITY_PRESET hidden
)
set_target_properties
(
poppler-glib PROPERTIES VISIBILITY_INLINES_HIDDEN 1
)
...
...
qt5/src/Doxyfile
View file @
2dbd1e0a
...
...
@@ -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.0
8
.0
PROJECT_NUMBER = 20.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
Markdown
is supported
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