From 2b69abf7e38242fbbf3144f0e752289b60328154 Mon Sep 17 00:00:00 2001 From: TechnicJelle <22576047+TechnicJelle@users.noreply.github.com> Date: Sun, 8 Sep 2024 07:18:44 +0200 Subject: [PATCH] Show internal BlueMap version in the app version number --- lib/main.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/main.dart b/lib/main.dart index ca1d426..07addab 100644 --- a/lib/main.dart +++ b/lib/main.dart @@ -57,7 +57,7 @@ class MyHomePage extends ConsumerWidget { appBar: AppBar( title: Text(title), actions: [ - const Text(commit), + const Text("$blueMapTag:$commit"), if (projectDirectory != null) const CloseProjectButton(), ], ),