From a737e9e3473ab80a8d031b43fd05e444c7890ea6 Mon Sep 17 00:00:00 2001 From: GMatrixGames Date: Mon, 16 Aug 2021 10:30:45 -0400 Subject: [PATCH] Update vgmstream release zip name --- FModel/ViewModels/ApplicationViewModel.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/FModel/ViewModels/ApplicationViewModel.cs b/FModel/ViewModels/ApplicationViewModel.cs index 9c53851c..307f43b1 100644 --- a/FModel/ViewModels/ApplicationViewModel.cs +++ b/FModel/ViewModels/ApplicationViewModel.cs @@ -153,10 +153,10 @@ namespace FModel.ViewModels public async Task InitVgmStream() { - var vgmZipFilePath = Path.Combine(UserSettings.Default.OutputDirectory, ".data", "test.zip"); + var vgmZipFilePath = Path.Combine(UserSettings.Default.OutputDirectory, ".data", "vgmstream-win.zip"); if (File.Exists(vgmZipFilePath)) return; - await ApplicationService.ApiEndpointView.BenbotApi.DownloadFileAsync("https://github.com/vgmstream/vgmstream/releases/latest/download/test.zip", vgmZipFilePath); + await ApplicationService.ApiEndpointView.BenbotApi.DownloadFileAsync("https://github.com/vgmstream/vgmstream/releases/latest/download/vgmstream-win.zip", vgmZipFilePath); if (new FileInfo(vgmZipFilePath).Length > 0) { var zip = ZipFile.Read(vgmZipFilePath); @@ -170,4 +170,4 @@ namespace FModel.ViewModels } } } -} \ No newline at end of file +}