This commit is contained in:
2022-10-10 18:43:25 +00:00
parent 59318d73a5
commit 0290518a38
8 changed files with 73 additions and 77 deletions

View File

@@ -75,13 +75,13 @@ namespace rockfishCore.Util
{
System.Text.StringBuilder sb = new StringBuilder();
sb.AppendLine("LICENSE DETAILS");
sb.AppendLine($"Registered to: {RegisteredTo}");
sb.AppendLine($"Database id: {DbId}");
sb.AppendLine($"Type: {(Perpetual ? "Perpetual" : "Subscription")}");
if (WillExpire)
sb.AppendLine($"License valid until: {LicenseExpiration.ToLongDateString()}");
sb.AppendLine($"Maintenance until: {MaintenanceExpiration.ToLongDateString()}");
sb.AppendLine($"Available for use until: {LicenseExpiration.ToLongDateString()}");
if (Perpetual)
sb.AppendLine($"Support and updates available until: {MaintenanceExpiration.ToLongDateString()}");
foreach (LicenseFeature f in Features)
{
if (f.Feature == TRIAL_FEATURE_NAME)

View File

@@ -2,7 +2,7 @@ namespace rockfishCore.Util
{
public static class RfVersion
{
public const string NumberOnly="6.25";
public const string NumberOnly="6.26";
public const string Full = "Rockfish server " + NumberOnly;
}
}