emergency release due to regression from case 4310 causing error in home notifications table page, also some docs were updated

This commit is contained in:
2022-11-25 19:05:36 +00:00
parent 1963f4e553
commit 6068599b08
7 changed files with 13 additions and 9 deletions

View File

@@ -1,7 +1,7 @@
; LAN install for internal network use only ; LAN install for internal network use only
#define MyAppName "AyaNova server" #define MyAppName "AyaNova server"
#define MyAppVersion "8.0.24" #define MyAppVersion "8.0.25"
#define MyAppPublisher "Ground Zero Tech-Works, Inc." #define MyAppPublisher "Ground Zero Tech-Works, Inc."
#define MyAppURL "https://ayanova.com/" #define MyAppURL "https://ayanova.com/"
#define MyAppLauncherExeName "ayanova-launcher.exe" #define MyAppLauncherExeName "ayanova-launcher.exe"

View File

@@ -3,7 +3,7 @@
; external to lan requires different config ; external to lan requires different config
#define MyAppName "AyaNova" #define MyAppName "AyaNova"
#define MyAppVersion "8.0.24" #define MyAppVersion "8.0.25"
#define MyAppPublisher "Ground Zero Tech-Works, Inc." #define MyAppPublisher "Ground Zero Tech-Works, Inc."
#define MyAppURL "https://ayanova.com/" #define MyAppURL "https://ayanova.com/"
#define MyAppLauncherExeName "ayanova-launcher.exe" #define MyAppLauncherExeName "ayanova-launcher.exe"

View File

@@ -1,6 +1,6 @@
# Report templates # 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. AyaNova features a built in [report editor](ay-report-edit.md) where existing report templates can be customized or new ones created.

View File

@@ -8,11 +8,15 @@ See the [upgrade instructions](ops-upgrade.md) section of this manual for detail
## 2022 ## 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 #### 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) ### AyaNova 8.0.24 (2022-11-21)

View File

@@ -7,7 +7,7 @@ theme:
site_name: AyaNova manual site_name: AyaNova manual
site_dir: '../../../server/AyaNova/wwwroot/docs' site_dir: '../../../server/AyaNova/wwwroot/docs'
strict: true 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: extra:
generator: false generator: false
# Extensions # Extensions

View File

@@ -4,8 +4,8 @@
</PropertyGroup> </PropertyGroup>
<PropertyGroup> <PropertyGroup>
<GenerateFullPaths>true</GenerateFullPaths> <GenerateFullPaths>true</GenerateFullPaths>
<Version>8.0.24</Version> <Version>8.0.25</Version>
<FileVersion>8.0.24.0</FileVersion> <FileVersion>8.0.25.0</FileVersion>
<ApplicationIcon>ayanova.ico</ApplicationIcon> <ApplicationIcon>ayanova.ico</ApplicationIcon>
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\$(AssemblyName).xml</DocumentationFile> <DocumentationFile>bin\$(Configuration)\$(TargetFramework)\$(AssemblyName).xml</DocumentationFile>
<noWarn>1591</noWarn> <noWarn>1591</noWarn>

View File

@@ -5,7 +5,7 @@ namespace AyaNova.Util
/// </summary> /// </summary>
internal static class AyaNovaVersion 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 FullNameAndVersion = "AyaNova server " + VersionString;
public const string CurrentApiVersion="v8"; public const string CurrentApiVersion="v8";
}//eoc }//eoc