-
Notifications
You must be signed in to change notification settings - Fork 40
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
bugfix for issue #12 - accept urls without protocol
- Loading branch information
Showing
10 changed files
with
207 additions
and
21 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
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 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 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
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 |
---|---|---|
|
@@ -7,21 +7,29 @@ | |
using System.Text; | ||
using System.Windows.Forms; | ||
|
||
namespace BrowserSelect { | ||
public partial class frm_About : Form { | ||
public frm_About() { | ||
namespace BrowserSelect | ||
{ | ||
public partial class frm_About : Form | ||
{ | ||
public frm_About() | ||
{ | ||
InitializeComponent(); | ||
} | ||
|
||
private void frm_About_Load(object sender, EventArgs e) { | ||
private void frm_About_Load(object sender, EventArgs e) | ||
{ | ||
pictureBox1.Image = IconExtractor.fromFile(Application.ExecutablePath).ToBitmap(); | ||
var v = Application.ProductVersion; | ||
lab_ver.Text = "v" + v.Remove(v.Length - 2); | ||
} | ||
|
||
private void linkLabel1_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e) { | ||
private void linkLabel1_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e) | ||
{ | ||
System.Diagnostics.Process.Start("Mailto:[email protected]"); | ||
} | ||
|
||
private void linkLabel2_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e) { | ||
private void linkLabel2_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e) | ||
{ | ||
System.Diagnostics.Process.Start(((LinkLabel)sender).Text); | ||
} | ||
|
||
|
@@ -30,5 +38,20 @@ private void frm_About_KeyDown(object sender, KeyEventArgs e) | |
if (e.KeyCode == Keys.Escape) | ||
Close(); | ||
} | ||
|
||
private void linkLabel3_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e) | ||
{ | ||
System.Diagnostics.Process.Start("bitcoin:1BA5Ndo24jtRgTEsvmGkrqRWTaJS4F3zNh"); | ||
} | ||
|
||
private void btn_close_Click(object sender, EventArgs e) | ||
{ | ||
Close(); | ||
} | ||
|
||
private void btn_bitcoin_copy_Click(object sender, EventArgs e) | ||
{ | ||
Clipboard.SetText("1BA5Ndo24jtRgTEsvmGkrqRWTaJS4F3zNh"); | ||
} | ||
} | ||
} |
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