logo

badwolf

Minimalist and privacy-oriented WebKitGTK+ browser
commit: e64d606e233e320d8df20958ee9e964fd95dca6a
parent: f35b0b8d29a5cf5fe5adcb752fa2d45a8c96e516
Author: Haelwenn (lanodan) Monnier <contact@hacktivis.me>
Date:   Sat,  4 Apr 2020 01:20:17 +0200

decisions.md: Bump

I should make it an habit to update this file when making decisions, probably
missed some, feel free to contact me if you think I did.

Diffstat:

Mdecisions.md11+++++++++++
1 file changed, 11 insertions(+), 0 deletions(-)

diff --git a/decisions.md b/decisions.md @@ -5,6 +5,17 @@ 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-02-04 & 2020-02-09 : Use BSD extensions in the Makefile +The BSD extensions += and ?= for variable extension is used to avoid having to explicitely pass a list of variables to make, thus making build recipies simpler. +They are also compatible with GNU make so portability shouldn't have significantly dropped. +Which also meant dropping `.POSIX` into the file so `CC` wouldn't be set by default to `c99` (which isn't what I want, the codebase is in c11). + +## 2020-01-30 02:59 : Make window declaration static +This allows to avoid a quite useless memory allocation that would only be freed at the end of the program. + +## 2020-01-22 15:30 : Update copyright to Badwolf Authors +I don't want copyright assignment to me or any organisation, it should belong to every contributor, meaning that any copyright change will need to be accepted by them or their contribution would need to be replaced if need to be. + ## 2020-01-08 08:42:00Z : Start of the decisions.md file From memory and git log: