This repository has been archived by the owner on Nov 28, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
fUpdate.cs
65 lines (57 loc) · 2.3 KB
/
fUpdate.cs
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
58
59
60
61
62
63
64
65
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Net;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace meautosd
{
public partial class fUpdate : Form
{
public fUpdate()
{
InitializeComponent();
}
private void fUpdate_Load(object sender, EventArgs e)
{
lbClientVersion.Text = cConst.VERSION;
lbLatestVersion.Text = cUpdate.getOnelineFile(cConst.versionFileURL);
rtbChangelog.Text = cUpdate.getOnelineFile(cConst.changelogsFileURL);
}
private void richTextBox1_TextChanged(object sender, EventArgs e)
{
}
private void btOK_Click(object sender, EventArgs e)
{
this.Close();
}
private void button1_Click(object sender, EventArgs e)
{
try {
WebClient client = new WebClient();
client.DownloadProgressChanged += new DownloadProgressChangedEventHandler(dlProgressChanged);
client.DownloadFileCompleted += new AsyncCompletedEventHandler(dlComplete);
client.DownloadFileAsync(new Uri(cUpdate.getOnelineFile(cConst.updateFileURL)), "ameautosd_update.exe");
pbUpdate.Visible = true;
lbDlStatus.Visible = true;
} catch (Exception exc)
{
MessageBox.Show("Can not download update file. Perhaps, there is a problem with your net connection or the update file url is invalid. \n\n Exceprion: \n\n" + exc, "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
}
}
private void dlComplete(object sender, AsyncCompletedEventArgs e)
{
MessageBox.Show("Download completed. Update file location: \n\n" + AppDomain.CurrentDomain.BaseDirectory + "ameautosd_update.exe", "Update complete!", MessageBoxButtons.OK, MessageBoxIcon.Information);
Application.Exit();
}
private void dlProgressChanged(object sender, DownloadProgressChangedEventArgs e)
{
lbDlStatus.Text = e.BytesReceived / 1024 + " kB / " + e.TotalBytesToReceive / 1024 + " kB";
pbUpdate.Value = e.ProgressPercentage;
}
}
}