feat: update installation script and documentation for version 0.2.11 release

This commit is contained in:
HueByte
2026-04-24 15:51:01 +02:00
parent 6db93ecfea
commit a85d16fff8
7 changed files with 30 additions and 4 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
<Project>
<PropertyGroup>
<Version>0.2.10</Version>
<Version>0.2.11</Version>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<NoWarn>$(NoWarn);CS1591</NoWarn>
</PropertyGroup>
@@ -7,7 +7,7 @@ namespace EchoHub.Server.Services;
public sealed class ServerDirectoryService : BackgroundService
{
private const string DirectoryHubUrl = "https://echohub.voidcube.cloud/hubs/servers";
private const string DirectoryHubUrl = "https://localhost:5001/hubs/servers";
private static readonly TimeSpan ReconnectBaseDelay = TimeSpan.FromSeconds(2);
private static readonly TimeSpan ReconnectMaxDelay = TimeSpan.FromSeconds(30);
private static readonly TimeSpan UserCountMinInterval = TimeSpan.FromSeconds(1);