With the help of the database Wiki, I created a custom tagnavi config file that works very well for myself. But there are two things that bug me:
1. I have a search that asks for two parameters:
"Artist starting with... and track containing..." -> album ? artist ^ "" & title ~ "" -> title = "f_browse"
When I perform the search, nothing shows up. But when I do the individual searches alone (i.e. only the artist ^ "" part or the title ~ "" part, the track I want is there. As far as I can see, my syntax is the same as the similar search in the example in Wiki (search between years), which, of course, works fine. Can anyone point out what I did wrong here?
2. The multiple conditions for filter is connected by "&", which I take as the AND boolean operator. Are there ways to achieve the OR boolean operator? The "@" works only with exact strings... Specifically, I'm trying to put the "The ..." albums, artists, etc. with their non-The counterpart, something like
"A" -> album ? album ^ "A" OR album ^ "the a" -> title = "f_browse"
Is is possible?
Thanks