I also have some issues with this (which were not present a few days ago, tried the stable and alpha version, behavior is identical).
The script i use to fetch the Now Playing info seems to work fine as before (as confirmed when running it from the BTT config for my floating menu), but the script's result is not shown in the floating menu.
Script for reference:
(async () => {
let trigger = await get_number_variable({ variable_name: 'BTTCurrentlyPlaying' })
let artist = await get_string_variable({ variable_name: 'BTTNowPlayingInfoArtist' })
let song = await get_string_variable({ variable_name: 'BTTNowPlayingInfoTitle' })
let result = '-'
if (artist.length > 0) {
result = artist + ' ' + result;
} else {
result = ''
}
if (song.length > 0) {
result = result + ' ' + song;
}
returnToBTT(result)
})();
I also have this static text that should always be visible in the floating menu (when hovered), but it's no longer there. That text is being returned by a script (which was also working fine recently), here's the script:
(async () => {
returnToBTT('My static text');
})();
Thank you !