diff --git a/MediaBrowser.Common/UI/Splash.xaml b/MediaBrowser.Common/UI/Splash.xaml index 79085682ae..f52d9ddf1f 100644 --- a/MediaBrowser.Common/UI/Splash.xaml +++ b/MediaBrowser.Common/UI/Splash.xaml @@ -27,6 +27,6 @@ - diff --git a/MediaBrowser.Common/UI/Splash.xaml.cs b/MediaBrowser.Common/UI/Splash.xaml.cs index 68926a0632..fdd36396fe 100644 --- a/MediaBrowser.Common/UI/Splash.xaml.cs +++ b/MediaBrowser.Common/UI/Splash.xaml.cs @@ -1,8 +1,7 @@ -using System; -using System.Windows; -using MahApps.Metro.Controls; -using MediaBrowser.Common.Logging; +using MahApps.Metro.Controls; using MediaBrowser.Model.Progress; +using System; +using System.Windows; namespace MediaBrowser.Common.UI { @@ -21,13 +20,7 @@ namespace MediaBrowser.Common.UI void ProgressChanged(object sender, TaskProgress e) { - // If logging has loaded, put a message in the log. - if (Logger.LoggerInstance != null) - { - Logger.LogInfo(e.Description); - } - - lblProgress.Content = e.Description; + lblProgress.Text = e.Description; pbProgress.Value = (double)e.PercentComplete; } diff --git a/MediaBrowser.ServerApplication/App.xaml.cs b/MediaBrowser.ServerApplication/App.xaml.cs index 8219fd078b..41fb8f24e7 100644 --- a/MediaBrowser.ServerApplication/App.xaml.cs +++ b/MediaBrowser.ServerApplication/App.xaml.cs @@ -29,8 +29,7 @@ namespace MediaBrowser.ServerApplication public static void OpenDashboard() { - OpenUrl("http://localhost:" + Kernel.Instance.Configuration.HttpServerPortNumber + - "/mediabrowser/dashboard/index.html"); + OpenUrl("http://localhost:" + Kernel.Instance.Configuration.HttpServerPortNumber + "/mediabrowser/dashboard/index.html"); } public static void OpenUrl(string url) diff --git a/MediaBrowser.ServerApplication/MediaBrowser.ServerApplication.csproj b/MediaBrowser.ServerApplication/MediaBrowser.ServerApplication.csproj index 00fdfbfefd..4843f024a5 100644 --- a/MediaBrowser.ServerApplication/MediaBrowser.ServerApplication.csproj +++ b/MediaBrowser.ServerApplication/MediaBrowser.ServerApplication.csproj @@ -37,7 +37,7 @@ MediaBrowser.ServerApplication.App - Resources\Images\Icon.ico + Resources\Images\icon.ico @@ -45,6 +45,7 @@ + @@ -120,9 +121,15 @@ MediaBrowser.Model - - + + + + + + + +