mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
Fix typos in various files
This commit is contained in:
parent
30b592f16e
commit
2512212d38
@ -1,6 +1,6 @@
|
|||||||
# Contributing to Wabbajack
|
# Contributing to Wabbajack
|
||||||
|
|
||||||
The following is a set of guidelines for contributing to the `halgari/wabbajack` repo on Github. These are guildeines but not rules so be free to propose changes.
|
The following is a set of guidelines for contributing to the `halgari/wabbajack` repo on GitHub. These are guidelines but not rules so be free to propose changes.
|
||||||
|
|
||||||
## How Can I Contribute?
|
## How Can I Contribute?
|
||||||
|
|
||||||
@ -39,7 +39,7 @@ You can download it [here](https://visualstudio.microsoft.com/vs/) but make sure
|
|||||||
|
|
||||||
The installer may have selected other options as well but these are the most important ones.
|
The installer may have selected other options as well but these are the most important ones.
|
||||||
|
|
||||||
### Starting developement
|
### Starting development
|
||||||
|
|
||||||
1) **Fork and clone the project:** go to the Github repo page, click the fork button, copy the url from the forked repo, navigate to your project folder, open Git Bash or normal command prompt and type `git clone url name` and replace url with the copied url and name with the folder name
|
1) **Fork and clone the project:** go to the Github repo page, click the fork button, copy the url from the forked repo, navigate to your project folder, open Git Bash or normal command prompt and type `git clone url name` and replace url with the copied url and name with the folder name
|
||||||
2) **Open Wabbajack.sln** in Visual Studio 2019
|
2) **Open Wabbajack.sln** in Visual Studio 2019
|
||||||
|
@ -24,7 +24,7 @@ namespace Wabbajack.Common
|
|||||||
private static Action<string> _loggerFn;
|
private static Action<string> _loggerFn;
|
||||||
private static Action<string, int> _statusFn;
|
private static Action<string, int> _statusFn;
|
||||||
|
|
||||||
private static readonly string[] Suffix = {"B", "KB", "MB", "GB", "TB", "PB", "EB"}; //Longs run out around EB
|
private static readonly string[] Suffix = {"B", "KB", "MB", "GB", "TB", "PB", "EB"}; // Longs run out around EB
|
||||||
|
|
||||||
public static void SetLoggerFn(Action<string> f)
|
public static void SetLoggerFn(Action<string> f)
|
||||||
{
|
{
|
||||||
|
@ -48,7 +48,7 @@ namespace Wabbajack
|
|||||||
if (Assembly.GetEntryAssembly().Location.ToLower().Contains("\\downloads\\"))
|
if (Assembly.GetEntryAssembly().Location.ToLower().Contains("\\downloads\\"))
|
||||||
{
|
{
|
||||||
MessageBox.Show(
|
MessageBox.Show(
|
||||||
"This app seems to be running inside a folder called `Downloads`, such folders are often highly monitored by Antivirus software and they can often " +
|
"This app seems to be running inside a folder called `Downloads`, such folders are often highly monitored by antivirus software and they can often " +
|
||||||
"conflict with the operations Wabbajack needs to perform. Please move this executable outside of your `Downloads` folder and then restart the app.",
|
"conflict with the operations Wabbajack needs to perform. Please move this executable outside of your `Downloads` folder and then restart the app.",
|
||||||
"Cannot run inside `Downloads`",
|
"Cannot run inside `Downloads`",
|
||||||
MessageBoxButton.OK,
|
MessageBoxButton.OK,
|
||||||
|
@ -232,7 +232,7 @@ namespace Wabbajack
|
|||||||
|
|
||||||
InstallDirectives = results.Where(i => !(i is IgnoredDirectly)).ToList();
|
InstallDirectives = results.Where(i => !(i is IgnoredDirectly)).ToList();
|
||||||
|
|
||||||
Info("Getting nexus api_key please click authorize if a browser window appears");
|
Info("Getting Nexus api_key, please click authorize if a browser window appears");
|
||||||
|
|
||||||
if (IndexedArchives.OfType<NexusMod>().Any())
|
if (IndexedArchives.OfType<NexusMod>().Any())
|
||||||
{
|
{
|
||||||
@ -439,7 +439,7 @@ namespace Wabbajack
|
|||||||
}
|
}
|
||||||
else if (general.directURL != null && general.directURL.StartsWith("http://www.mediafire.com/file/"))
|
else if (general.directURL != null && general.directURL.StartsWith("http://www.mediafire.com/file/"))
|
||||||
{
|
{
|
||||||
Error("Mediafire links are not currently supported");
|
Error("MediaFire links are not currently supported");
|
||||||
return null;
|
return null;
|
||||||
/*result = new MediaFireArchive()
|
/*result = new MediaFireArchive()
|
||||||
{
|
{
|
||||||
@ -502,7 +502,7 @@ namespace Wabbajack
|
|||||||
installer.NexusAPIKey = NexusKey;
|
installer.NexusAPIKey = NexusKey;
|
||||||
if (!installer.DownloadArchive(result, false))
|
if (!installer.DownloadArchive(result, false))
|
||||||
Error(
|
Error(
|
||||||
$"Unable to resolve link for {found.Name}. If this is hosted on the nexus the file may have been removed.");
|
$"Unable to resolve link for {found.Name}. If this is hosted on the Nexus the file may have been removed.");
|
||||||
|
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
@ -88,7 +88,7 @@ namespace Wabbajack
|
|||||||
if (Directory.Exists(Path.Combine(Outputfolder, "mods")))
|
if (Directory.Exists(Path.Combine(Outputfolder, "mods")))
|
||||||
{
|
{
|
||||||
if (MessageBox.Show(
|
if (MessageBox.Show(
|
||||||
"There already appears to be a Mod Organize 2 install in this folder, are you sure you wish to continue" +
|
"There already appears to be a Mod Organizer 2 install in this folder, are you sure you wish to continue" +
|
||||||
" with installation? If you do, you may render both your existing install and the new modlist inoperable.",
|
" with installation? If you do, you may render both your existing install and the new modlist inoperable.",
|
||||||
"Existing MO2 installation in install folder",
|
"Existing MO2 installation in install folder",
|
||||||
MessageBoxButton.YesNo,
|
MessageBoxButton.YesNo,
|
||||||
@ -657,4 +657,4 @@ namespace Wabbajack
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user