logo

badwolf

minimalist and privacy-oriented web browser based on WebKitGTK
commit: af32582914ca06ff422ea4f7bad0f593447fd8da
parent 639fcd202b64af2707208ef92872fce6bc0eafe3
Author: Haelwenn (lanodan) Monnier <contact@hacktivis.me>
Date:   Wed, 28 Oct 2020 06:48:50 +0100

badwolf.h: Have uint64_t defined, explain context_id decision

Diffstat:

Mbadwolf.h1+
Mdecisions.md3+++
2 files changed, 4 insertions(+), 0 deletions(-)

diff --git a/badwolf.h b/badwolf.h @@ -3,6 +3,7 @@ #include <gtk/gtk.h> #include <webkit2/webkit2.h> +#include <inttypes.h> /* uint64_t */ extern const gchar *homepage; extern const gchar *version; diff --git a/decisions.md b/decisions.md @@ -5,6 +5,9 @@ Bascially, the idea is to have a file in your projects repo, where you record the decisions you make over the course of the project's lifetime. Rewriting history will not be done but Post-Scriptum notices will. +## 2020-10-22 : Mark the context_id as A-Z instead of Hex +The way I did it at first was to use the hexadecimal representation, but as it starts from 0 there could be confusions with a shortcut hint for alt-n, there could still be confusion with some kind of tab numbering but with a bit of usage it's hopefully going to be obvious. + ## 2020-07-04 : Automatically switch to a user-created tab / Breaking the UI I got pointed out that when creating a new tab the user has to needlessly switch to it while it could be done when they request it. I also decided to still release it in a point release, so without bump of Major because while it does changes the behavior it doesn't break the associated meaning, while this would be a breaking change for an API I could take it as a minor adjustment in a user-interface.