summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Persch <chpe@src.gnome.org>2021-07-08 20:07:53 +0200
committerChristian Persch <chpe@src.gnome.org>2021-07-08 20:07:53 +0200
commit2c714c80239167852a8ea883fcedd73e2249f6c6 (patch)
treefb35891ff745e0b19f44c203bcc2011b33345c47
parent0f6fb3781c2f5efe3306ebe6f41a7e4ba71880db (diff)
downloadgnome-terminal-2c714c80239167852a8ea883fcedd73e2249f6c6.tar.gz
about: Fix gnome version3.41.0
-rw-r--r--src/terminal-util.cc6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/terminal-util.cc b/src/terminal-util.cc
index c88e002b..f1be9b26 100644
--- a/src/terminal-util.cc
+++ b/src/terminal-util.cc
@@ -222,7 +222,11 @@ terminal_util_show_about (void)
licence_text = terminal_util_get_licence_text ();
- int gnome_version = (TERMINAL_MINOR_VERSION + 1) & ~1;
+ /* gnome 40 corresponds to g-t 3.40.x. After that, gnome version
+ * increases by 1 while the g-t minor version increases by 2 between
+ * stable releases.
+ */
+ auto const gnome_version = 40 + (TERMINAL_MINOR_VERSION - 40 + 1) / 2;
version = g_strdup_printf (_("Version %s for GNOME %d"),
VERSION,
gnome_version);