-
Notifications
You must be signed in to change notification settings - Fork 51
/
NEWS
8429 lines (6981 loc) · 303 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
47.2 - October 22, 2024
=======================
* Fix crash loading Global Protect URL (#2490)
* Fix Privacy Report dialog when no trackers are blocked (#2495, Automeris naranja)
* Fix crash loading taobao.com (#2500, Alynx Zhou)
* Disallow duplicate tag widgets on bookmark edit dialog (#2503, ARAKHNID)
* Add workaround for DuckDuckGo redirect service failure (!1654, two)
47.1 - October 14, 2024
=======================
* Allow adding bookmarks in incognito mode (#1250)
* Disable tab navigation shortcuts in tab overview (#2148, Arak)
* Don't store page snapshots in web app mode (#2442, Arak)
* Fix ephy-about suggestions not using pretty URL (#2451, Arak)
* Fix crash in save password popover (#2464)
* Fix crash when opening multiple preferences or history dialogs (#2468, Arak)
* Fix crash when long pressing page (#2477)
* Fix target origin property when using CSV password import (#2479, Harshavardhan Navalli)
* Add tooltips to bookmarks tag rows (#2480, Arak)
* Fix crash in history dialog (#2488, Arak)
* Improve certificate selection dialog (!1625)
* Fix non-translatable strings in autofill preferences (!1628, Aleksandr Melman)
* Stop setting web view background color (!1630)
* Fix failure to unregister autofill message handler (!1635)
47.0 - September 12, 2024
=========================
* Fix crash when using Ctrl+D or Ctrl+Alt+D (#2435)
* Fix icon URL used for install web application dialog (#2436)
* Remove tab overview shortcut in web apps (#2443, Arak)
* Fix crashes in tab overview mode with no open tabs (#2448)
* Fix pluralization in privacy report dialog (#2454)
* Fix bookmark tag widget focus border (!1618, Arak)
* Revert key event handling changes due to problems with non-Latin keyboard layouts (!1620)
47.rc - August 30, 2024
=======================
* Extract .xpi during web app installation (#1818)
* Show confirmation dialog when deleting web app (#2077, Arak)
* Allow exporting passwords to CSV and improve CSV import (#2184, Harshavardhan Navalli)
* Improve count of trackers in privacy report (#2419)
* Fix crash on close multiple tabs dialog (#2426)
* Many improvements to bookmarks sidebar and dialog
(#2406, #2416, #2420, !1589, !1592, !1594, !1595, !1596, !1597,
!1598, !1599, !1600, !1602, !1605, !1606, !1607, !1608,
Arak, Automeris naranja, Hari Rana)
47.beta - August 2, 2024
========================
* Add autofill support (#199, based on work by Abdullah Alansari)
* Add bookmarks search bar (#332, !1571)
* Improve sorting of bookmarks (#390, #2359, #2378, Arak)
* Restore set image as wallpaper functionality under flatpak (#1198, based on work by Vanadiae)
* New Window should always open a non-incognito window (#1758, Arak)
* Prompt for confirmation when installing a WebExtension (#1817)
* Add Ctrl+Shift+Delete shortcut for Clear Website Data (#1921, Arak)
* Add Privacy Report feature (#1982) and improve its UI (!1546, Automeris naranja)
* Use GtkGraphicsOffload to maybe improve graphics performance in fullscreen mode (#2274, #2417)
* Replace bookmark properties popover with redesigned dialog (#2327, !1572)
* Disable Firefox Sync (#2337)
* Don't show reader mode button when page is loading (#2338)
* Revert address bar UI changes due to pango bug (#2376)
* Fix application mode when always start in incognito mode setting is enabled (#2380, Christopher Davis)
* Don't warn about failure to download favicon when creating web app (#2383)
* Fix crash when starting secondary instance (#2384)
* Fix crash when web process becomes unresponsive (#2386)
* Fix crash when closing window with context menu open (#2389)
* Fix crash on exit (#2404)
* Allow overriding fatal criticals using G_DEBUG= environment variable (!1513, Christopher Davis)
* Fix hiding of developer context menu actions (!1515, Vitaly Dyachkov)
* Fix a different crash when destroying window (!1516)
* Stop using various deprecated GTK APIs (!1519, !1532, !1533)
* Support importing passwords from CSV files (!1521, Harshavardhan Navalli)
* Reduce the size of the preferences dialog (!1529)
* Use modern libadwaita spinners (!1537, Dexter Reed)
* Fix yet another crash when destroying window (!1538)
* Improve autofill dialog UI (!1539, Automeris naranja)
* Update to highlight.js 11.10.0 (!1541)
* Miscellaneous code robustness improvements (!1543)
* Load only one web process extension rather than two (!1544, based on work by Patrick Griffis)
* Add fallback web app icon (!1545)
* Redesign the bookmarks UI to use sidebar instead of popover
(!1547, !1565, !1573, !1578, !1580, !1581, #2401, #2405, #2408, #2410, #2412)
* Rearrange the window/hamburger menu (!1549, !1564, !1566)
* Adopt new floating bar style from nautilus (!1552, lo)
* Focus address bar after deleting URL (!1553)
* Reenable search in preferences dialog (!1554)
* Make address bar dropdown suggestions selectable (!1558)
* WebExtensions: support runtime.getManifest() API (!1560)
* Modernize encoding dialog (!1563)
47.alpha - June 29, 2024
========================
* Add preference to toggle navigation gestures (#1784)
* Fix about:overview improperly shown in address bar (#1918, Vitaly Dyachkov)
* Set brightness and contrast for dark reader mode (#2178)
* Add Not Now option to save password popover (#2291)
* Disable Home/End shortcuts in tab bar (#2296)
* Add delete action to text box context menu (#2318, Harshavardhan Navalli)
* Add additional debug info to about dialog (#2352, Harshavardhan Navalli)
* Don't display placeholder text in address bar when unfocused (#2372)
* Enable fatal criticals (!1377, !1488)
* Add Clear button to location entry (!1446, !1483)
* Fix set as default browser dialog in phosh (!1468, Guido Günther)
* Improve UI of preferences dialog (#2325, kramo) (and !1472, Jamie Gravendeel)
* Improve UI of about dialog (!1475, Jamie Gravendeel)
* Improve UI of history dialog (!1476 and !1507, Jamie Gravendeel) (and !1490, Dexter Reed)
* Improve UI of certificate dialog (!1490, Dexter Reed)
* When not focused, display hostname centered in address bar (!1493, kramo)
* Always enable web inspector keyboard shortcut (!1494)
* Update use of libadwaita dialogs (!1504)
46.2 - June 29, 2024
====================
* Improve robustness of password manager (!1495)
* Fix crash when main resource response isn't ready yet (!1503)
46.1 - May 29, 2024
===================
* Properly remember window size (#525)
* Fix "sync secrets for the current sync user are invalid" (#1361)
* Fix retrieving web app icon from web app manifest (#2118, #2297, !1473)
* Don't delay internal Epiphany pages on adblocker initialization (#2267)
* Fix inability to open custom JS or stylesheet (#2301)
* Fix sync service criticals when glib-networking is not installed (#2320)
* Fix WebExtension accelerator parsing (#2331)
* Fix critical when creating a duplicate notification (#2344)
* Fix crash on exit when tab sync is enabled (!1463)
* Fix set as default browser dialog under phoc (!1468)
* Fix failure to save session state when it would contain a blob URL (!1470)
* Fix web app provider crash when user data directory is empty (!1477)
* Hide broken close context menu item on pinned tabs (!1482)
* Updated translations
46.0 - March 15, 2024
=====================
* Improve keyboard navigation of address bar dropdown (#1726, Markus Göllnitz)
* Add "Send Link by Email..." to context menu for links (#2037, Leon Marz)
* Use selected text when middle clicking on New Tab button (#2159)
46.rc - February 29, 2024
===========================
* Close security popover after selection (#2215)
* Focus location entry on search hotkey (#2278)
* Close page menu popover on print, search and fullscreen actions (#2283)
* Forward key events directly to web view (#1915) (#2173)
* Updated translations
46.beta - February 10, 2024
===========================
* Fix a crash (#2021)
* Allow closing pinned tabs (#2264)
* Adjust labels to improve HIG compliance (!1431, Bart Gravendeel)
* Support PKCS #11 smart card authentication (!1433)
* Updated translations
46.alpha - January 5, 2024
==========================
* Use web app manifest to get better app name and icon (#931)
* Prevent websites from using certain Epiphany internal APIs (#1664)
* Fix poor Firefox Sync error message when gnome-keyring is not installed (#1755)
* Reduce adblock filter update interval on metered connections (#2152)
* Rename Firefox Account to Mozilla Account (#2231)
* Hide various context menu items when text is selected (#2258)
* Remove Google Safe Browsing support due to terms of service changes (!335)
* Hide developer context menu actions by default (!1392, Vitaly Dyachkov)
* Update to highlight.js 11.9.0 (!1394)
* Use AdwSpinRow in preferences dialog (Pig, !1411)
* Many improvements to appstream metainfo (Sabri Ünal, !1398, !1399, !1414, !1422, !1425)
* Updated translations
45.2 - January 5, 2024
======================
* Fix encodings test to not depend on system locale (#1842)
* Revert fix for URLs not found when searching history because it broke search for page titles (#2229)
* Fix sync service error leak (!1412)
* Fix user help not opening (!1420)
* Fix memory corruption caused by ephy_string_shorten() (!1423)
* Updated translations
45.1 - November 6, 2023
=======================
* Fix URLs improperly not found when searching history (#2103)
* Normalize text when middle clicking new tab button (#2160)
* Fix critical when deleting bookmark tags (#2180)
* Fix crash when dropping URLs onto Open Tabs view (#2211)
* Fix window leak when installing web apps (#2214)
* Update AdGuard YouTube ad blocker (!1396)
* Fix memory leak when creating web apps (!1400)
* Fix crashes related to WebExtensions (!1404 and !1407, Kdwk)
* Updated translations
45.0 - September 15, 2023
=========================
* Fix password manager JS error on certain websites (#2114)
* Fix windows detached from tab bar not being destroyed properly (#2130)
* Fix spinners not running properly when restoring tabs (#2143, two)
* Fix keyboard navigation in bookmarks popover (#2145, two)
* Ctrl+Shift+o shortcut now toggles tab overview instead of only opening it (#2147, Matty Randazzo)
* Fix untranslatable strings (not yet translated) (#2151)
* Fix window restored at incorrect size (#2158, two)
* Fix crash when closing last tab while displaying tab overview (#2161)
* Assert shell and all windows are destroyed (#2170)
* Fix changes to bookmarks not being saved (#2179)
* Improve URL bar padding in mobile mode (!1373)
* Don't force OpenURI portal to always display its user interface (!1387)
* Updated translations
45.beta - July 28, 2023
=======================
* Hide Sync Now button when Firefox Sync is disabled, avoiding crash (!1358)
* Don't try to restore window position from session (!1359, !1364, two)
* Don't show spinner on placeholder tabs after session is restored (!1371, two)
* Hide "Search the Web for" context menu item in web app mode (#2097, Cleo Menezes Jr.)
* Fix Save Password? permission requests, broken since 44.4 (#2113)
* Fix unencoded % characters in URLs causing session to fail to save (#2128, Vanadiae)
* Fix web views not being destroyed when window is closed (#2130)
* Hopefully fix crash in ephy_sqlite_connection_create_statement (#2132)
* Updated translations
45.alpha - June 29, 2023
========================
* Fancy new tab overview replaces the tab list dropdown (!1190)
* Use newer libadwaita and GTK APIs (!1302, !1306, !1311, !1338, !1353, !1355)
* Use header capitalization for buttons on Firefox Sync dialog (!1318)
* Temporarily remove the bookmarks sync feature due to issue #1118 (!1321)
* Update to highlight.js 1.8.0 (!1325)
* Support clipboard access permission request (!1327)
* Clarify storage access and save password permission prompts (!1328, !1336)
* Make address bar dropdown use full screen width in narrow mode (#1978)
* Allow New Window action in web app mode (#2009, two)
* Hopefully speed up loading bookmarks popover (#2091, two)
* Updated translations
44.4 (sorry, tetraphobiacs) - June 29, 2023
===========================================
* Bring back URL scheme in address bar, fixing incorrect URLs loaded in narrow mode (#2085)
* Fix duplicate permission requests (#2088)
* Fix changing web app title and URL with preferences dialog (#2089)
* Fix failure to create web app when no icon or favicon is available (#2100)
* Fix address bar stealing mouse clicks (!1348, Vitaly Dyachkov)
* Fix broken Mute Tab context menu item (!1354)
* Fix critical when creating WebExtension web view (!1356)
44.3 - May 25, 2023
===================
* Fix failure to create web applications (#1989)
* Fix crashes when using bookmarks popover (#2055)
* Fix storage access (Intelligent Tracking Prevention) permission requests (#2065)
* Remove Purism metadata from appdata file (!1326)
* Updated translations
44.2 - April 20, 2023
=====================
* Fix invalid characters in screenshot suggested filename (#2013, Cleo Menezes Jr.)
* Relocate and fix Sync Now button in Firefox Sync dialog (#2042)
* Fix crash when closing window and discarding modified forms (#2043)
44.1 - April 2, 2023
====================
* Fix crash restoring session with view-source URI without host component (#1987)
* Fix criticals when running search provider (#2006)
* Increase file descriptor soft limit (#2010)
44.0 - March 17, 2023
=====================
* Fix web app creation (#1989)
* Build against WebKitGTK 2.39.91 (!1295)
* Updated translations
44.rc - March 3, 2023
=====================
* Fix password popover crash when username is empty (#1976)
* Fix criticals from EphySuggestionModel (#1977)
* Fix warning when WebExtensions directory is empty (#1984)
* Handle WebKitGTK 2.39.90 API changes (!1281, !1294)
* Reimplement elementary OS support (!1292)
* Revert "add preference to set new tab page" (!1293)
* Updated translations
44.beta - February 11, 2023
===========================
* Add preference to set new tab page (#1569)
* Reduce history window size (#1705, sunflowerskater)
* Implement more of browserAction WebExtension API (!1148)
* Add toast for switch to new tab in narrow mode (!1238)
* Handle various changes in GTK, WebKitGTK (!1261, !1262, !1266, !1269, !1273, !1283)
* Replace info bars with popovers, dialogs, banners (!1265, Jamie Murphy)
* Improve tooltip text for add/remove bookmark button (!1271, Gotam Gorabh)
* Search entry and address bar are accessible again (!1274, !1276)
* Don't autofill passwords in sandboxed contexts (!1275)
* Replace tab menu with AdwTabButton (!1279)
* Many address bar behavior fixes (!1282)
* Updated translations
44.alpha - January 5, 2023
==========================
* Epiphany now uses GTK 4, libadwaita, and webkitgtk-6.0
(!1073, !1203, !1209, !1210, !1221, !1222, !1225, !1226, !1227, !1229, !1230, !1231, !1233, !1254, !1255)
* Avoid deprecated GTK APIs (!1232, !1233, !1236) (!1244, Christopher Davis)
* Reduce height of preferences window (#1705)
* Hide bookmark star in application mode (#1811)
* Say "Force Stop" rather than "Kill" (#1849, Cassidy James Blaede)
* Remove unreachable libsoup 2 code (#1892, Lukáš Tyrychtr)
* Use AdwAboutWindow for about dialog (#1898, Przemyslaw Gorszkowski)
* Fix crash on malformed ephy-tab:// URI (#1907)
* Fix JS errors in about:overview (#1914, #1917)
* Properly encode URIs when copied from address bar (#1930)
* Bookmarks popover now uses AdwStatusPage (#1931, sunflowerskater)
* Always show Mute Tab in context menu (#1934)
* Hide address bar URL scheme in narrow mode (!996)
* WebExtensions: Implement support for special shortcut commands (!1186, Jamie Murphy) (!1198)
* Remove custom desktop notification implementation (!1187)
* Fix some memory leaks (!1193)
* Update icons (!1194, Sam Hewitt)
* Add "epiphany" keyword to desktop entry (!1195, Hari Rana)
* WebExtensions: Redesign Browser Actions to have a flexible presentation (!1199)
* Add WebExtensions preferences (!1207, Jamie Murphy)
* Improve confusing code layering (!1208, Vanadiae)
* Accept single-label hostnames in URIs (!1223)
* Update to highlight.js 11.7.0 (!1224)
* Add Ctrl+comma shortcut to open preferences (!1234, Sabri Ünal)
* Use terminology "web app" rather than "web application" (!1237, Jake Dane)
* Duplicate tab when middle clicking on Refresh button (!1240, two)
* Tweak tooltips to follow HIG (!1242, sunflowerskater)
* Fix issues found by Coverity (!1256, !1257)
* Updated translations
43.0 - September 15, 2022
=========================
* Updated translations
43.rc - September 1, 2022
=========================
* Use internal copy of bookmarks icons instead of system version (!1185)
* Fix various issues when closing tabs (!1188)
* WebExtensions: Fix crash when failing to get translated string (!1189)
* Fix loss of tab history if placeholder page is not removed (!1191)
43.beta - August 5, 2022
========================
* WebExtensions: set Content Security Policy (#1777)
* Fix crashes and misbehavior when importing bookmarks (#1800)
* Remove PDF.js, moved to WebKit (!1113)
* WebExtensions: implement commands API (!1165, !1171, !1172, Jamie)
* WebExtensions: allow web inspector on background pages (!1169)
* WebExtensions should not use separate network processes (!1170)
* WebExtensions should use sandbox (!1170)
* WebExtensions should not receive hardware acceleration (!1170)
* Update to highlight.js 11.6.0 (!1173)
* Add Take Screenshot to context menu (!1176, !1181, Cleo Menezes Jr.)
* Preferences: do not show search suggestions in web app mode (!1178)
* Fix desktop notification priority (!1179)
43.alpha - July 8, 2022
=======================
* Major rearchitecting of WebExtensions, including many new APIs
(#1442, #1448, #1449, #1754, #1790, #1796, #1804, !1111, !1114, !1116, !1117, !1118, !1119,
!1120, !1122, !1123, !1125, !1130, !1132, !1135, !1136, !1137, !1138, !1139, !1140, !1141,
!1142, !1143, !1145, !1146, !1150, !1152, !1153, !1154, !1156, !1157, !1158, !1159, !1160,
!1161)
* Add favicons to history dialog (#1682)
* Fix critical errors when loading malformed session state (#1686)
* Remove accelerator to open web app manager (#1697)
* Fix reader mode crash when JavaScript is disabled by Content Security Policy (#1698)
* Fix Epiphany icon in system sound settings (#1716)
* Several fixes for downloads (#1712, #1733, #1746, #1747, #1748, #1803)
* Support view-source: URI scheme (#1764)
* Fix empty tmp directories after running custom profiles (#1768)
* Improve reader mode stylesheet (!1044, Sam Hewitt)
* Revamped web app support, including new D-Bus provider (!1067, !1098, Phaedrus Leeds)
* Preparatory refactorings for GTK 4, and miscellaneous improvements
(!1072, !1074, !1075, !1081, !1085, !1089, !1090, !1096, !1099)
* Fix non-internationalized string on synced tabs dialog (!1078)
* Update to PDF.js 2.13.216 (!1082)
* Fix encodings test (!1083)
* Fix broken link in README (!1086, Lillie Rugtveit)
* Update to highlight.js 11.5.0 (!1088)
* Improve description of search-engine-providers setting (!1091, Vanadiae)
* Fix blurry favicons on hidpi (!1101)
* Password manager should not print warnings when operation is cancelled (!1109)
* Rename "Personal Data" dialog to "Website Data" (!1127)
* New build requirements: libsoup-3.0, webkit2gtk-4.1
42.3 - July 8, 2022
===================
* Fix crash when deleting all passwords (#1773)
* Fix memory corruption caused by Sync failure (!1115)
42.2 - April 21, 2022
=====================
* Fix Save As context menu items (#1760)
* Fix CVE-2022-29536 (#1766)
42.1 - April 12, 2022
=====================
* Fix regressions in "ask on download" dialog (#1747, #1749)
* Fix bookmarks tag label alignment (from !1074)
* Fix blurry favicons in bookmarks popover (!1101)
42.0 - March 17, 2022
=====================
* Fix crashes when loading broken session state (#1686)
* Fix crashes when entering reader mode with JS disabled (#1698)
* Rework search engine manager code (!1055, Vanadiae)
* Fix various memory leaks (!1071)
* Fix icons on Synced Tabs dialog (!1077)
* Update appdata screenshot (!1079, Sophie Herold)
* Updated translations
42.beta - February 11, 2022
===========================
* Update to latest readability.js (!1048)
* Fix label for Show downloads list shortcut on shortcuts dialog (!1054, Vanadiae)
* Update to highlight.js 11.4.0 (!1056)
* Update to PDF.js 2.12.313 (!1057)
* Fix handling of mailto: URIs with multiple emails (!1065, Vanadiae)
* Don't depend on web-browser-symbolic icon (!1069, Vanadiae)
42.alpha - January 6, 2022
==========================
* Rename metainfo from "GNOME Web" to "Web" (!1016, Sophie Herold)
* Update to PDF.js 2.11.338 (!1017)
* New network error icon (!1018, Jakub Steiner)
* Support system dark preference (!1019, !1029, !1030)
* Leak fixes (!1020), more leak fixes (!1042, Phaedrus Leeds)
* Update to highlight.js 11.3.1 (!1022)
* Enable accelerated compositing mode always (!1028)
* Fix build with meson 0.60.0 (!1031, rvalue)
* Many cleanups in preparation for GTK 4 (!1034, !1035, !1038)
* Web app delete button is now red (!1040)
* Detect Snap sandbox (!1041, Phaedrus Leeds)
* Cleanup icons (!1043, Sam Hewitt)
* Allow opening URIs via desktop actions (!1049, Sonny Piers)
* Port to libportal 0.5 (!1051, Patrick Griffis)
* Various search engine fixes (!1052, Vanadiae)
41.3 - December 20, 2021
========================
* Fix Reload buttons on error pages (!1050)
* Fix delete button in about:applications (!1050)
41.2 - December 16, 2021
========================
* Fix reader mode (!1047)
41.1 - December 16, 2021
========================
* Fix crash opening PDFs not loaded via HTTP (#1611)
* Fix CVE-2021-45085, CVE-2021-45086, CVE-2021-45087, CVE-2021-45088 (#1612)
* Fix web applications with non-Latin characters (#1626, #1627)
* Fix close button position in Firefox Sync dialog (#1647)
* Properly quote desktop file Exec line (!1013, Martin Puppe)
* Somewhat improve password manager robustness (!1014)
* Use correct tab close button position (!1025)
* Various fixes for Firefox bookmark import (!1036)
41.0 - September 16, 2021
=========================
* Fix several icons broken after updating PDF.js (#1593)
41.rc - September 2, 2021
=========================
* Ask user whether an unresponsive page should be killed (#1561, #1583)
* Fix crash when using Clear All passwords action (#1570)
* Fix missing security padlock after using reader mode (#1580, #1584)
* Update to highlight.js 11.2.0 (!1005)
* Disable captive portal helper under Pantheon desktop (!1006, Cassidy James Blaede)
* Disable system scrollbars when using Adwaita theme (!1007)
41.beta - August 12, 2021
=========================
Change of plans regarding libsoup-3.0 and webkit2gtk-4.1! We will enable these
by default in Epiphany 42 instead. Until then, back to libsoup-2.4 and
webkit2gtk-4.0 for now (!992).
* Fix inconsistent capitalization in preferences (#1054)
* Use PDF.js only for GET requests (#1505)
* Always save pinned tabs in session (#1508)
* Use AdGuard script to block YouTube ads (#1534)
* Manually check adblock filter content type (#1543)
* Fix UI process CPU usage issue (#1560)
* Update to PDF.js 2.10.377 (!975)
* Use real buttons in address bar (!977, Vanadiae)
* Move bookmark button to bottom bar in narrow mode (!979)
* Update to highlight.js 11.1.0 (!986)
* Don't improperly lowercase bang searches (!988, Vanadiae)
* Support Epiphany Canary builds (!989, Philippe Normand)
* Don't open empty bookmarks or downloads popover (!990, Vanadiae)
* Adjust unresponsive process killer to be less aggressive (!994)
* Various code cleanups (!973, !987, !995)
41.alpha - July 2, 2021
=======================
Epiphany now depends on libsoup-3.0 and webkit2gtk-4.1 by default (!921, !957).
If you're not yet ready for this, you can build with -Dsoup2=enabled for now,
but we'll probably remove this fallback pretty soon. libsoup-3.0 and
webkit2gtk-4.1 add support for HTTP/2.
* User smaller address bar font in narrow mode (#1172)
* The address bar dropdown now supports various useful filters (#1461)
* Move Firefox Sync to toplevel window menu (#1470)
* Update to highlight.js 11.0.0 (#1480, #1501, !966, Jim Mason)
* Highlight base domain in address bar (#1540)
* Use actual reader mode fonts in preferences dialog (!912)
* Update to PDF.js 2.6.347 (!924)
* Minimize delays when toggling fullscreen mode (!939)
* Use French quotes in St-Exupéry quotation (!950, Guillaume Bernard)
* Fix various small memory leaks (!958)
* Kill web process when it is unresponsive for too long (!965)
* Add new keyboard shortcuts (!969, Vanadiae)
* Improvements to bookmarks properties view (!978, Vanadiae)
* Display WebKit Subversion revision for non-tarball builds (!982, Philippe Normand)
40.2 - June 4, 2021
===================
* Fix some memory leaks (from !958)
* Fix memory corruption in history dialog (!960)
* Fix crash when checking for modified forms (!962)
40.1 - April 29, 2021
=====================
* Allow launching external URLs when triggered by user action (#1385)
* Fix untranslatable string in security popover (#1478)
* Improvements to user help (Andre Klapper, #1481)
* Stop advertising support for XML files (#1487)
* Fix hidden expand-tabs-bar setting (#1512)
* More improvements to user help (Sabri Ünal, !935)
* Several improvements to fullscreen mode (!938)
* Remove bad assert added in 40.rc (!941)
* Fix crash importing bookmarks from Firefox (!949)
40.0 - March 19, 2021
=====================
* Updated icon in user help (!930, Sabri Ünal)
* Many updated translations (thank you!)
40.rc - March 12, 2021
======================
* Close history when Escape is pressed (#728)
* Fix potential loss of session state when web process is unresponsive (#1445)
* Icons in page popover have a wrong scale after changing scale factor (#1450)
* Crash switching to the second page of keyboard shortcuts (#1452)
* Fix language preferences (#1456)
* Dismiss search bar when Escape is pressed (#1463)
* Fix overaggressive adblocker (#1467)
* Avoid adding ephy-pdf: URIs to history (!923)
* Fix clicking links beneath floating status bar (!925)
40.beta - February 11, 2021
===========================
* Remember previous settings in Clear Personal Data dialog (#328)
* Allow exporting bookmarks as HTML (#483)
* Remove smooth scrolling preference. Smooth scrolling is now always enabled (#802)
* Update user help for new preferences dialog navigation (#1263, Federico Bruni)
* Rename mobile-capable setting to show-navigation-buttons (#1300)
* Update gvdb (#1038)
* Fix crash when Firefox Sync token is invalid (#1342)
* Fix floating bar blocking links on bottom of page (#1368)
* Disable application manager in app mode (#1405)
* Fix certain searches being converted into invalid addresses (#1418)
* Add experimental support for a few WebExtensions APIs (!866, !898, !899, !901, !904, !910, #1436, #1437)
* Several improvements to search engine configuration (!872, #1430, Vanadiae)
* Fix state issues with the back/forward buttons (!873, Elias Projahn)
* Add preference to enable Google search suggestions (!883)
* Select pre-filled search text in search entry (!887, Benjamin Berg)
* Improve construction of web app titles (!888, Sonny Piers)
* Use eslint and run it on CI (!890, Sonny Piers)
* Fancy new tabs bar! (!814, !892, #1444)
* Several UI improvements for the tabs list popover (!893, !895)
* Remove preference to adjust position of tabs bar (!894)
* Stop spinners when not visible (!905)
* Update to highlights.js 10.6.0 (!906)
* Improve empty states of various widgets (!909, Christopher Davis)
40.alpha - January 7, 2021
==========================
The Safe Browsing phishing protection feature is now disabled by default (#682)
to comply with changes to Google's terms of service, which now prohibit
inclusion of API keys in open source projects. You may provide your own Google
API key to enable this feature using the -Dgsb_api_key build option at your own
risk. Most Linux distributions will be unable to do this without similarly
violating Google's terms of service, since it would require some way to inject
a secret into the build. Most distributions include a Google API key in Firefox
or Chromium packaging in apparent violation of the new terms of service; such
distros may consider using the same key for Epiphany as well. Epiphany
Technology Preview is built using a secret API key. Flathub builds will likely
have Safe Browsing disabled.
* Replace seach engine dialog with a listbox (#441, #631, Vanadiae)
* Firefox Sync dialog is no longer modal (#468)
* Fix primary menu popover changing size (#953)
* Visit most recently-viewed tab with Alt+0 (#1050)
* Fix hidpi favicons (#1298)
* Allow history dialog to grow wider (#1354)
* Remove Reopen Closed Tab from tab context menu (#1371)
* Fix mnemonic conflict between Import Passwords and Import Bookmarks (#1386)
* Fix Remove button sensitivity in history dialog (#1417)
* Remove Firefox Sync from Preferences and add it to Import/Export menu (!766, Andrei Lișiță)
* Improve language selection widget (!800, Andrei Lișiță)
* Refine tab context menu (!815)
* Improve tab muting icons (!817)
* Update to highlight.js 10.5.0 (!824, !831, !862, !875)
* Update to PDF.js 2.5.207 (!825)
* Make bookmarks properties dialog resizable (!832)
* Additional bookmarks popover fixes for mobile (!833)
* Improve web app preferences (!834)
* Various fixes for system web apps (!835)
* libportal may not be disabled using -Dlibportal=disabled (!840, Simon McVittie)
* Move destructive buttons in clear data and history dialogs (!848)
* New Epiphany app icon (!849, Tobias Bernard)
* Add X-Purism-FormFactor to appdata and desktop file (!855, Adrien Plazas)
* Also add X-Purism-FormFactor to web app desktop files (!856)
* Improve support for dark header bars in otherwise light themes (!857, Ian Santopietro)
* Improve flatpak support for elementary OS (!858, Jordan Petridis)
* Remove compulsory_for_desktop (gnome-software#445)
3.38.2 - December 1, 2020
=========================
* Fix pinned tabs reordering themselves (#1341)
* Avoid crash during Storage Access API permission requests (#1357)
* Reduce size of Storage Access API permission request info bar (#1358)
* Fix fullscreen reveal animation (!847)
* Fix crash when Safe Browsing database is corrupted (!863)
* History dialog title should be translatable (Piotr Drąg)
3.38.1 - October 6, 2020
========================
* Fix failure to display new overview items (#1326)
* Open portal helper in new tab (#1329)
* Only run portal helper in non-GNOME environments (#1330)
* Prevent configuring the same language multiple times (#1335, Andrei Lisita)
* Run in Background setting should use a checkbox, not a radio button (#1337)
* Fix new ephy-reader: URIs (#1339)
* Show placeholder icon for pinned pages without favicon (#1351)
* Fix opening custom CSS and JS under flatpak (#1352)
* Remove ad-hoc query parameter stripping (!812)
* Fix criticals when starting web apps (!828)
* Fix launching system web apps (!835, Alexander Mikhaylenko)
* Remove rogue underscore from title of Add Language dialog
3.38.0 - September 11, 2020
===========================
* Updated translations
3.37.92 - September 04, 2020
============================
* Fix download animation appearing twice (#1236)
* Fix criticals when opening preferences dialog (#1281, Andrei Lisita)
* Fix mobile-capable web app setting in mobile mode (#1313)
* Fix web view test with no network available (#1314)
* Fix rounding error when changing zoom levels (#1316, Zach Harbort)
* Fix handling of mailto: links (#1324)
* Open application manager in new tabs (#1325)
* Disable "set image as wallpaper" function due to issue #1198 (Vanadiae)
* Don't allow JavaScript to open new windows automatically
* Fix translations of history dialog title bar
3.37.91 - August 20, 2020
=========================
* Fix crash when visiting long pages like planet.gnome.org (#1282)
* Clarify description of run-in-background setting (#1301)
* Fix various theme problems (#1312, !797, !798, Alexander Mikhaylenko)
* Code cleanups and fixes to history dialog (!793, Andrei Lisita)
3.37.90 - August 6, 2020
========================
* Always show Go Home button in Pantheon unless homepage is about:blank (#3)
* Allow self-hosted sync servers (#22)
* Flash notebook arrow when new tab is not visible (#48, #1262)
* Warn when reloading page would lose form data (#195)
* Don't display duplicate in-app notifications from sync service (#446)
* Store HTTP auth passwords in password manager (#719)
* Hide action bar in fullscreen narrow mode (#813)
* Add favicon for about:overview (#848)
* Add history dialog selection mode (#903, !790, Andrei Lisita)
* Downloads popover can now open download directory under flatpak (#948)
* Fix favicons in tab labels on hidpi displays (#999, Stephan Verbücheln)
* Print fewer warnings when sync data is invalid (#1019)
* Add captive portal helper (#1061)
* Use Ctrl+? to open keyboard shortcuts dialog (#1078, Vanadiae)
* Ensure saved PDFs use the correct filename (#1235)
* Closing new tabs interferes with order of newly-created tabs (#1240)
* Fix criticals when deleting entries from History dialog (#1252, Andrei Lisita)
* Do not expose ephy-pdf: URI scheme in address bar (#1253)
* Improve behavior of reader mode URI scheme handler (#1255)
* Add --search to manpage (#1256)
* Improve background contrast in preferences dialog (#1257)
* Fix entering ephy-reader: addresses in address bar (#1259)
* Keep aspect ratio for overview snapshots (#1260)
* Fix passwords dialog when deleting passwords in search view (#1261, Andrei Lisita)
* Use Clear Data button on clear data dialog (#1271, Andrei Lisita)
* Add Intelligent Tracking Prevention, enabled by default (!713)
* Replace cookie storage prefs with ITP and setting to disable website data (!743)
* Fix Remove Password button (!758, Andrei Lisita)
* Enable popup blocking by default (!763)
* Another major redesign of preferences dialog (!767, Adrien Plazas)
* Fix build on OpenBSD (!770, Jasper Lievisse Adriaanse)
* Permission request groundwork for WebRTC (!771)
* Fix Safe Browsing feature (!776)
* Various style improvements (!785, !786, Alexander Mikhaylenko)
* Fix favicons in tab menu on hidpi displays (!787, Stephan Verbücheln)
3.37.3 - July 2, 2020
=====================
* Add ephy-reader: URI scheme for reader mode (#50)
* Allow muting individual tabs (#311)
* Add paste as plaintext context menu option (#415)
* Fix crash when setting homepage (#610)
* Add --search command line option (#630)
* Add run in background option for web apps (#673)
* Allow reordering pinned tabs (#782)
* Improve writes to Safe Browsing database (#790)
* Pre-fill search bar with selected text (#809)
* Fix a test (#829)
* Redesign Privacy pages in preferences dialog (#1057, Andrei Lisita)
* Fix various memory leaks in history code (#1178)
* Fix insecure form focused warning (#1186)
* Refactor PDF code (#1189, !696)
* Fix back/forward mouse gesture (#1204)
* Add option to immediately switch to a new tab (#1209)
* Fix web app notifications (#1228)
* Update to highlight.js 10.1.0 (#1230, Jim Mason)
* Fix serif font setting not working properly (#1231)
* Fix Firefox Sync not working under flatpak (#1233)
* Improve suggested filename for PDF downloads (#1235)
* Notifications now display correctly in mobile mode (#1247)
* Remove mobile user agent since it doesn't work well (!601)
* Add line numbers in view source mode (!674, Jim Mason)
* Disable set image as wallpaper under flatpak (!679, Vanadiae)
* Select entire address bar on Ctrl+L (!685)
* Update readability.js (!692)
* Various UI cleanups and improvements (!695, Alexander Mikhaylenko)
* Default custom fonts to 12pt (!705)
* Add dark mode support in view source mode (!706, Jim Mason)
* Add per-site autoplay policy permission (!712, Charlie Turner)
* Improve safety of Firefox Sync code (!716)
* Update to PDF.js 2.4.456 (!718)
* Link buttons on search engines dialog (!722, Vanadiae)
* Update to libhandy master (Alexander Mikhaylenko)
3.37.2 - May 29, 2020
=====================
* Search provider now offers to load URLs, rather than search the web (#150)
* Redesigned password management dialog (#225)
* Add user script support (like Greasemonkey) (#298)
* Fix and reenable test-ephy-web-view (#378)
* Import passwords from Chrome/Chromium (#424, #1187)
* Drop duplicate bookmarks during bookmark import (#485)
* Highlight active tab in mobile page view (#760)
* Allow drag and drop from downloads popover (#766)
* Allow opening multiple pages in history dialog (#862)
* Fix non-default search engines appearing in search provider (#923)
* Remove 10-tab limit on reopen closed tabs (#991)
* Remove secret service access from flatpak builds (#1009)
* Add keyboard shortcut to duplicate tab (#1167)
* Update to highlight.js 10.0.2 (#1171, #1176)
* Distribute unpacked version of highlight.js (#1173)
* Restore bookmark tag search in URL entry (#1177)
* Use GNotification and switch to appropriate tab when notification is clicked (#1180)
* Fix bookmark lockdown enabled when current page cannot be bookmarked (#1196)
* Refactor incognito recoloring and support HighContrastInverse (!626, Alexander Mikhaylenko)
* Fix crash loading about:applications (!636)
* Fix duplicate bookmarks causing import to go haywire (!639, ignapk)
* Improve maintainability of preferences dialog (!651, Andrei Lisita)
* Improve title and icon selection for web apps (!654)
* Add import/export menu (!658)
* Drop raised style for back/forward buttons (!665, Alexander Mikhaylenko)
* Update images in user help (!677, Vanadiae)
3.37.1 - April 25, 2020
=======================
* Address bar completion can now jump to tabs in other windows (#117)
* Suppress navigation buttons with apple-mobile-web-app-capable (#212)
* Add bookmarks import from Chrome/Chromium (#352)
* Add bookmarks import from HTML files (#483, ignapk)
* Fix Ctrl+Tab shortcut immediately after opening new tab (#890)
* Fix Ctrl+Tab shortcut after using Ctrl+F (#911, Andrei Lisita)
* Disable close actions in pinned tab context menu (#998)
* Add Ctrl+K shortcut to search in default engine (#1088, Andrei Lisita)
* Add confirmation dialog before deleting all passwords (#1094)
* Set reasonable limit on address bar autocompletions (#1096, #1155)
* Update highlight.js (#1124)
* Invert back/forward shortcuts in keyboard shortcuts dialog in RTL locales (#1145)
* Fix crash in web app creation dialog (#1151)
* Fix two windows opened by new window action (#1152)
* Increase back/forward button size in narrow mode (#1163)
* Avoid using deprecated libnotify (#1168)
* Add web app shortcuts to keyboard shortcuts dialog (!560, Sabri Ünal)
* Remove "Epiphany" from user agent header (!595)
* Mobile user agent now depends on chassis type (!601)
* Hide new tab and reload buttons in narrow mode (!612, #1162)
* Update gvdb (!615)
* Fix various web app memory issues (!616)
* Rename security popover settings (!620)
* Improve transition to/from narrow mode (!627, Alexander Mikhaylenko)
3.36.1 - March 27, 2020
=======================
* Fix bookmarks lockdown (#339)
* Fix endless Epiphany launch loop loading ftp:// URIs (#1053)
* Fix tab name on detached tabs (#1113)
* Fix extra blank space in bookmarks popover (#1119)
* Fix some downloads not working (#1127)
* Use full width address bar dropdown in narrow mode (!611)
3.36.0 - March 7, 2020
======================
* Fix crash when closing passwords dialog (#1120)
3.35.92 - February 27, 2020
===========================
* Remove custom reader mode fonts (#1002)
* Go to homepage when opening a new window (#1090, Andrei Lisita)
* Remember maximize/fullscreen window state (#1091)
* Fix memory leaks (#1098, #1099, #1101, #1102, #1103, #1104)
* Fix extra strings marked for translation (#1106)
* Fix crash on about:memory (#1115)
3.35.91 - February 14, 2020
===========================
* Allow bookmarks files to be symbolic links (#198)
* Fix new tab page with few items in history (#986)
* Fix password manager user account selector (#1018)
* Fix extra page when starting browser during background download (#1058, Andrei Lisita)
* Reenable web process sandbox (#1060)
* Remove extra PDF.js files (#1074)
* Fix tab title after Alt+Home (#1082, Andrei Lisita)
* "Switch to tab" should not switch tabs if URL is edited (#1085)
* Fix crash when parsing session state (#1092)
* Fix improper warning when closing multiple tabs (#1093)
* Disallow top-level navigation to data:// URLs (!577, Adrian Perez)
* Update Epiphany icon in user help
3.35.90 - February 1, 2020
==========================
- Update design of bookmark dialogs (#371)
- Disable new tab page when homepage is about:blank (#393, ignapk)
- Tab now autocompletes URL in address bar (#705)
- Reorganize the preferences dialog (#803, #1055)
- Changing web app icon in preferences dialog should copy icon (#810, ignapk)
- Update design of data management dialogs (#832, Adrien Plazas)
- Add placeholder text to address bar (#852)
- Add address bar dropdown icons for jump-to-tab and for bookmarks (#861, #895)
- Fix history dialog claiming history is empty until history has loaded (#992, Adrien Plazas)
- Fix Favorites and Mobile bookmarks not tagged correctly when localized (#1015, Jonathan Kang)
- Fix crash when loading empty sessions (#1043)
- Hide view source context menu item when on view source page (#1046)
- Use page URI as tab title in view source mode (#1048)
- Allow Ctrl+Tab in address bar (#1051)
- Fix inconsistent capitalization in preferences dialog (#1054, Devesh Vijaywargiya)
- Fix padding on incognito mode welcome page (#1056)
- Fix problems with the new PDF support (#1059, !548)
- Temporarily disable web process sandbox due to WebKit #206533 problems (#1060)
- Fix password saving, likely broken in 3.35.3 (#1064)
- Fix memory corruption in view source mode (#1065)
- Allow opening PDFs with file chooser (#1073)
- Fix view source mode for URIs with non-default port numbers (#1076)
- Fix occasional failure to start up (!537)
- Fix download time remaining "jumping around" (!553, Alexander Mikhaylenko)
- Avoid theoretical bookmark ID collisions (!555, Andrei Lisita)
- Standardize keyboard shortcuts and improve keyboard shortcuts dialog (!556, Sabri Ünal)
- Fix web background color to allow dark mode to work (!558, !559)
- Fix sides cropped off of new tab page snapshots (!563)
- Fix memory corruption when loading adblock filters
- Fix display of script dialogs, broken in 3.35.3
- Fix various scan-build warnings
3.35.3 - January 3, 2020
========================
Big stuff:
- View source mode now uses highlight.js syntax highlighting (!506)
- Now displays PDFs with PDF.js (!508)
The usual:
- Add Open Link context menu option for selected text (#349)
- Fix crash when bookmark time is invalid (#454)
- Remove support for external view source (#819)
- Try harder to avoid session data loss (#887)
- Remember page zoom levels during incognito session (#891)
- Always show overview close button (#906)
- Fix middle click on back button when titlebar action is configured (#919)
- Add lockdown setting to disable context menu (#921)
- Disable Send Link context menu option in application mode (#926)
- Reenable on-demand hardware acceleration (#932)
- Fix profile migrator error message (#944)
- Fix localization of reader mode preferences (#994)
- Fix crash on shutdown regression (#1004)
- Redesigned the downloads button (#947, #1005)
- Improve design of web process crash error page (#1013)
- Fix regressions with user style sheet monitor (#1026)
- Major refactor of IPC to web extension (!448)
- Enable process swap on navigation (site isolation) (!448)
- Security popover's per-website adblocker preference now actually works (!471)
- Improve reader mode icon on elementary (!490)
- Fix search provider crash when there are no bookmarks (!510)
- Fix crashes on web app creation dialog and theoretical crashes elsewhere (!511)
- Remove do-not-track setting, obsolete (!514)
- Remove enable-plugins setting (NPAPI plugins), now always off (!514)
- Remove enable-webaudio and enable-webgl settings, now always on (!514)
- Fix issues detected by cppcheck and scan-build
- Disable Search the Web in application mode
- Temporarily disable address bar DNS prefetch due to WebKit crash
- Require libhandy as system dependency
3.35.2 - November 22, 2019
==========================
- Open bookmarks in new tab with middle button (#86)
- Accept partial URLs with port but no protocol (#329)
- Remove custom FTP handling (#517)
- Fix anchors for local files when opened via command line (#550)
- Fix crash browsing to file under snap (#888)
- Show bookmarked URLs only once in search results dropdown (#897, Dimitrios Christidis)
- Use destructive style on close multiple tabs dialog (#950)
- Fix bookmarks import error handling (#965)
- Prevent detaching pinned tabs (#969)
- Exclude pinned tabs from "close other tabs" and "close tabs to left/right" (#975)
- Adjust icon to not use clipping masks for compatibility with KDE (#979, Jakub Steiner)
- Correctly handle zero matches in find toolbar (#984, Dimitrios Christidis)
- Fix remember passwords setting (#993)
- Enhance password manager to use secrets portal (!359, Daiki Ueno)
- Use two-line display format for address bar dropdown (!441)
- Treat localhost as secure origin (!457)
- Expose webkit://gpu (!458, Adrian Perez)
- Fix per-site adblock permission (!471)
- Add responsive layout for error pages (!477)
- Fix linked zoom menu buttons in right-to-left locales (!481)
3.35.1 - October 11, 2019
=========================
- Reenable on-demand accelerated compositing (#932)
- Many theme improvements specific to elementary OS
(#2, #4, #69, #935, #936, #938, #940, #941, #956, Alexander Mikhaylenko)