From 8bb7f638aa70a277644bc1372f3cbefaa9be1cc8 Mon Sep 17 00:00:00 2001 From: John Cardinal Date: Tue, 4 Jan 2022 20:42:14 +0000 Subject: [PATCH] released beta-0.9 --- .vscode/launch.json | 2 +- devdocs/deploy.txt | 10 +++++----- dist/install/windows/x64/lan.iss | 2 +- dist/install/windows/x64/standalone.iss | 2 +- docs/8.0/ayanova/docs/index.md | 2 +- server/AyaNova/Controllers/ServerStateController.cs | 2 +- server/AyaNova/util/AyaNovaVersion.cs | 2 +- 7 files changed, 11 insertions(+), 11 deletions(-) diff --git a/.vscode/launch.json b/.vscode/launch.json index cd448218..c0f0d08d 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -48,7 +48,7 @@ "AYANOVA_DATA_PATH": "c:\\temp\\ravendata", "AYANOVA_USE_URLS": "http://*:7575;", //"AYANOVA_PERMANENTLY_ERASE_DATABASE":"true", - "AYANOVA_SERVER_TEST_MODE": "true", + "AYANOVA_SERVER_TEST_MODE": "false", //"AYANOVA_REPORT_RENDERING_TIMEOUT":"60", "AYANOVA_SERVER_TEST_MODE_SEEDLEVEL": "small", "AYANOVA_BACKUP_PG_DUMP_PATH": "C:\\data\\code\\postgres_14\\bin\\" diff --git a/devdocs/deploy.txt b/devdocs/deploy.txt index 6a903c4d..82e90dfc 100644 --- a/devdocs/deploy.txt +++ b/devdocs/deploy.txt @@ -2,7 +2,7 @@ ### Bump version numbers: -Search and replace 8.0.0-beta.0.9 +Search and replace 8.0.0-beta.0.10 webapp,server,launcher, v8migrate Client end ayanova-version.js, @@ -73,10 +73,10 @@ Once tests pass within expected parameters move on to next step Clean out the previous previous download from the previous folder NOTE: if this is the final major release then it should go in the applicable download folder -Move the existing downloads to the previous folder -NOTE: This changes the date and time of the files, probably should be a MOVE command instead of a copy? Not sure will need to experiment -root@ubuntu-s-1vcpu-1gb-amd-sfo3-01:/var/www/html/ayanova.com/download# cp * ./previous - (note: will not copy folders so ok to use) +Copy the existing downloads to the previous folder preserving (-p) the timestamps +Change directory to the previous folder +From the previous folder: cp ../* . -p +(note: will not copy folders so ok to use) ### DELETE CURRENT DOWNLOADS root@ubuntu-s-1vcpu-1gb-amd-sfo3-01:/var/www/html/ayanova.com/download# rm * diff --git a/dist/install/windows/x64/lan.iss b/dist/install/windows/x64/lan.iss index 09c9fd64..3d5c3627 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.0-beta.0.9" +#define MyAppVersion "8.0.0-beta.0.10" #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 2b47064c..a6036726 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.0-beta.0.9" +#define MyAppVersion "8.0.0-beta.0.10" #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/index.md b/docs/8.0/ayanova/docs/index.md index 35005ef0..20561088 100644 --- a/docs/8.0/ayanova/docs/index.md +++ b/docs/8.0/ayanova/docs/index.md @@ -18,4 +18,4 @@ Or check out our support forum [forum.ayanova.com](http://forum.ayanova.com/) --- -Documentation version: 8.0.0-beta.0.9, Copyright © 2022 Ground Zero Tech-Works Inc. +Documentation version: 8.0.0-beta.0.10, Copyright © 2022 Ground Zero Tech-Works Inc. diff --git a/server/AyaNova/Controllers/ServerStateController.cs b/server/AyaNova/Controllers/ServerStateController.cs index 605a4460..38d6a484 100644 --- a/server/AyaNova/Controllers/ServerStateController.cs +++ b/server/AyaNova/Controllers/ServerStateController.cs @@ -158,7 +158,7 @@ namespace AyaNova.Api.Controllers log.LogInformation($"### Server shut down requested by user {UserNameFromContext.Name(HttpContext.Items)}, triggering shut down event now..."); - _appLifetime.StopApplication(); + _appLifetime.StopApplication();//Note: this should also trigger graceful shutdown of JOBS as well return Accepted(); } diff --git a/server/AyaNova/util/AyaNovaVersion.cs b/server/AyaNova/util/AyaNovaVersion.cs index 72c012c1..925ecd02 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.0-beta.0.9"; + public const string VersionString = "8.0.0-beta.0.10"; public const string FullNameAndVersion = "AyaNova server " + VersionString; public const string CurrentApiVersion="v8"; }//eoc