aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Rabert <6550543+nvllsvm@users.noreply.github.com>2019-01-09 22:05:11 -0500
committerGitHub <noreply@github.com>2019-01-09 22:05:11 -0500
commit7a832045d6c166bdd59fd43d0166ca309a19193b (patch)
treec23f66f307392bbfb9cae9d53c49b50ef28fc25e
parentdbceef97fd070fb0d6096187e7ba60ad3fd924b5 (diff)
parentf454b753f2a6e4e63d8f22ab0c354d5fa1c16e26 (diff)
Merge pull request #424 from dkanada/submodule
add jellyfin-web as submodule
-rw-r--r--.gitignore1
-rw-r--r--.gitmodules3
-rw-r--r--MediaBrowser.Controller/IServerApplicationPaths.cs1
-rw-r--r--MediaBrowser.WebDashboard/Api/DashboardService.cs6
-rw-r--r--MediaBrowser.WebDashboard/MediaBrowser.WebDashboard.csproj2
m---------MediaBrowser.WebDashboard/jellyfin-web0
6 files changed, 7 insertions, 6 deletions
diff --git a/.gitignore b/.gitignore
index befba5a20..880e63a7f 100644
--- a/.gitignore
+++ b/.gitignore
@@ -234,7 +234,6 @@ pip-log.txt
#Mr Developer
.mr.developer.cfg
-MediaBrowser.WebDashboard/dashboard-ui/.idea/
/.vs
##########
diff --git a/.gitmodules b/.gitmodules
index 31a58ecf1..7aeb94dfc 100644
--- a/.gitmodules
+++ b/.gitmodules
@@ -1,3 +1,6 @@
[submodule "ThirdParty/taglib-sharp"]
path = ThirdParty/taglib-sharp
url = https://github.com/mono/taglib-sharp.git
+[submodule "MediaBrowser.WebDashboard/jellyfin-web"]
+ path = MediaBrowser.WebDashboard/jellyfin-web
+ url = https://github.com/jellyfin/jellyfin-web.git
diff --git a/MediaBrowser.Controller/IServerApplicationPaths.cs b/MediaBrowser.Controller/IServerApplicationPaths.cs
index 5fb7968dd..e97943cbe 100644
--- a/MediaBrowser.Controller/IServerApplicationPaths.cs
+++ b/MediaBrowser.Controller/IServerApplicationPaths.cs
@@ -12,7 +12,6 @@ namespace MediaBrowser.Controller
/// <summary>
/// Gets the application resources path. This is the path to the folder containing resources that are deployed as part of the application
- /// For example, this folder contains dashboard-ui and swagger-ui
/// </summary>
/// <value>The application resources path.</value>
string ApplicationResourcesPath { get; }
diff --git a/MediaBrowser.WebDashboard/Api/DashboardService.cs b/MediaBrowser.WebDashboard/Api/DashboardService.cs
index 58d02ef04..38a789580 100644
--- a/MediaBrowser.WebDashboard/Api/DashboardService.cs
+++ b/MediaBrowser.WebDashboard/Api/DashboardService.cs
@@ -138,9 +138,9 @@ namespace MediaBrowser.WebDashboard.Api
}
/// <summary>
- /// Gets the dashboard UI path.
+ /// Gets the path for the web interface.
/// </summary>
- /// <value>The dashboard UI path.</value>
+ /// <value>The path for the web interface.</value>
public string DashboardUIPath
{
get
@@ -150,7 +150,7 @@ namespace MediaBrowser.WebDashboard.Api
return _serverConfigurationManager.Configuration.DashboardSourcePath;
}
- return Path.Combine(_serverConfigurationManager.ApplicationPaths.ApplicationResourcesPath, "dashboard-ui");
+ return Path.Combine(_serverConfigurationManager.ApplicationPaths.ApplicationResourcesPath, "jellyfin-web", "src");
}
}
diff --git a/MediaBrowser.WebDashboard/MediaBrowser.WebDashboard.csproj b/MediaBrowser.WebDashboard/MediaBrowser.WebDashboard.csproj
index 855b8b627..c5367ba75 100644
--- a/MediaBrowser.WebDashboard/MediaBrowser.WebDashboard.csproj
+++ b/MediaBrowser.WebDashboard/MediaBrowser.WebDashboard.csproj
@@ -10,7 +10,7 @@
</ItemGroup>
<ItemGroup>
- <None Include="dashboard-ui\**\*.*">
+ <None Include="jellyfin-web\src\**\*.*">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
diff --git a/MediaBrowser.WebDashboard/jellyfin-web b/MediaBrowser.WebDashboard/jellyfin-web
new file mode 160000
+Subproject 4678528d0028685b45c7c6daa2e24b72a363535