Skip to content

Commit

Permalink
Fixed Issues With Thunderstore Packager.
Browse files Browse the repository at this point in the history
  • Loading branch information
BigSpice committed Jun 8, 2022
1 parent 5ed2d6c commit 993256d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions MainWindow.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9240,7 +9240,7 @@ void create_Manifest(string Output_Folder)
""version_number"":" + '\u0022' + Mod_version_number.Text.Trim() + '\u0022' + @",
""website_url"": " + '\u0022' + Mod_website_url.Text.Trim() + '\u0022' + @",
""description"": " + '\u0022' + Mod_description.Text.Trim() + '\u0022' + @",
""dependencies"": [" + '\u0022' + Mod_dependencies+ '\u0022' + "]" +
""dependencies"": [" + '\u0022' + Mod_dependencies.Text+ '\u0022' + "]" +
"\n}";
}
else {
Expand All @@ -9249,7 +9249,7 @@ void create_Manifest(string Output_Folder)
""version_number"":" + '\u0022' + Mod_version_number.Text.Trim() + '\u0022' + @",
""website_url"": " + '\u0022' + Mod_website_url.Text.Trim() + '\u0022' + @",
""description"": " + '\u0022' + Mod_description.Text.Trim() + '\u0022' + @",
""dependencies"": [" + '\u0022' + "northstar-Northstar-" + Properties.Settings.Default.Version.Remove(0, 1) + '\u0022' + "]" +
""dependencies"":" + '\u0022' + "[" + '\u0022' + "northstar-Northstar-" + Properties.Settings.Default.Version.Remove(0, 1) + '\u0022' + "]" +
"\n}";
}
saveAsyncFile(Output, Output_Folder + "/" + "manifest.json", false, false);
Expand Down

0 comments on commit 993256d

Please sign in to comment.