~ubuntu-branches/ubuntu/quantal/epiphany-extensions/quantal

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
=========================
Epiphany Extensions 3.0.0
=========================

3.0.0 release.

===========================
Epiphany Extensions 2.91.92
===========================

Update greasemonkey extension for the removal of EphyEmbedPersist in Epiphany.

===========================
Epiphany Extensions 2.91.90
===========================

Update to use GTK+ 3.0. Remove gconf dependency. Remove tab-groups extension
(Epiphany does it by default now).
Temporarily disabled auto-scroller, it doesn't build with GTK+ 3.0.

Added/updated translations
  - added/updated translations
    - ca@valencia, courtesy of David Planella
    - cs, courtesy of Marek Černocký
    - da, courtesy of Joe Hansen
    - es, courtesy of Daniel Mustieles
    - pt_BR, courtesy of Gabriel Feitosa Vilar
    - sl, courtesy of Andrej Žnidaršič
    - sl, courtesy of Matej Urbančič
    - sv, courtesy of Daniel Nylander
    - zh_CN, courtesy of YunQiang Su

==========================
Epiphany Extensions 2.30.0
==========================

This release fixes an adblock problem that yield false positives. It also
enables e-e to be buildable with latest GTK+ releases.

Added/updated translations
    - ca, courtesy of David Planella
    - cs, courtesy of Lucas Lommer
    - es, courtesy of Jorge González
    - eu, courtesy of Iñaki Larrañaga Murgoitio
    - fi, courtesy of Tommi Vainikainen
    - fr, courtesy of Claude Paroz
    - gl, courtesy of Fran Diéguez
    - hu, courtesy of Gabor Kelemen
    - it, courtesy of Francesco Marletta
    - lt, courtesy of Žygimantas Beručka
    - pt, courtesy of António Lima

===========================
Epiphany Extensions 2.29.91
===========================

This release introduces a new extension that enables control+tab as a shortcut
to switch tabs, removed the sidebar extension and updated the actions extension
and converts all our legacy glade files to GtkBuilder ones, this means we no
longer need gtk-builder-convert script.

New extension:
    - tab-key-tab-navigate: use Control+Tab to switch tabs by Lubomír Sedlář.

Usual extensions:
    - Actions extension works again with current master.
    - Sidebar extension was removed.

Added/updated translations:
    - de, courtesy of Mario Blättermann
    - es, courtesy of Daniel Mustieles
    - hu, courtesy of Gabor Kelemen
    - pt, courtesy of António Lima
    - sl, courtesy of Andrej Žnidaršič

==========================
Epiphany Extensions 2.29.6
==========================

This release updates most extensions to work with Epiphany master, highlights
are the return of gestures, rss and the new youtube-to-html5 extension.

New extension:
    - html5tube: view YouTube videos without Flash, using the internal media
      player.

Re-enabled extensions:
    - Re-enable gestures extension.
    - Re-enable rss extension.

Changes and fixes:
    - push-scroller: don't jump on drag-start.
    - push-scroller: avoid eating middle-clicks for paste-open urls.
    - rss: fix a crasher when showing the subscription dialog a second time.
    - rss: don't show subscribe button for every link.
    - greasemonkey: don't show install user script button for every link.

Added/updated translations:
    - bn_IN, courtesy of Runa Bhattacharjee
    - ca, courtesy of David Planella
    - de, courtesy of Christian Kirbach
    - de, courtesy of Mario Blättermann
    - gu, courtesy of Sweta Kothari
    - kn, courtesy of Shankar Prasad
    - or, courtesy of Manoj Kumar Giri
    - pt_BR, courtesy of Djavan Fagundes
    - ro, courtesy of Mișu Moldovan
    - sl, courtesy of Andrej Žnidaršič
    - ta, courtesy of I. Felix
    - te, courtesy of Krishna Babu K

==========================
Epiphany Extensions 2.28.0
==========================

