-
Notifications
You must be signed in to change notification settings - Fork 2
/
NEWS
5274 lines (4302 loc) · 157 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.17.4
================
New features and improvements:
* The sidebar tab to add new annotations has been removed, and a
new annotations toolbar has been added making it easier to
discover and more convenient to annotate documents (#649045,
Carlos Garcia Campos)
Translation updates:
* Benjamin Steinwender (de)
* Daniel Mustieles (es)
* Yosef Or Boczko (he)
* Balázs Úr (hu)
* Pedro Albuquerque (pt)
* Stas Solovey (ru)
* Dušan Kazik (sk)
* Matej Urbančič (sl)
* Victor Ibragimov (tg)
================
Evince 3.17.3
================
New features and improvements:
* Add initial support for adding highlight annotations (#583377,
Giselle Machado, Carlos Garcia Campos)
* Add support for squiggly hightlight annotations too (#750612,
Philipp Reinkemeier)
* Add support for moving text annotations (#649043, Philipp
Reinkemeier)
* Force text annotations to have a fixed size 24x24 (#685334,
Philipp Reinkemeier)
* Handle GTK_SCROLL_START/GTK_SCROLL_END also in fit-to-page mode
(#737996, Carlos Garcia Campos)
Bug fixes:
* Do not loose annotations properties when changing the subtype of
a highlight annotation (#750548, Philipp Reinkemeier)
* Only try to move the focus to different page when the current
page has a focused element to prevent the view from jumping to
the first/last page when TAB is pressed and there aren't
focusable elements in the document (#741979, Carlos Garcia
Campos)
Translation updates:
* Benjamin Steinwender (de)
* Daniel Mustieles (es)
* Daniel Șerbănescu (ro)
* Muhammet Kara (tr)
* Chao-Hsiung Liao (zh_TW)
================
Evince 3.17.2
================
New features and improvements:
* Add initial support for PDF multimedia using GStreamer (#573748,
Carlos Garcia Campos)
Bug fixes:
* Add accessible relations between the labels in properties dialog
(#749127, Joanmarie Diggs)
Translation updates:
* David (ca)
* Daniel Mustieles (es)
* Åka Sikrom (nb)
* Cédric Valmary (Tot en òc) (oc)
* Antonio Fernandes C. Neto (pt_BR)
* Dušan Kazik (sk)
* Matej Urbančič (sl)
* Victor Ibragimov (tg)
* YunQiang Su (zh_CN)
================
Evince 3.17.1
================
New features and improvements:
* Provide a symbolic variant of the app icon (#746844, Jakub Steiner)
* Add search support to browser plugin (Carlos Garcia Campos)
* Create popup windows for all markup annotation that can have a
popup associated (#733603, Philipp Reinkemeier)
* Add shortcuts for Continuous and Dual modes (#670964, boisjaune)
* Remove custom search bar implementation and use GtkSearchBar
instead (Carlos Garcia Campos)
Bug fixes:
* Never save n-copies in the persistent print-settings file
(#748549, José Aliste)
* Fix the background color of annotation popup windows (#732211,
Giselle Machado)
Translation updates:
* Daniel (an)
* Khaled Hosny (ar)
* David (ca)
* Marek Černocký (cs)
* Tom Tryfonidis (el)
* Daniel Puentes (eo)
* Daniel Mustieles (es)
* Yosef Or Boczko (he)
* Gabor Kelemen (hu)
* Sveinn í Felli (is)
* Stas Solovey (ru)
================
Evince 3.16.0
================
Translation updates:
* Benjamin Steinwender (de)
* Andika Triwidada (id)
* Claudio Arseni (it)
* Jiro Matsuzawa (ja)
================
Evince 3.15.92
================
Bug fixes:
* Enable/disable page navigation actions based on current page in
previewer (#745840, Robert Roth)
* Don't hide the titlebar when the window is maximized (without
CSD) (#744601, Simon Steinbeiss)
Translation updates:
* Alexander Shopov (bg)
* Samir Ribić (bs)
* Kenneth Nielsen (da)
* Benjamin Steinwender (de)
* Tom Tryfonidis (el)
* Jiri Grönroos (fi)
* Guillaume Bernard (fr)
* Fran Dieguez (gl)
* Gabor Kelemen (hu)
* Baurzhan Muftakhidinov (kk)
* Changwoo Ryu (ko)
* Aurimas Černius (lt)
* Rūdolfs Mazurs (lv)
* A S Alam (pa)
* Paweł Żołnowski (pl)
* Miroslav Nikolić (sr@latin)
* Мирослав Николић (sr)
* Daniel Nylander (sv)
* Victor Ibragimov (tg)
* Daniel Korostil (uk)
* Trần Ngọc Quân (vi)
* Chao-Hsiung Liao (zh_TW)
================
Evince 3.15.90
================
New features and improvements:
* Make Ctrl+mouse wheel zoom pointer-centered instead of
window-centered (#731669, Frédéric Moenne-loccoz)
* Add = and <Ctrl>= keybindings for zooming in (#738625, Lars
Uebernickel)
Bug fixes:
* Fix printing of landscape document and properly fix printing
documents with a manual scale and autocenter (#734788, Leo Wolf,
Carlos Garcia Campos)
* Disable send to action when nautilus-sendto is not found
(#743956, Cameron Norman)
* Fix a crash in recent-view when loading password protected
documents (#744049, Marek Kasik)
Documentation:
* Add documentation for page scaling options (#740230, Ekaterina
Gerasimova)
* Improve documentation about printing (Ekaterina Gerasimova)
* Update documentation for removing annotations (#737435, David
King)
* Add documentation for search filter options (#738025, Ekaterina
Gerasimova)
Translation updates:
* F Wolff (af)
* Daniel Martinez (an)
* Marek Černocký (cs)
* Christian Kirbach (de)
* Efstathios Iosifidis (el)
* Kristjan SCHMIDT (eo)
* Daniel Mustieles (es)
* Iñaki Larrañaga Murgoitio (eu)
* Yosef Or Boczko (he)
* Åka Sikrom (nb)
* Reinout van Schouwen (nl)
* Rafael Ferreira (pt_BR)
* Stas Solovey (ru)
* Dušan Kazik (sk)
* Matej Urbančič (sl)
* Anders Jonsson (sv)
* Muhammet Kara (tr)
================
Evince 3.15.4
================
New features and improvements:
* Add document size to the properties dialog (#741057, Tobias
Westergaard Kjeldsen)
* Add support for bsdtar command in comics backend (#742721, Balló
György)
* Improve the the sidebar UI (#739836, Trinh Anh Ngoc)
* Add support for TextMarkup annotation in read-only mode for now
(#583377, Giselle Reis)
* Use headerbar and improve spacing and borders in properties
dialog (#739836, Trinh Anh Ngoc)
Bug fixes:
* Fix properties dialog shortcut (#739116, Boris Egorov)
* Bring back Open in new window action to the context menu
(#739046, Boris Egorov)
* Do not save n-copies when saving printing settings (#696203,
José Aliste)
* Use correct maximum size for thumbnail images in
evince-thumbnailer (#740877, Sebastian Keller)
* Fix a typo in configure.ac that made configure fail with
ligbnome-desktop (#733721, Marek Kasik)
* Correctly scroll to the search result selected by user when not
in continuous mode (#730252, Marek Kasik)
* Fix memory leak when adding new text annotations (Carlos Garcia
Campos)
* Fix border-radius CSS property of thumbnails (#739836, Trinh Anh
Ngoc)
* Fix quoting issues in configure.ac (#739226, Alexander Tsoy)
* Fix runtime critical warning when starting in fullscreen mode
(#737864, Carlos Garcia Campos)
* Handle TIFF files reporting a 0 resolution (#646414, Gabor
Kelemen)
* Disable toggle-find action for documents not supporting find
(#738262, Carlos Garcia Campos)
Translation updates:
* Daniel Martinez (an)
* Marek Černocký (cs)
* Bernd Homuth (de)
* Wolfgang Stoeggl (de)
* Tom Tryfonidis (el)
* Daniel Mustieles (es)
* Iñaki Larrañaga Murgoitio (eu)
* Jiri Grönroos (fi)
* Yosef Or Boczko (he)
* Balázs Úr (hu)
* Gabor Kelemen (hu)
* Andika Triwidada (id)
* Baurzhan Muftakhidinov (kk)
* Aurimas Černius (lt)
* Kjartan Maraas (nb)
* Rafael Ferreira (pt_BR)
* Stas Solovey (ru)
* Muhammet Kara (tr)
* Trần Ngọc Quân (vi)
================
Evince 3.14.1
================
Bug fixes:
* Use the new support for RTL icons in GtkIconTheme (#737211,
Yosef Or Boczko)
* Fix a crash in accessibility when opening a document with no
pages (#731046, Joanmarie Diggs)
* Fix a crash when a new document is added to the window (#737365,
Carlos Garcia Campos)
* Fix a crash when opening the context menu in a non PDF
document. (#737197, José Aliste)
Translation updates:
* F Wolff (af)
* Khaled Hosny (ar)
* Saibal Ray (bn_IN)
* Efstathios Iosifidis (el)
* Arash Mousavi (fa)
* Fabio Tomat (fur)
* Sweta Kothari (gu)
* Claudio Arseni (it)
* Baurzhan Muftakhidinov (kk)
* Changwoo Ryu (ko)
* Rūdolfs Mazurs (lv)
* Hannie Dumoleyn (nl)
* Pedro Albuquerque (pt)
* Krishnababu Krothapalli (te)
* Cheng-Chia Tseng (zh_TW)
================
Evince 3.14.0
================
Translation updates:
* Kenneth Nielsen (da)
* Tom Tryfonidis (el)
* Michael Scherer (fr)
* GunChleoc (gd)
* rajesh (hi)
* Gabor Kelemen (hu)
* Andika Triwidada (id)
* Jiro Matsuzawa (ja)
* Shankar Prasad (kn)
* Paweł Żołnowski (pl)
* Miroslav Nikolić (sr@latin)
* Мирослав Николић (sr)
* Daniel Korostil (uk)
* Yunqiang Su (zh_CN)
================
Evince 3.13.92
================
Bug fixes:
* Fix emission of EvPageCache::page-cached signal (José Aliste)
* Use embedded page setup in the print dialog of the browser
plugin (Carlos Garcia Campos)
Translation updates:
* Nilamdyuti Goswami (as)
* Ivaylo Valkov (bg)
* sray (bn_IN)
* Gil Forcada (ca)
* Gil Forcada (ca@valencia)
* Marek Černocký (cs)
* Christian Kirbach (de)
* Tom Tryfonidis (el)
* Daniel Mustieles (es)
* Jiri Grönroos (fi)
* Guillaume Bernard (fr)
* Fran Dieguez (gl)
* Balázs Úr (hu)
* Andika Triwidada (id)
* Shankar Prasad (kn)
* Changwoo Ryu (ko)
* Aurimas Černius (lt)
* Sandeep Shedmake (mr)
* Kjartan Maraas (nb)
* A S Alam (pa)
* Enrico Nicoletto (pt_BR)
* Yuri Myasoedov (ru)
* Dušan Kazik (sk)
* Matej Urbančič (sl)
* Anders Jonsson (sv)
* Shantha kumar (ta)
* Muhammet Kara (tr)
================
Evince 3.13.91
================
New features and improvements:
* Added a allow-links-change-zoom GSetting to be able to not allow
links to change the zoom mode or level (#729249, Eduard Beutel)
* Set accessible name for File and View toolbar buttons (#734912,
Alejandro Piñeiro)
* Add a separator after New Window entry in app menu (Michael
Catanzaro)
* Remove multi-screen support, since it's currently unsupported by
GDK/GTK+ (#701883, Giselle Machado)
Bug fixes:
* Fix a memory leak in the pixbuf cache when reloading a page while
the render job is running (#735758, Giselle Reis)
* Initialize EvPageAccessible children once the page has been
cached (#733747, Alejandro Piñeiro)
* Fix the size of the annotation window icons (#735110, Giselle
Reis)
* Don't use deprecated gtk_button_new_from_stock (#735562, José
Aliste)
* Fix runtime critical warning (#735561, José Aliste)
* Build fix in C++11 mode (#735466, Ting-Wei Lan)
Translation updates:
* Nilamdyuti Goswami (as)
* Marek Černocký (cs)
* Tom Tryfonidis (el)
* Daniel Mustieles (es)
* Lasse Liehu (fi)
* Claude Paroz (fr)
* Fran Dieguez (gl)
* "Last-Translator: \n"(gu)
* Yosef Or Boczko (he)
* Andika Triwidada (id)
* Jiro Matsuzawa (ja)
* Aurimas Černius (lt)
* Kjartan Maraas (nb)
* Enrico Nicoletto (pt_BR)
* Daniel Korostil (uk)
* Chao-Hsiung Liao (zh_HK)
* Chao-Hsiung Liao (zh_TW)
================
Evince 3.13.90
================
New features and improvements:
* Add support for removing annotations (#649044, José Aliste,
Germán Poo-Caamaño, Giselle Machado, Carlos Garcia Campos)
* Add pan gesture to switch pages in non-continuous mode (Carlos
Garnacho)
* Add pinch/zoom gesture to handle document zooming (Carlos
Garnacho)
* Add initial implementation of a browser plugin (Carlos Garcia
Campos)
* Show the filename as a subtitle of the headerbar (José Aliste)
* Add recent view shown when evince is opened without a document
to replace the recetn menu list (#633501, Germán Poo-Caamaño,
Carlos Garcia Campos)
* Use a GtkPopover for the zoom selector menu (Carlos Garcia Campos)
* Move Next-Page and Previous-Page buttons from the heqader bar to
the view menu (#732289, José Aliste)
* HiDPI support (#723431, Owen W. Taylor, Germán Poo-Caamaño,
Carlos Garcia Campos)
* Use open-menu-symbolic for the gear menu (Daniel Mustieles)
* Improve efficiency of methods to get start and end indices of a
EvLinkAccessible (#732340, Joanmarie Diggs)
* Make <Ctrl>Home/End scroll to the start/end of the document
(#724273, Antia Puentes)
* Expose an accessible name for form field push buttons (#733919,
Joanmarie Diggs)
Bug fixes:
* Fix centering of documents when printing with a manual scale
(#734788, Carlos Garcia Campos)
* Bring back page borders with recent GTK+ (Carlos Garcia Campos)
* Emit accessible focused-changed signals for form fields
(#733662, Joanmarie Diggs)
* Emit accessible state-changed signals for form fields (#733748,
Joanmarie Diggs)
* Make annotation internal names unique (#649044, Giselle Machado)
* Fix several memory leaks (Carlos Garcia Campos)
Translation updates:
* Khaled Hosny (ar)
* Nilamdyuti Goswami (as)
* Benjamin Steinwender (de)
* Efstathios Iosifidis (el)
* Tom Tryfonidis (el)
* Daniel Mustieles (es)
* Iñaki Larrañaga Murgoitio (eu)
* Sami Jaktholm (fi)
* Michael Scherer (fr)
* GunChleoc (gd)
* Yosef Or Boczko (he)
* Balázs Úr (hu)
* Andika Triwidada (id)
* Jiro Matsuzawa (ja)
* Aurimas Černius (lt)
* Åka Sikrom (nb)
* Enrico Nicoletto (pt_BR)
* Yuri Myasoedov (ru)
* Muhammet Kara (tr)
================
Evince 3.13.3.1
================
Bug fixes:
* Fix the MIME type list of desktop files (#732216, Carlos Garcia Campos)
================
Evince 3.13.3
================
New features and improvements:
* Cycle through form fields with tab button (#503706, Andrey
Pustovalov, Carlos Garcia Campos)
* Port to GMenu (Lars Uebernickel, Carlos Garcia Campos)
* Use a GtkHeaderBar instead of a GtkToolbar (#711078, Yosef Or
Boczko, Carlos Garcia Campos)
* Add appdata files for Evince backends (#731708, Carlos Garcia
Campos, Igor Gnatenko)
* Add an appdata file for Evince (#708760, Christian Persch)
* Make the about dialog non modal and move it to the app menu
(Carlos Garcia Campos)
* Add keybindings to go back/forward in history (#509029, Anuj Khare)
* Expose links, images and form fields as AtkObject children of
the page (#728475, Joanmarie Diggs)
* Update ATK_STATE_SHOWING when the visible page range changes
(#728664, Joanmarie Diggs)
* Implement AtkComponent interface for pages (#728673, Joanmarie Diggs)
* Expose every page individually to accessibility (#724965,
Alejandro Piñeiro)
* Show fullscreen toolbar only when moving the mouse to the top of
the screen (#696643, Giselle Machado)
* Add API to libview to specify rendered output in pixels instead
of as a scale (#723431, Owen W. Taylor)
* Use cairo surfaces instead of GdkPibufs to render thumbnails
(#723431, Owen W. Taylor, Carlos Garcia Campos)
Bug fixes:
* Set the main window was transient parent of the annotation
properties dialog (#732114, Giselle Machado)
* Use annotation RGBA API instead of the deprecated color API
(#732095, Giselle Machado)
* Fix rotation direction in DJVU backend (#731786, Marek Kasik)
* Update the annotation poup window color and opacity when the annotation is
updated (#725571, Giselle Machado)
* Prevent jumps to last page when autoscrolling (#725389, Marek Kasik)
* Fix centering when shrinking to printable area but not scaling
(Carlos Garcia Campos)
* Fallback to thumbnails page in sidebar when the current page is
no longer supported by the document after a reload, and enable
the pages that become supported (#628617, Giselle Machado)
* Ensure text is available in page cache when requested by
accessibility (#724965, Alejandro Piñeiro)
* Update the caret cursor when jumping to a find result (#728996,
Joanmarie Diggs)
* Fix shift+click text selection (#728189, Joanmarie Diggs)
* Fix a crash when saving a copy (#727536, Debarshi Ray)
* Fix enable caret navigation question message (#727062, Carlos
Garcia Campos)
* Fix a crash during the build with introspection enabled
(#726812, Gustau Perez)
* Fix warning message shown when the requested format is not
supported by printer (#724044, Marek Kasik)
* Allow printing to all formats supported by backend (#724044,
Marek Kasik)
* Fix gtk-doc build (#731061, Ting-Wei Lan)
Documentation:
* Fix documented file formats (#731679, Ekaterina Gerasimova)
* Update help for UI changes in 3.12 (#700442, Anna Philips)
* Update reading documents help for 3.12 (Ekaterina Gerasimova)
Translation updates:
* Daniel Martinez (an)
* Ibrahim Saed (ar)
* Ihar Hrachyshka (be)
* Pau Iranzo (ca@valencia)
* Marek Černocký (cs)
* Kenneth Nielsen (da)
* Benjamin Steinwender (de)
* Christian Kirbach (de)
* Tom Tryfonidis (el)
* Kristjan SCHMIDT (eo)
* Daniel Mustieles (es)
* Iñaki Larrañaga Murgoitio (eu)
* Sami Jaktholm (fi)
* Michael Scherer (fr)
* GunChleoc (gd)
* Yosef Or Boczko (he)
* Attila Hammer (hu)
* Andika Triwidada (id)
* Claudio Arseni (it)
* Ikuya Awashiro (ja)
* Aurimas Černius (lt)
* Rūdolfs Mazurs (lv)
* Kjartan Maraas (nb)
* Wouter Bolsterlee (nl)
* Enrico Nicoletto (pt_BR)
* Yuri Myasoedov (ru)
* Peter Mráz (sk)
* Matej Urbančič (sl)
* Victor Ibragimov (tg)
* Muhammet Kara (tr)
* Chao-Hsiung Liao (zh_HK)
* Chao-Hsiung Liao (zh_TW)
================
Evince 3.11.92
================
Bug fixes:
* Keep current page thumbnail in visible area when the sidebar is
resized (#631050, Carlos Garcia Campos)
* Close the window when CTRL+w shortcut is used in presentation
mode, instead of turning the screen white (#604834, Carlos
Garcia Campos)
* Fix some broken aspects EvViewAccessible text support (#725003,
Joanmarie Diggs)
* Take caret navigation into account when getting AtkHyperlink
indices (#726310, Joanmarie Diggs)
* Keep the scroll position when switching between continuous and
non continuous mode (#554843, Carlos Garcia Campos)
* Stop autoscrolling when view looses focus (#541699, Robert Roth,
Anuj Khare, Carlos Garcia Campos)
* Fix implementation of atk_text_set_caret_offset in
EvViewAccessible (#701746, Alejandro Piñeiro)
* Emit EvView::cursor-moved signal when caret cursor position is
set by accessibility (#701746, Alejandro Piñeiro)
* Remove support for deprecated atk_text_get_text_{before,after}_offset
(#725162, Joanmarie Diggs)
Translation updates:
* Khaled Hosny (ar)
* Pau Iranzo (ca)
* Marek Černocký (cs)
* Wolfgang Stoeggl (de)
* Dimitris Spingos (Δημήτρης Σπίγγος) (el)
* Daniel Mustieles (es)
* Jiri Grönroos (fi)
* Claude Paroz (fr)
* Michael Scherer (fr)
* GunChleoc (gd)
* Fran Dieguez (gl)
* Yaron Shahrabani (he)
* Attila Hammer (hu)
* Andika Triwidada (id)
* Baurzhan Muftakhidinov (kk)
* Changwoo Ryu (ko)
* Aurimas Černius (lt)
* Rūdolfs Mazurs (lv)
* Kjartan Maraas (nb)
* A S Alam (pa)
* Paweł Żołnowski (pl)
* Antonio Fernandes C. Neto (pt_BR)
* Tiago S. (pt)
* Yuri Myasoedov (ru)
* Matej Urbančič (sl)
* Miroslav Nikolić (sr@latin)
* Мирослав Николић (sr)
* Victor Ibragimov (tg)
* Theppitak Karoonboonyanan (th)
* Daniel Korostil (uk)
* YunQiang Su (zh_CN)
* Chao-Hsiung Liao (zh_HK)
* Chao-Hsiung Liao (zh_TW)
================
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)