mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
#### Version - 2.5.3.22 - 6/13/2022
* Stop WJ from attempting to proxy all manual files * Stop downloading the app twice when upgrading via the launcher * Fall back to Github when we get an error from the Nexus in the launcher
This commit is contained in:
@ -1,5 +1,10 @@
|
|||||||
### Changelog
|
### Changelog
|
||||||
|
|
||||||
|
#### Version - 2.5.3.22 - 6/13/2022
|
||||||
|
* Stop WJ from attempting to proxy all manual files
|
||||||
|
* Stop downloading the app twice when upgrading via the launcher
|
||||||
|
* Fall back to Github when we get an error from the Nexus in the launcher
|
||||||
|
|
||||||
#### Version - 2.5.3.21 - 6/9/2022
|
#### Version - 2.5.3.21 - 6/9/2022
|
||||||
* Fix a bug in the streaming MediaFire downloader
|
* Fix a bug in the streaming MediaFire downloader
|
||||||
* Improve the reliability of MediaFire, and Manual downloaders
|
* Improve the reliability of MediaFire, and Manual downloaders
|
||||||
|
@ -53,9 +53,16 @@ public class MainWindowViewModel : ViewModelBase
|
|||||||
{
|
{
|
||||||
|
|
||||||
if (_tokenProvider.HaveToken())
|
if (_tokenProvider.HaveToken())
|
||||||
|
{
|
||||||
|
try
|
||||||
{
|
{
|
||||||
_version = await GetNexusReleases(CancellationToken.None);
|
_version = await GetNexusReleases(CancellationToken.None);
|
||||||
}
|
}
|
||||||
|
catch (Exception)
|
||||||
|
{
|
||||||
|
_errors.Add("Nexus error");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
if (_version == default)
|
if (_version == default)
|
||||||
{
|
{
|
||||||
@ -85,6 +92,7 @@ public class MainWindowViewModel : ViewModelBase
|
|||||||
Status = $"Getting download Uri for {_version.Version}";
|
Status = $"Getting download Uri for {_version.Version}";
|
||||||
var uri = await _version.Uri();
|
var uri = await _version.Uri();
|
||||||
|
|
||||||
|
/*
|
||||||
var archive = new Archive()
|
var archive = new Archive()
|
||||||
{
|
{
|
||||||
Name = $"{_version.Version}.zip",
|
Name = $"{_version.Version}.zip",
|
||||||
@ -106,7 +114,7 @@ public class MainWindowViewModel : ViewModelBase
|
|||||||
|
|
||||||
await using var of = outPath.Open(FileMode.Create, FileAccess.Write, FileShare.None);
|
await using var of = outPath.Open(FileMode.Create, FileAccess.Write, FileShare.None);
|
||||||
await rdr.Extract(file, of, CancellationToken.None);
|
await rdr.Extract(file, of, CancellationToken.None);
|
||||||
}
|
}*/
|
||||||
|
|
||||||
|
|
||||||
var wc = new WebClient();
|
var wc = new WebClient();
|
||||||
|
Reference in New Issue
Block a user