Skip to content

Commit

Permalink
publish 7.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Yucked committed Jun 4, 2024
1 parent ea06794 commit 465cbfb
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
16 changes: 8 additions & 8 deletions src/Configuration.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,43 +10,43 @@ public record Configuration {
/// <summary>
///
/// </summary>
public int Version { get; init; } = 4;
public int Version { get; set; } = 4;

/// <summary>
///
/// </summary>
public string Hostname { get; init; } = "127.0.0.1";
public string Hostname { get; set; } = "127.0.0.1";

/// <summary>
///
/// </summary>
public int Port { get; init; } = 2333;
public int Port { get; set; } = 2333;

/// <summary>
///
/// </summary>
public bool IsSecure { get; init; } = false;
public bool IsSecure { get; set; } = false;

/// <summary>
///
/// </summary>
public bool EnableResume { get; init; } = true;
public bool EnableResume { get; set; } = true;

/// <summary>
///
/// </summary>
public string ResumeKey { get; init; } = "Victoria";
public string ResumeKey { get; set; } = "Victoria";

/// <summary>
///
/// </summary>
public TimeSpan ResumeTimeout { get; init; }
public TimeSpan ResumeTimeout { get; set; }
= TimeSpan.FromMinutes(10);

/// <summary>
///
/// </summary>
public string Authorization { get; init; } = "youshallnotpass";
public string Authorization { get; set; } = "youshallnotpass";

/// <summary>
/// Whether to enable self deaf for bot.
Expand Down
2 changes: 1 addition & 1 deletion src/Victoria.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
</PropertyGroup>

<PropertyGroup>
<Version>7.0.2</Version>
<Version>7.0.3</Version>
<Title>Victoria</Title>
<Authors>Yucked; Contributors</Authors>
<Copyright>2018 - 2024 Yucked. All rights reserved.</Copyright>
Expand Down

0 comments on commit 465cbfb

Please sign in to comment.