Files
ChanSort/source/ChanSort/AboutForm.cs
Horst Beham 6584a666c6 - Philips: fixed error saving the Favorite.xml file (effects Philips "ChannelMap_105" and later file format versions)
- added Hungarian translation (credits to Istvan Krisko)
- Sony XML: fixed display of wrong DVB-C cable channel/transponder number
- LG webOS 5: unfortunately no news yet, but the insight that some "CX" models run on webOS 3.6 and others on 5.1, using
  different file formats.
2020-12-05 21:55:43 +01:00

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
Jakub Driver: Polish translation
Marco Sánchez: Spanish Translation
Pavel Mizera: Czech translation
Vitor Martins Augusto: Portuguese translation
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);
}
}
}