diff --git a/src/WorkFlowCheck.MAUI/Helper/SystemHelper.cs b/src/WorkFlowCheck.MAUI/Helper/SystemHelper.cs index 1c8b173..3be4d6a 100644 --- a/src/WorkFlowCheck.MAUI/Helper/SystemHelper.cs +++ b/src/WorkFlowCheck.MAUI/Helper/SystemHelper.cs @@ -18,6 +18,7 @@ namespace WorkFlowCheck.MAUI.Helper public static string DatabaseName = ""; public static bool Syncronised = false; public static UserDTO SystemUserDTO; + public static string ProgramVersion = "v1.1.018"; #if DEBUG public static string ApiBaseUrl = $"https://dev.wfcapi.nuvolar.hu/"; @@ -25,7 +26,7 @@ namespace WorkFlowCheck.MAUI.Helper #endif #if !DEBUG - public static string ApiBaseUrl = $"https://wfcapi.nuvolar.hu/"; + public static string ApiBaseUrl = $"https://uat.wfcapi.nuvolar.hu/"; public static string ApiKey = $"RUJeLSpSMzVASUdaRCEzUyYxRSE0VyFISFRSJC0zRzhLM1hCSDU="; #endif public async static Task GetAPIInfoAsync() diff --git a/src/WorkFlowCheck.MAUI/Pages/Security/LoginPage.xaml.cs b/src/WorkFlowCheck.MAUI/Pages/Security/LoginPage.xaml.cs index ee479f0..66c4d07 100644 --- a/src/WorkFlowCheck.MAUI/Pages/Security/LoginPage.xaml.cs +++ b/src/WorkFlowCheck.MAUI/Pages/Security/LoginPage.xaml.cs @@ -17,6 +17,7 @@ public partial class LoginPage : BasePage SetContent(LoginContent); _userService = MauiProgram.ServiceProvider.GetRequiredService(); _syncService = MauiProgram.ServiceProvider.GetRequiredService(); + Title = $"Workflow Check Application ({SystemHelper.ProgramVersion})"; } private async void OnLoginClicked(object sender, EventArgs e) { diff --git a/src/WorkFlowCheck.MAUI/release.bat b/src/WorkFlowCheck.MAUI/release.cmd similarity index 100% rename from src/WorkFlowCheck.MAUI/release.bat rename to src/WorkFlowCheck.MAUI/release.cmd