diff --git a/dist/install/windows/x64/lan.iss b/dist/install/windows/x64/lan.iss index cf7af763..bf683495 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.40" +#define MyAppVersion "8.0.41" #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 08cf0636..0b244acb 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.40" +#define MyAppVersion "8.0.41" #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/ay-evaluate.md b/docs/8.0/ayanova/docs/ay-evaluate.md index 65844498..1e48b7ab 100644 --- a/docs/8.0/ayanova/docs/ay-evaluate.md +++ b/docs/8.0/ayanova/docs/ay-evaluate.md @@ -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 diff --git a/server/AyaNova/AyaNova.csproj b/server/AyaNova/AyaNova.csproj index 92575131..9ef4dbd0 100644 --- a/server/AyaNova/AyaNova.csproj +++ b/server/AyaNova/AyaNova.csproj @@ -4,8 +4,8 @@ true - 8.0.40 - 8.0.40.0 + 8.0.41 + 8.0.41.0 ayanova.ico bin\$(Configuration)\$(TargetFramework)\$(AssemblyName).xml 1591 diff --git a/server/AyaNova/util/AyaNovaVersion.cs b/server/AyaNova/util/AyaNovaVersion.cs index 3bff088f..796ff314 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.40"; + public const string VersionString = "8.0.41"; public const string FullNameAndVersion = "AyaNova server " + VersionString; public const string CurrentApiVersion="v8"; }//eoc