logo

badwolf

Minimalist and privacy-oriented WebKitGTK+ browser
commit: 6944c8422e9b4508f88b747752ebb35d3cbea120
parent: c934fb2d92d08961937f263cc98ae4432a9b6222
Author: Haelwenn (lanodan) Monnier <contact@hacktivis.me>
Date:   Fri, 29 Mar 2019 17:33:30 +0100

Merge branch 'develop'

Diffstat:

MREADME.md1+
DTODO2--
Mconfig.h3++-
3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/README.md b/README.md @@ -34,6 +34,7 @@ Dependencies are: - [WebKitGTK](https://webkitgtk.org/), only the latest stable will be fully supported - C11 Compiler (such as clang or gcc) - POSIX make (works with GNU or BSD) +- A pkg-config implementation (pkg-config and pkgconf are supported) Compilation is done with `make`, install with `make install`. diff --git a/TODO b/TODO @@ -1 +0,0 @@ -* Handle WebKitWebView signal script-dialog with GtkInfoBar or similar- \ No newline at end of file diff --git a/config.h b/config.h @@ -42,6 +42,7 @@ * * See: https://webkitgtk.org/reference/webkit2gtk/stable/WebKitSettings.html */ +// clang-format off #define BADWOLF_WEBKIT_SETTINGS \ "default-charset", "utf-8", \ "enable-caret-browsing", TRUE, \ @@ -54,4 +55,4 @@ "media-playback-requires-user-gesture", TRUE, \ "minimum-font-size", 9, \ NULL -// TODO: Look if there is a way to make clang-format ignore this define +// clang-format on