mirror of
https://github.com/PredatH0r/ChanSort.git
synced 2026-01-14 11:22:03 +01:00
- Philips: ChannelMap formats 100-115 did not always fill "Source" and "Polarity" columns correctly - Philips: improved experimental support for Philips FLASH\_\*/\*.db file formats (read-only by default, can be enabled in Philips.ini for testing) - added Polish readme and updated translation (by JakubDriver)
43 lines
1.2 KiB
C#
43 lines
1.2 KiB
C#
using System.Collections.Generic;
|
|
using ChanSort.Api;
|
|
using DevExpress.XtraEditors;
|
|
|
|
namespace ChanSort.Ui
|
|
{
|
|
public partial class AboutForm :XtraForm
|
|
{
|
|
public AboutForm(IList<ISerializerPlugin> plugins)
|
|
{
|
|
InitializeComponent();
|
|
this.gcPlugins.DataSource = plugins;
|
|
|
|
this.txtCredits.Text =
|
|
@"
|
|
Ciprian Leca: Romanian translation
|
|
Istvan Krisko: Hungarian translation
|
|
JakubDriver: Polish translation
|
|
Marco Sánchez: Spanish Translation
|
|
Pavel Mizera: Czech translation
|
|
Vitor Martins Augusto: Portuguese translation
|
|
umitseyhan75, Yaşar Tuna Zorlu: Turkish Translation
|
|
|
|
TCr82 (Github): Support for VDR's channels.conf file format
|
|
";
|
|
}
|
|
|
|
private void lnkLicense_OpenLink(object sender, DevExpress.XtraEditors.Controls.OpenLinkEventArgs e)
|
|
{
|
|
BrowserHelper.OpenUrl("http://www.gnu.org/licenses/gpl.html");
|
|
}
|
|
|
|
private void lnkEmail_OpenLink(object sender, DevExpress.XtraEditors.Controls.OpenLinkEventArgs e)
|
|
{
|
|
BrowserHelper.OpenMail("mailto:horst@beham.biz&subject=ChanSort%20" + MainForm.AppVersion);
|
|
}
|
|
|
|
private void lnkDownload_OpenLink(object sender, DevExpress.XtraEditors.Controls.OpenLinkEventArgs e)
|
|
{
|
|
BrowserHelper.OpenUrl(this.lnkDownload.Text);
|
|
}
|
|
}
|
|
} |