From 9f51847c9669eac22ba8d715dbd82eb913c7ade5 Mon Sep 17 00:00:00 2001 From: John Cardinal Date: Tue, 28 Dec 2021 20:21:42 +0000 Subject: [PATCH] --- devdocs/deploy.txt | 3 ++- dist/install/windows/x64/lan.iss | 2 +- dist/install/windows/x64/standalone.iss | 2 +- docs/8.0/ayanova/docs/index.md | 2 +- server/AyaNova/util/AyaNovaVersion.cs | 2 +- 5 files changed, 6 insertions(+), 5 deletions(-) diff --git a/devdocs/deploy.txt b/devdocs/deploy.txt index 75ce444c..f8a0371b 100644 --- a/devdocs/deploy.txt +++ b/devdocs/deploy.txt @@ -2,7 +2,7 @@ ### Bump version numbers: -Search and replace 8.0.0-beta.0.7 +Search and replace 8.0.0-beta.0.8 webapp,server,launcher, v8migrate Client end ayanova-version.js, @@ -74,6 +74,7 @@ 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) diff --git a/dist/install/windows/x64/lan.iss b/dist/install/windows/x64/lan.iss index b045de45..c29137c7 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.7" +#define MyAppVersion "8.0.0-beta.0.8" #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 6882dc33..d25a2705 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.7" +#define MyAppVersion "8.0.0-beta.0.8" #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 6ed32d56..43fb53fa 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.7, Copyright © 2021 Ground Zero Tech-Works Inc. +Documentation version: 8.0.0-beta.0.8, Copyright © 2021 Ground Zero Tech-Works Inc. diff --git a/server/AyaNova/util/AyaNovaVersion.cs b/server/AyaNova/util/AyaNovaVersion.cs index 0391596b..b208395d 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.7"; + public const string VersionString = "8.0.0-beta.0.8"; public const string FullNameAndVersion = "AyaNova server " + VersionString; public const string CurrentApiVersion="v8"; }//eoc