From f41398d8c482e38b0c288537a4e9e1c2a8a20692 Mon Sep 17 00:00:00 2001 From: Samir Benmendil Date: Thu, 7 Oct 2021 13:06:24 +0100 Subject: [PATCH] qutebrowser: show changelog on every patch release This might not actually work for me since I run from git. --- qutebrowser/config.py | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/qutebrowser/config.py b/qutebrowser/config.py index 39cf8d6..444f8f8 100644 --- a/qutebrowser/config.py +++ b/qutebrowser/config.py @@ -110,7 +110,15 @@ c.auto_save.session = True ## Type: Dict # c.bindings.key_mappings = {'': '', '': '', '': '', '': '', '': '', '': '', '': '', '': '', '': ''} -#TODO +## When to show a changelog after qutebrowser was upgraded. +## Type: String +## Valid values: +## - major: Show changelog for major upgrades (e.g. v2.0.0 -> v3.0.0). +## - minor: Show changelog for major and minor upgrades (e.g. v2.0.0 -> v2.1.0). +## - patch: Show changelog for major, minor and patch upgrades (e.g. v2.0.0 -> v2.0.1). +## - never: Never show changelog after upgrades. +c.changelog_after_upgrade = 'patch' + ## Which algorithm to use for modifying how colors are rendered with ## darkmode. The `lightness-cielab` value was added with QtWebEngine 5.14 ## and is treated like `lightness-hsl` with older QtWebEngine versions. -- 2.48.1