aboutsummaryrefslogtreecommitdiff
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
...
* o Removing all doit code. It was a failed experiment.Trygve Laugstøl2019-04-0110-1226/+0
|
* demo: Updating.Trygve Laugstøl2019-04-011-3/+3
|
* Project:Trygve Laugstøl2019-03-295-11/+17
| | | | | | o adding cache_dir field, useful for controlling where cached data is placed from a central place. o Updating tools to use this new variable.
* DigikeyParser: Picked last and thus wrong description. Be more specificTrygve Laugstøl2019-03-291-2/+1
| | | | when selecting description element.
* create-distributor-search-list: Ignore mechanical parts.Trygve Laugstøl2019-03-288-24/+69
| | | | | | create-order: Adding an option for a strategy to ignore/modify parts. ninja/init: Moving strategy from ninja to init so they're more persistent.
* digikey-normalize-facts: Don't drop parts without any facts, they'reTrygve Laugstøl2019-03-281-3/+0
| | | | still useful.
* to_bom: We allow both Schematic and Schematics.Trygve Laugstøl2019-03-281-2/+2
|
* create-order:Trygve Laugstøl2019-03-283-27/+49
| | | | | o Showing all unresolved parts first in the report. o Showing all MPNs and SPNs for unresolved parts.
* seeed-download-oplTrygve Laugstøl2019-03-285-90/+118
| | | | | | | o Change to download one OPL at the time. Enables Ninja to run the downloads concurrently. init/ninja: o Learning about seeed-download-opl.
* ee.xsd:Trygve Laugstøl2019-03-2812-297/+490
| | | | | | | | | | | | | o Renaming <part-uri> to <part-reference>. o Adding <supplier> on <part>, removing from <supplier-part-number>. A part can have exactly one part. create-order: o Creating anonymous part objects, with two references, one schematic reference and one part-uri reference to the selected part. o Redoing how the order is calculated with the new ObjDb structure. ee.part.Part: o Absorbing bom_file_utils into Part. Much better wrapper object around the xml goop.
* New command: init. Looks for kicad schematic and pcb files, createsTrygve Laugstøl2019-03-254-21/+86
| | | | | | | | .ee/config. ninja tool: o Use project's config to check for sch and pcb files. o Use some more conditionals in build.ninja.j2. unlockoslo: Adding demo project.
* ninja tool: changing to generate the files in the current directory.Trygve Laugstøl2019-03-255-8/+29
| | | | | build.ninja.j2: nits. olinuxino: Improving parsing of part values.
* order.rst.j2: Prettier internal links.Trygve Laugstøl2019-03-235-7/+13
| | | | ninja: Name the generated .rst file for orders too.
* order.rst.j2: Fixing typos.Trygve Laugstøl2019-03-231-4/+4
|
* xsd:Trygve Laugstøl2019-03-238-68/+559
| | | | | | | | | | | o Adding <link> list on <part>. For media, datasheets etc. digikey: o Parsing out media. PartDb: o starting on a more generic object db with indexes. order: o Using the new object db for building data while resolving parts. o Creating a report from the order.
* Starting some code around creating reports.Trygve Laugstøl2019-03-236-14/+74
|
* o Adding OPL downloader from Seeed studio.Trygve Laugstøl2019-03-204-5/+187
| | | | o Adding <description> to <part>
* Refactoring:Trygve Laugstøl2019-03-1510-181/+480
| | | | | | | | o Renaming part.id to part.uri. Changing to URIs and use that as an identifier if the part is known. Schematic part does not have an URI. o Merging <schema-reference> and <part-numbers> into <references> o Creating <part-uri> as a possible <reference>. Used by order to point to other parts.
* o Switching PartDb to serialize into many xml files into a singleTrygve Laugstøl2019-03-1515-379/+91
| | | | <part-db> document.
* o Merging XSD files into one.Trygve Laugstøl2019-03-1512-1207/+355
|
* o Adding module for searching on element14.Trygve Laugstøl2019-03-1511-26/+389
| | | | | | | o Starting on functionality create orders. Very WIP. o Adding a concept of an "ee project". Can load a gitconfig-like config file. o Adding a tool to import a yaml file into a part xml file.
* o Better searching for current currency.Trygve Laugstøl2019-03-151-1/+6
|
* o Adding PriceBreak. Parsing price breaks from DK.Trygve Laugstøl2019-03-154-11/+645
| | | | o Adding Money type with parsing.
* Digikey: extracting http caching into its own class.Trygve Laugstøl2019-03-083-16/+43
|
* o PartDB: don't die if the directory exist *and* is empty. Ninja createsTrygve Laugstøl2019-03-045-3/+140
| | | | | | empty parent directories. o PartDB: escape some path names. o new comamnd: "ninja". Generates a build.ninja from a sch. Not done!
* o Create a new part when storing result, use Digikey's PN as id.Trygve Laugstøl2019-02-281-34/+42
|
* o Sort SCH_FILES.Trygve Laugstøl2019-02-281-3/+2
|
* o Better code structure for normalization.Trygve Laugstøl2019-02-281-46/+54
|
* o Emptying the directory before trying to remove it.Trygve Laugstøl2019-02-281-0/+4
|
* o Always sorting index.xml for better git diffs.Trygve Laugstøl2019-02-275-4/+179
| | | | | | o Normalizing more Digikey facts. o When creating distributor search lists, create a new plain <part> with containing only the part numbers.
* o Removing digikey specific DistributionInfo element. Can be generic.Trygve Laugstøl2019-02-264-334/+77
|
* o Creating a PartDb that manages a file system directory with one xmlTrygve Laugstøl2019-02-2611-256/+288
| | | | | file per part. o Switching xml-based code to use PartDb.
* Digikey: replacing requests-based code with selenium.Trygve Laugstøl2019-02-2411-39/+933
| | | | Adding new tools: digikey-import-parts and digikey-refresh-parts.
* o Prettier generated code.Trygve Laugstøl2019-02-212-4/+8
|
* o Working dpn strategy.Trygve Laugstøl2019-02-211-3/+5
|
* Trying a new way to generate way to generate files.Trygve Laugstøl2019-02-217-18/+2600
|
* o Reformat.Trygve Laugstøl2019-02-213-17/+30
| | | | | | | to_bom: export to_tom_xml too. model: o More type annotations. o Parse ref_type and ref_num when constructed.
* o read_schematic: Adding support for GLabel.Trygve Laugstøl2019-02-211-0/+1
|
* o kicad-mkdeps: making individual dep files for sch and pcb.Trygve Laugstøl2019-02-101-34/+31
|
* o kicad-mkdeps: new tool, new -M option for kicad-gerber. Both output aTrygve Laugstøl2019-02-099-53/+181
| | | | Makefile-compatible dependencies file.
* o Updating digikey product parsing code. Using Selenium/WebDriver toTrygve Laugstøl2019-02-071-1/+1
| | | | fetch data.
* o Starting on some code for building reports from the project.Trygve Laugstøl2018-08-056-6/+122
|
* o Reformat.Trygve Laugstøl2018-08-041-5/+11
|
* o Using the old name for the digikey cache directory.Trygve Laugstøl2018-08-041-1/+1
|
* o Handling digikey pages with a special "exact match" header + list ofTrygve Laugstøl2018-08-021-16/+30
| | | | | | | other categories to continue to search in. The header is just enough data for us. o Better digikey tests, saving local HTML instead of doing online requests.
* o Better logging when skipping digikey component resolving.Trygve Laugstøl2018-08-021-1/+1
|
* o No need to lower case the keys in the ini file.Trygve Laugstøl2018-08-021-1/+3
|
* o Fixing a bad bug and learning some Python: list.insert(index, value)Trygve Laugstøl2018-08-022-7/+17
| | | | | | | | will only insert at index if the list is index long. If not it will just append them. Yay. Much better digikey part data now. Creating a ValueList that automatically expands the list. o Stopping with silly key and value replacements. o Updating tests.
* o Updating demo project, reorganizing the demo a bit.Trygve Laugstøl2018-08-013-15/+5
| | | | o DataSetManager: renaming `add_ds` to `register_ds`.
* o Moving all doit modules to use DoitConfig().Trygve Laugstøl2018-08-013-90/+46
|