Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/NEWS
blob: b15e2a0be143b3c07e9d952923b84834270e7404 (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
================
Evince  2.25.91
================

Bug fixes:

    * Fix several memory leaks (Christian Persch)
    * Fix errors handling and propagation (Christian Persch)
    * Fix several translation strings in properties dialog (#571787,
      Nickolay V. Shmyrev)
    * Do not resize the window on reloading (#571051, #304249, Carlos
      Garcia Campos)
    * Experimental introspection support (#569083, Christian Persch)
    * Use g_set_error_literal() (Christian Persch)
    * Other firxes for win32 (#339172, Hib Eris)
    * Make session manager code compile for win32 (#339172, Carlos
      Garcia Campos)
    * Update totem-screensaver from totem svn to make it build for
      win32 (#339172, Hib Eris)
    * Make use of GConf optional (#339172, Hib Eris, Carlos Garcia Campos)
    * Fix i18n in libdocument (Christian Persch)
    * Include gi18n-lib.h instead of gi18n.h in libs and backends
      (Christian Persch)

Translation updates:

    * Mikel González (ast)
    * Ihar Hrachyshka (be@latin)
    * Kenneth Nielsen (da)
    * Dawa pemo (dz)
    * Juanje Ojeda Croissier (es)
    * Ivar Smolin (et)
    * Iñaki Larrañaga Murgoitio (eu)
    * Gabor Kelemen (hu)
    * Takeshi AIHANA (ja)
    * Shankar Prasad (kn)
    * Arangel Angov (mk)
    * Wouter Bolsterlee (nl)
    * Tomasz Dominikowski (pl)
    * Taylon (pt_BR)
    * Горан Ракић (sr)
    * Daniel Nylander (sv)
    * Theppitak Karoonboonyanan (th)
    * Clytie Siddall (vi)
    * Gan Lu (zh_CN)
    * Chao-Hsiung Liao (zh_HK)
    * Chao-Hsiung Liao (zh_TW)

================
Evince  2.25.90
================

Bug fixes:

    * Split API documentation into libdocument, libview and shell
      (#568465, Carlos Garcia Campos)
    * Fix symbols conflict in impress backend (#569998, Christian Persch)
    * Add mnemonics to buttons in search bar (#569212, Carlos Garcia
      Campos)
    * Fix a crash when printing (#569328, Carlos Garcia Campos)
    * Fix --version command line option (#562869, Christian Persch)
    * Use versioned directory for backends (#569082, Christian Persch)
    * Add EV_DEFINE_BOXED_TYPE and EV_DEFINE_INTERFACE macros
      (#568228, Carlos Garcia Campos)
    * Sync EggToolbarEditor with libegg (Nickolay V. Shmyrev)
    * Respect directory umask and setgid when saving files (#568593,
      Michael J. Chudobiak)
    * Add libtool versioning, pkg-config files and single headers for
      libdocument and libview (#568224, #568220, #568229, #568227,
      Christian Persch) 
    * Remove G_OBJECT casts from g_signal_connect calls (#568386, Hiroyuki
      Ikezoe)
    * Install several missing header files of libdocument and libview
      (#567787, #567790, Tomeu Vizoso)
    * Other bugs fixed: #569120, #569231, #569327, #570077

Translation updates:    
    
    * Hendrik Richter (de)
    * Ivar Smolin (et)
    * Gabor Kelemen (hu)
    * Changwoo Ryu (ko)
    * Kjartan Maraas (nb)
    * Daniel Nylander (sv)

================
Evince  2.25.5
================

Code changes:

    * Move EvView specific code to a libevview library so that it can
      be embbeded in other applications (#567751, Tomeu Vizoso, Carlos
      Garcia Campos)
    * Other improvements for embbeders (#567785, #567788, #567789,
      Tomeu Vizoso)

Bug fixes:

    * Fix a minor typo (Michal Vaner)
    * Fix the API docs build (#568171, Christian Persch)
    * Simplify drag data handling (#558084, Christian Persch)
    * Several portability issues (#339172, Hib Eris)
    * Fix mnemonic conflict (#567937, Carlos Garcia Campos)
    * Other bugs fixed: #567910

Translation updates:

    * Gil Forcada (ca)
    * Hendrik Richter (de)
    * Juanje Ojeda Croissier (es)
    * Kjartan Maraas (nb)
    * Gan Lu (zh_CN)
    
================
Evince  2.25.4
================

New Features and UI Improvements:

    * Show progress information when loading/saving remote files
      (#370958, Carlos Garcia Campos)
    * Remember page setup options (#525185, #349102, Carlos Garcia Campos)
    * Show a confirmation dialog when there are pending print jobs
      while closing the main window (#480964, Carlos Garcia Campos)
    * Show progress information when printing (#482770, Carlos Garcia Campos)
    * Add document URI to properties page (#555376, Carlos Garcia Campos)

Bug fixes:

    * Bump glib requirement to fix build with older versions
      (Christian Spurk)
    * Fix mime type handling (Hib Eris)
    * Fix saving images to remote locations (Carlos Garcia Campos)
    * Do not try to jump to the location of the find result for every
      match, but only for the first one. It makes searching really
      faster. (#564774, Michael Hunold)
    * Fix zip mime-type in comics backend (Juanjo Marín)
    * Fix several memory leaks (Carlos Garcia Campos)

Translation updates:

    * Ihar Hrachyshka (be@latin)
    * Juanje Ojeda Croissier (es)
    * Yuval Tanny (he)
    * Kjartan Maraas (nb)
    * Taylon (pt_BR)
    * Gan Lu (zh_CN)

================
Evince  2.25.2
================

New Features and UI Improvements:

    * PDF Optional content (layers) support. (Carlos Garcia Campos)
    * The password dialog has been reworked in order to make it more
      hig compliant and consistent (#562496, Carlos Garcia Campos)
    * Improved keyring support. Password dialog is not shown anymore
      when the password is already in the keyring (Carlos Garcia Campos)
    * Support for monitor and reload of remote documents
      (#555399, Carlos Garcia Campos)

Bug fixes:

    * Fix opening comic documents with a wrong but valid extension
      (#562143, Carlos Garcia Campos)
    * Fix a crash when searching (#558377, Carlos Garcia Campos)
    * Fix several crashes when selecting text (#561393, Marek Kašík)

Translation updates:

    * Jorge González (es)
    * Nguyễn Đình Trung (vi)

================
Evince  2.25.1
================

New Features and UI Improvements:

    * Use the message area instead of popup dialogs for any error and
      warning messages (Carlos Garcia Campos)

Bug fixes:

    * Adapt to the new single-include policy (#558064, Christian Persch)
    * Fix page transition in presentation mode (#516749, Nickolay V. Shmyrev)
    * Other bugs fixed: (#558066, Christian Persch)

Translation updates:

    * Hendrik Richter (de)
    
================
Evince  2.24.1
================

Bug fixes:

    * Disable toggle function of F5 when in presentation mode
      (#556162, Dave Neary)
    * Create a loading thumbnail for every different page size
      (#556264, Carlos Garcia Campos)
    * Fix several memory leaks (Carlos Garcia Campos)
    * Do not show bad titles like 'Microsoft Word' in the window title
      bar (#534684, Robin Sonefors and Nickolay V. Shmyrev)
    * Fix mailto links which were considered as http uris (#555801,
      Carlos Garcia Campos)
    * Fix launching external applications (#554500, Carlos Garcia Campos)
    * Other bugs fixed (#552382, #553369, #555134, Carlos Garcia Campos)

Translation updates:

    * Ihar Hrachyshka (be@latin)
    * Adrian Guniš (cs)
    * Kenneth Nielsen (da)
    * Ivar Smolin (et)
    * Takeshi AIHANA (ja)

================
Evince  2.24.0
================

Bug fixes:

    * Use GdkAppLaunchContext when available to launch external uris
      (Carlos Garcia Campos)
    * Use the message area to show errors when lauching external uris
      instead of a popup window (Carlos Garcia Campos)
    * Assume invalid uris are http uris (#552071, Carlos Garcia
      Campos)

Translation updates:

    * Usama Akkad (ar)
    * Gil Forcada (ca)
    * Kenneth Nielsen (da)
    * Hendrik Richter (de)
    * nikosCharonitakis (el)
    * Ilkka Tuohela (fi)
    * Sweta Kothari (gu)
    * Gabor Kelemen (hu)
    * Francesco Marletta (it)
    * Shankar Prasad (kn)
    * Changwoo Ryu (ko)
    * Gintautas Miliauskas (lt)
    * Arangel Angov (mk)
    * Santhosh Thottingal (ml)
    * Sandeep Shedmake (mr)
    * wadim dziedzic (pl)
    * Mișu Moldovan (ro)
    * Alexandre Prokoudine (ru)
    * Горан Ракић (sr)
    * Dr.T.Vasudevan (ta)
    * Baris Cicek (tr)
    * Chao-Hsiung Liao (zh_HK)
    * Chao-Hsiung Liao (zh_TW)
    
================
Evince  2.23.92
================

Bug fixes:

    * Allow page scrolling with PageUp/PageDown keys when find bar is
      active (#529833, Carlos Garcia Campos)
    * Search in page labels is now case-insensitive (#550136, Michael Lee)
    * Do not append the file extension twice when saving an image
      (Carlos Garcia Campos)
    * Correctly restore the cursor after showing the context menu
      (Carlos Garcia Campos)
    * Grab the mediakeys with a low priority so that it doesn't
      interfere with other applications like a music player
      (#547164, Eric Piel)

Translation updates:

    * Alexander Shopov (bg)
    * Petr Kovar (cs)
    * David Lodge (en_GB)
    * Jorge González (es)
    * Ivar Smolin (et)
    * Iñaki Larrañaga Murgoitio (eu)
    * Robert-André Mauchin (fr)
    * Ignacio Casal Quinteiro (gl)
    * Kjartan Maraas (nb)
    * Wouter Bolsterlee (nl)
    * Leonardo Ferreira Fontenelle (pt_BR)
    * Duarte Loreto (pt)
    * Laurent Dhima (sq)
    * Daniel Nylander (sv)
    * Theppitak Karoonboonyanan (th)
    * Clytie Siddall (vi)
    * Funda Wang (zh_CN)
      
================
Evince  2.23.91
================

New Features and UI Improvements:

    * Use EggSMClient from libegg instead of gnome-client and remove
      libgnome and libgnomeui dependencies (Carlos Garcia Campos)
    * Implement document_get_page_label in tiff backend (Carlos Garcia
      Campos)
      
Bug fixes:

    * Start up in the right workspace when resuming a previous session
      (Carlos Garcia Campos)
    * Fix metacity warnings shown in ~/.xsession-errors (Carlos
      Garcia Campos)
    * Fix a crash due to an idle function called with an already
      destroyed object (#549163, Carlos Garcia Campos)
    * Fix problems when opening or saving attachments (#548653, Carlos
      Garcia Campos)
    * Handle document orientation in tiff backend (#548444, Carlos
      Garcia Campos)
    * Fix a crash when adjustment page size is 0 (#547440, Carlos
      Garcia Campos)
    * Other bugs fixed: #548462

Translation updates:

    * Runa Bhattacharjee (bn_IN)
    * Gil Forcada (ca)
    * Mario Blättermann (de)
    * Dawa pemo (dz)
    * Jorge González (es)
    * Iñaki Larrañaga Murgoitio (eu)
    * Ilkka Tuohela (fi)
    * Takeshi AIHANA (ja)
    * Shankar Prasad (kn)
    * Gintautas Miliauskas (lt)
    * Arangel Angov (mk)
    * Manoj Kumar Giri (or)
    * Vladimir Melo (pt_BR)
    * Chao-Hsiung Liao (zh_HK)
    
================
Evince  2.23.6
================

Bug fixes:

    * Correctly build desktop file (#544237, Götz Waschk)

Other changes:

    * Cleanup #include statements. (Wouter Bolsterlee)
    * The jobs system has been reworked in order to make it simpler
      and easier to extend. (Carlos Garcia Campos)
    * Add a profile mode available when debug is enabled (Carlos
      Garcia Campos)      

Translation updates:

    * Djihed Afifi (ar)
    * Adrian Guniš (cs)
    * Pierre Lemaire (fr)
    * Duarte Loreto (pt)
      
================
Evince  2.23.5
================

New Features and UI Improvements:

    * Intercept window manager's fullscreen request in order to
      run/stop fullscreen mode (#493541, Carlos Garcia Campos)
    * 7-zip compressed commics support (#532312, Kartik Rustagi)
    * Add Alt+Left and Alt+Right shortcuts to rotate (#539972, Bastien
      Nocera)
    * Media player keys support (#539971, Bastien Nocera)

Bug fixes:

    * Restart the job search when the find bar is opened for the
      second time (#531956, Carlos Garcia Campos)
    * Fixes nautilus crash caused by evince properties page extension
      (#542548, Carlos Garcia Campos)
    * Fix Solaris build (#542924, Darren Kenny)
    * Fix endianess bug (#540950, Benjamin Jacobs)
    * Other bugs fixed: #542001

Translation updates:

    * Jorge González (es)
    * Ivar Smolin (et)
    * Ignacio Casal Quinteiro (gl)
    * Yuval Tanny (he)
    * Rakesh Pandit (ks)
    * Kjartan Maraas (nb)
    * Wouter Bolsterlee (nl)
    * Zabeeh Khan (ps)
    * Daniel Nylander (sv)
    * Theppitak Karoonboonyanan (th)
    
================
Evince  2.23.4
================

New Features and UI Improvements:

    * A warning message is shown in the message area when the document
      has no pages (#171588, Carlos Garcia Campos)
    * Automaticly reload the document when the file has changed on
      disk (#304249, Carlos Garcia Campos)
    * Added Ctrl-Insert keybinding for copying text and Ctrl+N for
      opening a copy (#526523, #532239, Carlos Garcia Campos)
    * Save as action has been added as a toolbar button too. (Abhishek Mukherjee)
    * Primary selection is also updated when copying a link address
      (#520855, Carlos Garcia Campos)
    * Added GtkMountOperation, copied from gtk+. (Carlos Garcia Campos)
    * GS code has been removed, libspectre is now required to build the
      PostScript backend. (Carlos Garcia Campos)

Bug fixes:

    * Fixed a crash when opening documents with no pages
      (#537574, Carlos Garcia Campos)
    * Fixed a crash when running in debug mode (Daniel M. German)
    * Fixed a crash in impress backend (#530852, Hans Petter Jansson)
    * Improved error handling in djvu backend (#530202, Carlos Garcia Campos)
    * Do not use the pixbuf backend for rendering tiff documents when
      the tiff backend is available (#520290, Carlos Garcia Campos)
    * Fixed T1 font rendering in dvi backend (#536883, Mattias Nissler)
    * Other bugs fixed: #533323, #533897, #533896, #534493, #537535

Thanks:

    Matthias Drochner, Frederic Peters, Cosimo Cecchi

Translation updates:

    * Djihed Afifi (ar)	

    
================
Evince  2.22.1.1
================

Bug fixes:

    *  Fix build in FreeBSD (#526799, Michael Johnson, Carlos Garcia Campos)
    *  Fixes djvu backend links (#526517, Carlos Garcia Campos)

===============
Evince  2.22.1
===============

Bug fixes:

    * Add compressed dvi to the list of supported mime types
      (#307087, Ed Catmur)
    * Fix a crash when printing a range that doesn't specify the start
      or end page (#524288, Carlos Garcia Campos)
    * Fix a crash when thumbnail failed to render in PS backend
      (#525015, Carlos Garcia Campos)
    * Open default application when launching an external uri
      (#525009, Emil Soleyman)
    * Add a configure option to enable/diable DBus (#521797, Rémi Cardona)
    * Fix printing in documents with rotated pages (#512648, Eugen Dedu)
    * Do not append file extension twice when saving an image
      (#523069, Carlos Garcia Campos, Wouter Bolsterlee)
    * Cancel find operation when the find bar is closed
      (#508845, Carlos Garcia Campos)
    * Several printing fixes: collate, reverse and copies were broken
      (#365332, Eugen Dedu)
    * Fix selection rendering when poppler is compiled with splash
      backend (Carlos Garcia Campos).
    * Other bugs fixed: #521224, #524112

Translation updates:

    * Alexander Nyakhaychyk (be)
    * Yavor Doganov (bg)
    * David Lodge (en_GB)
    * Jorge González (es)
    * Ivar Smolin (et)
    * Clytie Siddall (vi)

===============
Evince  2.22.0
===============

Bug fixes:

    * Do not print when Escape is pressed to close printing dialog
      (#495107, Wouter Bolsterlee)
    * Fix a crash in nautilus properties page (#519679, Carlos Garcia Campos)
    * Fix a crash with transition effects (#519106, Carlos Garnacho)
    * Fix document mime type detection (#518874, Carlos Garcia Campos)
    * Fix a crash in forms (#518831, Carlos Garcia Campos)
    * Fix images extraction (#516237, Carlos Garcia Campos)
    
Translation updates:

    * Djihed Afifi (ar)
    * Ihar Hrachyshka (be@latin)
    * Petr Kovar (cs)
    * Kenneth Nielsen (da)
    * nikosCharonitakis (el)
    * David Lodge (en_GB)
    * Jorge González (es)
    * Ivar Smolin (et)
    * Ilkka Tuohela (fi)
    * Claude Paroz (fr)
    * Ignacio Casal Quinteiro (gl)
    * Ankit Patel (gu)
    * Yuval Tanny (he)
    * Gabor Kelemen (hu)
    * Luca Ferretti (it)
    * Takeshi Aihana (ja)
    * Shankar Prasad (kn)
    * Changwoo Ryu (ko)
    * Gintautas Miliauskas (lt)
    * Arangel Angov (mk)
    * Sandeep Shedmake (mr)
    * Narayan Kumar Magar (ne)
    * Åsmund Skjæveland (nn)
    * Yannig Marchegay (Kokoyaya) (oc)
    * Hugo Doria (pt_BR)
    * Laurent Dhima (sq)
    
===============
Evince  2.21.91
===============
	
Bug fixes:
    
    * gnome-print code has been removed (#512370, Carlos Garcia Campos)
    * Fix thumbnailer crash (#513934, Matthias Clasen)
    * Fix djvu rendering (#482720, Carlos Garcia Campos)
    * Fix mime type detection based on file contents (Cosimo Cecchi, Carlos Garcia Campos)
    * Other bugs fixed: #512719, #512720, #512718, #512771, #513203
    
Translation updates:

    * Khaled Hosny (ar)
    * Amitakhya Phukan (as)
    * Hendrik Richter (de)
    * Jorge González (es)
    * Kjartan Maraas (nb)
    * Yannig Marchegay (Kokoyaya) (oc)
    * Tomasz Dominikowski (pl)
    * Vladimir Melo (pt_BR)
    * Duarte Loreto (pt)
    * Theppitak Karoonboonyanan (th)
    * Serdar CICEK (tr)
    * Woodman Tuen (zh_HK)

===============
Evince  2.21.90
===============

Important notice for distributors:

    * This release overrides document permissions by default. See
      http://bugzilla.gnome.org/show_bug.cgi?id=382700 for more information
      about this.
    * Ghostscript interface for PostScript documents is now deprecated.
      Please use libspectre (http://libspectre.freedesktop.org/)
      instead.

New features and UI improvements:

    * Port to gio and drop gnome-vfs dependency. (#510401, Cosimo Cecchi, Carlos Garcia Campos)
    * Scroll pages in page entry with mouse wheel (#324122, David Turner)
    * Automatic scrolling in context menu (#323670, David Turner)
    * Kinetic scrolling (#461271, David Turner)
    * New plugin system for backends (#351348, Carlos Garcia Campos)
    * Allow saving images in formats other than PNG (#500209, Carl-Anton
      Ingmarsson, Nickolay V. Shmyrev)
    * Add support for page transitions (#458460, Carlos Garnacho)
    * Override document restrictions by default (#382700, Wouter Bolsterlee)
    * Use up/down arrows instead of left/right (#170081, Wouter Bolsterlee)

Bug fixes:

    * Reset cursor correctly (#501603, #509958, Carlos Garcia Campos)
    * Use GSlice to allocate memory (#475972, Christian Persch)
    * Do not limit minimum zoom factor in best fit/fit width mode (#503805,
      Carlos Garcia Campos)
    * Use libspectre, if available, for the ps backend. (#317106, #499787,
      #501235, #421879, #445797, #443859, #486547, #386005, #507705, Carlos Garcia Campos)
    * Put RTL marker in recent file list (#509076, Djihed Afifi)
    * Put Nautilus extension in right place (#505359, Matthias Clasen, Brian
      Pepple, Damien Carbery, Wouter Bolsterlee)
    * Avoid filename quoting issues (#502500, Tom Parker)
    * Repair horizontal scrolling with shift (#483412, Nickolay V. Shmyrev)
    * Gnome Keyring is now an optional dependency (#509676, Marcelo Lira)
    * Reduce memory consumption by rendering images on demand (Carlos Garcia Campos)
    * Fix printing in dvi backend when filename contains white spaces. (#502839, Carlos Garcia Campos)
    * Other bugs fixed: #502843, #460658, #504721, #511635

Thanks:

    * Carlos Garcia Campos
    * Christian Persch
    * Yaakov Selkowitz
    * David Turner
    * Carl-Anton Ingmarsson
    * Carlos Garnacho
    * Djihed Afifi
    * Nickolay V. Shmyrev
    * Wouter Bolsterlee
    * Marcelo Lira

Translation updates:

    * Djihed Afifi (ar)
    * Ihar Hrachyshka (be@latin)
    * Gil Forcada (ca)
    * Jorge Gonzalez (es)
    * Priit Laes (et)
    * Inaki Larranaga Murgoitio (eu)
    * Stéphane Raimbault (fr)
    * Seán de Búrca (ga)
    * Ignacio Casal Quinteiro (gl)
    * Kjartan Maraas (nb)
    * Wouter Bolsterlee (nl)
    * Thierry Randrianiriana (mg)
    * Yannig Marchegay (oc)
    * Leonardo Ferreira Fontenelle, Hugo Doria, Rodrigo Flores (pt_BR)
    * Daniel Nylander (sv)
    * Clytie Siddall (vi)

===============
Evince  2.21.1
===============

New Features and UI Improvements:

    * Use message area for notification about errors
    * Some print settings for documents are stored in metadata
    * Added command line option for search
    * Expander with a recent documents is added to toolbar
    * Egg-recent code dropped
    * Djvu, dvi and comics are enabled by default
    * Support for links with URI's like mailto (Pascal Terjan)
    * Removed the shadow of the fullscreen toolbar

Bug fixes:

    * A lot of bug fixes from a stable branch

Thanks:
 
    To Carlos Garcia Campos who did the all the amazing work above :)

Translations:

    Changwoo Ryu (ko)
    Daniel Nylander (sv)
    Djihed Afifi (ar)
    Jorge Gonzalez (es)
    Francesco Marletta (it)
    Gabor Kelemen (hu)
    Gintautas Miliauskas (lt)
    Ignacio Casal Quinteiro (gl)
    Ihar Hrachyshka (be@latin)
    Ilkka Tuohela (fi)
    Ivar Smolin (et)
    Jorge González (es)
    Kjartan Maraas (nb)
    Matej Urbančič (sl)
    Peter Bach (da)
    Yannig Marchegay (Kokoyaya) (oc)

===============
Evince  2.20.2
===============

Bug fixes:

    * Tiff documents were rendered with wrong colors (Matthias Clasen)
    * Fix endless loop when zero pages per sheet is selected (Darren Kenny)
    * Do not jump to the first page when reloading from command line (Carlos Garcia Campos)
    * Memory leak fix (Hiroyuki Ikezoe)
    * Fix printing with poppler splash backend (Carlos Garcia Campos)
    * Fix a crash when printing with the gnome-print dialog (Carlos Garcia Campos)
    * Warning fix (Sebastien Bacher)

Translations:

    Matej Urbančič (sl)
    Youssef Chahibi (ar)

===============
Evince  2.20.1
===============

Bug fixes:

    * Printing multiple pages per sheet fixes (Carlos Garcia Campos)
    * Respect ranges order during print (Carlos Garcia Campos)
    * Silently ignore unknown form fields (Matthias Drochner)
    * Do not show the toolbar in fullscreen mode if the main toolbar is not visible (Carlos Garcia Campos)
    * Give priority to form fields over images (Carlos Garcia Campos)
    
Translations:

    Changwoo Ryu (ko)
    Francesco Marletta (it)
    Ilkka Tuohela (fi)
    Peter Bach (da)

===============
Evince  2.20.0
===============

Bug fixes:

    * Forms support broken by forgotten ifdef fix (Carlos Garcia Campos)
    * Issue with making a copy and xfer to different file system (Carlos Garcia Campos)
    * Desktop file fixes (Götz Waschk)

Translations:

    Youssef Chahibi (ar)
    Alexander Shopov (bg)
    Peter Bach (da)
    Ivar Smolin (et)
    Ignacio Casal Quinteiro (gl)
    Francesco Marletta (it)
    Gintautas Miliauskas (lt)
    Espen Stefansen (nb)
    Yannig Marchegay (Kokoyaya) (oc)
    Mişu Moldovan (ro)
    Peter Tuhársky (sk)
    Laurent Dhima (sq)
    Горан Ракић (sr)
    Maxim Dziumanenko (uk)

===============
Evince  2.19.92
===============

Bug fixes:

    * Bump requirements to poppler 0.6 (Carlos Garcia Campos)
    * Restart the search when reloading a document with the find bar visible (Carlos Garcia Campos)
    * Do not jump to the first page when reloading a document from the last page (Carlos Garcia Campos)
    * Do not update visibility when changing a chrome flag (Carlos Garcia Campos)
    * Use GTK_UNIT_POINTS instead of GTK_UNIT_PIXEL (Carlos Garcia Campos)
    * Make sure current-page <= end-page in continuous mode (Carlos Garcia Campos)
    * Ignore outline items without a title (Carlos Garcia Campos)
    * Use only drag mouse cursor during a drag operation (Carlos Garcia Campos)
    * Actually fix printing regressions (Carlos Garcia Campos)
    * Add support for double and triple click selections (Carlos Garcia Campos)

Translations:

    Gil Forcada (ca)

===============
Evince   2.19.4
===============

Bug fixes:

    * Find works when findbar is hidden (Justin Blanchard)
    * Use directly cairo_surface_get_content (Jeff Muizelaar)
    * Great speedup by using CAIRO_FORMAT_RGB24 instead of CAIRO_FORMAT_ARGB32 (Jeff Muizelaar)
    * Fix for embedded thumbnails dimension and rotation (Carlos Garcia Campos)
    * Avoid ifdefs inside macros (Jens Granseuer)
    * Memory leak fixes (Justin Blanchard, Hiroyuki Ikezoe)
    * New icon sizes (Andreas Nilsson)
    * Invalid read fix (Justin Blanchard)
    * Fix multihead problems in toolbar editor (Carlos Garcia Campos)
    * Use the same cairo context for every page in the same expose event (Carlos Garcia Campos)

Translations:

    Adam Weinberger (en_CA)
    Danishka Navin (si)
    Duarte Loreto (pt)
    Hendrik Richter (de)
    Ihar Hrachyshka (be@latin)
    Raphael Higino (pt_BR)
    Stéphane Raimbault (fr)
    Takeshi Aihana (ja)
    
==============
Evince   0.9.3
==============

New Features and UI Improvements:

    * Use new GTK+ tootlips (Carlos Garcia Campos)
    * Printing multiple pages per sheet (Carlos Garcia Campos)
    * Added UNIX-like key bindings hjkl (Cosimo Cecchi)

Bug fixes:

    * Do not block while enumerating printers in preview mode (Christian Persch)
    * Show new pages as soon as they are rendered even if other page 
      elements like forms, images or links are not ready yet (Carlos Garcia Campos)
    * Provide different options in the print dialog depending on document 
      type backend capabilities (Carlos Garcia Campos)

Translations:

    Jorge González (es)
    Iñaki Larrañaga Murgoitio (eu)
    Ilkka Tuohela (fi)
    Gabor Kelemen (hu)
    Arangel Angov (mk)
    Wouter Bolsterlee (nl)
    Funda Wang (zh_CN)

==============
Evince   0.9.2
==============

New Features and UI Improvements:

    * Forms support (Julien Rebetez, Carlos Garcia Campos)
    * Toolbar editor icons on dragging (Jaap Haitsma)

Bug fixes:

    * Program description translation issue fixed (Gabor Kelemen)
    * Do not change page after presentation (Cesar Fernandez)

Translations:

    Ankit Patel (gu)
    Arangel Angov (mk)
    Bharat Kumar (te)
    Clytie Siddall (vi)
    Daniel Nylander (sv)
    Dr.T.Vasudevan (ta)
    Espen Stefansen (nb)
    Ivar Smolin (et)
    Takeshi Aihana (ja)
    Theppitak Karoonboonyanan (th)
    Tomasz Dominikowski (pl)
    Tshewang Norbu (dz)

==============
Evince   0.9.1
==============

New Features and UI Improvements:

    * Cairo-based renderer for pages and selections of PDF, DVJU and DVI documents (Carlos Garcia Campos)
    * PDF exporter for printing DVI documents (Alaska Subedi)
    * Zoom icon artwork (Michael Monreal)
    * Patch to avoid frequent process wakeup for metadata handling (Bastien Nocera, Arjan van de Ven)
    * Bumped poppler requirements to 0.5.9 (Carlos Garcia Campos)
    * Changed sidebar ordering (Wouter Bolsterlee)
    * Removed extra locking of a main loop to speed up rendering (Carlos Garcia Campos)

Bug fixes:

    * Print job is released quickly (Carlos Garcia Campos)
    * Update a cursor and tooltips after scrolling (Carlos Garcia Campos)
    * More safe mkdir_with_parents (Eduardo Lima)
    * Safe saving of a document copy to a remote location (Carlos Garcia Campos)
    * Build fix without libgnome (Marc Brockschmidt)
    * Selections don't disappear after zoom (Carlos Garcia Campos)
    * Preview button added to the print dialog (Carlos Garcia Campos)

Translations:

    Daniel Nylander (sv)
    David Lodge (en_GB)
    Dr.T.Vasudevan (ta)
    Espen Stefansen (nb)
    Gil Forcada (ca)
    Ignacio Casal Quinteiro (gl)
    Ivar Smolin (et)
    Jorge González (es)
    Sonam Pelden (dz)
    Theppitak Karoonboonyanan (th)
    Yuval Tanny (he)
    
==============
Evince   0.9.0
==============

New Features and UI Improvements:

    * Printing support in djvu documents (Alaska Subedi)
    * Optional drop of libgnome dependency (Ross Burton)
    * Print button for preview mode (Carlos Garcia Campos)
    * Remember print settings (Carlos Garcia Campos)
    * Use gtk+ builtin paper list to identify the document's paper size (Carlos Garcia Campos)
    * Start rendering pages before any other jobs (Carlos Garcia Campos)
    * Developer documentation updated. (Iñigo Martínez)
    * History button improvements (Nickolay Shmyrev)

Bug Fixes:

    * Fixes for issues with fullscreen toolbar (Carlos Garcia Campos)
    * Open document in empty window with EggRecent (Eduardo Lima)
    * Compilation fixes for FreeBSD (Roy Marples)
    * A lot of calls to parent class methos added (Christian Persch)
    * Update gtk-icon-cache in uninstall hook (Brian Pepple)
    * Fix for crash in comics backend when filename contains quote (Nickolay Shmyrev)
    * Always add application-specific icons to the theme (Nickolay Shmyrev)

Translations:

    Jakub Friedl (cs)
    Dimitris Glezos (el)
    David Lodge (en_GB)
    Jorge González (es)
    Ivar Smolin (et)
    Francesco Marletta (it)
    Espen Stefansen (nb)
    Yannig Marchegay (oc)
    Washington Lins (pt_BR)
    Daniel Nylander (sv)

==============
Evince   0.8.1
==============

Bug Fixes:

    * Default resolution is used when it's not provided by TIFF
      document (Carlos Garcia Campos)
    * Added support for ps, eps and compressed documents 
      thumbnails (Carlos Garcia Campos)
    * Implemented font color specials in the DVI backend (Ricardo Markiewicz)
    * DOCUMENTS folder from xdg-data-dirs is used as default folder when
      opening a file chooser (Matthias Clasen)
    * unlink-tempfile is used instead of unlink-temp-file (Carlos Garcia Campos)

Translations:

    Gil Forcada (ca)
    Ignacio Casal Quinteiro (gl)
    Iñaki Larrañaga Murgoitio (eu)
    Jorge González (es)
    Jakub Friedl (cs)
    Sonam Pelden (dz)

==============
Evince   0.8.0
==============

Features and UI Improvements:

    * Thumbnails for postscript documents (Carlos Garcia Campos)
    * Copy of compressed document is saved compressed (Carlos Garcia Campos)

Bug Fixes:

    * Properly handle PostScript page orientation (Carlos Garcia Campos)
    * Do not render thumbnails when sidebar thumbnail page is not visible
      on startup (Carlos Garcia Campos)
    * Warning when document has one page (Carlos Garcia Campos)
    * Djvu backend builds on Mac (Carlos Garcia Campos)
    * Allow deleting in goto window in presentation mode (Carlos Garcia Campos)

Translations:

    Ankit Patel (gu)
    Changwoo Ryu (ko)
    Christian Kintner (de)
    Clytie Siddall (vi)
    Daniel Nylander (sv)
    Djihed Afifi (ar)
    Duarte Loreto (pt)
    Erdal Ronahi (ku)
    Funda Wang (zh_CN)
    Gabor Kelemen (hu)
    Gil Forcada (ca)
    Gintautas Miliauskas (lt)
    Ihar Hrachyshka (be)
    Ivar Smolin (et)
    Kjartan Maraas (nb)
    Matic Žgur (sl)
    Maxim Dziumanenko (uk)
    Mişu Moldovan (ro)
    Nickolay V. Shmyrev (ru)
    Raphael Higino (pt_BR)
    Takeshi Aihana (ja)
    Thierry Randrianiriana (mg)
    Wadim Dziedzic (pl)
    Woodman Tuen (zh_HK)
    Woodman Tuen (zh_TW)
    Yuval Tanny (he)
    Игор Несторовић (sr)

==============
Evince   0.7.2
==============

New Features and UI Improvements:

    * Document thumbnail is used as window icon (Carlos Garcia Campos)
    * Support for gzipped and bzipped 
      document types (Carlos Garcia Campos)
    * A lot of new icons (Luca Feretti, Andreas Nilsson)
    * Finally working history button (Nickolay V. Shmyrev)

Internal Improvements:

    * Developer gtk-doc based documentation (Nickolay V. Shmyrev)
    * More dogtail tests (Nickolay V. Shmyrev)

Bug Fixes:
    
    * Fontconfig lock to avoid crashes (Carlos Garcia Campos)
    * Critical crash fix by checking return value from 
      psscan (Tom Parker)
    * Critical crash fix in nautilus property page and 
      broken ODF (Tom Parker)
    * Critical crash fix with multifile djvu 
      documents (Carlos Garcia Campos)
    * Multithreaded gtk problems fix by using async 
      gnome-vfs (Carlos Garcia Campos)

Translations:

    Changwoo Ryu (ko)
    Clytie Siddall (vi)
    Daniel Nylander (sv)
    David Lodge (en_GB)
    Dimitris Glezos (el)
    Dorji Tashi (dz)
    Duarte Loreto (pt)
    Gabor Kelemen (hu)
    Ihar Hrachyshka (be)
    Ilkka Tuohela (fi)
    Ivar Smolin (et)
    Jovan Naumovski (mk)
    Khaled Hosny (ar)
    Kjartan Maraas (nb)
    Nickolay V. Shmyrev (ru)
    Stéphane Raimbault (fr)
    Theppitak Karoonboonyanan (th)
    Vladimir Petkov (bg)
    Wouter Bolsterlee (nl)
    Yuval Tanny (he)

Thanks:

    Ed Catmur, Esteban Sanchez, Theppitak Karoonboonyanan, Wouter Bolsterlee

==============
Evince   0.7.1
==============

New Features:

    * Popup window to jump to another page in presentation mode. (Carlos Garcia Campos)
    * Page transition support in presentation mode. (Carlos Garcia Campos)

Bug Fixes:

    * Fix random crashes related to threads and Font Config (Carlos Garcia Campos)
    * Fix icon name in desktop file (Luca Ferretti)
    * Always use "best fit" zoom in presentation mode (Wouter Bolsterlee)
    * Don't restore the view on the last page when a document is reopened 
      (Wouter Bolsterlee)
    * Fix build due to libxml2 (Elijah Newren)

Translations:

    * Djihed Afifi (ar)
    * Ales Nyakhaychyk (be)
    * Alexander Shopov (bg)
    * Josep Puigdemont i Casamajó (ca)
    * David Lodge (en_GB)
    * Francisco Javier F. Serrador (es)
    * Priit Laes (et)
    * Raivis Dejus (lv)
    * Jovan Naumovski (mk)
    * Kjartan Maraas (nb)
    * Wouter Bolsterlee (nl)
    * Matic Žgur (sl)
    * Daniel Nylander (sv)
    * Theppitak Karoonboonyanan (th)
    * Clytie Siddall (vi)

Thanks:

    Damien Carbery, Jens Granseuer, Yevgen Muntyan

==============
Evince   0.7.0
==============

New Features:

    * History. Preliminary implementation, not finished yet. (Nickolay V. Shmyrev)
    * Option to open a copy of the document in a new window. (Carlos Garcia Campos)
    * Multihead systems support. (Carlos Garcia Campos)
    * Added paper size field to the properties dialog. (Kasper Svendsen, Wouter Bolsterlee)
    * Added automated UI tests with dogtail (Nickolay V. Shmyrev)

Bug Fixes:

    * Links support in rotated documents. (Radoslav Dorcik)
    * Side pane disabled when entering and leaving fullscreen mode. (Nickolay V. Shmyrev)
    * Fixed crash in DVI backend. (Nickolay V. Shmyrev)
    * Printing settings scale, copies, collate, reverse, odd/even work again (Carlos Garcia Campos)
    * Added page setup dialog for printing. (Carlos Garcia Campos)
    * Support for printing to a PDF file. (Carlos Garcia Campos)
    * Allow blank screen in presentation mode. (Carlos Garcia Campos)
    * Added "End of presentation" page in presentation mode. (Carlos Garcia Campos)
    * Screensaver detection in presentation mode. (Wouter Bolsterlee)
    * "Loading..." text is not shown in presentation mode. (Wouter Bolsterlee)

Security Fixes:

    * Buffer overflow in PS backend. CVE-2006-5864. (Carlos Garcia Campos)

Translations:

    * Djihed Afifi (ar)
    * Runa Bhattacharjee (bn_IN)
    * Gil Forcada (ca)
    * Jakub Friedl (cs)
    * Mindu Dorji (dz)
    * Dimitris Glezos (el)
    * David Lodge (en_GB)
    * Francisco Javier F. Serrador (es)
    * Ilkka Tuohela (fi)
    * Claude Paroz (fr)
    * Ankit Patel (gu)
    * Rajesh Ranjan (hi)
    * Gabor Kelemen (hu)
    * Satoru SATOH (ja)
    * Vladimer Sichinava (ka)
    * Fano Rajaonarisoa (mg)
    * Kjartan Maraas (nb)
    * Wouter Bolsterlee (nl)
    * Leonardo Ferreira Fontenelle (pt_BR)
    * Leonid Kanter (ru)
    * Steve Murphy (rw)
    * Daniel Nylander (sv)
    * Theppitak Karoonboonyanan (th)
    * Baris Cicek (tr)

Thanks:

    Claudio Saavedra, Gabriel Felipe Cornejo, Mathias Hasselmann, Michael Monreal, 
    Julien Rebetez, P. Henrique Silva, Yevgen Muntyan

==============
Evince   0.6.1
==============

Bug Fixes:

    * Current page follows find page
    * Reopen reloads document
    * Document size is guessed correctly
    * Icons are installed in correct folders
    * Memory leak fixed, etc
    
Translations:

    * da dz el en_GB es fa gl it ka nn ro
    * documentation: fi it sv
      
Thanks:     

    Carlos Garcia Campos, Mathias Hasselmann, Wouter Bolsterlee,
    Christian Persch
    
    and especially translators:
    
    Alessio Frusciante, Åsmund Skjæveland, David Lodge, 
    Francisco Javier F. Serrador, Ignacio Casal Quinteiro, Kostas Papadimas,
    Mugurel Tudorm, Ole Laursen, Pema Geyleg, Roozbeh Pournader,
    Vladimer Sichinava, Daniel Nylander, Tommi Vainikainen, Luca Ferretti
        
==============
Evince   0.6.0
==============

Bug Fixes:

    * Links aren't lost while resizing
    * Tiff backend crash is fixed
    * Recent code and icons code are screen safe
    * Crash while handling password-protected documents is fixed

Translations:

    * bg bn bn_IN ca de dz el et fa fi fr gu hi hu ja ko lt lv mk ml 
      mr nb or pt pt_BR ro ru sl sv th tr vi zh_CN zh_HK zh_TW
      
Thanks:     

    Carlos Garcia Campos, Julien Rebetez, Sebastien Bacher, Wouter Bolsterlee
    
    and especially translators:
        
    Abel Cheung, Alexander Shopov, Ani Peter, Ankit Patel, Baris Cicek,
    Changwoo Ryu, Chao-Hsiung Liao, Christophe Merlet, Claude Paroz, Clytie
    Siddall, Daniel Nylander, Duarte Loreto, Funda Wang, Gabor Kelemen,
    Guntupalli Karunakar, Hendrik Richter, Ilkka Tuohela, Ivar Smolin, Josep
    Puigdemont i Casamajó, Jovan Naumovski, Khandakar Mujahidul Islam,
    Kjartan Maraas, Leonardo Ferreira Fontenelle, Leonid Kanter, Lucas
    Rocha, Matic Žgur, Meelad Zakaria, Mişu Moldovan, Mugurel Tudor, Nikos
    Charonitakis, Priit Laes, Rahul Bhalerao, Raivis Dejus, Rajesh Ranjan,
    Roozbeh Pournader, Runa Bhattacharjee, Satoru SATOH, Subhransu Behera,
    Theppitak Karoonboonyanan, Žygimantas Beručka
        
==============
Evince   0.5.5
==============

New Features:

    * Evince have preview mode for using with gtk+
    * New print dialog is used with gtk 2.10
    * New recent files framework is used
    
UI Improvements:
    
    * Sidebar is unified with Epiphany
    * Escape unfocus page entry

Bug Fixes:

    * Automake updates
    * Link coordinates now used correctly
    * Desktop file is corrected
    * Memory leak fixes

Translations:

    * ca cs de dz el es et eu fi fr gu ja ko mk nl ru sl sv th zh_HK zh_TW
      
Thanks:     

    Carlos Garcia Campos, Christian Persch, Radoslav Dorcik,
    Ricardo Markiewicz, Sebastien Bacher, Wouter Bolsterlee
    
    and especially translators:
        
    Ankit Patel, Arangel Angov, Benoît Dejean, Changwoo Ryu, Chao-Hsiung
    Liao, Christophe Merlet, Daniel Nylander, Francisco Javier F. Serrador,
    Guntupalli Karunakar, Hendrik Richter, Ilkka Tuohela, Inaki Larranaga,
    Jakub Friedl, Josep Puigdemont i Casamajó, Jovan Naumovski, Nikos
    Charonitakis, Priit Laes, Takeshi Aihana, Theppitak Karoonboonyanan
        
==============
Evince   0.5.4
==============

New Features:

    * Evince supports impress slides with --enable-impress
    * URI's with anchors can be opened

Bug Fixes:

    * PAPI printing crash was fixed
    * Threads-related crash was fixed
    * Assertion on document types that don't support
      links don't cause crash now
    * Reload crash was fixed as loading of
      password-protected documents
    * Page-label command line option works again

Translations:

    * be bg bn_IN ca cs de dz es et eu fi fr gl gu he id ko mk nb ne 
      nl ru ta th vi zh_CN zh_HK zh_TW        
      
Thanks:     

    Bastien Nocera, Carlos Garcia Campos, Ghee Teo, Pat Rondon,
    Ricardo Markiewicz, Wouter Bolsterlee
    
    and especially translators:
        
    Ahmad Riza H Nst, Ales Nyakhaychyk, Alexander Shopov,  Ankit Patel,
    Benoît Dejean, Changwoo Ryu, Chao-Hsiung Liao, Clytie Siddall,
    Francisco Javier F. Serrador, Funda Wang, Hendrik Richter,
    I. Felix, Ignacio Casal Quinteiro, Ilkka Tuohela, Inaki Larranaga,
    Jakub Friedl, Jayaradha,  Josep Puigdemont Casamajó,
    Jovan Naumovski, Kjartan Maraas, Pawan Chitrakar, Pema Geyleg,
    Priit Laes, Runa Bhattacharjee, Theppitak Karoonboonyanan, 
    Vincent van Adrighem, Yair Hershkovitz
        
==============
Evince   0.5.3
==============

New Features:

    * Evince supports attachments in PDF files
    * We require gtk 2.8 and djvulibre 3.5.17 now
    * Links system is reworked allowing named links

Interface imporovements:

    * Esc closes properties dialog
    * Cursor is hidden in presentation mode
    * Find previous item is added to the menu

Bug Fixes:

    * GOption port and po/LINGUAS work
    * Fixed mime type detection by file contents
    * Several memory leaks were found
    * Crash on exit related to thumbnailer
    * Current page is selected more intelligently
    * Work around libtool build bug is created

Translations:


    * bg bn br dz es et fi gl gu nb nl nn no ro vi zh_CN zh_HK zh_TW
        
Thanks:     

    Michael Plump, Carlos Garcia Campos, Wouter Bolsterlee, Francisco
    Javier F. Serrador, Kjartan Maraas and especially all translators.
        
==============
Evince   0.5.2
==============

Bug Fixes:

    * View don't jump on scrolling
    * In presentation mode we scroll by one page

Translations:

    * bg bn da de et fa fr hi hu ja ka pt pt_BR ro ru sv uk vi
    
==============
Evince   0.5.1
==============

New Features:

    * Evince can search text in DJVU files

Interface improvements:

    * Odd pages are placed to the right in dual page mode

Bug Fixes:

    * Produce thumbnails for comic books and carefully work with
      unzip
    * Correctly interoperate with DBUS 0.60
    * Ghostscript interpreter is checked in runtime
    * PS mime types are listed in desktop file
    * It's possible to add sidebar checkbutton on toolbar
    * It's possible to print in inverse order
    * Filechooser now will ask for overwrite confirmation
    * Search now takes account for scrolling
    * It's allowed to scroll view from find entry
    * Evince don't jump to find result if window was scrolled during search
    * It's now clear what page the toolbar page number applies to

Translations:

    * bg ca cs cy da el en_CA es et eu fi gl gu he hu ja lt nb nl no pl
      pt_BR pt ru sq sr th vi zh_CN zh_HK zh_TW
    * Spanish docs are updated and we have Bulgarian translation now
    
Thanks:

    Ricardo Markiewicz, Rostislav Raykov, Stanislav Slusny, 
    Francisco Javier F. Serrador, Antoine Dopffer, Michael Hofmann, 
    Gary Coady, Luca Ferretti, Carlos Garcia Campos, Eduardo de Barros Lima,
    Christopher Aillon and all translators.

==============
Evince   0.5.0
==============

New Features:

    * Various types of PDF links are now supported
    * New backend for comic books (CBR/CBZ archives)
    * Storage of passwords for protected documents in gnome-keyring
    * Layout settings for new documents are taken from the last used document

Interface Improvements:

    * Statusbar was removed to save space
    * Notification about page processing is shown on the page
    * More key bindings
    * Improved intelligent window title that shouldn't confuse users
    * Show index by default if available
    * Tooltips for links
    * Now we have right click context menu

Bug Fixes:

    * Crashes on reload and window close are fixed
    * DBus usage cleaned
    * Printing of multiple copies start to work
    * Crash on structured ps document
    * Improved session handling
    * Vertical and horizontal scrolling on selection

Translations:

    * be, bg, bn, ca, cs, de, en_CA, es, et, eu, fi, fr, gl, gu 
      hu, it, ku, lt, nb, nl, no, ro, ru, sr, sv, th, vi, zh_CN, zh_HK, zh_TW
    * nl for documentation.

==============
Evince   0.4.0
==============

Bug Fixes:

    * Depend on poppler 0.4.0
    * Pass in timestamp to to handle opening multiple windows over dbus
      better (Ryan Lortie)
    * Really quit when rendering postscript files.
    * Set textdomain to libglade. 
    * Fix rotation of thumbnails multiple times
    * Fix selection for non-continuous case
    * Disable selection and links for rotated case
    * findbar fixes

==============
Evince   0.3.4
==============

Bug Fixes:

    * Depend on poppler 0.4.0
    * Convert filenames to utf8 when showing them in the UI
    * Return focus back to view on escape
    * Fix compatibility with dbus 0.34.2
    * Fix some build warnings
    * Fix dvi backend compilation with t1lib-5.0

==============
Evince   0.3.3
==============

New Features:

    * real text selection, complete with theming and I-Beam support
    * Respect lockdown gconf keys
    * Metadata support per document
    * Font properties dialog
    * dbus support to create a factory
    * Implement nautilus plugin for properties.

Interface Improvements:

    * HIG Fixes 
    * Hide menu entry in .desktop file
    * Get the correct mime types in the open dialog

Bug Fixes:

    * Improved rotation support
    * Backwards searching
    * Use unzipped document when printing
    * Persist the print settings
    * Support pdf's with 0 pages
    * Fix find flickering
    * gnome-doc-utils for manual
    * Add keypad accelerators for zooming. Fix for bug 308128.
    * fix mem leaks
    * MIME Fixes
    * tiff/djvu backend fixes

Translations:

    * eu, gl, gu, he, hi, ne, pa, pl, sk, sr, st@Latn, tr

==============
Evince   0.3.2
==============

New Features:

    * Multi page tiff support
    * Document properties
    * Document rotation
    * Gnome vfs support

Interface Improvements:

    * Faster dvi rendering
    * More compact layout for documents with different page formats
    * Stock icons for all toolbar editor items
    * Multiple selection in the open dialog
    * Loading progress feedback
    * Multiple column thumbnails
    * Expand links when specified by the document
    * Several new handy keybindings
    * Ellipsize recent items labels

Bug Fixes:

    * Fix rendering of several postscript documents
    * Fix reloading of postcript documents
    * Fix a lot of memory leaks
    * Fix compilation on gcc 4
    * Several minor fixes

==============
Evince   0.3.1
==============

New Features:

    * Toolbar editor
    * Middle button scrolling
    * Support for printing page ranges
    * Support for printing chapters (from the index)

Interface Improvements:

    * Move best fit items in the toolbar control at the top
    * In the sidebar make drop down menu as large as the button
    * Several keybindings improvements
    * Faster scrolling
    * Only render the visible thumbnails (less memory usage)
    * Get rid of confusing Normal size menu

Bug Fixes:

    * Better mime detection
    * Several minor fixes
    * Fix printing on LPD printers

==============
Evince   0.3.0
==============

New Features:

    * Continous mode
    * Dual page mode
    * Control + Scroll does zooming
    * Shift + Scroll scrolls horizontally
    * Zoom control in the toolbar

Interface Improvements:

    * If all page labels are numeric show only
      the page total

Bug Fixes:

    * Fix size of dvi thumbnails
    * Fix crash on exit
    * Make thumbnailer schemas translatable
    * Fix build problems with t1lib

==============
Evince   0.2.1
==============

New Features:

    * new backend to support DJVU files.
    * new backend to support DVI.
    * Initial implementation of doc metadata.  No UI for this yet,
      though we respect docs requesting UI changes.
    * support application/x-gzpostscript
    * consolidate mime handling code so thumbnailer and main page
          can use them.  Thumbnail all types we support.
    * Respect document orientation 
    * Implement print and save a copy for the ps backend.
    * Badass completion of the document in the entry.  Only works
      with GTK+ >= 2.7.1
    * User docs

Bug Fixes:

    * Faster Zooming
    * Clean up Schemas
    * README added.
    * Small rework of sidebar code. Now sidebar pages should implement
      EvSidebarPage interface.
    * lots of small bug fixes
    * Actually fix the "FIXME: update priority" comment.
    * Update egg-recent from libegg. This should fix long startup
          problem.

Interface Improvements:

    * Shift + Space scrolls up.
    * Removed fullscreen toolbar hard-coded style
    * Fix normal size zoom. Make zoom in/zoom out unsensitive when
      they are behyond the limits.
    * Doesn't show resize grip when maximized
    * don't draw border in fullscreen
    * Doesn't show thumbnails if document has 1 page. Make sidebar
      menu entries sensitive only if if they have sense. 
    * Work around the Escape conflict (find bar and unfullscreen)
    * Save accelerators on exit.
    * Add Edit->Find Next

Translations:

    * Make all toolbar items translatable
    * ru (Nickolay Shmyrev)

==============
Evince   0.2.0
==============

Code changes

    * Use poppler glib api

Interface improvements

    * Rewrite most of the backend code to use threads and make
      the interface more responsive

New features

    * Use page labels as page numbers (Jonathan)

==============
Evince   0.1.9
==============

    * Fix a crash in the nautilus thumbnailer (Fernando Herrera)

==============
Evince   0.1.8
==============

BugFixes

    * Fix crash when opening pdf documents with only 1 page

==============
Evince   0.1.7
==============

New features

    * Nautilus thumbnailer for pdf (Fernando Herrera)

BugFixes

    * Make code C89 compliant (Jens Granseuer)
    * Fix some issues in the nautilus thumbnailer (Marco)
    * Do not read ps defaults from ggv prefs! (Marco)

==============
Evince   0.1.6
==============

Code changes

    * Use poppler instead of our own xpdf fork (Kristian Høgsberg)

Interface improvements

    * Use an entry for the page control instead of
      spin buttons (Marco)
    * Expand the sidebar selection widget (Carlos)

Bug fixes

    * Fix crash in links loading (Jonathan)
    * Fix crashes when reloading document (Marco)   

==============
Evince   0.1.5
==============

New features

    * Reload menu (Kai Willadsen)

Interface improvements
    
    * Support for DnD of files (Carlos Garcia Campos)
    * Set the "Previous" and "Next" toolbar
      buttons as important (Vincent Noel)
    * Make the "best fit" and "fit width"
      values act as toggle buttons (Jonathan)
    * Autohide the fullscreen button (Kristian Høgsberg)
    * Added ellipsis to Print item (Bryan)
    * Change the fullscreen toolbar to always be in
          the popup window (Jonathan)
    * Improved sidebar widget (Carlos Garcia Campos)
    * Minimal size for the sidebar (Marco)
    * Hide the sidebar if the type doesn't
      support thumbnailing and indexing (Jonathan)
    * Remember the sidebar size (Carlos Garcia Campos)

Bug fixes

    * Fix compilation on non-gcc platforms (Marco)
    * Fix thumbnails generation (Crispin Flowerday)
    * Fix best fit size allocation (Martin)
    * Replace newlines in the title by spaces (Martin)
    * Get rid of the black flash when resizing the window (Jonathan)
    * Sync selection with zoom levels (Marco)
    * Fix clipboard operations (Marco)
    * Fix a crash when the ps document cannot be opened (Marco)
    * Fix postcript page selection (Marco)
    * Fix page sizing to be idempotent (Marco)
    * Fix page sizing toggle buttons (Marco)
    * Fix freezing on document with unrecognized links (Marco)
    * Check ghostscript minimal version (Marco)
    * Fix rendering of landscape documents (Marco)
    * Unescape filenames for display (Marco)

==============
Evince   0.1.4
==============

Code changes

    * Add debugging/logging helpers (Marco)
    * Add warnings about unimplemented/unknown link
          types (Marco)

Interface improvements

    * Epiphany like fullscreen mode (Christian Persch)
    * Save chromes state between sessions (Christian Persch)
    * Improve toolbar layout and icons (Luca Ferretti)

Bug fixes

    * Really fix postscript rendering (Marco)
    * Do not leak gs processes on exit (Marco)
    * Fix a buffer overflow fix (Marco)

==============
Evince   0.1.3
==============

Code changes

    * Beginnings of continuous viewing (Jonathan)

New features

    * Support eps (Marco)
    * Support gzipped ps (Marco)

Bug fixes

    * Fix a crash with the postscript view (Marco)
    * Fix image view (Jeff Muizelaar)
    * Fix a warning when opening documents without
      thumbnails (Martin)
    * Fix crashes when searched word is not found (Marco)
    * Fix a crash when changing page with keys (Marco)

==============
Evince   0.1.2
==============

New features

    * Make search really work (Marco)

Interface improvements

    * Show password state in the view (Jonathan)
    * add GTK_SHADOW_IN to the scrolled window (Martin)
    * make sure the selected thumbnail stays visible (Martin)
    * Remove history buttons from the toolbar (Marco)

Bug fixes

    * Fix CID fonts with freetype 2.1.9 (Marco)
    * Fix inverted up/down buttons (Marco)

==============
Evince   0.1.1
==============

New features

    * Actually print PDF files
    * Navigation history
    * Support Links
    * Support encrypted PDFs
    * A desktop file

Interface improvements

    * Rename Bookmarks sidebar to Index
    * Use filename as title if the file doesn't have a title (Jeff
          Muizelaar) or if the title is empty
    * Make navigation with thumbnails possible (Anders Carlsson)
    * (De)Sensitize actions as necessary (Dave Malcolm)
    * Show a wait cursor while the page is rendering
    * Center the page; draw a page border
    * Undo selection on page change
    * Shorter toolbar item labels
    * Make selection work in any direction

Code changes

    * Render PDFs directly as packed RGB
    * Update egg-recent code (not used yet)
    * Update to latest Xpdf patchlevel

Bug fixes

    * PostScript backend fixes
    * Pixbuf backend fixes (Jeff Muizelaar)
    * Set page spin button limits correctly (Anders Carlsson)
    * Fix problem when base fonts are installed as pcf files.
    * Keep search selection highlighting correct even when
      zooming/changing window size (Stephane LOEUILLET)

Translation updates

    * cs (Miloslav Trmac)
    * de (Frank Arnold)
    * en_CA (Adam Weinberger)
    * es (Antonio Ognio)
    * nb (Kjartan Maraas)
    * nl (Tino Meinen)

evince 0.1.0
------------

Initial release.