-
Notifications
You must be signed in to change notification settings - Fork 59
Expand file tree
/
Copy pathNEWS
More file actions
9274 lines (7768 loc) · 341 KB
/
NEWS
File metadata and controls
9274 lines (7768 loc) · 341 KB
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
50.4 - April 23, 2026
=====================
* Bugs fixed:
- #2851 No way to "not" quit a webapp through keyboard shortcuts when "Run in
background" is enabled (ARAKHNID)
- #2857 adw_tab_view_get_page: assertion 'child_belongs_to_this_view (self,
child)' failed (Michael Catanzaro)
- #2858 Crash when passing invalid command line option (Michael Catanzaro)
- #2859 URLs containing various characters cannot be deleted from history
(Michael Catanzaro)
- #2862 ephy_site_menu_button_update_search_engine_item crash on 32 bit
(Michael Catanzaro)
- #2863 Epiphany 49.7 crashes at launch (Michael Catanzaro)
- !2073 Fix failure to delete URLs from history (Michael Catanzaro)
- !2076 shell: keep going until all windows are destroyed (Michael Catanzaro)
- !2083 Fix more problems in the filters manager, including crash on startup
(Michael Catanzaro)
* Translation updates:
- Dutch (Reinout van Schouwen)
- German (Christian Kirbach)
- Polish (Victoria Niedzielska)
- Slovak (Jose Riha)
- Turkish (Emin Tufan Çetin)
50.3 - March 24, 2026
=====================
This release reverts back to the original adblock filters used before 50.rc.
* Bugs fixed:
- #2848 Regression in site compatibility due to adblocking (Michael Catanzaro)
- !2065 ci: Remove workflow:rules (Jordan Petridis)
- !2067 filters-manager: fix disabling adblocker (Michael Catanzaro)
- !2068 Switch back to easylist-downloads.adblockplus.org (Michael Catanzaro)
50.2 - March 20, 2026
=====================
* Bugs fixed:
- #2847 Crash in ephy_window_set_active_tab() (ARAKHNID)
- !2059 Add 15 second timeout when fetching adblock filters (Michael
Catanzaro)
- !2063 shell: fix crash when invalid URL passed on command line (Michael
Catanzaro)
- !2064 Many fixes for the adblocker (Michael Catanzaro)
* Translation updates:
- Occitan (post 1500) (Quentin PAGÈS)
50.1 - March 18, 2026
=====================
* Bugs fixed:
- !2060 Remove ublock filter rules (Michael Catanzaro)
* Translation updates:
- Italian (Davide Ferracin)
- Occitan (post 1500) (Quentin PAGÈS)
- Serbian (Марко Костић)
50.0 - March 12, 2026
=====================
* Bugs fixed:
- #2175 When closing a newly created tab, focus is reset to the last tab,
instead of the previously focused tab (ARAKHNID)
- #2825 Bugs may cause session state to be deleted (Michael Catanzaro)
- #2838 epiphany-browser 49.2 build error against Nettle 4.0 (Michael
Catanzaro)
- #2842 Outdated comment for translators (ARAKHNID)
- #2843 UI Bug: Imported bookmarks only show one link per tag (stacked on top
of each other) & Drag-and-Drop is broken (ARAKHNID)
- #2844 Allow web apps to run in the background, with configurable toggle and
quit action, even when not sandboxed by flatpak (ARAKHNID)
- !2048 Fix crash when opening javascript: URLs in new tab (Michael Catanzaro)
- !2049 Fix -Wdiscarded-qualifiers warnings (Michael Catanzaro)
- !2050 web-view: fix security status when restoring pages from session state
(Michael Catanzaro)
- !2053 session: refuse to save window without tabs (Michael Catanzaro)
- !2058 Revert "Fetch locale specific adlock list" (Michael Catanzaro)
* Translation updates:
- Catalan (Jordi Mas)
- Danish (Alan Mortensen)
- English (United Kingdom) (Bruce Cowan)
- Occitan (post 1500) (Quentin PAGÈS)
- Polish (Victoria)
- Uighur (Abduqadir Abliz)
50.rc - March 2, 2026
=====================
* Bugs fixed:
- #2798 Disable "Run in background" for when running unsandboxed (ARAKHNID)
- #2806 New tags created in bookmark edit mode are not sorted (ARAKHNID)
- #2831 missing files from POTFILES.in: ephy-prefs-dialog.c (ARAKHNID)
- #2832 check-potfiles CI job is broken (whocoder11)
- #2836 Site menu icon is broken (ARAKHNID)
- !1636 Remove user gesture check for opening external URLs (Dexter Reed)
- !2040 Change default content filters to bnema/ublock-webkit-filters (Michael
Catanzaro)
- !2041 bookmarks-dialog: Save index in tags order (ARAKHNID)
- !2042 More bookmarks dialog fixes (ARAKHNID)
- !2046 Add blueprint format checker (Jan-Michael Brummer)
* Translation updates:
- Basque (Asier Saratsua Garmendia)
- Bulgarian (twlvnn kraftwerk)
- Catalan (Victor Dargallo)
- Chinese (China) (luming zh)
- Chinese (Taiwan) (Chao-Hsiung Liao)
- Czech (Daniel Rusek)
- Finnish (Jiri Grönroos)
- French (Guillaume Bernard)
- Galician (Fran Diéguez)
- German (Christian Kirbach)
- Greek, Modern (1453-) (Efstathios Iosifidis)
- Hebrew (Yaron Shahrabani, Yosef Or Boczko)
- Hungarian (Balázs Úr)
- Indonesian (Andika Triwidada)
- Interlingua (International Auxiliary Language Association) (Emilio
Sepúlveda)
- Korean (ChangSeok Oh)
- Lithuanian (Aurimas Aurimas Černius)
- Nepali (Pawan Chitrakar)
- Portuguese (Hugo Carvalho)
- Portuguese (Brazil) (Juliano de Souza Camargo)
- Romanian (Antonio Marin)
- Russian (Artur S0)
- Slovenian (Martin)
- Spanish (Daniel Mustieles)
- Swedish (Anders Jonsson)
- Turkish (Sabri Ünal)
50.beta - January 29, 2026
==========================
* Bugs fixed:
- #2332 Move from expander rows to navigation for search engines (ARAKHNID)
- #2578 [Enhancement] Match dark theme preference in blank homepage (Michael
Catanzaro)
- #2797 Web apps lack a button to access site permissions (49.X) (ARAKHNID)
- #2808 Manual bookmark sorting fails (ARAKHNID)
- #2811 Epiphany crashes with a URL containing an out-of-range port (Michael
Catanzaro)
- #2816 Need to escape feature descriptions in features preferences (Michael
Catanzaro)
- #2820 Remote Denial of Service (DoS) via Improper Logging in ephy-session.c
(Michael Catanzaro)
- #2823 Add option to delete service worker data to the Clear Data dialog
(Michael Catanzaro)
- #2826 Crash when downloading a file in an extra window and closing that
window before the confirmation in-app notification overlay is dismissed
(ARAKHNID)
- !2022 autofill-view: Make countries searchable (Adrien Plazas)
- !2026 Change Favorites tag icon to heart-filled-symbolic (ARAKHNID)
- !2028 Fix about: page crash (Jan-Michael Brummer)
- !2029 features-page: Only add subtitle when details available (Jan-Michael
Brummer)
- !2031 passwords-view: fix crash when opening dialog (Michael Catanzaro)
- !2032 style: Replace deprecated resources with media queries (ARAKHNID)
- !2034 bookmark-properties: Validate bookmark url (ARAKHNID)
- !2035 Use proper Favorites tag icon in all places (ARAKHNID)
- !2038 action-bar: Hide bookmarks button in web app mode (ARAKHNID)
* Translation updates:
- Bulgarian (Alexander Alexandrov Shopov, twlvnn kraftwerk)
- Georgian (Ekaterine Papava)
- Kazakh (Baurzhan Muftakhidinov)
- Lithuanian (Aurimas Aurimas Černius)
- Romanian (Antonio Marin)
- Russian (Artur S0)
- Slovenian (Martin)
- Turkish (Sabri Ünal)
- Uighur (Abduqadir Abliz)
- Ukrainian (Yuri Chornoivan)
50.alpha - January 5, 2026
==========================
* Bugs fixed:
- #2699 Stop using GtkTreeView in language dialog (ARAKHNID)
- #2727 Move buttons out of the location entry (ARAKHNID)
- #2736 setting org.gnome.Epiphany.ui webkit-features-page doesn't do anything
(ARAKHNID)
- #2767 URL of open tab replaced with ephy-tab:// (ARAKHNID)
- #2781 Crash in update_reader_mode() (ARAKHNID)
- #2787 Nothing is shown in the location bar on file:// URIs (Michael
Catanzaro)
- #2791 Crash when uploading images onto https://image.galaxy.ai/ai-tile-
identifier (Michael Catanzaro)
- #2803 Crash loading invalid URL using "Open Link in New Tab" (Michael
Catanzaro)
- #2804 Site menu is too hard to find (ARAKHNID)
- !1961 embed: Avoid explicit comparisons against TRUE/FALSE/NULL (ARAKHNID)
- !1964 lib: Avoid explicit comparisons against TRUE/FALSE/NULL (ARAKHNID)
- !1965 src: Avoid explicit comparisons against TRUE/FALSE/NULL (ARAKHNID)
- !1966 tests: Avoid explicit comparison against TRUE/FALSE/NULL (ARAKHNID)
- !1974 security-dialog: Add some translator comments (Michael Catanzaro)
- !1978 Use shield-half for symbolic in privacy report (ARAKHNID)
- !1983 Add option to hide cookie banner (Jan-Michael Brummer)
- !1984 Move reader mode button to site menu (ARAKHNID)
- !1986 Update search bar options icon (Michael Catanzaro)
- !1989 prefs: Enable Features dialog in Canary builds (Philippe Normand)
- !1990 Remove unused symbolic files (ARAKHNID)
- !1992 Fix min required version of GTK (Michael Catanzaro)
- !1994 Consistently decode URLs before displaying in user interface (Michael
Catanzaro)
- !1995 Remove unused/undefined functions (ARAKHNID)
- !1996 Remove ephy-legacy-web-app-utils.c (ARAKHNID)
- !1997 location-entry: fix file URLs disappearing (Michael Catanzaro)
- !2000 Always show action bar while switching to narrow mode (Jan-Michael
Brummer)
- !2002 Security dialog code improvements (ARAKHNID)
- !2003 Fix the site menu button GtkSvg (ARAKHNID)
- !2004 web-view: plug file picker memleak (Swagtoy)
- !2006 Add caption to appstream metainfo (Michael Catanzaro)
- !2009 sqlite: Start caching history service statements (Swagtoy)
- !2011 window: fix "Open link in new tab" appearing for non-URLs (Michael
Catanzaro)
- !2012 window-commands: Remove stray G_GNUC_END_IGNORE_DEPRECATIONS
(ARAKHNID)
- !2013 main: Always free some things even on early exit (ARAKHNID)
- !2014 ephy-opensearch-engine: Don't free moved error (Swagtoy)
- !2016 window: Remove redundant toast function (ARAKHNID)
- !2018 Update location entry when changing "Always Show Full URL" setting
(ARAKHNID)
- !2019 Update about.ini (Michael Catanzaro)
* Translation updates:
- Bulgarian (twlvnn kraftwerk)
- Burmese (Zayar Lwin)
- Catalan (Jordi Mas, Jordi Mas i Hernandez)
- Esperanto (Kristjan SCHMIDT)
- French (Jean-Marc TISSIERES)
- Friulian (Fabio Tomat)
- German (Christian Wansart)
- Greek, Modern (1453-) (Efstathios Iosifidis)
- Indonesian (Andika Triwidada)
- Interlingua (International Auxiliary Language Association) (Emilio
Sepúlveda)
- Italian (Davide Ferracin)
- Korean (ChangSeok Oh)
- Portuguese (Hugo Carvalho)
- Romanian (Antonio Marin)
- Russian (Artur S0)
- Serbian (Милош Поповић)
- Slovenian (Martin)
- Thai (Aefgh Threenine)
- Turkish (Emin Tufan Çetin, Sabri Ünal)
- Uighur (Abduqadir Abliz)
49.1 - October 10, 2025
=======================
* Bugs fixed:
- #2753 Address bar dropdown appears when using "open link in new tab"
(ARAKHNID)
- #2759 Address bar dropdown remains open when window is unfocused (ARAKHNID)
- #2770 Non-Latin characters not displaying properly in address bar (Michael
Catanzaro)
- !1977 Fix location entry not properly going into display mode (ARAKHNID)
- !1991 Fix memory transfer handling in decide_navigation_policy (Jan-Michael
Brummer)
* Translation updates:
- Bulgarian (twlvnn kraftwerk)
- Catalan (Jordi Mas, Jordi Mas i Hernandez)
- Esperanto (Kristjan SCHMIDT)
- German (Christian Wansart)
- Interlingua (International Auxiliary Language Association) (Emilio
Sepúlveda)
- Korean (ChangSeok Oh)
- Portuguese (Hugo Carvalho)
- Turkish (Sabri Ünal)
49.0 - September 11, 2025
=========================
* Bugs fixed:
- #2711 Need profile migrator to add OpenSearch capability to existing
predefined DuckDuckGo, Bing, and Google search engines (Jan-Michael Brummer)
- #2732 The caret position after typing Ctrl+k (ARAKHNID)
- #2757 REGRESSION: favicons have black square background instead of
transparent background (ARAKHNID)
- !1958 ci: update check-potfiles to handle Blueprint (Michael Catanzaro)
- !1968 shell: fix leak in ephy_shell_before_emit() (Michael Catanzaro)
- !1969 Fix missing thumbnails (Jan-Michael Brummer)
* Translation updates:
- Basque (Asier Saratsua Garmendia)
- Catalan (Jordi Mas)
- Chinese (China) (luming zh)
- Czech (Daniel Rusek)
- Danish (Alan Mortensen)
- Dutch (Nathan Follens)
- English (United Kingdom) (Bruce Cowan)
- Esperanto (Kristjan SCHMIDT)
- Finnish (Jiri Grönroos)
- Galician (Francisco Diéguez Souto, Fran Diéguez)
- Georgian (Ekaterine Papava)
- Hebrew (Yaron Shahrabani)
- Hungarian (Balázs Úr)
- Lithuanian (Aurimas Aurimas Černius)
- Persian (Danial Behzadi)
- Polish (Piotr Drąg)
- Romanian (Antonio Marin)
- Russian (Artur S0)
- Spanish (Daniel Mustieles)
- Swedish (Anders Jonsson)
- Turkish (Sabri Ünal)
- Ukrainian (Yuri Chornoivan)
49.rc - August 27, 2025
=======================
* Bugs fixed:
- #2725 Suggestions dropdown opens outside window in new incognito window
(Jan-Michael Brummer, ARAKHNID)
- #2730 Permission request button looks stupid (ARAKHNID)
- #2747 Clicking downloads links causes crash (ARAKHNID)
- #2752 Address bar dropdown appears when using "search the web" (ARAKHNID)
- #2753 Address bar dropdown appears when using "open link in new tab"
(ARAKHNID)
- !1936 shell: fix session state being discarded with new GLib (Michael
Catanzaro)
- !1937 Change add bookmark item label if bookmark exists (ARAKHNID)
- !1938 Code cleanup (ARAKHNID)
- !1939 Explicit set position of suggestions popover (Jan-Michael Brummer)
- !1940 Fix typo (Dimitrios Christidis)
- !1942 Always focus location entry when opening new window (ARAKHNID)
- !1943 Fix warnings found by shellcheck (Jan-Michael Brummer)
- !1944 Format lineup-parameters with ruff (Jan-Michael Brummer)
- !1945 bookmarks-dialog: Add a tooltip to the close button (Lukáš Tyrychtr)
- !1947 Fix web app crash on startup (ARAKHNID)
- !1948 Add Keyboard Shortcuts shortcut to shortcuts dialog (ARAKHNID)
- !1949 Add missing mnemonics (ARAKHNID)
- !1950 Handle edge case when undoing bookmark removal from window (ARAKHNID)
- !1952 Unparent suggestion popover in dispose (Jan-Michael Brummer)
- !1953 Revert unneeded attempts to fix regressions (ARAKHNID)
- !1954 Fix cycling through address bar suggestions regression (ARAKHNID)
- !1955 Fix screenshots being created as HTML (Michael Catanzaro)
- !1956 Revert "location-entry: remove accessible description from the site
menu" (Michael Catanzaro)
- !1957 Update POTFILES.in (Aleksandr Melman)
- !1959 Always focus name row when opening bookmark properties (ARAKHNID)
* Translation updates:
- Catalan (Jordi Mas)
- Chinese (China) (Luming Zh)
- Galician (Fran Diéguez)
- Persian (Danial Behzadi)
- Portuguese (Brazil) (Rafael Fontenelle)
- Russian (Artur S0)
- Slovenian (Martin)
49.beta - August 1, 2025
========================
* Bugs fixed:
- #2639 [Bug] Text cursor position not saved when switching tabs (Jan-Michael
Brummer)
- #2675 Features preferences pane design ideas (ARAKHNID)
- #2681 Missing download icon in narrow mode (ARAKHNID)
- #2688 Quit menu item is visible for non-background web app (Michael
Catanzaro)
- #2702 Loading spinner displays in location entry even when tab bar is
visible (Jan-Michael Brummer)
- #2712 Crash when opening preferences dialog after deleting default search
engine (Jan-Michael Brummer)
- #2718 Exiting bookmarks sidebar makes forward/back buttons clickable
(ARAKHNID)
- #2720 Cannot reset location entry with Escape (Michael Catanzaro)
- #2724 Web app run in background setting is broken outside Flatpak (ARAKHNID)
- #2731 bookmark import creates duplicated entries (ARAKHNID)
- !1862 Add site menu (Jan-Michael Brummer)
- !1898 Allow closing find toolbar with Esc without search focused (ARAKHNID)
- !1899 window-commands: don't take snapshot when saving PNG image (Michael
Catanzaro)
- !1900 Switch options and navigation buttons in search (Jan-Michael Brummer)
- !1901 reader-handler: fix crash when destroying web view (Michael Catanzaro)
- !1902 Add Reset All button to WebKit features page (ARAKHNID)
- !1903 Always use g_signal_emit() over g_signal_emit_by_name() (ARAKHNID)
- !1904 Colorize icons and not buttons in location entry (Jan-Michael Brummer)
- !1905 tabs-catalog: remove remaining use of slice allocator (Michael
Catanzaro)
- !1908 Small bookmarks dialog fixes (ARAKHNID)
- !1909 window: fix crash in url_should_open_automatically() (Michael
Catanzaro)
- !1910 Fix CI (Michael Catanzaro)
- !1912 Remove unnecessary use of adw_toast_set_priority () (ARAKHNID)
- !1914 search-engine: fix -Wformat-security warning (Michael Catanzaro)
- !1915 bookmark-properties: fix on_tags_activated callback (q66)
- !1916 Simplify page menu button menu item removal (Michael Catanzaro)
- !1917 location-entry: use ephy-site-button-symbolic for secure websites
(Michael Catanzaro)
- !1918 window: fix crash after window.open() (Michael Catanzaro)
- !1919 page-menu-button: remove missed temporary comments (Michael Catanzaro)
- !1920 Fix fullscreen menu item (Michael Catanzaro)
- !1922 Remove unused Blueprint imports (ARAKHNID)
- !1924 Turn passwords popover into alert dialog (ARAKHNID)
- !1925 data: Rename appdata to metainfo (AsciiWolf)
- !1927 window-commands: fix crash when taking screenshot (Michael Catanzaro)
- !1930 Move location entry mute button to site menu (ARAKHNID)
- !1931 Add shortcuts dialog (ARAKHNID)
- !1934 Revert "ci: disable Canary" (Philippe Normand)
* Translation updates:
- Friulian (Fabio Tomat)
- Hebrew (Yosef Or Boczko)
- Romanian (Antonio Marin)
- Slovenian (Martin)
- Uzbek (Bilolbek Normuminov)
49.alpha - June 26, 2025
========================
* This release contains a major redesign of the address bar (the "location entry")
* The list of changes below includes changes since 48.0
* Bugs fixed:
- #463 Do not close any windows, and do not close the EphySession, before user
has responded to all unsubmitted form warning dialogs (ARAKHNID)
- #506 Option for separate search engine in Incognito (Jan-Michael Brummer)
- #815 Deletion of bigger numbers of bookmarks is unintuitive (ARAKHNID)
- #1248 No success/failure indication after clearing personal data (ARAKHNID)
- #1336 Inconsistently possible to delete only configured language (Jan-
Michael Brummer)
- #1343 switch immediately to new tab option does not work when middle
clicking (Jan-Michael Brummer)
- #1425 Add kiosk mode (Jan-Michael Brummer)
- #1457 Review use of run_downloads_in_background() in ephy-window.c (Jan-
Michael Brummer)
- #1468 Rejecting a modified form close confirmation warning has different
results depending on how window is closed (ARAKHNID)
- #1479 help: pref-cookies.page contains some outdated information (Michael
Catanzaro)
- #1496 Support adding opensearch XML search engine with autodiscovery (Jan-
Michael Brummer)
- #1592 Use the location portal (Jan-Michael Brummer)
- #1652 Web app not able to easily be deleted due to URL length (Jan-Michael
Brummer)
- #1673 (Feature Request): Unmuting a non-tabbed page (Jan-Michael Brummer)
- #1949 Passwords dialog has edit buttons for username and password, but they
are always insensitive (Jan-Michael Brummer)
- #1964 Provide a reading time estimate in reader mode (Jan-Michael Brummer)
- #2018 Unicode characters in suggestions become percent-encoded in address
bar (Jan-Michael Brummer)
- #2020 Do not hide and remove search content when changing pages. (ARAKHNID)
- #2086 quitting Web with an unsubmitted form makes other windows disappear
for the current session (ARAKHNID)
- #2129 Locale-specific adblock lists (Jan-Michael Brummer)
- #2174 "Oops" status page looks doesn't look like an AdwStatusPage (Jan-
Michael Brummer)
- #2190 enhancement: focus webview on esc key in chrome? (ARAKHNID, Jan-
Michael Brummer)
- #2242 feature: bookmark a link from the context menu (Jan-Michael Brummer)
- #2328 Modernize permissions popover (Jan-Michael Brummer)
- #2347 Use the distinctive "in construction" development version window
headerbar styling (Jan-Michael Brummer)
- #2348 Remove Passwords from preferences dialog (Jan-Michael Brummer)
- #2365 Implement style changes to password manager username list (Jan-Michael
Brummer)
- #2422 Opening with --new-window opens windows without a focus on url field
(Jan-Michael Brummer)
- #2432 [Enhancement] Clicking link in bookmarks sidebar should close sidebar
(Jan-Michael Brummer)
- #2440 Store small cropped no-transparency thumbnails (for "Most visited
pages"), not full-page-height transparent thumbnails (Jan-Michael Brummer)
- #2453 Manage Additional URLs dialog should operate on base domains (Jan-
Michael Brummer)
- #2459 Feature Request: Add button to uninstall web app from the hamburger
menu of the web app window (Jan-Michael Brummer)
- #2492 Reader mode's zoom level is not applied and saved independently from
the regular original pages (Jan-Michael Brummer)
- #2493 Feature Request: allow case-sensitive/whole word search when searching
on page (Jan-Michael Brummer)
- #2497 webapps: string "Run in background" should be specified to be a toggle
rather than an action (Jan-Michael Brummer)
- #2499 Allow launching web apps from Epiphany (Jan-Michael Brummer)
- #2505 "default zoom" in settings changes by -1/+1 when using the buttons or
arrow keys (Jan-Michael Brummer)
- #2517 The downloads popover should close when a file is opened (Jan-Michael
Brummer)
- #2520 Crash when trying to select download location (Michael Catanzaro)
- #2532 Crash in escape_csv_field() when exporting passwords (Michael
Catanzaro)
- #2561 Adding WhatsApp as a web app crashes (Michael Catanzaro)
- #2581 Opening a new blank tab should not show spinner (Jan-Michael Brummer)
- #2590 "Select all" string consistency with GNOME (ARAKHNID)
- #2596 Pressing Escape key in addressbar resets the cursor to beginning of
the widget (ARAKHNID)
- #2604 "Installed on" label shown in about:applications reflects the usage /
access time, not creation time (Jan-Michael Brummer)
- #2608 Support the FreeDesktop background app API for sandboxed applications
(using portals) (Jan-Michael Brummer)
- #2609 Offer an explicit "Quit" menu action when "Run in background" is
enabled for a webapp (Jan-Michael Brummer)
- #2610 Port "Manage Additional URLs" to modern widgets (Jan-Michael Brummer)
- #2624 Epiphay shouldn't show the privacy dialog in incognito mode (Michael
Catanzaro)
- #2625 address bar looks a bit off in narrow mode (Jan-Michael Brummer)
- #2640 [UI/UX Enhancement] Add bookmark UI is very confusing (ARAKHNID)
- #2641 (CVE-2025-3839) Require user interaction before opening URL in
external application (Michael Catanzaro)
- #2643 Cannot open multiple instances of a web app anymore ("New window"
kills the running instance) (Michael Catanzaro)
- #2644 Add Epiphany-level confirmation dialog before opening URL in external
application (Jan-Michael Brummer)
- #2650 48.2 clicking a downloaded file crashes the browser (Michael
Catanzaro)
- #2651 Incognito Epiphany shouldn't automatically use saved HTTP Auth
passwords from the regular Epiphany session(s) (Michael Catanzaro)
- #2652 "Add Bookmark" menu option appears on startup in normal mode (Michael
Catanzaro)
- #2655 Can't exit bookmarks sidebar with Escape if search bar is focused
(ARAKHNID)
- #2656 Able to open multiple certificate dialogs (ARAKHNID)
- #2657 Add Close All Tabs button to Tab Overview (Jan-Michael Brummer)
- #2661 Crash on quit if the export dialog is dismissed before (Balló György)
- #2662 Crash when pressing search suggestion (Jan-Michael Brummer)
- #2665 User-entered text may be displayed when location entry is not focused
(ARAKHNID)
- #2666 URL bar gets activated when clicking "Website security status and
permissions" (Jan-Michael Brummer)
- #2667 Header bar is too tall in web app mode (Jan-Michael Brummer)
- #2670 Use breakpoints in WebKit features preferences page (Jan-Michael
Brummer)
- #2671 Autocomplete in URL bar interferes with Ctrl+backspace (Jan-Michael
Brummer)
- #2673 Crash in update_tags_order_without_list_box() (ARAKHNID)
- #2676 Text in address bar is cleared when you switch window (ARAKHNID)
- #2677 No actionable visual indication of completion after using the "Take
Screenshot…" feature (Jan-Michael Brummer)
- #2678 Unexpected GtkBox under the WebView (Jan-Michael Brummer)
- #2682 Overview thumbnails invalidated after restarting Epiphany (Jan-Michael
Brummer)
- #2687 Unable to horizontally scroll tab bar with touchpad (Jan-Michael
Brummer)
- #2703 Suggestions dropdown not dismissed after loading page (Jan-Michael
Brummer)
- #2705 regression: 2-finger back/forward touchpad gesture doesn't work (Jan-
Michael Brummer)
- #2706 Crash when reading time estimate fails (Jan-Michael Brummer)
- #2709 Location entry autocompletion is only offered after every second
character is entered (Jan-Michael Brummer)
- #2710 Middle-clicking on Back history item does not respect "Switch
Immediately to New Tabs" setting (ARAKHNID)
- !1323 preferences: Add new WebKit features page (Adrian Perez de Castro)
- !1447 Add option to move url bar to bottom (Jan-Michael Brummer)
- !1615 Remove AdGuard YouTube content script (Michael Catanzaro)
- !1716 Code cleanup (ARAKHNID)
- !1717 location-entry: Prettify address when not focused V2 (Jamie
Gravendeel)
- !1718 css: Update to GNOME 48 (Jamie Gravendeel)
- !1719 Fix typed input not showing on address bar unfocus (ARAKHNID)
- !1720 privacy-page: Move AdwButtonRow to AdwActionRow (Jamie Gravendeel)
- !1721 window: fix crash when force closing window without session (Michael
Catanzaro)
- !1722 Several fixes for password export (Michael Catanzaro)
- !1725 permission-popover: Fix origin memory leak (Philippe Normand)
- !1726 Add support for Display device permission requests (Philippe Normand)
- !1727 location-entry: use attribute shape instead of size for hidden text
(two)
- !1728 Disable privacy report in incognito mode (Michael Catanzaro)
- !1729 Remove Granite support from Tech Preview and Canary (Michael
Catanzaro)
- !1730 find-toolbar: fix crash on load-changed (Michael Catanzaro)
- !1731 Require user interaction before websites can open external URLs
(Michael Catanzaro)
- !1737 Hide reader mode button in focused location entry (Jan-Michael
Brummer)
- !1739 Move add bookmark to page menu in narrow mode (Jan-Michael Brummer)
- !1741 Add inline completion to location entry (Jan-Michael Brummer)
- !1742 Automatically set visibility of action bar (Jan-Michael Brummer)
- !1745 Improvements to HTTP authentication (Michael Catanzaro)
- !1746 Add pan gesture to hide/show action bar (Jan-Michael Brummer)
- !1750 appstream: Fix app id (Sophie Herold)
- !1751 web-extension-manager: fix web process extension init regression
(Michael Catanzaro)
- !1752 Fixes for ephy_window_disconnect_active_embed (Michael Catanzaro)
- !1754 Redesign bottom action bar (Jan-Michael Brummer)
- !1755 Don't consider og:image for web app icon (Michael Catanzaro)
- !1756 Exit bookmarks dialog with Esc with search focused (ARAKHNID)
- !1757 WebExtensions: Implement runtime.getManifest() (Jan-Michael Brummer)
- !1760 Fix certificate dialog being non-modal (ARAKHNID)
- !1761 Bookmarks editing mode (take two) (ARAKHNID)
- !1763 window: Put each main window into its own group (Balló György)
- !1769 Fix permission popover crash (Jan-Michael Brummer)
- !1779 Fix crash on escape press in bookmarks dialog (ARAKHNID)
- !1789 Re-add Display Access permission to security dialog (Dexter Reed)
- !1792 Add function to update tags order without listbox (ARAKHNID)
- !1793 readability: fix another typo in the reading speed estimate table
(Michael Catanzaro)
- !1794 Rewrite manpage using rst2man (Michael Catanzaro)
- !1795 Exit with error if -p and --profile are used together (Michael
Catanzaro)
- !1801 Add missing maintainer to man page (Michael Catanzaro)
- !1802 Move tags order variant logic to bookmarks manager (ARAKHNID)
- !1803 Add move controls menu to language rows (ARAKHNID)
- !1804 Fix warning on location entry dispose (ARAKHNID)
- !1807 Only show uninstall web app action in web app mode (ARAKHNID)
- !1810 Show url bar on bottom in narrow mode (Jan-Michael Brummer)
- !1812 Fix missing address text in security dialog (Jan-Michael Brummer)
- !1813 Move overview button to center in narrow mode (Jan-Michael Brummer)
- !1814 Fix logic error breaking the password manager (Michael Catanzaro)
- !1816 Fix crash in password popover (ARAKHNID)
- !1817 Make reset button insensitive if WebKit feature value is default
(ARAKHNID)
- !1818 shell: Fix startup crash on Pantheon (Ryo Nakano)
- !1819 action-bar-end: Fix startup crash on Pantheon (Bobby Rong)
- !1822 Actually only show typed input when address bar is focused (ARAKHNID)
- !1824 Port PrefsFeaturesPage to Blueprint (ARAKHNID)
- !1829 ci: generate new image for style checker (Michael Catanzaro)
- !1832 Fix text getting centered when resetting address (ARAKHNID)
- !1835 Remove breaks in error page before buttons (Jan-Michael Brummer)
- !1836 Reset reader mode on state (Jan-Michael Brummer)
- !1842 Fix crash when opening Find bar (Michael Catanzaro)
- !1843 ephy-password-import: improve robustness (Michael Catanzaro)
- !1847 Add options menu to passwords dialog (Jan-Michael Brummer)
- !1848 Fix crash in sync_tab_navigation (Jan-Michael Brummer)
- !1851 Move page menu bookmarks functions to bookmarks dialog (Jan-Michael
Brummer)
- !1852 Automatically open trusted schemes without interaction (Jan-Michael
Brummer)
- !1853 Fix PKCS #11 login for invalid cert/priv pairs (Jan-Michael Brummer)
- !1854 Add PKCS #11 session logout (Jan-Michael Brummer)
- !1855 Fix incorrect blueprint name in POTFILES (Jan-Michael Brummer)
- !1856 Add PKCS #11 persistence option (Jan-Michael Brummer)
- !1858 Fix revealing of bottom action bar (Jan-Michael Brummer)
- !1859 Remove wrong inline description in data view (Jan-Michael Brummer)
- !1860 Fix setting pkcs #11 persistence for certificate (Jan-Michael Brummer)
- !1861 Improve search bar UI (Jan-Michael Brummer)
- !1864 Require meson 1.1 and rename meson_options.txt (Michael Catanzaro)
- !1865 Protect forms that are autofilled by the password manager (Michael
Catanzaro)
- !1867 Fix gschema string typo (Anders Jonsson)
- !1869 Fix mute button not appearing in single tab narrow mode (Jan-Michael
Brummer)
- !1870 Add data cleared toast to clear data view (ARAKHNID)
- !1872 Revert "Improve search bar UI" (Jan-Michael Brummer)
- !1874 Dispatch events when re-autofilling protected password form element
(Michael Catanzaro)
- !1875 Fix leaks in SQLite and history tests (Michael Catanzaro)
- !1878 Delete old profile migrators (Michael Catanzaro)
- !1879 Check all tabs for modified forms (ARAKHNID)
- !1880 prefs-appearance-page: migrate from GtkFontButton to
GtkFontDialogButton (Michael Catanzaro)
- !1881 Remove the shortcuts dialog (Michael Catanzaro)
- !1882 location-entry: fix crash when pressing Clear button (Michael
Catanzaro)
- !1884 Restore small font in narrow mode location entry (Jan-Michael Brummer)
- !1885 Move combined stop reload button to location entry (Jan-Michael
Brummer)
- !1886 Remove keyboard shortcuts menu item (Michael Catanzaro)
- !1887 Don't close windows until all forms are discarded (ARAKHNID)
- !1888 Fix alignment of full urls in location entry (Jan-Michael Brummer)
- !1889 Remove autocompletion handle on focus leave (Jan-Michael Brummer)
- !1891 Improve inline completion (Jan-Michael Brummer)
* Translation updates:
- Basque (Asier Saratsua Garmendia)
- Belarusian (Vasil Pupkin)
- Catalan (Jordi Mas)
- Chinese (Taiwan) (Cheng-Chia Tseng)
- English (United Kingdom) (Andi Chandler)
- Friulian (Fabio Tomat)
- Georgian (Ekaterine Papava)
- Hebrew (Yaron Shahrabani, Yosef Or Boczko)
- Hindi (Scrambled 777)
- Interlingua (International Auxiliary Language Association) (Emilio
Sepúlveda)
- Japanese (Takayuki KUSANO, Seiji Iizuka, Takayuki Maeda)
- Persian (Danial Behzadi)
- Portuguese (Brazil) (Nilton Perim Neto, Álvaro Burns)
- Romanian (Antonio Marin)
- Slovak (Peter Mráz)
- Slovenian (Martin)
- Spanish (Daniel Mustieles)
- Ukrainian (Yuri Chornoivan)
48.3 - April 24, 2025
=====================
Fix crash when opening downloaded file (#2650)
48.2 - April 22, 2025
=====================
Fix crash when opening incognito window (#2647)
48.1 - April 21, 2025
=====================
* This release notably fixes CVE-2025-3839.
* Bugs fixed:
- #2520 Crash when trying to select download location (Michael Catanzaro)
- #2532 Crash in escape_csv_field() when exporting passwords (Michael
Catanzaro)
- #2561 Adding WhatsApp as a web app crashes (Michael Catanzaro)
- #2596 Pressing Escape key in addressbar resets the cursor to beginning of
the widget (ARAKHNID)
- #2624 Epiphay shouldn't show the privacy dialog in incognito mode (Michael
Catanzaro)
- #2641 (CVE-2025-3839) Require user interaction before opening URL in
external application (Michael Catanzaro)
- !1716 Code cleanup (ARAKHNID)
- !1721 window: fix crash when force closing window without session (Michael
Catanzaro)
- !1722 Several fixes for password export (Michael Catanzaro)
- !1729 Remove Granite support from Tech Preview and Canary (Michael
Catanzaro)
- !1730 find-toolbar: fix crash on load-changed (Michael Catanzaro)
* Translation updates:
- Basque (Asier Saratsua Garmendia)
- Belarusian (Vasil Pupkin)
- English (United Kingdom) (Andi Chandler)
- German (Philipp Kiemle)
- Spanish (Daniel Mustieles)
48.0 - March 13, 2025
=====================
* Bugs fixed:
- #2591 Consistent Clear mnemonics (ARAKHNID)
- #2595 Crash in populate_bookmarks_list_box (ARAKHNID, Philippe Normand)
- !1706 Use consistent mnemonic for "Select All" (ARAKHNID)
- !1707 Replace GtkTreeView with GtkColumnView in webapp URLs dialog (Dylan
McCall)
- !1714 Fix URL getting set to unfocused loading tab's URL (ARAKHNID)
* Translation updates:
- Basque (Asier Saratsua Garmendia)
- Catalan (Jordi Mas, Jordi Mas i Hernandez)
- Danish (Alan Mortensen)
- Finnish (Jiri Grönroos)
- French (Jean-Marc Tissières)
- Galician (Fran Dieguez)
- Hungarian (Balázs Úr)
- Korean (ChangSeok Oh)
- Nepali (Pawan Chitrakar)
- Polish (Piotr Drąg)
- Swedish (Anders Jonsson)
- Turkish (Sabri Ünal)
48.rc - February 26, 2025
=========================
* Bugs fixed:
- #815 Deletion of bigger numbers of bookmarks is unintuitive (ARAKHNID)
- #1769 Do not remove address bar content when switching tabs (ARAKHNID)
- #2545 Importing existing bookmarks can create duplicate rows (ARAKHNID)
- #2588 Crash upon launch due to segmentation fault (ARAKHNID)
- !1697 Change default protocol from http:// to https:// (Octopi)
- !1698 window-commands: print warning when web app installation fails
(Michael Catanzaro)
- !1699 Add Matrix rooms to appstream metadata (Michael Catanzaro)
- !1701 Fix cursor sometimes moving when typing in new tab (ARAKHNID)
- !1703 Use gtk_list_box_remove_all () where possible (ARAKHNID)
- !1705 Remove use of deprecated DNS prefetch setting (Michael Catanzaro)
* Translation updates:
- Bulgarian (twlvnn kraftwerk)
- Catalan (Jordi Mas)
- Chinese (China) (Luming Zh)
- Chinese (Taiwan) (Chao-Hsiung Liao)
- Czech (Daniel Rusek)
- Georgian (Ekaterine Papava)
- Hebrew (Yaron Shahrabani)
- Indonesian (Andika Triwidada)
- Korean (ChangSeok Oh)
- Lithuanian (Aurimas Černius)
- Nepali (Pawan Chitrakar)
- Persian (Danial Behzadi)
- Portuguese (Hugo Carvalho)
- Portuguese (Brazil) (Rafael Fontenelle)
- Russian (Artur S0)
- Slovenian (Martin)
- Turkish (Sabri Ünal)
- Ukrainian (Yuri Chornoivan)
48.beta - January 31, 2025
==========================
* Bugs fixed:
- #2225 focus stays on address bar after switching tab with search (ARAKHNID)
- #2329 Modernize import dialogs (ARAKHNID)
- #2502 select all from address bar context menu doesn't work (ARAKHNID)
- #2562 Display a Toast when failing to install site as a Web App (ARAKHNID)
- #2569 Able to focus main view when in bookmarks sidebar (ARAKHNID)
- !1686 embed-shell: ensure directories exist before adding them to sandbox
(Michael Catanzaro)
- !1692 Add download completed toast (ARAKHNID)
- !1694 Modernize import dialogs (ARAKHNID)
- !1695 Dismiss download started toast on download finish (ARAKHNID)
- !1696 Bookmark dialog focus fixes (ARAKHNID)
* Translation updates:
- Interlingua (International Auxiliary Language Association) (Emilio
Sepúlveda)
- Russian (Artur S0)
- Slovenian (Martin)
- Turkish (Sabri Ünal)
48.alpha - January 9, 2025
==========================
* History dialog improvements (ARAKHNID)
* Fix scroll position resetting when deleting history (#633)
* Clear button now deletes only URLs matching search results (#2049)
* Fix focus reset when opening pages in history (#2501)
* Add toast when copying link (#2506)
* Reduce unnecessary refreshes in history dialog (!1643, !1678)
* Add history selection mode (!1665, #2048, !1688)
* Fix missing accelerator on Clear button (!1682)
* Various additional history dialog fixes (!1684)
* Add warning regarding disabling website data storage (#1956, ARAKHNID)
* Allow closing pinned tabs (#2264, ARAKHNID)
* Add missing tooltip to unfullscreen button (#2345, ARAKHNID)
* Simplify UI for importing bookmarks and passwords (#2430, Harshavardhan Navalli)
* Allow cycling through items in address bar dropdown (#2450)
* Improve Manage Additional URLs design (#2456)
* Fix web app dialog not opening for pages with no title (#2465, Cleo Menezes Jr.)
* Fix bookmark import from HTML (#2469, ARAKHNID)
* Improve password form autofill (#2479, Harshavardhan Navalli)
* Under flatpak, the downloads popover folder button now selects file in file manager (#2481, Dexter Reed)
* Enable reload context menu item in new tab page (#2504, ARAKHNID)
* Fix bookmark properties dialog when many tags are available (#2508, ARAKHNID)
* Fix crash if tab is closed immediately after web process crash (#2511)
* Fix failure to delete web app with apostrophe in name and XSS via web app name (#2516, two)
* Disable Ctrl+K shortcut in web app mode (#2519, ARAKHNID)
* Fix crash when displaying web view (#2523)
* Do not accept disallowed URLs via drag and drop in web app mode (#2528, ARAKHNID)
* Show toast when download is added (#2537, ARAKHNID)
* Fix security popover layout with GTK 4.17.2 (#2560)
* Redesign privacy report dialog (!1648, !1652, !1653, Automeris naranja)
* Improve design of bookmarks dialog (!1663, !1671, ARAKHNID)
* Add toast when copying password in passwords dialog (!1670, ARAKHNID))
* Update to highlightjs-line-numbers 2.9.0 (!1647)
* Fix crash on startup when restoring no tabs from previous session (!1677)
* Update to highlight.js 11.11.0 (!1679)
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)