Skip to content

Commit 45d43f4

Browse files
committed
poppler 25.12.0
1 parent 0994338 commit 45d43f4

5 files changed

Lines changed: 22 additions & 6 deletions

File tree

CMakeLists.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,11 +40,11 @@ if (ECM_FOUND)
4040
endif()
4141

4242
set(POPPLER_MAJOR_VERSION "25")
43-
set(POPPLER_MINOR_VERSION_STRING "11")
43+
set(POPPLER_MINOR_VERSION_STRING "12")
4444
# We want the string version to have 08 but the integer version can't have a leading 0 since otherwise it's considered octal
4545
# So strip a leading 0 if found in POPPLER_MINOR_VERSION_STRING and store the result in POPPLER_MINOR_VERSION
4646
string(REGEX REPLACE "^0?(.+)$" "\\1" POPPLER_MINOR_VERSION "${POPPLER_MINOR_VERSION_STRING}")
47-
set(POPPLER_MICRO_VERSION "90")
47+
set(POPPLER_MICRO_VERSION "0")
4848
set(POPPLER_VERSION "${POPPLER_MAJOR_VERSION}.${POPPLER_MINOR_VERSION_STRING}.${POPPLER_MICRO_VERSION}")
4949

5050
set(CMAKE_CXX_STANDARD 23)
@@ -632,7 +632,7 @@ ADD_GPERF_FILE(TimesItalicWidths)
632632
ADD_GPERF_FILE(TimesRomanWidths)
633633
ADD_GPERF_FILE(ZapfDingbatsWidths)
634634

635-
set(POPPLER_SOVERSION_NUMBER "154")
635+
set(POPPLER_SOVERSION_NUMBER "155")
636636

637637
set(LINKER_SCRIPT "${CMAKE_BINARY_DIR}/libpoppler.map")
638638
configure_file(

NEWS

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
Release 25.12.0:
2+
core:
3+
* Be less strict about the Page Annots object being correct. Issue #1641
4+
* Fix rendering of some annotations. Issue #1642
5+
* TextOuputDev: change default line ending to \n
6+
* Splash: Performance improvements
7+
* Ignore color operators when painting a Type3 font with d1
8+
* Internal code improvements
9+
* Fix crashes in malformed documents
10+
11+
utils:
12+
* pdfsig: specify search order for NSS certificate database on the man page
13+
14+
build system:
15+
* Switch to C++23
16+
117
Release 25.11.0:
218
core:
319
* NSS Signatures: Tweak the logic that decides which firefox profile to use

cpp/Doxyfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ PROJECT_NAME = "Poppler CPP"
3131
# This could be handy for archiving the generated documentation or
3232
# if some version control system is used.
3333

34-
PROJECT_NUMBER = 25.11.90
34+
PROJECT_NUMBER = 25.12.0
3535

3636
# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute)
3737
# base path where the generated documentation will be put.

qt5/src/Doxyfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ PROJECT_NAME = "Poppler Qt5"
3131
# This could be handy for archiving the generated documentation or
3232
# if some version control system is used.
3333

34-
PROJECT_NUMBER = 25.11.90
34+
PROJECT_NUMBER = 25.12.0
3535

3636
# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute)
3737
# base path where the generated documentation will be put.

qt6/src/Doxyfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ PROJECT_NAME = "Poppler Qt6"
3131
# This could be handy for archiving the generated documentation or
3232
# if some version control system is used.
3333

34-
PROJECT_NUMBER = 25.11.90
34+
PROJECT_NUMBER = 25.12.0
3535

3636
# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute)
3737
# base path where the generated documentation will be put.

0 commit comments

Comments
 (0)