From 6068599b082015db013bed9d481d8f57d2a415ce Mon Sep 17 00:00:00 2001 From: John Cardinal Date: Fri, 25 Nov 2022 19:05:36 +0000 Subject: [PATCH] emergency release due to regression from case 4310 causing error in home notifications table page, also some docs were updated --- dist/install/windows/x64/lan.iss | 2 +- dist/install/windows/x64/standalone.iss | 2 +- docs/8.0/ayanova/docs/adm-report-templates.md | 2 +- docs/8.0/ayanova/docs/changelog.md | 8 ++++++-- docs/8.0/ayanova/mkdocs.yml | 2 +- server/AyaNova/AyaNova.csproj | 4 ++-- server/AyaNova/util/AyaNovaVersion.cs | 2 +- 7 files changed, 13 insertions(+), 9 deletions(-) diff --git a/dist/install/windows/x64/lan.iss b/dist/install/windows/x64/lan.iss index ccf4d4a7..4b9de5e6 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.24" +#define MyAppVersion "8.0.25" #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 aa356d94..c2231973 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.24" +#define MyAppVersion "8.0.25" #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/adm-report-templates.md b/docs/8.0/ayanova/docs/adm-report-templates.md index fa878b34..93829aaa 100644 --- a/docs/8.0/ayanova/docs/adm-report-templates.md +++ b/docs/8.0/ayanova/docs/adm-report-templates.md @@ -1,6 +1,6 @@ # Report templates -Report templates used to generate .pdf report documents from business object data. +Report templates are used to generate reports from business object data. AyaNova features a built in [report editor](ay-report-edit.md) where existing report templates can be customized or new ones created. diff --git a/docs/8.0/ayanova/docs/changelog.md b/docs/8.0/ayanova/docs/changelog.md index 234d56c7..02c4d442 100644 --- a/docs/8.0/ayanova/docs/changelog.md +++ b/docs/8.0/ayanova/docs/changelog.md @@ -8,11 +8,15 @@ See the [upgrade instructions](ops-upgrade.md) section of this manual for detail ## 2022 -### AyaNova 8.0.24 (2022-11-25) +### AyaNova 8.0.25 (2022-11-25) + +#### Fixed + +- UI: Home notifications could error out with "internal server error" rather than list of notifications #### Added -- Documentation: Multiple pages added section showing where that item can be selected / other objects to which it is linked +- Documentation: Multiple pages improved / expanded ### AyaNova 8.0.24 (2022-11-21) diff --git a/docs/8.0/ayanova/mkdocs.yml b/docs/8.0/ayanova/mkdocs.yml index f3844491..6075f30c 100644 --- a/docs/8.0/ayanova/mkdocs.yml +++ b/docs/8.0/ayanova/mkdocs.yml @@ -7,7 +7,7 @@ theme: site_name: AyaNova manual site_dir: '../../../server/AyaNova/wwwroot/docs' strict: true -copyright: Copyright © 2022 Ground Zero Tech-Works Inc. REV-2022-11-24 +copyright: Copyright © 2022 Ground Zero Tech-Works Inc. REV-2022-11-25 extra: generator: false # Extensions diff --git a/server/AyaNova/AyaNova.csproj b/server/AyaNova/AyaNova.csproj index 7ed001dd..a776591d 100644 --- a/server/AyaNova/AyaNova.csproj +++ b/server/AyaNova/AyaNova.csproj @@ -4,8 +4,8 @@ true - 8.0.24 - 8.0.24.0 + 8.0.25 + 8.0.25.0 ayanova.ico bin\$(Configuration)\$(TargetFramework)\$(AssemblyName).xml 1591 diff --git a/server/AyaNova/util/AyaNovaVersion.cs b/server/AyaNova/util/AyaNovaVersion.cs index 5bc00e54..082cd4bc 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.24"; + public const string VersionString = "8.0.25"; public const string FullNameAndVersion = "AyaNova server " + VersionString; public const string CurrentApiVersion="v8"; }//eoc