display build type in about page and release 8.0.6
This commit is contained in:
@@ -4,8 +4,8 @@
|
||||
</PropertyGroup>
|
||||
<PropertyGroup>
|
||||
<GenerateFullPaths>true</GenerateFullPaths>
|
||||
<Version>8.0.5</Version>
|
||||
<FileVersion>8.0.5.0</FileVersion>
|
||||
<Version>8.0.6</Version>
|
||||
<FileVersion>8.0.6.0</FileVersion>
|
||||
<ApplicationIcon>ayanova.ico</ApplicationIcon>
|
||||
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\$(AssemblyName).xml</DocumentationFile>
|
||||
<noWarn>1591</noWarn>
|
||||
|
||||
@@ -114,7 +114,7 @@ namespace AyaNova.Api.Controllers
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// Get API server info for general display
|
||||
/// Get API server info for ABOUT form AyaNova display
|
||||
/// </summary>
|
||||
/// <returns>API server info</returns>
|
||||
[HttpGet("server-info")]
|
||||
@@ -129,7 +129,12 @@ namespace AyaNova.Api.Controllers
|
||||
ServerLocalTime = DateUtil.ServerDateTimeString(System.DateTime.UtcNow),
|
||||
ServerTimeZone = TimeZoneInfo.Local.Id,
|
||||
ServerDbId = AyaNova.Core.License.ServerDbId,
|
||||
License = AyaNova.Core.License.LicenseInfoAsJson
|
||||
License = AyaNova.Core.License.LicenseInfoAsJson,
|
||||
#if (SUBSCRIPTION_BUILD)
|
||||
Build = "Subscription"
|
||||
#else
|
||||
Build = "Perpetual"
|
||||
#endif
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
@@ -277,7 +277,6 @@ namespace AyaNova
|
||||
|
||||
|
||||
|
||||
|
||||
//Test for web root path
|
||||
//If user starts AyaNova from folder that is not the contentRoot then
|
||||
//AyaNova won't be able to serve static files
|
||||
|
||||
@@ -1482,7 +1482,7 @@ $BODY$ LANGUAGE PLPGSQL STABLE");
|
||||
|
||||
//////////////////////////////////////////////////
|
||||
//
|
||||
// 8.0.5 Subscription license trans keys
|
||||
// 8.0.6 Subscription license trans keys
|
||||
//
|
||||
if (currentSchema < 5)
|
||||
{
|
||||
|
||||
@@ -5,7 +5,7 @@ namespace AyaNova.Util
|
||||
/// </summary>
|
||||
internal static class AyaNovaVersion
|
||||
{
|
||||
public const string VersionString = "8.0.5";
|
||||
public const string VersionString = "8.0.6";
|
||||
public const string FullNameAndVersion = "AyaNova server " + VersionString;
|
||||
public const string CurrentApiVersion="v8";
|
||||
}//eoc
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
#define DEVELOPMENT_TEST_ROCKFISH
|
||||
//#define DEVELOPMENT_TEST_ROCKFISH
|
||||
using System;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
Reference in New Issue
Block a user