forked from GNOME/evince
-
Notifications
You must be signed in to change notification settings - Fork 0
/
NEWS
6295 lines (5180 loc) · 192 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.31.90
=================
* Fix typo's spotted for max-scale and min-scale (Nelson Benítez León)
* remove '.flat' style from PDF forms GtkEntry's (#687, Nelson Benítez León)
* set MIN_SCALE back to previous low value (#702, Nelson Benítez León)
* Revert removal of browser-plugin support" (Germán Poo-Caamaño)
* update app icon (#2, Jakub Steiner)
help:
* No more View menu (Andre Klapper)
* Replace title bar with header bar (Andre Klapper)
pdf backend:
* Ignore diacritics when searching text (#58, #637, Nelson Benítez León)
unarr:
* Update LZMA SDK (Bastien Nocera)
Developers:
* Andre Klapper, Bastien Nocera, Germán Poo-Caamaño, Jakub Steiner, Nelson Benítez León
Translations:
* Jordi Mas (Catalan)
* Balázs Úr (Hungarian)
* Kukuh Syafaat (Indonesian)
* Ryuta Fujii (Japanese)
* Daniel Mustieles (Spanish)
* Anders Jonsson (Swedish)
================
Evince 3.31.4
================
General:
* Fix build when compiled without dbus (#1055, Jasper Lievisse Adriaanse)
* Fix reference to Bugzilla by Gitlab URL in DOAP file (Andre Klapper)
Sidebar::
* Display a first blank thumbnail (#30, Nelson Benítez León)
* Remove GtkTreeView implementation for thumbnails (Germán Poo-Caamaño)
Developers:
* Andre Klapper, Germán Poo-Caamaño, Jasper Lievisse Adriaanse, Nelson Benítez León
Translations:
* Fabio Tomat (Friulian)
* Efstathios Iosifidis (Greek)
* Ryuta Fujii (Japanese)
* Anders Jonsson (Swedish)
* Emin Tufan Çetin (Turkish)
================
Evince 3.31.3
================
UI:
* fix criticals in tree view mode (#1042, Nelson Benítez León)
* fix ComboBoxText user selected item's logic (#294, Nelson Benítez León)
help:
* Search uses icon instead of text for zero matches (Andre Klapper)
* Update printer debugging to 3.30 Control Center UI (Andre Klapper)
Developers (in alphabetical order by name):
* Andre Klapper, Nelson Benítez León
Translations:
* Kristjan SCHMIDT (Esperanto)
* Matej Urbančič (Slovenian)
* Daniel Mustieles (Spanish)
================
Evince 3.31.2
================
ci:
* Add flatpak that can build on master and MR (#1, #995, Germán Poo-Caamaño)
* Fix type in exception for stop-deploy target (Germán Poo-Caamaño)
* Make flatpak-meson target the only flatpak build (Germán Poo-Caamaño)
UI:
* Fix appearance of editable GtkComboBox in PDF form (#1002, #1422, Nelson Benítez León)
* Handle adjustment change during drag event (Jason Crain)
* Set propergravity on popup menu in search box (Germán Poo-Caamaño)
* Fix default icon name in evince-previewer (Germán Poo-Caamaño)
* Use GtkHeaderBar in print preview (#405, Germán Poo-Caamaño)
* Beautify placeholder text for password locked documents (Germán Poo-Caamaño)
* Remove App menu (#4, #624, #994, Germán Poo-Caamaño)
* Use monitor instead of screen to determine window size (#757, Germán Poo-Caamaño)
* Close auto-expanded rows and remember state (#85, Nelson Benítez León)
* Provide a visual cue when find is unsupported (#105, Germán Poo-Caamaño)
* Add symbolic to show a layer when is visible (Germán Poo-Caamaño)
* Use the info bar close button instead of a custom one (Germán Poo-Caamaño)
* Add icons for squiggly and text annotations (Germán Poo-Caamaño)
flatpak:
* Add support for XPS files (Germán Poo-Caamaño)
* Fix reproducibility on webp-pixbuf-loader (Germán Poo-Caamaño)
* Set meson as default build system (Germán Poo-Caamaño)
misc:
* Remove EvPageAction widget (Germán Poo-Caamaño)
general (Germán Poo-Caamaño):
* Code cleanup:
* Remove unused variables
* Replace deprecated symbols
* Sync cut-n-paste code
* Fix dependencies
* Sync overwrite dialog against GtkFileChooserWidget
Developers (in alphabetical order by name):
* Germán Poo-Caamaño, Jason Crain, John Beard, Jordan Petridis,
Nelson Benítez León, Piotr Drąg
Translations:
* Marek Cernocky (Czech)
* Carmen Bianca BAKKER (Esperanto)
* Matej Urbančič (Slovenian)
* Update en_GB translation typo (#1022, John Beard)
================
Evince 3.31.1
================
Printing:
* Fix messages to show printed file name when it contains '&' in the name (#776, Nelson Benítez León)
libdocument:
* Fix handling of mime-type aiases (#972, Bastien Nocera)
* Fix regression, open gzipped documents (#988, Christian Persch)
Backends:
* comics: Use official IANA type for .cbr (#972, Frank Dana)
* djvu: Ignore text regions that are missing text (Jason Crain)
UI:
* Fix Dual odd-left state (#603, Nelson Benítez León)
* Fix regression, set to odd-left in dual mode when document has only 2 pages (#669, Nelson Benítez León)
* Fix cursor movement when logical and visual line differs (#889, Colomban Wendling)
* Fix zoom-action to respond touch events (#976, Jason Crain)
* shell: Don't reference systemd service (Bastien Nocera)
Browser plugin:
* browser-plugin: Remove browser-plugin support (#968, Germán Poo-Caamaño)
Build:
* Migrate from Intltool to Gettext (Iñigo Martínez)
* Port to Meson build system (Iñigo Martínez)
* Print systemd unit installation status (Bastien Nocera)
* Fix meson build when ps and dvi are disabled (Jason Crain)
* Add manual pipeline to build gtk-doc using meson (Germán Poo-Caamaño)
* Run flatpak CI only for master (Germán Poo-Caamaño)
* Add a new manual meson target for CI (Germán Poo-Caamaño)
* Fix D-Bus Daemon call on flatpak (#990, Bastien Nocera, Germán Poo-Caamaño)
UI translations:
* Daniel Mustieles (es)
* Dušan Kazik (sk)
* Jordi Mas (ca)
* Matej Urbančič (sl)
* Piotr Drąg (pl)
* Stas Solovey (ru)
* Tom Tryfonidis (el)
* Yuras Shumovich (be)
* Марко Костић (sr)
* خالد حسني (ar)
Doc translations:
* Marek Cernocky (cs)
================
Evince 3.30.0
================
Highlights:
For this releases we focused on making the user experience simpler:
we unified the menues, removed redundancies. made explicit actions,
enabled shortcuts for most of the features available, and documented
them to avoid easter eggs. In this release, we also include snap and
flatpack packages, to make testing and contribute Evince simpler.
There will be more user interface changes in the next release, but those
should be minimal in comparison with this one.
Bugfixes:
* Disable PostScript backend by default (#967, Germán Poo-Caamaño)
* Disable build of broswer-plugin by default (#968, Germán Poo-Caamaño)
* Use synctex system library if available (#479, Germán Poo-Caamaño)
* Correctly process rectangles whose points are not in the right order (#736688, José Aliste)
* Expand sentence to facilitate localization (#295, Germán Poo-Caamaño)
* Add support for PDF/X and additional xmp metadata (#93, Evangelos Rigas)
* Add support for xmp metadata outside x:xmpmeta element (#771, Evangelos Rigas)
* escape html entities in pango markup (#776, Nelson Benítez León)
* Add instructions on how to update LZMA SDK (#794327, Bastien Nocera)
* Update LZMA SDK (#794327, Bastien Nocera)
* Make metadata dual licensed (#775, Germán Poo-Caamaño)
* Do not add more license unconditionally (#780, Germán Poo-Caamaño)
* Annotate functions that wrap vfprintf (#562, Germán Poo-Caamaño)
* Update from version 1.18 to 1.21 (#878, Germán Poo-Caamaño)
* Reword to not depend on a TeXlive package name (#461, Germán Poo-Caamaño)
* document shortcuts to navigate the history (#858, Germán Poo-Caamaño)
* libdocument: Add missing indices (Christian Persch)
* libview: Add missing indices and functions (Christian Persch)
* Add API to get the selected text (#794538, Will Hawkins)
* Add inline spell check for annotations (#772622, Will Hawkins)
* Document is-loading property (#693864, Germán Poo-Caamaño)
* Make sync-source signal introspectable (#694687, Hannes Ovrén)
* Reset `pressed_button` when starting Drag and Drop (#754, Jason Crain)
* Set minimum for Page Forward/Backward scrolling (#692, Jason Crain)
* fix transformation functions to document coordinates. (#914, Juan Pablo Ugarte)
* avoid getting pointer position from vertical scroll callback (#793401, Cosimo Cecchi)
* do scroll only on one axis at a time. (#866, Nelson Benítez León)
* ignore unintended motion events while launching synctex (#951, Nelson Benítez León)
* Emit "updated" signal at end of search (#917, Jason Crain)
* Enable popover menu in EvPageActionWidget (#564, Germán Poo-Caamaño)
* Let the buttons in search bar get focus (#216, Germán Poo-Caamaño)
* Addshortcut to add text annotation (#635, #758329, Felipe Borges)
* Add 'toggle continuous' shortcut to help overlay (#820, Oisín)
* Add shortcut to add highlight annotations (#635, #758329, Felipe Borges)
* Add missed shortcut keys in help overlay (#786, #890, Yi-Soo An)
* Add separator for annotation items in menu (#752, Camille Moulin)
* Add shortcut for default zoom (1:1) (#19, Germán Poo-Caamaño)
* Add shortcut to delete bookmarks (#478, Germán Poo-Caamaño)
* Change icon for menus in buttons (#941, Germán Poo-Caamaño)
* Change to a more representative icon for annotations (#928, Germán Poo-Caamaño)
* Disconnect bookmarks signal on toolbar dispose (#920, Jason Crain)
* Do not expose spellchecking option in the UI (#922, Germán Poo-Caamaño)
* Fix DnD support for attachments (#683316, Germán Poo-Caamaño)
* Fix crash in ev_media_player_keys_grab_keys (#1359507, #795978, Marek Kasik)
* Fix gresource location in recent view (#670, Germán Poo-Caamaño)
* Fix regression on Ctrl+PageUp/PageDown shortcuts (#699, Germán Poo-Caamaño)
* Fix regression on F3 shortcut (#595, Germán Poo-Caamaño)
* Make the space between buttons consistent (#929, Germán Poo-Caamaño)
* Make the title RTL compliant (#486, Germán Poo-Caamaño)
* Menu reorganization (#475, Germán Poo-Caamaño)
* Move 'Open...' file from document to application (#514, #524, Germán Poo-Caamaño)
* Only propagate key press with control on presentation (#821, Jonas Hahnfeld)
* Remove duplicate and conflictive mnemonics (#770, #938, Germán Poo-Caamaño)
* Set application-id (#646985, #918, Marek Kasik)
* Set the path to filename as a tooltip in the headerbar (#214, Germán Poo-Caamaño)
* Show description of attachments in sidebar (#166, Fernando Herrera)
* Use "user-bookmarks" instead of "bookmark-new" (#947, Felipe Borges)
* Use display and edit name for filename (#756354, Jason Crain)
* Use ev_window_set_action_enabled more (#794749, José Aliste)
* Use selection to populate find bar if available. (#794538, José Aliste)
* Use text instead of icons in annotations toolbar (#928, Germán Poo-Caamaño)
* Use textual Open button instead of icon (#518, Germán Poo-Caamaño)
* Use unicode to specify rotation direction in menu (#605, Germán Poo-Caamaño)
* there is no need for view_menu_text_selection_popup (#763943, José Aliste)
* Fix width of dialog on long file names (#797, Germán Poo-Caamaño)
* Remove zoom-in/out icons from menu (#947, Germán Poo-Caamaño)
* Store priv->popup as a GtkPopover* (#881, Daniel Boles)
* Use Popover.popup() to get animation (#881, Daniel Boles)
* Set right alignment for zoom percentage (#947, Germán Poo-Caamaño)
* Separate Open and Save actions in their own menu groups (#947, Germán Poo-Caamaño)
* Use a new icon for the outline in the side bar (#947, Germán Poo-Caamaño)
* Show toolbar on select page activation in fullscreen (#784, Germán Poo-Caamaño)
* Use Recent View toolbar when cannot open a document (#936, Germán Poo-Caamaño)
* Provide hint when find is unavailable (#105, Germán Poo-Caamaño)
* update app icon (#2, Jakub Steiner)
* install symbolics properly (#961, Jakub Steiner)
* Rearrange tools and navigation/view controls (#947, Germán Poo-Caamaño)
* Allow adding Highlight annotations from text selection (#763943, Nelson Benítez León)
* add text markup annotation from selection (#663, Nelson Benítez León)
* Fix add_annotation() to update area based on bounding box (#763943, Nelson Benítez León)
* Make annotation title independent of theme (#664, Germán Poo-Caamaño)
* Add shortcuts for fullscreen and presentation mode (#786431, Jonas Hahnfeld)
* Switch the default sizing mode to automatic (#482, #733632, Juanjo Marin)
* Use Unicode quotation marks in new translatable strings (#774005, Piotr Drąg)
* Use a custom icon in the toolbar to view the sidebar (#947, Germán Poo-Caamaño)
* Save attachments in a temporary directory (#711, #772188, Felipe Borges)
* Beautify the bookmarks buttons (#947, Germán Poo-Caamaño)
* Expand the sidebar switcher to fill the space (#947, Germán Poo-Caamaño)
* Port to GtkStack (#475, Germán Poo-Caamaño)
* Put the sidebar switcher on the bottom (#947, Germán Poo-Caamaño)
* Add context menu for sidebar annotations (#795631, #891, Nelson Benítez León)
* fix sensitiveness of remove bookmark button (#892, Nelson Benítez León)
* Update addons for renamed .desktop (#962, Jeremy Bicha)
* Use dual license for addons too (#775, #962, Jeremy Bicha)
* Use provides to link to previous ID (#962, Jeremy Bicha)
* Add dependency on OpenJPEG (#939, Jason Crain)
* Add snap packaging (#790393, #856, Ken VanDine)
Contributors:
Allan Day, Andre Klapper, Bastien Nocera, Camille Moulin,
Christian Persch, Cosimo Cecchi, Daniel Boles, Evangelos Rigas,
Felipe Borges, Fernando Herrera, Germán Poo-Caamaño, Hannes Ovrén,
Hans Ulrich Niedermann, Jakub Steiner, Jason Crain, Jeremy Bicha,
Jonas Hahnfeld, José Aliste, Juan Pablo Ugarte, Juanjo Marin,
Ken VanDine, Marek Kasik, Mirek Kratochvil, Nelson Benítez León,
Nick Richards, Oisín, Piotr Drąg, Will Hawkins, Yi-Soo An.
Translations:
* Rafael Fontenelle (Brazilian Portuguese)
* Ricardo Silva Veloso (Brazilian Portuguese)
* Bruce Cowan (British English)
* Jordi Mas (Catalan)
* Mingcong Bai (Chinese (China))
* Yi-Jyun Pan (Chinese (Taiwan))
* gogo (Croatian)
* Marek Cernocky (Czech)
* Marek Černocký (Czech)
* Ask Hjorth Larsen (Danish)
* Justin van Steijn (Dutch)
* Jiri Grönroos (Finnish)
* Charles Monzat (French)
* Guillaume Bernard (French)
* Fabio Tomat (Friulian)
* Fran Dieguez (Galician)
* Marcos Lans (Galician)
* Christian Kirbach (German)
* Mario Blättermann (German)
* Tim Sabsch (German)
* Efstathios Iosifidis (Greek)
* Balázs Meskó (Hungarian)
* Balázs Úr (Hungarian)
* Sveinn í Felli (Icelandic)
* Kukuh Syafaat (Indonesian)
* Gianvito Cavasoli (Italian)
* Baurzhan Muftakhidinov (Kazakh)
* Seong-ho Cho (Korean)
* Rūdolfs Mazurs (Latvian)
* Aurimas Černius (Lithuanian)
* Piotr Drąg (Polish)
* Daniel Șerbănescu (Romanian)
* Stas Solovey (Russian)
* Милош Поповић (Serbian Latin)
* Matej Urbančič (Slovenian)
* Daniel Mustieles (Spanish)
* Anders Jonsson (Swedish)
* Emin Tufan Çetin (Turkish)
* Trần Ngọc Quân (Vietnamese)
=================
Evince 3.29.92
=================
* Bug fixes and improvements
* PostScript backend disabled by default
=================
Evince 3.29.91
=================
Bug fixes and improvements.
=================
Evince 3.29.90
=================
Revamped the user interface.
Bug fixes and improvements.
=================
Evince 3.29.1
=================
Bug fixes and improvements.
=================
Evince 3.28.0
=================
Translation updates:
* Aman Alam (pa)
* Gianvito Cavasoli (it)
* gogo (hr)
* Tom Tryfonidis (el)
* Милош Поповић (sr@latin)
* Anders Jonsson (sv)
=================
Evince 3.27.92
=================
Bugfixes:
* Install appstream metadata to non-deprecated locations (#790079, Jeremy BIcha)
* Fix Rotate shortcuts when horizontal bar is visible (#727529, Jose Aliste)
* Fix black page and white page shortcuts in presentation mode (#772390, Jonas Hahnfeld)
Translation updates:
* Alan Mortensen (da)
* Aurimas Černius (lt)
* Baurzhan Muftakhidinov (kk)
* Cheng-Chia Tseng (zh_TW)
* Dušan Kazik (sk)
* Guillaume Bernard (fr)
* Hongmin Yang (ko)
* Rūdolfs Mazurs (lv)
* Trần Ngọc Quân (vi)
* Christian Kirbach (de)
* Joe Hansen (da)
=================
Evince 3.27.91
=================
Bugfixes:
* Prevent window from growing, (#783242, [email protected])
* Update LZMA SDA (Bastien Nocera)
* Fix media-player keys (#789738, Bastien Nocera)
* Fix reading CBZ files created on MacOS (#782754, Bastien Nocera)
* Fix orientation of auto-rotate option (#782394, Jason Crain)
* Fix dialog extending past edge of screen (#733618, Jason Crain)
* Don't show tooltips for empty annotations (#772621, Nelson Benitez)
* Remove un-necessary cairo configure checks (#788980, Jason Crain)
* Fix Overflow checks in tiff backend (#788980, Jason Crain)
* Better handle of external links (#791287, Jose Aliste)
* Fixing display of overlapping annotations (#787070, Fabian Franzen)
* Reduce minimal size of sidebar (#778000, Nelson Benitez)
* Bind mouse back/forward buttons to history navigation (#787464, Casey Jao)
* Fix property name in about dialog (#790595, Stefano Facchini)
* Install appstream metadata to correct location (#790079, Jeremy Bicha)
* Correct sliding mode for toolbar in fullscreen (#788718, Steano Facchini)
* Correct GPL2+ license text (#788719, Stefano Facchini)
* Add some shortcuts (#790253, Stefano Facchini)
* Fix resources generation when building (#790283, Stefano Facchini)
* Update about dialing (#785527, German Poo-Caamaño)
* Always use poppler_document_Save to avoid data loss (#770012, German Poo-Caamaño)
* Add keybindings for special back/forward keys (#553892, German Poo-Caamaño)
* Allow zooming to the limits of the scale (#788480, David King)
* Fix asking to save when document has been modified (#767611, German Poo-Caamaño)
* Fix navigation with annotation already selected in sidebar (#680880, German Poo-Caamaño)
* Show tooltip for Outline entris (#787437, Idloj)
* Default to 96 DPI when unable to compute (Stefano Facchini)
Documentation:
* Misc fixes (Andre Kappler)
* Updated screenshots (Mario Blättermann)
Translation updates:
* Anders Jonsson (sv)
* Arash Mousavi (fa)
* Balázs Úr (hu)
* Cheng-Chia Tseng (zh_TW)
* Daniel Mustieles (es)
* Efstathios Iosifidis (el)
* Emin Tufan Çetin (tr)
* Enrico Nicoletto (pt_BR)
* Fabio Tomat (fur)
* Fran Dieguez (gl)
* Gil Forcada (ca)
* gogo (hr)
* Jiri Grönroos (fi)
* Khaled Hosny (ar)
* Kjartan Maraas (nb)
* Kukuh Syafaat (id)
* Marek Cernocky (cs)
* Mario Blättermann (de)
* Matej Urbančič (sl)
* Mingcong Bai (zh_CN)
* Pawan Chitrakar (ne)
* Piotr Drąg (pl)
* Stas Solovey (ru)
* Sveinn í Felli (is)
* Xavi Ivars (ca@valencia)
* Марко Костић (sr)
* Alexandre Franke (fr)
* Andre Klapper (zh_CN)
* Isaac F. Ferreira Filho (pt_BR)
================
Evince 3.26.0
================
Translation updates:
* Lyubomir Vasilev (bg)
* David Medina (ca)
* Marek Černocký (cs)
* Joe Hansen (da)
* Daniel Mustieles (es)
* Iñaki Larrañaga Murgoitio (eu)
* Gabor Kelemen (hu)
* Gianvito Cavasoli (it)
* Nathan Follens (nl)
* Piotr Drąg (pl)
* Rafael Fontenelle (pt_BR)
* Anders Jonsson (sv)
* Sebastian Rasmussen (sv)
================
Evince 3.25.92
================
Bug fixes:
* Do not change the current page when adding or removing bookmarks
(#732834, Casey Jao)
* Fix unarr build on s390x (#787248, Florian Weimer)
* Update LZMA SDK to use lzma1701.7z for unarr (#787035, Bastien
Nocera)
Documentation:
* Add missing close parenthesis in text selection page (#786825,
Anders Jonsson)
Translation updates:
* Yuras Shumovich (be)
* David Medina (ca)
* Joe Hansen (da)
* Daniel Mustieles (es)
* Charles Monzat (fr)
* Sveinn í Felli (is)
* Kyung-Gon Kim (ko)
* Aurimas Černius (lt)
* Rūdolfs Mazurs (lv)
* Rafael Fontenelle (pt_BR)
* Trần Ngọc Quân (vi)
* Cheng-Chia Tseng (zh_TW)
================
Evince 3.25.91
================
New features and improvements:
* Add support for Adobe Illustrator documents (#311990, Bastien
Nocera)
Bug fixes:
* Fix gnome-settings-daemon MediaKeys API use (#786262, Jeremy
Bicha)
* Fix infinite loop when removing annotation windows (#785975,
Jose Aliste)
* Fix rendering of layer state in layers tree sidebar (#786464,
Jonas Hahnfeld)
* Properly quote arguments when executing dvipdfm in DVI backend
(#784947, Tobias Mueller)
* Fix runtime warnings on exit (#774833, Caolán McNamara)
* Fix debug borders coordinate translation (#785758, astian)
* Properly handle errors in comics backend (#784963, Bastien
Nocera)
* Don't strip filenames when extracting comic documents (#784963,
Bastien Nocera)
Documentation:
* Remove custom-shortcuts section dropped in GTK 3.10 (#758246,
Andre Klapper)
* Cover F9 shortcut (#783276, Andre Klapper)
* Update 'Adding Annotations' to reflect the UI (Andre Klapper)
* Update several screenshots (Andre Klapper)
* Update custom shortcut instructions (Andre Klapper)
* 'Index' dropdown is called 'Outline' now (Andre Klapper)
* Fix several typos in documentation (Petr Kovar, Sebastian
Rasmussen)
Translation updates:
* Marek Černocký (cs)
* Mario Blättermann (de)
* Daniel Mustieles (es)
* Jiri Grönroos (fi)
* Fabio Tomat (fur)
* Fran Dieguez (gl)
* gogo (hr)
* Gabor Kelemen (hu)
* Meskó Balázs (hu)
* Andika Triwidada (id)
* Baurzhan Muftakhidinov (kk)
* Pawan Chitrakar (ne)
* Piotr Drąg (pl)
* Dušan Kazik (sk)
* Matej Urbančič (sl)
* Miroslav Nikolić (sr@latin)
* Мирослав Николић (sr)
* Anders Jonsson (sv)
* Muhammet Kara (tr)
================
Evince 3.25.4
================
New features and improvements:
* The comics backend now uses libarchive and unarr instead of
spawning commands (#720742, Bastien Nocera)
* Add flag EV_DOCUMENT_LOAD_FLAG_NO_CACHE to not setup the
document cache during the load. It will be setup later only if
needed (#780210, Bastien Nocera, Carlos Garcia Campos)
* Speed up thumbnailing by using EV_DOCUMENT_LOAD_FLAG_NO_CACHE
flag (#780210, Bastien Nocera)
* Improve performance of the links sidebar (#779614, Benjamin
Berg)
* Select the active file when open containing folder (#741377,
Germán Poo-Caamaño)
* Improve performance of scrolling in thumbnails sidebar (#691448,
#342110, Nelson Benítez León)
Bug fixes:
* Fix crash with Orca screen reader (#777992, Jason Crain)
* Fix ev_page_accessible_get_range_for_boundary() to ensure the
start and end offsets it returns are within the allowed range
(#777992, Jason Crain)
* Fix toggling layers that are not in the current visible range of
pages (#780139, Georges Dupéron)
* Don't copy remote files before thumbnailing (#780351, Bastien
Nocera)
* Fix a crash when opening a second window (#777082, Caolán
McNamara)
* Do not jump to first thumbnail in sidebar after fullscreen
(#783404, Nelson Benítez León)
* Remove use of obsolete gnome_desktop_thumbnail_scale_down_pixbuf
(#784789, Bastien Nocera)
Translation updates:
* Yuras Shumovich (be)
* Marek Černocký (cs)
* Mario Blättermann (de)
* Tom Tryfonidis (el)
* Daniel Mustieles (es)
* Jiri Grönroos (fi)
* Fabio Tomat (fur)
* Fran Dieguez (gl)
* gogo (hr)
* Balázs Úr (hu)
* Kukuh Syafaat (id)
* Baurzhan Muftakhidinov (kk)
* Aurimas Černius (lt)
* Enrico Nicoletto (pt_BR)
* Dušan Kazik (sk)
* Matej Urbančič (sl)
* Emin Tufan Çetin (tr)
* Trần Ngọc Quân (vi)
================
Evince 3.24.0
================
New features and improvements:
* Ask the user before automatically reloading the document when
it has been modified (#769123, Jose Aliste)
* Use IBEAM cursor for TEXT_MARKUP annotations (#774018, Philipp
Raich)
Bug fixes:
* Hide search bar when entering presentation mode (#775536, Simon
Nagl)
* Sort bookmarks by page number instead of title (#772277, Felipe
Borges)
* Sort pages in natural order in comics backend (#770695, Felipe
Borges)
* Fix a crash due to an invalid access to the height page cache in
continuous dual mode (#771612, Tobias Mueller)
* Use Unicode in translatable strings (#774005, Piotr Drąg)
* Fix incorrect return type (#780206, Bastien Nocera)
Translation updates:
* Khaled Hosny (ar)
* David Medina (ca)
* Marek Černocký (cs)
* Joe Hansen (da)
* Mario Blättermann (de)
* Daniel Mustieles (es)
* Iñaki Larrañaga Murgoitio (eu)
* Jiri Grönroos (fi)
* Charles Monzat (fr)
* Fabio Tomat (fur)
* Fran Dieguez (gl)
* gogo (hr)
* Gabor Kelemen (hu)
* Kukuh Syafaat (id)
* Sveinn í Felli (is)
* Luca Ferretti (it)
* Baurzhan Muftakhidinov (kk)
* Seong-ho Cho (ko)
* Aurimas Černius (lt)
* Rūdolfs Mazurs (lv)
* Åka Sikrom (nb)
* A S Alam (pa)
* Piotr Drąg (pl)
* Rafael Fontenelle (pt_BR)
* Stas Solovey (ru)
* Dušan Kazik (sk)
* Miroslav Nikolić (sr@latin)
* Мирослав Николић (sr)
* Anders Jonsson (sv)
* Theppitak Karoonboonyanan (th)
* Muhammet Kara (tr)
* Daniel Korostil (uk)
* Trần Ngọc Quân (vi)
* Boyuan Yang (zh_CN)
* Chao-Hsiung Liao (zh_TW)
================
Evince 3.22.0
================
Translation updates:
* Khaled Hosny (ar)
* dooteo (eu)
* Leonor Palazzo (fr)
* Seong-ho Cho (ko)
* Hannie Dumoleyn (nl)
* Stas Solovey (ru)
* Daniel Korostil (uk)
================
Evince 3.21.92
================
New features and improvements:
* Add application/vnd.comicbook+zip to the list of mime-types
supported by the comics backend (#770903, Bastien Nocera)
Bug fixes:
* Fix mime-type comparisons in commics backend (#770903, Bastien
Nocera)
* The browser plugin no longer claims to support loading documents in
Wayland (Carlos Garcia Campos)
* Fix several memory leaks (#770070 and #770069, Eric R. Schulz)
* Fix scaling calculation in PostScript backend (#755776, Jason
Crain)
* Fix a crash when opening a copy of a document with annotation
popup windows (#760299, Jose Aliste)
Security Fixes:
* Fix a crash when processing button events in EvView (#769700)
CVE-2013-3718. (Marek Kasik)
Translation updates:
* David Medina (ca)
* Marek Černocký (cs)
* Franco Della-Monica (de)
* Tom Tryfonidis (el)
* David King (en_GB)
* Daniel Mustieles (es)
* Arash Mousavi (fa)
* Jiri Grönroos (fi)
* Claude Paroz (fr)
* Leonor Palazzo (fr)
* Fabio Tomat (fur)
* GunChleoc (gd)
* Fran Dieguez (gl)
* Yosef Or Boczko (he)
* Balázs Úr (hu)
* Andika Triwidada (id)
* Baurzhan Muftakhidinov (kk)
* Aurimas Černius (lt)
* Rūdolfs Mazurs (lv)
* Piotr Drąg (pl)
* Gustavo Marques (pt_BR)
* Tiago Santos (pt)
* Dušan Kazik (sk)
* Matej Urbančič (sl)
* Miroslav Nikolić (sr@latin)
* Мирослав Николић (sr)
* Anders Jonsson (sv)
* Trần Ngọc Quân (vi)
================
Evince 3.21.4
================
New features and improvements:
* Improve annotation properties dialog UI (#767895, Trinh Anh Ngoc)
* Center sidebar action menu (#767895, Trinh Anh Ngoc)
* Make Esc close annotation window (#768448, Christian Gogolin)
Bug fixes:
* Do not hide the fullscreen toolbar when view or action popover
is shown (Carlos Garcia Campos)
Translation updates:
* Daniel Mustieles (es)
* Andika Triwidada (id)
================
Evince 3.21.3
================
New features and improvements:
* Fix style rendering issues with GTK+ 3.20 (#765557, #758793,
Felipe Borges, Trinh Anh Ngoc, Carlos Garcia Campos)
* Stop using first page thumbnail as window icon (#767747, Cosimo
Cecchi)
* Scroll pages fitting in the window in non-continuous mode
(#562257, Marek Kasik)
* Show the document URI on a tooltip for recent view items
(#764405, Felipe Borges)
* Add Keyboard Shortcuts entry to App Menu (#761803, Hashem
Nasarat)
* Make the systemd user unit conditional (#755897, Simon McVittie)
* Allow to pass URIs to the previewer (#766531, Felipe Borges)
* Remove the MimeType association from the previewer desktop file
(#744893, Laurent Bigonville)
Bug fixes:
* Fix build with GCC 6 (Michael Catanzaro)
* Fix calculation of the maximum width of page selector (#764771,
echo-devi)
* Fix typo in zoom in/out gesture shortcuts (#761803, Hashem
Nasarat)
* Remove X11 dependency of nautilus extension (#766710, Quentin
Glidic)
Translation updates:
* Khaled Hosny (ar)
* Florian Heiser (de)
* Daniel Mustieles (es)
* Arash Mousavi (fa)
* Fabio Tomat (fur)
* GunChleoc (gd)
* Meskó Balázs (hu)
* Dirgita (id)
* Sveinn í Felli (is)
* Åka Sikrom (nb)
* Cédric Valmary (totenoc.eu) (oc)
* Rafael Fontenelle (pt_BR)
* Tiago Santos (pt)
* Dušan Kazik (sk)
* Sebastian Rasmussen (sv)
* Theppitak Karoonboonyanan (th)
================
Evince 3.20.0
================
Translation updates:
* scootergrisen (da)
* dooteo (eu)
* Gabor Kelemen (hu)
* Gianvito Cavasoli (it)
* Jiro Matsuzawa (ja)
* Changwoo Ryu (ko)
================
Evince 3.19.92
================
New features and improvements:
* Use a popover for view and action menus (#760527, Felipe Borges)
* Add shortcuts help window (#757828, Felipe Borges)
* Add Shift+Space keybinding to go back in presentation mode
(#758162, Jaakko Hannikainen)
* Rename links sidebar title from Index to Outline (#732547,
Germán Poo-Caamaño)
* Add missing tooltips to the headerbar (#595467, Germán
Poo-Caamaño)
* Show the page label instead of page number in find sidebar
(#756683, Germán Poo-Caamaño)
* Add a systemd user unit corresponding to the D-Bus session
service (#755897, Simon McVittie)
* Recognize multipage DjVu MIME type (#754467, Marek Kasik)
* Add support for utf8 filenames on Mac OS X to comics backend
(#761161, Tom Schoonjans)
Bug fixes:
* Fix text selection on Wayland (#759506, Marek Kasik)
* Manually destroy the search popover on toolbar dispose in
browser plugin to try to fix a crashes on plugin destruction
(#762838, Carlos Garcia Campos)
* Check boundaries of accessible pages to avoid crashes when the
document is reloaded due to changes in the document file
(#735744, Germán Poo-Caamaño)
* Fix translations in thumbnailer help message (#760418, Ting-Wei Lan)
* Fix text selections in annotation popups (#749727, Giselle Reis)
* Fix special characters in path to cbz (#643843, Jürn Brodersen)
* Fix css style of loading message (#758356, Germán Poo-Caamaño)
* Fix warning with no document loaded (#758596, Bastien Nocera)
* Fix unbalanced quote in configure script (Bastien Nocera)
* Fix installation of symbolic app icon (Michael Catanzaro)
* Fix the position of the zoom action GtkPopover in Wayland
(#756976, Germán Poo-Caamaño)
* Make the message area work in recent view mode too (#755064,
Felipe Borges)
* Fix performance regression with recent versions of GTK+ when
getting colors from GtkStyleContext for a different state
(#755442, Sebastian Keller)
* Fix a crash in PDF backend when opening documents containing screen
annotations with no actions (#756572, Germán Poo-Caamaño)
* Ignore right clicks while adding new annotations (#755619, José Aliste)
* Escape bookmark titles to be correctly rendered when they
contain characters like & (#66301, José Aliste)
* Fix handling of multiple files provided as command line
arguments (#755796, Felipe Borges)
* Do not crash when the rendering or thumbnail jobs fail (#744049,
Marek Kasik)
Translation updates:
* Khaled Hosny (ar)
* Alexander Shopov (bg)
* Sadia Afroz (bn)
* Samir Ribić (bs)
* David Medina (ca)
* Marek Černocký (cs)
* Mario Blättermann (de)
* Dawa pemo (dz)
* Efstathios Iosifidis (el)
* Daniel Mustieles (es)
* Inaki Larranaga Murgoitio (eu)
* Jiri Grönroos (fi)
* Claude Paroz (fr)
* GunChleoc (gd)
* Fran Dieguez (gl)
* Yosef Or Boczko (he)
* Meskó Balázs (hu)
* Claudio Arseni (it)
* Jiro Matsuzawa (ja)
* Baurzhan Muftakhidinov (kk)
* Khoem Sokhem (km)
* Rakesh Pandit (ks)
* Erdal Ronahî (ku)
* Aurimas Černius (lt)
* Rūdolfs Mazurs (lv)
* Badral (mn)
* Sandeep Shedmake (mr)
* Umarzuki Bin Mochlis Moktar (ms)
* KYAW MYAT THU (my)
* Åka Sikrom (nb)
* Nils-Christoph Fiedler (nds)
* Narayan Kumar Magar (ne)
* Cédric Valmary (totenoc.eu) (oc)
* Manoj Kumar Giri (or)
* A S Alam (pa)
* Piotr Drąg (pl)
* Fábio Nogueira (pt_BR)
* Pedro Albuquerque (pt)
* Daniel Șerbănescu (ro)
* Stas Solovey (ru)
* Danishka Navin (si)
* Dušan Kazik (sk)
* Miroslav Nikolić (sr@latin)
* Мирослав Николић (sr)
* Sebastian Rasmussen (sv)
* Shantha kumar (ta)
* Krishnababu Krothapalli (te)
* Victor Ibragimov (tg)
* Theppitak Karoonboonyanan (th)
* Gheyret Kenji (ug)
* Daniel Korostil (uk)
* Trần Ngọc Quân (vi)
* YunQiang Su (zh_CN)
* Chao-Hsiung Liao (zh_TW)
================
Evince 3.18.0
================
Translation updates:
* František Zatloukal (cs)
* scootergrisen (da)
* Christian Kirbach (de)
* Tom Tryfonidis (el)
* Leonor Palazzo (fr)
* Rūdolfs Mazurs (lv)
* Piotr Drąg (pl)
================
Evince 3.17.92
================
Bug fixes:
* When copying a file, use the default permissions for the new
file instead of copying the ones from the original file
(#753019, Marek Kasik)
Translation updates:
* Daniel (an)
* Marek Černocký (cs)
* Tom Tryfonidis (el)
* Daniel Mustieles (es)
* Arash Mousavi (fa)