Skip to content

Commit

Permalink
Merge pull request #63 from Isayso/dev_ffprobe
Browse files Browse the repository at this point in the history
Dev 1.7
  • Loading branch information
Isayso authored Feb 25, 2022
2 parents f24e17c + 4e892d0 commit 5723a7d
Show file tree
Hide file tree
Showing 37 changed files with 6,759 additions and 4,378 deletions.
13 changes: 9 additions & 4 deletions KodiPlaylistEditorIPTV/AboutBox1.cs
Original file line number Diff line number Diff line change
Expand Up @@ -133,10 +133,15 @@ private void linkLabel1_LinkClicked(object sender, LinkLabelLinkClickedEventArgs

private void donateButton_Click(object sender, EventArgs e)
{
MessageBox.Show("Thank You for considering a donation. " + Environment.NewLine +
"I recived so far 1$ of donations and PayPal took 40ct fees." + Environment.NewLine +
"Small money donation doesn't make sense, Bigtec is making money and screw elections with it. " + Environment.NewLine + "So enjoy my small program!"
+ Environment.NewLine + "If you want to donate money, you find my donate link on th Github page, Thanks!");
using(AboutBox2 a = new AboutBox2())
{
a.ShowDialog();
}

//MessageBox.Show("Thank You for considering a donation. " + Environment.NewLine +
// "Paypal fee from 1$ donation is 40 ct." + Environment.NewLine +
// "Small money donation doesn't make sense, Bigtec is making money and screw elections with it. " + Environment.NewLine + "So enjoy my small program!"
// + Environment.NewLine + "If you want to donate money, you find my donate link on th Github page, Thanks!");
}
}
}
2 changes: 1 addition & 1 deletion KodiPlaylistEditorIPTV/AboutBox1.resx
Original file line number Diff line number Diff line change
Expand Up @@ -444,7 +444,7 @@ SPACE is AND in find box</value>
<value>315, 304</value>
</data>
<data name="linkLabel1.Size" type="System.Drawing.Size, System.Drawing">
<value>142, 20</value>
<value>132, 18</value>
</data>
<data name="linkLabel1.TabIndex" type="System.Int32, mscorlib">
<value>25</value>
Expand Down
133 changes: 133 additions & 0 deletions KodiPlaylistEditorIPTV/AboutBox2.Designer.cs

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

30 changes: 30 additions & 0 deletions KodiPlaylistEditorIPTV/AboutBox2.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;

namespace PlaylistEditor
{
public partial class AboutBox2 : Form
{
public AboutBox2()
{
InitializeComponent();
}

private void label1_Click(object sender, EventArgs e)
{
Clipboard.SetText("bc1q0cte24tuax2kx25kypeqtewk73rvggqtqw9pzc");
}

private void donateButton_Click(object sender, EventArgs e)
{
System.Diagnostics.Process.Start("https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=8FF26SM3X8UAN");
}
}
}
Loading

0 comments on commit 5723a7d

Please sign in to comment.