From d68e9841207e6681b9b78c560ccee889fb1173fa Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Sat, 27 Aug 2016 13:27:48 -0400 Subject: [PATCH] add new sony dlna profiles --- MediaBrowser.Dlna/DlnaManager.cs | 5 +- MediaBrowser.Dlna/MediaBrowser.Dlna.csproj | 10 +- ...2013Profile.cs => SonyBlurayPlayer2013.cs} | 4 +- .../Profiles/SonyBlurayPlayer2014.cs | 187 ++++++++++++++++++ .../Profiles/SonyBlurayPlayer2015.cs | 187 ++++++++++++++++++ .../Profiles/SonyBlurayPlayer2016.cs | 187 ++++++++++++++++++ MediaBrowser.Dlna/Profiles/Xml/BubbleUPnp.xml | 8 +- MediaBrowser.Dlna/Profiles/Xml/Default.xml | 8 +- MediaBrowser.Dlna/Profiles/Xml/Denon AVR.xml | 8 +- .../Profiles/Xml/DirecTV HD-DVR.xml | 6 +- .../Profiles/Xml/Dish Hopper-Joey.xml | 8 +- MediaBrowser.Dlna/Profiles/Xml/Kodi.xml | 10 +- .../Profiles/Xml/LG Smart TV.xml | 8 +- .../Profiles/Xml/Linksys DMA2100.xml | 8 +- .../Profiles/Xml/MediaMonkey.xml | 8 +- .../Profiles/Xml/Panasonic Viera.xml | 8 +- .../Profiles/Xml/Popcorn Hour.xml | 8 +- .../Profiles/Xml/Samsung Smart TV.xml | 8 +- .../Profiles/Xml/Sony Blu-ray Player 2013.xml | 8 +- .../Profiles/Xml/Sony Blu-ray Player 2014.xml | 81 ++++++++ .../Profiles/Xml/Sony Blu-ray Player 2015.xml | 81 ++++++++ .../Profiles/Xml/Sony Blu-ray Player 2016.xml | 81 ++++++++ .../Profiles/Xml/Sony Blu-ray Player.xml | 8 +- .../Profiles/Xml/Sony Bravia (2010).xml | 8 +- .../Profiles/Xml/Sony Bravia (2011).xml | 8 +- .../Profiles/Xml/Sony Bravia (2012).xml | 8 +- .../Profiles/Xml/Sony Bravia (2013).xml | 8 +- .../Profiles/Xml/Sony Bravia (2014).xml | 8 +- .../Profiles/Xml/Sony PlayStation 3.xml | 8 +- .../Profiles/Xml/Sony PlayStation 4.xml | 8 +- MediaBrowser.Dlna/Profiles/Xml/Vlc.xml | 8 +- MediaBrowser.Dlna/Profiles/Xml/WDTV Live.xml | 8 +- MediaBrowser.Dlna/Profiles/Xml/Xbox 360.xml | 8 +- MediaBrowser.Dlna/Profiles/Xml/Xbox One.xml | 8 +- MediaBrowser.Dlna/Profiles/Xml/foobar2000.xml | 8 +- 35 files changed, 923 insertions(+), 108 deletions(-) rename MediaBrowser.Dlna/Profiles/{SonyBlurayPlayer2013Profile.cs => SonyBlurayPlayer2013.cs} (99%) create mode 100644 MediaBrowser.Dlna/Profiles/SonyBlurayPlayer2014.cs create mode 100644 MediaBrowser.Dlna/Profiles/SonyBlurayPlayer2015.cs create mode 100644 MediaBrowser.Dlna/Profiles/SonyBlurayPlayer2016.cs create mode 100644 MediaBrowser.Dlna/Profiles/Xml/Sony Blu-ray Player 2014.xml create mode 100644 MediaBrowser.Dlna/Profiles/Xml/Sony Blu-ray Player 2015.xml create mode 100644 MediaBrowser.Dlna/Profiles/Xml/Sony Blu-ray Player 2016.xml diff --git a/MediaBrowser.Dlna/DlnaManager.cs b/MediaBrowser.Dlna/DlnaManager.cs index a01d73451e..5f4c34bb77 100644 --- a/MediaBrowser.Dlna/DlnaManager.cs +++ b/MediaBrowser.Dlna/DlnaManager.cs @@ -566,7 +566,10 @@ namespace MediaBrowser.Dlna new SonyBravia2012Profile(), new SonyBravia2013Profile(), new SonyBravia2014Profile(), - new SonyBlurayPlayer2013Profile(), + new SonyBlurayPlayer2013(), + new SonyBlurayPlayer2014(), + new SonyBlurayPlayer2015(), + new SonyBlurayPlayer2016(), new SonyBlurayPlayerProfile(), new PanasonicVieraProfile(), new WdtvLiveProfile(), diff --git a/MediaBrowser.Dlna/MediaBrowser.Dlna.csproj b/MediaBrowser.Dlna/MediaBrowser.Dlna.csproj index 9df9c0a252..d10a5f7b5a 100644 --- a/MediaBrowser.Dlna/MediaBrowser.Dlna.csproj +++ b/MediaBrowser.Dlna/MediaBrowser.Dlna.csproj @@ -94,6 +94,9 @@ + + + @@ -137,7 +140,7 @@ - + @@ -244,6 +247,11 @@ + + + + +