From eeb5e94f06a50cb7973b3aaed0a63a1c8a3788af Mon Sep 17 00:00:00 2001 From: Qstick Date: Mon, 5 Mar 2018 04:07:26 -0500 Subject: [PATCH 1/2] Fixed: Incorrect Kodi nfo date format (#2605) Fixes #2582 --- .../Extras/Metadata/Consumers/Xbmc/XbmcMetadata.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/NzbDrone.Core/Extras/Metadata/Consumers/Xbmc/XbmcMetadata.cs b/src/NzbDrone.Core/Extras/Metadata/Consumers/Xbmc/XbmcMetadata.cs index b273429df..9bcfda13a 100644 --- a/src/NzbDrone.Core/Extras/Metadata/Consumers/Xbmc/XbmcMetadata.cs +++ b/src/NzbDrone.Core/Extras/Metadata/Consumers/Xbmc/XbmcMetadata.cs @@ -1,4 +1,4 @@ -using System; +using System; using System.Collections.Generic; using System.IO; using System.Linq; @@ -130,7 +130,7 @@ namespace NzbDrone.Core.Extras.Metadata.Consumers.Xbmc if (movie.InCinemas.HasValue) { - details.Add(new XElement("premiered", movie.InCinemas.Value.ToString())); + details.Add(new XElement("premiered", movie.InCinemas.Value.ToString("yyyy-MM-dd"))); } foreach (var genre in movie.Genres) From fa40005222761736aa0e3285ae977feefc0c4f5b Mon Sep 17 00:00:00 2001 From: Leonardo Galli Date: Wed, 7 Mar 2018 19:30:13 +0100 Subject: [PATCH 2/2] @cosmetic --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index e6fee2791..59db4c4af 100644 --- a/README.md +++ b/README.md @@ -54,8 +54,8 @@ The project was inspired by other Usenet/BitTorrent movie downloaders such as Co | API | Updates | Sites | |-------|:----:|:----:| -| [![API V2](http://status.radarr.video/component/1/shield?style=flat-square)](https://api.radarr.video/v2/) | [![Update Server](http://status.radarr.video/component/4/shield?style=flat-square)](https://radarr.aeonlucid.com) | [![Radarr Mappings](http://status.radarr.video/component/6/shield?style=flat-square)](https://mappings.radarr.video/) -| [![API Staging](http://status.radarr.video/component/2/shield?style=flat-square)](https://staging.api.radarr.video/) | [![Github Updates](http://status.radarr.video/component/5/shield?style=flat-square)](https://api.github.com/v3/) | [![Main Site](http://status.radarr.video/component/7/shield?style=flat-square)](https://radarr.video/) +| [![API V2 (develop)](http://status.radarr.video/component/1/shield?style=flat-square)](https://api.radarr.video/v2/) | [![Update Server](http://status.radarr.video/component/4/shield?style=flat-square)](https://radarr.aeonlucid.com) | [![Radarr Mappings](http://status.radarr.video/component/6/shield?style=flat-square)](https://mappings.radarr.video/) +| [![API Staging (nightly)](http://status.radarr.video/component/2/shield?style=flat-square)](https://staging.api.radarr.video/) | [![Github Updates](http://status.radarr.video/component/5/shield?style=flat-square)](https://api.github.com/v3/) | [![Main Site](http://status.radarr.video/component/7/shield?style=flat-square)](https://radarr.video/) Radarr is currently undergoing rapid development and pull requests are actively added into the repository.