-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
636f106
commit 9d2b5b9
Showing
25 changed files
with
2,339 additions
and
78 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
63 changes: 59 additions & 4 deletions
63
forms/AboutWindow.Designer.cs → forms/AboutForm.Designer.cs
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
namespace ThemModdingHerds.VelvetBeautifier | ||
{ | ||
public partial class AboutForm : Form | ||
{ | ||
public AboutForm() | ||
{ | ||
InitializeComponent(); | ||
} | ||
|
||
private void GitHubLink_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e) => Utils.OpenLink("https://github.com/ThemModdingHerds/velvet-beautifier"); | ||
|
||
private void GameBananaLink_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e) => Utils.OpenLink("https://gamebanana.com/tools/15674"); | ||
|
||
private void NightTheFoxLink_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e) => Utils.OpenLink("https://github.com/N1ghtTheF0x"); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.ComponentModel; | ||
using System.Data; | ||
using System.Drawing; | ||
using System.Linq; | ||
using System.Security.Policy; | ||
using System.Text; | ||
using System.Threading.Tasks; | ||
using System.Windows.Forms; | ||
|
||
namespace ThemModdingHerds.VelvetBeautifier | ||
{ | ||
public partial class DownloadForm : Form | ||
{ | ||
private string? Url {get;} | ||
private string? UnzippedPath {get;} | ||
public DownloadForm(GameBananaMod mod,string url) | ||
{ | ||
InitializeComponent(); | ||
Url = url; | ||
Text = "Install " + mod.ModName + '?'; | ||
ModNameLabel.Text = mod.ModName; | ||
ModAuthorLabel.Text = "by " + mod.OwnerName; | ||
ModDescriptionBox.Text = mod.Body; | ||
} | ||
public DownloadForm(Mod mod,string unzippedpath) | ||
{ | ||
InitializeComponent(); | ||
UnzippedPath = unzippedpath; | ||
Text = "Install " + mod.Info.Name; | ||
ModNameLabel.Text = mod.Info.Name; | ||
ModAuthorLabel.Text = "by " + mod.Info.Author; | ||
ModDescriptionBox.Text = mod.Info.Description; | ||
} | ||
public DownloadForm(GameBananaMod mod): this(mod,mod.Files.Values.ToArray()[0].DownloadUrl) | ||
{ | ||
|
||
} | ||
} | ||
} |
Oops, something went wrong.