Skip to content

Commit 2c03fab

Browse files
committed
Add support icon to report a problem.
1 parent f9d810b commit 2c03fab

File tree

6 files changed

+53
-3
lines changed

6 files changed

+53
-3
lines changed

FormMain.Designer.cs

+23-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

FormMain.cs

+13
Original file line numberDiff line numberDiff line change
@@ -91,5 +91,18 @@ private void toolStripStatusWeb_Click(object sender, EventArgs e)
9191
System.Diagnostics.Debug.WriteLine(ex);
9292
}
9393
}
94+
95+
private void toolStripStatusSupport_Click(object sender, EventArgs e)
96+
{
97+
try
98+
{
99+
System.Diagnostics.Process.Start(
100+
new System.Diagnostics.ProcessStartInfo("https://github.com/sntcz/Base64Decoder/issues") { UseShellExecute = true });
101+
}
102+
catch (Exception ex)
103+
{
104+
System.Diagnostics.Debug.WriteLine(ex);
105+
}
106+
}
94107
}
95108
}

Properties/Resources.Designer.cs

+10
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Properties/Resources.resx

+4
Original file line numberDiff line numberDiff line change
@@ -117,4 +117,8 @@
117117
<resheader name="writer">
118118
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
119119
</resheader>
120+
<assembly alias="System.Windows.Forms" name="System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
121+
<data name="support" type="System.Resources.ResXFileRef, System.Windows.Forms">
122+
<value>..\support.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
123+
</data>
120124
</root>

README.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,6 @@ Simple base64 decoder with hex view.
44
## License
55
MIT
66

7-
<a target="_blank" href="https://icons8.com/icon/QxJQfwbuT6c2/base-64">Base 64</a> icon by <a target="_blank" href="https://icons8.com">Icons8</a>
7+
<a target="_blank" href="https://icons8.com/icon/QxJQfwbuT6c2/base-64">Base 64</a> icon by <a target="_blank" href="https://icons8.com">Icons8</a>
8+
9+
<a target="_blank" href="https://icons8.com/icon/48ib3dCHzJee/support">Support</a> icon by <a target="_blank" href="https://icons8.com">Icons8</a>

support.png

376 Bytes
Loading

0 commit comments

Comments
 (0)