add new property for version changelogs

This commit is contained in:
dkanada 2020-04-11 19:56:42 +09:00
parent abb7ed9c35
commit 2da5df6c25
2 changed files with 4 additions and 4 deletions

View File

@ -434,7 +434,7 @@ namespace Emby.Server.Implementations.Activity
CultureInfo.InvariantCulture, CultureInfo.InvariantCulture,
_localization.GetLocalizedString("VersionNumber"), _localization.GetLocalizedString("VersionNumber"),
e.Argument.Item2.version), e.Argument.Item2.version),
Overview = e.Argument.Item2.description Overview = e.Argument.Item2.changelog
}); });
} }

View File

@ -29,10 +29,10 @@ namespace MediaBrowser.Model.Updates
public Version version { get; set; } public Version version { get; set; }
/// <summary> /// <summary>
/// Gets or sets the description. /// Gets or sets the changelog for this version.
/// </summary> /// </summary>
/// <value>The description.</value> /// <value>The changelog.</value>
public string description { get; set; } public string changelog { get; set; }
/// <summary> /// <summary>
/// Gets or sets the ABI that this version was built against. /// Gets or sets the ABI that this version was built against.