From 249dffe7784b6a7aa293685798906d2679a3c0c3 Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Thu, 30 May 2019 21:25:54 -0400 Subject: [PATCH] build number on about page --- src/App/Pages/Settings/SettingsPage/SettingsPageViewModel.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/App/Pages/Settings/SettingsPage/SettingsPageViewModel.cs b/src/App/Pages/Settings/SettingsPage/SettingsPageViewModel.cs index 1ef77e332..a7c1adb68 100644 --- a/src/App/Pages/Settings/SettingsPage/SettingsPageViewModel.cs +++ b/src/App/Pages/Settings/SettingsPage/SettingsPageViewModel.cs @@ -86,8 +86,8 @@ namespace Bit.App.Pages public async Task AboutAsync() { - var debugText = string.Format("{0}: {1}", AppResources.Version, - _platformUtilsService.GetApplicationVersion()); + var debugText = string.Format("{0}: {1} ({2})", AppResources.Version, + _platformUtilsService.GetApplicationVersion(), _deviceActionService.GetBuildNumber()); var text = string.Format("© 8bit Solutions LLC 2015-{0}\n\n{1}", DateTime.Now.Year, debugText); var copy = await _platformUtilsService.ShowDialogAsync(text, AppResources.Bitwarden, AppResources.Copy, AppResources.Close);