User:Kibje: Difference between revisions

From Official Kodi Wiki
Jump to navigation Jump to search
(Replaced content with "Boo!")
No edit summary
Line 1: Line 1:
Boo!
<syntaxhighlight lang="XML">
  <musiclibrary>
    <hideallitems>true</hideallitems> <!-- removes the "*All" items from the music library --> <!-- This will be replaced in v15 with a GUI option. -->
    <allitemsonbottom>true</allitemsonbottom> <!-- sorts the "*All" items at the bottom of the list when in Ascending order -->
  <promptfulltagscan>false</promptfulltagscan> <!--  prompt for full tag rescan, regardless of files being unchanged, every time scanning is initiated -->
    <recentlyaddeditems>35</recentlyaddeditems> <!-- number of recently added items. Defaults to 25 -->
    <albumformat>%B - %Y</albumformat>  <!-- album label template, default is "%B" -->
    <prioritiseapetags>true</prioritiseapetags>  <!-- prioritise APEv2 tags over ID3v1/2 tags, default is false. -->
    <itemseparator> / </itemseparator>    <!-- separator used for multiple artists/genres in tags. Note, this is *space* *slash* *space* -->
    <artistseparators> <!-- separator used for multiple artists. Note that spaces are used for some separators.-->
      <separator>;</separator>
      <separator>:</separator>
      <separator>|</separator>
      <separator> feat. </separator>
      <separator> ft. </separator>
    </artistseparators>
    <dateadded>1</dateadded> <!-- 0 results in using the current datetime when adding a song;
                                1 (default) results in prefering to use the files mtime (if it's valid) and only using the file's ctime if the mtime isn't valid;
                                2 results in using the newer datetime of the file's mtime and ctime -->
  </musiclibrary>
</syntaxhighlight>

Revision as of 11:07, 10 July 2018

  <musiclibrary>
    <hideallitems>true</hideallitems> <!-- removes the "*All" items from the music library --> <!-- This will be replaced in v15 with a GUI option. -->
    <allitemsonbottom>true</allitemsonbottom> <!-- sorts the "*All" items at the bottom of the list when in Ascending order -->
   <promptfulltagscan>false</promptfulltagscan> <!--  prompt for full tag rescan, regardless of files being unchanged, every time scanning is initiated -->
    <recentlyaddeditems>35</recentlyaddeditems> <!-- number of recently added items. Defaults to 25 -->
    <albumformat>%B - %Y</albumformat>  <!-- album label template, default is "%B" -->
    <prioritiseapetags>true</prioritiseapetags>  <!-- prioritise APEv2 tags over ID3v1/2 tags, default is false. -->
    <itemseparator> / </itemseparator>    <!-- separator used for multiple artists/genres in tags. Note, this is *space* *slash* *space* -->
    <artistseparators> <!-- separator used for multiple artists. Note that spaces are used for some separators.-->
      <separator>;</separator>
      <separator>:</separator>
      <separator>|</separator>
      <separator> feat. </separator>
      <separator> ft. </separator>
    </artistseparators>
    <dateadded>1</dateadded> <!-- 0 results in using the current datetime when adding a song;
                                 1 (default) results in prefering to use the files mtime (if it's valid) and only using the file's ctime if the mtime isn't valid;
                                 2 results in using the newer datetime of the file's mtime and ctime -->
  </musiclibrary>