mirror of
https://github.com/Tyrrrz/DiscordChatExporter.git
synced 2026-03-31 17:43:04 -06:00
Co-authored-by: Tyrrrz <1935960+Tyrrrz@users.noreply.github.com> Agent-Logs-Url: https://github.com/Tyrrrz/DiscordChatExporter/sessions/158dba86-9958-4f57-ab22-174e0606b42f
30 lines
1,000 B
C#
30 lines
1,000 B
C#
using System;
|
|
using System.IO;
|
|
|
|
namespace DiscordChatExporter.Gui;
|
|
|
|
public partial class StartOptions
|
|
{
|
|
public required string SettingsPath { get; init; }
|
|
|
|
public required bool IsAutoUpdateDisabled { get; init; }
|
|
}
|
|
|
|
public partial class StartOptions
|
|
{
|
|
public static StartOptions Current { get; } =
|
|
new()
|
|
{
|
|
SettingsPath =
|
|
Environment.GetEnvironmentVariable("DISCORDCHATEXPORTER_SETTINGS_PATH") is { } path
|
|
&& !string.IsNullOrWhiteSpace(path)
|
|
? Path.EndsInDirectorySeparator(path) || Directory.Exists(path)
|
|
? Path.Combine(path, "Settings.dat")
|
|
: path
|
|
: Path.Combine(AppContext.BaseDirectory, "Settings.dat"),
|
|
IsAutoUpdateDisabled =
|
|
Environment.GetEnvironmentVariable("DISCORDCHATEXPORTER_DISABLE_UPDATE") is { } v
|
|
&& (v == "1" || v.Equals("true", StringComparison.OrdinalIgnoreCase)),
|
|
};
|
|
}
|