Skip to content

Commit

Permalink
Merge branch 'dev' into release
Browse files Browse the repository at this point in the history
  • Loading branch information
Noggog committed Oct 12, 2020
2 parents f8d06a2 + 671d77f commit 726452d
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
<PropertyGroup>
<Nullable>enable</Nullable>
<WarningsAsErrors>nullable</WarningsAsErrors>
<Version>0.10</Version>
<Version>0.10.1</Version>
</PropertyGroup>
</Project>
3 changes: 1 addition & 2 deletions Synthesis.Bethesda.GUI/ViewModels/Config/GitPatcherVM.cs
Original file line number Diff line number Diff line change
Expand Up @@ -150,8 +150,7 @@ public GitPatcherVM(ProfileVM parent, GithubPatcherSettings? settings = null)
masterBranch = master.FriendlyName;
repo.Reset(ResetMode.Hard);
Commands.Checkout(repo, master);
Configuration config = repo.Config;
Signature author = config.BuildSignature(DateTimeOffset.Now);
Signature author = new Signature("please", "[email protected]", DateTimeOffset.Now);
Commands.Pull(repo, author, null);
tags = repo.Tags.Select(tag => tag.FriendlyName).WithIndex().ToList();
}
Expand Down
5 changes: 3 additions & 2 deletions Synthesis.Bethesda.GUI/ViewModels/MainVM.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
using Noggog;
using Mutagen.Bethesda;
using Synthesis.Bethesda.Execution.Settings;
using System.Diagnostics;

namespace Synthesis.Bethesda.GUI
{
Expand Down Expand Up @@ -87,8 +88,8 @@ public MainVM()

Task.Run(() => Mutagen.Bethesda.WarmupAll.Init()).FireAndForget();

SynthesisVersion = typeof(Synthesis.Bethesda.Constants).Assembly.GetName().Version!.ToString().TrimEnd(".0").TrimEnd(".0");
MutagenVersion = typeof(FormKey).Assembly.GetName().Version!.ToString().TrimEnd(".0").TrimEnd(".0");
SynthesisVersion = FileVersionInfo.GetVersionInfo(typeof(Synthesis.Bethesda.Constants).Assembly.Location)!.ProductVersion.TrimEnd(".0").TrimEnd(".0");
MutagenVersion = FileVersionInfo.GetVersionInfo(typeof(FormKey).Assembly.Location)!.ProductVersion.TrimEnd(".0").TrimEnd(".0");
}

public void Load(SynthesisGuiSettings? guiSettings, PipelineSettings? pipeSettings)
Expand Down

0 comments on commit 726452d

Please sign in to comment.