From f293277765706a1470c46b4c1ee3bf5046f73114 Mon Sep 17 00:00:00 2001 From: arza Date: Tue, 23 Sep 2025 00:01:54 +0300 Subject: [PATCH 1/3] Increase default scrollback_lines It seems common that people miss important messages when being away and want to increase the scrollback. --- src/fe-text/gui-printtext.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/fe-text/gui-printtext.c b/src/fe-text/gui-printtext.c index 2091b5a3..7482d470 100644 --- a/src/fe-text/gui-printtext.c +++ b/src/fe-text/gui-printtext.c @@ -405,7 +405,7 @@ void gui_printtext_init(void) indent_functions = g_hash_table_new((GHashFunc) g_str_hash, (GCompareFunc) g_str_equal); - settings_add_int("history", "scrollback_lines", 500); + settings_add_int("history", "scrollback_lines", 5000); settings_add_time("history", "scrollback_time", "1day"); settings_add_time("history", "scrollback_max_age", "0"); settings_add_int("history", "scrollback_burst_remove", 10); From 3316202c489074b2d08c457397a6209484f4aafe Mon Sep 17 00:00:00 2001 From: Juha Remes Date: Sat, 22 Nov 2025 14:27:53 +0000 Subject: [PATCH 2/3] Typo fix in docs/help/in/lusers.in --- docs/help/in/lusers.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/help/in/lusers.in b/docs/help/in/lusers.in index f9edf535..99089fb7 100644 --- a/docs/help/in/lusers.in +++ b/docs/help/in/lusers.in @@ -5,7 +5,7 @@ %9Parameters:%9 - The server to search on and the remote sever to search on; if no arguments + The server to search on and the remote server to search on; if no arguments are given, the active server will be used. %9Description:%9 From 5416843d2d8a8292abfd9ab28a9b9f9b9b604d49 Mon Sep 17 00:00:00 2001 From: soulseller Date: Sat, 22 Nov 2025 22:30:38 +0200 Subject: [PATCH 3/3] fe-netsplit: fix nickname truncation to avoid trailing comma-space --- src/fe-common/irc/fe-netsplit.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/fe-common/irc/fe-netsplit.c b/src/fe-common/irc/fe-netsplit.c index b76d4ce7..990c4fe2 100644 --- a/src/fe-common/irc/fe-netsplit.c +++ b/src/fe-common/irc/fe-netsplit.c @@ -137,7 +137,7 @@ static void get_server_splits(void *key, NETSPLIT_REC *split, g_string_append_printf(chanrec->nicks, "%s, ", split->nick); if (chanrec->nick_count == netsplit_max_nicks) - chanrec->maxnickpos = chanrec->nicks->len; + chanrec->maxnickpos = chanrec->nicks->len - 2; } } }