-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathNEWS
2463 lines (1967 loc) · 73.7 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
================
Evince 2.30.0
================
Bug fixes:
* Fix scale calculation on rotated monitors in presentation mode
(José Aliste, Carlos Garcia Campos)
* Save current page when closing window in presentation mode
(#612656, Carlos Garcia Campos)
* Fix rendering of documents with non uniform page size when in
presentation mode (Carlos Garcia Campos)
* Use monitor height instead of screen height to calculate page
scale in presentation mode (#608924, Carlos Garcia Campos)
Translation updates:
* Sadia Afroz (bn)
* Lucas Lommer (cs)
* Kenneth Nielsen (da)
* Iñaki Larrañaga Murgoitio (eu)
* Tommi Vainikainen (fi)
* Gabor Kelemen (hu)
* Andika Triwidada (id)
* Francesco Marletta (it)
* Changwoo Ryu (ko)
* Badral (mn)
* Nils-Christoph Fiedler (nds)
* Wouter Bolsterlee (nl)
* A S Alam (pa)
* Duarte Loreto (pt)
* Daniel Nylander (sv)
* Maxim Dziumanenko (uk)
================
Evince 2.29.92
================
Bug fixes:
* Fix build with gtk+ >= 2.19.7
Translation updates:
* Gil Forcada (ca)
* Bruce Cowan (en_GB)
* Iñaki Larrañaga Murgoitio (eu)
* Gabor Kelemen (hu)
* Gintautas Miliauskas (lt)
* Anita Reitere (lv)
* Umarzuki bin Mochlis Moktar (ms)
* Piotr Drąg (pl)
* Yuri Kozlov (ru)
* Miloš Popović (sr@latin)
* Милош Поповић (sr)
* Daniel Nylander (sv)
================
Evince 2.29.91
================
New Features and UI Improvements:
* DVI backend support on windows (#602910, Hib Eris)
Documentation fixes:
* Modernise API docs (Christian Persch)
Bug fixes:
* Fix dpi calculation (#608586, Juanjo Marín)
* Allow adding actions for more than one item in view popup menu
(#609497, Carlos Garcia Campos)
* Add gconf schemas for comic cbt files (#609501, Carlos Garcia
Campos)
* Update totem-scrsaver from totem sources (#610173, Carlos Garcia
Campos)
* Fix linking with pedantic linkers (#609895, Hib Eris)
* Do not link evince shell to poppler directly (#608832, Hib Eris)
* Several translatable messages fixed (#608698, Philip Withnall)
Translation updates:
* Khaled Hosny (ar)
* Krasimir \"Bfaf\" Chonov (bg)
* Sadia Afroz (bn)
* Christian Kirbach (de)
* nikosCharonitakis (el)
* Philip Withnall (en_GB)
* Jorge González (es)
* Ivar Smolin (et)
* Claude Paroz (fr)
* Fran Diéguez (gl)
* Hideki Yamane (Debian-JP) (ja)
* Kjartan Maraas (nb)
* Wouter Bolsterlee (nl)
* Henrique P. Machado (pt_BR)
* Adi Roiban (ro)
* Matej Urbančič (sl)
* Dr,T,Vasudevan (ta)
* Theppitak Karoonboonyanan (th)
* Chao-Hsiung Liao (zh_HK)
* Chao-Hsiung Liao (zh_TW)
================
Evince 2.29.5
================
New Features and UI Improvements:
* Make Home/End keys go to first/last page in presentation mode
too (#358462, Carlos Garcia Campos)
* Allow finish presentation by clicking on end page (#309364,
Carlos Garcia Campos)
* Add custom print tab to printing dialog with several page scale
options (#599468, #599470, #599547, Adrian Johnson)
* Add support for remote files in evince thumbnailers (#605218,
Carlos Garcia Campos)
* Add evince icon to the windows executable (#596401, Hib Eris)
Bug fixes:
* Fix transition of pages with duration=0 in presentation mode
(Carlos Garcia Campos)
* Fix vertical white line shown in presentation mode with
documents with black background (#438760, Carlos Garcia Campos)
* Fix fickering and blank screen issues when changing pages fast
in presentation mode (#602738, Carlos Garcia Campos)
* Fix printing on Windows (#604705, Hib Eris)
* Disable text selection in presentation mode (#605554, Carlos
Garcia Campos)
* Make comics backend also compile on Windows (#605146, Hib Eris)
* Remove comics_regex_quote() in favor of always using
g_shell_quote() (#605092, Juanjo Marín)
* Properly redrawn properties view when document is reloaded
(#605169, Carlos Garcia Campos)
Translation updates:
* Khaled Hosny (ar)
* Jorge González (es)
* Kjartan Maraas (nb)
* Matej Urbančič (sl)
* Daniel Nylander (sv)
* Theppitak Karoonboonyanan (th)
* Maxim Dziumanenko (uk)
================
Evince 2.29.4
================
New Features and UI Improvements:
* Always show rotate icons (#599398, Carlos Garcia Campos)
* EvPrintOperation has been moved to libview so that it can
be used by EvView users (#604750, Tomeu Vizoso)
* Support for cbt comic files (#588266, Juanjo Marín)
Bug fixes:
* Do not fail to open external uri links that are relative paths
(#604716, Carlos Garcia Campos)
* Do not hardcode BINDIR on Windows (#605001, Hib Eris)
* Fix a crash in djvu backend on windows (#604919, Hib Eris)
* Replace mkdtemp with our own _ev_g_mkdtemp to make it portable
(#604917, Hib Eris)
* Include a copy of some icons from gnome-icon-theme to be used as
fallback on platforms like window where gnome-icon-theme is not
available (#596400, Hib Eris)
* Fix 0x0 page size always shown in properties view (Carlos Garcia
Campos)
* Do not hide page selector widget on invalid input (#603714,
Carlos Garcia Campos)
* Split EvPixbufCache into dynamic and static data. Static page
data (links, annots, images, text and forms) that don't
depend on current scale/rotation, have been moved to EvPageCache
and are never removed. (#602405, Carlos Garcia Campos)
* Fix a typo in EV_RENDER_CONTEXT macro definition (#603857,
Gustavo Carneiro)
* Code cleanups and improvements in libview (#603858, Carlos
Garcia Campos)
Translation updates:
* Khaled Hosny (ar)
* Yaron Shahrabani (he)
* Kjartan Maraas (nb)
* Matej Urbančič (sl)
* Tao Wei (zh_CN)
================
Evince 2.29.3
================
New Features and UI Improvements:
* Add inverted colors view mode (#321823, Juanjo Marín, Carlos
Garcia Campos)
* Add options to open/save attachment annotations to context menu
(Carlos Garcia Campos)
Bug fixes:
* Fix infinite loop when scrollbar visibility changes in fit-with
mode (Carlos Garcia Campos)
* Fix rendering issue in dual/continuous mode (#602742, José
Aliste)
* Do not resize the window when zoom in/out with CTRL+Scroll
(#602798, Carlos Garcia Campos)
* Keep scroll position when reloading (#602445, Carlos Garcia
Campos)
* Make "p" and "n" accels unsensitive while searching (Carlos
Garcia Campos)
Translation updates:
* Jorge González (es)
* Ivar Smolin (et)
* Yaron Shahrabani (he)
* Nils-Christoph Fiedler (nds)
* Matej Urbančič (sl)
* Tao Wei (zh_CN)
================
Evince 2.29.2
================
New Features and UI Improvements:
* Add support for PDF File Attachment Annotations (#601839, Carlos
Garcia Campos)
* Use "n" and "p" keys for page jump (#601217, Carlos Garcia
Campos)
* Update actions sensitivity when gconf keys change (#568433,
Carlos Garcia Campos)
Documentation fixes:
* Make series ID unique (#599726, Christian Persch)
Bug fixes:
* Fix saving attachments (Carlos Garcia Campos)
* Make sure view is redrawn as soon as current page is rendered
(#601433, Carlos Garcia Campos)
* Fix documentation of default flag values in configure (Emmanuel
Fleury)
* Do not mark properties name and desc as translatable (#509824,
Carlos Garcia Campos)
* Fix build with glib < 2.22.0 (#600338, Christian Spurk)
* Disable print page setup options according to lockdown (#568433,
Carlos Garcia Campos)
* Fix loading of remote files (Carlos Garcia Campos)
* Correctly process --with-smclient arguments (#590174, Christian
Persch)
Translation updates:
* Thomas Thurman (en@shaw)
* Jorge González (es)
* Ivar Smolin (et)
* Antón Méixome (gl)
* Kjartan Maraas (nb)
* Matej Urbančič (sl)
* Daniel Nylander (sv)
* Dr.T.Vasudevan (ta)
* 樊栖江(Fan Qijiang) (zh_CN)
================
Evince 2.29.1
================
New Features and UI Improvements:
* Embed page setup settings in the print dialog (#591551, Marek
Kašík, Carlos Garcia Campos)
* A new tab has been added to properties dialog to show
* information about the document license (#349173, Juanjo Marín,
Carlos Garcia Campos)
* Use different processes for every document opened. (#583680,
#434966, #497388, #524633, #586087, Carlos Garcia Campos)
* Use GVFS metadata instead of our own xml based
implementation. (#586841, Carlos Garcia Campos)
* When scrolling a page, move one screen leaving one line context
to help to visually track the document as it moves. (#170871,
Carlos Garcia Campos)
* Use GtkInfoBar instead of GeditMessageArea for the message area
(#592785, Carlos Garcia Campos)
* EvPageCache has been splitted up into document part (moved to
EvDocument which has been converted into an abstract class
instead of an interface) and view part: EvDocumentModel. This
allows to have more than one EvView for the same document, so
that "Open a Copy" can be implemented without using the symlink
hack. (#573641, Carlos Garcia Campos)
Bug fixes:
* Several fixes and cleanups in comics backend (Christian Persch)
* Don't exit with non-writable $HOME (Christian Persch)
* Clean up temp file handling to make sure we can cope with not
being able to create our temp directory (#595372, Christian Persch)
* Set page orientation of each page when printing so that
documents with mixed portrait/landscape pages print correctly
(#599470, Adrian Johnson)
* Preserve aspect ratio when scaling page for printing (#599468,
Adrian Johnson)
* Fix a crash when we don't have a DBUS connection (Christian Persch)
* Make sure total_num_bytes > 0 before using it in progress
callbacks (#597691, Carlos Garcia Campos)
* Escape document URI before showing it in progress area (#597691,
Carlos Garcia Campos)
* Fix a crash due to an uninitialized variable (#597154, Carlos
Garcia Campos)
* Fix a crash when there are form field widgets active during
rotation (#593316, Carlos Garcia Campos)
* Remarks the selected thumbnail after rotation (#595548, Juanjo Marín)
* Don't change current page when rotating documents with different
page sizes (#595704, Carlos Garcia Campos)
* Fix thumbnails rotation when loading a rotated document
(#595718, Carlos Garcia Campos)
* Save images as png or jpg when the filename has no extensions
(#595079, Patrick Ammann)
* Populate destination page when reloading the document (#570054,
Fernando Herrera)
Translation updates:
* Khaled Hosny (ar)
* Astur (ast)
* Krasimir \"Bfaf\" Chonov (bg)
* Runa Bhattacharjee (bn_IN)
* Gil Forcada (ca)
* Marek Černocký (cs)
* Kenneth Nielsen (da)
* Mario Blättermann (de)
* Kostas Papadimas (el)
* Philip Withnall (en_GB)
* Jorge González (es)
* Ivar Smolin (et)
* Iñaki Larrañaga Murgoitio (eu)
* Tommi Vainikainen (fi)
* Claude Paroz (fr)
* Antón Méixome (gl)
* Sweta Kothari (gu)
* Gabor Kelemen (hu)
* Andika Triwidada (id)
* Francesco Marletta (it)
* Shushi Kurose (ja)
* Shankar Prasad (kn)
* Changwoo Ryu (ko)
* Gintautas Miliauskas (lt)
* Sangeeta Kumari (mai)
* Ani Peter (ml)
* Sandeep Shedmake (mr)
* Kjartan Maraas (nb)
* Reinout van Schouwen (nl)
* Manoj Kumar Giri (or)
* A S Alam (pa)
* Piotr Drąg (pl)
* André Gondim (pt_BR)
* Duarte Loreto (pt)
* Lucian Adrian Grijincu (ro)
* Matej Urbančič (sl)
* Miloš Popović (sr@latin)
* Милош Поповић (sr)
* Daniel Nylander (sv)
* Dr.T.Vasudevan (ta)
* Krishna Babu K (te)
* Theppitak Karoonboonyanan (th)
* Baris Cicek (tr)
* Maxim Dziumanenko (uk)
* Aron Xu (zh_CN)
* Chao-Hsiung Liao (zh_HK)
* Chao-Hsiung Liao (zh_TW)
================
Evince 2.27.90
================
Bug fixes:
* Let scroll wheel change page when in non-continuous best-fit
mode (#562257, Philip Langdale)
* Show print progress information when using GtkPrintOperation
* Don't show crash recovery dialog when requested file is the only
one to be recovered (#578894, Carlos Garcia Campos)
* Disable crash recovery when D-BUS is disabled (#578894, Carlos
Garcia Campos)
* Grab focus on view widget after setting metadata (#589300,
Nickolay V. Shmyrev)
* Fixes segmentation violation when print file format is empty
(#589226, Andreas Liebe)
* Use AM_V_GEN to make custom commands silent (#585355, Javier Jardón)
* Don't install schema files when building without gconf (Nickolay
V. Shmyrev)
Translation updates:
* Khaled Hosny (ar)
* Maruf Ovee (bn)
* Denis (br)
* Gil Forcada (ca)
* Carles Ferrando Garcia (ca@valencia)
* Marek Černocký (cs)
* Mario Blättermann (de)
* Seán de Búrca (ga)
* Antón Méixome (gl)
* Kjartan Maraas (nb)
* André Gondim (pt_BR)
* Daniel Nylander (sv)
* Theppitak Karoonboonyanan (th)
* Chao-Hsiung Liao (zh_HK)
* Chao-Hsiung Liao (zh_TW)
================
Evince 2.27.4
================
Bug fixes:
* Compute selections on button press for word/line selections
(#562059, Carlos Garcia Campos)
* Fix several even/odd multipage issues (#583429, Bartek Kostrzewa)
* Register thumbnailing for gzip/gzip dvi files (#588013, Emilio
Pozuelo Monfort)
* Get rid of shave with AM_SILENT_RULES automake option (#585355,
Javier Jardón)
* Make evince output pdf on supported printers (#585442, Johan Brannlund)
* Fix build on windows (Fridrich Strba)
* Determine data directory on runtime on windows (Fridrich Strba)
* Fix build without GConf (Nickolay V. Shmyrev)
* Fix several introspection build issues (#585971, Christian Persch)
Translation updates:
* Giannis Katsampirhs (el)
* Jonathan Ernst (fr)
* Daniel Nylander (sv)
* Maxim Dziumanenko (uk)
* Clytie Siddall (vi)
* Nguyễn Đình Trung (vi)
================
Evince 2.27.3
================
New Features and UI Improvements:
* Update the hildon port (Christian Persch)
* Complete the win32 port (#339172, Hib Eris)
* Allow activate the menubar in fullscreen mode (#504243, Carlos
Garcia Campos)
* Do not create popup window if the annot doesn't have a popup
(Carlos Garcia Campos)
* Add tests for printer settings (#583976, Bartek Kostrzewa)
* Remember and reuse "Save a Copy..." path (#485195, Carlos Garcia Campos)
* Support for cb7 using the p7zip commands in comics backend
(#565174, Juanjo Marín)
* Parse xml metadata to detect PDF/A documents (#582206, Davide Capodaglio)
Bug fixes:
* Several build fixes and improvements (Christian Persch)
* Fix page transitions in presentation mode (#583652, #581881,
Carlos Garcia Campos)
* Scale according to paper size before rendering for printing
(Carlos Garcia Campos)
* Fix multipage even/odd printing issues (#583429, #583388, Bartek
Kostrzewa)
* Gracefully work with FITB destinations and friends (#583276,
Matthias Drochner)
* Fix double to int conversion in thumbnails_get_dimensions
(#581524, Carlos Garcia Campos)
* Ohter bugs fixed: #584617, #585497
Translation updates:
* Runa Bhattacharjee (bn_IN)
* Mario Blättermann (de)
* Jorge González (es)
* Ivar Smolin (et)
* Kjartan Maraas (nb)
* Vladimir Melo (pt_BR)
* Dr.T.Vaasudevan (ta)
================
Evince 2.27.1
================
New Features and UI Improvements:
* Use GtkPrintOperation when printing for the backends that
support rendering into a cairo context (#557112, Carlos Garcia Campos)
* Recover previous session when running evince after a crash
(#578894, Carlos Garcia Campos)
* Preliminary annotations support (#315002, Carlos Garcia Campos,
Iñigo Martínez)
* Rename Print Setup menu entry as Page Setup for consistency with
the GTK+ dialog title (#581109, Nickolay V. Shmyrev)
* Added F3 as a find-next accelerator key (#579072, Michael J. Chudobiak)
* Support the free Gna! unrar tool in comics backend (#552074,
Juanjo Marín)
* Add evince-previewer as a separate applicaton that implements
the printing preview (Carlos Garcia Campos)
Bug fixes:
* Fix handling of the tmp folder (#582108, Juanjo Marín)
* Abort dnd operations originated in the same Evince window
(#582077, Carlos Garcia Campos)
* Disable bouncing during scrolling (#533534, Martin Pohlack)
* Fix build without gconftool-2 (#581441, Christian Persch)
* Fix documentation build (#579671, Nickolay V. Shmyrev)
* Fix error handling of broken documents (#580886, Nickolay V. Shmyrev)
* Fix several memory leaks in comics backend (#552074, Juanjo Marín)
* Escape URIs for display (#581064, Nickolay V. Shmyrev)
* Resync with libegg to remove deprecated GTK+ symbols (#580556,
Javier Jardón)
* Correct check for exit status of commands in comics backend
(#579656, Juanjo Marín)
* Add -no-undefined flag for Cygwin build (#580058, Yaakov Selkowitz)
* Use g_file_make_symbolic_link to create symlinks (#339172, Hib Eris)
* Delete the temp symlink created when opening a copy (Carlos
Garcia Campos)
* Don't redraw again when zoom is set more than once to the same
scale factor (Carlos Garcia Campos)
* Fix print preview of empty selection (#517735, Juanjo Marín)
* Don't prevent unmounting in case the initial cwd is on an
external device (#575436, Carlos Garcia Campos)
* Create and load the document based on the mime-type provided by
nautilus instead of using our own documents factory. (#533917,
Carlos Garcia Campos)
* Fix endianess issues in dvi and tiff backends (#578433, #509920,
Benjamin Berg)
* Fix memory leak in tiff backend (#578285, Nickolay V. Shmyrev)
* Fix path where accels file is saved (#577500, Nickolay
V. Shmyrev)
* Fix fading animations (Nickolay V. Shmyrev)
* Translate the categories in the nautilus properties tab
(#575085, Christian Persch)
* Other bugs fixed: #539972, #578436, #582543
Translation updates:
* Jorge Gonzalez (es)
* Manoj Kumar Giri (or)
* Ivar Smolin (et)
* Vladimir Melo (pt_BR)
* Matej Urban (sl)
* Khaled Hosny (ar)
* Miloš Popović (sr)
* Funda Wang (zh_CN)
* Amitakhya Phukan (as)
* Baris Cicek (tr)
================
Evince 2.26.0
================
Bug fixes:
* Fix compiler warning when building with -Wformat (#574168,
Tobias Mueller)
* Fix a crash with encrypted documents (Christian Persch)
Translation updates:
* F Wolff (af)
* Martin Picek (cs)
* Fotis Tsamis (el)
* Ivar Smolin (et)
* Suso Baleato (gl)
* Yaron Shahrabani (he)
* Gabor Kelemen (hu)
* Francesco Marletta (it)
* Shankar Prasad (kn)
* Gintautas Miliauskas (lt)
* Sangeeta Kumari (mai)
* Ani Peter (ml)
* Sandeep Shedmake (mr)
* Manoj Kumar Giri (or)
* Fabrício Godoy (pt_BR)
* Mișu Moldovan (ro)
* Yuriy Penkin (ru)
* I. Felix (ta)
* Krishna Babu K (te)
================
Evince 2.25.92
================
Bug fixes:
* Show the 'jump to page' window in the right GdkScreen (#560541,
Carlos Garcia Campos)
* Make our own thumbnail when the provided one doesn't have the
needed size (#323198, #307357, Christian Spurk, Carlos Garcia Campos)
* Reduce the restriction on the minimum size of thumbnails from 40
to 1 (#323198, Christian Spurk)
* Use GOption in thumbnailer (Carlos Garcia Campos)
* Fix saving a copy of encrypted PDF documents (#566791, Carlos
Garcia Campos)
* Don't use g_quark_from_static_string in a loadable module
(Christian Persch)
* Use g_object_unref() instead of gdk_pixbuf_unref() in impress
backend (#571707, Thomas H.P. Andersen)
Translation updates:
* Ihar Hrachyshka (be@latin)
* Alexander Shopov (bg)
* Gil Forcada (ca)
* Petr Kovar (cs)
* Christian Kirbach (de)
* David Lodge (en_GB)
* Juanje Ojeda Croissier (es)
* Iñaki Larrañaga Murgoitio (eu)
* Ilkka Tuohela (fi)
* Claude Paroz (fr)
* Sweta Kothari (gu)
* Yuval Tanny (he)
* Takeshi AIHANA (ja)
* Changwoo Ryu (ko)
* Kjartan Maraas (nb)
* Duarte Loreto (pt)
* Daniel Nylander (sv)
* Chao-Hsiung Liao (zh_HK)
* Chao-Hsiung Liao (zh_TW)
================
Evince 2.25.91
================
Bug fixes:
* Fix several memory leaks (Christian Persch)
* Fix errors handling and propagation (Christian Persch)
* Fix several translation strings in properties dialog (#571787,
Nickolay V. Shmyrev)
* Do not resize the window on reloading (#571051, #304249, Carlos
Garcia Campos)
* Experimental introspection support (#569083, Christian Persch)
* Use g_set_error_literal() (Christian Persch)
* Other firxes for win32 (#339172, Hib Eris)
* Make session manager code compile for win32 (#339172, Carlos
Garcia Campos)
* Update totem-screensaver from totem svn to make it build for
win32 (#339172, Hib Eris)
* Make use of GConf optional (#339172, Hib Eris, Carlos Garcia Campos)
* Fix i18n in libdocument (Christian Persch)
* Include gi18n-lib.h instead of gi18n.h in libs and backends
(Christian Persch)
Translation updates:
* Mikel González (ast)
* Ihar Hrachyshka (be@latin)
* Kenneth Nielsen (da)
* Dawa pemo (dz)
* Juanje Ojeda Croissier (es)
* Ivar Smolin (et)
* Iñaki Larrañaga Murgoitio (eu)
* Gabor Kelemen (hu)
* Takeshi AIHANA (ja)
* Shankar Prasad (kn)
* Arangel Angov (mk)
* Wouter Bolsterlee (nl)
* Tomasz Dominikowski (pl)
* Taylon (pt_BR)
* Горан Ракић (sr)
* Daniel Nylander (sv)
* Theppitak Karoonboonyanan (th)
* Clytie Siddall (vi)
* Gan Lu (zh_CN)
* Chao-Hsiung Liao (zh_HK)
* Chao-Hsiung Liao (zh_TW)
================
Evince 2.25.90
================
Bug fixes:
* Split API documentation into libdocument, libview and shell
(#568465, Carlos Garcia Campos)
* Fix symbols conflict in impress backend (#569998, Christian Persch)
* Add mnemonics to buttons in search bar (#569212, Carlos Garcia
Campos)
* Fix a crash when printing (#569328, Carlos Garcia Campos)
* Fix --version command line option (#562869, Christian Persch)
* Use versioned directory for backends (#569082, Christian Persch)
* Add EV_DEFINE_BOXED_TYPE and EV_DEFINE_INTERFACE macros
(#568228, Carlos Garcia Campos)
* Sync EggToolbarEditor with libegg (Nickolay V. Shmyrev)
* Respect directory umask and setgid when saving files (#568593,
Michael J. Chudobiak)
* Add libtool versioning, pkg-config files and single headers for
libdocument and libview (#568224, #568220, #568229, #568227,
Christian Persch)
* Remove G_OBJECT casts from g_signal_connect calls (#568386, Hiroyuki
Ikezoe)
* Install several missing header files of libdocument and libview
(#567787, #567790, Tomeu Vizoso)
* Other bugs fixed: #569120, #569231, #569327, #570077
Translation updates:
* Hendrik Richter (de)
* Ivar Smolin (et)
* Gabor Kelemen (hu)
* Changwoo Ryu (ko)
* Kjartan Maraas (nb)
* Daniel Nylander (sv)
================
Evince 2.25.5
================
Code changes:
* Move EvView specific code to a libevview library so that it can
be embbeded in other applications (#567751, Tomeu Vizoso, Carlos
Garcia Campos)
* Other improvements for embbeders (#567785, #567788, #567789,
Tomeu Vizoso)
Bug fixes:
* Fix a minor typo (Michal Vaner)
* Fix the API docs build (#568171, Christian Persch)
* Simplify drag data handling (#558084, Christian Persch)
* Several portability issues (#339172, Hib Eris)
* Fix mnemonic conflict (#567937, Carlos Garcia Campos)
* Other bugs fixed: #567910
Translation updates:
* Gil Forcada (ca)
* Hendrik Richter (de)
* Juanje Ojeda Croissier (es)
* Kjartan Maraas (nb)
* Gan Lu (zh_CN)
================
Evince 2.25.4
================
New Features and UI Improvements:
* Show progress information when loading/saving remote files
(#370958, Carlos Garcia Campos)
* Remember page setup options (#525185, #349102, Carlos Garcia Campos)
* Show a confirmation dialog when there are pending print jobs
while closing the main window (#480964, Carlos Garcia Campos)
* Show progress information when printing (#482770, Carlos Garcia Campos)
* Add document URI to properties page (#555376, Carlos Garcia Campos)
Bug fixes:
* Bump glib requirement to fix build with older versions
(Christian Spurk)
* Fix mime type handling (Hib Eris)
* Fix saving images to remote locations (Carlos Garcia Campos)
* Do not try to jump to the location of the find result for every
match, but only for the first one. It makes searching really
faster. (#564774, Michael Hunold)
* Fix zip mime-type in comics backend (Juanjo Marín)
* Fix several memory leaks (Carlos Garcia Campos)
Translation updates:
* Ihar Hrachyshka (be@latin)
* Juanje Ojeda Croissier (es)
* Yuval Tanny (he)
* Kjartan Maraas (nb)
* Taylon (pt_BR)
* Gan Lu (zh_CN)
================
Evince 2.25.2
================
New Features and UI Improvements:
* PDF Optional content (layers) support. (Carlos Garcia Campos)
* The password dialog has been reworked in order to make it more
hig compliant and consistent (#562496, Carlos Garcia Campos)
* Improved keyring support. Password dialog is not shown anymore
when the password is already in the keyring (Carlos Garcia Campos)
* Support for monitor and reload of remote documents
(#555399, Carlos Garcia Campos)
Bug fixes:
* Fix opening comic documents with a wrong but valid extension
(#562143, Carlos Garcia Campos)
* Fix a crash when searching (#558377, Carlos Garcia Campos)
* Fix several crashes when selecting text (#561393, Marek Kašík)
Translation updates:
* Jorge González (es)
* Nguyễn Đình Trung (vi)
================
Evince 2.25.1
================
New Features and UI Improvements:
* Use the message area instead of popup dialogs for any error and
warning messages (Carlos Garcia Campos)
Bug fixes:
* Adapt to the new single-include policy (#558064, Christian Persch)
* Fix page transition in presentation mode (#516749, Nickolay V. Shmyrev)
* Other bugs fixed: (#558066, Christian Persch)
Translation updates:
* Hendrik Richter (de)
================
Evince 2.24.1
================
Bug fixes:
* Disable toggle function of F5 when in presentation mode
(#556162, Dave Neary)
* Create a loading thumbnail for every different page size
(#556264, Carlos Garcia Campos)
* Fix several memory leaks (Carlos Garcia Campos)
* Do not show bad titles like 'Microsoft Word' in the window title
bar (#534684, Robin Sonefors and Nickolay V. Shmyrev)
* Fix mailto links which were considered as http uris (#555801,
Carlos Garcia Campos)
* Fix launching external applications (#554500, Carlos Garcia Campos)
* Other bugs fixed (#552382, #553369, #555134, Carlos Garcia Campos)
Translation updates:
* Ihar Hrachyshka (be@latin)
* Adrian Guniš (cs)
* Kenneth Nielsen (da)
* Ivar Smolin (et)
* Takeshi AIHANA (ja)
================
Evince 2.24.0
================
Bug fixes:
* Use GdkAppLaunchContext when available to launch external uris
(Carlos Garcia Campos)
* Use the message area to show errors when lauching external uris
instead of a popup window (Carlos Garcia Campos)
* Assume invalid uris are http uris (#552071, Carlos Garcia
Campos)
Translation updates:
* Usama Akkad (ar)
* Gil Forcada (ca)
* Kenneth Nielsen (da)
* Hendrik Richter (de)
* nikosCharonitakis (el)
* Ilkka Tuohela (fi)
* Sweta Kothari (gu)
* Gabor Kelemen (hu)
* Francesco Marletta (it)
* Shankar Prasad (kn)
* Changwoo Ryu (ko)
* Gintautas Miliauskas (lt)
* Arangel Angov (mk)
* Santhosh Thottingal (ml)
* Sandeep Shedmake (mr)
* wadim dziedzic (pl)
* Mișu Moldovan (ro)
* Alexandre Prokoudine (ru)
* Горан Ракић (sr)
* Dr.T.Vasudevan (ta)
* Baris Cicek (tr)
* Chao-Hsiung Liao (zh_HK)
* Chao-Hsiung Liao (zh_TW)
================
Evince 2.23.92
================
Bug fixes:
* Allow page scrolling with PageUp/PageDown keys when find bar is
active (#529833, Carlos Garcia Campos)
* Search in page labels is now case-insensitive (#550136, Michael Lee)
* Do not append the file extension twice when saving an image
(Carlos Garcia Campos)
* Correctly restore the cursor after showing the context menu
(Carlos Garcia Campos)
* Grab the mediakeys with a low priority so that it doesn't
interfere with other applications like a music player
(#547164, Eric Piel)
Translation updates:
* Alexander Shopov (bg)
* Petr Kovar (cs)
* David Lodge (en_GB)
* Jorge González (es)
* Ivar Smolin (et)
* Iñaki Larrañaga Murgoitio (eu)
* Robert-André Mauchin (fr)
* Ignacio Casal Quinteiro (gl)
* Kjartan Maraas (nb)
* Wouter Bolsterlee (nl)
* Leonardo Ferreira Fontenelle (pt_BR)
* Duarte Loreto (pt)
* Laurent Dhima (sq)
* Daniel Nylander (sv)
* Theppitak Karoonboonyanan (th)
* Clytie Siddall (vi)
* Funda Wang (zh_CN)
================
Evince 2.23.91
================
New Features and UI Improvements:
* Use EggSMClient from libegg instead of gnome-client and remove
libgnome and libgnomeui dependencies (Carlos Garcia Campos)
* Implement document_get_page_label in tiff backend (Carlos Garcia
Campos)
Bug fixes:
* Start up in the right workspace when resuming a previous session
(Carlos Garcia Campos)
* Fix metacity warnings shown in ~/.xsession-errors (Carlos
Garcia Campos)
* Fix a crash due to an idle function called with an already
destroyed object (#549163, Carlos Garcia Campos)
* Fix problems when opening or saving attachments (#548653, Carlos
Garcia Campos)
* Handle document orientation in tiff backend (#548444, Carlos
Garcia Campos)
* Fix a crash when adjustment page size is 0 (#547440, Carlos
Garcia Campos)
* Other bugs fixed: #548462
Translation updates:
* Runa Bhattacharjee (bn_IN)
* Gil Forcada (ca)
* Mario Blättermann (de)
* Dawa pemo (dz)
* Jorge González (es)
* Iñaki Larrañaga Murgoitio (eu)
* Ilkka Tuohela (fi)
* Takeshi AIHANA (ja)
* Shankar Prasad (kn)
* Gintautas Miliauskas (lt)
* Arangel Angov (mk)
* Manoj Kumar Giri (or)
* Vladimir Melo (pt_BR)
* Chao-Hsiung Liao (zh_HK)
================
Evince 2.23.6
================
Bug fixes:
* Correctly build desktop file (#544237, Götz Waschk)
Other changes:
* Cleanup #include statements. (Wouter Bolsterlee)
* The jobs system has been reworked in order to make it simpler
and easier to extend. (Carlos Garcia Campos)
* Add a profile mode available when debug is enabled (Carlos
Garcia Campos)
Translation updates:
* Djihed Afifi (ar)
* Adrian Guniš (cs)
* Pierre Lemaire (fr)
* Duarte Loreto (pt)
================
Evince 2.23.5
================
New Features and UI Improvements:
* Intercept window manager's fullscreen request in order to