![]() |
[PROBLEM] 9.2.1 Intro pop up keeps appearing - Printable Version +- Moode Forum (https://moodeaudio.org/forum) +-- Forum: moOde audio player (https://moodeaudio.org/forum/forumdisplay.php?fid=3) +--- Forum: Support (https://moodeaudio.org/forum/forumdisplay.php?fid=7) +--- Thread: [PROBLEM] 9.2.1 Intro pop up keeps appearing (/showthread.php?tid=7258) |
RE: 9.2.1 Intro pop up keeps appearing - Nutul - 01-03-2025 (01-03-2025, 03:37 AM)PJVervoorn Wrote: Thanks for resolving the issue. Confirm all the popups, they should be 3 or 4. RE: 9.2.1 Intro pop up keeps appearing - PJVervoorn - 01-03-2025 (01-03-2025, 05:15 AM)Nutul Wrote:(01-03-2025, 03:37 AM)PJVervoorn Wrote: Thanks for resolving the issue. O wow, I had to go on a pop-up hunt, to see which one I missed ![]() This easter egg hunt seems to have fixed the issue (it was the one at the radios screen). I hope in the next version these popups are not linked anymore. RE: 9.2.1 Intro pop up keeps appearing - Tim Curtis - 01-03-2025 It gets disabled when you click on the 2 other first-use help overlays. The one that overlays the album cover and the other that overlays the Playbar. RE: 9.2.1 Intro pop up keeps appearing - eberproducts - 01-03-2025 (01-03-2025, 11:39 AM)Tim Curtis Wrote: It gets disabled when you click on the 2 other first-use help overlays. The one that overlays the album cover and the other that overlays the Playbar. Confirmed ! The workaround works - THX !! RE: 9.2.1 Intro pop up keeps appearing - Nutul - 01-03-2025 (01-03-2025, 02:31 PM)eberproducts Wrote:(01-03-2025, 11:39 AM)Tim Curtis Wrote: It gets disabled when you click on the 2 other first-use help overlays. The one that overlays the album cover and the other that overlays the Playbar. It's not a workaround. It's the way it works. RE: 9.2.1 Intro pop up keeps appearing - roderickvd - 01-03-2025 Not sure if it's related, but could it be that the audio info screen isn't working anymore? I also get the pop-up every time, and when I close it, the `audioinfoPlayback()` button does not change view. RE: 9.2.1 Intro pop up keeps appearing - Tim Curtis - 01-03-2025 (01-03-2025, 08:55 PM)roderickvd Wrote: Not sure if it's related, but could it be that the audio info screen isn't working anymore? I also get the pop-up every time, and when I close it, the `audioinfoPlayback()` button does not change view. Theres a bug that prevents Audio info from showing for UPnP tracks i.e., tracks that begin with http:// but I'm not aware of any other bugs affecting Audio info. For the Welcome screen issue try dumping the flags that control whether the Help coupons and the Welcome screen gets displayed. Code: moodeutl -q "select value from cfg_system where param='first_use_help'" The first_use_help param contains a 2 position comma delimited value consisting of y or n in each position. 1: Playback coupon, 2: Playbar coupon If either are y then the Welcome screen also gets displayed RE: 9.2.1 Intro pop up keeps appearing - Tim Curtis - 01-03-2025 (01-03-2025, 07:19 AM)PJVervoorn Wrote:(01-03-2025, 05:15 AM)Nutul Wrote:(01-03-2025, 03:37 AM)PJVervoorn Wrote: Thanks for resolving the issue. The flags that control whether first-use help is displayed are on the server (moode Pi). This means that every connected client will have the help notifications displayed. When any client dismisses the help then a Browser refresh of the other clients will dismiss it. In the upcoming 9.2.2 release the >> Players action menu will have a "Refresh screen" action to easily do a screen refresh on all connected clients. RE: 9.2.1 Intro pop up keeps appearing - roderickvd - 01-03-2025 (01-03-2025, 09:19 PM)Tim Curtis Wrote:(01-03-2025, 08:55 PM)roderickvd Wrote: Not sure if it's related, but could it be that the audio info screen isn't working anymore? I also get the pop-up every time, and when I close it, the `audioinfoPlayback()` button does not change view. It was working on Deezer, but no longer (but previously I also did not have the first welcome screen anymore). Regardless of clicking the "X" or the pause/button in the dialog, the output of "select value from cfg_system where param='first_use_help'" remains "y,n". RE: 9.2.1 Intro pop up keeps appearing - Tim Curtis - 01-03-2025 (01-03-2025, 09:32 PM)roderickvd Wrote:(01-03-2025, 09:19 PM)Tim Curtis Wrote:(01-03-2025, 08:55 PM)roderickvd Wrote: Not sure if it's related, but could it be that the audio info screen isn't working anymore? I also get the pop-up every time, and when I close it, the `audioinfoPlayback()` button does not change view. Check the WebUI to see if one of the help coupons is still there. Below is what they look like: [attachment=4327][attachment=4328] Clicking on them dismisses them and sets their respective flags in "first_use_help" param to "n" The flags can also be updated manually but this should never be needed. Code: moodeutl -q "update cfg_system set value='n,n' where param='first_use_help'" |