This commit is contained in:
2023-03-23 23:55:41 +00:00
parent d615c1d7b0
commit e0b889974c
5 changed files with 15 additions and 11 deletions

View File

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

View File

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

View File

@@ -10,6 +10,8 @@ If you are considering AyaNova for your business and aren't sure where to start
### Install AyaNova
This option is most appropriate for longer term trial evaluations or when you prefer to run AyaNova locally installed and know you won't be using AyaNova as a service hosted by us.
If you would like to download and try AyaNova on your own Windows or Linux computer everything you need is here in our [installation guide](ops-install.md).
After installation return here and continue to the [requesting a trial license](#requesting-a-trial-license) step to continue.
@@ -18,6 +20,8 @@ After installation return here and continue to the [requesting a trial license](
### Try AyaNova as a service
This option is most appropriate when you are only interested in AyaNova as a service (i.e. not installed locally) and don't mind a shorter evaluation time frame.
You can try AyaNova for 7 days has a hosted service by [requesting a trial subscription](https://contact.ayanova.com/request) to get started.
Once your trial account is created return here and continue to the [requesting a trial license](#requesting-a-trial-license) step to continue.
@@ -38,7 +42,7 @@ In the case of a subscription hosted AyaNova trial your data will not be kept be
#### Perpetual self installed AyaNova
The trial period for AyaNova downloaded and installed is 7 days. At the end of the 7 day period you can purchase a license and keep the data entered or start another 7 day trial period with a new trial license request from within AyaNova (will cause all data to be erased).
The trial period for AyaNova downloaded and installed is 14 days. At the end of the 14 day period you can purchase a license and keep the data entered or start another 14 day trial period with a new trial license request from within AyaNova (will cause all data to be erased).
#### Subscription AyaNova service
@@ -74,11 +78,11 @@ Note that sample data is randomly generated each time so all names and addresses
Seeding will trigger erasure of all data in AyaNova in order to return it to a clean state with the following exceptions.
- Global settings
- Operations backup settings
- Operations notification settings
- Business logos
- Reports (any missing stock report templates will be re-installed)
- Global settings
- Operations backup settings
- Operations notification settings
- Business logos
- Reports (any missing stock report templates will be re-installed)
### UTC offset

View File

@@ -4,8 +4,8 @@
</PropertyGroup>
<PropertyGroup>
<GenerateFullPaths>true</GenerateFullPaths>
<Version>8.0.40</Version>
<FileVersion>8.0.40.0</FileVersion>
<Version>8.0.41</Version>
<FileVersion>8.0.41.0</FileVersion>
<ApplicationIcon>ayanova.ico</ApplicationIcon>
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\$(AssemblyName).xml</DocumentationFile>
<noWarn>1591</noWarn>

View File

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