From 7223cf00061e439157a47439eee7432e4510e509 Mon Sep 17 00:00:00 2001 From: John Cardinal Date: Thu, 16 Mar 2023 23:25:52 +0000 Subject: [PATCH] --- dist/install/windows/x64/lan.iss | 2 +- dist/install/windows/x64/standalone.iss | 2 +- docs/8.0/ayanova/docs/changelog.md | 2 +- server/AyaNova/AyaNova.csproj | 4 ++-- server/AyaNova/util/AyaNovaVersion.cs | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/dist/install/windows/x64/lan.iss b/dist/install/windows/x64/lan.iss index 9367d0a0..2a509ff5 100644 --- a/dist/install/windows/x64/lan.iss +++ b/dist/install/windows/x64/lan.iss @@ -1,7 +1,7 @@ ; LAN install for internal network use only #define MyAppName "AyaNova server" -#define MyAppVersion "8.0.38" +#define MyAppVersion "8.0.39" #define MyAppPublisher "Ground Zero Tech-Works, Inc." #define MyAppURL "https://ayanova.com/" #define MyAppLauncherExeName "ayanova-launcher.exe" diff --git a/dist/install/windows/x64/standalone.iss b/dist/install/windows/x64/standalone.iss index 5d3acc0d..678e85be 100644 --- a/dist/install/windows/x64/standalone.iss +++ b/dist/install/windows/x64/standalone.iss @@ -3,7 +3,7 @@ ; external to lan requires different config #define MyAppName "AyaNova" -#define MyAppVersion "8.0.38" +#define MyAppVersion "8.0.39" #define MyAppPublisher "Ground Zero Tech-Works, Inc." #define MyAppURL "https://ayanova.com/" #define MyAppLauncherExeName "ayanova-launcher.exe" diff --git a/docs/8.0/ayanova/docs/changelog.md b/docs/8.0/ayanova/docs/changelog.md index e015833d..ecccdd82 100644 --- a/docs/8.0/ayanova/docs/changelog.md +++ b/docs/8.0/ayanova/docs/changelog.md @@ -12,7 +12,7 @@ See the [upgrade instructions](ops-upgrade.md) section of this manual for detail #### Fixed -- App: Fix for issue occasionally causing Work order and Quote to show a current status in their main data table display +- App: Fix for issue occasionally causing Work order and Quote to show an incorrect current status in their main data table display ### AyaNova 8.0.37 (2023-03-08) diff --git a/server/AyaNova/AyaNova.csproj b/server/AyaNova/AyaNova.csproj index 6107e6b7..2d5f9134 100644 --- a/server/AyaNova/AyaNova.csproj +++ b/server/AyaNova/AyaNova.csproj @@ -4,8 +4,8 @@ true - 8.0.38 - 8.0.38.0 + 8.0.39 + 8.0.39.0 ayanova.ico bin\$(Configuration)\$(TargetFramework)\$(AssemblyName).xml 1591 diff --git a/server/AyaNova/util/AyaNovaVersion.cs b/server/AyaNova/util/AyaNovaVersion.cs index 230d9ac6..d8881655 100644 --- a/server/AyaNova/util/AyaNovaVersion.cs +++ b/server/AyaNova/util/AyaNovaVersion.cs @@ -5,7 +5,7 @@ namespace AyaNova.Util /// internal static class AyaNovaVersion { - public const string VersionString = "8.0.38"; + public const string VersionString = "8.0.39"; public const string FullNameAndVersion = "AyaNova server " + VersionString; public const string CurrentApiVersion="v8"; }//eoc