forked from mate-desktop/atril
-
Notifications
You must be signed in to change notification settings - Fork 0
/
NEWS.gnome
2810 lines (2247 loc) · 83.7 KB
/
NEWS.gnome
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
================
Atril 2.32.0
================
Bug fixes:
* Make "Shrink to Printable Area" default option for Page Scaling
(Marek Kasik)
* Fix build with --disable-dbus (#629498, Didier Roche)
Translation updates:
* Damyan Ivanov (bg)
* Ivar Smolin (et)
* Iñaki Larrañaga Murgoitio (eu)
* Milan Bouchet-Valat (fr)
* Francesco Marletta (it)
* Shushi Kurose (ja)
* Changwoo Ryu (ko)
* Wouter Bolsterlee (nl)
* Piotr Drąg (pl)
* Henrique P. Machado (pt_BR)
* Lucian Adrian Grijincu (ro)
* Yuri Myasoedov (ru)
================
Atril 2.31.92
================
Bug fixes:
* Change gsettings schema path from /apps/atril to
/org/mate/atril (Christian Persch)
* A D-Bus signal is now emitted when document is loaded (#626561,
José Aliste)
* Use MateConf again for lockdown settings (#628945, Christian Persch)
* Fix a crash during selection when atril is built with gtk2
(Carlos Garcia Campos)
* Atril daemon can spawn an atril instance when finding a
document (#625971, José Aliste)
Translation updates:
* Khaled Hosny (ar)
* Kenneth Nielsen (da)
* Christian Kirbach (de)
* Michael Kotsarinis (el)
* Bruce Cowan (en_GB)
* Ivar Smolin (et)
* Gabor Kelemen (hu)
* Andika Triwidada (id)
* Shushi Kurose (ja)
* Baurzhan Muftakhidinov (kk)
* Aurimas Černius (lt)
* Kjartan Maraas (nb)
* Duarte Loreto (pt)
* Miloš Popović (sr@latin)
* Милош Поповић (sr)
* Daniel Nylander (sv)
* 朱涛 (zh_CN)
* Chao-Hsiung Liao (zh_HK)
* Chao-Hsiung Liao (zh_TW)
================
Atril 2.31.90
================
Bug fixes:
* Do not jump to link dest when clicking with GDK_CONTROL_MASK
(#626407, Carlos Garcia Campos)
* Use GDK_BLANK_CURSOR instead of creating our own empty cursor
(Carlos Garcia Campos)
* Improve findbar message when there are no matches (#626334,
Carlos Garcia Campos, José Aliste)
* Remove #ifdefs for old cairo versions (#626147, Juanjo Marín)
Translation updates:
* Paul Seyfert (de)
* Jorge González (es)
* Fran Dieguez (gl)
* Yaron Shahrabani (he)
* Torstein Adolf Winterseth (nn)
* A S Alam (pa)
* Matej Urbančič (sl)
* Xhacker Liu (zh_CN)
================
Atril 2.31.6.1
================
New Features and UI Improvements:
* Add --with-gtk=2.0|3.0 configure flag (#626030, Vincent Untz)
Bug fixes:
* Fix a crash with DVI files and empty glyphs (#600552, Marek Kasik)
* Fix a crash when a page is manually entered (#624936, Marek Kasik)
Translation updates:
* Jorge González (es)
* Fran Dieguez (gl)
* Yaron Shahrabani (he)
* Andika Triwidada (id)
* Kjartan Maraas (nb)
* Matej Urbančič (sl)
* Dr.T.Vasudevan (ta)
================
Atril 2.31.6
================
New Features and UI Improvements:
* Preliminary support for adding new annotations (#168304, Carlos
Garcia Campos)
* Add confirmation dialog on closing window when document has been
modified (Form fields have been filled out or annots have been
added/modified) (#168304, Carlos Garcia Campos)
* Add an action to edit menu to save current settings as
default. Default settings will be used only for new documents
that don't have metadata (#620325, Carlos Garcia Campos)
* Migrate lockdown to gsettings (Carlos Garcia Campos)
Bug fixes:
* Update synctex parser from TexLive SVN repository (#624532,
Marek Kasik)
* Fix a crash when loading document with inverted colors enabled
(Carlos Garcia Campos)
* Several build improvements (Hib Eris)
* Fix memory leaks when document is reloaded (Carlos Garcia Campos)
* Fix position of window annotations when moved by the user (Jose
Aliste, Carlos Garcia Campos)
* Fix build with poppler 0.14 (#624904, Carlos Garcia Campos)
* Use cairo instead of gdk_draw API (Carlos Garcia Campos)
* Only set text and text_layout flags in page cache when a11y
might be enabled (Carlos Garcia Campos)
Translation updates:
* Xandru Armesto (ast)
* Mario Blättermann (de)
* Jorge González (es)
* Ivar Smolin (et)
* Fran Diéguez (gl)
* Sweta Kothari (gu)
* Yaron Shahrabani (he)
* Shankar Prasad (kn)
* Sandeep Shedmake (mr)
* Kjartan Maraas (nb)
* Daniel Nylander (sv)
* Krishna Babu K (te)
* Eleanor Chen (zh_CN)
* Chao-Hsiung Liao (zh_HK)
* Chao-Hsiung Liao (zh_TW)
================
Atril 2.31.5
================
New Features and UI Improvements:
* Add a new sidebar page to show the list of annotations (Carlos
Garcia Campos)
* Finish DBus API for synctex support (#543503, Jose Aliste)
* Switch to GTK+ 3
Bug fixes:
* Make sure annot popups never show up outside the main window
* (#604125, Carlos Garcia Campos)
* Set word wrapping mode for text in popup annotations (#623456,
Translation updates:
* Baurzhan Muftakhidinov (kk)
* 朱涛 (zh_CN)
================
Atril 2.31.4.1
================
Bug fixes:
* Fix build when poppler_page_get_text_layout is not available
(#623080, Carlos Garcia Campos)
================
Atril 2.31.4
================
New Features and UI Improvements:
* Implement AtkText interface in EvView (#309015, Daniel Garcia)
* Add preliminary SyncTex support (#543503, Jose Aliste, Carlos
Garcia Campos)
Bug fixes:
* Don't save print document settings into global file (#530018,
Carlos Garcia Campos)
* Reload presentation view when document changes (#621750, Carlos
Garcia Campos)
* Remove hard-coded reason in totem-scrsaver (#621386, Bastien
Nocera)
* Fix opening cbz files with [] in archive (#619248, Juanjo Marín)
Translation updates:
* Carles Ferrando Garcia (ca)
* Kristjan SCHMIDT (eo)
* Fran Diéguez (gl)
* Kjartan Maraas (nb)
* Matej Urbančič (sl)
* 杨章 (zh_CN)
================
Atril 2.31.3
================
New Features and UI Improvements:
* Use a dynamic pixbuf cache size based on document page
size. It allows us caching more pages for lower scale factors
and increase zoom level by caching fewer pages. (#303365, Carlos
Garcia Campos)
Bug fixes:
* Fix fade animations (#619825, Carlos Garcia Campos)
* Fix a crash when starting animation in presentation mode
(#619948, Carlos Garcia Campos)
* Remove set_focus_on_map and set NOTIFICATION type hint for
loading window. It prevents focus stealing and skips taskbar and
pager hints (#620548, Carlos Garcia Campos)
* Fix build with GSEAL enabled (#605776, Carlos Garcia Campos)
* Remove circular dependencies in Makefiles and fix some compiler
warnings (Hib Eris)
Translation updates:
* Jorge González (es)
* Ivar Smolin (et)
* Fran Diéguez (gl)
* Yaron Shahrabani (he)
* Kjartan Maraas (nb)
* Sira Nokyoongtong (th)
* 甘露(Gan Lu) (zh_CN)
================
Atril 2.31.2
================
New Features and UI Improvements:
* Port to GDBus (Christian Persch, Carlos Garcia Campos)
* Do not use the mateconf gsettings backend any more (#619335,
Matthias Clasen)
* Use cairo to draw search results (Carlos Garcia Campos)
* Use a loading window to show loading progress information
instead of the old 'Loading ...' text rendered on every page
(Carlos Garcia Campos)
Bug fixes:
* Fix localization on Windows (#610548, Hib Eris)
* Convert relative path to absolute path for atril-previewer
(Marek Kasik)
* Fix opening files with '#' in its name (#616515, Carlos Garcia
Campos)
* Accept keyboard focus in window annotations (Carlos Garcia
Campos)
* Fix most of the GSEAL build issues (#605776, Carlos Garcia
Campos)
* Add .c files to the introspection sources (#617736, Christian
Persch)
Translation updates:
* Thomas Thurman (en@shaw)
* Kjartan Maraas (nb)
* Wouter Bolsterlee (nl)
* Manoj Kumar Giri (or)
================
Atril 2.31.1
================
New Features and UI Improvements:
* Add saved documents with "save a copy" to recent file list
(#617580, Carlos Garcia Campos)
* Port override_restrictions mateconf key to GSettings (Carlos Garcia
Campos)
* Add icons to the recent items, and always show them in menu
(#614400, Christian Persch)
Bug fixes:
* Invert colors of pages and thumbanils when loading in inverted
color mode (#616110, #616111, Juanjo Marín)
* Take default settings from last document opened. Fixes
regression caused by migration to gio metadata (#606090,
Carlos Garcia Campos)
* Ellipsise the recent action's label (Christian Persch)
* Make inverted colors mode work in presentation mode too
(#614693, Carlos Garcia Campos)
* Respect MATE22_USER_DIR env variable (#613637, Ray Strode)
* Fix loading of local documents when uri contains a page
destination (#616515, Carlos Garcia Campos)
* Make mate-doc-utils optional (Hib Eris)
* Update icons to match mate-icon-theme appearance (#614747,
Hylke Bons, Carlos Garcia Campos)
* Make sure there's a new valid page range before updating caches
(fdo#27599, Carlos Garcia Campos)
* Fix .desktop file according to CorrectDesktopFiles GNIOME Goal
(#592733, Javier Jardón)
* Update FSF address everywhere (#514607, Arun Persaud)
* Fix loading of compressed password-protected documents (#613959,
Carlos Garcia Campos)
* Add command line option to open document at a given page index
(#613449, Daniel M. German)
* Fix build with GSEAL_ENABLE for libview and libdocument
(#605776, Hib Eris, Carlos Garcia Campos)
* Close previewer window with control + w (#612972, Carlos Garcia
Campos)
* Fix keybindings in previewer window (#612972, Carlos Garcia
Campos)
Translation updates:
* Runa Bhattacharjee (bn_IN)
* Gil Forcada (ca)
* Gil Forcada (ca@valencia)
* Jorge González (es)
* Fran Diéguez (gl)
* Shankar Prasad (kn)
* Ani Peter (ml)
* Sandeep Shedmake (mr)
* Wouter Bolsterlee (nl)
* Andrej Žnidaršič (sl)
================
Atril 2.30.0
================
Bug fixes:
* Fix scale calculation on rotated monitors in presentation mode
(José Aliste, Carlos Garcia Campos)
* Save current page when closing window in presentation mode
(#612656, Carlos Garcia Campos)
* Fix rendering of documents with non uniform page size when in
presentation mode (Carlos Garcia Campos)
* Use monitor height instead of screen height to calculate page
scale in presentation mode (#608924, Carlos Garcia Campos)
Translation updates:
* Sadia Afroz (bn)
* Lucas Lommer (cs)
* Kenneth Nielsen (da)
* Iñaki Larrañaga Murgoitio (eu)
* Tommi Vainikainen (fi)
* Gabor Kelemen (hu)
* Andika Triwidada (id)
* Francesco Marletta (it)
* Changwoo Ryu (ko)
* Badral (mn)
* Nils-Christoph Fiedler (nds)
* Wouter Bolsterlee (nl)
* A S Alam (pa)
* Duarte Loreto (pt)
* Daniel Nylander (sv)
* Maxim Dziumanenko (uk)
================
Atril 2.29.92
================
Bug fixes:
* Fix build with gtk+ >= 2.19.7
Translation updates:
* Gil Forcada (ca)
* Bruce Cowan (en_GB)
* Iñaki Larrañaga Murgoitio (eu)
* Gabor Kelemen (hu)
* Gintautas Miliauskas (lt)
* Anita Reitere (lv)
* Umarzuki bin Mochlis Moktar (ms)
* Piotr Drąg (pl)
* Yuri Kozlov (ru)
* Miloš Popović (sr@latin)
* Милош Поповић (sr)
* Daniel Nylander (sv)
================
Atril 2.29.91
================
New Features and UI Improvements:
* DVI backend support on windows (#602910, Hib Eris)
Documentation fixes:
* Modernise API docs (Christian Persch)
Bug fixes:
* Fix dpi calculation (#608586, Juanjo Marín)
* Allow adding actions for more than one item in view popup menu
(#609497, Carlos Garcia Campos)
* Add mateconf schemas for comic cbt files (#609501, Carlos Garcia
Campos)
* Update totem-scrsaver from totem sources (#610173, Carlos Garcia
Campos)
* Fix linking with pedantic linkers (#609895, Hib Eris)
* Do not link atril shell to poppler directly (#608832, Hib Eris)
* Several translatable messages fixed (#608698, Philip Withnall)
Translation updates:
* Khaled Hosny (ar)
* Krasimir \"Bfaf\" Chonov (bg)
* Sadia Afroz (bn)
* Christian Kirbach (de)
* nikosCharonitakis (el)
* Philip Withnall (en_GB)
* Jorge González (es)
* Ivar Smolin (et)
* Claude Paroz (fr)
* Fran Diéguez (gl)
* Hideki Yamane (Debian-JP) (ja)
* Kjartan Maraas (nb)
* Wouter Bolsterlee (nl)
* Henrique P. Machado (pt_BR)
* Adi Roiban (ro)
* Matej Urbančič (sl)
* Dr,T,Vasudevan (ta)
* Theppitak Karoonboonyanan (th)
* Chao-Hsiung Liao (zh_HK)
* Chao-Hsiung Liao (zh_TW)
================
Atril 2.29.5
================
New Features and UI Improvements:
* Make Home/End keys go to first/last page in presentation mode
too (#358462, Carlos Garcia Campos)
* Allow finish presentation by clicking on end page (#309364,
Carlos Garcia Campos)
* Add custom print tab to printing dialog with several page scale
options (#599468, #599470, #599547, Adrian Johnson)
* Add support for remote files in atril thumbnailers (#605218,
Carlos Garcia Campos)
* Add atril icon to the windows executable (#596401, Hib Eris)
Bug fixes:
* Fix transition of pages with duration=0 in presentation mode
(Carlos Garcia Campos)
* Fix vertical white line shown in presentation mode with
documents with black background (#438760, Carlos Garcia Campos)
* Fix fickering and blank screen issues when changing pages fast
in presentation mode (#602738, Carlos Garcia Campos)
* Fix printing on Windows (#604705, Hib Eris)
* Disable text selection in presentation mode (#605554, Carlos
Garcia Campos)
* Make comics backend also compile on Windows (#605146, Hib Eris)
* Remove comics_regex_quote() in favor of always using
g_shell_quote() (#605092, Juanjo Marín)
* Properly redrawn properties view when document is reloaded
(#605169, Carlos Garcia Campos)
Translation updates:
* Khaled Hosny (ar)
* Jorge González (es)
* Kjartan Maraas (nb)
* Matej Urbančič (sl)
* Daniel Nylander (sv)
* Theppitak Karoonboonyanan (th)
* Maxim Dziumanenko (uk)
================
Atril 2.29.4
================
New Features and UI Improvements:
* Always show rotate icons (#599398, Carlos Garcia Campos)
* EvPrintOperation has been moved to libview so that it can
be used by EvView users (#604750, Tomeu Vizoso)
* Support for cbt comic files (#588266, Juanjo Marín)
Bug fixes:
* Do not fail to open external uri links that are relative paths
(#604716, Carlos Garcia Campos)
* Do not hardcode BINDIR on Windows (#605001, Hib Eris)
* Fix a crash in djvu backend on windows (#604919, Hib Eris)
* Replace mkdtemp with our own _ev_g_mkdtemp to make it portable
(#604917, Hib Eris)
* Include a copy of some icons from mate-icon-theme to be used as
fallback on platforms like window where mate-icon-theme is not
available (#596400, Hib Eris)
* Fix 0x0 page size always shown in properties view (Carlos Garcia
Campos)
* Do not hide page selector widget on invalid input (#603714,
Carlos Garcia Campos)
* Split EvPixbufCache into dynamic and static data. Static page
data (links, annots, images, text and forms) that don't
depend on current scale/rotation, have been moved to EvPageCache
and are never removed. (#602405, Carlos Garcia Campos)
* Fix a typo in EV_RENDER_CONTEXT macro definition (#603857,
Gustavo Carneiro)
* Code cleanups and improvements in libview (#603858, Carlos
Garcia Campos)
Translation updates:
* Khaled Hosny (ar)
* Yaron Shahrabani (he)
* Kjartan Maraas (nb)
* Matej Urbančič (sl)
* Tao Wei (zh_CN)
================
Atril 2.29.3
================
New Features and UI Improvements:
* Add inverted colors view mode (#321823, Juanjo Marín, Carlos
Garcia Campos)
* Add options to open/save attachment annotations to context menu
(Carlos Garcia Campos)
Bug fixes:
* Fix infinite loop when scrollbar visibility changes in fit-with
mode (Carlos Garcia Campos)
* Fix rendering issue in dual/continuous mode (#602742, José
Aliste)
* Do not resize the window when zoom in/out with CTRL+Scroll
(#602798, Carlos Garcia Campos)
* Keep scroll position when reloading (#602445, Carlos Garcia
Campos)
* Make "p" and "n" accels unsensitive while searching (Carlos
Garcia Campos)
Translation updates:
* Jorge González (es)
* Ivar Smolin (et)
* Yaron Shahrabani (he)
* Nils-Christoph Fiedler (nds)
* Matej Urbančič (sl)
* Tao Wei (zh_CN)
================
Atril 2.29.2
================
New Features and UI Improvements:
* Add support for PDF File Attachment Annotations (#601839, Carlos
Garcia Campos)
* Use "n" and "p" keys for page jump (#601217, Carlos Garcia
Campos)
* Update actions sensitivity when mateconf keys change (#568433,
Carlos Garcia Campos)
Documentation fixes:
* Make series ID unique (#599726, Christian Persch)
Bug fixes:
* Fix saving attachments (Carlos Garcia Campos)
* Make sure view is redrawn as soon as current page is rendered
(#601433, Carlos Garcia Campos)
* Fix documentation of default flag values in configure (Emmanuel
Fleury)
* Do not mark properties name and desc as translatable (#509824,
Carlos Garcia Campos)
* Fix build with glib < 2.22.0 (#600338, Christian Spurk)
* Disable print page setup options according to lockdown (#568433,
Carlos Garcia Campos)
* Fix loading of remote files (Carlos Garcia Campos)
* Correctly process --with-smclient arguments (#590174, Christian
Persch)
Translation updates:
* Thomas Thurman (en@shaw)
* Jorge González (es)
* Ivar Smolin (et)
* Antón Méixome (gl)
* Kjartan Maraas (nb)
* Matej Urbančič (sl)
* Daniel Nylander (sv)
* Dr.T.Vasudevan (ta)
* 樊栖江(Fan Qijiang) (zh_CN)
================
Atril 2.29.1
================
New Features and UI Improvements:
* Embed page setup settings in the print dialog (#591551, Marek
Kašík, Carlos Garcia Campos)
* A new tab has been added to properties dialog to show
* information about the document license (#349173, Juanjo Marín,
Carlos Garcia Campos)
* Use different processes for every document opened. (#583680,
#434966, #497388, #524633, #586087, Carlos Garcia Campos)
* Use GVFS metadata instead of our own xml based
implementation. (#586841, Carlos Garcia Campos)
* When scrolling a page, move one screen leaving one line context
to help to visually track the document as it moves. (#170871,
Carlos Garcia Campos)
* Use GtkInfoBar instead of GeditMessageArea for the message area
(#592785, Carlos Garcia Campos)
* EvPageCache has been splitted up into document part (moved to
EvDocument which has been converted into an abstract class
instead of an interface) and view part: EvDocumentModel. This
allows to have more than one EvView for the same document, so
that "Open a Copy" can be implemented without using the symlink
hack. (#573641, Carlos Garcia Campos)
Bug fixes:
* Several fixes and cleanups in comics backend (Christian Persch)
* Don't exit with non-writable $HOME (Christian Persch)
* Clean up temp file handling to make sure we can cope with not
being able to create our temp directory (#595372, Christian Persch)
* Set page orientation of each page when printing so that
documents with mixed portrait/landscape pages print correctly
(#599470, Adrian Johnson)
* Preserve aspect ratio when scaling page for printing (#599468,
Adrian Johnson)
* Fix a crash when we don't have a DBUS connection (Christian Persch)
* Make sure total_num_bytes > 0 before using it in progress
callbacks (#597691, Carlos Garcia Campos)
* Escape document URI before showing it in progress area (#597691,
Carlos Garcia Campos)
* Fix a crash due to an uninitialized variable (#597154, Carlos
Garcia Campos)
* Fix a crash when there are form field widgets active during
rotation (#593316, Carlos Garcia Campos)
* Remarks the selected thumbnail after rotation (#595548, Juanjo Marín)
* Don't change current page when rotating documents with different
page sizes (#595704, Carlos Garcia Campos)
* Fix thumbnails rotation when loading a rotated document
(#595718, Carlos Garcia Campos)
* Save images as png or jpg when the filename has no extensions
(#595079, Patrick Ammann)
* Populate destination page when reloading the document (#570054,
Fernando Herrera)
Translation updates:
* Khaled Hosny (ar)
* Astur (ast)
* Krasimir \"Bfaf\" Chonov (bg)
* Runa Bhattacharjee (bn_IN)
* Gil Forcada (ca)
* Marek Černocký (cs)
* Kenneth Nielsen (da)
* Mario Blättermann (de)
* Kostas Papadimas (el)
* Philip Withnall (en_GB)
* Jorge González (es)
* Ivar Smolin (et)
* Iñaki Larrañaga Murgoitio (eu)
* Tommi Vainikainen (fi)
* Claude Paroz (fr)
* Antón Méixome (gl)
* Sweta Kothari (gu)
* Gabor Kelemen (hu)
* Andika Triwidada (id)
* Francesco Marletta (it)
* Shushi Kurose (ja)
* Shankar Prasad (kn)
* Changwoo Ryu (ko)
* Gintautas Miliauskas (lt)
* Sangeeta Kumari (mai)
* Ani Peter (ml)
* Sandeep Shedmake (mr)
* Kjartan Maraas (nb)
* Reinout van Schouwen (nl)
* Manoj Kumar Giri (or)
* A S Alam (pa)
* Piotr Drąg (pl)
* André Gondim (pt_BR)
* Duarte Loreto (pt)
* Lucian Adrian Grijincu (ro)
* Matej Urbančič (sl)
* Miloš Popović (sr@latin)
* Милош Поповић (sr)
* Daniel Nylander (sv)
* Dr.T.Vasudevan (ta)
* Krishna Babu K (te)
* Theppitak Karoonboonyanan (th)
* Baris Cicek (tr)
* Maxim Dziumanenko (uk)
* Aron Xu (zh_CN)
* Chao-Hsiung Liao (zh_HK)
* Chao-Hsiung Liao (zh_TW)
================
Atril 2.27.90
================
Bug fixes:
* Let scroll wheel change page when in non-continuous best-fit
mode (#562257, Philip Langdale)
* Show print progress information when using GtkPrintOperation
* Don't show crash recovery dialog when requested file is the only
one to be recovered (#578894, Carlos Garcia Campos)
* Disable crash recovery when D-BUS is disabled (#578894, Carlos
Garcia Campos)
* Grab focus on view widget after setting metadata (#589300,
Nickolay V. Shmyrev)
* Fixes segmentation violation when print file format is empty
(#589226, Andreas Liebe)
* Use AM_V_GEN to make custom commands silent (#585355, Javier Jardón)
* Don't install schema files when building without mateconf (Nickolay
V. Shmyrev)
Translation updates:
* Khaled Hosny (ar)
* Maruf Ovee (bn)
* Denis (br)
* Gil Forcada (ca)
* Carles Ferrando Garcia (ca@valencia)
* Marek Černocký (cs)
* Mario Blättermann (de)
* Seán de Búrca (ga)
* Antón Méixome (gl)
* Kjartan Maraas (nb)
* André Gondim (pt_BR)
* Daniel Nylander (sv)
* Theppitak Karoonboonyanan (th)
* Chao-Hsiung Liao (zh_HK)
* Chao-Hsiung Liao (zh_TW)
================
Atril 2.27.4
================
Bug fixes:
* Compute selections on button press for word/line selections
(#562059, Carlos Garcia Campos)
* Fix several even/odd multipage issues (#583429, Bartek Kostrzewa)
* Register thumbnailing for gzip/gzip dvi files (#588013, Emilio
Pozuelo Monfort)
* Get rid of shave with AM_SILENT_RULES automake option (#585355,
Javier Jardón)
* Make atril output pdf on supported printers (#585442, Johan Brannlund)
* Fix build on windows (Fridrich Strba)
* Determine data directory on runtime on windows (Fridrich Strba)
* Fix build without MateConf (Nickolay V. Shmyrev)
* Fix several introspection build issues (#585971, Christian Persch)
Translation updates:
* Giannis Katsampirhs (el)
* Jonathan Ernst (fr)
* Daniel Nylander (sv)
* Maxim Dziumanenko (uk)
* Clytie Siddall (vi)
* Nguyễn Đình Trung (vi)
================
Atril 2.27.3
================
New Features and UI Improvements:
* Update the hildon port (Christian Persch)
* Complete the win32 port (#339172, Hib Eris)
* Allow activate the menubar in fullscreen mode (#504243, Carlos
Garcia Campos)
* Do not create popup window if the annot doesn't have a popup
(Carlos Garcia Campos)
* Add tests for printer settings (#583976, Bartek Kostrzewa)
* Remember and reuse "Save a Copy..." path (#485195, Carlos Garcia Campos)
* Support for cb7 using the p7zip commands in comics backend
(#565174, Juanjo Marín)
* Parse xml metadata to detect PDF/A documents (#582206, Davide Capodaglio)
Bug fixes:
* Several build fixes and improvements (Christian Persch)
* Fix page transitions in presentation mode (#583652, #581881,
Carlos Garcia Campos)
* Scale according to paper size before rendering for printing
(Carlos Garcia Campos)
* Fix multipage even/odd printing issues (#583429, #583388, Bartek
Kostrzewa)
* Gracefully work with FITB destinations and friends (#583276,
Matthias Drochner)
* Fix double to int conversion in thumbnails_get_dimensions
(#581524, Carlos Garcia Campos)
* Ohter bugs fixed: #584617, #585497
Translation updates:
* Runa Bhattacharjee (bn_IN)
* Mario Blättermann (de)
* Jorge González (es)
* Ivar Smolin (et)
* Kjartan Maraas (nb)
* Vladimir Melo (pt_BR)
* Dr.T.Vaasudevan (ta)
================
Atril 2.27.1
================
New Features and UI Improvements:
* Use GtkPrintOperation when printing for the backends that
support rendering into a cairo context (#557112, Carlos Garcia Campos)
* Recover previous session when running atril after a crash
(#578894, Carlos Garcia Campos)
* Preliminary annotations support (#315002, Carlos Garcia Campos,
Iñigo Martínez)
* Rename Print Setup menu entry as Page Setup for consistency with
the GTK+ dialog title (#581109, Nickolay V. Shmyrev)
* Added F3 as a find-next accelerator key (#579072, Michael J. Chudobiak)
* Support the free Gna! unrar tool in comics backend (#552074,
Juanjo Marín)
* Add atril-previewer as a separate applicaton that implements
the printing preview (Carlos Garcia Campos)
Bug fixes:
* Fix handling of the tmp folder (#582108, Juanjo Marín)
* Abort dnd operations originated in the same Atril window
(#582077, Carlos Garcia Campos)
* Disable bouncing during scrolling (#533534, Martin Pohlack)
* Fix build without mateconftool-2 (#581441, Christian Persch)
* Fix documentation build (#579671, Nickolay V. Shmyrev)
* Fix error handling of broken documents (#580886, Nickolay V. Shmyrev)
* Fix several memory leaks in comics backend (#552074, Juanjo Marín)
* Escape URIs for display (#581064, Nickolay V. Shmyrev)
* Resync with libegg to remove deprecated GTK+ symbols (#580556,
Javier Jardón)
* Correct check for exit status of commands in comics backend
(#579656, Juanjo Marín)
* Add -no-undefined flag for Cygwin build (#580058, Yaakov Selkowitz)
* Use g_file_make_symbolic_link to create symlinks (#339172, Hib Eris)
* Delete the temp symlink created when opening a copy (Carlos
Garcia Campos)
* Don't redraw again when zoom is set more than once to the same
scale factor (Carlos Garcia Campos)
* Fix print preview of empty selection (#517735, Juanjo Marín)
* Don't prevent unmounting in case the initial cwd is on an
external device (#575436, Carlos Garcia Campos)
* Create and load the document based on the mime-type provided by
caja instead of using our own documents factory. (#533917,
Carlos Garcia Campos)
* Fix endianess issues in dvi and tiff backends (#578433, #509920,
Benjamin Berg)
* Fix memory leak in tiff backend (#578285, Nickolay V. Shmyrev)
* Fix path where accels file is saved (#577500, Nickolay
V. Shmyrev)
* Fix fading animations (Nickolay V. Shmyrev)
* Translate the categories in the caja properties tab
(#575085, Christian Persch)
* Other bugs fixed: #539972, #578436, #582543
Translation updates:
* Jorge Gonzalez (es)
* Manoj Kumar Giri (or)
* Ivar Smolin (et)
* Vladimir Melo (pt_BR)
* Matej Urban (sl)
* Khaled Hosny (ar)
* Miloš Popović (sr)
* Funda Wang (zh_CN)
* Amitakhya Phukan (as)
* Baris Cicek (tr)
================
Atril 2.26.0
================
Bug fixes:
* Fix compiler warning when building with -Wformat (#574168,
Tobias Mueller)
* Fix a crash with encrypted documents (Christian Persch)
Translation updates:
* F Wolff (af)
* Martin Picek (cs)
* Fotis Tsamis (el)
* Ivar Smolin (et)
* Suso Baleato (gl)
* Yaron Shahrabani (he)
* Gabor Kelemen (hu)
* Francesco Marletta (it)
* Shankar Prasad (kn)
* Gintautas Miliauskas (lt)
* Sangeeta Kumari (mai)
* Ani Peter (ml)
* Sandeep Shedmake (mr)
* Manoj Kumar Giri (or)
* Fabrício Godoy (pt_BR)
* Mișu Moldovan (ro)
* Yuriy Penkin (ru)
* I. Felix (ta)
* Krishna Babu K (te)
================
Atril 2.25.92
================
Bug fixes:
* Show the 'jump to page' window in the right GdkScreen (#560541,
Carlos Garcia Campos)
* Make our own thumbnail when the provided one doesn't have the
needed size (#323198, #307357, Christian Spurk, Carlos Garcia Campos)
* Reduce the restriction on the minimum size of thumbnails from 40
to 1 (#323198, Christian Spurk)
* Use GOption in thumbnailer (Carlos Garcia Campos)
* Fix saving a copy of encrypted PDF documents (#566791, Carlos
Garcia Campos)
* Don't use g_quark_from_static_string in a loadable module
(Christian Persch)
* Use g_object_unref() instead of gdk_pixbuf_unref() in impress
backend (#571707, Thomas H.P. Andersen)
Translation updates:
* Ihar Hrachyshka (be@latin)
* Alexander Shopov (bg)
* Gil Forcada (ca)
* Petr Kovar (cs)
* Christian Kirbach (de)
* David Lodge (en_GB)
* Juanje Ojeda Croissier (es)
* Iñaki Larrañaga Murgoitio (eu)
* Ilkka Tuohela (fi)
* Claude Paroz (fr)
* Sweta Kothari (gu)
* Yuval Tanny (he)
* Takeshi AIHANA (ja)
* Changwoo Ryu (ko)
* Kjartan Maraas (nb)
* Duarte Loreto (pt)
* Daniel Nylander (sv)
* Chao-Hsiung Liao (zh_HK)
* Chao-Hsiung Liao (zh_TW)
================
Atril 2.25.91
================
Bug fixes:
* Fix several memory leaks (Christian Persch)
* Fix errors handling and propagation (Christian Persch)
* Fix several translation strings in properties dialog (#571787,
Nickolay V. Shmyrev)
* Do not resize the window on reloading (#571051, #304249, Carlos
Garcia Campos)
* Experimental introspection support (#569083, Christian Persch)
* Use g_set_error_literal() (Christian Persch)
* Other firxes for win32 (#339172, Hib Eris)
* Make session manager code compile for win32 (#339172, Carlos
Garcia Campos)
* Update totem-screensaver from totem svn to make it build for
win32 (#339172, Hib Eris)
* Make use of MateConf optional (#339172, Hib Eris, Carlos Garcia Campos)
* Fix i18n in libdocument (Christian Persch)
* Include gi18n-lib.h instead of gi18n.h in libs and backends
(Christian Persch)