-
-
Notifications
You must be signed in to change notification settings - Fork 110
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Very inconvenient to search for certain values like '100Ohm 0402 resistor' #66
Comments
Maybe we can create some kind of smart filter here. Like writing 100 pkg:0402 will search for 0402 in the packages, mfr:xxx could be the same for manufacturers. What do you think of this approach? |
Yes, I think it will be nice. Also, I think search box content can possibly be automatically filled from the component value. |
Thats a nice idea, I like that! |
If you want, you can use preprocessed libraries from my project: JlcParts (https://github.com/yaqwsx/jlcparts). All basic values like resistance, capacitance, inductance, voltage, current, etc. are normalized to SI units which allows you to, e.g., sort properly by values. The libraries are JSON files per category and are served via GH-Pages. |
@yaqwsx Thank you for this kind offer, I have to look into it if and how I could use your librarys. |
My goal with JlcParts was to avoid a need for a custom infrastructure. That's why the current solution is quite hacky and abuses IndexedDB at the user side. If you manage to run an alternative service, I will be happy to use it! However, I cannot offer you any implementation help from my side at the moment as I have much more urgent maintenance work regarding my other projects. |
Ok, absolutely no preasure from my side here 😄 |
I have the Greek alphabet mapped on my keyboard so I can type stuff like Ω or μ with 4 keystrokes each. But perhaps having a simple string-replace of JLC's own search doesn't have a way to respect word boundaries (e.g. |
That sound like a good idea to me! |
@t123yh What do you think of the new search UI, is that sufficiant or do you still think the search needs improvement as discussed above? |
Hi, @Bouni Thanks for your great work! The new version feels much better and smoother to use. However, there're two things I think can be improved:
|
Yes, thats easy to solve, would you please open a seperate issue for that. It helps me keep track of feature requests and problems.
This is not that easy, because there are all sorts of names for a package on both sides, KiCAD and JLC, for example |
I think we can embed some common package names like |
I have to look into that, as there are a lot of common packages this list can get quite long and intensive to generate/keep up to date ... |
We can probably build some sort of matching table, based on what the user selected. For example, if we selected a "0402" part for "R_0402" footprint, then the tool can remember this preference, and fill in "0402" for all later "R_0402" parts. |
I'd like to vote for a small "omega" button. This would clutter the GUI some, but would avoid having to know/remember cryptic replacements like "\R" or "ohm". |
I thought about something like that before but I'm not sure how I can know which textfield to put the Ohm into. |
I think the Ohm would make sense in the keyword field only, so you could put it to the right of the keyword field and append to this field only. |
Finally fixed by #508 |
When you search for '100 0402' or '100 0402 resistor', thousands of results appearing in the result box.
However, you can get the desired result if you search with '100Ω'.
Considering the fact that most people don't have the Ω symbol on their keyboard, I think it would be nice to have some form of auto-conversion in the search box, like converting
ohm
toΩ
.The text was updated successfully, but these errors were encountered: