blob: 8496fa538aace133096494341ab56fdc42217e11 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
/* frmUpdater.cs $
This file is part of the HandBrake source code.
Homepage: <http://handbrake.fr>.
It may be used under the terms of the GNU General Public License. */
using System;
using System.Windows.Forms;
namespace Handbrake
{
public partial class frmUpdater : Form
{
Functions.AppcastReader appcast = new Functions.AppcastReader();
public frmUpdater()
{
InitializeComponent();
appcast.getInfo(); // Initializes the appcast
getRss();
setVersions();
}
private void getRss()
{
wBrowser.DocumentText = "<font face=\"verdana\" size=\"1\">" + appcast.versionInfo() + "</font>";
}
private void setVersions()
{
string old = "(You have: " + Properties.Settings.Default.hb_version.Trim() + " / " + Properties.Settings.Default.hb_build.ToString().Trim() + ")";
string newBuild = appcast.version().Trim() + " (" + appcast.build() + ")";
lbl_update_text.Text = "HandBrake " + newBuild + " is now available. " + old;
}
private void btn_installUpdate_Click(object sender, EventArgs e)
{
frmDownload download = new frmDownload(appcast.downloadFile());
download.Show();
this.Close();
}
private void btn_remindLater_Click(object sender, EventArgs e)
{
this.Close();
}
private void btn_skip_Click(object sender, EventArgs e)
{
Properties.Settings.Default.skipversion = int.Parse(appcast.build());
Properties.Settings.Default.Save();
this.Close();
}
}
}
|