Skip to content
This repository has been archived by the owner on Jan 22, 2020. It is now read-only.

Commit

Permalink
V2.7.5
Browse files Browse the repository at this point in the history
  • Loading branch information
szefo09 committed Jan 14, 2019
1 parent 12375c4 commit 6f923be
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 11 deletions.
28 changes: 21 additions & 7 deletions YgoProPatcher/Client.Designer.cs

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

6 changes: 3 additions & 3 deletions YgoProPatcher/Client.cs
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public YgoProPatcher()
_pool.Release(throttleValue);
toolTip1.SetToolTip(ReinstallCheckbox, "This will download the newest version of the YGOPro2 Client and install it.\nTHIS OPTION WILL OVERWRITE YOUR SETTINGS AND CUSTOM TEXTURES!");
toolTip1.SetToolTip(OverwriteCheckbox, "This will redownload all of the pictures in your picture folder.");
toolTip1.SetToolTip(gitHubDownloadCheckbox, "RECOMMENDED OPTION!\nThis will update your YGOPro2 with the newest cards, pictures and scripts.");
toolTip1.SetToolTip(gitHubDownloadCheckbox, "RECOMMENDED OPTION!\nThis will update your YGOPro2 with the newest cards, pictures.");
toolTip1.SetToolTip(YgoPro2Path, "Please select your YGOPro2 directory which contains all the YGOPro2 files.");
toolTip1.SetToolTip(YGOPRO2PathButton, "Please select your YGOPro2 directory which contains all the YGOPro2 files.");
toolTip1.SetToolTip(YgoProLinksPath, "Please select your YGOPro Percy directory which contains all the YGOPro Percy files.");
Expand Down Expand Up @@ -436,7 +436,7 @@ private void DownloadUsingCDB(List<string> listOfDownloadedCDBS, string destinat
{
DataClass db = new DataClass(cdb);
DataTable dt = db.SelectQuery("SELECT id FROM datas");
Status.Invoke(new Action(() => Status.Text = "Updating pictures and scripts using " + Path.GetFileName(cdb)));
Status.Invoke(new Action(() => Status.Text = "Updating pictures using " + Path.GetFileName(cdb)));
progressBar.Invoke(new Action(() => progressBar.Maximum = (dt.Rows.Count)));
progressBar.Invoke(new Action(() => progressBar.Value = 0));
string dlWebsitePics = Data.GetPicWebsite();
Expand Down Expand Up @@ -513,7 +513,7 @@ private async Task GitHubDownload(string destinationFolder)
CDBS = await DownloadCDBSFromGithub(destinationFolder);
await FileDownload("lflist.conf", Path.Combine(YgoPro2Path.Text, "config"), "https://raw.githubusercontent.com/Ygoproco/Live2017Links/master/", true);
await FileDownload("strings.conf", Path.Combine(YgoPro2Path.Text, "config"), Data.GetStringsWebsite(), true);
await GitDownloadFacesAsync();
GitDownloadFacesAsync();
progressBar.Invoke(new Action(() => { progressBar.Value = progressBar.Maximum; }));

DownloadUsingCDB(CDBS, destinationFolder);
Expand Down
2 changes: 1 addition & 1 deletion YgoProPatcher/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,4 @@
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("2.7.4.0")]
[assembly: AssemblyFileVersion("2.7.5.0")]

0 comments on commit 6f923be

Please sign in to comment.