From 061026af8af48e82e5c986e752a71fff7146bccc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Lesimple?= Date: Sat, 12 Apr 2025 09:47:41 +0200 Subject: [PATCH] Remove 'unstable' from the titlebar --- src/closure.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/closure.c b/src/closure.c index 925f72e..eb54364 100644 --- a/src/closure.c +++ b/src/closure.c @@ -493,7 +493,7 @@ void InitClosure() /* Extract the version string */ #if defined(HAVE_UNSTABLE_RELEASE) && defined(PATCHLEVEL) - Closure->cookedVersion = g_strdup_printf("%s (unstable-unofficial patchlevel %d)", VERSION, PATCHLEVEL); + Closure->cookedVersion = g_strdup_printf("%s (unofficial patchlevel %d)", VERSION, PATCHLEVEL); Closure->releaseFlags = MFLAG_DEVEL; #elif defined(HAVE_UNSTABLE_RELEASE) Closure->cookedVersion = g_strdup_printf("%s (unstable)", VERSION);