-
Notifications
You must be signed in to change notification settings - Fork 0
/
NEWS
2296 lines (1854 loc) · 81.8 KB
/
NEWS
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Release 0.32.0
core:
* Annotations: Fix rendering of empty BG/BC arrays
* Splash: Fix wrong colour shown when GouraudTriangleShFill uses a DeviceN colorspace. Bug #89182
* Splash: Fix use of uninitialized variable in Splash::pipeRun
* Remove unnecesary check for font validity. Bug #88939
* Small optimization in GooString::appendfv(). Bug #89096
* Fix crashes in malformed files
utils:
* pdftops: Make colorpsace optimization an option instead of default
* pdfseparate: use always an unique instance for PDFDoc for savePageAs
build system:
* cmake: If extra-cmake-modules is around include the Sanitizers module
Release 0.31.0
core:
* CairoOutputDev: support embedding JBIG2 image data
* Accept malformed documents whose root is a Page instead of a Pages. Bug #88172
* Fix crash on broken documents
* JPEG2000Stream: Inline doGetChar and doLookChar
* GlobalParams cleaning
utils:
* pdftops: Add rasterization option. Bug #85934
qt4:
* Expose whole-words search option
qt5:
* Expose whole-words search option
Release 0.30.0
core:
* Openjpeg2 support (openjpeg 1 is preferred). Bug #58906
* Fix potential memory corruption on TextSelectionDumper. Bug #84555
* Check for invalid matrix in annotation. Bug #84990
* Open some not conforming files. Bug #85919
* PSOutputDev: Accept a list of pages indeces instead of first, last. Bug #84833
* Fix memory leak on error condition
cpp:
* New API to set debug output function
build system:
* configure: Improve support with older clang versions. Bug #76963
utils:
* pdfunite: Support output intents, optional content and acroform
Release 0.29.0
core:
* Use correct LAB byte array for lcms input. Bug #86388
* Write correct size in trailer dict. Bug #86063
* Use Default colorspaces if present instead of Device colorspaces
* Solve blend mode problem in CYMK and DeviceN for separable blend modes
* Compilation/warning fixes on SunOS
* Regression test improvements
glib:
* demo: Compilation fixlets
build system:
* cofigure: print "no" instead of "auto" if lcms not found
Release 0.28.0
core:
* Fix rendering of file with a wrong embedded font. Bug #84270
* Use alt colorspace to get CMYK values for an ICC based CMYK colorspace. Bug #79019
* Map Standard/Expert encoding ligatures to AGLFN names. Bug #80093
* Make Attribute::getName() work when UTF-16BE is used. Bug #84722
* Fix memory leak in Dict::remove. Bug #84607
* Fix crashes in broken files
* SplashOutputDev: Improve Overprintmode and shadings. Bug #80998
* CairoOutputDev: fix crash when no group color space. Bug #85137
* CairoOutputDev: Don't render text when text matrix is not invertable. Bug #78042
* CairoOutputDev: Only embed mime data for gray/rgb/cmyk colorspaces. Bug #80719
* CairoOutputDev: Only embed mime data if image decode map is identity
* cairo: Use matrix to determine pattern size. Bug #33364
* Fix compile warnings
* regression test improvements
glib:
* Fix use of uninitialized members in PopplerInputStream. Bug #82630
* Documentation improvements
* Do not dist gir_DATA
* Remove use of GTK deprecated functions. Bug #82384. Bug #82385
* Build introspection linking to the uninstalled libraries. Big #84526
qt4:
* Add a new Page::annotations() that let's you specify subtypes
qt5:
* Add a new Page::annotations() that let's you specify subtypes
utils:
* pdfseparate: additonal handling for annotations. Bug #77549
* pdfdetach: fix crash when getPage() returns null. Bug #85145
* pdftocairo: Add support for printing to a Windows printer. Bug #79936
build system:
* Move automake version check from autogen.sh to configure.ac. Bug #79797
* Makefile.am cleanups. Bug #79411
* Use poppler-data pkg-config
* Make autogen.sh work with variables with spaces
* Don't use -fPIC on mingw
* Fix build with --disable-utils. Bug #84448
Release 0.26.4
core:
* CairoOutputDev: Make sure we always push a transparency group in setSoftMaskFromImageMask(). Bug #81624
* Fix a crash when adding Annotation without contents
* Improve non-latin characters in inline notes. Bug #65956
* Don't check for inlineImg twice. Bug #82059
* printf() -> error()
glib:
* Return NULL in poppler_annot_get_contents also for empty strings
* Fix a memory leak when getting text layout and attributes
Release 0.26.3
qt5:
* autoconf: Improve moc-qt5 detection
* Fix compilation with MinGW
glib:
* Fix typo in api docs
* use C90-style comments in public headers
core:
* Error out instead of exiting if allInter grows too much. Bug #78714
qt4:
* Update required version to Qt 4.7.0
build system:
* Include stdio.h from poppler-config.h
misc:
* Update .gitignore files
Release 0.26.2
core:
* Make sure we have an xref before using. KDE Bug #335413
build system:
* autoconf: Fix typo in configure.ac
utils:
* pdftohtml: exit with 0 with -v and -h
Release 0.26.1
core:
* Use field value V for radio buttons. Bug #75979
* Fix extraction of text in some files. Bug #78145
* Only add annotations of the current page when splitting. Bug #77549
build system:
* autoconf: Fix libopenjpeg 1.5 detection on some systems. Bug #78389
glib:
* Fix multiple definition of PopplerTextSpan
Release 0.26.0
qt4:
* Fix mismatched boolean logic in TextAnnotation::setInplaceIntent
qt5:
* Fix mismatched boolean logic in TextAnnotation::setInplaceIntent
core:
* Very small code cleanup
cpp:
* Very small code cleanup
Release 0.25.3
core:
* Fix crashes on broken files
* Avoid MinGW/Cygwin warnings due to redefinition of NOMINMAX
* Fix some small memory leaks
qt5:
* Fix some kinds of OCG models
* Cleanup some deprecated methods
glib:
* Fix the first coord of the quadrilateral in create_poppler_quads_from_annot_quads(). Bug #76504
utils:
* pdftohtml: Fix typo in manpage
qt4:
* Fix some kinds of OCG models
Release 0.25.2
core:
* Tagged-PDF support
* Open some broken files. Bug #75232
* Fix crashes on broken files
* Fix regression parsing some broken files. KDE Bug #329600
* Improve compilation under Win 8 with Visual Studio 2012. Bug #73111
* PSOutputDev: Ensure paper size takes into account rotation. Bug #72312
* PSOutputDev: Fix DocumentMedia/Page/Media/PageBBox DSC comments
* PSOutputDev: Use crop box as page size
* PSOutputDev: Remove origpagesizes mode and make -origpagesizes an alias for -paper match
* PSOutputDev: Only change paper size when different to previous size
* PSOutputDev: Ensure there is always a page size in the output
* PSOutputDev: Fix regression when creating level1 PS. Bug #75241
* CairoOutputDev: Clip to crop box. Gnome Bug #649886
* Splash: Blend usage in PDF with spot colors casue random output. Bug #74883
* Splash: Fix off by one that caused crash in a file. Bug #76387
* Make sure number of least objects in hints table is valid. Bug #74741
* Limit numeric parsing of character names. Bug #38456
glib:
* Tagged-PDF support
* Annotation improvements
* Install error callback. Bug #73269
* Fix gobject-introspection warnings
* demo: Fix performance in text markup annotations
* Increase gtk3 dependency
qt4:
* Improve naming of internal export/import macros
* Add GCC visibility export attributes
* Expose document-supplied text direction
qt5:
* Improve naming of internal export/import macros
* Add GCC visibility export attributes
* Expose document-supplied text direction
utils:
* pdftocairo: Ensure page size and crop box works the same as pdftops
* Fix TIFF writting in Windows. Bug #75969
buildsystem:
* Learn about automake 1.14
* Do not define -ansi. Bug #72499
* cmake: Install JpegWriter.h depending on libjpeg
* cmake: Use c99 for the c compiler
Release 0.25.1
core:
* GooString format: Added some tests + improved documentation
* GooString format: fixed bug with printing LLONG_MIN
* regression test improvements
qt4:
* Arthur backend font rendering improvements
* test program to save to file
qt5:
* Arthur backend font rendering improvements
* Improve detection of Qt5 moc. Bug #72744
* test program to save to file
utils:
* pdfunite: Work even if there's a single file given
* pdfunite: do not lose fonts when merging some files
Release 0.25.0
core:
* Annotation improvements
* Tagged PDF work
* Improve speed on some files using ICC color space
* Use ICC profile in OutputIntents. Bug #34053
* Limit use of ZapfDingbats character names. Bug #60243
* Splash: correction for knockout transparency groups
* regression test improvements
utils:
* pdftoppm: Added thinlinemode option setting
* pdfinfo: Indicate if pdf contains javascript
* pdfinfo: Add option to print out javascript
* pdfimages: Print size, ratio, and ppi
* pdfimages: More image output format support
* pdfseparate: allow zero-padded pagespecs
glib:
* Annotation improvements
* Add API to get text, text layout and text attributes for a given area
* demo improvements
Release 0.24.5
core:
* Fix crash due to wrong formatting of error message. KDE Bug #328511
Release 0.24.4
core:
* Fix regression in broken endstream detection. Bug #70854
* Catalog: sort entries of NameTrees to make sure lookup works. Bug #26049
* Don't infinite loop if reading from GooFile::read fails. Bug #71835
utils:
* pdftotext: Do not close stdout. Bug #71639
* pdftotext: Silence warning for may be used uninitialized variable. Bug #71640
* pdftotext: Escape the text of the xml headers
* Warn the user if he provides a wrong range
qt4:
* Fix typo in xml API. Bug #71643
qt5:
* Fix typo in xml API. Bug #71643
Release 0.24.3
core:
* PSOutputDev: Fix PFB font embedding. Bug #69717
* CairoOutputDev: Do not set an invalid matrix in drawImage(). Bug #70085
qt4:
* Don't crash if getXRef()->copy() fails
qt5:
* Don't crash if getXRef()->copy() fails
utils:
* pdfseparate: Allow only one %d in the filename. Bug #69434
Release 0.24.2
core:
* Windows: Fix CreateFile fails with ERROR_SHARING_VIOLATION. Bug #69597
utils:
* pdfseparate: improve the path building
* pdftocairo: check file opening failure in beginDocument()
Release 0.24.1
core:
* SplashOutputDev: use getRGBLine images if available. Bug #66928
* SplashOutputDev: Don't copy bitmap if we don't need to.
* PSOutputDev: Fix regression in -eps -level1sep rendering. Bug #68321
* Fix crash in malformed file 1026.asan.0.42.pdf
* use copyString instead of strdup where memory is freed with gfree. Bug #67666
utils:
* pdfdetach: don't mention xpdfrc
* pdftotext: Fix -bbox with stdin as input. Bug #45163
* pdftohtml: Fix jpeg image export. Bug #48270
* pdfimages: Fix typos in man page
glib:
* demo: Remove GTK_DISABLE_DEPRECATED compilation flag
qt4:
* Fix small typo in documentation
qt5:
* Fix small typo in documentation
Release 0.24.0
core:
* TextOutputDev: Do not draw ligatures more than once when selected. Bug #9001
* PSOutputDev: Make some pdftops conversions much faster
* PSOutputDev: Initialize t3FillColorOnly
* SplashOutputDev: Fallback to 1x1 bitmap if we fail to create the real size
Release 0.23.4
core:
* TextOutputDev: clip the selected text rendering to the selection box. Bug #66983
* CairoImageOutputDev: Fix the bounding box of saved images
build system:
* Improve linking against pthreads
Release 0.23.3
core:
* Annotation improvements
* Fix crashes on malformed files
* TextSelectionPainter: Draw glyphs after selection background
* TextOutputDev: add a method to TextPage to get the selection as a list of words
qt5:
* Initial Qt5 port
qt4:
* Windows compile fixes
* Demo: Allow the choose the page rotation
build system:
* Fix mingw build
* Minor autotools fixes
Release 0.23.2
core:
* SplashOutputDev: Speed-up some tiling on a 10x factor
* Improve caching of lcms2 ICC color profiles
* Put some private classes in an anonymous namespace
qt4:
* Add a thread stresser tool
build system:
* Fix mingw build
Release 0.23.1
core:
* XRef stream writing: Write 32-bit offsets when possible
* Fix splashModeBGR8 rendering (Bug #64381)
glib:
* Do not use deprecated gtk_scrolled_window_add_with_viewport() (Bug #64683)
build system:
* Fix Large file support when using cmake
Release 0.23.0
core:
* Make rendering thread safe
* Large file support
* Implement Crypt filter (Bug #62800)
* Fix endstream detection (Bug #62985)
* CairoOutputDev: support uncolored tiling patterns (Bug #59179)
* SplashOutputDev: Introduce Thin Line mode support (Bug #37347)
qt4:
* Expose Thin Line mode support
Release 0.22.4
core:
* Always consider a softmask transfer function (Bug #63587)
* Fix crash on malformed files (Bug #63190)
* Splash: Fix compilation with fixed point mode enabled
utils:
* Fix crash on some files (Bug #63909)
qt4:
* Fix name decoding of some attachments (KDE Bug #307786)
build system:
* Fix compilation with mingw-w64 compiler
Release 0.22.3
core:
* Check order bounding box values in tiling pattern (Bug #62369)
* CairoImageOutputDev: Don't change image interpolation when printing (Bug #62418)
* TextOutputDev: Set text matrix when painting selection (Bug #61042)
* Only write the file once when saving (Bug #62739)
* Fix for complete rewrites in repaired files
* Fixlet regarding spec interpretation for Link Zoom value
* Fix typos in man pages
* Fix compile when not using libjpeg
glib:
* Always start from the beginning when starting a new search on a page (Bug #59972)
qt4:
* Fix crash in files with LinkRendition (KDE Bug #317710)
build system:
* Small cmake improvements
Release 0.22.2
core:
* Correct rendering of underline and strike out annotations (Bug #61518)
* Workaround broken jpeg stream definitions (Bug #61994)
* SplashOutputDev: Restore CTM on early exits (Bug #61413)
* SplashOutputDev: Make sure we don't try to paint in x < 0 (KDE Bug #315432)
* Fix latin page labels. (Bug #61034)
* Fix compilation with jpeglib9
* Fix minor valgrind warning
utils:
* pdfimages: Fix extraction of some images (Bug #61168)
build system:
* Fix the build with automake-1.13
Release 0.22.1
core:
* Fix crash in some pdf files when extracting text (Bug #59561)
* Fix crashes in wrongly formed files
* Fix wrong warning when opening some files (Bug #58966)
build system:
* Improve autoconf jpeglib.h detection (Bug #59186)
Release 0.22.0
core:
* Fix crash in invalid files that define a <= 0 bits per image value
* Fix a few issues in JPX decoding when not using OpenJPEG
* TextOutputDev: Use page size for max value in TextPage::visitSelection
* Fix typo in error message
utils:
* Fix pdfunite regression (Bug #58569)
* Demo fixes and improvements
misc:
* pdf-inspector improvements
Release 0.21.4
core:
* SplashOutputDev: Fix crash when rendering in monochrome mode
* SplashOutputDev: Fix line widths in monochrome mode (Bug #57294)
* PSOutputDev: Fix crop on EPS conversion (Bug #30692)
* TextOutputDev: Fix minor logic mistake
* Fix assert on some malformed files (Bug #58257)
* Move #include "jpeglib.h" into .cc file (Bug #57687)
* Filter text that may end up being written to the shell
* Fix windows compile warnings
glib:
* Add poppler_annot_set_flags (Bug #58015)
* Demo fixes and improvements
qt4:
* Fix check_lexer on 32-bit systems
Release 0.21.3
core:
* Splash: Implement bilinear image scaling (Bug #22138)
* CairoOutputDev: Update fill and stroke color in startPage (Bug #54526)
* Fix GooString::insert()
* Allow large chars in TextPage
* Fix crash on ActualText::end
* Don't use memcpy to copy classes
* Fix warnings
glib:
* Check if words end with spaces (Bug #54504)
* Ensure text is only computed on first render
* Fix warnings while generating introspection file
* Fix returns tag in PopplerAttachmentSaveFunc api doc
* Minor demo fixes
Release 0.21.2
core:
* CairoOutputDev: make drawImage work with images > 32767 in width/height (Bug #56858)
* CairoOutputDev: Fix soft mask when image resolution != smask resolution (Bug #57070)
* CairoOutputDev: Fix crash in CairoImageOutputDev with setSoftMaskFromImageMask (Bug #57067)
* Remove a check on fonts that we don't need (Bug #56753)
* Misc code cleanups
utils:
* pdftocairo: Add tiff output support (Bug #57006)
* pdfunite: Fix -v (Bug #56817)
* Misc code cleanups
Release 0.21.1
core:
* Annotation improvements
* Form improvements
* CairoImageOutputDev: Support parameterized Gouraud shading (Bug #56463)
* UTF validation fixes
* Do not call drawing routines if we don't need non text (Bug #54617)
* Fix Memory leak in CharCodeToUnicode (Bug #54702)
qt4:
* Make LinkRendition properties available (Bug #55378)
* Accessors for FormWidgetChoice::editChoice
* Implement overprint
Release 0.21.0
core:
* Support the modification of files with Encrypt
* Annotation improvements
* Form improvements
* Splash: Implement DeviceN support
* Splash: Avoid bogus memory error for tilingPattern
* TextOutputDev: Allow multiple fonts in a TextWord
* Kill the concept of base dir
* PSOutputDev: Always write HiResBoundingBox (Bug #53159)
* Convert UTF-16 to UCS-4 when reading toUnicode cmap
* GooString formatting: add support for uppercase hexadecimal
* Use error() instead of fprintf(stderr, ...) in Annot::layoutText
* poppler-config.h: remove WITH_FONTCONFIGURATION_* macros
glib:
* Annotation improvements
* Add poppler_page_remove_annot()
* Add poppler_document_new_from_stream
* Add poppler_document_new_from_gfile
* Add poppler_page_find_text_with_options (Bug #2951)
* Demo improvements
* Port tests and demo to GTK+3
qt4:
* Add accessor methods for movie poster information
* Make 'additional actions' available in Annotation API (Bug #53589)
* Add whole-page search method to Poppler::Page
* Small changes in tests
utils:
* pdftohtml: Make the output more xhtml compliant
* pdftohtml: Add -fontfullname. (Bug #49872)
* pdftohtml: Do not invoke gs anymore
build system:
* Add the possibility of using lcms1 even if lcms2 is installed
* Remove extra fontconfig CFLAGS and LIBS
Release 0.20.5
core:
* Fix crashes in malformed documents
* Fix parsing of very big numbers
* Splash: Do not render invalid font outlines (Bug #55573)
* Check for NaN in TextPage::addChar
build system:
* Fix build using mingw64 with winpthread
* autotools: Fix compilation when lcms is on non standard locations (Bug #55326)
* Support automake-1.12 (Bug #55541)
glib:
* Chain up finalize to the parent class (Bug #55521)
Release 0.20.4
core:
* Improvements regarding embedded file handling. (KDE Bug #306008)
* Fix opening some broken files (Bug #14303)
* Fix memory leaks
* Fix crashes in various broken files
* Refine warning to only complain when really needed
* Remove function declared but not implemented
* Remove execution permissions from a header file
qt4:
* Improvements regarding embedded file handling. (KDE Bug #306008)
Release 0.20.3
core:
* If NULL, NULL fails as password try EMPTY, EMPTY before failing (Bug #3498)
* SplashOutputDev: Fix bogus memory allocation size in Splash::arbitraryTransformImage (Bug #49523)
* SplashOutputDev: Fix segfault when scaleImage returns NULL (Bug #52488)
* SplashOutputDev: Blend mode enhancements for CMYK
* PSOutputDev: Fix conversion when creating multiple strips (Bug #51982)
* PSOutputDev: Fix Bitmaps in level2sep or level3sep (Bug #52384)
* PSOutputDev: Fix DeviceN images with alternate Lab colorspace in level 3 PostScript (Bug #51822)
* PSOutputDev: Make sure xScale and yScale are always initialized (Bug #52215)
* Unify poppler-config.h includes in core "installed" headers (Bug #52193)
* Replace c++ style includes with c style ones (Bug #52426)
utils:
* pdfseparate: Return 0 on success
Release 0.20.2
core:
* Fix compilation on Windows
* Copy resources content defined in the pages dict on save (Bug #51369)
* PSOutputDev: Correct %%DocumentCustomColors (Bug #51479)
* PSOutputDev: Fix handling of DeviceN images in level 3 PostScript (Bug #51548)
* Fix crash in malformed documents
qt4:
* Do not hang on malformed /Annots objects (Bug #51361)
Release 0.20.1
core:
* Remove unnecesary transparency group handling in splash (Bug #13487)
* Include substitute font name in system font cache (Bug #49826)
* Fix logic on SplashBitmap::writeImgFile
* PSOutputDev: use setoverprintmode only if rip knows it
* Fix crash in malformed documents
qt4:
* Make TextAnnotation constructor public
* Fix saving of default TextAnnotation to xml
* Keep page rotation into account when normalizing annotation coords
glib:
* Fix memory leak when document fails to load
* Make sure password is always converted to latin1
* Fix typo in documentation
build system:
* Distribute cmake/modules/FindLCMS2.cmake (Bug #49818)
utils:
* pdftohtml: Determine if font is bold or italic based on FontDescriptor (Bug #49758)
* pdfseparate: Syntax fixes in the man page
Release 0.20.0
core:
* Reconstruct xref table if xref needed but missing (Bug #40719)
* Fix getFullyQualifiedName with unicode field names (Bug #49256)
* SplashOutputDev: Fix rendering of knockout groups (Bug #12185)
* SplashOutputDev: Fix cmyk transfer bug (Bug #49341)
* Fix crashes in broken documents
* Bring back the Outputdev::begin/endMarkedContent virtuals
* Build fixes
qt4:
* Convert propertly unicode encoded field qualified names
glib:
* glib: Use delete[] to free array allocated with new[] (Bug #48447)
Release 0.19.4
core:
* Annotation improvements
* More compatible file writing
* SplashOutputDev: Fix slow rendering of pdf with a lot of image masks in pattern colorspace
* Fix crashes in broken documents
* Fix spurious warning messages
utils:
* pdftotext: Add missing section heading to man page
* pdftohtml: Fix crash when the destination file does not exist
build system:
* autoconf: Do not append "-ansi" to CXXFLAG, if "-std=XXX" is already specified.
* autoconf: Do not clear FREETYPE_CFLAGS, FREETYPE_LIBS before PKG_CHECK_MODULES()
* autoconf: Copying graphics library CFLAGS to cpp frontend Makefile.am
Release 0.19.3
core:
* Annotation improvements
* CairoOutputDev: Fix regression caused by mesh gradients
* CairoOutputDev: Use correct userfont font bbox (Bug #48399)
* CairoOutputDev: Fix paintTransparencyGroup when both mask and fill opacity are required (Bug #48453)
* CairoOutputDev: Ensure 0 width lines with stroke_adjust are aligned
* CairoOutputDev: Only align stroke coords for horizontal and vertical lines (Bug #48318)
* CairoOutputDev: Fix stroke pattern with transparency group (Bug #48468)
* Fix crash in JBIG2Stream decoding
* Fix memory leak when looking for a substitute font
* Fix page labels to not have a null character at the end
* Fix Splash CMYK merge error
* ttc<->ttf fallback is expected for CJK font list in for Windows (Bug #48046)
qt4:
* Annotations can now be modified
* Annotations can now be added
* Annotations can now be removed
utils:
* pdftohtml: Add producer and version to xml output
* pdftohtml: Fix the mask inversion for PNG
Release 0.19.2
core:
* Annotation improvements
* CairoOutputDev: update cairo mesh pattern to 1.12 api
* CairoOutputDev: fix some transparency issues (Bug #47739)
* CairoOutputDev: Fix regression in some shadings
* TextOutputDev: Don't add newline to last line extracted by TextSelectionDumper (Bug #45955)
* CJK font improvements
* Improve font matching for non embedded fonts
* Fix regression regarding forceRasterize in PSOutputDev
* Fix typos glyph names in truetype 'post' table standard mac ordering
build system:
* minor cmake fixes
* misc autoconf fixes
* POPPLER_VERSION is now wrapped in quotes
utils:
* pdftohtml: extract mask images even if they are not JPEG (Bug #47186)
* pdftohtml: Flip images if they need to (Bug #32340)
Release 0.19.1
core:
* Improve CJK suport in PSOutputDev
* CJK substitute implementation on WIndows platforms
* Do not crash on malformed files with 0 bits in the color map of an image
* Fix regression in some PSOutputDev array sizing
* Improvements to Annotation editing
* Fix logic error in Rendition parsing code (Bug #47063)
* Minor API changes to SplashOutputDev (Bug #46622)
* Fix mismatch in some functions declarations
* Update poppler copyright year
utils:
* pdftops: Fix -passfonts regression. (Bug #46744)
* pdffonts: List the encoding of each font. (Bug #46888)
* pdftohtml: Add possibilty of controlling word breaks percentage. (Bug #47022)
qt4:
* Support for LinkMovie object (Bug #40561)
* Support for Media Rendition
glib:
* Add poppler_fonts_iter_get_encoding
* Improvements to the demo
Release 0.19.0
core:
* Merge Xpdf 3.03
* Add support for lcms2
* SplashOutputDev: Implement Overprint
* PSOutputDev: Implement Overprint
* Expand glyph name ligatures such as "ff", "ffi" etc to normal form (Bug #7002)
* Use an Identity CharCodeToUnicode for Adobe-Identity and Adobe-UCS collections (Bug #35468)
* CairoOutputDev: Avoid setting huge clip area when printing (Bug #44002)
* CairoOutputDev: Fix test for rotation (Bug #14619)
* CairoOutputDev: Don't read inline image streams twice (Bug #45668)
* CairoOutputDev: set mask matrix before drawing an image with a mask (Bug #40828)
* Update glyph names to Unicode values mapping (Bug #13131)
* Only use Hints table when there are no parse errors (Bug #46459)
* Expose POPPLER_VERSION in poppler-config.h
utils:
* pdftohtml: Output images in -xml mode if no -i option is specified
* pdftohtml: Get rid of static data members; merge duplicated jpeg dumping code
* pdftohtml: Be more consistent generating the outlines
* pdftohtml: Generate outlines in pdftohtml in -xml mode (Bug #56993)
* pdftohtml: Combine UTF16 surrogate pairs (Bug #46521)
* pdfinfo: Report page rotation
* pdfinfo: Decode utf-16 surrogate pairs
* pdftoppm: Allow one of -scale-to-[xy] = -1 to mean the aspect ratio is to be preserved (Bug #43393)
* pdftocairo: Allow one of -scale-to-[xy] = -1 to mean the aspect ratio is to be preserved
* pdffonts: Add -subst option to list the substitute font name and filename
* pdfseparate: Produce PDF/X conformant pdf pages if the original PDF was PDF/X conformant
* pdfimages: Add -list option to list all images (Bug #46066)
* Improve various manpages
glib:
* Add poppler_fonts_iter_get_substitute_name
* Demo improvements
* Update gtk-doc makefile and m4 file
* Fix typos in documentation
qt4:
* Add the option of PSConverter creating EPS
* Form support improvements
build system:
* autotools: Print the cairo version required if not found (Bug #44619)
* autotools: Print the glib version required if not found
* autotools: Use pkgconfig to check for libopenjpeg (Bug #21789)
* autotools: Replace openjpeg compile test with a version test
* Add a configuration option for the test data dir
Release 0.18.4
core:
* CairoOutputDev: Restore temporary clip used in CairoOutputDev::fill when painting a mask
* CairoOutputDev: Ensure paintTransparencyGroup uses same ctm as beginTransparencyGroup. Bug #29968
* CairoOutputDev: Use fabs when comparing the transformed line width. Bug #43441
* CairoOutputDev: Remove unused variable in CairoFontEngine.cc. Bug #45442
* SplashOutputDev: Do not use 50Kb of stack in SplashXPath::addCurve. Bug #44905
* JpegWriter: set image parameters after jpeg_set_defaults(). Bug #45224
* OpenJPEG decoder: Set OPJ_DPARAMETERS_IGNORE_PCLR_CMAP_CDEF_FLAG if you have it. Bug #43414
* Lexer: convert integer to real when overflow occurs. Bug #45605
glib:
* Various minor introspection and documentation improvements. Bug #44790
* Fix return values. Bug #45440. Bug #45441
* gtk-doc improvements. Bug #45549
* Introspection improvements. Bug #45455
utils:
* HtmlOutputDev: Proper unicode support when dumping PDF outline. Bug #45572
* HtmlOutputDev: Fix leaks. Bug #45805
* HtmlOutputDev: Close li tags in generated outlines. Bug #45807
* man pages: fix minor issues with hypens and %
build system:
* automake: Link to lcms if needed
* automake: Fix build for builddir != srcdir. Bug #45434
* automake: Improve moc detection when cross compiling
* Fix build with latest mingw-w64 headers. Bug #45407
qt4:
* remove non-existing 'qt' include dirs
Release 0.18.3
core:
* Do not fail if we are trying to save a file with Encrypt that has not been modified. KDE Bug #288045
* Include .otf fonts when finding substitute fonts. Bug #44412
* Fix stack overflow in PDFDoc::markObject(). Bug #44660
* Include strings.h as we use memcpy. Bug #43558
utils:
* pdfunite: Properly initialize globalParams. Bug #44659
* pdfseparate: Properly initialize globalParams
* Fix iniliazialization of GooString arguments
build system:
* autoconf: Check for cairo-ft and other cairo backends. Bug #43969
Release 0.18.2
core:
* Fix leak in GooString when resizing to a smaller string
* Fix crash if failing to parse the colorspace. Bug #42793
* Make GfxColorSpace::parse accept dicts
qt4:
* Use PDFDoc(wchar_t *, ...) on Windows. Bug #35378
* Add missing include
* Minor fixes in documentation
utils:
* pdftocairo: Fix crash when rendering only odd/even pages in a printing format
build system:
* Fix pkg-config files
Release 0.18.1
core:
* PSOutputDev: Output PS that does not confuse libspectre
* PSOutputDev: Fix tiling pattern fill matrix. Bug #41374
* PSOutputDev: Emit non repeating patterns just once
* PSOutputDev: Fix uncolored tiling patterns. Bug #41462
* CairoOutputDev: Fix crash when using poppler_page_get_image()
* CairoOutputDev: Fix various setSoftMask bugs. Bug #41005
utils:
* pdftocairo: Flush/close files one we are done using them
* pdftocairo: Compile in Windows
build system:
* CMake: Fix typo in option description
* CMake: Correctly include fontconfig include dir
* Remove poppler-cairo dependency from poppler-glib pkg-config file
qt4:
* Minor fixes in documentation
Release 0.18.0
core:
* Fix small memory leak when dealing with marked content
* Remove DCTStream::getRawStream since Stream::getNextStream does the same
utils:
* Rename pdfmerge to pdfunite
* Rename pdfextract to pdfseparate
* pdfseparate: Complain if %d is not present and it should
* Add pdfseparate and pdfunite man pages
build system:
* Minor cleanup in regarding removed qt code
Release 0.17.4 (0.18 RC)
core:
* SplashOutputDev: Compile when defining USE_FIXEDPOINT
* PNGWriter: Compile with libpng >= 1.5.0
Release 0.17.3 (0.18 Beta 3)
core:
* PSOutputDev: Use Patterns for tiling fill when PS level >= 2
* PSOutputDev: Avoid using /PatternType if only one instance of the pattern is used
* PSOutputDev: Add poppler version as comment in the file
* CairoOutputDev: Set mime data for soft masked images (Bug #40192)
* CairoOutputDev: Assume printer pixel size is 1/600" when stroking 0 width lines (Bug #39067)
* CairoOutputDev: Use cairo_show_text_glyphs() when printing
* CairoOutputDev: Fix stroke patterns (Bug #11719)
* CairoOutputDev: Fix unique id mime data
* CairoOutputDev: fix stroking of very thin lines
* CairoOutputDev: align strokes when Stroke Adjust is true and line width <= 1 (Bug #4536)
* TextOutputDev: Add TextFontInfo::matches()
* Improve PNGWriter
* Rework writing of PDF files
utils:
* Introduce pdftocairo - utility for creating png/jpeg/ps/eps/pdf/svg using CairoOutputDev
* Introduce pdfextract - utility to extract PDF pages
* Introduce pdfmerge - utility to merge PDF files
* Fix compilation warning
* pdftohtml: Support text rotation (Bug #38586)
* Update SEE ALSO section of man pages
glib:
* Add poppler_page_get_text_attributes()
* Add text attributes information to text demo
qt4:
* Add a way to get the fully qualified name of a FormField
* Minor documentation improvements
Release 0.17.2 (0.18 Beta 2)
core:
* EmbeddedFile improvements
* don't gmalloc(-1) upon ftell failure
* Fix missing content in some pages (Bug #39637)
* Improve selection of CJK fonts (Bug #36474)
* SplashOutputDev: Implement overprint
* SplashOutputDev: Render dots for 0 length dashed lines (Bug #34150)
* SplashOutputDev: Fix bad memory access when not using antialias (Bug #37189)
* PSOutputDev: Make level2sep and level3sep write cmyk instead of rgb
* PSOutputDev: Make level1sep, level2sep and level3sep write gray instead of rgb for gray images
* Fix numerical overflow in libopenjpeg JPXStream (Bug #39361)
* Fix crash on truncated JPEG/DCT stream (Bug #36693)
* Make sure the dict is a page dict (Bugs #35925 #39072)
* Fix calculation of startXRefPos
* Handle missing startxref properly (Bug #38209)
* Parse the "Medium" modifier when asking fontconfig for a font
* Header cleanup
* Include cleanup
* Define cleanup
glib:
* Add missing permissions flags to PopplerPermissions
* Add missing permission flags to info demo
* Update gtk-doc.make
* Add poppler_document_get_n_attachments()
utils:
* pdftohtml: Fix encoding of PDF document metadata (Bug #37900)
* pdftohtml: Fix vertical spacing issues (Bug #38019)
* pdftotext: Fix -htmlmeta to correctly output U+2019 in PDF metadata (Bug #37900)
* pdftoppm: Implement overprint
qt4:
* Rework EmbeddedFile internals
* Fix possible crash in test