Fix build error, bump to version beta 3

This commit is contained in:
Timothy Baldridge 2019-11-30 14:15:55 -07:00
parent 86733dd0f5
commit 1aa55fd7e6
3 changed files with 8 additions and 3 deletions

View File

@ -1,5 +1,11 @@
### Changelog
#### Version - 1.0 beta 3 - 11/30/2019
* Reworked much of the UI into a single window
* Can download modlists directly through the single-window UI
* Removed hard error on lack of disk space. We need to think about how we calculate required space
#### Version - 1.0 beta 2 - 11/23/2019
* Optimized install process, if you install on a directory that already contains an install
the minimal amount of work will be done to update the install, instead of doing a complete

View File

@ -49,5 +49,5 @@ using System.Windows;
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.7.0")]
[assembly: AssemblyFileVersion("1.0.7.0")]
[assembly: AssemblyVersion("1.0.8.0")]
[assembly: AssemblyFileVersion("1.0.8.0")]

View File

@ -85,7 +85,6 @@ namespace Wabbajack
{
var downloader = DownloadDispatcher.ResolveArchive(Metadata.Links.Download);
downloader.Download(new Archive{ Name = Metadata.Title, Size = Metadata.DownloadMetadata?.Size ?? 0}, Location);
DownloadStatusText = "Hashing";
Location.FileHashCached();
sub.Dispose();
tcs.SetResult(true);