Mic

Results 140 comments of Mic

> Some users are saying its because of old Firmware so updating it to 0x00001004 to see if additional features appear for ZHA or not You need to update the...

It could be extended what has be done in #200, adding the account name to the path string. However, with only one letter account names I suspect it could not...

Ok, I'll make a PR to search also for the account.

Could it be something like this? https://github.com/micz/quickmove-extension/commit/d7fe72e1b9c3f90b22d8abacb55d4991bee80b02 It checks if any word in the search strings matches any part of the folder path. If this approach works for you, I...

Maybe this ```javascript if (!hasAccent) { itemText = itemText.normalize("NFD").replace(DIACRITICS, ""); } ``` has to be applied also to the path before spitting in segments?

Perhaps it would be better to enable this new behavior as an option?

> Something like that might work. You might need to instead traverse the folder nodes to root instead of splitting by `/`, because it is unfortunately possible that folder names...

> If we make it a default-off pref then I think we could risk it and wait until someone complains that it is slow when they turn it on. I...

I modified the code: https://github.com/micz/quickmove-extension/commit/80d41af6c656ad02c6db4a054a2977a79219f454 There is no need to split the path. I tested it with 5000 folder and there is no delay. I think it should be used...

I understand your point, you're right. Also, this is your add-on, so you're the boss. :thumbsup: :smile: I'll try to use the lazy loading you suggested to create a string...