mirror of
https://github.com/chylex/Discord-History-Tracker.git
synced 2025-02-22 22:46:01 +01:00
42 lines
1.0 KiB
C#
42 lines
1.0 KiB
C#
using DHT.Desktop.Common;
|
|
|
|
namespace DHT.Desktop.Main;
|
|
|
|
sealed class AboutWindowModel {
|
|
public void ShowOfficialWebsite() {
|
|
SystemUtils.OpenUrl(Program.Website);
|
|
}
|
|
|
|
public void ShowIssueTracker() {
|
|
SystemUtils.OpenUrl("https://github.com/chylex/Discord-History-Tracker/issues");
|
|
}
|
|
|
|
public void ShowSourceCode() {
|
|
SystemUtils.OpenUrl("https://github.com/chylex/Discord-History-Tracker");
|
|
}
|
|
|
|
public void ShowLibraryNetCore() {
|
|
SystemUtils.OpenUrl("https://github.com/dotnet/core");
|
|
}
|
|
|
|
public void ShowLibraryAvalonia() {
|
|
SystemUtils.OpenUrl("https://www.nuget.org/packages/Avalonia");
|
|
}
|
|
|
|
public void ShowLibraryCommunityToolkit() {
|
|
SystemUtils.OpenUrl("https://github.com/CommunityToolkit/dotnet");
|
|
}
|
|
|
|
public void ShowLibrarySqlite() {
|
|
SystemUtils.OpenUrl("https://www.sqlite.org");
|
|
}
|
|
|
|
public void ShowLibrarySqliteAdoNet() {
|
|
SystemUtils.OpenUrl("https://www.nuget.org/packages/Microsoft.Data.Sqlite");
|
|
}
|
|
|
|
public void ShowLibraryRxNet() {
|
|
SystemUtils.OpenUrl("https://github.com/dotnet/reactive");
|
|
}
|
|
}
|