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
Masamichi Hosoda
poppler
Commits
c0c89223
Commit
c0c89223
authored
Feb 07, 2019
by
Albert Astals Cid
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
0.74.0
parent
2c5fadd7
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
32 additions
and
6 deletions
+32
-6
CMakeLists.txt
CMakeLists.txt
+2
-2
NEWS
NEWS
+26
-0
cpp/CMakeLists.txt
cpp/CMakeLists.txt
+1
-1
cpp/Doxyfile
cpp/Doxyfile
+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 @
c0c89223
...
...
@@ -36,7 +36,7 @@ if (ECM_FOUND)
endif
()
set
(
POPPLER_MAJOR_VERSION
"0"
)
set
(
POPPLER_MINOR_VERSION
"7
3
"
)
set
(
POPPLER_MINOR_VERSION
"7
4
"
)
set
(
POPPLER_MICRO_VERSION
"0"
)
set
(
POPPLER_VERSION
"
${
POPPLER_MAJOR_VERSION
}
.
${
POPPLER_MINOR_VERSION
}
.
${
POPPLER_MICRO_VERSION
}
"
)
...
...
@@ -489,7 +489,7 @@ add_library(poppler STATIC ${poppler_SRCS})
else
()
add_library
(
poppler
${
poppler_SRCS
}
)
endif
()
set_target_properties
(
poppler PROPERTIES VERSION 8
4
.0.0 SOVERSION 8
4
)
set_target_properties
(
poppler PROPERTIES VERSION 8
5
.0.0 SOVERSION 8
5
)
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 @
c0c89223
Release 0.74.0:
core:
* Remove support for obsolete systems. Issue #709
* Include timezone in timeToDateString()
* Fix/silence some warnings
* Fix issues with broken files
build system:
* Fix linking in FreeBSD
* Fix fseeko configure check on Android for API level < 24
* Remove unused MacroPushRequiredVars.cmake
qt5:
* Add API that lazily builds an outline by wrapping the internal objects
* Demo: Use new API to build Table Of Contents lazily
glib:
* Improve documentation
* Fix cast from 'GTime *' (aka 'int *') to 'time_t *' (aka 'long *')
utils:
* pdfsig: add -nssdir option
cpp:
* Add a way to get all the named destinations in a document.
Release 0.73.0:
core:
* Fix regression reading some encrypted files. Issue #690
...
...
cpp/CMakeLists.txt
View file @
c0c89223
...
...
@@ -25,7 +25,7 @@ set(poppler_cpp_SRCS
)
add_library
(
poppler-cpp
${
poppler_cpp_SRCS
}
)
set_target_properties
(
poppler-cpp PROPERTIES VERSION 0.
6
.0 SOVERSION 0
)
set_target_properties
(
poppler-cpp PROPERTIES VERSION 0.
7
.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 @
c0c89223
...
...
@@ -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.7
3
.0
PROJECT_NUMBER = 0.7
4
.0
# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute)
# base path where the generated documentation will be put.
...
...
qt5/src/CMakeLists.txt
View file @
c0c89223
...
...
@@ -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.1
8
.0 SOVERSION 1
)
set_target_properties
(
poppler-qt5 PROPERTIES VERSION 1.1
9
.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 @
c0c89223
...
...
@@ -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.7
3
.0
PROJECT_NUMBER = 0.7
4
.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