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.

settings: double internal size of "path list" from 80 to 160 bytes

* Autoresume path list
* Database scan path list

Gives us a bit more headroom

Change-Id: Icb78d6f46dd39658334ddc3d8dc44863b0e138b4

+3 -2
+3 -2
apps/settings.h
··· 41 41 /** Setting values defines **/ 42 42 #define MAX_FILENAME 32 43 43 #define MAX_PATHNAME 80 44 + #define MAX_PATHLIST (MAX_PATHNAME*2) 44 45 45 46 /* The values are assigned to the enums so that they correspond to */ 46 47 /* setting values in settings_list.c */ ··· 627 628 bool autoresume_enable; /* enable auto-resume feature? */ 628 629 int autoresume_automatic; /* resume next track? 0=never, 1=always, 629 630 2=custom */ 630 - unsigned char autoresume_paths[MAX_PATHNAME+1]; /* colon-separated list */ 631 + unsigned char autoresume_paths[MAX_PATHLIST+1]; /* colon-separated list */ 631 632 bool runtimedb; /* runtime database active? */ 632 - unsigned char tagcache_scan_paths[MAX_PATHNAME+1]; 633 + unsigned char tagcache_scan_paths[MAX_PATHLIST+1]; 633 634 unsigned char tagcache_db_path[MAX_PATHNAME+1]; 634 635 #endif /* HAVE_TAGCACHE */ 635 636