Skip to content

Commit

Permalink
Merge pull request #17 from RyanWalpoleEnterprises/220302
Browse files Browse the repository at this point in the history
Development Branch: v220302 - Changes to merge into stable release, releasing v220302 for production
  • Loading branch information
RyanWalpole authored Mar 8, 2022
2 parents 8795981 + a59441d commit 4f26b53
Show file tree
Hide file tree
Showing 48 changed files with 3,148 additions and 66 deletions.
17 changes: 17 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@

source-code/Mod Manager/Stardew Mod Manager/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache
source-code/Mod Manager/Stardew Mod Manager/obj/Release/Stardew Mod Manager.csproj.AssemblyReference.cache
source-code/Mod Manager/Stardew Mod Manager/obj/Release/Stardew Mod Manager.csproj.GenerateResource.cache
source-code/Mod Manager/Stardew Mod Manager/obj/Release/Stardew Mod Manager.exe
source-code/Mod Manager/Stardew Mod Manager/obj/Release/Stardew Mod Manager.pdb
source-code/Mod Manager/Stardew Mod Manager/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache
source-code/Mod Manager/Stardew Mod Manager/obj/Release/Stardew Mod Manager.csproj.AssemblyReference.cache
source-code/Mod Manager/Stardew Mod Manager/obj/Release/Stardew Mod Manager.csproj.GenerateResource.cache
source-code/Mod Manager/Stardew Mod Manager/obj/Release/Stardew Mod Manager.exe
source-code/Mod Manager/Stardew Mod Manager/obj/Release/Stardew Mod Manager.pdb
source-code/Mod Manager/Stardew Mod Manager/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache
source-code/Mod Manager/Stardew Mod Manager/obj/Release/Stardew Mod Manager.pdb
source-code/Mod Manager/Stardew Mod Manager/obj/Release/Stardew Mod Manager.exe
source-code/Mod Manager/Stardew Mod Manager/obj/Release/Stardew Mod Manager.csproj.GenerateResource.cache
source-code/Mod Manager/Stardew Mod Manager/obj/Release/Stardew Mod Manager.csproj.AssemblyReference.cache
source-code/Mod Manager/Stardew Mod Manager/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,16 @@ Create mod presets so you can quickly mass enable and disable groups of mods dep
4. <b>Quick Modpack Install</b>
Install entire modpacks with just a single file. Simply install the .sdvmp file and let the Mod Manager find the mods, make sure you're running the minimum SMAPI version or above and even let the program create you a preset with the mods defined for the modpack. It's never been easier to install a collection of mods.

5. <b>Backup and Manage Game Saves</b>
Create backups and delete any of your farms with built in Game Save Management tools.

## How To
Access a series of helpful articles and how-to guides for how to download, install and use the Stardew Valley Mod Manager.

[Visit our Wiki](https://github.com/RyanWalpoleEnterprises/Stardew-Valley-Mod-Manager/wiki)

## Download
Download the most recent version of Stardew Valley Mod Manager by visiting our releases page.
Once you've downloaded and installed the application for the first time, you'll be able to check (and download) new updates directly from the program!

[View Latest Release](https://github.com/RyanWalpoleEnterprises/Stardew-Valley-Mod-Manager/releases/latest) | [View All Releases](https://github.com/RyanWalpoleEnterprises/Stardew-Valley-Mod-Manager/releases)
292 changes: 292 additions & 0 deletions license.rtf

Large diffs are not rendered by default.

Binary file modified source-code/Mod Manager/.vs/Mod Manager/v16/.suo
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ private void Continue_Click(object sender, EventArgs e)
if (Directory.GetFiles(AttemptedPath, "Stardew Valley.exe").Length == 0)
{
//No Stardew Valley Installation Found
MessageBox.Show("We weren't able to find a valid Stardew Valley installation at that directory. Try watching the GIF again, making sure to follow the instructions closely - then try again. The path should include words like 'steamapps', 'common' and 'Stardew Valley'", "Stardew Valley Modded Framework", MessageBoxButtons.OK, MessageBoxIcon.Error);
MessageBox.Show("We weren't able to find a valid Stardew Valley installation at that directory. Try watching the GIF again, making sure to follow the instructions closely - then try again. The path should include words like 'steamapps', 'common' and 'Stardew Valley'", "Setup | Stardew Valley Modded Framework", MessageBoxButtons.OK, MessageBoxIcon.Error);
}
else
{
Expand All @@ -50,23 +50,23 @@ private void Continue_Click(object sender, EventArgs e)
//Show SMAPI Install Guide
//SDVDirPath.SelectAll();
SDVDirPath.Copy();
MessageBox.Show("You don't seem to have SMAPI installed. We'll run you through the install process now. Once you have completed the installation of SMAPI, come back to this window and click 'Continue'. If SMAPI asks for your game path, we've copied it to your clipboard - but it's the same path you just entered.");
MessageBox.Show("You don't seem to have SMAPI installed. We'll run you through the install process now. Once you have completed the installation of SMAPI, come back to this window and click 'Continue'. If SMAPI asks for your game path, we've copied it to your clipboard - but it's the same path you just entered.", "Setup | Stardew Valley Modded Framework", MessageBoxButtons.OK, MessageBoxIcon.Information);
try
{
string appPath = Path.GetDirectoryName(Application.ExecutablePath);
Process.Start(appPath + @"\smapi.bat");
}
catch
{
MessageBox.Show("SMAPI Installer was unable to launch.");
MessageBox.Show("SMAPI Installer was unable to launch.", "Setup | Stardew Valley Modded Framework", MessageBoxButtons.OK, MessageBoxIcon.Error);
}
}
}
}
catch
{
//Path not valid.
MessageBox.Show("The text you entered doesn't seem to be a valid file path. Please re-read the instructions and try again.", "Stardew Valley Modded Framework", MessageBoxButtons.OK, MessageBoxIcon.Error);
MessageBox.Show("The text you entered doesn't seem to be a valid file path. Please re-read the instructions and try again.", "Setup | Stardew Valley Modded Framework", MessageBoxButtons.OK, MessageBoxIcon.Error);
}
}
}
Expand Down
Loading

0 comments on commit 4f26b53

Please sign in to comment.