foo_quicksearch, New version of foo_uie_quicksearch |
![]() ![]() |
foo_quicksearch, New version of foo_uie_quicksearch |
Dec 10 2012, 12:03
Post
#301
|
|
|
Group: Members Posts: 13 Joined: 22-January 12 Member No.: 96607 |
I'm having a problem with genre searching.
I have, say, three albums. One album is tagged "Jazz; Hip Hop" Album2 is tagged "Jazz" And Album3 is tagged "J-Jazz" (Japanese Jazz) When I search "Jazz", I want Album1 and Album2 to show up. But not Album 3. If I do "match all", all three albums show up. If I do exact, only Album2 shows up. What do I do to fix this? I thought "Jazz; Hip Hop" should be treated as "Jazz" and "Hip Hop" not the singular tag "Jazz; Hip Hop" Any insight on how to fix this |
|
|
|
Jan 10 2013, 14:21
Post
#302
|
|
|
Group: Members Posts: 1 Joined: 10-January 13 Member No.: 105769 |
Hello!
Would it be possible to add option to "select all" on focus? I mean if you click on the search box (or use shortcut), the edit box would automatically select the input (like if you press Ctrl+A). We already have option to clear the field after successful search, but this requires hitting Enter if autosearch is enabled. It is just a little detail, but it would be great feature for me, since I use shortcut to focus the search bar, but I often forget to clear the previous the input. This way it would be rewritten with new input. Also this way it would be still possible to edit the old input since it would not be cleared, just selected. What do you think about this? Thank you very much for reply. |
|
|
|
Jan 18 2013, 00:59
Post
#303
|
|
|
Group: Members Posts: 1 Joined: 18-January 13 Member No.: 105967 |
Hello folks, I can't seem to get quicksearch to show up in my toolbar options despite having it installed.
|
|
|
|
Jan 18 2013, 03:13
Post
#304
|
|
|
Group: Members Posts: 141 Joined: 20-September 11 Member No.: 93842 |
You can only do that with Columns UI, unfortunately. You'd have to add it as a separate element in the Default UI.
|
|
|
|
Feb 6 2013, 06:51
Post
#305
|
|
![]() Group: Members Posts: 337 Joined: 18-September 05 From: UC, TX Member No.: 24536 |
I'm trying to create a context item that will do a quicksearch for the same artist with ratings. I tried the following but it seems something is going on with the ratings portion that it doesn't like. I've tried with and without parens and I get results that pretty much ignore the ratings. Any ideas?
CODE %artist% AND %rating% GREATER 3
|
|
|
|
Feb 6 2013, 08:00
Post
#306
|
|
|
Group: Members Posts: 328 Joined: 17-April 12 Member No.: 98921 |
Definitely something weird happening with %rating%. When performing any search regarding %rating% via the context menu, it results in only tracks with the rating of the file you engaged the context menu on being returned. Thus only tracks with a rating of 4 will be returned if you right-clicked on a track with a rating of 4.
If you append the search string to the playlist name, you'll see 4 GREATER 3, 4 LESS 3, 4 IS 3, 4 PRESENT, 4 MISSING, etc. This post has been edited by BenB: Feb 6 2013, 08:02 -------------------- This signature apparently isn't too long.
|
|
|
|
Feb 7 2013, 07:23
Post
#307
|
|
![]() Group: Developer Posts: 804 Joined: 28-November 03 Member No.: 10088 |
I'm trying to create a context item that will do a quicksearch for the same artist with ratings. I tried the following but it seems something is going on with the ratings portion that it doesn't like. I've tried with and without parens and I get results that pretty much ignore the ratings. Any ideas? CODE %artist% AND %rating% GREATER 3 Try %artist% %rating%. It will search for the same artist and rating than the current selection (unless rating is empty, in which case it will return all tracks from the same artist). |
|
|
|
Feb 7 2013, 20:24
Post
#308
|
|
|
Group: Members Posts: 328 Joined: 17-April 12 Member No.: 98921 |
So... what wolfsong wanted isn't possible because, obviously, searches via the context menu can only use the value of the specified variable of the selected track. I should've realized that. I really shouldn't post at one in the morning when I'm
-------------------- This signature apparently isn't too long.
|
|
|
|
Feb 8 2013, 15:22
Post
#309
|
|
![]() Group: Members Posts: 337 Joined: 18-September 05 From: UC, TX Member No.: 24536 |
I'm trying to create a context item that will do a quicksearch for the same artist with ratings. I tried the following but it seems something is going on with the ratings portion that it doesn't like. I've tried with and without parens and I get results that pretty much ignore the ratings. Any ideas? CODE %artist% AND %rating% GREATER 3 Try %artist% %rating%. It will search for the same artist and rating than the current selection (unless rating is empty, in which case it will return all tracks from the same artist). In that case it's going to produce the same results as just %artist% so there would be no way to just find rated tracks by artist. This post has been edited by wolfsong: Feb 8 2013, 15:23 |
|
|
|
Feb 8 2013, 18:50
Post
#310
|
|
![]() Group: Developer Posts: 804 Joined: 28-November 03 Member No.: 10088 |
|
|
|
|
Feb 8 2013, 20:51
Post
#311
|
|
|
Group: Members Posts: 328 Joined: 17-April 12 Member No.: 98921 |
In that case it's going to produce the same results as just %artist% .... No If the selected track is unrated, then he is correct that it is basically the same as using %artist% because %rating% is ignored and all tracks, rated and unrated, by that artist are returned. I'd argue that it would be better if %rating% returned all rated tracks if the selected track is rated and all unrated tracks if it isn't (esp. when it is used in conjunction with other variables, if that is even possible). In that case it's going to produce the same results as just %artist% so there would be no way to just find rated tracks by artist. Searches via the context menu are essentially IS queries. If you do a search using %artist% %rating%, then it searches for all tracks where those tags match the selected track with the exception that if %rating% doesn't exist for the selected track, then %rating% is ignored, e.g.: If the artist is "The Beatles" and the rating is "4" for the selected track, then it returns all tracks where the artist is "The Beatles" and the rating is "4". If the artist is "The Beatles" and the track is not rated, then it returns all tracks where the artist is "The Beatles". This post has been edited by BenB: Feb 8 2013, 21:01 -------------------- This signature apparently isn't too long.
|
|
|
|
Feb 9 2013, 09:50
Post
#312
|
|
![]() Group: Developer Posts: 804 Joined: 28-November 03 Member No.: 10088 |
If the artist is "The Beatles" and the rating is "4" for the selected track, then it returns all tracks where the artist is "The Beatles" and the rating is "4". If the artist is "The Beatles" and the track is not rated, then it returns all tracks where the artist is "The Beatles". Yes |
|
|
|
Feb 9 2013, 11:03
Post
#313
|
|
![]() Group: Developer Posts: 804 Joined: 28-November 03 Member No.: 10088 |
I'd argue that it would be better if %rating% returned all rated tracks if the selected track is rated and all unrated tracks if it isn't (esp. when it is used in conjunction with other variables, if that is even possible). Then use %artist%[-%rating%]. It should produce the desired results. |
|
|
|
Feb 12 2013, 03:22
Post
#314
|
|
![]() Group: Members Posts: 337 Joined: 18-September 05 From: UC, TX Member No.: 24536 |
I'd argue that it would be better if %rating% returned all rated tracks if the selected track is rated and all unrated tracks if it isn't (esp. when it is used in conjunction with other variables, if that is even possible). Then use %artist%[-%rating%]. It should produce the desired results. Even this does not produce the desired results. All tracks by the artist are returned, not just tracks that a rated. It doesn't seem to matter what is used, this is always the case. -------------------- [url="http://www.last.fm/user/wolfsong/"]Last.fm Profile[/url]
|
|
|
|
Feb 12 2013, 05:34
Post
#315
|
|
|
Group: Members Posts: 11 Joined: 12-February 13 Member No.: 106579 |
Hi. How can I view which of the 50+ playlists contain the searched item ?
|
|
|
|
Feb 12 2013, 07:28
Post
#316
|
|
![]() Group: Developer Posts: 804 Joined: 28-November 03 Member No.: 10088 |
|
|
|
|
Feb 12 2013, 08:03
Post
#317
|
|
|
Group: Members Posts: 11 Joined: 12-February 13 Member No.: 106579 |
QUOTE You can't. Can you please add this feature to plugin ? |
|
|
|
Feb 13 2013, 15:01
Post
#318
|
|
|
Group: Members Posts: 5 Joined: 17-October 10 Member No.: 84679 |
Hello! Would it be possible to add option to "select all" on focus? I mean if you click on the search box (or use shortcut), the edit box would automatically select the input (like if you press Ctrl+A). We already have option to clear the field after successful search, but this requires hitting Enter if autosearch is enabled. It is just a little detail, but it would be great feature for me, since I use shortcut to focus the search bar, but I often forget to clear the previous the input. This way it would be rewritten with new input. Also this way it would be still possible to edit the old input since it would not be cleared, just selected. What do you think about this? Thank you very much for reply. I came to find this thread just to ask for this, I have used this component for years and it is basically perfect apart from this sore usability problem. |
|
|
|
![]() ![]() |
|
Lo-Fi Version | Time is now: 19th May 2013 - 22:06 |