mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
Merge pull request #48 from tr4wzified/typofixes
Fix typos in various files
This commit is contained in:
commit
de373ca9e2
@ -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
|
||||||
|
@ -65,7 +65,7 @@ Overview video [`https://www.youtube.com/watch?v=5Fwr0Chtcuc`]
|
|||||||
|
|
||||||
|
|
||||||
1) Download Wabbajack and install it somewhere outside of your normal Mod Organizer 2 folder
|
1) Download Wabbajack and install it somewhere outside of your normal Mod Organizer 2 folder
|
||||||
(otherwise Wabbajack will try to figure out how to install itself and that might cuase a collapse in the time-space
|
(otherwise Wabbajack will try to figure out how to install itself and that might cause a collapse in the time-space
|
||||||
continuum).
|
continuum).
|
||||||
2) Make sure every archive you used in your MO2 profile has some sort of download information attached.
|
2) Make sure every archive you used in your MO2 profile has some sort of download information attached.
|
||||||
* If the file was downloaded via MO2 you're good, no extra work is needed
|
* If the file was downloaded via MO2 you're good, no extra work is needed
|
||||||
|
@ -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)
|
||||||
{
|
{
|
||||||
|
@ -63,7 +63,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.Any(a => a.IniData?.General?.gameName != null))
|
if (IndexedArchives.Any(a => a.IniData?.General?.gameName != null))
|
||||||
{
|
{
|
||||||
@ -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()
|
||||||
{
|
{
|
||||||
@ -507,7 +507,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,
|
||||||
|
Loading…
Reference in New Issue
Block a user