2023-03-30, 17:23
Is it possible to create a Node for a specific genre, and then navigate within it by Artists and then listing only the album belonging to that specific genre?
I created this:
But when I go into Artists it displays all the genres that the artists have album for in my library.
I can select Atmos from that genres list and then I'm shown what I would like to have in the first place:
A list of Artists with Atmos albums and if I go into an artist I only get shown its Atmos albums.*
So basically... I'd like a node that, when entered, displays a list of artists with Atmos albums. And if I enter into an artist I am shown only its Atmos albums, not their whole discography in the library. Since I can get there (see above*), I guess it's just a matter of creating the node with the correct parameters.
EDIT: saving the * entry as a favorite, I basically already get what I want. A home menu shortcut to that view. I'm just wondering, academically speaking, if there was a more "elegant" way to achieve the same result.
I created this:
xml:<?xml version='1.0' encoding='UTF-8'?>
<node type="filter">
<label>Artists</label>
<content>artists</content>
<rule field="genre" operator="is">
<value>Atmos</value>
</rule>
<group>genres</group>
</node>
But when I go into Artists it displays all the genres that the artists have album for in my library.
I can select Atmos from that genres list and then I'm shown what I would like to have in the first place:
A list of Artists with Atmos albums and if I go into an artist I only get shown its Atmos albums.*
So basically... I'd like a node that, when entered, displays a list of artists with Atmos albums. And if I enter into an artist I am shown only its Atmos albums, not their whole discography in the library. Since I can get there (see above*), I guess it's just a matter of creating the node with the correct parameters.
EDIT: saving the * entry as a favorite, I basically already get what I want. A home menu shortcut to that view. I'm just wondering, academically speaking, if there was a more "elegant" way to achieve the same result.