updated git repository url
This commit is contained in:
@@ -183,7 +183,11 @@ public partial class MainWindow : Window
|
||||
{
|
||||
try
|
||||
{
|
||||
Launcher.LaunchDirectoryInfoAsync(new DirectoryInfo(Directory.GetCurrent().ToString()))
|
||||
|
||||
string workingDir = Directory.GetCurrent().ToString();
|
||||
LauncherApp.Logger.LogDebug(nameof(MainWindow),
|
||||
$"opening working directory: {workingDir}");
|
||||
Launcher.LaunchDirectoryInfoAsync(new DirectoryInfo(workingDir))
|
||||
.ConfigureAwait(false);
|
||||
}
|
||||
catch (Exception ex)
|
||||
@@ -196,7 +200,10 @@ public partial class MainWindow : Window
|
||||
{
|
||||
try
|
||||
{
|
||||
Launcher.LaunchFileInfoAsync(new FileInfo(LauncherApp.Logger.LogfileName.ToString()))
|
||||
string logFilePath = LauncherApp.Logger.LogFilePath.ToString();
|
||||
LauncherApp.Logger.LogDebug(nameof(MainWindow),
|
||||
$"opening log file: {logFilePath}");
|
||||
Launcher.LaunchFileInfoAsync(new FileInfo(logFilePath))
|
||||
.ConfigureAwait(false);
|
||||
}
|
||||
catch (Exception ex)
|
||||
@@ -209,7 +216,10 @@ public partial class MainWindow : Window
|
||||
{
|
||||
try
|
||||
{
|
||||
Launcher.LaunchUriAsync(new Uri("https://timerix.ddns.net:3322/Timerix/mlaumcherb"))
|
||||
var sourcesUri = new Uri(LauncherApp.Config.gitea.GetRepoUrl());
|
||||
LauncherApp.Logger.LogDebug(nameof(MainWindow),
|
||||
$"opening in web browser: {sourcesUri}");
|
||||
Launcher.LaunchUriAsync(sourcesUri)
|
||||
.ConfigureAwait(false);
|
||||
}
|
||||
catch (Exception ex)
|
||||
|
||||
Reference in New Issue
Block a user