소스 검색

add new property for version changelogs

dkanada 5 년 전
부모
커밋
2da5df6c25
2개의 변경된 파일4개의 추가작업 그리고 4개의 파일을 삭제
  1. 1 1
      Emby.Server.Implementations/Activity/ActivityLogEntryPoint.cs
  2. 3 3
      MediaBrowser.Model/Updates/VersionInfo.cs

+ 1 - 1
Emby.Server.Implementations/Activity/ActivityLogEntryPoint.cs

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

+ 3 - 3
MediaBrowser.Model/Updates/VersionInfo.cs

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