Rockbox open source high quality audio player as a Music Player Daemon
mpris rockbox mpd libadwaita audio rust zig deno
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

rbutil: Fall back from 'development' to 'daily' for all non-firmware artifacts

Before we only fell back for manuals and fonts, whereas
we also needed to fall back for source and voices. Given that
dev builds only produce the actual binaries, just fall back for
everything else.

Change-Id: Ibd84a942d380f69c86ca2243cb2c192de7efd047

+3 -3
+3 -3
utils/rbutilqt/base/playerbuildinfo.cpp
··· 130 130 break; 131 131 case TypeDevel: 132 132 buildtypename = "development"; 133 - // manual and fonts don't exist for development builds. We do have an 134 - // URL configured, but need to get the daily version instead. 135 - if(item == BuildManualUrl || item == BuildFontUrl) { 133 + // For development builds, we only provide the binaries. 134 + // For the rest, get the daily version instead. 135 + if(item != BuildUrl) { 136 136 LOG_INFO() << "falling back to daily build for this info value"; 137 137 buildtypename = "daily"; 138 138 }