
Mmmh Cliff, it's a suggestion more than a bug report but I'm running Windows 7 and why you use the task bar? You can for example use the jump list and the super bar from Windows 7 to implant the menu and so... Why do you think of that?
All things Xion!
http://www.xionplayer.com/community/
http://www.xionplayer.com/community/viewtopic.php?f=8&t=1406
Deathy Wrote:Mmmh Cliff, it's a suggestion more than a bug report but I'm running Windows 7 and why you use the task bar? You can for example use the jump list and the super bar from Windows 7 to implant the menu and so... Why do you think of that?
// code for behaviour similar to current
for (size_t i = 0; i < stEntries; i++) {
const char *szTitleEntry = aszEntries[i];
if (stristr(szTitleEntry, szSearch) == NULL) {
// remove from list
}
}
// code for request
size_t stSearchWords = split(szSearch, " ", &aszWords);
for (size_t i = 0; i < stEntries; i++)
{
const char *szTitleEntry = aszEntries[i];
for (size_t j = 0; i < stSearchWords; i++) {
if (stristr(szTitleEntry, aszSearchWords[j]) == NULL) {
// remove from the list
}
}
}
// of course, free out the search words array here (:
davydm Wrote:Please, please please can you implement one little item before this build goes into Release: search/filter per-word, not on the entire string
davydm Wrote:\m/
Can't wait for that featurelet (search by word) to be in a downloadable build.
Thanks!