WiiM Home App v3.2.6 Update – Jul 10, 2025

Please review the app update release notes below. If you encounter any issues, feel free to reach out to us.

App Release Version
v3.2.6

What's New:
  1. USB/NAS Enhancements: Group music by composer for easier browsing.
  2. Parametric EQ: Now includes High/Low Pass filters (requires the upcoming firmware update).
  3. HDMI ARC Auto-Sensing: More personalized control with automatic HDMI ARC detection.
  4. Room Correction Default: Default frequency range is now 50Hz ~ 4kHz for better results with the built-in mic (Lower frequency will be supported by adding calibration file for the built-in MIC).
  5. [Android] Instant Access: Tap on the album or artist name on the now-playing page for immediate access.

Bug Fixes:
  1. [iOS] Preset Artwork: Fixed issue with artwork not showing correctly after upload for Open Network Stream.
  2. Room Correction Fix: Fixed a bug causing room correction to fail when using USB output with a Sub output.
 
Tap the three-dot icon (...) on the right side of the playback screen to see if View Artist and View Album are present. If they are not found, instant access is not available.
They're not present, so as you say, it must apply only to streaming services. Thanks for clarifying.
 
So everything apart from Home Music Share then? 😆
For streaming services it's an api call, and the wiim has indexed the usb contents so can ask itself.
Can you ask a media server for details about a particular artist / album? Not a rhetorical question, I really don't know!
 
Can you ask a media server for details about a particular artist / album? Not a rhetorical question, I really don't know!
The problem is that the album/albumartist/track artists sent from the server to the WHA are just strings not identifiers, so all you can do is perform a UPnP search, which works fine if there's only one artist, but what if there's two, or if the string that's passed to the WHA isn't actually the artist's name e.g.

Tracks.jpg
(Explanation of above screenshot) MinimServer allows you to customise the display of a tag when used in album/track listings e.g. Use the Artists tag for indexes but the Artist tag for album/track listings (using the MusicBrainz Artist and Artists approach).


Using BubbleUPnP as an example, on the Now Playing screen you have the options Show album; Albums by ..., Tracks by ..., which works fine if it's only a single item but not if it's a combination.

BubbleUPnP 'Show album' triggers:
Code:
SearchCriteria=(upnp:class = "object.container.album.musicAlbum" and dc:title = "The Lockdown Sessions")
I'm surprised it doesn't include the albumartist here; it must perform secondary filtering as otherwise "Greatest Hits" would return multiple.

BubbleUPnP 'Tracks by' for track 8 triggers:
Code:
SearchCriteria=(upnp:class derivedfrom "object.item.audioItem" and upnp:artist contains "Miley Cyrus feat. WATT, Elton John, Yo‐Yo Ma, Robert Trujillo & Chad Smith")
Which only matches the single track.


Does this functionality work when playing from USB if a track has multiple artists?
 
Back
Top