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

Commit

Permalink
V2.6.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Przemysław Adamczyk committed Nov 20, 2018
1 parent 03ced6d commit c8554da
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 5 deletions.
22 changes: 20 additions & 2 deletions YgoProPatcher/Form1.Designer.cs

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

3 changes: 1 addition & 2 deletions YgoProPatcher/Form1.cs
Original file line number Diff line number Diff line change
Expand Up @@ -342,7 +342,7 @@ private async Task<List<string>> DownloadCDBSFromGithub(string destinationFolder

List<string> listOfCDBs = GitAccess.GetAllFilesWithExtensionFromYGOPRO("/", ".cdb");
string cdbFolder = Path.Combine(destinationFolder, "cdb");
if(!await FileDownload("cards.cdb", cdbFolder, "https://github.com/purerosefallen/ygopro-database/raw/master/locales/en-US/", true))
if(!await FileDownload("cards.cdb", cdbFolder, "https://github.com/szefo09/cdb/raw/master/", true))
{
await FileDownload("cards.cdb", cdbFolder, "https://github.com/shadowfox87/ygopro2/raw/master/cdb/", true);
}
Expand All @@ -353,7 +353,6 @@ private async Task<List<string>> DownloadCDBSFromGithub(string destinationFolder
listOfDownloadedCDBS.Add(Path.Combine(cdbFolder, "prerelease-nfw.cdb"));
}
List<Task> downloadList = new List<Task>();
listOfCDBs.RemoveAll(item => item.Contains("fit"));//Remove unnecessary fit* cdb
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.86.0")]
[assembly: AssemblyFileVersion("2.6.103.0")]

0 comments on commit c8554da

Please sign in to comment.