A modern Music Player Daemon based on Rockbox open source high quality audio player
libadwaita audio rust zig deno mpris rockbox mpd

Add a sample.icons file, and add a few more files to the docs folder in the zips


git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13664 a1c6a512-1295-4272-9138-f99709370657

+18
+9
docs/sample.icons
··· 1 + # this line sets the mpeg icon to the 4th icon in the viewers bmp file 2 + # 0 is the first icon 3 + mpeg: 3 4 + 5 + # this one sets bmp to the 5th icon of the main iconset (0 is the first one again) 6 + bmp: *5 7 + 8 + # This sets no icon for wav 9 + wav: -
+9
tools/buildzip.pl
··· 356 356 mkdir ".rockbox/docs", 0777; 357 357 for(("COPYING", 358 358 "LICENSES", 359 + "KNOWN_ISSUES" 359 360 )) { 360 361 `cp $ROOT/docs/$_ .rockbox/docs/$_.txt`; 362 + } 363 + if ($fonts) { 364 + `cp $ROOT/docs/profontdoc.txt .rockbox/docs/`; 365 + } 366 + for(("sample.colors", 367 + "sample.icons" 368 + )) { 369 + `cp $ROOT/docs/$_ .rockbox/docs/`; 361 370 } 362 371 363 372 # Now do the WPS dance