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.

plugins: add lang_is_rtl() to the plugin API.

So plugins can put stuff in the correct order, if they care.

Change-Id: Iac322bcb8cf78b37d3caef4c8d7b2a14923669f4

+3
+2
apps/plugin.c
··· 47 47 #include "load_code.h" 48 48 #include "file.h" 49 49 #include "core_keymap.h" 50 + #include "language.h" 50 51 51 52 #if CONFIG_CHARGING 52 53 #include "power.h" ··· 839 840 playlist_get_display_index, 840 841 filetype_get_plugin, 841 842 playlist_entries_iterate, 843 + lang_is_rtl, 842 844 }; 843 845 844 846 static int plugin_buffer_handle;
+1
apps/plugin.h
··· 978 978 bool (*playlist_entries_iterate)(const char *filename, 979 979 struct playlist_insert_context *pl_context, 980 980 bool (*action_cb)(const char *file_name)); 981 + int (*lang_is_rtl)(void); 981 982 }; 982 983 983 984 /* plugin header */