summaryrefslogtreecommitdiff
path: root/NEWS
blob: 2f9cf1556116222043367e77c4fb6bda7652b6b0 (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
==============
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.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)