Skip to content

Commit

Permalink
Updated GitHub Link.
Browse files Browse the repository at this point in the history
  • Loading branch information
thebitbrine committed Dec 4, 2017
1 parent 0c942ac commit 278c1c5
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 21 deletions.
33 changes: 17 additions & 16 deletions ProxyThrough/Form1.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 9 additions & 5 deletions ProxyThrough/Form1.cs
Original file line number Diff line number Diff line change
Expand Up @@ -25,16 +25,14 @@ public partial class Form1 : Form
public bool Connected = false;
public bool ListAvailable = false;
public bool PingDone = false;
public bool ReadyToPopulate = false;
private static bool settingsReturn, refreshReturn;

public List<ProxyItem> ProxyList = new List<ProxyItem>();
public List<string> RawList = new List<string>();

public bool ReadyToPopulate = false;
public string TempPath = System.IO.Path.GetTempPath() + "ProxyThroughList.json";
public string UIStatus = "Ready...";

private static bool settingsReturn, refreshReturn;
private UsefulMethods UM = new UsefulMethods();


#endregion Fields

Expand Down Expand Up @@ -388,11 +386,17 @@ private void StatusUpdater_Tick(object sender, EventArgs e)
SetProxyButton.Text = "Set Proxy";
}
}

private void GithubLink_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
{
Process.Start("https://github.com/thebitbrine/ProxyThrough/");
}

#endregion Methods

#region Classes


public class ProxyItem
{
#region Fields
Expand Down

0 comments on commit 278c1c5

Please sign in to comment.