diff --git a/src/.vs/Unity Downloader/v17/.suo b/src/.vs/Unity Downloader/v17/.suo index a22ef83..f0578c1 100644 Binary files a/src/.vs/Unity Downloader/v17/.suo and b/src/.vs/Unity Downloader/v17/.suo differ diff --git a/src/Unity Downloader/AppDownloadForm.cs b/src/Unity Downloader/AppDownloadForm.cs index 85e0f58..e9e075f 100644 --- a/src/Unity Downloader/AppDownloadForm.cs +++ b/src/Unity Downloader/AppDownloadForm.cs @@ -14,8 +14,8 @@ public partial class AppDownloadForm : Form { private Form LastForm = new Form(); - private UnityReleaseModule ParentModule; private UnityReleaseModule CurrentModule; + private List PendingSubModules = new List(); private string CurrentFilePath = ""; private string ProgressFilePath = ""; @@ -43,6 +43,9 @@ public AppDownloadForm(Form lastForm, UnityReleaseModule module) LastForm = lastForm; CurrentModule = module; + if(CurrentModule.SubModules != null && CurrentModule.SubModules.Count != 0) + PendingSubModules = FindAllSubModules(); + tempDownloadPath = Path.Combine(Path.GetTempPath(), "unity_downloader", MainForm.SelectedEditor); if (!Directory.Exists(tempDownloadPath)) Directory.CreateDirectory(tempDownloadPath); @@ -93,7 +96,7 @@ public AppDownloadForm(Form lastForm, UnityReleaseModule module) TransferRateLabel.Text = "Transfer Rate : 0 MB/Sec"; TimeLeftLabel.Text = "Time Left : Calculating..."; - ShowPendingText(CurrentModule.SubModules); + ShowPendingText(); InitializeProgressBars(); @@ -102,6 +105,38 @@ public AppDownloadForm(Form lastForm, UnityReleaseModule module) StartDownload(); } + public List FindAllSubModules() + { + var matchedSubModules = new List(); + + var allModules = MainForm.AllReleaseModules; + var subModels = CurrentModule.SubModules; + + foreach (var module in subModels) + { + AddSubModulesRecursively(allModules, matchedSubModules, module); + } + + return matchedSubModules; + } + + private void AddSubModulesRecursively(List allModules, List matchedSubModules, SubModule subModule) + { + var matchedModule = allModules.Find(m => m.Name == subModule.Name); + if (matchedModule != null) + { + matchedSubModules.Add(matchedModule); + } + + if (subModule.SubModules != null && subModule.SubModules.Count > 0) + { + foreach (var nestedSubModule in subModule.SubModules) + { + AddSubModulesRecursively(allModules, matchedSubModules, nestedSubModule); + } + } + } + private void InitializeProgressBars() { for (int i = 0; i < progressBars.Length; i++) @@ -126,6 +161,8 @@ public void UpdateProgressBar(int chunkIndex, int value) } } + private bool isInitialDownload = true; + private async void StartDownload() { try @@ -142,7 +179,7 @@ private async void StartDownload() LogsFilePath = Path.Combine(tempDownloadPath, $"Log.log"); // Show Download State -                AddLog($"-------------------- [{DateTime.Now}] New Download Starting. Name: {CurrentModule.Name}, Url: {CurrentModule.Url}, SubModels: {GetModelSubModels(CurrentModule.SubModules)} --------------------"); +                AddLog($"-------------------- [{DateTime.Now}] New Download Starting. Name: {CurrentModule.Name}, Url: {CurrentModule.Url}, SubModels: {GetModelSubModels()} --------------------", false);                 // Show Logs Path                 AddLog($"Logs file can be found in \"{LogsFilePath}\""); @@ -153,17 +190,27 @@ private async void StartDownload()                 // Check if a progress file exists                 if (File.Exists(ProgressFilePath)) { -                    // Prompt the user to continue from the saved progress -                    DialogResult result = MessageBox.Show( + // Prompt the user to continue from the saved progress + DialogResult result = isInitialDownload ? MessageBox.Show( $"A save file was found for {CurrentModule.Name}. Do you want to continue from the saved file?", "System Confirmation", MessageBoxButtons.YesNo, MessageBoxIcon.Information - ); - -                    // Handle the user's choice -                    if (result == DialogResult.Yes) - await downloader.DownloadFileTaskAsync(DownloadProgress = LoadProgress(), CurrentModule.Url); + ) : DialogResult.Yes; + + // Handle the user's choice + if (result == DialogResult.Yes) + { + DownloadProgress = LoadProgress(); + + if (DownloadProgress.IsSaveComplete) + { + AddLog("Found an Exiting Completed Save. Skipping This Item."); + OnInstallComplete(null); + } + else + await downloader.DownloadFileTaskAsync(DownloadProgress, CurrentModule.Url); + } else await downloader.DownloadFileTaskAsync(CurrentModule.Url, CurrentFilePath); } @@ -181,7 +228,13 @@ private async void StartDownload() private void ResetChunkProgressBars() { - if (DownloadProgress == null || DownloadProgress.Chunks == null || DownloadProgress.Chunks.Length == 0) return; + if (DownloadProgress == null || DownloadProgress.Chunks == null || DownloadProgress.Chunks.Length == 0) + { + for (int i = 0; i < progressBars.Length; i++) + UpdateProgressBar(i, 0); + + return; + } for (int i = 0; i < progressBars.Length; i++) UpdateProgressBar(i, DownloadProgress.Chunks[i].IsDownloadCompleted() ? 100 : 0); @@ -267,36 +320,37 @@ private void OnDownloadFileCompleted(object sender, AsyncCompletedEventArgs e) private void OnInstallComplete(Exception e) { - ActionButton.Enabled = true; - CancelButton.Enabled = true; - - if (e != null) + InvokeFunction(() => { - StatusLabel.Text = "An error was encountered during Installing"; - AddLog($"An error was encountered during Installing, Error Message: {e.Message}, Source: {e.Source}, StackTrace:{e.StackTrace}"); - MessageBox.Show($"An error was encountered during Installing, Error Message: {e.Message}, Source: {e.Source}, StackTrace:{e.StackTrace}", "System Error", MessageBoxButtons.OK, MessageBoxIcon.Error); - SetActionButtonType(ActionButtonEnum.Retry); - return; - } + ActionButton.Enabled = true; + CancelButton.Enabled = true; - if ((CurrentModule.SubModules == null || CurrentModule.SubModules.Count == 0) && ParentModule == null) - { - MessageBox.Show("Installed Module Successfully!", "System Info", MessageBoxButtons.OK, MessageBoxIcon.Information); - Close(); - return; - } + if (e != null) + { + StatusLabel.Text = "An error was encountered during Installing"; + AddLog($"An error was encountered during Installing, Error Message: {e.Message}, Source: {e.Source}, StackTrace:{e.StackTrace}"); + MessageBox.Show($"An error was encountered during Installing, Error Message: {e.Message}, Source: {e.Source}, StackTrace:{e.StackTrace}", "System Error", MessageBoxButtons.OK, MessageBoxIcon.Error); + SetActionButtonType(ActionButtonEnum.Retry); + return; + } + + if (PendingSubModules.Count == 0) + { + MessageBox.Show("Installed Module Successfully!", "System Info", MessageBoxButtons.OK, MessageBoxIcon.Information); + Close(); + return; + } -            // Prepare for next model -            ref UnityReleaseModule NextModel = ref (ParentModule == null ? ref CurrentModule : ref ParentModule); + var ModuleToDownload = PendingSubModules.First(); + PendingSubModules.Remove(ModuleToDownload); + CurrentModule = ModuleToDownload; - NextModel.SubModules.RemoveAt(0); + ShowPendingText(); - ParentModule ??= CurrentModule; - string nextModelName = NextModel.SubModules[0].Name; - CurrentModule = MainForm.AllReleaseModules.Find(item => item.Name == nextModelName); + isInitialDownload = false; - ShowPendingText(ParentModule.SubModules); - StartDownload(); + StartDownload(); + }); } private void OnDownloadProgressChanged(object sender, DownloadProgressChangedEventArgs e) @@ -359,19 +413,19 @@ private void OnDownloadStarted(object sender, DownloadStartedEventArgs e) TransferRateLabel.Text = "Transfer Rate : 0 MB/Sec"; TimeLeftLabel.Text = "Time Left : Calculating..."; ResetChunkProgressBars(); - ShowPendingText(CurrentModule.SubModules); + ShowPendingText(); }); } - private void ShowPendingText(List subModules) => - PendingLabel.Text = GetModelSubModels(subModules); + private void ShowPendingText() => + PendingLabel.Text = GetModelSubModels(); - private string GetModelSubModels(List subModules) + private string GetModelSubModels() { string result = "Pending : -"; - if (subModules != null && subModules.Count != 0) - result = "Pending : " + string.Join(", ", subModules.Select(x => x.Name)); + if (PendingSubModules.Count != 0) + result = "Pending : " + string.Join(", ", PendingSubModules.Select(x => x.Name)); return result; } @@ -418,9 +472,11 @@ private void CancelButton_Click(object sender, EventArgs e) Close(); } - private void AddLog(string text) + private void AddLog(string text, bool showInUI = true) { - LogsList.Items.Add(text); + if(showInUI) + LogsList.Items.Add(text); + File.AppendAllText(LogsFilePath, $"[{DateTime.Now}] {text}\n"); } } diff --git a/src/Unity Downloader/Unity Downloader.csproj b/src/Unity Downloader/Unity Downloader.csproj index ca0e4a7..877e5b5 100644 --- a/src/Unity Downloader/Unity Downloader.csproj +++ b/src/Unity Downloader/Unity Downloader.csproj @@ -25,8 +25,8 @@ false false true - 4 - 1.0.0.%2a + 3 + 1.1.2.%2a false true true diff --git a/src/Unity Downloader/Unity Downloader.csproj.user b/src/Unity Downloader/Unity Downloader.csproj.user index bb9cc20..9a824e6 100644 --- a/src/Unity Downloader/Unity Downloader.csproj.user +++ b/src/Unity Downloader/Unity Downloader.csproj.user @@ -1,7 +1,7 @@  - publish\ + D:\Apps\UnityDownloader\|publish\ diff --git a/src/Unity Downloader/Utilities.cs b/src/Unity Downloader/Utilities.cs index f101f83..26040dd 100644 --- a/src/Unity Downloader/Utilities.cs +++ b/src/Unity Downloader/Utilities.cs @@ -131,22 +131,12 @@ public static bool RunProccess(string filePath, out string output) { ProcessStartInfo startInfo = new ProcessStartInfo(filePath) { - UseShellExecute = true, Verb = "runas" // Run as administrator }; try { - using (Process process = Process.Start(startInfo)) - { - process.WaitForExit(); - - if (process.ExitCode != 0) - { - output = $"Running \"{filePath}\" encountered an error. Please try Run It Manually"; - return false; - } - } + Process.Start(startInfo); } catch (Exception ex) { diff --git a/src/Unity Downloader/bin/Debug/Unity Downloader.application b/src/Unity Downloader/bin/Debug/Unity Downloader.application index 360b770..24207e9 100644 --- a/src/Unity Downloader/bin/Debug/Unity Downloader.application +++ b/src/Unity Downloader/bin/Debug/Unity Downloader.application @@ -1,6 +1,6 @@  - + @@ -8,13 +8,13 @@ - + - A3i0lQLwnbqgQQmMkFgwmMJxj9FF2JxVS/MZdMsBYHo= + vuCiz2yxyk9ngkbt+wwri5ovps+HSGfnwwzgmXUoKSs= diff --git a/src/Unity Downloader/bin/Debug/Unity Downloader.exe b/src/Unity Downloader/bin/Debug/Unity Downloader.exe index ed90cc9..4ccb64d 100644 Binary files a/src/Unity Downloader/bin/Debug/Unity Downloader.exe and b/src/Unity Downloader/bin/Debug/Unity Downloader.exe differ diff --git a/src/Unity Downloader/bin/Debug/Unity Downloader.exe.manifest b/src/Unity Downloader/bin/Debug/Unity Downloader.exe.manifest index e35c53e..2ac0b4e 100644 --- a/src/Unity Downloader/bin/Debug/Unity Downloader.exe.manifest +++ b/src/Unity Downloader/bin/Debug/Unity Downloader.exe.manifest @@ -1,6 +1,6 @@  - + @@ -67,14 +67,14 @@ - + - WpF8hzZtnwuyB38dARuimh5wuRR2813h2hVBEtSYffY= + cr69N+B/dCBN2kdXc2LN41uFkeh/ZTCmhPw9O8kke9g= diff --git a/src/Unity Downloader/bin/Debug/Unity Downloader.pdb b/src/Unity Downloader/bin/Debug/Unity Downloader.pdb index b556c00..814bede 100644 Binary files a/src/Unity Downloader/bin/Debug/Unity Downloader.pdb and b/src/Unity Downloader/bin/Debug/Unity Downloader.pdb differ diff --git a/src/Unity Downloader/bin/Debug/app.publish/Application Files/Unity Downloader_1_1_2_3/Downloader.dll.deploy b/src/Unity Downloader/bin/Debug/app.publish/Application Files/Unity Downloader_1_1_2_3/Downloader.dll.deploy new file mode 100644 index 0000000..0df736d Binary files /dev/null and b/src/Unity Downloader/bin/Debug/app.publish/Application Files/Unity Downloader_1_1_2_3/Downloader.dll.deploy differ diff --git a/src/Unity Downloader/bin/Debug/app.publish/Application Files/Unity Downloader_1_1_2_3/Newtonsoft.Json.dll.deploy b/src/Unity Downloader/bin/Debug/app.publish/Application Files/Unity Downloader_1_1_2_3/Newtonsoft.Json.dll.deploy new file mode 100644 index 0000000..341d08f Binary files /dev/null and b/src/Unity Downloader/bin/Debug/app.publish/Application Files/Unity Downloader_1_1_2_3/Newtonsoft.Json.dll.deploy differ diff --git a/src/Unity Downloader/bin/Debug/app.publish/Application Files/Unity Downloader_1_1_2_3/Unity Downloader.exe.config.deploy b/src/Unity Downloader/bin/Debug/app.publish/Application Files/Unity Downloader_1_1_2_3/Unity Downloader.exe.config.deploy new file mode 100644 index 0000000..2ce19bf --- /dev/null +++ b/src/Unity Downloader/bin/Debug/app.publish/Application Files/Unity Downloader_1_1_2_3/Unity Downloader.exe.config.deploy @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/Unity Downloader/bin/Debug/app.publish/Application Files/Unity Downloader_1_1_2_3/Unity Downloader.exe.deploy b/src/Unity Downloader/bin/Debug/app.publish/Application Files/Unity Downloader_1_1_2_3/Unity Downloader.exe.deploy new file mode 100644 index 0000000..c014887 Binary files /dev/null and b/src/Unity Downloader/bin/Debug/app.publish/Application Files/Unity Downloader_1_1_2_3/Unity Downloader.exe.deploy differ diff --git a/src/Unity Downloader/bin/Debug/app.publish/Application Files/Unity Downloader_1_1_2_3/Unity Downloader.exe.manifest b/src/Unity Downloader/bin/Debug/app.publish/Application Files/Unity Downloader_1_1_2_3/Unity Downloader.exe.manifest new file mode 100644 index 0000000..359af42 --- /dev/null +++ b/src/Unity Downloader/bin/Debug/app.publish/Application Files/Unity Downloader_1_1_2_3/Unity Downloader.exe.manifest @@ -0,0 +1,99 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + xdlh7KreYHikAkrWwc5NRj9obRgHqw0tUhTKdi2Dhso= + + + + + + + + + + + + 4eJ697B+7t9c5xqSVfBCKBam/FhJpIPGcU4bRyBE+p0= + + + + + + + + + + + + cr69N+B/dCBN2kdXc2LN41uFkeh/ZTCmhPw9O8kke9g= + + + + + + + + + + YpDax7ahVzFRv6aGzK7FplcQW0G2Tkk3Hsy01x6gBM0= + + + + + + + + + EPhw6uhGZGr9lMf883q2Mb3VM2zyc2/6btUVPbwW3+w= + + +tFqMQtz2kuK7O3rV+2DK1wSDcFVtuL0YgVKAR6mBqhQ=OsZiEW9RklAqU804/6vJkyI7hXEkt8OVcszX2FJEW+gyaV0fUhPQI6eTWQUfXrMnTbWwqbZNDQ+HHWkZ7X70nHJuBj4FsU77xbilFCFnKEhHpVqwiPC98Q41M8xrt8aVLPY/kXMFyD8v5pvSHorDOL47f9dURlcsseiBxJlHMCE=m3IPf96lmC9EfCSl63HKA1dV+sRWxLrlynhTjTNTTqo6W7xBYaw0Rgrj8pKz6HYsykK6LgaMTYo6K6n/kUYdUw1S3vFhpI5VX56zoLQu9f6O0hj+XqXJ5ZiJCNZvcp8b9BEID5Pajso8wCZuPRKTp4Z7Ax4lr5RLFKi85sg0Oq0=AQABCN=DESKTOP-C47PNU1\NIKCOMoodbhX6wsd+QXUrLad11tTJR7ZnRVfpvN44SB2aepOc=TYts0apM7XNeH17UHm06buJk4X+pee9L/rQz9Jnn+GOAK9Ta1aHJtZ22hGOPYb+92OZBbdJzu2F0FVfOyG8FsBwAE51RmDfURUl8qYKN5TTurspGd78PkMArdIhTFGuaBgf4UFKPiuaOJA2flgGGqc1uLS9d86iCurqtYKFKilE=m3IPf96lmC9EfCSl63HKA1dV+sRWxLrlynhTjTNTTqo6W7xBYaw0Rgrj8pKz6HYsykK6LgaMTYo6K6n/kUYdUw1S3vFhpI5VX56zoLQu9f6O0hj+XqXJ5ZiJCNZvcp8b9BEID5Pajso8wCZuPRKTp4Z7Ax4lr5RLFKi85sg0Oq0=AQABMIIB8TCCAVqgAwIBAgIQbhdsTN6ZYJpCFUePEaZ1CjANBgkqhkiG9w0BAQsFADA3MTUwMwYDVQQDHiwARABFAFMASwBUAE8AUAAtAEMANAA3AFAATgBVADEAXABOAEkASwBDAE8ATTAeFw0yNDA2MjIwOTE5NTJaFw0yNTA2MjIxNTE5NTJaMDcxNTAzBgNVBAMeLABEAEUAUwBLAFQATwBQAC0AQwA0ADcAUABOAFUAMQBcAE4ASQBLAEMATwBNMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCbcg9/3qWYL0R8JKXrccoDV1X6xFbEuuXKeFONM1NOqjpbvEFhrDRGCuPykrPodizKQrouBoxNijorqf+RRh1TDVLe8WGkjlVfnrOgtC71/o7SGP5epcnlmIkI1m9ynxv0EQgPk9qOyjzAJm49EpOnhnsDHiWvlEsUqLzmyDQ6rQIDAQABMA0GCSqGSIb3DQEBCwUAA4GBAIGQchKOU2zSE8SMYvMmCu7loafWB627zLma6fSlyk6YYMh9RCX2mUWG3wYE7a+u818wku1/IiZsPISNs9UScR+VzXpjXscNt8tsFCIwiGKN8+vJa+1Ce/lpRAVCUNC/g+hi4kQ2aTjj7pgeeJDRekY7Krocqj9VxkIb4KPQBGFj \ No newline at end of file diff --git a/src/Unity Downloader/bin/Debug/app.publish/Application Files/Unity Downloader_1_1_2_3/unity_logo_icon_249311.ico.deploy b/src/Unity Downloader/bin/Debug/app.publish/Application Files/Unity Downloader_1_1_2_3/unity_logo_icon_249311.ico.deploy new file mode 100644 index 0000000..f2288ac Binary files /dev/null and b/src/Unity Downloader/bin/Debug/app.publish/Application Files/Unity Downloader_1_1_2_3/unity_logo_icon_249311.ico.deploy differ diff --git a/src/Unity Downloader/bin/Debug/app.publish/Unity Downloader.application b/src/Unity Downloader/bin/Debug/app.publish/Unity Downloader.application new file mode 100644 index 0000000..1815581 --- /dev/null +++ b/src/Unity Downloader/bin/Debug/app.publish/Unity Downloader.application @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + 875/S0h+wl/M3bTxj++an7xxOhF3np5giDxEn280/TM= + + + +ZVKXfeomiSfZNXPKIaMfh8ag774dMrOMnod6tgP5XLY=kUphRfdmgHd1qlQteS4TkWYtABMJFIaZffC6cReowYBWzPUXTe8hdmHgG7L1Not58Uz32mkj4UqgN5owOwoFsOEkg2yXu7oLe02En+xMixlfNuJ68Y4UQXRILFo16u6UK1beXRY/in90Hdm8IlT9k0krb3QCreSEWlw94jPCtbc=m3IPf96lmC9EfCSl63HKA1dV+sRWxLrlynhTjTNTTqo6W7xBYaw0Rgrj8pKz6HYsykK6LgaMTYo6K6n/kUYdUw1S3vFhpI5VX56zoLQu9f6O0hj+XqXJ5ZiJCNZvcp8b9BEID5Pajso8wCZuPRKTp4Z7Ax4lr5RLFKi85sg0Oq0=AQABCN=DESKTOP-C47PNU1\NIKCOMhLrnwWaHV/lvj7fjtjHgbnP5PPKZont2J047E3hZouY=RJqPayOmDeSatX/lvM2IuXzRjctOy73vD0OtvnIf9f48MAOS4nuJHR6AvEgUBArDGJt/03Ht59Cf63Qsfe+izKa9qwmwjRl7BQ/h8Vp1wXfW1fwrvB/DoPWLFgYmwIwAhsPYCd5RbzStf60/+RPn9vWTKYcU8IoTRS8tJ4aoPXA=m3IPf96lmC9EfCSl63HKA1dV+sRWxLrlynhTjTNTTqo6W7xBYaw0Rgrj8pKz6HYsykK6LgaMTYo6K6n/kUYdUw1S3vFhpI5VX56zoLQu9f6O0hj+XqXJ5ZiJCNZvcp8b9BEID5Pajso8wCZuPRKTp4Z7Ax4lr5RLFKi85sg0Oq0=AQABMIIB8TCCAVqgAwIBAgIQbhdsTN6ZYJpCFUePEaZ1CjANBgkqhkiG9w0BAQsFADA3MTUwMwYDVQQDHiwARABFAFMASwBUAE8AUAAtAEMANAA3AFAATgBVADEAXABOAEkASwBDAE8ATTAeFw0yNDA2MjIwOTE5NTJaFw0yNTA2MjIxNTE5NTJaMDcxNTAzBgNVBAMeLABEAEUAUwBLAFQATwBQAC0AQwA0ADcAUABOAFUAMQBcAE4ASQBLAEMATwBNMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCbcg9/3qWYL0R8JKXrccoDV1X6xFbEuuXKeFONM1NOqjpbvEFhrDRGCuPykrPodizKQrouBoxNijorqf+RRh1TDVLe8WGkjlVfnrOgtC71/o7SGP5epcnlmIkI1m9ynxv0EQgPk9qOyjzAJm49EpOnhnsDHiWvlEsUqLzmyDQ6rQIDAQABMA0GCSqGSIb3DQEBCwUAA4GBAIGQchKOU2zSE8SMYvMmCu7loafWB627zLma6fSlyk6YYMh9RCX2mUWG3wYE7a+u818wku1/IiZsPISNs9UScR+VzXpjXscNt8tsFCIwiGKN8+vJa+1Ce/lpRAVCUNC/g+hi4kQ2aTjj7pgeeJDRekY7Krocqj9VxkIb4KPQBGFj \ No newline at end of file diff --git a/src/Unity Downloader/bin/Debug/app.publish/Unity Downloader.exe b/src/Unity Downloader/bin/Debug/app.publish/Unity Downloader.exe index 50bca7b..c014887 100644 Binary files a/src/Unity Downloader/bin/Debug/app.publish/Unity Downloader.exe and b/src/Unity Downloader/bin/Debug/app.publish/Unity Downloader.exe differ diff --git a/src/Unity Downloader/bin/Debug/app.publish/setup.exe b/src/Unity Downloader/bin/Debug/app.publish/setup.exe new file mode 100644 index 0000000..6347543 Binary files /dev/null and b/src/Unity Downloader/bin/Debug/app.publish/setup.exe differ diff --git a/src/Unity Downloader/obj/Debug/Unity Downloader.application b/src/Unity Downloader/obj/Debug/Unity Downloader.application index 360b770..24207e9 100644 --- a/src/Unity Downloader/obj/Debug/Unity Downloader.application +++ b/src/Unity Downloader/obj/Debug/Unity Downloader.application @@ -1,6 +1,6 @@  - + @@ -8,13 +8,13 @@ - + - A3i0lQLwnbqgQQmMkFgwmMJxj9FF2JxVS/MZdMsBYHo= + vuCiz2yxyk9ngkbt+wwri5ovps+HSGfnwwzgmXUoKSs= diff --git a/src/Unity Downloader/obj/Debug/Unity Downloader.exe b/src/Unity Downloader/obj/Debug/Unity Downloader.exe index ed90cc9..4ccb64d 100644 Binary files a/src/Unity Downloader/obj/Debug/Unity Downloader.exe and b/src/Unity Downloader/obj/Debug/Unity Downloader.exe differ diff --git a/src/Unity Downloader/obj/Debug/Unity Downloader.exe.manifest b/src/Unity Downloader/obj/Debug/Unity Downloader.exe.manifest index e35c53e..2ac0b4e 100644 --- a/src/Unity Downloader/obj/Debug/Unity Downloader.exe.manifest +++ b/src/Unity Downloader/obj/Debug/Unity Downloader.exe.manifest @@ -1,6 +1,6 @@  - + @@ -67,14 +67,14 @@ - + - WpF8hzZtnwuyB38dARuimh5wuRR2813h2hVBEtSYffY= + cr69N+B/dCBN2kdXc2LN41uFkeh/ZTCmhPw9O8kke9g= diff --git a/src/Unity Downloader/obj/Debug/Unity Downloader.pdb b/src/Unity Downloader/obj/Debug/Unity Downloader.pdb index b556c00..814bede 100644 Binary files a/src/Unity Downloader/obj/Debug/Unity Downloader.pdb and b/src/Unity Downloader/obj/Debug/Unity Downloader.pdb differ