restore library editor

This commit is contained in:
Luke Pulverenti 2015-10-15 23:17:42 -04:00
parent bd0ad4a5cd
commit 2c5ee7e2cf
3 changed files with 15 additions and 8 deletions

View file

@ -204,9 +204,17 @@ namespace MediaBrowser.Api.Library
if (_fileSystem.DirectoryExists(virtualFolderPath))
{
throw new ArgumentException("There is already a media collection with the name " + name + ".");
throw new ArgumentException("There is already a media library with the name " + name + ".");
}
if (!string.IsNullOrWhiteSpace(request.Path))
{
if (!_fileSystem.DirectoryExists(request.Path))
{
throw new DirectoryNotFoundException("The specified folder does not exist.");
}
}
_libraryMonitor.Stop();
try

View file

@ -132,13 +132,6 @@ namespace MediaBrowser.ServerApplication
LocalizeText();
if (_appHost.IsFirstRun)
{
Action action = () => notifyIcon1.ShowBalloonTip(5000, "Emby", "Welcome to Emby Server!", ToolTipIcon.Info);
contextMenuStrip1.Invoke(action);
}
notifyIcon1.DoubleClick += notifyIcon1_DoubleClick;
Application.ApplicationExit += Application_ApplicationExit;
}

View file

@ -206,6 +206,12 @@
<Content Include="dashboard-ui\components\medialibrarycreator\medialibrarycreator.template.html">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="dashboard-ui\components\medialibraryeditor\medialibraryeditor.js">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="dashboard-ui\components\medialibraryeditor\medialibraryeditor.template.html">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="dashboard-ui\components\metadataeditor\metadataeditor.js">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>