Changes:

  - Fix adblock .glade file to avoid crashes when converting to
    .ui. (#586552)
  - Update RSS extension to new APIs. (#594482)
  - Do not block URIs that match the /ad?/ regexp.

===========================
Epiphany Extensions 2.27.92
===========================

The highlight for this release is the return of the adblock functionality :-).

Changes:
	* Enable silent build with automake 1.11.
	* Re-enable adblock functionality.

Bug fixes:
	* Fix tab-states for newer Epiphany API.

Translations:
	* Updated Basque language by Inaki Larranaga Murgoitio.

Many thanks to contributors to this release:
Diego Escalante Urrelo, Gustavo Noronha Silva, Inaki Larranaga Murgoitio,
Xan López

==========================
Epiphany Extensions 2.17.4
==========================

Changes:

	* Adblock has now an UI (in-progress work)
	* Page info now shows if a media/link is blocked (if Adblock is on)
	* Add gconf schemas to smart-bookmarks extension
	* Remove frame around the adblock icon, to make it look like the other
	items
	* Fix for mozilla API change
	
==========================
Epiphany Extensions 2.15.2
==========================

New extensions:

        * Live HTTP Headers

Changes:

	* Update Adblock with last blacklist from upstream (2006-04-06a)
	* Update intltool requirement to 0.35
	* Drop support for gecko 1.7
	* Don't ship dashboard extension (too broken)
	* Don't ship imagebar extension (too broken)
	
Bug fixes:
	
	* Configure now prints a summary of enabled/disabled features as for Epiphany [#345908]
	* Show a notification dialog when a duplicate sidebar is added [#333306]
	
Contributors to the Epiphany Extensions 2.15.2 release:

Wouter Bolsterlee, Christian Persch, Jean-François Rameau.

Updated translations:

Theppitak Karoonboonyanan (th), Hendrik Richter (de), Alexey Balmashnov (ru), pclouds (vi)
 
==========================
Epiphany Extensions 2.14.0
==========================

Contributors to the Epiphany Extensions 2.14.0 release:

Samuel Abels, Crispin Flowerday, Gustavo Gama, Mathias Hasselmann,
Tommi Komulainen, Philip Langdale, Christian Persch, Raphaël Slinckx,
and Jean-François Rameau.

Translations:
Rostislav \"zbrox\" Raykov (bg), Miloslav Trmac (cs), Frank Arnold (de),
Adam Weinberger (en_CA), Francisco Javier F. Serrador (es),
Pauli Virtanen (fi), Ignacio Casal Quinteiro (gl), Gabor Kelemen (hu),
Takeshi AIHANA (ja), Žygimantas Beručka (lt), Kjartan Maraas (nb),
Reinout van Schouwen (nl), Kjartan Maraas (no), Marcel Telka (sk),
Clytie Siddall (vi), Funda Wang (zh_CN), Chao-Hsiung Liao (zh_TW).


=========================
Epiphany Extensions 1.9.7
=========================

Changes:
	* Make the Extension Manager reflect which extensions are enabled,
	 not which are active. Fixes bug #164704
	* Remove references to bookmarks-tray. It is broken and won't be fixed
	  by 1.10

Contributors to this release:
Christian Persch, Crispin Flowerday

Updated translations:

	* Ignacio Casal Quinteiro (gl)

=========================
Epiphany Extensions 1.9.6
=========================

Changes:
	* Check that we have a content_type before calling strcmp() on it. Fixes bug #322082
	* Update for EphyPermissionManager API change
	* Update for the ephy_embed_event_get_property API change.
	* Add ... to "Tools/Extensions" menu item
	* Remove net-monitor extension, this is now integrated with epiphany
	* Load favicons for https sites with gecko >= 1.8

Contributors to this release:
Christian Persch, Crispin Flowerday, Raphaël Slinckx, Jean-François Rameau

Updated translations:

        * Reinout van Schouwen (nl)
        * Francisco Javier F. Serrador (es)
        * Marcel Telka  <marcel@telka.sk> (sk)
        * Ilkka Tuohela  <hile@iki.fi> (fi)
        * Vladimir Petkov (bg)
        * Funda Wang (zh_CN)
        * Clytie Siddall (vi)
        * Ignacio Casal Quinteiro (gl)
        * Adam Weinberger (en_CA)

=========================
Epiphany Extensions 1.9.5
=========================

Changes:
        * New auto-reload extension by Raphaël Slinckx
        * Page info: Ellipsizes urls and set a maximum size to urls [#171577]
        * Ad blocker: Several improvements, fix [#319561]

Contributors to this release:
Crispin Flowerday, Jean-François Rameau and Raphaël Slinckx.

=========================
Epiphany Extensions 1.9.4
=========================

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

Updated translations:

	* Adam Weinberger (en_CA)
	* Ignacio Casal Quinteiro (gl)
	* Gabor Kelemen (hu)
	* Takeshi AIHANA (ja)
	* Marcel Telka (sk)
	* Funda Wang (zh_CN)


=========================
Epiphany Extensions 1.9.3
=========================

Changes:

	* New "Java Console" extension, by Mathias Hasselmann
	* New "Push Scroller" extension, by Samuel Abels
	* Misc bug fixes and improvements

Contributors to this release: Samuel Abels, Christian Persch,
Mathias Hasselmann and Jean-François Rameau.

Updated translations:

	* Rostislav "zbrox" Raykov (bg)
	* Miloslav Trmac (cs)
	* Adam Weinberger (en_CA)
	* Francisco Javier F. Serrador (es)
	* Ignacio Casal Quinteiro (gl)
	* Žygimantas Beručka (lt)
	* Kjartan Maraas (nb)
	* Reinout van Schouwen (nl)
	* Kjartan Maraas (no)
	* Marcel Telka (sk)
	* Funda Wang (zh_CN)
	* Chao-Hsiung Liao (zh_TW)


=========================
Epiphany Extensions 1.9.2
=========================

Changes:

	* Fix for Epiphany API changes
	* Use tar-ustar instead of tar-pax to work with older tars [#320011]
	* New: Permissions extension
	* Fix for removal of the Ephy*FramedDocumentPopup popup menus
	* Use curly quotes
	* Remove glade callbacks
	* Add a menu item to open the Security Device Manager
	* Fix gestures not to also activate the middle-click callbacks
	* Fix extension description files i18n

Extensions known to be broken currently: Actions, Adblock, Bookmarks Tray.

Contributors to this release:
Christian Persch, Jean-François Rameau, Philip Langdale.

Updated translations:

	* Miloslav Trmac (cs)
	* Adam Weinberger (en_CA)
	* Francisco Javier F. Serrador (es)
	* Takeshi AIHANA (ja)
	* Marcel Telka (sk)
	* Funda Wang (zh_CN)


=========================
Epiphany Extensions 1.9.1
=========================

Changes:

	* Adapt to new and changed Epiphany APIs
	* Fix About dialogue entry in extensions manager UI
	* Make the adblock module resident [#170518]
	* Add extra mozilla includes to allow compilation against an uninstalled mozilla build
	* Fix gettext domain use
	* Fix tab-groups extension for changed EphyNotebook signal name
	* Add rss extension to help section.
	* Use the EPIPHANY_EXTENSION_INIT macro
	* Move Page Information menu item to View menu [#316247]
	* Adapt to new .ini file format
	* Port the rest of the extensions to the new .ephy-extension file format
	* Port the gestures extension to the new .ephy-extensions file format
	* Fix sidebar context menu setting of the context event, and menu deactivation
	* Avoid a dependency to gecko 1.8
	* Allow lookup of selections within forms (textarea and text input)[#315319]
	* Fix HIG spacings
	* Update gtk requirement
	* Remove check for old dbus
	* Add a favicon fallback extension (written in python)

Contributors to this release: Crispin Flowerday, Gustavo Gama, Tommi Komulainen,
Christian Persch, Jean François Rameau and Raphael Slinckx.

New and updated translations:

	* Rostislav "zbrox" Raykov (bg)
	* Adam Weinberger (en_CA)
	* Marcel Telka (sk)
	* Funda Wang (zh_CN)


=========================
Epiphany Extensions 1.7.5
=========================

New extensions:

        * Auto-Scroll extension

Changes

        * Fix possible pointer grab lockup with gestures
	* Fix configure check to not use AM_CONDITIONAL conditionally
	* Updated AUTHORS and README files

Contributors to this release: Crispin Flowerday, Christian Persch.

Updated translations:

	* Frank Arnold (de)
	* Ignacio Casal Quinteiro (gl)
	* Takeshi AIHANA (ja)
	* Reinout van Schouwen (nl)
	* Maxim Dziumanenko (uk)


=========================
Epiphany Extensions 1.7.4
=========================

Changes

        * Page info extension now allows saving multiple selections
        * Page info extension now lists external scripts [#310398]

Contributors to this release: 
Jean-François Rameau.

Translation updates:

	* Miloslav Trmac (cs)
	* Adam Weinberger (en_CA)
	* Takeshi AIHANA (ja)
	* Reinout van Schouwen (nl)
	* Marcel Telka (sk)


=========================
Epiphany Extensions 1.7.3
=========================

Changes

	* Detect seamonkey trunk
	* Updated for Epiphany changes

Translation updates:

	* Francisco Javier F. Serrador (es)
	* Gabor Kelemen (hu)
	* Ganesh Ghimire (ne)


=========================
Epiphany Extensions 1.7.2
=========================

Changes

	* Support DBUS 0.34 [#306565]
	* Improved Greasemonkey extension
	* Work around bug #169116 [#172872]

Contributors to this release are Adam Hooper, Jean-François Rameau and
Raphaël Slinckx.

Updated translations:

	* Miloslav Trmac (cs)
	* Frank Arnold (de)
	* Adam Weinberger (en_CA)
	* Takeshi AIHANA (ja)
	* Reinout van Schouwen (nl)
	* Marcel Telka (sk)
	* Christian Rose (sv)
	* Abel Cheung (zh_TW)


=========================
Epiphany Extensions 1.7.1
=========================

New extensions

	* Newsfeed extractor extension, written by Raphaël Slinckx
	* Greasemonkey extension, written by Adam Hooper
	* Python console
	* Sample Python extensions


Removed extensions

	* Find toolbar (moved to Epiphany core)


Changes

	* Numerous enhancements
	* Numerous bug fixed: #301001, #302326, #300637, #171908, #172390,
	  #170786, #170322, #290309.


Contributors: Adam Hooper, Jordi Mallach, Christian Persch,
Jean-François Rameau and Raphaël Slinckx.

New and updated translations by Rostislav "zbrox" Raykov (bg),
Miloslav Trmac (cs), Frank Arnold (de), Adam Weinberger (en_CA),
Francisco Javier F. Serrador (es), Pauli Virtanen (fi), Gabor Kelemen (hu),
Takeshi AIHANA (ja), Reinout van Schouwen (nl), Steve Murphy (rw),
Marcel Telka (sk), Christian Rose (sv), Maxim Dziumanenko (uk) and
Pablo Saratxaga (wa).


=========================
Epiphany Extensions 1.6.6
=========================

New extensions:

	* Auto-Scroll extension

Changes
	* Fix possible pointer grab lockup with gestures


=========================
Epiphany Extensions 1.6.5
=========================

Updated translations:

	* Takeshi AIHANA (ja)
	* Christian Rose (sv)


=========================
Epiphany Extensions 1.6.4
=========================

Changes

	* gcc 4 compilation fixes
	* Enable typeahead search in the treeview in page info [#170322]
	* Remove label, and add tooltip from bookmarks tray
	* Page Info gets href attribute for embed elements [#170786]
	* Fixes size persistence of the page info dialogue
	* Fix for mozilla API change.

Contributors to this release:
Jordi Mallach, Christian Persch, Jean-François Rameau and Lars Strojny.

Translation updates:

	* Rostislav \"zbrox\" Raykov (bg)
	* Pauli Virtanen (fi)
	* Abel Cheung (zh_TW)


=========================
Epiphany Extensions 1.6.3
=========================

Changes

	* Don't default to -Werror.
	* Deactivate the menu when destroying the sidebar.
	* Fix compilation with gcc4 [#300637]
	* Fix window opening from sidebar
	* Fix rare crash on 64-bit archs

Contributors to this release:
Sebastien Bacher and Christian Persch.


=========================
Epiphany Extensions 1.6.2
=========================

Changes

	* Adapt to mozilla API change on trunk
	* Sort by type first in the page info dialogue [#172390]

Contributors to this release:
Christian Persch and Jean-François Rameau, and the translators
Takeshi AIHANA (ja) and Reinout van Schouwen (nl).


=========================
Epiphany Extensions 1.6.1
=========================

Changes

	* Fix compile with gcc-4.0 on amd64 [Debian #290309]
	* Fix configure check for nsITypeAheadFind.h
	* Enable typeahead search in the treeview [#170322]
	* Remove label from the tray bookmarks menu, and add tooltip
	* IPage Info gets href attribute for embed elements [#170786]
	* Fix configure extensions list without --with-extensions.
	* Fixes size persistence of the page info dialogue
	* Adapt to mozilla API change

Contributors to this release:
Jordi Mallach, Christian Persch, Jean-François Rameau and
Lars Strojny, and the translators Francisco Javier F. Serrador (es),
Changwoo Ryu (ko), Steve Murphy (rw) and Pablo Saratxaga (wa).


=========================
Epiphany Extensions 1.6.0
=========================

Changes

	* Enable extension description translations.
	* Make sure mozilla is started before setting the prefs
	* Sync headers with Epiphany
	* Implement Metadata tab in Page Info dialogue
	* Don't start off-line if NetworkManager is unavailable

Contributors:
Christian Persch and Jean-François Rameau, and the translators
Frank Arnold (de), Adam Weinberger (en_CA) and Gabor Kelemen (hu).


=========================
Epiphany Extensions 1.5.8
=========================

Changes
	* Fix build for sh != bash [Grzegorz Golawski, #167011]
	* Adapt to mozilla API change
	* Improved Find extension
	* Ref the tray icon [#163819]
	* Destroy open "Add to sidebar" dialogues when unloading the extension [#156523]
	* Don't activate find bar when pressing Space [#167415]
	* Focus links while finding
	* Disable gestures while print preview mode [Jean-François Rameau]

Contributors:
Grzegorz Golawski, Christian Persch and Jean-François Rameau; and the
translators David Lodge (en_GB), Francisco Javier F. Serrador (es),
Francesco Marletta (it), Takeshi AIHANA (ja), Changwoo Ryu (ko),
Reinout van Schouwen (nl), Estêvão Samuel Procópio (pt_BR) and
Marcel Telka (sk).


=========================
Epiphany Extensions 1.5.7
=========================

New extensions

	* "Actions" extension, written by Jean-Yves Lefort
	* "Net Monitor" extension, written by Jean-François Rameau
	  (experimental; requires Epiphany compiled with --enable-dbus)

Changes

	* Implement EphyExtension's attach_window/detach_window interface
	  instead of simulating them
	* Fix LOG() statements in non-gcc varargs case
	* Updated HOWTO to include some Python
	* Add missing QI in page info helper
	* Remove tooltip from window [#166010]
	* Better error dialog when command failed in actions extension


Contributors to this release: Adam Hooper, Jean-Yves Lefort, Christian Persch,
Jean-François Rameau, and the translators Rostislav Raykov (bg),
Miloslav Trmac (cs), Frank Arnold (de), Adam Weinberger (en_CA),
Francisco Javier F. Serrador (es), Takeshi AIHANA (ja), Žygimantas Beručka (lt),
Reinout van Schouwen (nl) and Marcel Telka (sk).


=========================
Epiphany Extensions 1.5.6
=========================

New extensions

	* 'Find' extension adds a find-bar.
	  This extension is experimental and will crash or hang your browser.
	* 'Tab-States' extensions

Changes

	* Build extensions modules as not versioned DSO
	* Hook adblock extension onto "check-content" signal
	* Adapt to Mozilla API change
	* Fix a small memory leak
	* Removed prefs dialogue from smart-bookmarks extension
	* Work-in-progress: huge refactoring of adblock
	* Fix builddir != srcdir build
	* Use pcre instead of pcreposix. Check for utf-8 support, too
	* Implement EphyExtension attach_window/detach_window interface in page-info ext
	* Adapt to Epiphany API changes

Contributors to this release: Adam Hooper, Tomasz Kłoczko, Christian Persch,
Jean-François Rameau, and the translators Frank Arnold (de) and Takeshi AIHANA (ja).


=========================
Epiphany Extensions 1.5.5
=========================

Changes

	* Fix fox bookmarks with underscore in their names [#161832]
	* Adapt to changes Epiphany APIs
	* Add DND to Media and Links tabs, and plug a few mem leaks
	* Fix page info for pages with # in the url [#161201]
	* Update sample extensions
	* Hook into the "add-sidebar" signal in epiphany and remove mozilla dependency
	  from the sidebar extension [#156849, #157088]

Contributors to this release: Jean-François Rameau, Crispin Flowerday
and the translators: Miloslav Trmac (cs), Hendrik Brandt (de),
Adam Weinberger (en_CA), Francisco Javier F. Serrador (es),
Gabor Kelemen (hu), Takeshi AIHANA (ja), Reinout van Schouwen (nl),
Marcel Telka (sk)


=========================
Epiphany Extensions 1.5.4
=========================

Bug fixes

	* Fix crash when going to Media tab in Page Info dialog [#161815]


Epiphany Extensions 1.5.3
=========================

Changes

	* Sync headers with Epiphany
	* List applet, embed and object elements in the Page Info dialogue,
	  add Media tab, only preview images (Jean-François Rameau, Christian)
	* Makefile.am modernisations
	* Use ellipsised labels instead of shortening strings
	* Use GtkAboutDialog (Adam Hooper) [#161519]

Bug fixes

	* Abort gesture on unmap (ported from galeon) [#160228]
	* Fix context menu on Media page of Page Info dialogue

Translation updates

	* Hendrik Brandt (de)
	* Takeshi AIHANA (ja)
	* Pablo Saratxaga (wa)


=========================
Epiphany Extensions 1.5.2
=========================

Changes

	* Select first menu item when popping the menu up with keyboard
	* Fix compilation with latest mozilla trunk
	* Use ephy_embed_show_page_certificate
	* Sync headers with Epiphany
	* Also list CSS background images and mailto links in the 
	  page info dialogue (Jean-François Rameau)
	* Fix out-of-srcdir build

Bug fixes

	* Fix tab closing with tab-groups extension

Translation updates

	* Adam Weinberger (en_CA)
	* Yannick Tailliez (fr)
	* Takeshi AIHANA (ja)


=========================
Epiphany Extensions 1.5.1
=========================

New features

	* Created copy-template script
	* Added "Sidebar" extension, written by Crispin Flowerday
	* Added "Extensions Manager" extension, written by Adam Hooper
	* Added "Bookmarks Tray" extension

Changes

	* Updated for epiphany 1.5 API changes
	* Cleanup of mozilla stylesheet handling.
	* Skip style sheets not for "screen" or "all" media
	* Add tab-groups to default_extensions
	* Fix context menu positioning
	* Add warnings to CFLAGS and CXXFLAGS
	* Fix loads of compiler warnings
	* Set window icons
	* Implement context menu in "Links" tab
	* Add extension description files
	* Make dialogue transient to the opening window
	* Add separators in the Tools menu
	* Use new gtk+ HIG message dialogue API.
	* Listen to ephy-extension-manager's added/removed signals to add/remove
	  extensions from the list

Bug fixes
	* Fix mem leaks [#153470, #153471, #153473]
	* Fix crash after unloading the error-viewer extension [#153712]
	* Make all extensions unload-proof
	* Always load unnamed stylesheets [#153739]
	* Don't block stylesheets without "media" attribute. Shorten menu
	  entries to 32 chars max [#153710]
	* Hide the sidebar when in print preview mode
	* 64-bit fix [Andrzej Dopierała]
	* Don't make the extensions description ediable [#155389]
	* Fix the extensions .xml description file build process
	* Detach correctly from the window [#155388]
	* Destroy info dialoguess with Extension Manager UI dialogue
	* Fix alignment of "Authors" label

Documentation

	* Updated HOW-TO

Translation updates

	* Ole Laursen (da)
	* Christian Neumair (de)
	* Adam Weinberger (en_CA)
	* David Lodge (en_GB)
	* Francisco Javier F. Serrador (es)
	* Yannick Tailliez (fr)
	* (hr)
	* Francesco Marletta (it)
	* Reinout van Schouwen (nl)
	* Raphael Higino (pt_BR)


=========================
Epiphany Extensions 1.4.0
=========================

New extensions

	* Smart bookmarks extension, written by Jean-François Rameau
	* Page info extension, written by Adam Hooper
	* CSS Stylesheet extension, written by Adam Hooper

Translation updates

	* Changwoo Ryu (ko)


=========================
Epiphany Extensions 1.1.4
=========================

New extensions

	* Tab grouping extension, written by Justin Wake

Translation updates

	* Xavier Conde Rueda (ca)
	* Laurent Dhima (sq)


=========================
Epiphany Extensions 1.1.3
=========================

Code changes

	* Minor cleanup of certificates extension (Christian)
	* Make gestures extension support unloading/reloading (Adam)

Updated translation:

	* Changwoo Ryu (ko)


=========================
Epiphany Extensions 1.1.2
=========================

Updated translations

	* Francisco Javier F. Serrador (es)
	* Gabor Kelemen (hu)
	* Laurent Dhima (sq)
	* Rostislav Raykov (bg)


=========================
Epiphany Extensions 1.1.1
=========================

Removed features:

	* Popup blocker. It is now integrated in Epiphany. (Adam)
	* Removed support for mozilla < 1.7 (Christian)

Code changes

	* Ported to mozilla embed strings (Christian) [#144237]
	* Fix C99-ism in error viewer (Adam) [#144053]

Bug fixes

	* Fix crash when closing the last window (Christian) [#144850]
	* Fix includes (Adam) [#143818]


Translations

	* Rostislav Raykov (bg)
	* 相花  (ja)
	* Estêvão Samuel Procópio (pt_BR)
	* Marcel Telka (sk)
	* Laurent Dhima (sq)


=========================
Epiphany Extensions 1.1.0
=========================

Code changes

	* Adapt to Epiphany API changes (Christian)
	* Portability fix for FreeBSD (Christian, taken from FreeBSD ports)
	* Adapt to mozilla API changes (Christian, Adam)
	* Refactored link checker (Adam)
	* Use public epiphany API to get at the statusbar security icon (Christian)

Bug fixes

	* Build fixes (Christian, Adam)
	* Mem leak fix (Christian)
	* Fix link checker stuck busy cursor (Adam)
	* Fix handling of invalid encodings (Adam)
	* Fix stupid bug, connect to the right signal on tab-remove (Christian)

Translations

	* Xavier Conde Rueda (ca)
	* Miloslav Trmac (cs)
	* Adam Weinberger (en_CA)
	* Francesco Marletta (it)
	* Žygimantas Beručka  (lt)
	* Reinout van Schouwen (nl)
	* GNOME PL Team (pl)
	* Duarte Loreto (pt)
	* Dmitry G. Mastrukov (ru)
	* Christian Rose (sv)
	* Yuriy Syrota (uk)
	* Pablo Saratxaga (wa)
	* Liu Songhe (zh_CN)


==========================
Epiphany Extensions 0.7.91
==========================

Bugfixes
	* Fix popup-blocker compilation and interaction with Mozilla 1.6 (Adam)

==========================
Epiphany Extensions 0.7.90
==========================

New features:
	* Add menu item to access the XUL certificate manager
	  from the "Tools" menu (Christian)
	* Display busy-cursor while validating (Adam)
	* Link checker (Adam)
	* Add icon to statusbar when there are blocked popups (Adam)

Code changes
	* Adapt to changes in Epiphany API (Christian)

Bugfixes
	* Fix crash in tabs move menu (Christian)
	* Don't label non-JS errors as "Javascript" (Adam)
	* Set link checker timeout (Adam)

Translations
	* Amanpreet Singh Alam (pa)
	* Francisco Javier F. Serrador (es)
	* Funda Wang (zh_CN)
	* Kjartan Maraas (no)
	* Kostas Papadimas (el)
	* ? (hr)
	* Laszlo Dvornik (hu)
	* Laurent Dhima (sq)
	* Miloslav Trmac (cs)
	* Reinout van Schouwen (nl)
	* Yukihiro Nakai (ja)
	* Žygimantas Beručka (lt)
	* Данило Шеган (sr, sr@Latn)


=========================
Epiphany Extensions 0.7.2
=========================

	* Fix compilation with epiphany 1.1.9

=========================
Epiphany Extensions 0.7.1
=========================

	* Fix compilation with epiphany 1.1.7

=========================
Epiphany Extensions 0.7.0
=========================

New Features:

	* Error Viewer extension (Adam Hooper)
	* Dashboard extension (Lee Willis)
	* Certificate Viewer (Christian)

Translations:

	* Christian Rose (sv)
	* Duarte Loreto (pt)
	* Francisco Javier F. Serrador (es)
	* Kjartan Maraas (no)
	* Laurent Richard (fr)	
	* Marcel Telka (sk)
	* Miloslav Trmac (cs)
	* Ole Laursen (da)
	* Tino Meinen (nl)
	* Данило Шеган (sr, sr@Latn)


=========================
Epiphany Extensions 0.6.0
=========================

Code changes:

	* Ported to new epiphany extensions API
	* Mouse gestures: cleaned up code cruft
	* Tabsmenu: re-written to be much simpler

New features:

	* Popup Blocker


=========================
Epiphany Extensions 0.4.0
=========================

What's News ?
=============

Code changes:

	* Port to gtk+ 2.4 api. Requires gtk+ >= 2.3.0 and epiphany 1.1.0
	  or epiphany cvs HEAD.


=========================
Epiphany Extensions 0.2.4
=========================

What's New ?
============

Bugfixes

	* Include the patch for the tabsmenu extension in the tarball. (Christian)
	* Zoom now set also for newly opened tabs, and on crash recovery. (Christian)

=========================
Epiphany Extensions 0.2.1
=========================

What is it?
===========

A collection of extensions for Epiphany, the GNOME web browser.

What's New ?
============

New features:

	* Tabs Menu Extension:

	  This extension adds the following functionality to the tabs menu:
	  - Clone current tab
	  - Move current tab to a different window

	  Important!
	  You need to apply the supplied patch to epiphany
	  for this extension to work, see plugins/tabsmenu/README.

	* Zoom Persistence Extension:

	  Saves zoom levels per host, and restores them when you visit
	  a page on that host later again.


Code changes:

	* Gestures Extension:
	
	  Simplified the gestures xml file format.

New or updated translation:

	* de, en_GB, fr, ja (chpe)

======================
Epiphany Plugins 0.1.0
======================

First release