|
|
| Line 1: |
Line 1: |
| <syntaxhighlight lang="XML"> | | <syntaxhighlight lang=c style="border:3px dashed blue"> |
| <musiclibrary>
| | #include <stdio.h> |
| <hideallitems>true</hideallitems> <!-- removes the "*All" items from the music library --> <!-- This will be replaced in v15 with a GUI option. -->
| | int main() |
| <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 -->
| | printf ("Hello world!"); |
| <recentlyaddeditems>35</recentlyaddeditems> <!-- number of recently added items. Defaults to 25 -->
| | return 0; |
| <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> | | </syntaxhighlight> |
Revision as of 11:07, 10 July 2018
#include <stdio.h>
int main()
{
printf ("Hello world!");
return 0;
}