released beta-0.9

This commit is contained in:
2022-01-04 20:42:14 +00:00
parent 74e2a2955a
commit 8bb7f638aa
7 changed files with 11 additions and 11 deletions

2
.vscode/launch.json vendored
View File

@@ -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\\"

View File

@@ -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,9 +73,9 @@ 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
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

View File

@@ -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"

View File

@@ -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"

View File

@@ -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.

View File

@@ -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();
}

View File

@@ -5,7 +5,7 @@ namespace AyaNova.Util
/// </summary>
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