-
Notifications
You must be signed in to change notification settings - Fork 1
/
NEWS
4614 lines (3736 loc) · 137 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 3.11.90
================
New features and improvements:
* Set the window title for empty windows to make sure it's exposed
to accessibility (#653748, Robert Roth, Carlos Garcia Campos)
* Make history buttons insensitive when searching (#724549, Anuj Khare)
* Rename Open a Copy action as View in New Window (#688762, Bogdan Petcu)
* Add close button to the search bar (#723789, Carlos Garcia Campos)
* Move the find toolbar button to the left of the toolbar,
together with the navigation actions (#723789, Carlos Garcia Campos)
* Add tooltips to toolbar menus (#700697, Ekaterina Gerasimova)
* Remove SMClient support (#677981, Christian Persch)
Bug fixes:
* Scroll to the search result when it's clicked in the find
sidebar even if the selection hasn't changed (#703570, Saurav Agarwalla)
* Correctly restart the search operation when the document is
reloaded (#703595, Saurav Agarwalla)
* Make print shortcut work when the sidebar is focused (#705846,
Anuj Khare)
* Fix potential read-after-free in gsettings use (#723737,
Christian Persch)
* Fix the margin of toolbar elements in RTL locales (#723110,
Yosef Or Boczko)
* Use g_debug instead of g_printerr for debug warnings in EvDaemon
(#723972, Giovanni Campagna)
Documentation:
* Remove the SyncTeX video that uses the old UI and the wrong
theme (#676496, Ekaterina Gerasimova)
Translation updates:
* Jorge Pérez Pérez (an)
* Khaled Hosny (ar)
* Nilamdyuti Goswami (as)
* Marek Černocký (cs)
* Daniel Mustieles (es)
* Timo Jyrinki (fi)
* GunChleoc (gd)
* Fran Dieguez (gl)
* Yosef Or Boczko (he)
* Baurzhan Muftakhidinov (kk)
* Shankar (kn)
* Aurimas Černius (lt)
* Kjartan Maraas (nb)
* Manoj Kumar Giri (or)
* Rafael Ferreira (pt_BR)
* Victor Ibragimov (tg)
* Theppitak Karoonboonyanan (th)
* Daniel Korostil (uk)
* Chao-Hsiung Liao (zh_HK)
* Chao-Hsiung Liao (zh_TW)
================
Evince 3.11.3
================
New features and improvements:
* Hide window titlebar when maximized (#696254, Robert Roth)
* Add AtkDocument implementation to EvViewAccessible (#719507,
Alejandro Piñeiro)
* Remove the margin of the toolbar buttons and center them
vertically (#709005, Yosef Or Boczko, Carlos Garcia Campos)
Bug fixes:
* Disable "Send To" action when there is no mail client
available (#701654, Plamena Manolova, Marek Kasik)
* Always consider the cursor page as the current page for
accessibility when caret navigation is enabled.
* Fix the page size reported in the properties dialog for some
document backends (#711093, Carlos Garcia Campos)
Documentation:
* Update toolbar page (#705211, Tiffany Ann Antopolski)
* Update information on working with bookmarks (#710107, Tiffany
Ann Antopolski)
Translation updates:
* Dimitris Spingos (Δημήτρης Σπίγγος) (el)
* Daniel Mustieles (es)
* Andika Triwidada (id)
* Rafael Ferreira (pt_BR)
* Shantha kumar (ta)
* Krishnababu Krothapalli (te)
* YunQiang Su (zh_CN)
================
Evince 3.11.1
================
New features and improvements:
* Do not open single page pdfs in dual mode by default (#547098,
raama)
* Activate current focused element on space/return key press
(#706244, Antia Puentes, Carlos Garcia Campos)
* Draw focus of links and form fields on mouse press (#706244,
Antia Puentes)
Bug fixes:
* Fix a crash in djvu backend due to a double free (#710977, José
Aliste)
* Fix annotation window focus change after creation (#668446,
Nelson Benitez Leon)
* Fix loop when iterating search results (#710778, Carlos Garcia
Campos)
* Fix content exposed to assistive technologies when document
changes in EvView (#709375, Joanmarie Diggs)
* Simplify debug code to parse env variables using
g_parse_debug_string() (Christian Persch)
Translation updates:
* Gil Forcada (ca)
* Gil Forcada (ca@valencia)
* Dimitris Spingos (Δημήτρης Σπίγγος) (el)
* Arash Mousavi (fa)
* Rūdolfs Mazurs (lv)
* Kjartan Maraas (nb)
* Hannie Dumoleyn (nl)
* Theppitak Karoonboonyanan (th)
* Gökhan Gurbetoğlu (tr)
================
Evince 3.10.0
================
Bug fixes:
* Fix a typo in EV_VIEW_PRESENTATION macro definition (Cosimo
Cecchi)
Translation updates:
* Khaled Hosny (ar)
* Nilamdyuti Goswami (as)
* Ihar Hrachyshka (be)
* Marek Černocký (cs)
* Kenneth Nielsen (da)
* Benjamin Steinwender (de)
* Ryan Lortie (eo)
* Daniel Mustieles (es)
* Mattias Põldaru (et)
* Iñaki Larrañaga Murgoitio (eu)
* Jiri Grönroos (fi)
* Bruno Brouard (fr)
* Seán de Búrca (ga)
* Fran Dieguez (gl)
* Yosef Or Boczko (he)
* Gabor Kelemen (hu)
* Andika Triwidada (id)
* Claudio Arseni (it)
* Jiro Matsuzawa (ja)
* Baurzhan Muftakhidinov (kk)
* Changwoo Ryu (ko)
* Aurimas Černius (lt)
* Rūdolfs Mazurs (lv)
* Hannie Dumoleyn (nl)
* A S Alam (pa)
* Piotr Drąg (pl)
* António Lima (pt)
* Enrico Nicoletto (pt_BR)
* Dmitriy S. Seregin (ru)
* Pavol Klačanský (sk)
* Matej Urbančič (sl)
* Miroslav Nikolić (sr@latin)
* Мирослав Николић (sr)
* Victor Ibragimov (tg)
* Daniel Korostil (uk)
* Chao-Hsiung Liao (zh_HK)
* Chao-Hsiung Liao (zh_TW)
================
Evince 3.9.90
================
Bug fixes:
* Unescape the output basename for print to file (#705848, Aakash
Goenka)
Translation updates:
* Khaled Hosny (ar)
* Gil Forcada (ca)
* Daniel Mustieles (es)
* Fran Dieguez (gl)
* Yaron Shahrabani (he)
* Gabor Kelemen (hu)
* Andika Triwidada (id)
* Aurimas Černius (lt)
* Rafael Ferreira (pt_BR)
* Matej Urbančič (sl)
* Theppitak Karoonboonyanan (th)
* Chao-Hsiung Liao (zh_HK)
* Chao-Hsiung Liao (zh_TW)
================
Evince 3.9.5
================
New features and improvements:
* Enable/disable the caret navigation with F7 (#702079, Antia
Puentes)
* Add 'Automatic' zoom mode to the zoom selector (Carlos Garcia
Campos)
* Use toggle menu items for zoom modes in zoom selector drop-down
menu to make it possible to know the zoom mode currently in use
(Carlos Garcia Campos)
* Implement text selections in EvViewAccessible (#704335, Antia
Puentes)
* More performance improvements in text selections (Carlos Garcia
Campos)
* Implement ATK interfaces to expose text attributes (#639932,
Antia Puentes)
Bug fixes:
* Fix a crash in ev_view_accessible_get_link() when the given
link index is out of range (#705155, Antia Puentes)
* Clear the cached data in EvViewAccessible when the current page
or document are updated (#704621, Antia Puentes)
* Update API doc files (Christian Persch)
* Fix several compile warnings (Christian Persch)
* Fix the index/offset of the links returned by EvViewAccessible
(#704616, Joanmarie Diggs)
* Cache also the URI and document info when loading from a GFile
(#704685, Alessandro Campagni)
* Fix selections starting/ending in page margins (Carlos Garcia
Campos)
* Fix the number of selections returned by EvViewAccessible
(#704396, Antia Puentes)
* Fix the caret offset returned by EvViewAccessible when caret
navigation is enabled (#704396, Antia Puentes)
* Update the page number and zoom level when page and zoom
selectors are unfocused (#704138, Carlos Garcia Campos)
* Use MiB instead of Mb in cache size gsettings documentation
(#704155, Carlos Garcia Campos)
* Disable history action while history is frozen (#704184, Carlos
Garcia Campos)
Translation updates:
* Marek Černocký (cs)
* Benjamin Steinwender (de)
* Daniel Mustieles (es)
* Kjartan Maraas (nb)
* Pavol Klačanský (sk)
* Victor Ibragimov (tg)
* YunQiang Su (zh_CN)
================
Evince 3.9.4
================
New features and improvements:
* Add a find sidebar to show search results with some more context
(#566827, Sergey Pushkin, José Aliste, Carlos Garcia Campos)
* Zoom selector has been moved to the right of the toolbar, close
to the other view options (#701696, Carlos Garcia Campos)
* Implement text selection in djvu backend (#448739, #703108,
Jonas Danielsson)
* Add 'cursor-moved' signal to notify when the caret cursor has
been moved (#702078, Antia Puentes)
* Keep the offset inside a line when moving the caret between
lines (#702075, Antia Puentes)
* Position the caret cursor at beginning/end of the line when
clicking outside the line (Carlos Garcia Campos)
* Implement text selection with the keyboard when caret navigation
is enabled (#702073, Antia Puentes)
* Notify about caret navigation errors using the error bell
(#702650, Antia Puentes)
* Set history button arrow icons according to locale's text
direction (#702585, Yosef Or Boczko)
* Several performance improvements when selecting text (Carlos
Garcia Campos)
* Emit the AtkText 'text-caret-moved' and 'text-selection-changed'
signals in EvViewAccessible (#701732, Antia Puentes)
Bug fixes:
* Fix selection of overlapping text (#703024, Jason Crain)
* Fix a crash when selecting more than one page (#702874, Carlos
Garcia Campos)
* Fix a crash due to an infinite loop resolving hyphenations in
find results sidebar (Carlos Garcia Campos)
* Don't draw the caret cursor when the view is not focused (Carlos
Garcia Campos)
* Do not show the caret cursor when there are active selections
(#702761, Carlos Garcia Campos)
* Clear the selection when cursor is moved (Carlos Garcia Campos)
Translation updates:
* Baurzhan Muftakhidinov (kk)
* Kjartan Maraas (nb)
* Trần Ngọc Quân (vi)
================
Evince 3.9.3
================
New features and improvements:
* Make the history behave more like a web browser (Christian
Persch)
* Add a fallback implementation of text selection for backends
that implement get_selection_region but not render_selection
(#669022, Jason Crain)
* Initial implementation of caret navigation added to libview
(#638905, #702076, #702068, Antia Puentes, Carlos Garcia Campos)
* Add a GSetting to set a custom page cache size (#642683, Jonas
Danielsson)
Bug fixes:
* Fix memory corruption in EvHistory implementation (#697397,
Christian Persch)
* Fix drag and drop of selected text after zooming with a
selection (#702406, Jason Crain)
* Fix a crash when searching with a negative current page
(#683172, Germán Poo-Caamaño)
* Fix race condition in sidebar-thumbnails (#701900, aakash)
* Use horzontal/vertical GtkBoxes instead of deprecated
GtkHBox/GtkVBox (Christian Persch)
* Fix runtime critical warning for links with NULL action
(Christian Persch)
* Fix -Wstrict-prototypes warnings (Christian Persch)
* Remove obsolete g_type_init calls (Christian Persch)
* Fix crash on corrupted PDF with no pages (#701302, Germán
Poo-Caamaño)
Translation updates:
* Marek Černocký (cs)
* Daniel Mustieles (es)
* Fran Dieguez (gl)
* OKANO Takayoshi (ja)
* Yasumichi Akahoshi (ja)
================
Evince 3.9.2
================
New features and improvements:
* Forward key events received in the toplevel window to the
focused widget (#676040, José Aliste)
* Use the document filename as output basename when printing to a
file (#700466, Jonas Danielsson)
* Enable GDK_SMOOTH_SCROLL events for EvView (#674098, Xiao-Long
Chen)
* Show the document URI in the error message when it fails to open
(#697900, Pietro Battiston)
* Allow to browse all files from Save Image dialog by adding more
filters to the file chooser (#523071, Jonas Danielsson)
* Added Shift+Enter shortcut to search backwards (#641797, Ondrej
Danko)
* Make shortcuts for find next/previous work even when the fin bar
is closed (#625225, Jonas Danielsson)
* Add support for file identifiers to DJVU backend (#619410, José
Aliste)
* Add support for page labels to DJVU backend (#619407, José
Aliste)
* Use ellipsis character in translatable strings (#695597, Gökçen
Eraslan)
Bug fixes:
* Make annotation windows always accept input focus (#668446, José
Aliste, Florian Echtler)
* Fix capitalization in a menu item (#699108, Adam Dingle)
* Fix typo in PostScript printer error message (#695597, Gökçen
Eraslan)
* Fix zoom and position of FitR link destinations (#695524, Simon
Budig)
* Update the search string when the document is reloaded (#694143,
aakash)
* Fix --find command line option to actually show the find bar
(#604327, Carlos Garcia Campos)
* Forward EvView key events to the focused form field, so that
it's possible to move between words with CTRL+Left/Right in text
form fields instead of rotating the view (#699630, Carlos Garcia
Campos)
* Do not update the history while searching to prevent the find
bar from begin closed unexpectedly (#697194, Carlos Garcia
Campos)
* Fix document to view coordinates transformation to take page
borders into account. This makes search results, form fields,
annotations and other items to be correctly placed on the view
(Carlos Garcia Campos)
Documentation:
* Update gtk-doc API files adding new symbols and removing the
ones that no longer exist (#697152, Cosimo Cecchi)
* Update the man page (Marek Kasik)
Translation updates:
* flemming christensen (da)
* Christian Kirbach (de)
* Bruce Cowan (en_GB)
* Daniel Mustieles (es)
* Yaron Shahrabani (he)
* Gabor Kelemen (hu)
* OKANO Takayoshi (ja)
* Kjartan Maraas (nb)
* Pavol Klačanský (sk)
* Matej Urbančič (sl)
* tuhaihe (zh_CN)
================
Evince 3.8.0
================
New features and improvements:
* Remove the NoDisplay=true from Evince desktop file (#634245,
Kalev Lember)
Bug fixes:
* Fix desktop file keyword translations (#696310, Kalev Lember)
Translation updates:
* flemming christensen (da)
* Dimitris Spingos (Δημήτρης Σπίγγος) (el)
* Mickael Albertus (fr)
* Gabor Kelemen (hu)
* Shankar Prasad (kn)
* Seong-ho Cho (ko)
* Ani Peter (ml)
* Sandeep Shedmake (mr)
* Wouter Bolsterlee (nl)
* Manoj Kumar Giri (or)
* Dr.T.Vasudevan (ta)
* Krishnababu Krothapalli (te)
* Daniel Korostil (uk)
================
Evince 3.7.92
================
New features and improvements:
* Use the page frame from the theme instead of our own (#691333,
Germán Poo-Caamaño)
* Improved the performance of search (#667569, Germán Poo-Caamaño)
* Add desktop file for print preview (#694482, William Jon McCann)
* Add API to allow changing the page of a presentation (#693749,
William Jon McCann)
Bug fixes:
* Disable view presentation if there is no document (#685591,
Lubos Koudelka)
* Fixed and improved several API doc comments (Germán Poo-Caamaño)
Translation updates:
* Khaled Hosny (ar)
* Nilamdyuti Goswami (as)
* Ihar Hrachyshka (be)
* Gil Forcada (ca)
* Gil Forcada (ca@valencia)
* Lucas Lommer (cs)
* Kenneth Nielsen (da)
* Mario Blättermann (de)
* Dimitris Spingos (Δημήτρης Σπίγγος) (el)
* Daniel Mustieles (es)
* Mattias Põldaru (et)
* Iñaki Larrañaga Murgoitio (eu)
* Arash Mousavi (fa)
* Jiri Grönroos (fi)
* Bruno Brouard (fr)
* Fran Dieguez (gl)
* Sweta Kothari (gu)
* Yaron Shahrabani (he)
* raj (hi)
* Gabor Kelemen (hu)
* Andika Triwidada (id)
* Claudio Arseni (it)
* Jiro Matsuzawa (ja)
* Baurzhan Muftakhidinov (kk)
* Changwoo Ryu (ko)
* Aurimas Černius (lt)
* Rūdolfs Mazurs (lv)
* Balasankar C (ml)
* Kjartan Maraas (nb)
* A S Alam (pa)
* Piotr Drąg (pl)
* Rafael Ferreira (pt_BR)
* Duarte Loreto (pt)
* Yuri Myasoedov (ru)
* Pavol Klačanský (sk)
* Matej Urbančič (sl)
* Miroslav Nikolić (sr@latin)
* Мирослав Николић (sr)
* Dr.T.Vasudevan (ta)
* Victor Ibragimov (tg)
* Theppitak Karoonboonyanan (th)
* Gheyret Kenji (ug)
* Nguyễn Thái Ngọc Duy (vi)
* Chao-Hsiung Liao (zh_HK)
* Chao-Hsiung Liao (zh_TW)
================
Evince 3.7.90
================
New features and improvements:
* Add support for activation actions of form fields (José Aliste)
* Add navigation history buttons to the toolbar (#169903, Carlos
Garcia Campos)
* Show accelerators in the view menu (#692960, Juanjo Marín)
Bug fixes:
* Show as much text as possible for index tree (#676593, Germán
Poo-Caamaño)
* Unescape location URI in properties dialog (#693794, Germán
Poo-Caamaño)
* Fix rendering of editable choice form fields (José Aliste)
* Fix rendering of the first visible page while resizing (José
Aliste)
* Use initial rotation to render pages in DJVU backend (#667266,
José Aliste)
Translation updates:
* Daniel Martinez (an)
* Mario Blättermann (de)
* Daniel Mustieles (es)
* Fran Dieguez (gl)
* Aurimas Černius (lt)
* Anish A (ml)
* A S Alam (pa)
* Piotr Drąg (pl)
* Pavol Klačanský (sk)
* Miroslav Nikolić (sr@latin)
* Мирослав Николић (sr)
* Gheyret Kenji (ug)
* Chao-Hsiung Liao (zh_HK)
* Chao-Hsiung Liao (zh_TW)
================
Evince 3.7.5
================
New features and improvements:
* Use DPI of pages to compute scaling factor in DJVU documents
(#580891, José Aliste)
* Show accelerators in gear menu (#692960, Carlos Garcia Campos)
* Show the gear menu with F10 (#692909, Carlos Garcia Campos)
* Improve the scrolling performance (#692988, Cosimo Cecchi)
* Add a lot of missing introspection annotations to libview and
libdocument (#691354, Cosimo Cecchi)
* Make document links accessible with Orca by implementing the
AtkHypertext interface (#639403, Carlos Garcia Campos)
Bug fixes:
* Fix a crash when failed to connect to D-BUS daemon (#691672,
Brennan Shacklett)
* Fix the font color of annotation popup windows (#677471, Carlos
Garcia Campos)
* Move x11 dependency to xsmp support (#692591, Quentin Glidic)
* Add missing include to libdocument main public header (#692778,
William Jon McCann)
* Make introspection build against the internal libevdocument
(#692136, Alban Browaeys)
* Several fixes in gtk-doc comments (#691354, Cosimo Cecchi)
Translation updates:
* Khaled Hosny (ar)
* Iñaki Larrañaga Murgoitio (eu)
* Fran Dieguez (gl)
* Kjartan Maraas (nb)
* Wouter Bolsterlee (nl)
* Piotr Drąg (pl)
* Matej Urbančič (sl)
* Miroslav Nikolić (sr@latin)
* Мирослав Николић (sr)
* Theppitak Karoonboonyanan (th)
* Gheyret Kenji (ug)
================
Evince 3.7.4
================
The UI has been re-designed to follow the GNOME 3 style:
* The main menu has been removed.
* A new toolbar has been added with a gear menu and view menu
containing the previous main menu items.
* The zoom control has now an entry that always shows the current
zoom factor and allows to enter custom zoom factors in addition
to the predefined ones.
* In the page selector, the entry and the total pages label are
linked to look like the same widget.
* The find bar has also been re-designed and moved to the top of
the main view.
* The toolbar in fullscreen mode is now automatically hidden.
* The view and thumbnail frames can now be styled with CSS.
New features and improvements:
* The font properties dialog now shows a message to inform whether
any of the non-embedded font is one of the 14 standard fonts
(#527222, Alban Crequy)
* Migrate from libgnome-keyring to libsecret (#679855, Stef
Walter)
* Add a new layout mode that automatically determines if dual page
mode should be used when the window is large enough. It's not
used by Evince yet, but it's available to libview users
(#689468, William Jon McCann)
* Make EvLink:link-action and EvLinkAction:dest object properties
instead of pointers to be properly refcounted (#691214, William
Jon McCann)
* A new 'Automatic' zoom mode has been added to libview. It's not
used by Evince yet, but it's available to libview users
(#689468, William Jon McCann)
* Best fit mode has been renamed to Fit Page (#689468, William Jon
McCann)
* Make can-zoom-in and can-zoom-out properties of EvView (#690510,
William Jon McCann)
* Move the limits on zoom handling to libview (#690510, William
Jon McCann)
* Set a default value of 50MB for the pixbuf cache in EvView
(#689674, William Jon McCann)
* Add keywords to the desktop file to make gnome-shell search more
pleasant and useful (#687604, Matthias Clasen)
Bug fixes:
* Fix a11y support by not using AtkFactory to create the
EvViewAccessible anymore (#685828, Carlos Garcia Campos, Daniel
Garcia )
* Fix empty pages in DJVU document to be white instead of black
(#669017, José Aliste)
* Use new libtool syntax in configure (Javier Jardón)
* Remove obsolete autoconf macros (Javier Jardón)
* Fix the error message shown when postscript is not supported by
the selected printer (#683528, José Aliste)
* Fix the computation of the scale factor in fit page mode to make
sure scrollbars are never shown (#665856, José Aliste)
Documentation:
* Added documentation for saving Current Settings as Default in
the FAQ section of help pages (#689238, Sindhu S)
Translation updates:
* Khaled Hosny (ar)
* Nilamdyuti Goswami (as)
* Krasimir Chonov (bg)
* Dimitris Spingos (Δημήτρης Σπίγγος) (el)
* Daniel Mustieles (es)
* Mattias Põldaru (et)
* Fran Dieguez (gl)
* Yaron Shahrabani (he)
* Gabor Kelemen (hu)
* Baurzhan Muftakhidinov (kk)
* Aurimas Černius (lt)
* Kjartan Maraas (nb)
* Piotr Drąg (pl)
* Florencio Neves (pt_BR)
* Aleksej Kabanov (ru)
* Matej Urbančič (sl)
================
Evince 3.7.1
================
New features and improvements:
* Add application menu (#674937, Christian Persch)
* Set maximum width for page numbers in index to improve the
visibility of the table of contents (#660113, Germán
Poo-Caamaño)
* Use GtkOverlay to show the loading message (Carlos Garcia
Campos)
* Use custom cell renderers for the thumbnails icon view to fix
the huge selection rectangle around thumbnails (#646055, Carlos
Garcia Campos)
* Hold the application while printing is in progress (Christian
Persch)
* Add 2DGraphics category to the desktop file (#686062, Alexandre
Rostovtsev)
Bug fixes:
* Show always the offline help using Yelp (#682423, Robert Ancell)
* Remove xi:includes referencing obsolete files in documentation
(#686060, Alexandre Rostovtsev)
* Use custom CSS for EvView to make sure the background is not
white as Adwaita currently does, because it breaks the page
frames (Carlos Garcia Campos)
Translation updates:
* Daniel Martinez (an)
* Xavier Roijals (ca)
* Daniel Mustieles (es)
* Khoem Sokhem (km)
* Wouter Bolsterlee (nl)
* Pavol Klačanský (sk)
* Re. (uk)
================
Evince 3.6.0
================
Translation updates:
* Khaled Hosny (ar)
* Krasimir Chonov (bg)
* Runa Bhattacharjee (bn_IN)
* Gil Forcada (ca)
* Gil Forcada (ca@valencia)
* Tom Tryfonidis (el)
* Chris Leonard (en_GB)
* Mattias Põldaru (et)
* Fran Dieguez (gl)
* chandankumar (hi)
* Claudio Arseni (it)
* Takayuki KUSANO (ja)
* Shankar Prasad (kn)
* Rūdolfs Mazurs (lv)
* Anish A (ml)
* A S Alam (pa)
* Yuri Myasoedov (ru)
* Andrej Žnidaršič (sl)
* Dr.T.Vasudevan (ta)
* Praveen Illa (te)
* YunQiang Su (zh_CN)
================
Evince 3.5.92
================
New features and improvements:
* Add ev_view_find_started() to replace ev_view_find_changed()
that is not introspectable (#682875, Gonzalo Odiard)
* Add ev_job_links_get_model() to make the links model available
to introspection (#682882, Gonzalo Odiard)
Bug fixes:
* Fix a crash due to zero division (#681546, Petr Pisar)
* Fix compiler warnings due to GDK_SCROLL_SMOOTH not handled in
switch (Christian Persch)
Translation updates:
* Nilamdyuti Goswami (as)
* Ihar Hrachyshka (be)
* Marek Černocký (cs)
* flemming christensen (da)
* Kenneth Nielsen (da)
* Christian Kirbach (de)
* Mario Blättermann (de)
* Tom Tryfonidis (el)
* Chris Leonard (en_GB)
* Daniel Mustieles (es)
* Arash Mousavi (fa)
* Jiri Grönroos (fi)
* Bruno Brouard (fr)
* Mickael Albertus (fr)
* Fran Dieguez (gl)
* Sweta Kothari (gu)
* Yaron Shahrabani (he)
* rajesh (hi)
* Gabor Kelemen (hu)
* Andika Triwidada (id)
* Yasumichi Akahoshi (ja)
* Changwoo Ryu (ko)
* Seong-ho Cho (ko)
* Aurimas Černius (lt)
* Rūdolfs Mazurs (lv)
* Sandeep Shedmake (mr)
* A S Alam (pa)
* Piotr Drąg (pl)
* Fábio Nogueira (pt_BR)
* Duarte Loreto (pt)
* Matej Urbančič (sl)
* Miroslav Nikolić (sr@latin)
* Мирослав Николић (sr)
* Dr.T.Vasudevan (ta)
* Theppitak Karoonboonyanan (th)
* Muhammet Kara (tr)
* Wylmer Wang (zh_CN)
* Chao-Hsiung Liao (zh_HK)
* Chao-Hsiung Liao (zh_TW)
================
Evince 3.5.90
================
Bug fixes:
* Disconnect all model signals for EvView before unreffing the
EvDocumentModel (#680023, Carlos Garcia Campos)
Documentation:
* Use new documentation infrastructure (#681606, Javier Jardón)
Translation updates:
* Tom Tryfonidis (el)
* Daniel Mustieles (es)
* Leandro Regueiro (gl)
* Takayuki KUSANO (ja)
* Sandeep Shedmake (mr)
* Aleksey Kabanov (ru)
================
Evince 3.5.5
================
New features and improvements:
* Use GtkApplication to inhibit the screensaver (Christian Persch)
* Port EvApplication to GtkApplication and make EvWindow a
GtkApplicationWindow (Christian Persch)
* Port evince daemon to GApplication (Christian Persch)
* Use gdbus-codegen for D-Bus interfaces (Christian Persch, Carlos
Garcia Campos)
Bug fixes:
* Fix sent to when filename contains spaces (#681144, Carlos
Garcia Campos)
* Apply default settings also for documents opened from /tmp
(#680145, Carlos Garcia Campos)
* Replace GDK_THREADS_ENTER/LEAVE with gdk_threads_enter/leave
(#681215, Matthias Clasen)
Translation updates:
* Dimitris Spingos (Δημήτρης Σπίγγος) (el)
* Fran Dieguez (gl)
* Sweta Kothari (gu)
* Andika Triwidada (id)
* OKANO Takayoshi (ja)
* Baurzhan Muftakhidinov (kk)
* Matej Urbančič (sl)
* Miroslav Nikolić (sr@latin)
* Мирослав Николић (sr)
* Praveen Illa (te)
================
Evince 3.5.4
================
New features and improvements:
* Store and restore current folder when opening or saving file
(Christian Persch)
* Fix and modernize GObject introspection generation (#678971,
Robert Ancell, Giovanni Campagna)
Bug fixes:
* Fix saving attachments when the name contains a path (#679354,
Justin Willmert)
Documentation:
* Add missing introspection annotations to ev_document_get_page
and ev_document_get_page_size (#679264, Ferdinand Schwenk)
Translation updates:
* Nilamdyuti Goswami (as)
* Ihar Hrachyshka (be)
* Krasimir Chonov (bg)
* Daniel Mustieles (es)
* Yaron Shahrabani (he)
* Kjartan Maraas (nb)
* Nguyễn Thái Ngọc Duy (vi)
* Chao-Hsiung Liao (zh_HK)
* Chao-Hsiung Liao (zh_TW)
================
Evince 3.5.3
================
New features and improvements:
* Add find options to the find bar. Find options available depend
on every backend. (Carlos Garcia Campos)
* Use GResource for data files (Christian Persch)
* Add new API to EvAnnotation that uses GdkRGBA (#677983,
Christian Persch)
* Use G_PARAM_STATIC_STRINGS flag for properties (Christian Persch)
Bug fixes:
* Fix the build with poppler versions not including the new find
options API (#677867, Cosimo Cecchi)
* Fix crash due to an invalid free (#678563, José Aliste,
Christian Persch)
Documentation:
* Add missing EvAnnotation API to sections.txt (Christian Persch)
Translation updates:
* Khaled Hosny (ar)
* Nilamdyuti Goswami (as)
* Tom Tryfonidis (el)
* Daniel Mustieles (es)
* Fran Dieguez (gl)
* Kjartan Maraas (nb)
* Yuri Kozlov (ru)
* Matej Urbančič (sl)
================
Evince 3.5.2
================
New features and improvements:
* Add API to load EvDocument from GInputStream and GFile. Only
implemented by the PDF backend for now (#654832, Christian Persch)
* Rework backends management and document factory to make it easy
to add a module cache (Christian Persch)
* Improve error handling in EvDocumentFactory (Christian Persch)
* Include substitute font name and file in font list (Adrian
Johnson)
* Use primary-toolbar style class in evince-previewer (#675310,
Volker Sobek)
* Copy document metadata to the new file when saving a copy
(#674629, Carlos Garcia Campos)
Bug fixes:
* Fix memory leak when document is encrypted (Christian Persch)
* Do not remove unexistent files from recent menu (#674188, Carlos
Garcia Campos)
* Fix underlinking with >=glib-2.32 detected by gold linker
(Justin Lecher)
* Removed deprecated use of GTK_POLICY_AUTOMATIC (Daniel
Mustieles)
* Fix a crash when running with Broadway GDK backend (#673664,
justin)
* Remove remnants of Hildon support from configure (#673679,
Adrian Bunk)
* Remove old workaround inconfigure to build with deprecated
symbols (#673680, Adrian Bunk)
Documentation:
* Add Get Involved section and legal information to the
documentation (Tiffany Antopolski)
Translation updates:
* Daniel Martinez (an)
* Khaled Hosny (ar)
* Krasimir Chonov (bg)
* Gil Forcada (ca)
* Gil Forcada (ca@valencia)
* Marek Černocký (cs)
* Mario Blättermann (de)
* Daniel Mustieles (es)
* Alain Lojewski (fr)
* Bruno Brouard (fr)
* Fran Dieguez (gl)
* Yaron Shahrabani (he)
* Gabor Kelemen (hu)
* Andika Triwidada (id)
* Claudio Arseni (it)
* Takayuki KUSANO (ja)
* Rūdolfs Mazurs (lv)
* Kjartan Maraas (nb)
* Piotr Drąg (pl)