Browse Source

update metadata manager

Luke Pulverenti 10 years ago
parent
commit
6b8bcf4c11

+ 2 - 1
MediaBrowser.Server.Implementations/Localization/JavaScript/javascript.json

@@ -815,5 +815,6 @@
     "HeaderShare": "Share",
     "ButtonShareHelp": "Share a web page containing media information with social media. Media files are never shared publicly.",
     "ButtonShare": "Share",
-    "HeaderConfirm": "Confirm"
+    "HeaderConfirm": "Confirm",
+    "ButtonAdvancedRefresh": "Advanced Refresh"
 }

+ 1 - 2
MediaBrowser.WebDashboard/Api/DashboardService.cs

@@ -317,7 +317,6 @@ namespace MediaBrowser.WebDashboard.Api
 
                 File.Delete(Path.Combine(path, "thirdparty", "jquerymobile-1.4.5", "jquery.mobile-1.4.5.min.map"));
 
-                Directory.Delete(Path.Combine(path, "bower_components"), true);
                 Directory.Delete(Path.Combine(path, "thirdparty", "viblast"), true);
 
                 // But we do need this
@@ -332,7 +331,7 @@ namespace MediaBrowser.WebDashboard.Api
                 CopyDirectory(Path.Combine(creator.DashboardUIPath, "bower_components", "swipebox", "src", "js"), Path.Combine(path, "bower_components", "swipebox", "src", "js"));
                 CopyDirectory(Path.Combine(creator.DashboardUIPath, "bower_components", "swipebox", "src", "img"), Path.Combine(path, "bower_components", "swipebox", "src", "img"));
             }
-
+            
             MinifyCssDirectory(Path.Combine(path, "css"));
             MinifyJsDirectory(Path.Combine(path, "scripts"));
             MinifyJsDirectory(Path.Combine(path, "apiclient"));