-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNEWS
5841 lines (4787 loc) · 197 KB
/
NEWS
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
==============
Epiphany 3.5.3
==============
Changes:
- Initial WebKit2 support!
This is still in the early stages of development, but the basic
functionality is already in place. It is under heavy development,
and the goal is to deliver a Beta quality version for 3.6. You can
follow the WebKit2 metabug:
https://bugzilla.gnome.org/show_bug.cgi?id=678610, and enable the
WebKit2 port passing "--with-webkit2" to 'configure' (disabled by
default).
- Improve fullscreen UI, and add support for HTML5 fullscreen
(#676905)
- Add support for 'Do Not Track', http://donottrack.us/
- Migrate profile directory to the XDG config directory
(~/.gnome2/epiphany -> ~/.config/epiphany) (#522810)
- Add new unit tests for EphyShell, EphySession,
EphyProfileMigrator, EphyWebAppUtils, ...
- Lots and lots of cleanups and other minor fixes.
==============
Epiphany 3.5.1
==============
Changes:
- Use the linked style class for the download bar (#672712)
- Use glib resources for the UI and CSS files
- Default to always restoring the last session on startup,
regardless of how epiphany was closed.
To go back to the old behavior (only restore the session when
epiphany crashes), or to choose the new option of never restoring
the old session, you can set
org.gnome.Epiphany.restore-session-policy. (#673453, #673122)
- Use intltool 0.50 (#672932)
- Improvements in the url entry layout (#672927)
- Fix stop/reload button misalignment when using custom font size
(#668135)
- New org.gnome.Epiphany.ui.tabs-visibility-policy setting. It's now
possible to always hide tabs.
- Consider email-type entries when doing login/password autocomplete
(#666326)
- Prioritize smart bookmarks URIs over normal URIs when exporting
bookmarks (#534565)
- Restore right-click/long press menus in back/forward buttons
(#671609)
===============
Epiphany 3.3.92
===============
Changes:
- Fail in application mode if we get a nonexistent profile (#669700)
- Add unit tests for EphyWebView (#669548)
- Open pages in a new tab on middle click for the history editor
(#671635)
- Set a max width the statusbar label (#671520)
- Automatically add file:// when existing absolute paths are typed
in the URL entry (#671792)
- Fix bookmarklet's titles when they are created (#672194)
- Replace the EphyFaviconCache with WebKit's favicon cache (#648653)
- Other bugfixes and cleanups.
===============
Epiphany 3.3.91
===============
Changes:
- The big change is that the history backend has been completely
rewritten. It now uses SQLite as the storage medium, and can keep
your browsing history indefinitely (so gone is the 10-day
limit). This has been an heroic team effort by Martin Robinson,
Claudio Saavedra and Xan López, so buy them a beer next time you
see them.
- Validate web applications before listing them in
about:applications (#669836)
- Fix loading of <IP>:<port> URIs (#669461)
- Fix loading of <domain>:<port> URIs (#670674)
- Add back the extensions menu (#669951)
- Many other small fixes and improvements.
===============
Epiphany 3.3.90
===============
Changes:
- Enable accelerators in the supermenu (#668325)
- Use the symbolic icon for the clear action in the search entry
(#669131)
- Convert web application names to the proper encoding before saving
them (#658028)
- Make the global menu work in private mode too (#669740)
- Several fixes for the web inspector (#669835)
- Other bugfixes and cleanups
==============
Epiphany 3.3.5
==============
Changes:
- Make about window modal again (#668113)
- Remove statusbar hits for menu actions (#668191)
- Support external protocols (apt://, magnet://, etc) properly
(#551857)
- Disable most menu actions in about:blank (#668105)
- Make the name 'Web' visible in more places (#666587)
- Stop shipping the bookmarks editor .desktop file
- Run all unit tests on 'make check'
- Restore <alt>+<number> accels for tabs (#668702)
- Add toggle to enable WebGL support, off by default
- *Lots* of cleanups and refactorings.
================
Epiphany 3.3.4.1
================
Changes:
- Remove Find Next/Previous from the super menu.
- Remove Print Preview and Print Setup from the super menu.
- Remove "Send link by mail..." from the super menu, move it to the
document context menu.
- Hide EphyWindow's titlebar when maximized.
- Fix crash when updating the EphyEmbed statusbar after dispose
(#668171)
==============
Epiphany 3.3.4
==============
Changes:
- Merge the stop/reload button with the location entry (#667176)
- Merge the back and forward buttons in a single button group (#666604)
- Use the Shell globalmenu for application actions when available
- Drop the menubar in favor of a supermenu a-la Chrome (#665479)
- Make sure to hide all chrome in application mode (#667634)
- Add mnemonics for password and recovery inforbars (#667238)
- Enable latest HTML5 fullscreen support (#665341)
- Make g_setenv calls early during startup to avoid threading race
conditions (#659145)
- Stop using gtk_button_{press,release} to fake middle clicks in the
toolbar buttons (#628364)
- Try to be smarter about the content type of downloads (#662059)
- Lots of other small fixes and cleanups
==============
Epiphany 3.3.3
==============
Changes:
- Combine the stop/reload buttons (#657655)
- Drop bookmarks/topics bar
- Properly save about: URIs in session (#664483)
- Use a vanilla GtkToolbar instead of an EggEditableToolbar (#664483)
- Use an overlay progressbar for the load progress (#665470)
- Use GtkOverlay for the statusbar (#653996)
- Kill right/left padding in the toolbar so that icons are
accessible from the edge of the screen (#665518)
- Use new-windows-in-tabs by default (#656091)
- Remove "Go" and "Tabs" menu
- Remove user visible concept of "homepage" (#665469)
- Remove the toolbar editor (#664260)
- Use uniform style for about: pages (#665136)
- Use GTK+ 3.0 icon names (#665170)
- Make sure WebApps are always shown in the shell (#664751)
- Use SoupSession:ssl-use-system-ca-file property instead of copying
the detection code (#633109)
- Never show tabs in application mode (#663668)
- Layout fixes for the properties dialog (#662252)
==============
Epiphany 3.3.2
==============
Changes:
- Use GNetworkMonitor to monitor network changes (#664096)
- Remove use of deprecated GTK+ APIs (#664120)
- Fix icon in PDM's "Clear All" button (#663159)
- Show the WebKit version in the about dialog
- Other minor fixes
==============
Epiphany 3.3.1
==============
Changes:
- Don't crash when NetworkManager is not available (#659103)
- Fix markup in in dialog string (#660749)
- Port from GtkTable to GtkGrid (#661347)
==============
Epiphany 3.2.0
==============
Changes:
- Translation updates.
===============
Epiphany 3.1.92
===============
Changes:
- Disable irrelevant actions in web app mode (#657624)
- Disable session resume in web app mode (#658739)
- Normalize web app profile directory and desktop file names (#658010)
- Remove G_DIRECTORY_SEPARATOR from web app names (#658028)
- Other fixes and cleanups.
=================
Epiphany 3.1.91.1
=================
Changes:
- Fix mistake in error pages.
===============
Epiphany 3.1.91
===============
Changes:
- Implement about:applications to manage Web Applications. This
should go away in 3.4 in favor of a GNOME-wide solution.
- Fix warnings when coming back from fullscreen (#657936)
- Hide irrelevant context menu actions when in app mode (#657624)
- Remove unneeded markup in glade files (#102382)
- Recursively delete temporary profile dirs (#658201)
- Improve messages in error pages (#637903)
- Fix error pages for RTL locales (#314205)
- Ask for confirmation before overwriting web applications (#658060)
===============
Epiphany 3.1.90
===============
Changes:
- Add support for saving web pages as standalone "Web Applications".
==============
Epiphany 3.1.5
==============
Changes:
- Use new symbolic icons for security status (#650789)
- Fix gir scanner invocation (#653031)
- Unescape tooltips in download widget (#653690)
- Fix "Browse to" in downloads (#651699)
- Clear finished downloads when closing downloads bar (#653918)
- Use a CSS file for styling (#644805)
- Many other fixes and cleanups.
==============
Epiphany 3.1.3
==============
Changes:
- Port to GtkApplication
- Do not use GNOME font settings as our default, just rely on more
generic system config ("sans", "serif")
- Port to GDBus
- Assume NetworkManager is present. This is not a hard dependency
since we only require it at runtime, as we use it through dbus.
- Fix "Use picture as background" (#647604)
- Implement a basic about:memory page with memory usage data
- Respect gtk-keynav-wrap-around in our page-change handler
- Fix removal of items by DnD in toolbar editor (#647265)
- Many other cleanup and fixes
==============
Epiphany 3.1.2
==============
Changes:
- Add an option in the chrome context menu to hide the menubar.
- Open new tabs to the right of the current one also for Ctr+Enter
(#647976)
- Use WebKit's internal source viewer by default (#597156)
- Drop yellow background in secure location entry and use symbolic icons.
- Add spell checking, enabled by default.
- Warn again about unsubmitted forms on close (#604986)
- Add about:plugins support (#575498)
- And lots of other bugfixes.
==============
Epiphany 3.0.0
==============
Changes:
- Use the system 'web-browser' high-res icon instead of our own
low-res version. (#645713)
- Use /org/gnome as starting path for schemas.
- Respect our documented special key values for the download dir
(#644641)
================
Epiphany 2.91.92
================
Changes:
- Fix pages opening in the wrong tab when a session has been
resumed. (#625116)
- Cleanups in autotools setup. (#609498)
- Other bugfixes.
==================
Epiphany 2.91.91.1
==================
Changes:
- Fix theming issues in the primary toolbar. (#644261)
- Remove minimum font size setting from the UI. (#644247)
- Use GNOME document font for the default font, instead of the UI
font. (#644521)
- Use Serif as default family instead of Sans Serif, like Every
Other Modern Browser Does(tm) (#644523)
================
Epiphany 2.91.91
================
Changes:
- The downloads UI has been totally revamped. It is very similar to
how Chrome works, and should fit much better in the overall GNOME
3.0 design (#618443)
- Add a border and some padding around the floating statusbar.
- Do a DNS prefetch on the completion items when the cursor is set
over them more than a 1/4th of a second. Should speed-up page
loading. (#606087)
- Other minor bugfixes.
================
Epiphany 2.91.90
================
Changes:
- Port statusbar to GeditOverlay; fixes a bunch of bugs and should
be more efficient.
- Group new tabs by default when opened from another page; this
obsoletes the tab-group extension.
===============
Epiphany 2.91.6
===============
Changes:
- Use libsoup's cache implementation instead of WebKit's, which has
been removed now.
===============
Epiphany 2.91.5
===============
Changes:
- Compilation fixes for GTK+ 2.99.0
- Fix potential dataloss in topic selection dialog (#518727)
- Fix color setting in location bar (#636501)
=================
Epiphany 2.91.4.1
=================
Changes:
- Various compilation fixes.
===============
Epiphany 2.91.4
===============
Changes:
- Blacklist Flash plugin, since it will just crash in our GTK+ 3.x
process.
- Use custom (and nicer) error pages (#592667)
- Fix minimum font size setting, add custom setting for font sizes
(#636761)
- Separate migration code into another binary, makes the main ephy
binary not link with NSS (#636685)
- Fix errors properly, particularly do not clobber the global error
state for errors not happening in the main frame (#623012)
===============
Epiphany 2.91.3
===============
Changes:
- Fix WebKitSoupCache size setup (#635066)
- Fix some leaks in the GObject DOM using code.
- Other small changes.
===============
Epiphany 2.91.2
===============
Changes:
- Get rid of the spinner in the toolbar, port tab spinners to
GtkSpinner (#524809, #598442)
- Enable web inspector unconditionally.
- Use full content zooming by default (#615362).
- Various cleanups and bugfixes.
===============
Epiphany 2.91.1
===============
Changes:
- Port to GSettings (##624485)
- Updated to use GTK+ 3.x (unconditionally) and
gobject-introspection 0.9.5.
- Use the geolocation support in WebKit (#626687)
- A ton of bugfixes.
===============
Epiphany 2.31.5
===============
Changes:
- Show All files in Save dialogs, not only "supported" ones (eg,
HTML).
- Fix epiphany .pc files to have the correct dependencies.
===============
Epiphany 2.31.4
===============
Changes:
- Port to GTK+ 3.x. GTK+ 3.x is now required to build, 2.x support
is dropped.
===============
Epiphany 2.31.3
===============
Changes:
- Remove encoding breaking translations of '...' strings (#613119)
- Fix URL entry eating up your manually entered URLs in some cases
(#620129)
===============
Epiphany 2.31.2
===============
Changes:
- Use an infobar to inform of session restoration instead of a modal
dialog.
- Show a dialog when F7 is pressed to enable caret browsing (#501666)
- Use a Chrome-like embedded statusbar and get rid of the traditional
one (#609713)
- Highlight matches when doing "Find again" in search bar (#611499)
- Refactor load status management in EphyWebView (#593743)
- Open URIs on a new tab when doing middle click in history items
(#611400)
- Re-enable favicons in entry completion (#616345)
- Change sensitiviness of back/forward buttons when clearing history
(#539716)
- Make sure we clear webkit's internal history when clearing the
history in Epiphany (#539716)
- Send 'Referer' on headers sent for context menu HTTP
downloads. (#136292)
- Fix leave-fullscreen button visibility (#611445)
===============
Epiphany 2.30.2
===============
Changes:
- Correct extensions dir definition in lib/ too.
===============
Epiphany 2.30.1
===============
Changes:
- Improve page print implementation (#609756)
- Ignore case of URL schemes (#605089)
- Check if URL is NULL before setting its history title (#582629)
- Fix crasher when pressing Up arrow twice (#599156)
- Look for extensions in the correct directory, using our API
version as versioning number.
=============
Epiphany 2.30
=============
Changes:
- Fix form-based login detection in many sites (#608740)
- Make sure we show notifications in all cases for downloads
(#611635)
- Various fixes to the migration code (#608687)
================
Epiphany 2.29.92
================
Changes:
- Fix shift+click being broken in input areas (#610844)
- Always use i18n'd Desktop and Downloads dir names (#610721)
================
Epiphany 2.29.91
================
Changes:
- Fix window moving and resizing through DOM methods, a.k.a. 'Fix
Browser Pong' (#604991)
- Show favicons instead of radiobuttons in the tabs menu (#405505)
- Replace 'Enable Java' preference (which wasn't working) with a
'Enable Plugins' preference (which works).
- Report broken SSL certs through the usual 'broken padlock' icon in
the URL entry (#600663)
- Make Ctrl+Shift+Click open links in a new window again (#604950)
- Lots of bugfixes and code cleanups.
================
Epiphany 2.29.90
================
Changes:
- Remove support for XML legacy format in extensions (#607881)
- Implement EphyEmbedPersist using WebKitDownload (#600987)
- Reimplement support for cookie acceptance policies (#607484)
- Change default toolbar layout to have just one toolbar (#412385)
- Reimplement print preview (#609021)
- A bunch of other small bugfixes.
===============
Epiphany 2.29.6
===============
Changes:
- Enable the webkit page cache by default; this should give a
noticeable to the back/forward page transition.
- Make text search more responsive by introducing a small delay
between a key stroke and the actual search. (#598322)
- A bunch of other small bugfixes.
===============
Epiphany 2.29.5
===============
Changes:
- Reimplement EphyEmbedSingle::handle-content signal, useful for
external download managers
- Add a gconf key (/apps/epiphany/general/url_search) to set the
default search engine. (#604087)
- Reimplement favicon support (#601859)
- Do not override page specific context menus with our own (#603326)
- Store all form auth data in GNOME Keyring, and ask the user to
remember and prefill new logins/passwords with an
infobar. (#582267)
- Reimplement EphyWebView::ge-feed-link, emitted when a feed link is
found in the view.
- Reimplement support for the 'Accept-Language' HTTP header
(##528893)
- Reimplement custom User Agent support, see commit e896b194fbff for
details (#580903)
- Reimplement support for window.close (#599009)
- Reimplement support for mime type safety check during downloads
(#605026)
- Reimplement EphyWebView::new-window signal, emitted when the view
opens a new window (like a JS window)
- Lots of bugfixes
===============
Epiphany 2.29.3
===============
Changes:
- Don't assume all seed extensions return an object as a value
(#599714)
- Fix refcounting of seed extensions (#599838)
- Provide the Inspect Element menu item in context menus again
(#599473)
- Many fixes to our gobject-introspection support (#599757)
- Disconnect dbus callbacks when disposing of the network monitor
(#572326)
- Only use the main frame to fetch the document type for pages
(#602400)
- Restore 'Close' and 'Help' buttons in dialogs (#590387)
- Fix auto-google search when using Ctrl-Enter (#603324)
===============
Epiphany 2.29.1
===============
Changes:
- Reimplement middle-click-to-open-clipboard-contents.
- Reimplement traditional epiphany context menu(s). (#562617)
- Reimplement Up arrow behavior (#595653)
- Make most of epiphany compile with sealed GTK+ structs (#595791)
- Prevent PDM from getting keyring passwords in private mode
(#591395)
- Take into account WEBKIT_LOAD_FAILED status for is_loading API.
- Depend on libtool 2.2 and dump dolt.
- Replace .glade files with .ui files natively instead of generating
.ui files at compile time from the .glade files. (#590387)
- Several fixes in the automatic search of url entry contents on
enter feature (#596717, #595690)
- Use new syntax for Seed imports (#598562)
- Add back support for javascript: and mailto: URIs
- Fix for Seed extensions preventing epiphany from shutting down
(#573551)
- Allow popups when the user asks for them (#528799)
- Refactor EphyShell lifetime tracking (#599348)
- Don't crash when detaching multiple Seed extensions (#599422)
- Reimplement type checking on downloads and "Open" dialog option
(#598167)
================
Epiphany 2.27.92
================
Changes:
- Import passwords from the gecko profile on first run. This adds a
dependency on NSS, which can be disabled with --disable-nss (but
then, of course, passwords won't be imported).
- Enable undo/redo on forms (#591072)
- Save session data more often to avoid data loss when crashing
(#593149)
- Reimplement direct search on the location bar (#583795)
- Do not save failed loads in history or show a valid security
status for them (#593200)
- Reimplement search by just pressing '/' (#587864)
- Fix .desktop file (#588979)
- Fix warning when loading NULL URIs (#593701)
- Reimplement view source functionality (#503968)
- Show initial request before the server responds to avoid empty
location entry (#591294)
- Reset font size with ctrl+0 from num block (#573624)
- Do not auto-shrink images, since ephy/gecko used to do that.
- Reimplement adblock support (#562762)
================
Epiphany 2.27.91
================
Changes:
- Use new keyring support in libsoup instead of the old webkit
session feature.
- Performance and functionality improvements for the find toolbar.
- Always show images in the bookmarks menu items. Makes them
re-appear after recent changes that set icons off by default in
menus for 2.28 (#588563)
- Update URL in entry when clicking on #anchors (#584506)
- Re-implement about:recover lookalike (#583953)
================
Epiphany 2.27.90
================
Changes:
- Port PDM's password viewer to gnome-keyring so that it works
again. (#579217)
- Fix address normalization when opening URLs from the command line.
- Fix spurious whitespace when hiding downloader status
icons. (#591189)
- Re-add the spinner so that we have some kind of progress
notification before we receive any response from the
server. (#585035)
- Workaround bug in WebKitGTK+ that made us never stop the progress
notification while loading in some pages. (#590170)
- Move default bookmarks to a separate RDF file instead of
hardcoding them. (#300190)
- Do not show about:recover URLs for now, since the service is not
implemented. (#583953)
===============
Epiphany 2.27.5
===============
Changes:
- Use the font families set in the GNOME preferences when possible.
- Fix opening multiple pages in a row from command line (#588143)
- Add several new mime types to the safe mime types list (#582905,#565346)
- Fix middle click on back/forward buttons (#583440)
- Recognize favicons with mime type image/vnd.microsoft.icon. Keep
in mind that favicons in general still do not work in
epiphany/webkit. (#578575)
===============
Epiphany 2.27.4
===============
Changes:
- Simplify widget hierarchy in EphyEmbed by removing a dummy GtkBin
layer. This fixes some focus problems.
- Various fixes for issues related to the recent refactoring of the
Epiphany internals.
- Bugfixes and performance improvements to the location/completion
code.
===============
Epiphany 2.27.3
===============
Changes:
- Preserve back/forward history when opening new tabs. (#583459)
- Preserve HTTP information (eg, referrer) when opening new tabs. (#120341)
- Strip superfluous whitespace from URLs before loading them. (#584466)
- Remove Python support for extensions, the only supported language
other than C/C++ is now JavaScript through Seed.
- Pretty large refactoring of internals: we now have a new
EphyWebView class, subclass of WebKitWebView, which holds most of
our extra methods/information that used to be in
EphyEmbed. EphyEmbed is no longer an interface, just a wrapper
that contains an EphyWebView and that properly sets it up. Since
there aren't any more interface classes to be implemented by
backends the webkit/ directory is gone, and all the code is now in
embed/.
===============
Epiphany 2.27.2
===============
Changes:
- Show link messages in a floating statusbar when the normal
statusbar is hidden.
- Fix opening links with target=_blank in a new tab with middle
click.
- Many download improvements and bugfixes.
- Use GNOME settings for default font sizes.
- Implement caret browsing mode (press F7 to activate).
===============
Epiphany 2.27.1
===============
Changes:
- Fix click-to-download.
- Require WebKitGTK+ 1.1.3 and libsoup 2.26.0, both with important
bugfixes.
===============
Epiphany 2.27.0
===============
The first release of the WebKit era.
- The only backend is now WebKit, Gecko support has been removed.
- Greatly improved entry completion.
- Progress indicator is now in the location entry, the one in the
statusbar has been dropped.
- Ported to GtkBuilder.
- Support for the WebInspector from WebKit, similar to Firebug.
- Support for Seed extensions.
- Allow to force new windows to be opened in tabs. Set the gconf key
/apps/epiphany/general/open_new_windows_in_tab to TRUE.
- Many, many bugfixes for the WebKit backend.
================
Epiphany 2.21.90
================
What's new in Epiphany 2.21.90?
- gnome-vfs was dropped, the gio port is completely functional, a few minor
bugs remain to catch and fix.
- location entry now searches inside bookmarks urls.
- avoid showing duplicate entries for bookmarks and history items in the
location entry.
- open externally opened links in current tab if it's blank.
- new "Reset Epiphany" dialog to clear history, cache and cookies
- history window now open links in new tabs
- history window groups hosts that only vary in the port
- restored gnome-session windows are now the correct size
- downloads now show notifications on start/finish when the download-dialog
is hidden
- it is now possible to middle click on a smart bookmark to have it search for
primary selection contents
- internal clean ups and minor fixes.
You can see a list of fixed bugs since 2.21.4 (since there were no NEWS for .5):
http://bugzilla.gnome.org/buglist.cgi?product=epiphany&bug_status=RESOLVED&bug_status=VERIFIED&bug_status=CLOSED&resolution=FIXED&chfield=resolution&chfieldvalue=FIXED&chfieldfrom=2007-12-16
===============
Epiphany 2.21.4
===============
A big refactoring of the Epiphany internals was done in order to achieve better
cross-engine support. It can be roughly separated in two chunks:
- EphyTab and its usage of GtkMozEmbed specific signals was transformed
into generic code under EphyBaseEmbed with backend-agnostic gobject-properties.
Backends are now encouraged to subclass EphyBaseEmbed and update its
properties to keep them in sync with the engine state. In turn, the browser
chrome will connect to the notify:: signals for the properties to update its
UI to reflect those changes.
- In some situations the embed/ code will need to know some specific details of
the fronted (for example, the active child among all the embed instances in the
popup management code). Instead of directly accessing the fronted, an generic
EphyEmbedContainer interface has been created, offering all the needed methods.
In Epiphany, this interface is implemented by EphyWindow.
Bug fixes:
* Add saved files to the GtkRecent list. Fixes Bug #148401.
* Make cursor be at the end of the URL when selecting entries from the
completion popup. Fixes bug #466344.
* Fix multihead problems in toolbar editor.
* Fix download-icon toolip updates. Fixes bug #343238.
* Default to Cancel on Cert dialogues. Fixes bug #163379.
* Remove "Add bookmark" and "Save as" from the document context menu.
Part of bug #332968.
* Fix completion model to show icons for history items too,
history/bookmarks/favicon_cache service objects are now stored in the
completion priv. Fixes bug #459811.
* Sets page header and footer margins to a reasonable value when printing.
Workaround for bug #346110.
* Adds a check for NULL pointer in ephy-session.c, fixing wrong behaviour when
restoring Epiphany in some cases. Fix for bug #488718.
* Updates to new NetworkManager API signals for status monitoring.
* Take the page orientation from the page setup, not from the print settings.
Bug #485670 (see also gtk+ bug #485685).
* Makes the Go button behaviour consistent with the "Enter" behaviour. Both
actions search for keywords or load the url. Fixes #484178.
* EphyContentPolicy::ShouldLoad: use the same content policy for
http and https, allowing adblock to work on https. Fixes bug #471583.
* Make Epiphany properly remember the last saved location in the FileChooser.
Fix for bug #336251.
* Make session recovery focus work properly and remember the active tab.
Fixes bug #317272.
* Fix disable_toolbar_editing lockdown not respected for Remove and Move
actions on toolbar buttons. Fixes bug #475641.
* Change the hint of the bookmarking properties dialog to DIALOG, instead
of NORMAL. Make bookmarking work in fullscreen mode and does not put
bookmark properties windows in the taskbar. Fixes bug #478928.
* Find toolbar now remembers last pattern searched also when opened with
slash or apostrophe. Fixes bug #343337.
* Add a somewhat tricky fix for url titles not visible on the completion
popup of the location entry when using a dark theme (like Darkilouche).
Fixes bug #446898.
* Private instances of Epiphany now remove the profile dir on exit.
Note that the profile dir won't be deleted if it's a custom path.
Fixes bug #329680.
* Make "Up" button dropdown menu show titles instead of URLs for already
visited pages. Fix for bug #323764.
* Remove ellipsis from View -> Page Security Information, as it does not
require further user interaction to complete. Fix for bug #483312.
* Hide Back/Forward buttons when disable_history lockdown key is enabled.
Fixes bug #394795.
* Add explanation label to "Only from sites you visit" radio button.
Fixes bug 493422.
Changes:
* Add accessibility theme icons for our apps icon.
* Enable printing to PDF file on gecko 1.9, now that moz#367907 is
fixed.
* Make 'Not found' on find toolbar temporarily bold and sounds the
bell signal when searching on a page and no results are
found. Fixes bug #363004.
* Makes tooltips for Back and Forward buttons display the titles of
relative pages. Fixes bug #341400.
* Add drag-and-drop of URLs onto "New Tab" and "New Window" buttons in
the toolbar. Fixes bug #382383.
* Add a broom icon in the search entry of the History window,
like in Bookmarks Editor. Fixes bug #476179.
* Use friendly display for mailto: links; shows a nice text in status bar
when hovering a mailto: link. Fixes bug #339161.
* Fix the build of the custom GTK+ filepicker. Add a preview for the
FileChooser. The default size is 150x150. Fixes bug #440859.
* Make the location entry completion cells smarter, now bookmarks take the
full width of the popup. Also make titles of history entries align
to the left so it's easier to browse a lot of entries with similar
titles. Almost-fixes bug #419475.
* Change the "Powered by" name in the About dialog according to the used
backend. Fix for bug #478196.
* Display "Execute script <title>" string as tooltip for bookmark action
instead of the whole javascript code when bookmarking a scriptlet.
Fix bug #492695.
* Update to latest EggToolbarEditor code.
This supports changing the editor's model during runtime and
tries to avoid some possibly leaking signal handlers.
Fixes bug #493149.
* Adds a column in the history window showing the date and the time of the
visit, substitutes radiobuttons with checkboxes in the View menu of the
window. Fix bug #380156.
* Enable a --with-distributor-name configure option, defaulting to Epiphany.
Use it on an error page to designate the distributors/developers to
contact. Fixes bug #433796.
* Add a "Remove all" button to the Personal Data Manager for both the
cookies and the passwords. Addresses bug #148314.
* Fix a bug in EphyNodeView which caused problems when setting columns
as resizable; thanks to Kristian Rietveld for finding out the cause.
Make history window columns resizable and bookmarks editor columns
resizable and sortable. Fixes bug #132808.
Contributors to this release:
Cosimo Cecchi, Dale Parquette, Leonardo Boshell, Djihed Afifi, Matthias Clasen,
Christian Persch, Diego Escalante Urrelo, Josselin Mouette, Cyril Brulebois,
Imran Patel, Carlos Garcia Campos, Xan Lopez, Nicholas E. Manley, Alp Toker,
Michael Monreal, friemann, Ed Catmur, Reinout van Schouwen,
Jan Michael Alonzo
Translations:
Hendrik Richter, iharh, gforcada, Claude Paroz, frolix68, ituohela, Changwoo Ryu,
Luca Ferretti, ifelix, Priit Laes, jorgegonz, ankitp, Kjartan Maraas, dnylande,
Takeshi AIHANA, Leonardo Ferreira Fontenelle, snavin, Sunil Mohan Adapa,
Inaki Larranaga Murgoitio, ssato, stephaner, Adam Weinberger, Artur Flinta,
raphaelh, ymarcheg, Gabor Kelemen, Duarte Loreto, zygis, fwang, Clytie Siddall,
icq, Jan Arne Petersen, Maxim Dziumanenko, Jonh Wendell, Robert-André Mauchin,
Cyril Brulebois, zyang, Youssef Chahibi, yairhr, mateju, iharh, Ivar Smolin,
Alexander Shopov, Ignacio Casal Quinteiro, cwryu, Djihed Afifi, Vasiliy Faronov
===============
Epiphany 2.19.6
===============
The most important change in this release is obviously that an experimental
WebKit back-end was added by Xan Lopez. Read all about it here:
http://blogs.gnome.org/xan/2007/07/17/epiphany-webkit/
Furthermore, we have been joined by Cosimo Cecchi who contributed a lot of
small but not less important gnome-love bugfixes!
Changes:
* Add support for the WebKit engine, compile with --with-engine=webkit
to activate
* #162489: Added a checkbox for smooth scrolling.
* String changes based on user feedback:
- "Local sites" -> "Nearby sites" (because it is a
better description)
- Drop the "Quick" prefix from Topic/Bookmark items in
toolbar editor, because it has no function besides
confusing users.
* We now use g_get_user_special_dir to get the Desktop and Downloads
directory location
* Use the new gtk functions to persist and load the print settings and
page setup. Migrate our old settings, if present.
* All tooltips are now creatd using the new GTK tooltips API.
Bug fixes:
* #459552: Improve the restricted ports message
* #448610: Make the status icon clickable so it shows/hides
the download window, works across workspaces
* #318947: Update tab title when the statusbar text is updated,
so we don't have out of sync messages
(like "Loading <page-you-were-before>")
* Misc: #461689, #433173, #313636, #410223, #385872, #452707, #347637,
#450904
Contributors to this release:
Diego Escalante Urrelo, René Stadler, Xan Lopez, Carlos Garcia Campos,
Reinout van Schouwen, Cosimo Cecchi, Kraai, Wouter Bolsterlee,
Christian Persch, Nguyễn Thái Ngọc Duy, Luca Ferretti
Translations: