Compare commits

...

2 Commits

2 changed files with 13 additions and 0 deletions

11
NEWS
View File

@ -1,3 +1,14 @@
x.x.x (xxxx-xx-xx)
* Added ability to control the volume of MPD's current PulseAudio sink
* Now fetching Internet stream information asynchronously
* Added rudimentary incremental search, normally bound to C-s, in all tabs
* Fixed jumping to the beginning of the queue after deleting items
1.1.1 (2021-11-04)
* Terminal focus in/out events no longer ring the terminall bell

View File

@ -2089,6 +2089,8 @@ app_write_mpd_status (struct row_buffer *buf)
row_buffer_append (buf, msg, APP_ATTR (HIGHLIGHT));
free (msg);
}
else if (g.poller_curl.registered)
row_buffer_append (buf, "Downloading...", APP_ATTR (NORMAL));
else if (str_map_find (map, "updating_db"))
row_buffer_append (buf, "Updating database...", APP_ATTR (NORMAL));
else