summaryrefslogtreecommitdiff
path: root/NEWS
blob: e10cd3c5785faec05c49e42a6400c5abdab9a70a (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
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
==============
Epiphany 1.7.6
==============

Changes

	* Don't empty find entry on Ctrl-F
	* Fix local file monitoring when loaded after a blank page
	* Remove check for redirected URL [#313756]
	* Fix configure check for gecko >= 1.8
	* Disable keyword searches by default [#158486]
	* Fix some compile warnings
	* Configure and makefile fixes for broken gecko header layouts
	* Define out the focus fix for gecko >= 1.8
	* Fix pointer grab lockup when gecko pops up a dialogue while
	  reordering tabs with DND
	* Don't create host node in ephy_history_get_host if not already existing
	* Add an "add-page" signal to the EphyHistory object
	* Set default prefs for warn-on-mixed-security pages [#309088]

Contributors to this release: Crispin Flowerday, Christian Persch.

Updated translations:

	* Jordi Mallach (ca)
	* Rhys Jones (cy)
	* Ivar Smolin (et)
	* Xavier Claessens (fr)
	* Ankit Patel (gu)
	* tunggul arif siswoyo (id)
	* Reinout van Schouwen (nl)
	* GNOME PL Team (pl)
	* Afonso Celso Medina (pt_BR)
	* Mugurel Tudor (ro)
	* Clytie Siddall (vi)


==============
Epiphany 1.7.5
==============

Changes

	* Find bar fixes [#307216, #311985, #312419, #312367, #311929]
	* Fix tab properties
	* Fix downloading on gecko 1.8
	* Open new tabs with blank url bar when loading the homepage [#313012]
	* Gcc 4 fixes
	* Fix download display of unknown sizes [#313215]
	* Reject favicons that are < 12x12 pixel
	* Add sanity check when opening in external handler [#310023]
	* Improve menu positioning on toolbar buttons
	* Fix some mem leaks
	* Try to save images from cache [#168554]

Contributors to this release: Crispin Flowerday, Christian Persch,
Jean-François Rameau.

Updated translations:

	* Rostislav \"zbrox\" Raykov (bg)
	* Nikos Charonitakis (el)
	* Adam Weinberger (en_CA)
	* <unknown> (es)
	* Ivar Smolin (et)
	* Ilkka Tuohela (fi)
	* Gabor Kelemen (hu)
	* Takeshi AIHANA (ja)
	* Žygimantas Beručka (lt)
	* Terance Edward Sola (nb)
	* Ganesh Ghimire (ne)
	* Reinout van Schouwen (nl)
	* Sigurd Gartmann (nn)
	* Terance Edward Sola (no)
	* GNOME PL Team (pl)
	* Duarte Loreto (pt)
	* Mugurel Tudor (ro)
	* Leonid Kanter (ru)
	* Marcel Telka (sk)
	* Laurent Dhima (sq)
	* Theppitak Karoonboonyanan (th)
	* Maxim Dziumanenko (uk)
	* Clytie Siddall (vi)
	* Liu Songhe (zh_CN)
	* Woodman Tuen (zh_TW)

Updated documentation translations:

	* Nikos Charonitakis (el)
	* Maxim Dziumanenko (uk)
	* Francisco Javier F. Serrador (es)


==============
Epiphany 1.7.4
==============

Changes
	* Only show the leaf name on bookmarksbar for hierarchical topics
	* Don't put the archive links on the unknownSocketType error message
	* Fix google search URL to include www prefix
	* Fix proxy server settings string
	* Work around gtkmozembed focus bug [#105153]
	* For empty pages, put focus in address bar
	* Be careful not to leave a GC scheduled when terminating python
	* Realise the embed first before grabbing focus on it
	* Implement ::grab-focus and remove ephy_embed_activate
	* Update the python bindings
	* String fixes [#172230, #167448]
	* Fix setting homepage to current page [#311962]
	* Allow EPHY_DEBUG_BREAK even in non-debug builds
	* Disable favicons from non-http URLs [#312291]
	* Fix location entry favicon updating
	* Fix crash on "window.get_toolbar()" [#170105]
	* Fix gcc 4.0 warnings
	* Fix crash when getting context event, [#310910]
	* Fix session saving on recovery with offline network [#147840]
	* Fix drawing of location entry with new default GNOME theme (Clearlooks)
	* Change the text on the 'unknown issuer' dialog [#151519]
	* Also clear favicon cache when clearing the cache
	* Make download dialog wording clearer

Contributors to this release: Crispin Flowerday, Christian Persch,
Jean-François Rameau and Raphael Slinckx.

Updated translations:

	* Rostislav \"zbrox\" Raykov (bg)
	* Miloslav Trmac (cs)
	* Nikos Charonitakis (el)
	* Adam Weinberger (en_CA)
	* <unknown> (es)
	* Priit Laes (et)
	* Ilkka Tuohela (fi)
	* Ankit Patel (gu)
	* Gabor Kelemen (hu)
	* Takeshi AIHANA (ja)
	* Terance Edward Sola (nb)
	* Reinout van Schouwen (nl)
	* Terance Edward Sola (no)
	* GNOME PL Team (pl)
	* Afonso Celso Medina (pt_BR)
	* Marcel Telka (sk)
	* Laurent Dhima (sq)
	* Prajasakti Localisation Team (te)
	* Theppitak Karoonboonyanan (th)
	* Clytie Siddall (vi)
	* Liu Songhe (zh_CN)


==============
Epiphany 1.7.3
==============

Changes

	* Detect seamonkey trunk
	* Remove the reload workaround, mozilla bug is fixed on all supported versions
	* Fix a couple of strings [#310196]
	* More known mime types
	* Fix URL dragging to other tabs
	* Fix smart bookmark options parsing [#116709, #132761]
	* Yet another mozilla API change
	* Use gnome-doc-utils, and move existing translations over
	* Updated python bindings
	* Use libgnomeprintui for printing [Jürg Billeter; #141241, #163255, #301730]
	* Set title of loading page to the address, iff the page was blank [#115337, #171622]
	* Also ellipsise the menu entries in the toolbar overflow menu
	* Don't crash in case the backgrounds applet desktop file is not found
	* Print a less techy message if	someone tries to print to PDF [Martin Kretzschmar
	* Preserve the selection when switching tabs [#155824]
	* Maybe fix crash with gtk 2.7 [#309918]

Contributors to this release were Jürg Billeter, Martin Kretzschmar
and Christian Persch.

Updated translations:

	* Vladimir Petkov (bg)
	* Miloslav Trmac (cs)
	* Adam Weinberger (en_CA)
	* <unknown> (es)
	* Ivar Smolin (et)
	* Ankit Patel (gu)
	* Gabor Kelemen (hu)
	* Žygimantas Beručka (lt)
	* Terance Edward Sola (nb)
	* Reinout van Schouwen (nl)
	* Terance Edward Sola (no)
	* Marcel Telka (sk)
	* Clytie Siddall (vi)
	* Liu Songhe (zh_CN)

Updated document translations:

	* Francisco Javier F. Serrador (es)


==============
Epiphany 1.7.2
==============

Changes

	* Implement zeroconf-discovered bookmarks [#144969]
	* Reload local files on change [#300040]
	* Error pages! Requires Gecko 1.8 to work
	* Find: if the string includes uppercase letters, search case-sensitively.
	* Work with DBUS 0.34 [#306626, #306565]

Bug fixes

	* Uppercase letters shouldn't break history autocompletion [#308236]
	* Fix gcc4 warnings
	* Show URI in status bar when selecting Back/Forward/Up menu items [#161710]
	* Fix link activation while finding
	* Miscellaneous fixes: #307675, #306110, #307831, #307818, #151037.

Contributors to this release: Piers Cornwell, Crispin Flowerday, Adam Hooper,
Bastien Nocera, Jean-François Rameau, Reinout van Schouwen, Raphaël Slinckx, 
and Matthew P. Thomas.

Updated translations by Vladimir Petkov (bg), Miloslav Trmac (cs),
Martin Willemoes Hansen (da), Hendrik Richter (de), Nikos Charonitakis (el),
<unknown> (es), Ivar Smolin (et), Ignacio Casal Quinteiro (gl),
Takeshi AIHANA (ja), Terance Edward Sola (nb), Reinout van Schouwen (nl),
Terance Edward Sola (no), Marcel Telka (sk), Данило Шеган (sr, sr@Latn),
Clytie Siddall (vi), Liu Songhe (zh_CN) and Ching-Hung Lin (zh_TW)


==============
Epiphany 1.7.1
==============

Highlights:

	* Integrated Python bindings
	* Find toolbar

Other changes:

	* Numerous improvements and UI enhancements
	* Numerous bugs fixed: #152482, #306169, #303922, #168295, #305788,
	  #124236, #305767, #301153, #304992, #173000, #301044, #159767,
	  #152490, #167319, #301093, #301065, #301048, #136288, #155395,
	  #300452, #171179, #171657, #170493, #170493, #171197, #167657,
	  #162748, #169833, #170353, #118107, #169956, #169956, #169039.


Contributors: Paolo Borelli, Colin Gibbs, James Henstridge,
Martin Kretzschmar, Thom May, Christian Persch, Jean-François Rameau,
Sjoerd Simons and Raphaël Slinckx.

New and updated translations by Vladimir Petkov (bg), Miloslav Trmac (cs),
Hendrik Richter (de), Nikos Charonitakis (el), Adam Weinberger (en_CA),
David Lodge (en_GB), <unknown> (es), <unknown> (eu), Pauli Virtanen (fi),
Ignacio Casal Quinteiro (gl), Ankit Patel (gu), Gabor Kelemen (hu),
tunggul arif siswoyo (id), Francesco Marletta (it), Takeshi AIHANA (ja),
Changwoo Ryu (ko), Terance Edward Sola (nb), <unknown> (ne),
Reinout van Schouwen (nl), Terance Edward Sola (no), GNOME PL Team (pl),
Afonso Celso Medina (pt_BR), Steve Murphy (rw), Laurent Dhima (sq),
Данило Шеган (sr), Christian Rose (sv), Baris Cicek (tr), Clytie Siddall (vi),
Liu Songhe (zh_CN) and Ching-Hung Lin (zh_TW).


==============
Epiphany 1.6.5
==============

Changes

	* Fix a mem leak
	* Work around broken mime detection which cannot detect that a .ico file from content
	* Fix signed/unsigned confusion (gcc4 fixes)
	* Update list of mime types
	* Fix default printer name [#301730]
	* Also ellipsise the menu entries in the toolbar overflow menu
	* Don't crash in case a desktop file is not found
	* Fix a crash when deactivating a dead menu [part of #309918]
	* Fix setting homepage to current page [#311962]
	* Fix focus bug [#105153]

Updated translations:

	* Priit Laes (et)
	* Ganesh Ghimire (ne)


==============
Epiphany 1.6.4
==============

Changes

	* Fix for mozilla API change on trunk
	* Fix filepicker configure check
	* Fix crash in toolbar editor with X composite extension [#159767]
	* Don't use chrome URLs in the session [#301044]
	* Update list of mime types
	* Automatically detect whether we have a mozilla debug build
	* Adapt to new DBUS API [#301153]
	* Allow View Source for XML documents [#305788]
	* Fix getting the trust setting from New CA dialogue
	* Work around mozilla bug https://bugzilla.mozilla.org/show_bug.cgi?id=296002 by
 	   disallowing tabs moves to a different window [#303922]
	* Fix more signed/unsigned problems with gcc 4 [#306169]
	* Fix context menu on image maps [#152482]
	* Fix crash on exit with only downloader open [#151037]
	* Preserve session when shutting down while resuming the session
	* Fix a refcount leak in the persist object
	* Comply with gtk-button-images setting [#307818]

Contributors to this release: Colin Gibbs, Martin Kretzschmar,
Thom May, Christian Persch, Jean-François Rameau, and Raphaël Slinckx.

Updated translations:

	* Vladimir Petkov (bg)
	* Ignacio Casal Quinteiro (gl)
	* Afonso Celso Medina (pt_BR)
	* Christian Rose (sv)
	* Ching-Hung Lin (zh_TW)


==============
Epiphany 1.6.3
==============

Changes

	* Fix crash when trying to download [#301093]
	* Fix rare crash on 64-bit archs
	* Some constification [#301065]
	* Corectly restore width and height of restored popup windows [#155395]
	* Adapt to mozilla API change on trunk
	* Fix for pkg-config problem [#300452]

Contributors to this release:
Paolo Borelli, James Henstridge, Christian Persch and Sjoerd Simons, and the
translators Vladimir Petkov (bg), Gabor Kelemen (hu), Steve Murphy (rw) and
Clytie Siddall (vi).


==============
Epiphany 1.6.2
==============

Changes

	* Fix toolbar activation [#172694]
	* Adapt to mozilla API change on trunk

Translation updates

	* Francisco Javier F. Serrador (es)
	* Pauli Virtanen (fi)
	* tunggul arif siswoyo (id)
	* Changwoo Ryu (ko)
	* GNOME PL Team (pl)
	* Laurent Dhima (sq)
	* Данило Шеган (sr, sr@Latn)


==============
Epiphany 1.6.1
==============

	* Use libstartup-notification, not gnome-desktop to launch apps [#169039]
	* Disable automatic image resizing on toolkit too
	* Fix a crash on window close with active toolbar activation
	* Fix tabs menu crash [#169833]
	* Fix tabs label sizing [#167657]
	* Default to links only with the fixed-up typeaheadfind too
	* Adapt to mozilla API changes
	* Fix automatically opened downloads [#171197]
	* Revise mime type list [#170493]

Contributors to this release:
Christian Persch and Jean-François Rameau, and the translators
Hendrik Richter (de), Adam Weinberger (en_CA), Francesco Marletta (it),
Takeshi AIHANA (ja), Steve Murphy (rw), Erçin EKER (tr), and
Ching-Hung Lin (zh_TW).


==============
Epiphany 1.6.0
==============

Translation updates:
	* Dafydd Harries (cy)
	* Ole Laursen (da)
	* Christophe Merlet (RedFox) (fr)
	* Gabor Kelemen (hu)
	* Takeshi AIHANA (ja)
	* Mugurel Tudor (ro)
	* Данило Шеган (sr, st@Latn)
	* Maxim Dziumanenko (uk)


==============
Epiphany 1.5.8
==============

Changes

	* Try to approximate startup time if not given in environment [#168820, Elijah Newren]
	* Fix crash when quitting with queued downloads [#165999]
	* Depend on gtk+ >= 2.6.3


==============
Epiphany 1.5.7
==============

Code changes

	* Implement nsIWebProgressListener in MozDownload [#165328]
	* Remove ephy_tab_get_action()
	* Launch applications and handlers with user time

Bug fixes
	* Move style notifier to ephy-toolbars-model, and apply	the flags to new toolbars
	* Move all the stuff from EphyWindow::finalize to dispose
	* Keep a ref on the tray icon [#166143]
	* Fix mixing up workspaces of windows when restoring session [#130990]
	* Use event time when grabbing the pointer [#167473]
	* Unparent the fixed toolbar before destroying the dock
	* Unset size request if the fixed toolbar is present
	* Don't activate startup notification with the recovery dialogue
	* Don't switch tabs to modal alerts in ppv mode
	* Fix bookmarks import [#163341]
	* Don't assert if we don't have a new embed in new_window callback [#165445]
	* Check the favicon file type and only allow ico, gif & png [#163886]
	* Fix compress_tilde to only look at the prefix

Contributors:
Piers Cornwell, Xan Lopez, Carlos Garnacho Parro, Christian Persch
and Jean-François Rameau; and the translators Vladimir Petkov (bg),
Jordi Mallach (ca), Miloslav Trmac (cs), Ole Laursen (da),
Hendrik Richter (de), Nikos Charonitakis (el), Adam Weinberger (en_CA),
David Lodge (en_GB), Francisco Javier F. Serrador (es), Priit Laes (et),
Pauli Virtanen (fi), Vincent Carriere (fr), Ankit Patel (gu),
Takeshi AIHANA (ja), Changwoo Ryu (ko), Žygimantas Beručka (lt),
Kjartan Maraas (nb), Reinout van Schouwen (nl), Kjartan Maraas (no),
GNOME PL Team (pl), Afonso Celso Medina (pt_BR), Duarte Loreto (pt),
Leonid Kanter (ru), Marcel Telka (sk), Laurent Dhima (sq),
Christian Rose (sv) and Maxim Dziumanenko (uk)


==============
Epiphany 1.5.6
==============

Code changes

	* Move new-window signal to the embed single, and new window creation
	  from EphyTab to EphyShell
	* Make EphyWindow implement EphyLink interface
	* Make ephy-link.h public

Bug fixes

	* Better wording for the import-failed dialogue
	* Default security.warn_submit_insecure.show_once to false
	* Fix sidebar signal emission
	* Fix "Go Up" not to omit the directory if the uri references a file [#165094]
	* Alert the user when sidebar extension is not activated [#162685]
	* Don't show the Leave Fullscreen button in lockdown fullscreen mode [#165256]
	* Switch to fullscreen toolbar also in lockdown fullscreen mode [#165256]
	* Fix reference counting problem in extensions manager
	* Disable DownloadLinkAs and SetAsBackground if saving to disk is disabled
	* Add lock fullscreen key to schemas file and improve key descriptions
	* Fix LOG() statements for non-gcc varargs case
	* Some sparse fixes
	* Add title signal handler for XUL dialogues
	* Ungrab the pointer when moving tab between notebooks [#165797]
	* Set "Clear" context menu entry insensitive in lockdown mode [#165540]
	* Don't weak ref the shell when it's finalised already [#165542]
	* Chain up to GtkWindow's keypress handler in EphyWindow
	* Don't show the menubar with F10 in lockdown mode [#165550]
	* Don't disable print preview if print setup is locked down [#165552]
	* Re-enable typeaheadfind autostart [#141963, #165811]
	* Plug some mem leaks
	* Force new windows in tabs in lockdown fs mode [#165566]
	* Don't copy params with the email address [#144469]
	* Don't exit when DBUS restarts
	* Forward startup IO to the already-running ephy instance [#150085]

Documentation

	* Update documentation.


Contributors:
Piers Cornwell, Crispin Flowerday, Adam Hooper,
Christian Persch and Jean-François Rameau; and the translators
Vladimir Petkov (bg), Jordi Mallach (ca), Miloslav Trmac (cs),
Hendrik Richter (de), Nikos Charonitakis (el), Adam Weinberger (en_CA),
David Lodge (en_GB), Francisco Javier F. Serrador (es),
Pauli Virtanen (fi), Takeshi AIHANA (ja), Changwoo Ryu (ko),
Žygimantas Beručka (lt), Kjartan Maraas (nb), Reinout van Schouwen (nl),
Kjartan Maraas (no), Afonso Celso Medina (pt_BR), Duarte Loreto (pt),
Leonid Kanter (ru), Marcel Telka (sk), Laurent Dhima (sq),
Christian Rose (sv) and Liu Songhe (zh_CN).


==============
Epiphany 1.5.5
==============

New features


Interface improvements

	* Improved the fullscreen interface: show security and status indicator
	  in the popup, use new stock icon; and show it only if the toolbar is
	  hidden; otherwise embed it in the toolbar [#153270, #164676]
	* Added favicon and security icon to location entry [#116482, #149506]
	* Renamed Remove action on bookmarksbar context menu [#162132]
	* Don't focus the zoom combo on click
	* Don't use <tt> in the strings [#163378]
	* Fix button text and capitalisation in the confirm-redirect-update
	  dialogue [#164131]
	* Unify accels to Open in New _Window[s] [#164130]
	* Show profile name for mozilla bookmarks, so we can distinguish
	  between different profiles. Don't show firefox bookmarks as mozilla
	  bookmarks [#143982]
	* Ellipsize the value and path labels in the cookie content dialogue

Code changes

	* Add GDK_ACTION_ASK, and prefer _NETSCAPE_URL over uri-list drag types,
	  to match the new Nautilus _NETSCAPE_URL DnD behaviour [#163937]
	* Simplify cookie struct
	* Add a function to get the default ephy_shell, making it easier for
	  bindings to get it
	* Add boxed type for EphyNode
	* Rename the password manager's methods to give better names in the bindings
	* Remove useless ephy_node_get_property_time method
	* Make ephy-bookmarks.h's enum a named enum, generate type.[ch] for it and
	  make sure our enum type is registered
	* Added ephy_statusbar_remove_widget()
	* Add proper _NETSCAPE_URL drag support, supplying the URL as well as the
	  title [#163937]
	* Default typeaheadfindsea to on [#157435]
	* Set typeaheadfind.autostart to off [#141963]
	* Don't allow javascript to capture the context menu call
	* Divert the contract ID of the nsSecureBrowserUIImpl class [#164670]

Documentation

	* Some gtk-doc fixes

Bug fixes

	* Fix parallel (make -j) builds
	* Fix primary text of confirm-close command not to have a period
	* Remove stamp files also on make clean
	* Fix mem leak [#164302]
	* Really make confirm-overwrite dialogue have a parent window [#164189]

Contributors:
Jorn Baayen, Piers Cornwell, Crispin Flowerday, Adam Hooper, Tomasz Kłoczko,
Christian Persch, Jean-François Rameau and Matthew Schick, and the translators
Vladimir Petkov (bg), Miloslav Trmac (cs), Rhys Jones (cy), Frank Arnold (de),
Adam Weinberger (en_CA), Francisco Javier F. Serrador (es), Ivar Smolin (et),
Takeshi AIHANA (ja), Žygimantas Beručka (lt), Marcel Telka (sk),
Laurent Dhima (sq), Christian Rose (sv) and Liu Songhe (zh_CN)


==============
Epiphany 1.5.4
==============

New features

	* Make extensions loading extensible

Interface improvements

	* Open the bookmarks in the new tabs in the same order as they in the menu
	* Make "Open Image" open the image in the default application [#138396]
	* Better tab sizing [#153725]
	* Select first row when tabbing to the topics selector [#162331]
	* Don't allow focus on the tab close buttons [#119461]
	* Unify some strings
	* Add context menu on notebook [#132989]
	* Open the GNOME background properties capplet when setting the background [#161215]
	* Improved security warning dialogues [#163278]
	* Implement toolbar style overriding as per HIG [#102520]

Code changes

	* Add context to ambiguous strings [#113932]
	* Remove about: redirections
	* Add sidebar backend
	* Change C_lear to Cl_ear [#162706]
	* Add GTypes for all flags and enums in public headers
	* Adapt to mozilla API changes
	* Display open lock for low 'secure' sites too [#151709]
	* Unify the location and favicon actions
	* Don't show the description for no-secure and broken sites
	* Add more categories to desktop file [#162973]

Bug fixes

	* Don't destroy the filepicker dialogue with the parent [#156816]
	* Fix some mem leaks
	* Don't store more than 5 hidden popups [#160863]

Contributors to this release:
Piers Cornwell, Crispin Flowerday, Adam Hooper, Jean-François Rameau

and the translators: Vladimir Petkov (bg), Miloslav Trmac (cs), [unknown] (el),
Adam Weinberger (en_CA), Francisco Javier F. Serrador (es), Takeshi AIHANA (ja), 
Žygimantas Beručka (lt), Kjartan Maraas (nb), Reinout van Schouwen (nl),
Leonid Kanter (ru), Marcel Telka (sk), Laurent Dhima (sq)


==============
Epiphany 1.5.3
==============

New features

	* Update bookmarks from HTTP 301 [#126312]
	* Add bookmarks export to bookmarks editor
	  (patch by John Spray, XSL stylesheet by Stefan Rotsch) [#157745]


Interface improvements

	* Fix "Open Frame" menu item name [#153816]
	* Use stock icon for "Open In New Tab" in History Window and Bookmarks Editor
	* Use ellipsised labels everywhere instead of shortening strings
	* Tell the user with which application we're going to open the content [#141327]
	* Add stock icon to "Save As..." button in content handler
	* Add "Clear" to entry context menu [#118395]
	* Add app name to content handler dialogue [#141327]
	* Implement context menu on tray icon, as per HIG [#152903]
	* Add "View Properties" to duplicated bookmarks dialogue [#117643, #138300]
	* Remove inline help in toolbar editor [#137603]

Code changes

	* Removed usage of deprecated gconf API
	* Removed usage of deprecated glade API
	* Makefile.am modernisations
	* Ensure the extensions manager UI is loaded
	* Use alignments instead of empty labels for alignment in glade files
	* Disable search in downloader window [#157157]
	* Check the encodings before we set the mozilla pref [#150266]
	* Add attach_tab and detach_tab functions to extension interface
	  (Crispin Flowerday, Adam Hooper) [#153732]
	* Use gtk_show_about_dialog(), and handle urls and mailto (Adam Hooper)
	* Disable Zoom items for images, and disable zoom, encoding and view source
	  for images and xml (xul) documents [#132240]
	* Make sure we don't have any app-modal dialogues [#110479]
	* Adapt to mozilla API changes

Bug fixes

	* Don't offer to resume if there are open windows [#160345]
	* Deactivate the context menu on window close [#156812]
	* Fix double-opening of content [backed out patch from #158466]
	* Fix name for "gd" language (Scots Gaelic) [#161509]
	* Disable Print and Print Preview while still loading the page [#116344]
	* Don't show multiple toolbar editors for the same window [#111114]
	* Correct language code for Afrikaans
	* Fix untranslated string in downloader window [#161739]

Translation updates

	* Vladimir Petkov (bg)
	* Miloslav Trmac (cs)
	* Martin Willemoes Hansen (da)
	* Adam Weinberger (en_CA)
	* David Lodge (en_GB)
	* Francisco Javier F. Serrador (es)
	* Takeshi AIHANA (ja)
	* Žygimantas Beručka (lt)
	* Reinout van Schouwen (nl)
	* Marcel Telka (sk)
	* Laurent Dhima (sq)
	* Ercin Eker (tr)
	* Liu Songhe (zh_CN)


==============
Epiphany 1.5.2
==============

Interface improvements

	* When popping up the context menu with keyboard, select the first item[#154907]
	* Don't detach the tab when releasing the mouse button while still over
	  the same window [#143954]
	* Better wording for the crash recovery dialogue (Piers, Christian)
	* Make the "duplicate bookmark" dialogue not modal
	* Better wording for the accept cert dialogue [#127234]
	* Add short-time filter in history window
	* Better positioning for the context menu popup in a treeview (Crispin Flowerday)
	* Add resize grip [#137845]
	* Warn before deleting a topic (Xan) [#149294]
	* Implement history deletion on per-site basis [#116609]
	* Add shortcut to Send To menuitem, as per HIG [#148655]
	* Make content handler dialogue not modal

Code changes

	* Bring the window to the foreground when showing a modal alert
	* Show language code in the string in languages editor [#115355]
	* More porting to GtkMessageDialog
	* Don't hardcode "epiphany" as argv[0], use g_get_prgname() instead [#118427]
	* Size-allocate the embed if it's not mapped but has never been
	  size-allocated before [#156854]
	* Fixes for mozilla API changes
	* Don't save session_crashed.xml while shutting down
	* Check favicon urls with script sec manager and content policy
	* Simplify the gconf -> mozilla prefs bridge
	* Add a way to show the cert info dialogue for the page's certificate
	* Disallow favicon links from subframes
	* Add --disable-filepicker to use when the mozilla build itself has a native gtk+ filepicker
	* Remove generic 'site' hostname fallback (Mikhail Zabaluev) [#155442]
	* If the iso-codes package is available, use that to translate
	  language names and offer a wider variety of languages [#155498]
	* Don't use deprecated gnome vfs APIs (Marco)

Bug fixes

	* Show tooltips for zoom control again[#155826]
	* Make tooltips on zoom control work for Ctrl-F1
	* Fix a mem leak (Adam)
	* Sanitise the embed popup position [#157162]
	* Fix button sensitivity setting in language editor
	* Fix check for nsIPassword.h header to look in the right place [#157743]
	* Fix time filter in history window for time zones != GMT
	* Fix signed/unsigned int confusion
	* Fix opening content with external content handlers (Marco)
	* Portability fix for 64 bit systems (James Henstridge)
	* Fix hang after --import-bookmarks [#136170]
	* Fix crash when getting the "die" signal from session manager
	* Don't access freed memory [#158202]
	* Fix wrong certificate shown [galeon #158453]
	* Fix opening of content when not downloading automatically [#158466]
	* Fix build without PSM
	* Fix tabs menu ordering with tab-groups extension
	* Fix some string comparision bugs in event context
	* Fix out-of-srcdir build (Marco, Christian)
	* Don't raise window on --new-tab [#158923]
	* Fix a mem leak (Vincent Untz)

Documentation updates

	* Added manual translation into Finnish, by Pauli Virtanen.

Translation updates

	* Jordi Mallach (ca)
	* Miloslav Trmac (cs)
	* Hendrik Richter (de)
	* Adam Weinberger (en_CA)
	* David Lodge (en_GB)
	* (es)
	* Takeshi AIHANA (ja)
	* Žygimantas Beručka (lt)
	* Kjartan Maraas (nb)
	* Reinout van Schouwen (nl)
	* Gustavo Noronha Silva (pt_BR)
	* Marcel Telka (sk)
	* Laurent Dhima (sq)


==============
Epiphany 1.5.1
==============

New features

	* Load and unload extensions on user demand

Interface improvements

	* Separate context menu for email links [#144244]
	* Select the topic when adding it [#151925]
	* Better positioning of context menus for treeviews [#152431]
	* Install a placeholder for the view toggles group [#153767]
	* Add tooltips for context menus [#151764]
	* Support multiple printers in the print dialog
	* Add tooltips on the navigation history arrows, and fix the tooltip
	  on the "Up" button to be consistent with nautilus [#155825]
	* Add tooltip on the drag handle [#155827]
	* Add tooltip on close button [#155828]
	* Use new gtk+ HIG message dialogue API [#130232]
	* Make the confirm-close-with-form-data dialogue window modal
	* When showing a modal alert put up by a web page, switch the window
	  to that tab

Code changes

	* Adapt to mozilla API changes
	* Use ellipsisation support in GtkLabel
	* Use new gtk+ GtkCellRendererProgress
	* Use more icons from icon theme
	* Use the gtk setting for the menubar accel instead of hardcoding F10
	* Use new GtkMenuToolButton
	* Just pass a GType to ephy_embed_factory_new_object()
	* Add another mimetype to import types file filter
	* Install ephy-embed-factory.h
	* Add ephy_window_get_ui_manager(), and remove the manager
	  from the public EphyWindow struct
	* Use GtkAboutDialog
	* Make ephy-state.h public [#153809]
	* Improved debugging support [#153805]
	* Don't reference private objects from public headers [#153766]
	* Split the default prefs into the common part, and mozilla/new toolkit
	  specific parts.
	* Use gtk_window_set_default_icon_name()
	* Recognise "Desktop" special downloads directory [#152926]
	* Notify when entering or leaving print preview mode [#154591]
	* Initialize plugins path env var for backward compatibility
	* Allow to set the default window state to maximize, default to maximise
	* Read extension descriptions from .xml, load them with the specified
	  loader (for now, just only .so is supported)
	* Add extensions-manager-ui as default active extension
	* Validate extension XML files against an XSD Schema
	* Add varargs version of ephy_dialog_get_control to get more than one widget
	  at a time
	* Remove ephy_string_parse_uri_list, and use new glib function
	  g_uri_list_extract_uris() instead
	* Only multiplex [attach|detach]_window to extensions implementing the
	  EphyExtension interface
	* Annotate "if (type == 0)" in get_type functions with G_UNLIKELY
	* Add EPHY_NODE_CHANGED signal [Peter Harvey]
	* Save tons of strdups in bookmarks menu
	* Unset the use-underline label property instead of doubling the underscores
	* Use named icon for the logo in about dialogue
	* Use gtk_entry_set_width_chars() to set the smart bookmark entry width
	* Use ellipsising labels to shorten the bookmarks and topics titles [#147765]
	* Avoid strdups in entry completion func [Peter Harvey]
	* Make bookmarks menu take a configurable path where to merge its UI
	* Allow localised extensions names and descriptions
	* Disable description file validation for now
	* Fix node signal [dis]connection while a signal emission is running
	* Make sure there's only one properties dialogue per bookmark [#148398]
	* Remove remaining time from tooltip of tray icon [#145955]

Bug fixes

	* Remove -s switch which was used by now-gone nautilus view
	* Use a small custom icon for tabs close button [#144772]
	* Fix navigation and Go button proxy menu items [#151648, #141548]
	* Use rm -f as remove command, not rm -r
	* Use SAME_APP flag for drag destination [#152388]
	* Keep popup position synced with his size requisition [#143585]
	* Enable conversion for favicon downloads [#152866]
	* Fix download progress indicator in downloader view
	* Fix overflow in remaining time calculation [#153136, Jhon Spray]
	* Initialise position passed to gtk_editable_insert_text()
	* Fix some mem leaks
	* Remove explicit PAC autoconf call, it works perfectly ok without it
	* Don't size-allocate unmapped tabs, fixing slow resizes [#128191]
	* Fix print preview and fullscreen mode interaction [#154456]
	* Don't allow activation of the hidden menubar in ppv mode
	* Grammar fix in schema [#154605]
	* Fix crash in bookmarks menu [#154805]
	* Remove duplicate AM_PROG_INTLTOOL [#155028]
	* Fix EphyNode callback data destruction [#152718, Peter Harvey]
	* Fix import of bookmarks in root folder [#152443]
	* Activate tray with double-click, as per HIG [#152899]
	* Always chain up to parent's dispose handler
	* Fix return type of tab_delete slot
	* Move window destruction after tab-removed signal emission [#151607]
	* De-couple instantiation and initialisation of the extensions manager
	* Correctly change the statusbar children's frams's shadow type when
	  the statusbar shadow type changes
	* Don't open all bookmarks in tabs [#156843]
	* Depend on libxml >= 2.6.12, for its fix of bug #150647
	* Fix restoring window size on crash recovery [#156881]
	* Fix crash when deleting bookmark with open properties dialogue [#155880]
	* Fix activation of the Go button while in toolbar activation mode [#155650]

Documentation updates

	* Document EPHY_DEBUG_BREAK
	* Add manpage [#156067, Jordi Mallach]

Translation updates

	* Abdulaziz Al-Arfaj (ar)
	* Vladimir Petkov (bg)
	* Miloslav Trmac (cs)
	* Marie Lund (da)
	* Adam Weinberger (en_CA)
	* David Lodge (en_GB)
	* Francisco Javier F. Serrador (es)
	* Meelad Zakaria (fa)
	* Olivier Cortes (fr)
	* Žygimantas Beručka (lt)
	* Hasbullah Bin Pit (ms)
	* Reinout van Schouwen (nl)
	* Marcel Telka (sk)
	* Laurent Dhima (sq)
	* Danilo Segan (sr)


==============
Epiphany 1.4.9
==============

Changes

	* Fix several focus issues (some with security implications)
	* Fix crash when updating tray icon
	* Fix lock up with the move cursor showing
	* Fix some leaks
	* Fix getting the trust setting from New CA dialogue
	* Don't activate the location entry if it's hidden


==============
Epiphany 1.4.8
==============

Changes

	* Fix crash when closing window while filepicker is up [#156816]
	* Use gnome_vfs_url_show() for Send To [#162532]
	* Set selection mode to BROWSE in topics selector [#162331]
	* We don't need to implement nsIBrowserHistory
	* Don't focus the close-tab button on click [#119461]
	* Don't store more than 5 hidden popups [Adam Hooper, #160863]
	* Fix a mem leak [#164302]
	* Really make confirm-overwrite dialogue have a parent window [#164189]
	* Rename EphyTab's "visible" property to not clash with GtkWidget property
	* Default typeaheadfindsea to on [#157435]
	* Switch to fullscreen toolbar also in lockdown fullscreen mode [#165256]
	* Disable DownloadLinkAs and SetAsBackground if saving to disk is disabled
	* Don't crash if we need to open an orphan non-chrome window [part of #165445]
	* Some sparse fixes
	* Ungrab the pointer when moving tab between notebooks [#165797]
	* Don't weak ref the shell when it's finalised already [#165542]
	* Don't show the menubar with F10 in lockdown mode [#165550]
	* Don't disable print preview if print setup is locked down [#165552]
	* Adapt to mozilla API changes
	* Implement nsIWebProgressListener [#165328]
	* Fix window destruction [#165992]


==============
Epiphany 1.4.7
==============

Changes

	* Use stock icon for "Open In New Tab" in History Window and Bookmarks Editor
	* Don't offer to resume if there are open windows [#160345]
	* Deactivate the context menu on window close [#156812]
	* Fix build in !MOZILLA_HAVE_PSM case
	* Make the extensions modules resident [#160945]
	* Disable Print and Print Preview while still loading the page [#116344]
	* Correct language code for Afrikaans
	* Adapt to changed mozilla APIs
	* Wrap the label in the Confirm Overwrite dialogue [#161771]
	
Translation updates

	* Ercin Eker (tr)


==============
Epiphany 1.4.6
==============

Changes

	* Fix wrong certificate stored (Christian) [#158453]
	* Disallow favicon links from subframes (Christian)
	* Fix opening of content when not downloading automatically (Marco) [#158466]
	* Add --disable-filepicker configure option (Christian)
	* Fix tabs menu ordering when using the tab-groups extension (Christian)
	* Fix event context computation (Christian)
	* Adapt to mozilla API changes (Christian; patch adapted from a galeon patch
	  by Crispin Flowerday)
	* Fix out-of-srcdir build (Marco, Christian)
	* Don't raise windows when using --new-tab (Christian) [#158923]

Translation updates

	* Jordi Mallach (ca)


==============
Epiphany 1.4.5
==============

Changes

	* Fix session remove command
	* Fix import of bookmarks in root folder [#152443]
	* Activate tray icon with double-click [#152899]
	* Add manpage (Jordi Mallach) [#156067]
	* Don't open all bookmarks in new tabs [#156843]
	* When showing a modal alert put up by a web page,
	  switch the window to that tab
	* Emit ::tab-removed after the tab has been removed [#151607]
	* Fix disconnect on node destroy [Peter Harvey]
	* Fix node signal [dis]connection while signal emission is running
	* Make sure there's only one properties diaogue per bookmark [#148398]
	* Fix crash when removing bookmark with open properties dialogue [#155880]
	* Fix toolbar activation [#155650]
	* Check favicon urls with script sec manager and content policy
	* Fix zoom control so that it shows tooltips again [#155826]
	* Make the tooltip on the zoom control also work on Ctrl-F1
	* When popping up the context menu with keyboard, select the first item [#154907]
	* Sanitise the embed popup position [#157162]
	* Fix button sensitivity setting in language editor not to first
	* Fix history date filter to work correctly in time zones != UTC
	* Better positioning for the context menu popup in a treeview (Crispin Flowerday)
	* Fix opening content with external content handlers (Marco)
	* Remove remaining time tooltip from tray icon [#145955]
	* Fix hang after importing bookmarks from command line [#136170]
	* Fix crash when no tool windows are open when the session manager
	  sends us the "die" signal
	* Fix opening anchored links in new tabs [#156854]
	* Adapted to Mozilla API changes
	* Fix a freed memory read

Documentation translations

	* Add manual translation into Finnish, by Pauli Virtanen

Translation updates

	* Ole Laursen (da)
	* Žygimantas Beručka (lt)
	* Leonid Kanter (ru)


==============
Epiphany 1.4.4
==============

Bug fixes

	* Add a list of printers to the print dialog. Fix printing
	  in several recent ditributions. (Marco)
	* Remove duplicate AC_PROG_INTLTOOL (Christian) [#155028]
	* Fix a crash when rebuilding bookmarks menu (Christian) [#154805]

==============
Epiphany 1.4.3
==============

Bug fixes

	* Fix compilation with gtk+ 2.4.x.


==============
Epiphany 1.4.2
==============

Bug fixes

	* Set dialogs icon to default ephy icon (Christian)
	* Fix slow resize of the window with many tabs (Christian)
	* Don't allow activation of the hidden menubar
	  in print preview mode. (Christian)
	* Recognise "Desktop" special downloads directory. (Christian) [#152926]
	* Backwards compatibility with old mozilla plugins
	  location (Marco)

Translation updates

	* Changwoo Ryu (ko)
	* Gareth Owen (en_GB)

==============
Epiphany 1.4.1
==============

Code changes

	* Adapt to mozilla API changes (Christian)

Bug fixes

	* Auto-check new topics (Marco) [#151925]
	* Don't accept dragged toolbar items from other apps (Marco) [#152388]
	* Fix toolbar overflow menu items (Christian) [#151648]
	* Fix for too small tab close buttons (Marco) [#144772]
	* Enable conversion for favicon downloads (Marco) [#152866]
	* Fix overflow in remaining time calculation (Jhon Spray, Marco) [#153136]
	* Fix some mem leaks (Christian)
	* Fix ephy-bookmarks.h header (Christian) [#153766]
	* Fix compiler warnings (Christian)

Translation updates

	* Adam Weinberger (en_CA)
	* Olivier Cortes (fr)
	* Francesco Marletta (it)


==============
Epiphany 1.4.0
==============

Bug fixes

	* Fix invisible status icon (Christian) [#151501]

Documentation updates

	* Document popup window functionality (Adam) [#145412]

Translation updates

	* Abdulaziz Al-Arfaj (ar)
	* Vladimir "Kaladan" Petkov (bg)
	* Progga (bn)
	* Kenan Hadžiavdić (bs)
	* Jordi Mallach (ca)
	* Dafydd Harries (cy)
	* Ole Laursen (da)
	* Nikos Charonitakis (el)
	* Hasbullah Bin Pit (ms)
	* Kjartan Maraas (nb)
	* Pawan Chitrakar (ne)
	* Reinout van Schouwen (nl)
	* Åsmund Skjæveland (nn)
	* Kjartan Maraas (no)
	* Estêvão Samuel Procópio (pt_BR)
	* Isriya Paireepairit (th)
	* Ercin Eker (tr)
	* Mugurel Tudor (ro)
	* Ching-Hung Lin (zh_TW)


==============
Epiphany 1.3.8
==============

Code changes

	* Track mozilla API change on 1.7 branch (Christian)

Bug fixes

	* Make save-as obey lockdown key (Christian) [#151039]
	* Correct stored tab positioning after tab_added signal (Justin Wake)
	* Fix for bookmarks on main toolbar (Christian) [#151267]
	* Fix signal handler return values for popup_menu signal (Christian)
	* Fix crash on print to filename with nonabsolute path (Christian) [#148849]

Documentation

	* Added japanese translation of the manual, translated by 佐藤 暁 (SATOH Satoru)

Translation updates

	* Ole Laursen (da)
	* Christian Neumair (de)
	* Nikos Charonitakis (el)
	* Iñaki Larrañaga Murgoitio (eu)
	* Ankit Patel (gu)
	* Gurban Mühemmet Tewekgeli (tk)


==============
Epiphany 1.3.7
==============

Bug fixes

	* Fix crash when loading a bookmark from the menu (Christian) [150982]

Translation updates

	* Francisco Javier F. Serrador (es)


==============
Epiphany 1.3.6
==============

Bug fixes

	* Fix mozilla components path (Marco) [#150358]
	* Fix default horizontal scroll wheel action (Christian) [#148557]
	* Fix for newer libtools (Christian) [#150673]
	* Keep passwords list in pdm dialogue up-to-date (Christian) [#150296]
	* Fix warning when moving tabs between windows (Christian) [#150822]
	* Partially fix bookmarks menu speed issue (Christian) [#150822]
	* Fix bookmarks menu hierarchy and auto-updating (Christian)
	  [#147470, #147786, #150246]
	* Change bookmarks hierarchy separator (Christian) [#149150]
	* Also pop up context menus with menu key (Christian) [#149150]

New and updated translations:

	* Mətin Əmirov (az)
	* Vladimir "Kaladan" Petkov (bg)
	* Kenan Hadžiavdić (bs)
	* Pauli Virtanen (fi)
	* Dvornik László (hu)
	* Takeshi AIHANA (ja)
	* Kjartan Maraas (nb)
	* GNOME PL Team (pl)
	* Laurent Dhima (sq)
	* Christian Rose (sv)
	* Jayaradha N (ta)
	* Maxim Dziumanenko (uk)


==============
Epiphany 1.3.5
==============

Code changes

	* Get rid of the startup script, and use rpath linking instead
	  (ported from galeon)
	* Adapt to changed mozilla APIs (Christian)

Bug Fixes

	* Fix application name i18n (Christian) [#148948]
	* Some mem leak fixes (Jean-François Rameau)
	* Fix restoring the history window on resume (Christian)
	* Fix dragging of urls which gnome-vfs can't handle (Christian)
	* Fix new tab positioning when opening tabs from drags (Christian)
	* Make keyword search URL localisable (Christian) [#144909]
	* Fix crash in ellisising label (Christian) [#149114]
	* Sort topics by name in bookmark properties dialogue
	  (Christian Neumair) [#149639]
	* Fix some compiler warnings (Christian)
	* Fix compilation with gcc 2.95 (Christian)
	* Fix context menu on links with namespaced tag (Mikael Brockman) [#150208]

Translation updates

	* Arafat Medini (ar)
	* Mətin Əmirov (az)
	* Vladimir Petkov (bg)
	* Miloslav Trmač (cs)
	* Martin Willemoes Hansen (da)
	* Adam Weinberger (en_CA)
	* Gareth Owen (en_GB)
	* Francisco Javier F. Serrador (es)
	* Pauli Virtanen (fi)
	* Christophe Merlet (RedFox) (fr)
	* Alastair McKinstry (ga)
	* Ravishankar Shrivastava (hi)
	* Laszlo Dvornik (hu)
	* Takeshi AIHANA (ja)
	* Changwoo Ryu (ko)
	* Hasbullah Bin Pit (ms)
	* Reinout van Schouwen (nl)
	* Åsmund Skjæveland (nn)
	* GNOME PL Team (pl)
	* Duarte Loreto (pt)
	* Estêvão Samuel Procópio (pt_BR)
	* Mugurel Tudor (ro)
	* Dmitry G. Mastrukov (ru)
	* Laurent Dhima (sq)
	* Danilo Segan (sr, sr@Latn)
	* Maxim Dziumanenko (uk)
	* Liu Songhe (zh_CN)


==============
Epiphany 1.3.4
==============

Code changes

	* Add mime types to .desktop file (Xan)
	* Simplify proxy PAC handling (Christian)
	* Reworked node views (Marco)
	* Adapt to mozilla API change (Christian)
	* Don't use -include which isn't portable (Christian) [#143094]
	* Fix signedness warnings with gcc 3.5 (Jon Oberheide)
	* Misc popup blocker code cleanup (Adam)

Bug Fixes

	* Fix downloader crash on shutdown (Marco) [#141928]
	* Fix mem leaks in gtk NSS dialogues (Christian, ported from galeon)
	* Fix crash when importing bookmarks from mozilla (Marco) [#145611]
	* Gracefully handle inability to create downloads directory
	  (Marco) [#146902]
	* Fix profiler output for times > 1 s (Christian, ported from galeon)
	* Fix crash in the new bookmark dialogue with deleted topics
	  (Marco) [#144770]
	* Use our stock icon for the downloader icon in tray (Christian)
	* Fix dialogue title of Save Link As filechooser (Christian) [#138208]
	* Correctly update toolbar's not-removable flag (Christian)
	* Fix mem leak from toolbars model (Christian)
	* Fix non-ascii topic titles in the bookmarks menu (Christian) [#147469]
	* Fix download directory chooser initial directory (Christian) [#146055]
	* Confirm overwriting file from content handler (Christian) [#143501]
	* Fix crash when screen size changes after using fullscreen (Christian)
	* Fix print-to-file filechooser modality (Christian) [#147628]

New and updated translations:

	* Владимир Петков (bg)
	* Miloslav Trmač (cs)
	* Christian Neumair (de)
	* Francisco Javier F. Serrador (es)
	* Νίκος Χαρωνιτάκης (el)
	* Gareth Owen (en_GB)
	* रविशंकर श्रीवास्तव (hi)
	* 相花 毅 (ja)
	* Changwoo Ryu (ko)
	* Žygimantas Beručka (lt)
	* Kjartan Maraas (no)
	* GNOME PL Team (pl)
	* Duarte Loreto (pt)
	* Laurent Dhima (sq)


==============
Epiphany 1.3.3
==============

New features

	* Lockdown: disable_quit, disable_new_window,
	  first_window_fullscreen (Christian, Christopher James Lahey)

Interface changes

	* Sort history items by last visit
	* Improve bookmarks toolbar direct manipulation (Marco)

Bug Fixes

	* Fix print dialog filename encoding (Christian)
	* Fix some memory leaks (Xan, Christian)

New Translations:

	* רועי קרשטיין, גיל אשר (he)

Updated Translations:

	* Vladimir Petkov (bg)
	* Miloslav Trmac (cs)
	* Ole Laursen (da)
	* Nikos Charonitakis (el)
	* Gareth Owen (en_GB)
	* Francisco Javier F. Serrador (es)
	* Gil Osher (he)
	* Laszlo Dvornik (hu)
	* Takeshi AIHANA (ja)
	* Estêvão Samuel Procópio (pt_BR)
	* Laurent Dhima (sq)

==============
Epiphany 1.3.2
==============

Bug fixes

	* Fix crash when download finishes (Xan)

Translations

	* Xavier Conde Rueda (ca)


==============
Epiphany 1.3.1
==============

New features

	* Load extensions from ~/.gnome2/epiphany/extensions too (Ross Burton) [#143835]
	* Allow importing of our own bookmarks format (Christian) [#144699]
	* Support for working offline (Christian)
	* Integrated popup blocking (Adam)

Removed features

	* Removed support for mozilla 1.6 (Marco)

Interface changes

	* Append new tabs to the end instead of grouping them (Marco)
	* Add "New Topic" button to the New Bookmark dialogue (Marco) [#110640]
	* Improved import and presentation of hierarchical bookmarks (Marco)
	* Implemented "Open in tabs" from toolbar topics (Marco) [#108143]
	* New tab load animation (Christian)
	* Reordering of bookmarks on toolbar by DND (Marco)
	* Add Open In Tabs to toolbar topics (Marco)
	* Add context menus for bookmarks and topics on toolbars (Marco)
	* Use Blank Page icon as default icon (Marco)
	* Add mim-type icon in downloader (Xan)

Code changes

	* Ported to mozilla embed strings (Marco, Christian, Xan)
	* Moved external protocol handler prefs to js file (Marco)
	* Disabe xpinstall by default (Christian) [#144035]
	* Separate bookmarks from other toolbars (Christian, Marco)
	* Implement popup-blocked signals (Adam) [part of #111930]
	* Includes cleanup (Marco)
	* Allow custom types in the permissions manager (Christian)
	* EphyNode ID cleanups (Marco)
	* Simplify printing code (Marco)
	* Track mozilla trunk API changes (Christian)

Bug fixes

	* Fixed "Exit Fullscreen" popup position in RTL locales (Christian) [#140828]
	* Fix filechooser default name in !modeSave mode (Christian)
	* Fix webcal: uris (Marco) [#143899]
	* Don't hide clipboard actions on input context (Marco) [#139040]
	* Fix CSS background context menu (Crispin Flowerday) [#143602]
	* Retain custom data when moving toolbar items around (Marco)
	* Fix spinner in gradient themes (Crispin Flowerday) [#134686]
	* Escape some strings when using them in labels with markup
	  (Crispin Flowerday, Christian)
	* Fix reload of framed pages not to go to top url (Christian) [#115800]
	* Use generic name in .desktop file (Marco) [#144284]
	* Fix Control-L location bar activation (Christian) [#144191]
	* Hide non-toplevel urls from history (Christian) [#142143]
	* Fix crash with confused toolbars file (Christian) [#144698]
	* Fix toolbar visibility after fullscreen (Christian) [#144785]
	* Fix serials on files with 2 extensions (.tar.gz) (Xan)
	* Always show menubar on F10 (Christian) [#141999]
	* Fix context menu on form elements (Christian) [#143942]
	* Fix display of IDN domain names for cookies and password (Christian) [#130930]
	* Unescape email address when copying to clipboard (Christian) [144462]
	* Don't delete bookmark when dragging to a tab (Marco) [#145254]

Documentation translations

	* New translation of documentation into spanish
	  by Francisco Javier F. Serrador

Translations

	* Mətin Əmirov (az)
	* Владимир Петков (bg)
	* Miloslav Trmač (cs)
	* Christian Neumair (de)
	* Ole Laursen (da)
	* Νίκος Χαρωνιτάκης (el)
	* Alexander Winston (en_CA)
	* Gareth Owen (en_GB)
	* 相花 毅  (ja)
	* Reinout van Schouwen (nl)
	* GNOME PL Team (pl)
	* Estêvão Samuel Procópio (pt_BR)
	* Marcel Telka (sk)
	* Данило Шеган  (sr, st@Latn)
	* Laurent Dhima (sq)
	* Liu Songhe (zh_CN)


==============
Epiphany 1.3.0
==============

Removed features

	* Dropped support for mozilla < 1.6 (Christian)
	* Removed nautilus view (Christian)

Interface improvements

	* Fix duplicate accesskey, use correct case for button text and make
	  message selectable in the confirm-close dialogue (Piers)
	* Use verb for action button and various minor tidy ups on the import
	  dialogue (Piers)
	* Add "Save Link As..." to Image/Link popup (Christian) [#138207]
	* Remove "Open Image in New [Tab|Window]" from the context menu
	  (Christian)
	* Remove extraneous separators in context menus (Christian) [#115897]
	* Use right capitalisation for fonts lang label in prefs (Piers)
	* Make buttons the same size in Industrial theme and make text 
	  selectable in history confirm-clear dialogue (Piers)
	* Make prefs, pdm and print setup dialogues transient to their parent
	  and destroy with parent (Christian) [#139124]
	* Make warning message selectable in content handler dialogue (Piers)
	* Sort the actions in the location entry autocompletion dropdown 
	  (Christian) [#139575]
	* Add Ctrl+S as an alternate accel for "Save As" (Piers) [#139415]
	* Add "Downloads" folder shortcut to our file chooser dialogues 
	  (Christian)
	* HIGified confirm-overwrite dialogue (Patanjali Somayaji, Piers) 
	  [#133152]
	* Make Escape cancel overwrite dialog (Piers)
	* Add some filters to the file chooser dialogues (Christian) [#139418]
	* Jump to new tabs created from command lines (Christian) [#141168]
	* Fix accelerator for OpenImage action (Christian)
	* Statusbar re-design: Move lock icon to left; hide progress bar when
	  no activity (Christian) [#137845]
	* Simplify context menu wrt. frames (Christian) [#138442]
	* Open bookmark in new tab on middle-click (Christian) [#106250]

Code changes

	* Made sure every file includes config.h (Christian)
	* Use more efficient mozilla string conversion routines (Christian)
	* Adapt to various mozilla API changes (Marco, Christian, Xan, Piers)
	* Improve chrome handling (Marco)
	* Cleanup after making EphyTab a GtkBin (Christian)
	* Some API cleanups (Adam)
	* Some comment cleanups (Adam)
	* Register stock icons (Christian)
	* Added/improved some debug output (Christian)
	* Get rid of #if GTK_CHECK_VERSION() stuff and remove optionmenu code
	  in the Gtk NSS dialogues (Christian)
	* Synchronise editable toolbar changes from galeon, this fixes simple
	  usage, stops crashes when dragging items to and from other
	  applications, and adds the ability to override the toolbar style
	  (Crispin Flowerday)
	* Track the active window with focus events (Christian)
	* Eliminate ExternalProtocolHandlers in favor of setting prefs to make
	  Mozilla not handle the protocols internally (Christian Biesinger)
	* Add defines for private mozilla api usage to make it easier to track
	  what we need to port to embed string and what we need to be using only
	  public api (Marco)
	* Make the statusbar's GtkTooltips publicly accessibly (Christian)
	* Clean up encoding handling (Christian)
	* Allow compilation without mozilla wallet extension (Christian)
	* Some fixes for compilation with gcc 2.95 (Christian)
	* Backport changed from the new gtkcellrendererprogress which
	  was based on ephy's, to support RTL and fix overflow bug (Christian)
	* Various solaris portability fixes (Brian Cameron, Christian)

Bug fixes

	* Remove unnecessary g_object_notify()s (Marco)
	* Fix test for toolbar removability (Christian)
	* Don't crash when draggin a toolbar separator around (Christian)
	* Make location entry not have a proxy menu item (Christian)
	* Make select-by-key support unsorted lists (Xan) [#137054]
	* Don't unref NULL icons (Christian) [#137715]
	* Fix content policy contract-ID (Christian)
	* Set window border icon on the about dialogue (Christian) [#137806]
	* Fix width of "Add" button in PDM dialogue with some themes
	  (Christian) [#137811]
	* Fix XBEL mime type for import (Marco)
	* Fixes to API documentation build (Adam, Christian)
	* Make the "Go" button actually work (Christian)
	* Fix arg type of dom_* signals to match the closure (Christian)
	* Use stock icon for "Open" on content handler dialogue 
	  (Christian) [#135765]
	* Use stock icon for "Download" on content handler dialogue (Christian)
	* Fix proxy tool item disconnection on location entry (Christian)
	* Fix opening of bookmarks in new tabs when there is no existing window
	  (Christian) [#138343]
	* Fix context menu on anchors without href attribute (Christian) [#138200]
	* Make startup script work on older solarises (Christian) [#138088]
	* Fix filechooser response codes (Federico Mena Quintero) [#138263]
	* Fix compilation with -fdata-sections (Christian) [#136878]
	* Don't allow a font size less than 1 (Piers)
	* Fix bookmarks toolbar visibility in fullscreen and print preview mode
	  as well as for javascript popups (Christian) [#138520]
	* Fix link drag-and-drop to empty space on notebook (Christian) [#138902]
	* Don't abort on gconf errors, just display a message on console
	  (Christian) [#139247]
	* Make ephy-node refcount initialize to 1 and not 0 (Adam)
	* Fix various filename encoding bugs (Christian)
	* Don't quit the filechooser when selecting "No" from the confirm-
	  overwrite dialoge (Christian) [#139400]
	* Set the action's accel_path, fixes crash when dynamically assigning
	  accels (Christian) [#139641]
	* Fix saving of linked content. Don't create the directory; mozilla
	  will do it for us if necessary (Christian)
	* Make the "Files" suffix translatable (Christian)
	* Removed the ge_popup_blocked signal on EphyEmbed (Adam)
	* Do not uncompress when the type is not html (Marco) [#131778]
	* Fix chrome for new windows opened from _blank target (Marco) [#139512]
	* Fix font selection combo box issues (Christian) [#138560]
	* Fix encoding of saved content (Marco) [#141050]
	* Exit print preview mode before closing a window; fixes a crash
	  (Christian) [galeon #121298]
	* Fix crash when trying to get URL from unrealizes EphyEmbed (Marco)
	* Fix some mem and refcount leaks (Christian)
	* Always pass the cache key to the persist object so we don't re-fetch
	  the page on save (Christian) [#141652]
	* Forward download nsIAuthPrompt interface to the single sign-on prompt
	  (Christian)
	* Destroy the EphyBrowser in destroy handler, but delete it only on
	  finalize. Make public EphyBrowser methods safe for calling after
	  Destroy (Christian) [#142184]
	* Fix LD_LIBRARY_PATH in startup script never to (implicitly) include
	  current dir (Christian) [#141576]
	* Fix observer topic check for cookie "cleared" notification (Christian)
	* Fix capitalisation in filechoose filter names (Christian)
	* Emit the "tab_removed" signal also for the window's last tab
	  (Christian) [#142078]
	* Fix stupid bug which prevented compilation with gcc 3.4 (Christian)
	* Elimiate indeterminate progress (Christian) [#142303, #142305]
	* Fix toolbar editor drag icon theming bug (Crispin Flowerday)
	* Fix reload not to use forced reload by default (C. J. N. Breame) [#143365]

Documentation

	* xml docs validity fixes (Piers)
	* xml docs validity fixes (Sebastian Heinlein) [#140918]
	* Improve description of 'secure' cookies (Piers) [#136443]
	* API documentation (Adam)
	* Maintenance of 1.4 plan (Piers, Marco)
	* Update screenshots (Piers)
	* Updated Smart Bookmarks help content (Matthew Gatto) [#139616]
	* Minor updates to match UI (Piers)

Documentation translations

	* Francisco F. Serrador (es)
	* Hizkuntza Politikarako Sailburuordetza (eu)

Translations

	* عرفات المديني، تونس (ar)
	* Владимир Петков (bg)
	* Xavier Conde Rueda (ca)
	* Miloslav Trmač (cs)
	* Ole Laursen (da)
	* Alexander Winston (en_CA)
	* Gareth Owen (en_GB)
	* Iñaki Larrañaga Murgoitio (eu)
	* Francisco Javier F. Serrador (es)
	* Alastair McKinstry (ga)
	* નીરવ, અંકિત, અંકુર, અતિત, ભાવિન, કાર્તિક, ખુશ્બુ, શ્વેતા (gu)
	* Dvornik László (hu)
	* helgi (is)
	* Žygimantas Beručka (lt)
	* Åsmund Skjæveland" (nn)
	* ਅਮਨਪ੍ੀਤ ਸਿੰਘ ਅਾਲਮ (pa)
	* Duarte Loreto (pt)
	* Дмитрий Мастрюков (ru)
	* Marcel Telka (sk)
	* Laurent Dhima (sq)
	* Ma SivaKumar (ta)
	* อิสริยะ ไพรีพ่ายฤทธิ์ (th)
	* Pablo Saratxaga (wa)
	* Liu Songhe (zh_CN)


===============
Epiphany 1.2.10
===============

Changes

	* Fix proxy PAC loading (Christian) 
	* When showing a modal alert put up by a web page, switch the window
	  to that tab (Christian)
	* Check favicon urls with script sec manager and content policy


==============
Epiphany 1.2.9
==============

Code changes

	* Drop support for Mozilla 1.8a2
	* Support for Mozilla 1.8a3 and 1.8a4

Bug fixes

	* Fix default horizontal scroll wheel action (Christian) [#148557]
	* Fix glade symbol lookup with newer libtools (Christian) [#150673]
	* Pop up context menu with menu keys too (Christian) [#150830]
	* Fix printing to file with a non-absolute path (Christian) [#148849]
	* Fix session file remove command (Christian)

Translations

	* Iñaki Larrañaga Murgoitio (eu)
	* Nirav, Ankit, Ankur, Atit, Bhavin, Kartik, Khushbu, Sweta (gu)
	* Isriya Paireepairit (th)


==============
Epiphany 1.2.8
==============

Code changes

	* Adapt to Mozilla API changes (Christian)
	* Confirm before overwriting a file (Christian) [#143501]

Bug fixes

	* Fix compilation of nautilus view (Christian) [#148995]
	* Fix some memory leaks (Jean-François Rameau)
	* Really translate the program name (Christian) [#148948]
	* Fix restoring the history window on resume (Christian)
	* Fix new tab position (Christian)
	* Fix a crash in content handler (Christian) [#149550]
	* Fix context menu on links with namespaced tag (Mikael Brockman) [#150208]


==============
Epiphany 1.2.7
==============

Code changes

	* Adapt to mozilla API changes (Christian)
	* Use nsIDOMWindow2 to get the root event target on 
	  mozilla >= 1.7rc3 (Christian)

Bug fixes

	* Work around mozilla bug #246392 which causes reloads of framed pages to
	  go back to original URI (backported from HEAD) (Christian) [#115800]
	* Escape markup in string in the duplicate bookmarks dialogue
	  and topics menu (Christian)
	* Escape markup in strings in the NSS dialogues (Crispin Flowerday)
	* Work aroung mozilla bug #246392 which causes reload of framed pages to go
	  back to initial frameset (Christian, Crispin Flowerday) [#115800]
	* Don't show redirected and non-toplevel pages in history (Christian) [#142143]
	* Allow importing of Epiphany bookmarks format too (Christian) [#144699]
	* Fix crash with corrupted toolbars file (Christian) [#144698]
	* Fix prefs persistence with non-existent or bogus initial values (Christian)
	* Unescape mailto: addresses (Christian) [#144462]
	* Fix filename encoding for print-to-file (Christian)
	* Depend on libgnomeui >= 2.6.0 (Christian) [#145776]
	* Make print and print setup go trough nsIPrintingPromptService (Christian,
	  backported from HEAD)
	* Fix print-to-file filechooser modality (Christian) [#147628]
	* Fix mem leaks in gtk NSS dialogues (Christian, ported from galeon)
	* Gracefully handle failure to create downloads directory (Marco) [#146902]
	* Fix single observer ownership and reference counting (Christian) [#146873, #146461]
	* Fix downloader crash on shutdown (Marco) [#141928]
	* Fix build with old mozilla versions (1.4.x, 1.5) (Christian)
	* Use nsACString instead of nsCString in a few places in EphyWrapper (Christian)
	* Fix crash on screen size change after using fullscreen (Christian)

New translations

	* רועי קרשטיין, גיל אשר (he)

Updated translations

	* Владимир Петков (bg)
	* Xavier Conde Rueda (ca)
	* Trịnh Minh Thanh (vi)


==============
Epiphany 1.2.6
==============

Code changes

	* Support for mozilla 1.7rc1, 1.7rc2, 17rc3, 1.7 branch and trunk
	  (Christian, Marco, Carlos Romero)
	* Eliminate external protocol handlers and use prefs instead (Christian Biesinger)
	* Various solaris portability fixes (Brian Cameron, Christian)
	* Filter unwanted urls from history (Christian) [#142143]
	* Disable xpinstall by default (Christian) [144035]

Bugfixes

	* Fix some compile warnings (Christian)
	* Use single sign-on prompt for downloads too (Christian)
	* Fix crash with popup window and when opening windows from command line
	  (Christian) (backported from HEAD) [#142184]
	* Fix compilation with gcc 2.95 (Christian)
	* Fix LD_LIBRARY_PATH setting in startup script (Christian) [#141576]
	* Fix a mem leak in the toolbar editor (Christian)
	* Fix cookies-cleared notification (Christian)
	* Fix toolbar editor dragging theme bug (Crispin Flowerday)
	* Fix reload not to use forced reload by default (C. J. N. Breame) [#143365]
	* Fix filechooser default filename shown from web form file inputs (Christian)
	* Fix opening of webcal: urls (Marco) [#139040]
	* Fix check for firefox bookmarks file import (Christian)
	* Fix contextmenu on unfocused text fields (Marco) [#139040]

Documentation translations

	* Translated to spanish (es) by Francisco F. Serrador

Translations

	* Владимир Петков (bg)
	* Νίκος Χαρωνιτάκης  (el)
	* อิสริยะ ไพรีพ่ายฤทธิ์ (th)
	* Gurban Mühemmet Tewekgeli (tk)
	* Дмитрий Мастрюков (ru)


==============
Epiphany 1.2.5
==============

Bugfixes
	* Make saving a web page not re-fetch the page (Christian) [#141652]
	* Fix crash on startup (Marco) [#141262]

Translations
	* Duarte Loreto (pt)

Documentation
	* New translation of help into Basque (eu) by
	  Hizkuntza Politikarako Sailburuordetza
	* Updated screenshots in help (Piers)
	* Updated help on smart bookmarks (Matthew Gatto) [#139616]


==============
Epiphany 1.2.4
==============

Bugfixes
	* Fix problem with font selection in prefs dialogue (Christian)
	* Fix encoding of downloaded and saved content (Marco) [#126571, #141050]
	* Fix crash when closing a window while in print preview
	  mode (Christian) [#121298]

Translations
	* John C Barstow (mi)


==============
Epiphany 1.2.3
==============

Code changes
	* Cleanup chrome handling (Marco)

Bugfixes
	* Fix bookmarks import from XBEL (Marco)
	* Set window icon on "About" dialogue (Christian)
	* Fix "Add" button appearance for some themes (Christian)
	* Fix "Go" button (Christian)
	* Fix "Open In New Tabs" from bookmarks editor (Christian) [#138343]
	* Fix context menu for anchors without href (Christian) [#138200]
	* Fix context menu for linked images (Christian) [#138200]
	* Fix startup script on solaris (Marco) [#138088]
	* Fix filechooser handling (Federico Mena Quintero) [#138263]
	* Fix compilation with -fdata-sections (Christian) [#136878]
	* Check for invalid font size pref (Piers)
	* Fix clear-history dialogue button size with themes (Piers)
	* Fix bookmarks toolbar visibility in fullscreen and ppview
	  mode (Christian) [#138520]
	* Fix link dragging to new notebook tabs (Christian) [#138902]
	* Sync toolbar code with galeon gtk 2.4 port; fixes crash when
	  dragging items from other applications (Crispin Flowerday)
	* Fix homepage setting to current page (Christian) [#139124]
	* Make pdm, prefs and print setup dialogue transient (Christian)
	* Sort the actions in location entry drop-down (Christian) [#139575]
	* Don't quit filechooser when choosing not to overwrite an
	  existing file (Christian) [#139400]
	* Fix filename encoding in confirm-overwrite dialogue (Christian)
	* Fix accel setting for dynamic menus (Christian) [#139641]
	* Don't gunzip downloaded files (Marco) [#131778]
	* Fix content policy contract ID (Christian)
	* Fix chrome handling for new windows from _blank target links
	  (Marco) [#139512]
	* Make message selectable in content handler dialogue (Piers)

Translations
	* Vladimir Petkov (bg)
	* Iñaki Larrañaga, Hizkuntza Politikarako Sailburuordetza (eu)
	* helgi (is)
	* Dvornik László (hu)
	* Kjartan Maraas (no)
	* Amanpreet Singh Alam (pa)
	* Дмитрий Мастрюков (ru)


==============
Epiphany 1.2.2
==============

Translations:
	* Amanpreet Singh Alam (pa)
	* Duarte Loreto (pt)
	* Åsmund Skjævelan (nn)
	* Gujarati team at Magnet-i (gu)
	* Trinh Minh Thanh (vi)


===============
Epiphany 1.2.1
===============

Bug fixes:
	* Fix a crash when opening bookmarks properties (Christian)

Translations:
	* Arafat Medini (ar)
	* Dmitry G. Mastrukov (ru)
	* Gabor Kelemen (hu)
	* Åsmund Skjæveland (nn)
	* Liu Songhe (zh_CN)
	* Marcel Telka (sk)
	* Ma SivaKumar (ta)
	* Rhys Jones (cy)
	* Sanlig Badral (mn)
	* Vladimir Petkov (bg)
	* Xavier Conde Rueda (ca)


==============
Epiphany 1.2.0
==============

Bug fixes:
	* Fix a crash when dragging an url from an external application to
	  epiphany (Marco)
	* Fix crash when downloading a link on Freebsd (Joe Marcus Clarke)

Translations:

	* Åsmund Skjæveland (nn)
	* Gustavo Maciel Dias Vieira (pt_BR)
	* John C Barstow (mi)
	* Ma SivaKumar (ta)
	* Miloslav Trmac (cs)
	* Priit Laes (et)
	* Progga (bn)
	* Roozbeh Pournader (fa)
	* Takeshi AIHANA (ja)
	* tunggul arif siswoyo (id)
	* Vladimir Petkov (bg)

===============
Epiphany 1.1.12
===============

Bug fixes:
	* Fix toolbar remove (Christian)
	* Fix crash when dragging a separator from toolbar back to tbe (Christian)
	* Fix crash when trying to activate the location entry's proxy menu item (Christian)

Translations:

	* Алесь Няхайчык (be)
	* Rhys Jones (cy)
	* Adam Weinberger (en_CA)
	* GNOME PL Team (pl)
	* Mugurel Tudor (ro)


===============
Epiphany 1.1.11
===============

Code changes
	* Change EphyTab to a GtkBin containing the MozillaEmbed widget
	  (Christian)
	* Backup bookmarks files before overwriting them when loading failed (Christian)
	* Adapt to changed Mozilla API (1.7b) (Christian)

Bugfixes
	* Fix check if link can be opened in new tab (Marco)
	* Unescape the suggested filename in the filechooser (Xan)
	* Respect max-size property of EphyEmbedPersist (Marco)
	* Don't show "about:blank" to the user (Marco)
	* Replace entities in imported folder names from mozilla (Christian)
	* Fix for gtk+ filechooser API change (Christian)
	* Don't make windows larger than the screen (Marco)
	* Fix check for firebird bookmarks directory (André Dahlqvist)
	* Fix toolbar dnd to the location entry (Marco)
	* XBEL bookmarks importer fixes (Christian)
	* Fix uncategorising a bookmark (Marco)
	* Don't restore windows in reverse order (Marco)
	* Fix filename decoding in Content-Disposition headers (Christian)
	* Fix double-unref of failed/cancelled favicon downloads (Christian)
	* Fix "Open" button label in content handler (Marco)
	* Fix MozDownload lifecycle bug, was crashing on aborting downloads (Marco)
	* Fix EphyDownload lifecycle interaction with MozDownload bug (Christian)
	* Check for NULL subtree before trying to parse it on node db load (Christian)
	* Activate the downloader tray icon with double-click not single-click (Marco)
	* Ensure we always have a BookmarksBar in the toolbars model (Christian)
	* Fix smart bookmark property update on bmk location change (Christian)
	* Fix smart bookmark property sync on toolbar item (Christian)
	* Don't show two resume dialogues, just raise the existing one (Marco)
	* Don't remember filechooser size, fixes dialogue sizing in Save mode (Christian)
	* Don't ask about unsubmitted changes when the embed is closed from js (Marco)
	* Fix favicon updating in bookmarks menu and toolbar (Christian)
	* Fix bookmarks re-categorising by dnd (Christian)
	* Fix high CPU usage on download by lowering update interval (Christian)
	* Fix "About" dialogue icon (Christian)
	* Fix crash when closing a still-loading popup (Christian)
	* Fix filename validation not to produce invalid unicode string (Christian)
	* Don't assume Desktop location, check with gconf pref (Christian)
	* Fix unsubmitted change check code not to return error for XUL documents (Christian)
	* Fix user-changed accelerator persistence (Christian)
	* Also pop up context menu from Menu key (Christian)

Translations
	* Mətin Əmirov (az)
	* Ole Laursen (da)
	* Κώστας Παπαδήμας (el)
	* Priit Laes (et)
	* Pauli Virtanen (fi)
	* Christophe Merlet (fr)
	* रविशंकर श्रीवास्तव (hi)
	* Laszlo Dvornik (hu)
	* Francesco Marletta (it)
	* Changwoo Ryu (ko)
	* Žygimantas Beručka (lt)
	* Hasbullah Bin Pit (ms)
	* Reinout van Schouwen (nl)
	* Kjartan Maraas (no)
	* Duarte Loreto (pt)
	* Laurent Dhima (sq)
	* Christian Rose (sv)


===============
Epiphany 1.1.10
===============

Bugfixes
	* Adapt to mozilla API changes (Christian)
	* Fix predictable temp file name (Marco)
	* Fix an error in the schema file (Julio M. Merino Vidal)
	* Fix --with-html-dir configure arg (Julio M. Merino Vidal)
	* Fix toolbar editor table layout off-by-one error (Christian)
	* When removing a toolbar make its items available again in the
	  toolbars editor (Christian)
	* Typo fixes in help file (Alexander Winston)
	* Fix toolbar height when adding the first item (Christian)

Translations

	* Adam Weinberger (en_CA)
	* Алесь Няхайчык (be)
	* Changwoo Ryu (ko)
	* Christian Neumair (de)
	* Christian Rose (sv)
	* Данило Шеган (sr, sr@Latn)
	* Duarte Loreto (pt)
	* Francisco Javier F. Serrador (es)
	* GNOME PL Team (pl)
	* Laurent Dhima (sq)
	* Miloslav Trmač (cs)
	* Ole Laursen (da)
	* Reinout van Schouwen (nl)
	* 相花 毅 (ja)


==============
Epiphany 1.1.9
==============

Bugfixes
	* Fix compilation with certain gcc version
	* Fix filechooser filters when shown from mozilla
	* Hide filechooser after response, since it won't be destroyed immediately
	  when shown from javascript

Translations:
	* Christophe Merlet (fr)
	* Kjartan Maraas (no)
	* Miloslav Trmac (cs)
	* Mətin Əmirov (az)

==============
Epiphany 1.1.8
==============

Code changes

	* Use gnome-common to generate help makefiles (Marco)

Interface improvements

	* Use title capitalisation in the clear history dialog (Piers Cornwell)
	* Use a default width/height for dialogs with treeviews
	  that don't have a fixed requisition (Biggest Flake Ever)
	* Set a default height/width for the encoding dialog (Dave)
	* Don't show Find, Add Language, and Encodings dialogue in
          window list.
	* Now that GtkComboBox supports mnemonic activation,
          set the focus target of the combos labels (Christian)
	* Make resume dialog warning message selectable
	  per HIG (Piers Cornwell)
	* Make columns resizable (Marco Pesenti Gritti)

Bugfixes

	* Fix a lot of memleaks (Christian)
	* Fix toolbar overflow menus creation (Christian)
	* Honour the --with-gconf-schema-file-dir and
	  --disable-schemas-install configure options
	  (Julio M. Merino Vidal)
	* Fixup completion matching and priority calculation (Marco)
	* Put the serial numbers in duplicated filenames just before
          the last dot so we won't confuse apps like file-roller. (Xan)
	* In downloader when open is explicitly requested from
	  the dialog use a temporary file (Marco)
	* Sync with mozilla 1.7a api (Christian)
	* Reenable indentation of node xml (Christian)
	* Fix numerous places where we weren't properly
	  converting between UTF-8 and filename encoding. (Christian)
	* Unify fallback downloads dir to get the
	  home directory (Christian)
	* Don't set entries insensitive, only set the non-editable when the
          gconf key isn't writable. (Christian)
	* Changed .pc file version to 1.2 (Christian)
	* Make statusbar api public for plugins (Christian)
	* Fix several problems in the safe/unsafe downloads logic (Marco)

Translations

	* Ales Nyakhaychyk (be)
	* Arafat Medini (ar)
	* Changwoo Ryu (ko)
	* Christian Neumair (de)
	* Christophe Merlet (RedFox) (fr)
	* Danilo Segan (sr)
	* Duarte Loreto (pt)
	* Francisco Javier F. Serrador (es)
	* Funda Wang (zh_CN)
	* GNOME PL Team (pl)
	* Hasbullah Bin Pit (ms)
	* John C Barstow (mi)
	* Kjartan Maraas (no)
	* Kostas Papadimas (el)
	* Laurent Dhima (sq)
	* Maxim Dziumanenko (uk)
	* Miloslav Trmac (cs)
	* Pauli Virtanen (fi)
	* Žygimantas Beručka (lt)

==============
Epiphany 1.1.6
==============

Code changes

	* Add default width/height to EphyDialogs (Marco)
	* Add a way to get the downloads dir (Marco, Christian, Adam Hooper)

Interface improvements

	* Use EPHY_STOCK_DOWNLOAD for download link icon (David Bordoley)
	* Add a hidden "Tools" menu that extensions can use (David Bordoley)

Bugfixes

	* ephy-tab LOAD_PROGRESS property typo fix (Adam Hooper)
	* Fix many, many memory leaks in 28 functions (Christian)
	* Fix property getter of favicon "icon" property (Christian)
	* Fix encoding converstion of "Untitled" filename suggestion (Christian)
	* Don't crash when reading RDF file fails on bookmark import (Christian)
	* Use rdf:resource instead of rdf:about on bookmark export (Christian)
	* Sync topic names in the bookmarks menu (Christian)
	* Fix bookmarks options parsing (Christian)
	* Fix linking with nautilus view enabled (Christian Persch)
	* Don't initialize EphyBrowser multiple times (Marco)
	* Fix download cancelling (Marco)
	* Fix compilation with Mozilla 1.4 (Christian)
	* Don't display accelerators in tab titles (Christian)
	* Remove misleading comment for ephy_string_blank_chr (Adam Hooper)
	* When checking forms for modifications, handle text
	  entries with default value longer than maxlength (Christian)

Documentation

	* Update documentation (Piers Cornwell)
	* Update screenshot (David Bordoley)
	* Update copyright date (Christian)

Translations

	* Changwoo Ryu (ko)
	* Kjartan Maraas (no)
	* Hasbullah Bin Pit (ms)
	* Francisco Javier F. Serrador (es)
	* Miloslav Trmac (cs)
	* Danilo Segan (sr)
	* Danilo Segan (sr@Latn)
	* Christophe Merlet (RedFox) (fr)
	* GNOME PL Team (pl)
	* Žygimantas Beručka (lt)
	* Sanlig Badral (mn)
	* Kostas Papadimas (el)
	* Christian Neumair (de)
	* Reinout van Schouwen (nl)
	* Laurent Dhima (sq)
	* Alastair McKinstry (ga)
	* Duarte Loreto (pt)
	* Christian Rose (sv)

==============
Epiphany 1.1.5
==============

Bugfixes

	* Fix dialogs size persistance

==============
Epiphany 1.1.4
==============

Code changes

	* Make EphyEmbedEvent abstract, implemented by MozillaEmbedEvent (Christian)
	* Api to get the page content into a string (Lee Willis)
	* Use ngettext for number of downloads and remaining minutes display in
	  the tooltip of the tray icon. (Piers Cornwell)
	* Allow to open glade files not inside epiphany dirs (Adam Hooper)
	* Make Cancel safe against non active downloads (Xan)
	* Allow passing the translation domain to ephy_dialog_construct,
          to make extension's dialogues translatable. (Christian)

Interface improvements

	* Allow to  show/hide downloader clicking on tray icon (Xan)
	* Show help for menu items in the statusbar (Christian)
	* Use a Downloads folder on the desktop by default (Marco)
	* Allow to disable automatic downloads (Marco)
	* Re-enable fonts language font filtering (Christian)
	* Better string for history disabling lockdown pref (Marco)
	* Delete UTF-7 from our list of known encodings (Christian)
	* Persist downloader position (Marco)

Bugfixes

	* Fix crash closing windows/tabs (Christian)
	* Actually save the file in downloads dir and then
          open it (Marco)
	* Create an epiphany temp dir in /tmp so that we can have
	  the right permissions on it (Christopher James Lahey)
	* Work around a bug in mozilla where  0xa0 (NBSP) are
	  converted to spaces (Christian)
	* Fix force reload (Christian)
	* Do not use the same pref of 1.0 for the download dir,
	  they are different things (Marco)
	* Do not use the downloader folder key to persist
	  Save As actions (Marco)

Translations

	* Miloslav Trmac (cs)
	* Christian Neumair (de)
	* Nikos Charonitakis (el)
	* Francisco Javier F. Serrador (es)
	* Alastair McKinstry (ga)
	* Changwoo Ryu (ko)
	* Hasbullah Bin Pit (ms)
	* Reinout van Schouwen (nl)
	* Kjartan Maraas (no)
	* Artur Flinta (pl)
	* Danilo Šegan  (sr, sr@Latn)
	* Laurent Dhima (sq)

==============
Epiphany 1.1.3
==============

Code changes

	* Add API to clear http auth cache (Christian)
	* Fix compilation with mozilla 1.4 (Christian)
	* Some API naming unification (Christian)
	* Add API to get the EphyTab from its EphyEmbed (Christian)
	* Better error checking in mozilla glue code (Christian)
	* Track mozilla trunk API changes (Christian)

New features

	* Set SOCKS host from GNOME global preferences (Christian)
	* Check if there was input in forms before closing the tab/window,
	  and warn user if there are unsubmitted changes (Christian)
	* More lockdown features (Christopher J. Lahey, Christian)
	* Caret browsing (enabled/disabled with F7) (Christian)
	* Add back "Download Link As..." to the context menu (Xan)	

Interface improvements

	* Always show "Copy" in the context menu when there is a selection
	  (Michael Terry)
	* Add "Help" buttons to all dialogues (Piers Cornwell)

Bugfixes

	* Fix some mem leaks (Christian)
	* Fix the encoding menu in the case that the encoding is unknown to us
	  (Christian)
	* Fix logic error in window position restoring (Dave Jones)
	* Fix startup crash when lockdown enabled (Christopher J. Lahey)
	* Fix gobject implementation error in notebook finalize (Christian)

Documentation

	* Updated OMF file (Piers Cornwell)

Translations

	* Arafat Medini (ar)
	* Changwoo Ryu (ko)
	* Christian Neumair (de)
	* Christian Rose (sv)
	* Danilo Segan (sr, sr@Latn)
	* Duarte Loreto (pt)
	* Francesco Marletta (it)
	* Francisco Javier F. Serrador (es)
	* GNOME PL Team (pl)
	* Joao Emanuel (pt_BR)
	* Michael Everson (ga)
 	* Miloslav Trmač (cs)
	* Progga (bn)
	* Robert Sedak (hr)
	* Roozbeh Pournader (fa)
	* Sanlig Badral (mn)
	* Sebastien Bacher (fr)
	* tunggul arif siswoyo (id)


==============
Epiphany 1.1.2
==============

Code changes

	* Reformat spinner code to conform to epiphany coding style. (Christian)
	* Allow plugins to access the statusbar (Adam Hooper)
	* Use statusbar api directly instead of wrapping it around, so that
	  we can have different groups of messages (Marco)
	* No need to have EphyNode thread safe since we never use
	  it in threads anyway (Marco)
	* Brought toolbar editor code type macros in line with the
	  rest of libegg; use gobject instance private data (Christian)

New features

	* Lockdown: set buttons insensitive when their
          pref key is not writable. (Christian)
	* Allow to move languages up and down in language editor (Christian)

Interface improvements

	* Make ctrl-click equivalent of middle click on links. Make shift-click
          save the link. (Christian)
	* Sort the list of fonts alphabetically (Christian)
	* Make toolbar editing drag icons use the same icon size as the
          actual toolbar icons (Jorn Baayen)
	* In history show only site title by default (Marco)
	* Make print dialogue spacing HIG-compliant (Christian)
	* Use stock icon for print setup (Christian)
	* Better way of mapping hierarchy to topics when importing
          bookmarks from mozilla (Christian)
	* In-line the language editor in the prefs dialog (Christian)
	* Use favicons in the back/forward menus (Christian)
	* Set the download folder selection label to "Home" if download folder
          is home folder (Christian Neumair)

Bugfixes

	* Fix several mem leaks (Christian)
	* Depend on automake 1.7, fix compilation from
	  cvs on systems with 1.6 installed (Marco)
	* Restore tabs menu shortcut keys ALT-1 .. ALT-0 (Christian)
	* Don't try to save the submit button image instead of submitting
          the form
	* Destroy file chooser with its parent window; fixes crashes (Christian)
	* Fix coordinates of under widgets popup in RTL mode (Christian)
	* Do not try to pickup already set MOZILLA_FIVE_HOME,
          hopefully fix crashes oepning links from thunderbird (Marco)
	* Re-implement Pause/Resume in downloader (Xan)
	* Correctly cancel the download instead of just
          cancelling the request. (Marco)

Documentation

	* Updated printing docs (Piers Cornwell)
	* GDK_Meta_L is a keycode, not a modifier code.
          Map meta to GDK_MOD2_MASK. (Christian)

Translations

	* ar (Arafat Medini)
	* be (Ales Nyakhaychyk)
	* cs (Miloslav Trmac)
	* de (Christian Neumair)
	* el (Kostas Papadimas)
	* en_GB (Christian Persch)
	* es (Francisco F. Serrador)
	* nl (Vincent van Adrighem)
	* no (Kjartan Maraas)
	* pt_BR (Gustavo Noronha Silva)
	* sr (Danilo Šegan)
	* sr@Latn (Danilo Šegan)
	* sq (Laurent Dhima)

==============
Epiphany 1.1.1
==============

Code changes

	* Adapt to mozilla API changes (Marco, Xan, Christian)
	* Sync gtk+ NSS dialogues from galeon (Marco)
	* Embed commands interface for clipboard commands (Marco)
	* Re-sync egg-editable-toolbar with gtk+ toolbar api changes (Marco)
	* New file chooser wrapper class (Christian)
	* Re-sync nautilus view with nautilus api changes (Marco)
	* Cleanup of EphyWrapper to use higher-level mozilla api (Marco)
	* Initialize EphyWrapper on realize (Marco)
	* Instantiate an about:blank automatically (Marco)
	* Show filechooser from header sniffer (Marco, Christian)
	* Use content document dom to determine is_framed (Marco)
	* Sync egg-editable-toolbar api with gtk+ toolbar api (Soren Sandmann)
	* Use gnome-vfs helpers to launch apps, drop our own helpers (Marco)
	* Only save history db if it's changed (Christian)
	* Implement new downloading from ContentHandler (Xan)
	* Use stock gcclosure-marshals where they exist (Christian)
	* Implement commands state api (Marco)
	* Rework ContentHandler to use auto_open of downloads (Xan)
	* Resync eel-gconf-extensions from eel (Marco)
	* Migrate old font settings (Marco)
	* Get rid of gresult type (Christian)
	* Remove unused function from ephy-gui (Marco)
	* Use glib gi18n header instead of bonobo/libgnome one (Marc, Christian)
	* Don't cache the dom document since it changes for every load (Marco)
	* List of safe mime types, and script to update it (Marco)
	* Use list of safe mime types to determine if we auto-open (Marco)
	* Use gtk icon theme instead of gnome icon theme (Marco)
	* Better ephy completion model (Marco)
	* Port ephy node db saving and bookmarks RDF export to new libxml
	  xmlWriter api (Christian)
	* Remove some unneeded prototypes (Marco)
	* Cleanup session, also persist bme and history window (Marco)
	* Re-use gtkmozembed signals (Marco)
	* Hack to make tooltips on toolbar items work (Marco)
	* New extensions API (Christian)
	* Port session to new extensions api (Christian)
	* Reworked automation/activation (Marco)
	* Enable deprecations and -Werror only in maintainer mode (Marco)
	* Move gnome session code in the shell (Marco)
	* Port to changed gtk+ combo box api (Marco)
	* gtk-doc support (Marco)
	* handle_content signal on EphyEmbedSingle for external downloader
	  support (Marco)
	* Refactor embed single apis into new EphyCookieManager,
	  EphyPasswordManager and EphyPermissionManager interfaces (Christian)
	* Implement arbitrary_url lockdown pref (Marco, Christopher Lahey)
	* Don't build external protocol handlers with mozilla 1.6, it has
	  its own (Marco)
	* Merge exthandler/content implementation (Marco)
	* Refactored PDM dialogue implementation (Christian)
	* Lockdown: disable loading from unsafe protocols (Christian)
	* Port zoom control to new GtkComboBox (Christian)
	* Show time remaining in download tray icon tooltip (Marco)
	* Lockdown: disable chrome changes from js (Marco, Christopher Lahey)
	* Port EphyDialog and all users to new GtkComboBox (Christian)
	* Remove GtkOptionMenu support from EphyDialog (Christian)
	* Re-enable deprecation when in maintainer mode (Marco)
	* Port GtkNSSClientAuthDialogs to new GtkComboBox (Christian)
	* Remove some unused includes (Marco, Christian)
	
New features

	* Persist zoom setting per host (Christian)
	* Undo/Redo in forms (Dave, Marco)
	* Gtk+ NSS Auth Dialogues (Crispin Flowerday, from galeon)
	* Tray icon support for downloader (Marco)
	* Beginnings of lockdown mode (Marco, Christian, Christopher Lahey)

Interface improvements

	* Improved downloader interface (Marco, Xan)
	* Move the spinner in its own mini-toolbar (Marco)
	* New hand cursor adapted from eog (Dave)
	* Use hand cursor in toolbar editor (Marco)
	* Made encodings dialogue auto-apply (Christian)
	* Don't pollute statusbar with the "done" mesage (Dave)
	* Auto-close downloader when no more items
	  left (Xan)
	* Use new gtk+ file chooser (Christian)
	* Better sorting of encoding autodetectors (Christian)
	* Implement smart selection in downloader view (Xan)
	* Smoother toolbar drag highlighting (Soren Sandmann)
	* Update commands sensitivity in menus (Marco)
	* Implement UI for download folder (Xan)
	* Make prefs and PDM dialogues global (Christian)
	* Improved cookie properties dialogue (Piers Cornwell)
	* Split print into print setup and print (Christian)

Bugfixes

	* Remove invalid items from toolbars on load (Marco)
	* Don't hide a separator item while dragging it (Marco)
	* Fix delete event handling for downloader (Xan)
	* Add missing default prefs for some language groups (Christian)
	* Fix default prefs file for new mozilla parser changes (Christian)
	* Remember upload path (Christian)
	* Fix bookmarks import dialogue button duplication (Christian)
	* Convert filenames to/from utf-8 before using them (Christian)
	* Fix spinner refcounting (Christian)
	* Fix fullscreen toolbar visibility (Marco)
	* Force encoding on changes, so we can go back to automatic (Christian)
	* Build nautilus server only when view is enabled (Marco)
	* Fix leak of liststores from combo boxes (Marco)
	* Fix dnd data provided by drag handle (Marco)
	* Fix toolbar drag type creation (Marco)
	* Don't require parent window for filechooser (Marco)
	* Fix toolbar highlighting (Marco)
	* Set sensible cursor hotspot in toolbar editor (Marco)
	* Fix filechooser directory persistence (Christian)
	* Unset silent mode after printing (Christian)
	* Don't unref print dialogue twice when shown from mozila (Christian)
	* Fix return value from print dialogue so mozilla won't show erroneous
	  error dialogue (Christian)
	* EphyDialog needs to be initialised when run, too (Christian)
	* Use signal accumulators for boolean-return signals (Christian)
	* Do not try to set sensitivity "Paste" menu items, the wait api
	  cause bad crashes (Marco)
	* Only allow printing the selection if there really is one (Christian)
	* Use show() when run()ning an EphyDialog (Christian)
	* Fix completion model crash on deleting a bookmark (Marco)
	* Fix ephy location entry finalisation (Christian)
	* Fix bookmarks editor crash from gtk clipboard wait api (Marco)
	* Fix history db saving not to save "All" node (Marco)
	* Don't unref the icon theme, we don't own it (Christian)
	* Unlink session file when all windows are closed (Marco)
	* Fix conversion on saving, fixes view-source (Marco)
	* Fix recovery from corrupt toolbar layout file (Christian)
	* Fix completion model column use (Marco)
	* Import gtk NSS dialogues glade file from galeon, too (Christian)
	* Build XUL dialogues with a gtkmozembed in a gtkwindow (Marco)
	* Fix warning when showing the encodings dialogue (Christian)
	* Link up toolbar editor help (Christian)
	* Fix some typos (Marco)
	* Unref on timeout when in server mode (Marco)
	* Expand cmd line args (Marco)
	* Nautilus view refcounting bug fix (Marco)
	* Fix crash when starting with --bookmarks-editor, correctly instantiate
	  a session (Marco)
	* Don't re-fetch POST pages for show-source (Marco)
	* Make encodings dialogue transient (Christian)
	* Remove unused enum values (Christian)
	* Mark EphyFooPriv structs as private for gtk-doc (Christian)
	* Don't assert, return instead in impl_go_up (Marco)
	* Fix context menu leak (Marco)
	* Make session saving low disk safe (Marco)
	* Fix "Download Link" context menu item text (Marco)
	* Use stock icons where provided (Marco)
	* Only set autoproxy url if non-empty (Christian)
	* User ephy filechooser in download folder picker (Xan)
	* Fix RDF export to export 100% instead of only 50% of bookmarks
	  (Christian)
	* Fix cookie manager signal marshaller type (Christian)
	* Restore copy and paste menu items on form fields (Marco)
	* Live updates of cookies list in PDM dialogue (Christian)
	* Don't blindly overwrite files when downloading (Xan)
	* Fix some mem leaks (Christian)
	* Fix ephy_embed_get_location() on an unrealized widget (Marco)
	* Monitor /system/http_proxy for proxy changes (Christian)
	* Set pref widget sensitivity from gconf key writeablility (Christian)
	* Fix strftime(3) usage (Christian)
	* Fix GtkExpander state persistence in NSS dialogue (Christian)
	* Remove duplicate signal from EphyEmbed (Christian)

Documentation

	* Documentation neatening, organisation (Piers Cornwell)
	* Some new sections documented (Piers Cornwell)
	* Some docs fixes (Dave)
	* Beginnings of API documentation (Marco, Christian)
	* Document preferences and downloader (Piers Cornwell)
	* Document security and certificates section (Piers Cornwell)	

Translations
	* Christian Neumair (de)
	* Christian Rose (sv)
	* Danilo Segan (sr)
	* Francisco Javier F. Serrador (es)
	* Gustavo Noronha Silva (pt_BR)
	* Hasbullah Bin Pit (ms)
	* KAMAGASAKO Masatoshi (ja)
	* Kostas Papadimas (el)
	* Marcel Telka (sk)
	* Mətin Əmirov(az)
	* Miloslav Trmac (cs)
	* Ole Laursen (da)
	* Paul Duffy (ga)
	* Vincent van Adrighem (nl)


==============
Epiphany 1.1.0
==============

Code changes

	* Remove most egg code and port to the gtk 2.3 api for toolbars and
	  menus (Marco, Christian)
	* Cleanup gobjects using the new add_private api (Christian)
	* Rewrote xbel bookmarks importer using xmlreader api (Christian)
	* Use new dynamic api to create dynamic menus (Marco, Christian)
	* Load default mozilla prefs from a javascript file,
          this is way is possible to override defaults in about:config (Marco)
	* Use gtk invisible event boxes (Christian)
	* Remove deprecated g_value_set_object_take_ownership() (Christian)
	* Use new gnome vfs show_url api (Christian)
	* Refactor node db loading functions into a common one in
          ephy-node-db. Switch to using xmlReader api. (Christian)
	* Use gconf_client_notify to initialize prefs (Christian)
	* Refactor initialization/automation code to ensure we dont
	  use dying shell (Marco)
	* Use GtkIconTheme (Marco)
	* Use ngettext where useful (Christian)
	* New implementation of location entry using GtkComboBox (Marco)
	* New downloads implementation (user interface being worked on) (Xan, Marco)
	* Remove our custom implementation and use gtk api for
	  empty bookmarks menu (Marco, credits to Matthias Clasen for gtk implementation)
	* Make the favourites menu self-updating (Christian)
	* Port history and bookmarks combos to new api (Marco)

New features
	
	* Added migration from galeon settings (Christopher James Lahey)
	* Add an --import-bookmarks command line option, and really implement
          the --add-bookmark one. (Christian)
	* Ability to choose visible columns in bookmarks and history (Marco)
	* History time filter (Marco)
	* Import bookmarks from Firebird (Christian)
	* Ability to import bookmarks from a custom file (Marco)
	* Allow dragging of tabs to a window even when the tabs bar is not
          shown. (Christian)

Interface improvements

	* Simplify font selection and make it use points instead
	  of pixels like everything in Gnome (Marco)
	* Use a line to make more clear Language/Fonts relation (Marco)
	* Sync spinner with the current active tab (Marco)
	* HIGgify new bookmark dialogue title (Christian)
	* Special, more compact, toolbar layout for fullscreen (Marco)
	* Gtk versions of the mozilla certificate prompts (from galeon)
	* Use Bookmarks instead of All as label in toolbars (Marco)
	* Use radio buttons for tabs menu (Marco)
	* Fix spacing in a few dialogs (Marco)
	* Better icons on mime dialog (Marco)
	* Case insensitive bookmarks matching in autocompletion
	  (Marco, credits to Kristian Rietveld for rocking new widget)
	* Show bookmarks at the top of autocompletion list (Marco)
	* Speedup history dialog (Marco)
	* Visual progress bar in downloader (Marco)
	* Better encoding menu interface. Show most common/most used
	  entry in the menu, split the others out to a dialog. Allow
	  to revert to Automatic. Show current selected encoding with
	  radio buttons (Christian, credits to Matthew Thomas for user
	  interface ideas)
	* Toolbar editor improvements. Show a different cursor when
	  hovering the items. Pickup and drop behavior. Make space
	  for the item instead of showing a line (Marco, credits to
	  Soeren Sandmann for gtk changes)
	* Make location a normal entry, removing the hard to click,
	  vastly unused arrow for typed urls. (Marco)
	* Focus bookmarks search entry by default (Ettore Perazzoli)

Bugfixes

	* Enable dragging the tab from a single-tab window too (Christian)
	* Do not fail if prefs.js is corrupted (Marco)
	* Fix location entry losing content when editing toolbar (Christian)
	* Fix directory selection persistence (Christian)
	* Fix a bug that could have caused bookmarks loss with low disk (Christian)
	* Save session also when closing windows (Marco)
	* Make mime dialogs interrupt download on Esc, simplify the code
	  using response signal (Marco)
	* Fix compilation on Solaris (Marco)
	* Set a MOZ_PLUGIN_PATH default. (Christopher James Lahey)
	* Fix a warning when printing to a file (Christian)
	* Fix intermittent nautilus view activation failure (Mark McLoughlin)
	* Fix downloads with authentication (Marco)
	* Fix history clear, sometimes sites was not removed
	  completely (Marco)
	* Fix some treeview model leaks (Christian, Marco)

Translations

	* cs (Miloslav Trmac)
	* en_GB (Christian Persch)
	* fr (Eric Seigne)
	* ga (Paul Duffy)
	* hi (Guntupalli Karunakar)
	* hu (Andras Timar)
	* lt (Zygimantas Berucka)
	* ml (Abel Cheung)
	* mn (Sanlig Badral)
	* nl (Vincent van Adrighem)
	* pt_BR (Evandro Fernandes Giovanini)
	* ro (Misu Moldovan)
	* sk (Marcel Telka)
	* sq (Laurent Dhima)
	* sr.po (Danilo Segan)
	* sr@Latn.po (Danilo Segan)
	* sv (Christian Rose)
	* ta (Dinesh Nadarajah)
	* vi (Pablo Saratxaga)


==============
Epiphany 1.0.8
==============

Bugfixes:
	* Fix a crash when the icon theme doesn't have our "about" icon
	  (Christian)
	* Fix a crash when pressing delete after deleting the last cookie
	  in the pdm dialogue (backported from HEAD) (Christian)
	* Fix session saving for urls with "&" (Christian)


==============
Epiphany 1.0.7
==============

Code changes:

	* Support for mozilla 1.6 (ported from HEAD) (Christian)

Bugfixes:

	* Fix a compiler warning introduced in 1.0.6 (Christian)
	* Monitor /system/http_proxy too (Christian)
	* Fix recovery from corrupted session, bookmarks and 
	  history files (Christian)
	* Fix some mem leaks (JF Rameau)
	* Don't remember last action from location entry,
	  fixes short hostname urls (Marco, Christian)
	* Fix crash when printing from js (Christian)
	* Delete host entries from history db when there are no more
	  pages from that host in the history (Marco, Christian)
	* Fix crash of nautilus view after using the find dialogue (Christian)
	* Fix toolbar drag handle drag data (Christian)
	* Fix a crasher when deleting a bookmark (Marco, Christian)
	* Fix epiphany freezing when editing a bookmark while loading the page
	  it points to (Marco, Christian)
	* Fix crash when calling epiphany from thunderbird (Marco, Christian)
	* Don't close all epiphany window when exiting the last nautilus view
	  (Christian)
	* Fix crash when printing a frame from javascript (Christian)
	* Fix window position restoring (Dave Jones)
	* Fix documentation OMF file (ported from HEAD) (Christian, Piers Cornwell)
	* Fix a mem leak (Christian)

Translations:

	* Danilo Segan (sr)
	* Priit Laes (et)
	* Alessio Frusciante (it)
	* Орчуулагчдын тухай (mn)


==============
Epiphany 1.0.6
==============

Bugfixes:

	* Fix a crash in the bookmarks editor (Marco)
	* Fix session resume (Marco)
	* Fix RDF export to encode entities (Christian)
	* Fix session saving to encode entities (Christian)
	* Fix recovery from corrupted toolbar layout file (Christian)

Translations:

	* ko (Changwoo Ryu)


==============
Epiphany 1.0.5
==============

Bugfixes

	* Fixes for printing dialogue when shown from mozilla (Christian)
	* Don't show a failure dialogue when cancelling the print dialogue
	  shown from mozilla (Christian)
	* Initialise the print dialogue also when shown from mozilla
	  (Christian)
	* Always show the print dialogue when printing from mozilla
	  (Christian)
	* Only allow printing the selection when there really is one
	  (Christian)

Translations

	* ca (Jordi Mas)
	* ga (David O'Callaghan)
	* hi (रविशंकर श्रीवास्तव)
	* sk (Marcel Telka)
	* sv (Christian Rose)


==============
Epiphany 1.0.4
==============

Code

	* Grab focus to the search entry when showing bookmarks editor
	  (Ettore Perazzoli, Marco)

Bugfixes

	* Fix intermittent nautilus view activation failure (Mark McLoughlin)
	* Fix autocompletion window popping up unexpectedly (Marco)

Translations

	* kn (ಪ್ರಮೋದ್.ಆರ್)
	* pt_BR (Gustavo Noronha Silva)


==============
Epiphany 1.0.3
==============

Code

	* Add support for mozilla 1.5 final (Kristian Rietveld)

Documentation

	* Translated to Ukrainian by Максим Дзюманенко

Translations

	* it (Francesco Marletta)
	* uk (Максим Дзюманенко)


==============
Epiphany 1.0.2
==============

Bugfixes
	* Don't show session resume dialogue in server mode (Christian)
	* Fix http accept language header when running in C locale (Christian)

Translations
	* hu (Tímár András)
	* sr, sr@Latn (Danilo Šegan)


==============
Epiphany 1.0.1
==============

Code

	* Add support for mozilla 1.4.1 (Marco)
	* Add support for mozilla 1.6a (Xan)

Bugfixes

	* Fix XBEL (Galeon/Konqueror) bookmarks importer (Christian)
	* Use the translated names for the default bookmarks and topics
	  when creating them (Christian)
	* Set MOZ_PLUGIN_PATH in the startup script (Christopher James Lahey)
	* Remove the autocompletion window timeout also when the window is
	  still not visible (Marco)
	* Add supported protocols to epiphany.application (Marco)
	* Fix peristence of directory selection (Christian)
	* Initialise completion visibility flag (Maroc)
	* Fix check for return value of xmlSaveFileFormat (Christian)
	* Specify UTF-8 encoding for the keyword: url (Christian)
	* Check for NULL return of gtk_get_current_event (Christian)
	* Fix session saving crash when run in --server mode (Christian)
	* Stop download when cancelling the unknown mime type dialogue 
	  (Christian)
	* Follow tabs pref on double click in the history window (Marco)
	* Fix compile warning on Solaris (Marco)
	* Fix loading of bookmarks and toolbar files when they are corrupted
	  (Christian)
	* Don't pass NULL to gnome_vfs_expand_initial_tilde (Marco, Christian)

Translations:

	* el (Νίκος Χαρωνιτάκης)
	* et (Priit Laes)
	* fr (Eric Seigne)
	* hu (Tímár András)
	* lt (Žygimantas Beručk)
	* pt_BR (Evandro Fernandes Giovanini, Augusta Marques da Silva)
	* sk (Marcel Telka)
	* sv (Christian Rose)

==============
Epiphany 1.0
==============

Bugfixes

	* fix crashes when dragging on bookmarks topics (Marco)
	* fix wrap around option in find dialog (Marco)

Translations

	* bn (Taneem Ahmed)
	* fi (Pauli Virtanen)
	* el (Nikos Charonitakis)
	* hi (Guntupalli Karunakar)
	* ja (Takayuki KUSANO)
	* ko (Young-Ho Cha)
	* mn (Sanlig Badral)
	* sk (Marcel Telka)

==============
Epiphany 0.9.3
==============

Translations

	* cy (Dafydd Harries)
	* es (Francisco Javier F. Serrador)
	* fr (Eric Seigne)
	* it (Alessio Frusciante)
	* ko (Changwoo Ryu)
	* nl (Vincent van Adrighem)
	* sq (Laurent Dhima)
	* ta (Dinesh Nadarajah)
	* zh_CN (Wang Jian)

==============
Epiphany 0.9.2
==============

Bugfixes
	* Use WARN_CXXFLAGS for mozilla code, fix warnings
	  on gcc 3.2 (Marco)
	* Fix a possible crash when setting zoom (Christian Persch)
	* Fix a warning when trying to remove items with CANC
	  from empty history (Christian Persch)
	* Use small spinner with text beside icon style (Anders Carlsson)
	* Fix reimporting logic when bookmarks file has
	  a wrong version (Christian Persch)

==============
Epiphany 0.9.1
==============

Bugfixes
	* Do not distribute corba generated files (Marco)

==============
Epiphany 0.9.0
==============

Code
	* Fix some warnings and missing includes (Christian Persch)

Bugfixes

	* Respect toolbar priority text preference (Marco)
	* Do not show context menus on print preview (Marco)
	* Fix print preview navigation (Marco)
	* Fix opening bookmarks in new window (Xan Lopez)
	* Expand initial ~ in file name to print to (Christian Persch)
	* Fix print preview options when saving on file is
	  selected (Christian Persch)
	* Fix a bug in navigation/html targets interaction (Marco)
	* Fix a crash when closing downloader with both completed
	  and in progress downloads (Marco)
	* Fix some bookmarks editor drag on topics problems (Marco)
	* Actually overwrite existing files when the user requested it (Marco)
	* Fix crash with bookmarks title == NULL (Marco)

Documentation

	* More sections written and add some screenshots (Patanjali Somayaji)

Translations

	* az (Metin Amiroff)
	* el (Nikos Charonitakis)
	* et (Priit Laes)
	* fi (Pauli Virtanen)
	* ga (Paul Duffy)
	* hi (Guntupalli Karunakar)
	* is (Samuel Jon Gunnarsson)
	* no (Kjartan Maraas)

==============
Epiphany 0.8.4
==============

New features

	* Respect the new system wide pref to not use
	  proxy for a list of urls (Malcolm Tredinnick, Marco)

Bugfixes

	* Fix multiple items drag and drop behavior and one
	  crash caused by the old code. (Marco)
	* Make it compile with mozilla head (Xan Lopez)

Documentation

	* Wrote section about bookmarks (Patanjali Somayaji)

Translations

	* ca (Jordi Mallach)
	* cy (Dafydd Harries)
	* da (Ole Laursen)
	* pt_BR (Evandro Fernandes Giovanini)

==============
Epiphany 0.8.3
==============

Interface improvements

	* use kB instead of KB consistently (Xan Lopez)

Bugfixes

	* Fix several memory leaks (Christian Persch)
	* Use link text as bookmark title when no title
          is specified (Marco)
	* Disable clipboard context menu. No way to make
          it work correctly for 1.0 (Marco)
	* Fix blank homepage loading (Christian Persch)
	* Fix tab positioning logic (Christian Persch)
	* Gconf notifiers from mozilla prefs now respect the schemas,
	  fix crashes on --unset (Marco)
	* Clamp progress values between 0 and 100 to fix warnings (Marco)
	* Fix crash when adding bookmark with no page loaded (Marco)
	* Do not allow duplicate bookmark items to respect the editor
	  checkbox (Marco)
	* Fix "host" categorization of local files in history
	  (Christian Persch)

Translations

	* az (Metin AMiroff)
	* be (Dmitry G. Mastrukov)
	* ca (Francesc Dorca)
	* cs (Miloslav Trmac)
	* da (Ole Laursen)
	* en_GB (Christian Persch)
	* es (Francisco Javier F. Serrador)
	* ko (Young-Ho Cha)
	* ms (Hasbullah Bin Pit)
	* nl (Vincent van Adrighem)
	* pl (Artur Flinta)
	* ru (Dmitry G. Mastrukov)
	* sr (Danilo Degan)
	* sr@Latn (Danilo Degan)
	* sv (Christian Rose)

==============
Epiphany 0.8.2
==============

Code changes

	* Improve toolbar editor api for costum items (Marco)
	* Rework find implementation to integrate better
          with type ahead and to simplify the code (Marco)
	* Usual memory leaks fixes (Christian Persch)
	* Add some comments for translators (Christian Persch, Marco)
	* Use string valid also externally for drag and drop
	  Url for bookmarks, a special uri for topics (Marco)
	* Cleanup toolbars model (Marco)
	* Set a version on the toolbar xml and make it low disk safe (Marco)

Interface improvements

	* Allow drag and drop of urls on the bookmarks toolbar (Xan Lopez)
	* Disable smooth scroll and image autoresize (Marco)
	* Remove useless icons from the print dialog (Marco)
	* Fix incosistency between all topic on the toolbar and bookmarks menu (Marco)
	* If the page is about:blank, set title to "Blank page" (Christian Persch)
	* More friendly description for cache preferences (Marco)
	* Add a show in bookmarks toolbar item on the bookmarks editor
	  context menu (Marco)
	* Always open bookmarks and history pages in new window/tab according
	  to pref on double click (Marco)

Bugfixes

	* Fix a crash when mozilla returns no system fonts on enumeration (Marco)
	* Remove bookmarks from the toolbar also when no windows are open (Marco)
	* If there are invalid bookmarks in the toolbar dont crash on startup
	  but remove them (Marco)
	* Support mozilla language packs (Christian Persch)
	* Fix type ahead/normal find interaction (Marco)
	* Fixes transparency issue on tab label and site icon (Christian Persch)
	* Do not try to open javascript links in new tab with
	  middle click (Marco)
	* Fix crash when deleting all bookmarks/cookies (Christian Persch)
	* Fix session management, typo in the executable name (Nikolai Weibull)
	* Fix dialogs properties persistance (Marco)
	* Fix a crash when clicking on bookmarks while exiting fullscreen (Marco)

Translations

	* Dutch manual (Reinout van Schouwen)

	* be (Dmitry G. Mastrukov)
	* cy (Keith Willoughby)
	* cs (Miloslav Trmac)
	* de (Christian Neumair)
	* el (Nikos Charonitakis)
	* en_GB (Christian Persch)
	* es (Francisco Javier Fernandez)
	* fi (Pauli Virtanen)
	* ms (Hasbullah Bin Pit)
	* nl (Vincent van Adrighem)
	* pl (Artur Flinta)
	* pt (Duarte Loreto)
	* pt_BR (Evandro Fernandes Giovanini)
	* sr (Danilo Segan)
	* sr@Latn (Danilo Segan)
	* sv (Christian Rose)
	* zh_CN (Wang Jian)

==============
Epiphany 0.8.0
==============

Code changes

	* Replace "0" with "false" in .desktop Terminal entries
	  (Jordi Mallach)
	* Fix node signal emission to work on Freebsd and alpha
	  (Christian Persch)
	* Sync content handler api with mozilla head (Xan Lopez)
	* Remove use of acconfig.h (Marco)
	* Gconf schema cleanups (Christian Persch)
	* Remove last bits of nautilus theme support from the
	  spinner code (Christian Persch)
	* Use url/name to store topics and bookmarks in the toolbar
	  configuration. This is more manteinable but toolbar
	  settings are lost (Marco)
	* Improve bookmarks rdf format (Marco, Edd Dumbill)
	* Freeze all xml formats and update version to 1.0.
	  Bookmarks are reimported from the rdf.
	* Fix saving of smart bookmarks on the rdf (Lee Willis)
	* Very simple plugin framework, unused for now (Marco)
	* Cleanup header dependencies. Now we have a basic set
	  of independent headers that will be useful for the
	  plugins. (Marco)

Interface improvements

	* Remove ellipses from find toolbar item (Dave Bordoley)
	* Tooltip for location entry, navigation buttons,
	  go button (Christian Persch)
	* Use normal google search for keywords instead of feel
	  lucky (Marco)
	* Implement toolbar overflow menu item for bookmark
	  topics (Christian Persch)
	* Use the browser icon from gnome icon theme (Marco)
	* Ellipsise the bookmarks titles in topics menus (Christian Persch)
	* Show an alert when mozilla cant start instead of crashing (Marco)
	* Ever save bookmarks when changed (Marco)
	* Implement toolbar overflow menu item for the
	  go button (Christian Persch)
	* Show the document context menu on ctrl+f10 (Marco)
	* Fast search for bookmarks and history.
	  Pressing a key will make ephy select the first entry begining with
          that character (Xan Lopez)
	* Shorten session history menu items (Christian Persch)
	* Delete key remove personal data manager entries (Xan Lopez)
	* Higgy titles for all file pickers (Marco)

Bugfixes

	* Fix bug with location entry no more sensible on clicks (Marco)
	* Fix utf8 handling in the preferences dialog (Christian Persch)
	* Fix a lot of memory leaks (Christian Persch)
	* Add a news:// protocol handler (Marco)
	* Rewrite autocompletion selection logic (Marco)
	* Fix Tab key binding in location entry (Marco)
	* Fix page load progress update logic (Christian Persch)
	* Update the spinner when a tab is removed (Christian Persch)
	* Sync autocompletion searches color with theme changes
	  (Dave Bordoley)
	* Fall back to about:blank when first page load fails (Marco)
	* Actually show the list of fonts in preference dialog
	  entries (Marco)

Updated translations

	* ar (Arafat Medini)
	* da (Ole Laursen)
	* de (Christian Neumair)
	* en_GB (Christian Persch)
	* es (Francisco Javier F. Serrador)
	* ms (Hasbullah Bin Pit)
	* nl (Vincent van Adrighem)
	* pt_BR (Evandro Fernandes Giovanini)
	* ru (Valek Filippov)
	* sr (Danilo Segan)
	* sr@Latn (Danilo Segan)
	* sv (Christian Rose)
	* zh_CN (Wang Jian)

==============
Epiphany 0.7.3
==============

Interface improvements

	* Display tooltips on toolbars (Marco)

Bugfixes

	* Fix a potential crash when fetching favicons (Marco)
	* Fix site icon in tabs (Christian Persch)
	* Fix crashes when changing location (Christian Persch)

==============
Epiphany 0.7.2
==============

Code changes

	* Rewrite window updating code to use properties (Christian Persch)
	* Rewrite tabs menu and gtknotebook signals (Christian Persch)
	* Rewrite fullscreen to use the new gtk api (Marco)
	* Rewrite the url typed by user overwrite logic (Marco
	* For langauges use functions instead of declaring static
	  vars in the header (Christian Persch)
	* Remove unused gconf prefs, cleanup paths and use strings instead
	  of numeric enumerations (Marco)
	* Use new AM_INIT macro (Marco)
	* Add a context menu signal on the embed to handle both keys and
	  mouse (Marco)
	* Do not override the UA but set vendor prefs so
          that mozilla can build it correctly (Marco)
	* Remove BonoboWindow/Control popup separation, as the first
	  is no more needed (Marco)
	* Translatable string for the locale-dependent http-accept-language
	  list (Christian Persch)
	* Get rid of the gobject macros (Marco)

Interface improvements

	* Better security state icons (suggested by Luca Ferretti, designed by Jimmac)
	* Rename Appeareance preferences tab to be less generic (Marco)
	* Remove memory cache prefs, now mozilla can deal with it automagically. (Marco)
	* Delays bookmarks/history searches a bit after the user pressed key,
	  so that it feel more responsive (Marco)
	* Fixup embed context menu accesskeys (Piers Cornwell)
	* Get rid of starthere: and default homepage to google (Marco)
	* Add a way to import bookmarks from the editor (Marco)
	* Allow to edit smart bookmarks in the user interface (Marco)
	* Provide toolbar overflow menu items for bookmarks (Christian Persch)
	* Better description for cookies preferences (Marco)
	* HIGified Import Bookmarks dialog (Christian Neumair)
	* Persist the language selected for the fonts preferences (Christian Persch)
	* Convert dialog to metric units (Christian Persch)
	* Suggest the address as bookmark title when web page has no title (Marco)
	* Shift+F10 show context menus on the embed (Marco)
	* Implement help button for personal data manager dialog (Christian Persch)
	* Unify the "Copy Email Address" and "Copy Link Address"
	  context menu items (Christian Persch)
	* Higgify history clear dialog (Marco)
	* Add ellipse to Find menu item (Piers Cornwell)
	* Give up on page cloning until we find a good way to do it (Marco)
	* If there's no background image, disable the Save Background As
          menu entry. (Christian Persch)
	* Do not allow to open properties of multiple cookies (Marco)
	* Ever put cursor at the end of the text when selecting autocompletion
        items. (Marco)
	* Use page url as title when there is no page title. (Marco)

Bugfixes

	* Fix several memleaks (Christian Persch)
	* Do not convert spaces to _ on bookmarks importing (Marco)
	* Explicitly create pointer to avoid strict aliasing
	  warnings with gcc 3.3. (Jeremy Katz)
	* size_t fixes for 64 bit platforms (Jeremy Katz)
	* Use va_copy for the valist instead of
          directly accessing it (Jeremy Katz)
	* Dont crash when adding a bookmark without topics. (Marco)
	* Dont crash when closing add bookmark menu quickly (Marco)
	* Fix crashes when adding bookmarks with more than one
	  browser window (Marco)
	* Correctly select the topic to rename when adding one (Xan Lopez)
	* Use our own parser to import mozilla bookmarks so that it actually
	  works. (Marco)
	* Respect the bookmarks bar visibility user choice also
          for popups. (Marco)
	* Update find dialog when user select another tab or load a new url
	  (Christian Persch)
	* Use g_snprintf to not break gcc 2.95
	* Sanitize location entry. Completion will work with pasted text and
	  not ascii characters. (Marco)
	* Fix downloader progress overflow (Marco)
	* Fix add bookmark from link (Marco)
	* Make sure tabs are hidden when going in print preview mode. (Marco)
        * Make print dialog transient. (Marco)
	* Select the old find text when opening find dialog (Marco)

Updated translations

	* cs (Miloslav Trmac)
	* de (Christian Neumair)
	* en_GB (Christian Persch)
	* es (Francisco Javier F. Serrador)
	* mk (Ivan Stojmirov)
	* nl (Vincent van Adrighem)
	* no (Kjartan Maraas)
	* sv (Christian Rose)
	* zh_TW (Abel Cheung)

==============
Epiphany 0.7
==============

Code changes

	* Extend node api to allow to branch different databases, deobjectify
        nodes for better perfomance, smarter id factory. (Marco)
	* Use stock icons instead of the files directly to set window
          border icons. (Dave Bordoley)
	* Cleanup zoom code (Christian Persch)
	* Cleanup tab opening logic (Marco)
	* Rewrite large parts of the encodings/languages code (Christian Persch)
	* Use the spinner icon from gnome-icon-theme (Marco)
	* Start to cleanup schemas for 1.0 (Christian Persch)
	* Use bookmark action for the most used bookmarks menu (Marco)

New features

	* Zoom control for the toolbar (Christian Persch)
	* Holding shift and pressing reload button bypass the cache (Christian Persch)
	* Implement a traditional bookmarks menu (Marco)
	* Exit fullscreen button (Marco)

Interface improvements

	* Remove fine grain color settings. Always use the system theme
          colors (Dave Bordoley)
	* Remove the on new page pref, try to make it behave in a way
	  that fit all cases. (Dave Bordoley)
	* Made (hopefully) all dialogs HIG compliant (Christian Neumair)
	* Make find dialog unresizable (Xan Lopez)
	* Make double click select the whole address in toolbar entry (Marco)
	* Cleanup downloader ui and remove keep open option (Christian Neumair)
	* Tweak mozilla default settings. Don't fetch sidebar whats related stuff.
          Line Wrap View->Source. CTRL-Mousewheel scrolls by one page.
          Enable Image Auto-Resizing. (Dave Bordoley)
	* Activate the menu on button press down (Dave Bordoley)
	* Several interface fixes in print dialog (Piers Cornwell)
	* Add accellerators on the encoding menus (Piers Cornwell)
	
Bugfixes
	* Mark download time format strings for translation (Christian Neumair)
	* Make xml saving low disk safe (Marco)
	* Fix crashes on node removal (Marco)
	* Rebuild tabs menu only when necessary (Christian Persch)
	* Fix crash on download pause (Xan Lopez)
	* Ever ask for path when saving a file, persist the path
	  also on Cancel (Marco)

Updated translations

	* be (Dmitry G. Mastrukov)
	* cs (Miloslav Trmac)
	* da (Ole Laursen)
	* es (Pablo Gonzalo del Campo)
	* li (Mathieu van Woerkom)
	* ja (Takayuki KUSANO)
	* nl (Vincent van Adrighem)
	* pt (Duarte Loreto)
	* se (Christian Neumair)
	* sv (Christian Rose)
	* vi (Pablo Saratxaga)

==============
Epiphany 0.6.1
==============

Code changes

	* Initialize mozilla prefs on startup, so changing gconf prefs while
	  epiphany is not running works again (Marco)
	* Convenience function to display help, avoid a lot
	  of code duplication (Dave Bordoley)
	* Rework prefs dialog code to use a notebook directly from glade
	  and to fit in one file (Marco)
	* Export bookmarks in rdf format, it will be more useful when
	  it's possible to import from it (Marco, Edd Dumbill)
	* Use gtk api for fullscreen (Marco)
	* Do not allow to have more than one bookmark with the same address in
	  the bookmarks collection (Xan Lopez)

New features

	* Drag and drop of links to tabs (Christian Persch)
	* Wrote the structure of the help and 30% of the contents (Dave Bordoley)
	* Security preferences (Marco)
	* Autodetect the user primary language (Marco)
	* Show a list of tabs at the bottom of tabs menu (Dave Bordoley)

Interface improvements

	* ctrl+u show page source (Marco)
	* Use address as title when the page is untitled (Christian Persch)
	* Confirmation dialog for clearing history (Jon Svendsen)
	* Improve find dialog readability, avoid vertical resizing
	  of it (Dave Bordoley, Xan Lopez)
	* Use the term Adress instead of Location as discussed
	  with docs guys (Dave Bordoley)
	* Show bookmarks icons in the toolbar only when there
	  is a specific one (Dave Bordoley)
	* Do not show empty submenus for empty topics, show
	  an "Empty" insensitive item instead (Lee Willis)
	* Some cleanups of the preferences dialog, work in progress (Marco)
	* Alphabetical sort of bookmarks menu (Xan Lopez)
	* Show the full page title in tooltip on the tab label (Christian Persch)
	* On Go->Location, show the toolbar if it's hidden, and hide it again
	  when the user finished to type (Marco)

Bugfixes

	* Remove toolbar for context menu works (Marco)
	* Insert new toolbars before the bookmarks toolbar (Marco)
	* Improve default topics, add google smart bookmark
	  to the toolbar by default (Dave Bordoley)
	* Fix menu sensitivity for the history dialog (Marco)
	* Fix leak in bookmarks importing and improve its speed.
	  This make importing large collection of bookmarks
	  actually possible  (Osma Ahvenlampi)
	* Use AM_CXX_FLAGS instead of CXX_FLAGS, make
	  life easier to packagers (Edd Dumbill)
	* Fix 64 bit problems (Jeremy Katz)
	* Middle click actions on click event, not on mouse down (Marco)
	* Fix leak of tooltips in the statusbar (Christian Persch)
	* Fix smartbookmarks and non ascii characters (Marco)
	* Fix external handlers like mailto, ftp ... (Marco)
	* Make uncategorized special topic work consistently (Xan Lopez)
	* Do not save position for browser windows (Dave Bordoley)
	* Make our string ellipsizing helper utf8 save (Christian Persch)
	* Various internationalization fixes (Christian Neumair)

Updated translations

	* cs (Miloslav Trmac)
	* da (Ole Laursen)
	* de (Christian Neumair)
	* es (Francisco Javier Fernandez)
	* ja (Takayuki KUSANO)
	* ms (Hasbullah Bin Pit)
	* pt_BR (Evandro Fernandes Giovanini)	

==============
Epiphany 0.6.0
==============

Code changes

	* Abstract implementation of EphyNodeView and EphyNodeTreeModel,
	  so they can be shared by history and bookmarks (Marco, Jorn Baayen)
	* Rewrite toolbar editor: more flexible model, do not use xml to build
	  toolbars internally but EggAction directly (Marco)
	* EphyDnd, EphyShell, Session cleanups (Christian Persch)
	* Remove --geometry parameter (it was not being respected anyway) (Xan Lopez)

Interface improvements

	* Update smart bookmarks explanation (Marco)
	* Remove "Epiphany" from desktop files (Marco)
	* Always show tab bar if the user choose to default to tabs (Frank Belew)
	* Add Help menu to the bookmarks editor (David Bordoley)
	* All bookmarks menu on the bookmarks toolbar (Marco)
	* Change the start page uri to home: (Marco)
	* Not categorized special topic (Marco)
	* Ever open tab as last on File->New tab and similars (Marco)
	* Hidden pref for middle click open url, it can be confusing (Marco)
	* Rework the design of the history dialog, not completed,
	  but it's already more usable (Marco, Dave Bordoley)
	* Merge (and fix) Pause/Resume buttons of the downloader (Xan Lopez)
	* Open view source next to the current tab (Xan Lopez)
	* Update View, Zoom, Tabs main menu bar items sensitivity according
	  to the state (Marco)
	* Default bookmarks toolbar. Do not allow to drag items to the
	  other toolbars because it can be confusing. Accessible and more visible
	  way to add bookmarks to the toolbar, in addition to drag and drop (Marco)
	* Add tooltips to all the history and bookmarks menus (Dave Bordoley)
	* Respect user selected font sizes in the home page (Xan Lopez)
	* Add a down arrow to topics in bookmarks toolbars (Dave Bordoley)
	* Save page content by default (Christian Persch)
	* Make new bookmark dialog transient instead of modal (Dave Bordoley)
	* Use epiphany logo in the about window (Xan Lopez)
	* Add and help button to toolbar editor (Dave Bordoley)
	* Allow to resize the two views in bookmarks editor and history using
	  a pane (Dave Bordoley)
	* Save the position of windows on the screen (Dave Bordoley)
	* Consistent use of the term "Bookmarks Bar" in the code, ui and schema.
	  (Dave Bordoley)
	* New default toolbar layout (Dave Bordoley)
	* In the history and bookmarks view pack the icon in the same
	  column of the title (Marco)	
	* Respect View menu toggles also in fullscreen (Lee Willis)

Bugfixes
	* Add bugzilla info (Mark Finlay)
	* Register application info (for mimetypes) (Mark Finlay)
	* Fix a compilation bug on 2.95 (Vincent Untz)
	* Fix select all for the bookmarks view (Dave Bordoley)
	* Paste is only sensitive when in a text entry (Dave Bordoley)
	* Fix bookmarks editor context menus to ever refer to the right view (Marco)
	* Update bookmarksmenus sensitivity when the context change
	  rather than after the menu is showed (Marco)
	* Fix crash when opening popups (Marco)
	* Fix crash when accessing secure sites (Dave Camp)
	* Fix back and forward buttons prelighting randomly (Marco)
	* Fix translation of some menus (Christian Neumair)
	* Fix the downloader to remove/pause only current download, not all
	  (Xan Lopez)
	* "Intelligent" selection when an item is removed
	  for history and bookmarks. (Xan Lopez)

Updated translations

	* da (Ole Laursen)
	* es (Francisco Javier Fernandez)
	* ms (Hasbullah Bin Pit)
	* nl (Vincent van Adrighem)
	* no (Kjartan Maraas)
	* pt (Duarte Loreto)
	* pt_BR (Evandro Fernandes Giovanini)
	* sv (Christian Rose)
	* zh_TW (Abel Cheung)

==============
Epiphany 0.5.0
==============

Code changes

	* Port to EggMenu API
	* Make GaleonShell subclass GaleonEmbedShell.
	  Now also embed services like downloader
	  are able to reference it. (Marco)
	* Use mozilla prompts dialogs implementation.
	  (This means you will see XUL dialogs with older
	   mozilla versions) (Marco)
	* Fix embed persist lifetime issues to avoid leaks (Marco)
	* Reimplement ephy-state using xml (Marco)
	* Add to EphyNode the ability to specifiy reserved id for nodes,
	  useful for toplevel nodes (Marco)
	* Rework drag and drop api to deal with more than the urls types (Marco)
	* Autoupdate EggX. Use the toolbar editor stuff from libegg. (Marco)
	* Use the latest suggested way to initialize mozilla services.
	  (Marco, from galeon)

New features

	* Ability to drag bookmarks, smart bookmarks and topics
	  to the toolbar (Marco)
	* Optional Go button (Dave Bordoley)
	* Help support (Patanjali Somayaji) 

Interface improvements

	* Site icons in topics menus (Johan Dahlin)	
	* Site icons on tabs (Christian Persch)
	* Set icons for History, Find, Bookmarks, Preferences dialogs
	  (Dave Bordoley)
	* Bookmarks editor redesign: better interface to assign multiple
	  topics, better editor interface using a toplevel window with a
	  menubar, file manager like editing capabilities, ability to open
	  the editor independently, "most used" special topic.
	  They certainly need love, but I think we have a good direction now.
	  (Marco, Dave Bordoley, Xan Lopez)
	* Properly save maximized/unmaximized state of the main window (Marco)
	* Remove spinner configuration and default to Gnome spinner,
	  this should be part of gnome icon theme at some point. (Marco)
	* Remove bookmarks with delete key (Xan Lopez)
	* Alphabetical sort of topics and bookmarks in the editor (Xan Lopez)
	* Remove tab autocompletion to avoid accessibility issues (Marco)	
	* Focus the location entry when opening a new window and do not
	  put the url in it, so the user can more easily insert
	  the location he wants to load.
	  Try to not disturb the user when he is editing the url with
	  focus removals.
	  All these works more or less well depending on mozilla versions :/
	  (Marco)
	* Make the start-here: page use the theme colors. (James Willcox)
	* Tab load notification, using an animated image (James Willcox)
	* Several improvements to the main menubar layout and labels
	  (Dave Bordoley)
	* Add "Go to" button to the history (Xan Lopez)
	* Have just one Close menu item and make it behave like
          other gnome apps, closing document by document (Marco)
	* More clear buttons labels on resume dialog (Lee Willis)
	* Make the bookmarks editor remember the last selected keyword
	  (James Willcox)
	* Spinner is no more a button, like in Nautilus (Marco)
	* Ability to import galeon and konqueror
	  bookmarks (James Willcox)
	* Use the title instead of url in Back/Forward history
	  and in the history dialog (Marco)
	* Use favorites icons in bookmarks (Marco)
	* More usable toolbar editor based on drag and drop (Marco)
	* Enable startup feedback (Marco)
	* Disable annoying security dialogs (Marco)

Bugfixes

	* fix incorrect figures on small files downloads (Rob Clews)
	* do not leak the history xml every 5 minutes (Lee Willis)
	* Error handling in Mozilla bookmarks import (Xan Lopez)
	* Make nautilus view actually work (Marco)
	* Fix session saving (Lee Willis)
	* Fix casting on big-endian. Context menus are now working
	  on PPC (from Galeon)
	* Compile fix for gcc 2.95 (Dan Damian)
	* Properly autocomplete when topics have national characters
	  (Xan Lopez)
	* Use default widget color for smart bookmarks background
	  (Dan Damian)

Translations
	* am (Daniel Yacob)
	* ca (Pablo Saratxaga)
	* da (Ole Laursen)
	* de (Christian Neumair)
	* el (Kostas Papadimas)
	* es (Javier Fernandez)
	* fr (Christophe Fergeau, Laurent Richard)
	* ja (Takayuki KUSANO)
	* ko (Kang Jeong-Hee)
	* no (Kjartan Maraas)
	* nl (Vincent van Adrighem)
	* pl (Zbigniew Chyla),
	* pt (Duarte Loreto)
	* pt_BR (Evandro Fernandes Giovanini)
	* ru (Dmitry G. Mastrukov)
	* sv (Christian Rose)
	* tr (Fatih Demir)
	* zh_TW (Abel Cheung)