From b3fe456f0fc7a1a3a236ae36c3a4579afbeca50a Mon Sep 17 00:00:00 2001 From: John Cardinal Date: Tue, 10 Jan 2023 22:53:12 +0000 Subject: [PATCH] --- dist/install/windows/x64/lan.iss | 4 ++-- dist/install/windows/x64/standalone.iss | 2 +- docs/8.0/ayanova/docs/changelog.md | 6 ++++++ docs/8.0/ayanova/docs/ops-install-linux-desktop.md | 4 ++-- docs/8.0/ayanova/docs/ops-install-linux-server.md | 4 ++-- docs/8.0/ayanova/docs/ops-install-windows-iis.md | 4 ++-- docs/8.0/ayanova/docs/ops-install-windows-lan.md | 4 ++-- server/AyaNova/AyaNova.csproj | 4 ++-- server/AyaNova/util/AyaNovaVersion.cs | 2 +- 9 files changed, 20 insertions(+), 14 deletions(-) diff --git a/dist/install/windows/x64/lan.iss b/dist/install/windows/x64/lan.iss index 5d8f4d29..348782ec 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.31" +#define MyAppVersion "8.0.32" #define MyAppPublisher "Ground Zero Tech-Works, Inc." #define MyAppURL "https://ayanova.com/" #define MyAppLauncherExeName "ayanova-launcher.exe" @@ -66,7 +66,7 @@ var begin if (CurStep=ssInstall) then begin - if MsgBox('AyaNova depends on the "ASP.NET Core Runtime Hosting bundle" 6.0.0 or newer.' + #13#10 +'Open the download web page now?', mbConfirmation, MB_YESNO or MB_DEFBUTTON2) = IDYES then + if MsgBox('AyaNova depends on the "ASP.NET Core Runtime Hosting bundle" 6.x.' + #13#10 +'Open the download web page now?', mbConfirmation, MB_YESNO or MB_DEFBUTTON2) = IDYES then begin ShellExec('open', 'https://dotnet.microsoft.com/en-us/download/dotnet/thank-you/runtime-aspnetcore-6.0.13-windows-hosting-bundle-installer', '', '', SW_SHOW, ewNoWait, ErrCode); end; diff --git a/dist/install/windows/x64/standalone.iss b/dist/install/windows/x64/standalone.iss index 502c2c77..8ba5ea8d 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.31" +#define MyAppVersion "8.0.32" #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 eaddaf67..c2ea80bb 100644 --- a/docs/8.0/ayanova/docs/changelog.md +++ b/docs/8.0/ayanova/docs/changelog.md @@ -8,6 +8,12 @@ See the [upgrade instructions](ops-upgrade.md) section of this manual for detail ## 2023 +### AyaNova 8.0.32 (2023-01-10) + +#### Changed + +- Installers, Documentation: changed URLs and references in install documentation to ASP.NET Core 6.x specifically as .net core 7 has just been released but is not currently supported for AyaNova + ### AyaNova 8.0.31 (2023-01-05) #### Fixed diff --git a/docs/8.0/ayanova/docs/ops-install-linux-desktop.md b/docs/8.0/ayanova/docs/ops-install-linux-desktop.md index 0a1ef742..5015bc7e 100644 --- a/docs/8.0/ayanova/docs/ops-install-linux-desktop.md +++ b/docs/8.0/ayanova/docs/ops-install-linux-desktop.md @@ -24,7 +24,7 @@ You may need to "translate" these instructions into your Linux distribution's pa ### 1\. ASP.NET Core runtime -AyaNova requires the ASP.NET Core runtime version 6.0 or newer and Microsoft provides a step by step guide to install it properly on each version of Linux. +AyaNova requires the ASP.NET Core runtime version 6.X and Microsoft provides a step by step guide to install it properly on each version of Linux. Install the **"ASP.NET CORE RUNTIME" (NOT SDK VERSION)** using this guide for your specific OS version [https://docs.microsoft.com/en-us/dotnet/core/install/linux](https://docs.microsoft.com/en-us/dotnet/core/install/linux) @@ -38,7 +38,7 @@ Confirm ASP.NET Core runtime is installed and available before proceeding to the dotnet --list-runtimes ``` -The AspNetCore runtime should be displayed with version 6 or newer: +The AspNetCore runtime should be displayed with version 6.x: ``` Microsoft.AspNetCore.App 6.0.3 [/usr/share/dotnet/shared/Microsoft.AspNetCore.App] diff --git a/docs/8.0/ayanova/docs/ops-install-linux-server.md b/docs/8.0/ayanova/docs/ops-install-linux-server.md index b8a9f3f8..6d794dd3 100644 --- a/docs/8.0/ayanova/docs/ops-install-linux-server.md +++ b/docs/8.0/ayanova/docs/ops-install-linux-server.md @@ -55,7 +55,7 @@ We recommend double the size of ram allocated to swap space so if you have 1GB o ### 2\. Install ASP.NET Core runtime -AyaNova requires the ASP.NET Core runtime version 6.0 or newer and Microsoft provides a step by step guide to install it properly on each version of Linux. +AyaNova requires the ASP.NET Core runtime version 6.x and Microsoft provides a step by step guide to install it properly on each version of Linux. Install the **"ASP.NET CORE RUNTIME" (NOT SDK VERSION)** using this guide for your specific OS [https://docs.microsoft.com/en-us/dotnet/core/install/linux](https://docs.microsoft.com/en-us/dotnet/core/install/linux) @@ -70,7 +70,7 @@ Confirm ASP.NET Core runtime is installed and available before proceeding to the dotnet --list-runtimes ``` -The AspNetCore runtime should be displayed with version 6 or newer: +The AspNetCore runtime should be displayed with version 6.x: ``` Microsoft.AspNetCore.App 6.0.3 [/usr/share/dotnet/shared/Microsoft.AspNetCore.App] diff --git a/docs/8.0/ayanova/docs/ops-install-windows-iis.md b/docs/8.0/ayanova/docs/ops-install-windows-iis.md index 1c83ab87..2ef96e88 100644 --- a/docs/8.0/ayanova/docs/ops-install-windows-iis.md +++ b/docs/8.0/ayanova/docs/ops-install-windows-iis.md @@ -24,7 +24,7 @@ An up to date modern web browser (not Internet Explorer) with Javascript enabled - Disk space: minimum 2GB of free disk space - RAM : 1GB (minimum), 2+ GB (recommended) - PostgreSQL Server: installation guide [https://www.postgresqltutorial.com/install-postgresql/](https://www.postgresqltutorial.com/install-postgresql/) -- ASP.NET Core Runtime Hosting bundle v6.0.0 or newer : Download [https://dotnet.microsoft.com/en-us/download/dotnet/thank-you/runtime-aspnetcore-6.0.13-windows-hosting-bundle-installer](https://dotnet.microsoft.com/en-us/download/dotnet/thank-you/runtime-aspnetcore-6.0.13-windows-hosting-bundle-installer) +- ASP.NET Core Runtime Hosting bundle v6.x : Download [https://dotnet.microsoft.com/en-us/download/dotnet/thank-you/runtime-aspnetcore-6.0.13-windows-hosting-bundle-installer](https://dotnet.microsoft.com/en-us/download/dotnet/thank-you/runtime-aspnetcore-6.0.13-windows-hosting-bundle-installer) - Static IP address if AyaNova will be used from the internet - Domain or subdomain name if AyaNova will be used from the internet @@ -109,7 +109,7 @@ If IIS is not already enabled and running do not proceed until it is. The ASP.NET Core runtime will see IIS and install appropriate components but only if IIS is present during the ASP.NET Core runtime installation. -AyaNova is built upon the ASP.NET Core runtime version 6.0 or newer and it should be present **before** AyaNova is installed. +AyaNova is built upon the ASP.NET Core runtime version 6.x and it should be present **before** AyaNova is installed. Download the runtime here [https://dotnet.microsoft.com/en-us/download/dotnet/thank-you/runtime-aspnetcore-6.0.13-windows-hosting-bundle-installer](https://dotnet.microsoft.com/en-us/download/dotnet/thank-you/runtime-aspnetcore-6.0.13-windows-hosting-bundle-installer). diff --git a/docs/8.0/ayanova/docs/ops-install-windows-lan.md b/docs/8.0/ayanova/docs/ops-install-windows-lan.md index 9e17923c..16b98bf4 100644 --- a/docs/8.0/ayanova/docs/ops-install-windows-lan.md +++ b/docs/8.0/ayanova/docs/ops-install-windows-lan.md @@ -22,7 +22,7 @@ An up to date modern web browser (not Internet Explorer) with Javascript enabled - Disk space: minimum 2GB of free disk space - RAM : 1GB (minimum), 2+ GB (recommended) - PostgreSQL Server: installation guide [https://www.postgresqltutorial.com/install-postgresql/](https://www.postgresqltutorial.com/install-postgresql/) -- ASP.NET Core Runtime Hosting bundle v6.0.0 or newer : Download [https://dotnet.microsoft.com/en-us/download/dotnet/thank-you/runtime-aspnetcore-6.0.13-windows-hosting-bundle-installer](https://dotnet.microsoft.com/en-us/download/dotnet/thank-you/runtime-aspnetcore-6.0.13-windows-hosting-bundle-installer) +- ASP.NET Core Runtime Hosting bundle v6.x : Download [https://dotnet.microsoft.com/en-us/download/dotnet/thank-you/runtime-aspnetcore-6.0.13-windows-hosting-bundle-installer](https://dotnet.microsoft.com/en-us/download/dotnet/thank-you/runtime-aspnetcore-6.0.13-windows-hosting-bundle-installer) ## Folders @@ -45,7 +45,7 @@ If you are installing PostgreSQL you will be prompted to provide a password to a ### 2\. Install ASP.NET Core Runtime -AyaNova is built upon the ASP.NET Core runtime version 6.0 or newer and it should be present **before** AyaNova is installed. +AyaNova is built upon the ASP.NET Core runtime version 6.x and it should be present **before** AyaNova is installed. Download the runtime here [https://dotnet.microsoft.com/en-us/download/dotnet/thank-you/runtime-aspnetcore-6.0.13-windows-hosting-bundle-installer](https://dotnet.microsoft.com/en-us/download/dotnet/thank-you/runtime-aspnetcore-6.0.13-windows-hosting-bundle-installer). diff --git a/server/AyaNova/AyaNova.csproj b/server/AyaNova/AyaNova.csproj index 05528efc..52cd24d9 100644 --- a/server/AyaNova/AyaNova.csproj +++ b/server/AyaNova/AyaNova.csproj @@ -4,8 +4,8 @@ true - 8.0.31 - 8.0.31.0 + 8.0.32 + 8.0.32.0 ayanova.ico bin\$(Configuration)\$(TargetFramework)\$(AssemblyName).xml 1591 diff --git a/server/AyaNova/util/AyaNovaVersion.cs b/server/AyaNova/util/AyaNovaVersion.cs index 518c7e58..e345611e 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.31"; + public const string VersionString = "8.0.32"; public const string FullNameAndVersion = "AyaNova server " + VersionString; public const string CurrentApiVersion="v8"; }//eoc