mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
Added version field
This commit is contained in:
parent
a3305b08fe
commit
e8923a11f1
@ -95,6 +95,11 @@ namespace Wabbajack.Lib
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
public Uri? Website;
|
public Uri? Website;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Current Version of the Modlist
|
||||||
|
/// </summary>
|
||||||
|
public Version Version = new Version(1, 0, 0, 0);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// The size of all the archives once they're downloaded
|
/// The size of all the archives once they're downloaded
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
@ -21,6 +21,7 @@ namespace Wabbajack
|
|||||||
public string Description => SourceModList?.Description;
|
public string Description => SourceModList?.Description;
|
||||||
public Uri Website => SourceModList?.Website;
|
public Uri Website => SourceModList?.Website;
|
||||||
public ModManager ModManager => SourceModList?.ModManager ?? ModManager.MO2;
|
public ModManager ModManager => SourceModList?.ModManager ?? ModManager.MO2;
|
||||||
|
public Version Version => SourceModList?.Version;
|
||||||
|
|
||||||
// Image isn't exposed as a direct property, but as an observable.
|
// Image isn't exposed as a direct property, but as an observable.
|
||||||
// This acts as a caching mechanism, as interested parties will trigger it to be created,
|
// This acts as a caching mechanism, as interested parties will trigger it to be created,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user