Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
P
poppler
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Nathanael Noblet
poppler
Commits
d2a37632
Commit
d2a37632
authored
Aug 22, 2019
by
Albert Astals Cid
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
0.80.0
parent
e47daf60
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
33 additions
and
6 deletions
+33
-6
CMakeLists.txt
CMakeLists.txt
+2
-2
NEWS
NEWS
+27
-0
cpp/Doxyfile
cpp/Doxyfile
+1
-1
glib/CMakeLists.txt
glib/CMakeLists.txt
+1
-1
qt5/src/CMakeLists.txt
qt5/src/CMakeLists.txt
+1
-1
qt5/src/Doxyfile
qt5/src/Doxyfile
+1
-1
No files found.
CMakeLists.txt
View file @
d2a37632
...
...
@@ -36,7 +36,7 @@ if (ECM_FOUND)
endif
()
set
(
POPPLER_MAJOR_VERSION
"0"
)
set
(
POPPLER_MINOR_VERSION
"
79
"
)
set
(
POPPLER_MINOR_VERSION
"
80
"
)
set
(
POPPLER_MICRO_VERSION
"0"
)
set
(
POPPLER_VERSION
"
${
POPPLER_MAJOR_VERSION
}
.
${
POPPLER_MINOR_VERSION
}
.
${
POPPLER_MICRO_VERSION
}
"
)
...
...
@@ -498,7 +498,7 @@ add_library(poppler STATIC ${poppler_SRCS})
else
()
add_library
(
poppler
${
poppler_SRCS
}
)
endif
()
set_target_properties
(
poppler PROPERTIES VERSION
89.0.0 SOVERSION 89
)
set_target_properties
(
poppler PROPERTIES VERSION
90.0.0 SOVERSION 90
)
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 @
d2a37632
Release 0.80.0:
core:
* Annotations: Implement support for setting a different text in the appearance stream than the real text
* Splash: Optionally use small_vector from boost
* Fix memory leaks on broken files
* Fix abort on broken files
* Small code simplifications
* Remove USE_FIXEDPOINT support. Issue #821
qt5:
* Fix MSVC build
* Add subsitute-font information
* Fix since marker of some functions
* Fix leak when aborting text extraction
* Small code simplifications
glib:
* Make print scaling getter visible
* Make Duplex/NumCopies/PrintPageRange preference available in API
* Implement Movie API
utils:
* pdftotext: Add -nodiag flag to remove diagonal text on output
build system:
* Mark external lib include dirs as SYSTEM
Release 0.79.0:
core:
* Fix regression on TextSelectionPainter
...
...
cpp/Doxyfile
View file @
d2a37632
...
...
@@ -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 = 0.
79
.0
PROJECT_NUMBER = 0.
80
.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 @
d2a37632
...
...
@@ -86,7 +86,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
3
.0 SOVERSION 8
)
set_target_properties
(
poppler-glib PROPERTIES VERSION 8.1
4
.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/CMakeLists.txt
View file @
d2a37632
...
...
@@ -39,7 +39,7 @@ set(poppler_qt5_SRCS
poppler-version.cpp
)
add_library
(
poppler-qt5
${
poppler_qt5_SRCS
}
)
set_target_properties
(
poppler-qt5 PROPERTIES VERSION 1.2
0
.0 SOVERSION 1
)
set_target_properties
(
poppler-qt5 PROPERTIES VERSION 1.2
1
.0 SOVERSION 1
)
if
(
MINGW AND BUILD_SHARED_LIBS
)
get_target_property
(
POPPLER_QT5_SOVERSION poppler-qt5 SOVERSION
)
set_target_properties
(
poppler-qt5 PROPERTIES SUFFIX
"-
${
POPPLER_QT5_SOVERSION
}${
CMAKE_SHARED_LIBRARY_SUFFIX
}
"
)
...
...
qt5/src/Doxyfile
View file @
d2a37632
...
...
@@ -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 = 0.
79
.0
PROJECT_NUMBER = 0.
80
.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