diff --git a/CHANGELOG.md b/CHANGELOG.md index 9c5ace07..88a40256 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/Wabbajack/Properties/AssemblyInfo.cs b/Wabbajack/Properties/AssemblyInfo.cs index 2a72367d..5a5c341c 100644 --- a/Wabbajack/Properties/AssemblyInfo.cs +++ b/Wabbajack/Properties/AssemblyInfo.cs @@ -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")] diff --git a/Wabbajack/View Models/ModListMetadataVM.cs b/Wabbajack/View Models/ModListMetadataVM.cs index 523df97c..bb429693 100644 --- a/Wabbajack/View Models/ModListMetadataVM.cs +++ b/Wabbajack/View Models/ModListMetadataVM.cs @@ -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);