some work

This commit is contained in:
2024-09-07 09:45:38 +02:00
parent f6219c0aa8
commit 043b14e9a9
32 changed files with 356 additions and 163 deletions

View File

@@ -4,7 +4,7 @@ namespace ModpackUpdater.Apps.Manager.Features.Workspaces.GitLabRepo;
internal class GitLabRepoWorkspaceConfig : WorkspaceConfig
{
public override string DisplayText => $"{RepoName ?? "?"} at {RepoBranche} on {InstanceUrl}";
public override string DisplayText => $"{RepoName ?? "?"} | {RepoBranche} | {InstanceUrl}";
public string? RepoName { get; set; }
@@ -18,5 +18,5 @@ internal class GitLabRepoWorkspaceConfig : WorkspaceConfig
public string FileLocationInstallJson { get; set; } = "install.json";
public string FileLocationUpdateJson { get; set; } = "update.json";
public string FileLocationUpdateJson { get; set; } = "updates.json";
}