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

Commit

Permalink
V2.6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Przemysław Adamczyk committed Nov 3, 2018
1 parent 1ec8c44 commit 50ddbd2
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
7 changes: 5 additions & 2 deletions YgoProPatcher/Form1.cs
Original file line number Diff line number Diff line change
Expand Up @@ -346,9 +346,12 @@ private async Task<List<string>> DownloadCDBSFromGithub(string destinationFolder
{
await FileDownload("cards.cdb", cdbFolder, "https://github.com/shadowfox87/ygopro2/raw/master/cdb/", true);
}
await FileDownload("prerelease-nfw.cdb", cdbFolder, "https://github.com/szefo09/cdb/raw/master/", true);
progressBar.Invoke(new Action(() => progressBar.Maximum = listOfCDBs.Count));
List<string> listOfDownloadedCDBS = new List<string>(){Path.Combine(cdbFolder,"cards.cdb" ), Path.Combine(cdbFolder, "prerelease-nfw.cdb") };
List<string> listOfDownloadedCDBS = new List<string>(){Path.Combine(cdbFolder,"cards.cdb" )};
if (await FileDownload("prerelease-nfw.cdb", cdbFolder, "https://github.com/szefo09/cdb/raw/master/", true))
{
listOfDownloadedCDBS.Add(Path.Combine(cdbFolder, "prerelease-nfw.cdb"));
}
List<Task> downloadList = new List<Task>();
foreach (string cdb in listOfCDBs)
{
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.6.10.0")]
[assembly: AssemblyFileVersion("2.6.37.0")]

0 comments on commit 50ddbd2

Please sign in to comment.