mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-14 02:37:08 -07:00
Added build date to footer
This commit is contained in:
parent
d538fe62cf
commit
d3d937afcc
6 changed files with 18 additions and 6 deletions
|
@ -6,6 +6,7 @@ using System.Text;
|
|||
using System.Text.RegularExpressions;
|
||||
using NzbDrone.Common;
|
||||
using NzbDrone.Common.Messaging;
|
||||
using NzbDrone.Common.Serializer;
|
||||
using NzbDrone.Core.Lifecycle;
|
||||
|
||||
namespace NzbDrone.Api.Client
|
||||
|
@ -15,6 +16,7 @@ namespace NzbDrone.Api.Client
|
|||
private readonly EnvironmentProvider _environmentProvider;
|
||||
|
||||
private static readonly Regex VersionRegex = new Regex(@"(?<=Version:\s')(.*)(?=')", RegexOptions.IgnoreCase | RegexOptions.Compiled);
|
||||
private static readonly Regex BuildDateRegex = new Regex(@"(?<=BuildDate:\s)('.*')", RegexOptions.IgnoreCase | RegexOptions.Compiled);
|
||||
|
||||
public ClientSettings(EnvironmentProvider environmentProvider)
|
||||
{
|
||||
|
@ -28,8 +30,10 @@ namespace NzbDrone.Api.Client
|
|||
var appFile = Path.Combine(_environmentProvider.StartUpPath, "UI", "app.js");
|
||||
var contents = File.ReadAllText(appFile);
|
||||
var version = _environmentProvider.Version;
|
||||
var date = _environmentProvider.BuildDateTime;
|
||||
|
||||
contents = VersionRegex.Replace(contents, version.ToString());
|
||||
contents = BuildDateRegex.Replace(contents, date.ToUniversalTime().ToJson());
|
||||
|
||||
File.WriteAllText(appFile, contents);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue