From 09aac429308409ee17f48c2dd525c7606285e66e Mon Sep 17 00:00:00 2001 From: Michael Vetter Date: Wed, 30 Aug 2023 09:04:41 +0200 Subject: [PATCH 1/2] Add tab_joinpart to default config So that users can easily find the option to tweak it. Related to https://github.com/osa1/tiny/issues/262 c6d20b68 introduced this option. --- crates/tiny/config.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/crates/tiny/config.yml b/crates/tiny/config.yml index ce5b287e..fc93384b 100644 --- a/crates/tiny/config.yml +++ b/crates/tiny/config.yml @@ -164,6 +164,10 @@ colors: bg: default attrs: [bold] + tab_joinpart: + fg: 11 + bg: default + # Custom key mappings. Syntax is: # # [key_name]: [key_action] From 808da5b6d8a257643e9f3decec23530b9d96edb7 Mon Sep 17 00:00:00 2001 From: Michael Vetter Date: Wed, 30 Aug 2023 09:40:25 +0200 Subject: [PATCH 2/2] Add SASL EXTERNAL option to default config Related to: https://github.com/osa1/tiny/issues/196 Got introduced in: 25447939fc8098faa6532e0e45e39b947ff67352 --- crates/tiny/config.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/crates/tiny/config.yml b/crates/tiny/config.yml index fc93384b..b5458151 100644 --- a/crates/tiny/config.yml +++ b/crates/tiny/config.yml @@ -29,6 +29,9 @@ servers: # # - `pass`: Sends `PASS` IRC command when connecting. # - `sasl`: For SASL authentication. + # You can either authenticate using a password or use a certificate + # with SASL EXTERNAL. Choose either `username` and `password` + # _or_ `pem`. # - `nickserv_ident`: Sends command `PRIVMSG NickServ identify ...` after # connecting, before joining channels. # @@ -40,6 +43,7 @@ servers: # sasl: # username: tiny_user # password: hunter2 + # pem: "/home/user/.config/tiny/oftc.pem" # nickserv_ident: hunter2