Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Knossos.NET/Classes/Knossos.cs
Original file line number Diff line number Diff line change
Expand Up @@ -601,9 +601,9 @@ await Dispatcher.UIThread.Invoke(async () =>
}
else
{
Log.Add(Log.LogSeverity.Error, "Knossos.CheckKnetUpdates()", "Get latest version from github resulted in null or tag_name being null.");
Log.Add(Log.LogSeverity.Error, "Knossos.CheckKnetUpdates()", "Get latest version from GitHub resulted in null or tag_name being null.");
if (forceUpdateDownload)
Console.WriteLine("Update Error! Get latest version from github resulted in null or tag_name being null.");
Console.WriteLine("Update Error! Get latest version from GitHub resulted in null or tag_name being null.");
}
}
catch (Exception ex)
Expand Down Expand Up @@ -881,7 +881,7 @@ public static async void PlayMod(Mod mod, FsoExecType fsoExecType, bool standalo
var queryConflict = dependencyList.GroupBy(x => x.id).Where(g => g.Count() > 1).ToList();
if (queryConflict.Count() > 0)
{
var outputString = "There is a dependency conflict for this mod: " + mod + " Knet will try to adjust but the mod may present issues or not work at all. \nThis may be be resolved manually using custom dependencies for this mod.\n";
var outputString = "There is a dependency conflict for this mod: " + mod + " KnossosNET will try to adjust but the mod may present issues or not work at all. \nThis may be be resolved manually using custom dependencies for this mod.\n";
foreach (var conflictGroup in queryConflict)
{
foreach (var conflictDep in conflictGroup)
Expand Down
2 changes: 1 addition & 1 deletion Knossos.NET/ViewModels/GlobalSettingsViewModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1125,7 +1125,7 @@ internal async void BrowseFolderCommand()
{
Log.Add(Log.LogSeverity.Error, "GlobalSettings.BrowseFolderCommand() - test read/write was not successful: ", ex);
await Dispatcher.UIThread.Invoke(async () => {
await MessageBox.Show(null, "Knossos was not able to write to this folder. Please select another library folder.", "Cannot Select Folder", MessageBox.MessageBoxButtons.OK);
await MessageBox.Show(null, "KnossosNET was not able to write to this folder. Please select another library folder.", "Cannot Select Folder", MessageBox.MessageBoxButtons.OK);
}).ConfigureAwait(false);
}
}
Expand Down
4 changes: 2 additions & 2 deletions Knossos.NET/ViewModels/TaskViewModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ public int NumberOfTasks()
{
await Dispatcher.UIThread.InvokeAsync(async () =>
{
await MessageBox.Show(MainWindow.instance!, "Knossos library path is not set! Before installing mods go to settings and select a library folder.", "Error", MessageBox.MessageBoxButtons.OK);
await MessageBox.Show(MainWindow.instance!, "KnossosNET library path is not set! Before installing mods go to settings and select a library folder.", "Error", MessageBox.MessageBoxButtons.OK);
});
return null;
}
Expand All @@ -269,7 +269,7 @@ public async void InstallMod(Mod mod, List<ModPackage>? reinstallPkgs = null, bo
{
await Dispatcher.UIThread.InvokeAsync(async () =>
{
await MessageBox.Show(MainWindow.instance!, "Knossos library path is not set! Before installing mods go to settings and select a library folder.", "Error", MessageBox.MessageBoxButtons.OK);
await MessageBox.Show(MainWindow.instance!, "KnossosNET library path is not set! Before installing mods go to settings and select a library folder.", "Error", MessageBox.MessageBoxButtons.OK);
});
return;
}
Expand Down
2 changes: 1 addition & 1 deletion Knossos.NET/ViewModels/Templates/Tasks/CreateModVersion.cs
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ public async Task<bool> CreateModVersion(Mod oldMod, string newVersion, Cancella

using (StreamWriter writer = new StreamWriter(newDir + Path.DirectorySeparatorChar + "knossos_net_download.token"))
{
writer.WriteLine("Warning: This token indicates an incomplete folder copy. If this token is present on the next Knet startup this folder WILL BE DELETED.");
writer.WriteLine("Warning: This token indicates an incomplete folder copy. If this token is present on the next KnossosNET startup this folder WILL BE DELETED.");
}

await KnUtils.CopyDirectoryAsync(currentDir.FullName, newDir, true, cancellationTokenSource, copyCallback);
Expand Down
2 changes: 1 addition & 1 deletion Knossos.NET/ViewModels/Templates/Tasks/InstallTool.cs
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ public async Task<bool> InstallTool(Tool tool, Tool? updateFrom, Action<bool> fi
var libPath = Knossos.GetKnossosLibraryPath();

if (string.IsNullOrEmpty(libPath))
throw new TaskCanceledException("Knossos library path is empty!");
throw new TaskCanceledException("KnossosNET library path is empty!");

var toolPath = Path.Combine(libPath, "tools", tool.name);
if (updateFrom != null)
Expand Down
2 changes: 1 addition & 1 deletion Knossos.NET/ViewModels/Windows/DevModCreateNewViewModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ private async Task<bool> Verify()
//Is library set?
if(Knossos.GetKnossosLibraryPath() == null )
{
await MessageBox.Show(MainWindow.instance, "Knossos library path is not set. Go to the settings tab and set the Knossos libreary location.", "Validation error", MessageBox.MessageBoxButtons.OK);
await MessageBox.Show(MainWindow.instance, "KnossosNET library path is not set. Go to the settings tab and set the KnossosNET library location.", "Validation error", MessageBox.MessageBoxButtons.OK);
return false;
}
//Version
Expand Down
4 changes: 2 additions & 2 deletions Knossos.NET/ViewModels/Windows/Fs2InstallerViewModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ internal async void InstallFS2Command()
{
if(Knossos.GetKnossosLibraryPath() == null)
{
await MessageBox.Show(MainWindow.instance!, "The Knossos library path is not set, first set the library path in the settings tab before installing FS2 Retail.", "Library path is null", MessageBox.MessageBoxButtons.OK);
await MessageBox.Show(MainWindow.instance!, "The KnossosNET library path is not set, first set the library path in the settings tab before installing FS2 Retail.", "Library path is null", MessageBox.MessageBoxButtons.OK);
return;
}

Expand Down Expand Up @@ -310,7 +310,7 @@ await Task.Run(() => {
}
}
catch { }
InstallText = "Install Complete!, Knossos is reloading the library...";
InstallText = "Install Complete!, KnossosNET is reloading the library...";
Knossos.ResetBasePath();
if(gogExe != null)
{
Expand Down
Loading