commit b19435687f44607004dda9c1dc1ea82a6fc29149 Author: Michael Catanzaro Date: Sun Mar 12 14:35:42 2017 -0500 Prepare 3.23.93 NEWS | 7 +++++++ configure.ac | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) commit 26ca8c658fa4b3ad9bc6077952a607d46c9b8cc7 Author: Adrian Perez de Castro Date: Sun Mar 12 17:27:17 2017 +0200 Use GtkFileChooserNative for open/save dialogs This fixes bug #779922, making Epiphany a better citizen in the world of sanboxed applications, and potentially when running under non-GNOME DEs as well. The ephy_file_chooser_new() function is turned into an utility function which instantiates a GtkFileChooserNative under the hood, returning it as a GtkFileChooser* to keep most of the rest of the Epiphany code unchanged, saving for: - Calls are changed to gtk_native_dialog_* where appropriate. - The preview widget is gone, as it is not supported by native dialogs. - All the calls to ephy_file_chooser_new() pass in a valid parent GtkWindow, so the code that handled NULL parents is gone. lib/widgets/ephy-file-chooser.c | 138 +++++++++------------------------------- lib/widgets/ephy-file-chooser.h | 23 ++----- src/popup-commands.c | 22 +++---- src/prefs-dialog.c | 14 +--- src/window-commands.c | 34 +++++----- 5 files changed, 65 insertions(+), 166 deletions(-) commit 3213f7c85a5dd3bf2bfa4dd1200cd210dc52d3de Author: Michael Catanzaro Date: Sat Mar 11 15:33:21 2017 -0600 web-view: Destroy info bar when untracking it hergertme: yesterday i got 2 info bars asking me to save my password after i got the first one wrong embed/ephy-web-view.c | 1 + 1 file changed, 1 insertion(+) commit 9235ad357b763593748f8f6f0249b4d4e41c2da5 Author: Michael Catanzaro Date: Sat Mar 11 12:07:38 2017 -0600 Add Alt+Home to key event blacklist WebKit always handles this key press event, so our Alt+Home shortcut does not work if the web view is focused... which is pretty much always. Fix that. https://bugzilla.gnome.org/show_bug.cgi?id=779901 src/ephy-window.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-)