added version number to apiclient

This commit is contained in:
Luke Pulverenti 2013-07-10 08:37:14 -04:00
parent 1e90c8d40c
commit d97a1af263
2 changed files with 11 additions and 1 deletions

View File

@ -610,6 +610,16 @@ namespace MediaBrowser.Model.Dto
get { return ImageTags != null && ImageTags.ContainsKey(ImageType.Box); } get { return ImageTags != null && ImageTags.ContainsKey(ImageType.Box); }
} }
/// <summary>
/// Gets a value indicating whether this instance has box image.
/// </summary>
/// <value><c>true</c> if this instance has box image; otherwise, <c>false</c>.</value>
[IgnoreDataMember]
public bool HasBoxRearImage
{
get { return ImageTags != null && ImageTags.ContainsKey(ImageType.BoxRear); }
}
/// <summary> /// <summary>
/// Gets a value indicating whether this instance has menu image. /// Gets a value indicating whether this instance has menu image.
/// </summary> /// </summary>

View File

@ -512,7 +512,7 @@ namespace MediaBrowser.WebDashboard.Api
var newLineBytes = Encoding.UTF8.GetBytes(Environment.NewLine); var newLineBytes = Encoding.UTF8.GetBytes(Environment.NewLine);
var versionString = string.Format("window.dashboardVersion='{0}';", GetType().Assembly.GetName().Version); var versionString = string.Format("window.dashboardVersion='{0}';", _appHost.ApplicationVersion);
var versionBytes = Encoding.UTF8.GetBytes(versionString); var versionBytes = Encoding.UTF8.GetBytes(versionString);
await memoryStream.WriteAsync(versionBytes, 0, versionBytes.Length).ConfigureAwait(false); await memoryStream.WriteAsync(versionBytes, 0, versionBytes.Length).ConfigureAwait(false);