diff --git a/dashboard-ui/autoorganizetv.html b/dashboard-ui/autoorganizetv.html index 121c006686..3a7103b57f 100644 --- a/dashboard-ui/autoorganizetv.html +++ b/dashboard-ui/autoorganizetv.html @@ -1,4 +1,4 @@ -
+
@@ -33,98 +33,101 @@
- -
-
- -
-
-
-
- -
-
+
+
+
+
+ +
+
+
+
+ +
+
-
-

${HeaderSupportedPatterns}

+
+

${HeaderSupportedPatterns}

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
${HeaderTerm}${HeaderPattern}${HeaderResult}
${LabelSeriesNamePlain}%sn${LabelSeriesNamePlain}
${LabelSeriesNamePlain}%s.n${ValueSeriesNamePeriod}
${LabelSeriesNamePlain}%s_n${ValueSeriesNameUnderscore}
${LabelSeasonNumberPlain}%s1
${LabelSeasonNumberPlain}%0s01
${LabelEpisodeNumberPlain}%e4
${LabelEpisodeNumberPlain}%0e04
${LabelEndingEpisodeNumberPlain}%ed5
${LabelEndingEpisodeNumberPlain}%0ed05
${LabelEpisodeNamePlain}%en${LabelEpisodeNamePlain}
${LabelEpisodeNamePlain}%e.n${ValueEpisodeNamePeriod}
${LabelEpisodeNamePlain}%e_n${ValueEpisodeNameUnderscore}
${FileExtension}%extmkv
+
+
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
${HeaderTerm}${HeaderPattern}${HeaderResult}
${LabelSeriesNamePlain}%sn${LabelSeriesNamePlain}
${LabelSeriesNamePlain}%s.n${ValueSeriesNamePeriod}
${LabelSeriesNamePlain}%s_n${ValueSeriesNameUnderscore}
${LabelSeasonNumberPlain}%s1
${LabelSeasonNumberPlain}%0s01
${LabelEpisodeNumberPlain}%e4
${LabelEpisodeNumberPlain}%0e04
${LabelEndingEpisodeNumberPlain}%ed5
${LabelEndingEpisodeNumberPlain}%0ed05
${LabelEpisodeNamePlain}%en${LabelEpisodeNamePlain}
${LabelEpisodeNamePlain}%e.n${ValueEpisodeNamePeriod}
${LabelEpisodeNamePlain}%e_n${ValueEpisodeNameUnderscore}
${FileExtension}%extmkv
-


  • diff --git a/dashboard-ui/bower_components/emby-webcomponents/emby-collapse/emby-collapse.js b/dashboard-ui/bower_components/emby-webcomponents/emby-collapse/emby-collapse.js index b0294ce015..f9683cdf4f 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/emby-collapse/emby-collapse.js +++ b/dashboard-ui/bower_components/emby-webcomponents/emby-collapse/emby-collapse.js @@ -82,7 +82,13 @@ this.insertAdjacentHTML('afterbegin', html); - this.querySelector('.emby-collapsible-button').addEventListener('click', onButtonClick); + var button = this.querySelector('.emby-collapsible-button'); + + button.addEventListener('click', onButtonClick); + + if (this.getAttribute('data-expanded') == 'true') { + onButtonClick.call(button); + } }; document.registerElement('emby-collapse', { diff --git a/dashboard-ui/components/guestinviter/guestinviter.js b/dashboard-ui/components/guestinviter/guestinviter.js index d00e91d9d5..f7ed117eb5 100644 --- a/dashboard-ui/components/guestinviter/guestinviter.js +++ b/dashboard-ui/components/guestinviter/guestinviter.js @@ -1,4 +1,4 @@ -define(['dialogHelper', 'jQuery', 'emby-input', 'emby-button', 'emby-collapsible', 'paper-checkbox', 'paper-icon-button-light'], function (dialogHelper, $) { +define(['dialogHelper', 'jQuery', 'emby-input', 'emby-button', 'emby-collapse', 'paper-checkbox', 'paper-icon-button-light'], function (dialogHelper, $) { function renderLibrarySharingList(context, result) { diff --git a/dashboard-ui/components/guestinviter/guestinviter.template.html b/dashboard-ui/components/guestinviter/guestinviter.template.html index af9c824911..7ebba789af 100644 --- a/dashboard-ui/components/guestinviter/guestinviter.template.html +++ b/dashboard-ui/components/guestinviter/guestinviter.template.html @@ -17,13 +17,13 @@
-
- - -
+
+
+
+
- +

${MessageGuestSharingPermissionsHelp}


+
-

${MessagePleaseRestartServerToFinishUpdating}

-
- -
- +
@@ -78,31 +80,35 @@
diff --git a/dashboard-ui/dashboardgeneral.html b/dashboard-ui/dashboardgeneral.html index d129c89d11..9d81f683eb 100644 --- a/dashboard-ui/dashboardgeneral.html +++ b/dashboard-ui/dashboardgeneral.html @@ -42,83 +42,92 @@

- -
- -
- - -
- -
- - -

${HeaderBrandingHelp}

-
- - -
- - -
-
- ${OptionEnableWebClientResponseCache} +
+
+
    +
  • + + +
    ${LabelCachePathHelp}
    +
  • +
-
-
- ${OptionEnableWebClientResourceMinification} +
+ +
+
+
+
    +
  • +
    + + +
    +
  • +
  • + + + +
  • + +
-
- ${OptionDisableForDevelopmentHelp} +
+ +
+
+

${HeaderBrandingHelp}

+
+ +
    +
  • + +
    ${LabelLoginDisclaimerHelp}
    +
  • +
  • + +
    ${LabelCustomCssHelp}
    +
  • +
-

-
    -
  • - - -
    ${LabelDashboardSourcePathHelp}
    -
  • -
- +
+ +
+
+
+
+ ${OptionEnableWebClientResponseCache} +
+
+
+ ${OptionEnableWebClientResourceMinification} +
+
+ ${OptionDisableForDevelopmentHelp} +
+

+
    +
  • + + +
    ${LabelDashboardSourcePathHelp}
    +
  • +
+
+

  • diff --git a/dashboard-ui/librarysettings.html b/dashboard-ui/librarysettings.html index b21e4e4b56..b153783542 100644 --- a/dashboard-ui/librarysettings.html +++ b/dashboard-ui/librarysettings.html @@ -36,90 +36,99 @@
- -
-
- ${OptionDetectArchiveFilesAsMedia} -
${OptionDetectArchiveFilesAsMediaHelp}
+
+
+
+
+ ${OptionDetectArchiveFilesAsMedia} +
${OptionDetectArchiveFilesAsMediaHelp}
+
+
-
- +
- -
-
- ${OptionDetectArchiveFilesAsMedia} -
${OptionDetectArchiveFilesAsMediaHelp}
+
+
+
+
+ ${OptionDetectArchiveFilesAsMedia} +
${OptionDetectArchiveFilesAsMediaHelp}
+
+
-
- +
- -
-
    -
  • -
    ${HeaderExtractChapterImagesFor}
    -
    - ${OptionMovies} +
    +
    +
    +
      +
    • +
      ${HeaderExtractChapterImagesFor}
      +
      + ${OptionMovies} - ${OptionEpisodes} + ${OptionEpisodes} - ${OptionOtherVideos} -
      -
      ${ExtractChapterImagesHelp}
      -
    • -
    -
    -
    - ${LabelExtractChaptersDuringLibraryScan} -
    ${LabelExtractChaptersDuringLibraryScanHelp}
    + ${OptionOtherVideos} +
    +
    ${ExtractChapterImagesHelp}
    +
  • +
+
+
+ ${LabelExtractChaptersDuringLibraryScan} +
${LabelExtractChaptersDuringLibraryScanHelp}
+
+
-
-
+
- -
-
    -
  • -
    ${HeaderDownloadPeopleMetadataFor}
    -
    - ${OptionActors} +
    +
    +
    +
      +
    • +
      ${HeaderDownloadPeopleMetadataFor}
      +
      + ${OptionActors} - ${OptionComposers} + ${OptionComposers} - ${OptionDirectors} + ${OptionDirectors} - ${OptionGuestStars} + ${OptionGuestStars} - ${OptionProducers} + ${OptionProducers} - ${OptionWriters} + ${OptionWriters} - ${OptionOthers} -
      -
      ${HeaderDownloadPeopleMetadataForHelp}
      -
    • -
    - - - -
    -
    - - + ${OptionOthers} +
    +
    ${HeaderDownloadPeopleMetadataForHelp}
    +
  • +
-
- +
- - - +
+
+
+ +
+
+
+ +
+
+ +
+


diff --git a/dashboard-ui/metadataimages.html b/dashboard-ui/metadataimages.html index 0c7e1387be..473eeea010 100644 --- a/dashboard-ui/metadataimages.html +++ b/dashboard-ui/metadataimages.html @@ -1,4 +1,4 @@ -
+
@@ -21,43 +21,44 @@
- -
-