From 59c13ee90235c1ba438574639e55f0afc8a35e27 Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Mon, 4 May 2015 18:07:46 -0400 Subject: [PATCH] create dlna profiles for bubble & vlc --- MediaBrowser.Dlna/DlnaManager.cs | 4 +- MediaBrowser.Dlna/MediaBrowser.Dlna.csproj | 6 ++ MediaBrowser.Dlna/PlayTo/Device.cs | 8 +- .../Profiles/BubbleUpnpProfile.cs | 76 +++++++++++++++++++ MediaBrowser.Dlna/Profiles/VlcProfile.cs | 76 +++++++++++++++++++ MediaBrowser.Dlna/Profiles/WdtvLiveProfile.cs | 1 - MediaBrowser.Dlna/Profiles/Xml/BubbleUPnp.xml | 50 ++++++++++++ MediaBrowser.Dlna/Profiles/Xml/Default.xml | 1 - MediaBrowser.Dlna/Profiles/Xml/Denon AVR.xml | 1 - .../Profiles/Xml/DirecTV HD-DVR.xml | 1 - .../Profiles/Xml/Dish Hopper-Joey.xml | 1 - .../Profiles/Xml/Generic Device.xml | 43 +++++++++++ .../Profiles/Xml/LG Smart TV.xml | 1 - .../Profiles/Xml/Linksys DMA2100.xml | 1 - .../Profiles/Xml/MediaMonkey.xml | 1 - .../Profiles/Xml/Panasonic Viera.xml | 1 - .../Profiles/Xml/Popcorn Hour.xml | 1 - .../Profiles/Xml/Samsung Smart TV.xml | 1 - .../Profiles/Xml/Sony Blu-ray Player 2013.xml | 1 - .../Profiles/Xml/Sony Blu-ray Player.xml | 1 - .../Profiles/Xml/Sony Bravia (2010).xml | 2 +- .../Profiles/Xml/Sony Bravia (2011).xml | 2 +- .../Profiles/Xml/Sony Bravia (2012).xml | 2 +- .../Profiles/Xml/Sony Bravia (2013).xml | 2 +- .../Profiles/Xml/Sony PlayStation 3.xml | 1 - MediaBrowser.Dlna/Profiles/Xml/Vlc.xml | 50 ++++++++++++ MediaBrowser.Dlna/Profiles/Xml/WDTV Live.xml | 1 - MediaBrowser.Dlna/Profiles/Xml/Xbox 360.xml | 1 - MediaBrowser.Dlna/Profiles/Xml/Xbox One.xml | 1 - MediaBrowser.Dlna/Profiles/Xml/foobar2000.xml | 1 - MediaBrowser.Model/Dlna/DeviceProfile.cs | 1 - 31 files changed, 312 insertions(+), 28 deletions(-) create mode 100644 MediaBrowser.Dlna/Profiles/BubbleUpnpProfile.cs create mode 100644 MediaBrowser.Dlna/Profiles/VlcProfile.cs create mode 100644 MediaBrowser.Dlna/Profiles/Xml/BubbleUPnp.xml create mode 100644 MediaBrowser.Dlna/Profiles/Xml/Generic Device.xml create mode 100644 MediaBrowser.Dlna/Profiles/Xml/Vlc.xml diff --git a/MediaBrowser.Dlna/DlnaManager.cs b/MediaBrowser.Dlna/DlnaManager.cs index bdc8beb989..62756e4c43 100644 --- a/MediaBrowser.Dlna/DlnaManager.cs +++ b/MediaBrowser.Dlna/DlnaManager.cs @@ -544,7 +544,9 @@ namespace MediaBrowser.Dlna new DirectTvProfile(), new DishHopperJoeyProfile(), new DefaultProfile(), - new PopcornHourProfile() + new PopcornHourProfile(), + new VlcProfile(), + new BubbleUpnpProfile() }; foreach (var item in list) diff --git a/MediaBrowser.Dlna/MediaBrowser.Dlna.csproj b/MediaBrowser.Dlna/MediaBrowser.Dlna.csproj index b4e93ed681..204872e7b6 100644 --- a/MediaBrowser.Dlna/MediaBrowser.Dlna.csproj +++ b/MediaBrowser.Dlna/MediaBrowser.Dlna.csproj @@ -77,10 +77,12 @@ + + @@ -204,6 +206,10 @@ + + + +