1
0
ergogen/roadmap.md

117 lines
4.5 KiB
Markdown
Raw Normal View History

2021-07-18 04:17:20 -07:00
# Ergogen TODO
## CLI
### Major
- Merge, generalize, uniform-ize and externalize footprints!
2022-04-16 03:44:55 -07:00
- onnx-like incremental opset versioning
- Template for creating them, built-in variables they can use, documentation, external links, etc.
2022-04-05 11:35:12 -07:00
- Add access to whole set of points + filtering logic, so they can implement their own connection logic as well maybe (see daisy chaining)
- Also considering how (or, on which layer) they define their silks, universal mirroring behaviour (see ixy/xy/sxy note), etc.
2021-11-27 12:04:30 -08:00
2021-07-18 04:17:20 -07:00
### Minor
2022-04-16 03:44:55 -07:00
- Include raw kicad footprint integrations
- pull torik's script to be able to convert raw kicad footprints into positionable ergogen ones
- have a `dummy` footprint which can just be updated from schematic
2022-04-10 13:26:28 -07:00
- Allow footprints to publish outlines
- Make these usable in the `outlines` section through a new `what`
- Add footprint sanitization to check compatibility for externally loaded ones
- Or to double check internal ones for compliance
2021-12-18 13:15:57 -08:00
- 3D orient for cases
2022-01-18 13:07:34 -08:00
- Even more extreme anchor stuff
- Checkpoints, intersects, distances, weighted combinations?
2021-07-18 04:17:20 -07:00
- SVG input (for individual outlines, or even combinations parsed by line color, etc.)
2021-11-27 12:04:30 -08:00
- And once that's done, possibly even STL or other input for cases or pcb renders
- Support text silk output to PCBs (in configurable fonts, through SVG?)
- Maybe a partial markdown preprocess to support bold and italic?
2021-07-18 04:17:20 -07:00
- Look into gr_curve to possibly add beziers to the kicad conversion
2021-11-27 12:04:30 -08:00
- Support curves (arcs as well as Béziers) in polygons
2022-12-03 03:38:07 -08:00
- Also, three point arcs, tangents, earier "circle tools" in general
2021-07-18 04:17:20 -07:00
- Add snappable line footprint
2022-01-18 13:07:34 -08:00
- Figure out a manual, but still reasonably comfortable routing method directly from the config
2021-11-27 12:04:30 -08:00
- Eeschema support for pcbs
- Generate ZMK shield from config
- Export **to** KLE?
2022-01-18 13:07:34 -08:00
- Include 3D models paths in kicad output for visualization
- Also, provide 3D models for built-in footprints
2021-12-15 11:35:15 -08:00
- Look into kicad 5 vs. 6 output format
- Update json schema and add syntax highlight to editors
2022-01-18 13:07:34 -08:00
- Support different netclasses
2022-05-29 05:09:47 -07:00
- Allow a potential filter for filleting (only on angles =90°, <45°, left turn vs. right turn when going clockwise, etc.)
2022-10-30 13:50:36 -07:00
- Add `operation: skip` to allow easily "commenting out" whole outline parts
- Better error message for negative rectangle (it may not only be because of corner/bevel)
2021-07-18 04:17:20 -07:00
### Patch
2022-02-27 10:10:02 -08:00
- YAML lib v4 update - breaking changes in how undefined is handled!
- Prevent double mirroring (see discord "mirror_mirror_")
2022-01-16 11:36:19 -08:00
- Check unexpected keys at top level, too
2021-11-27 12:04:30 -08:00
- Better error handling for the fillet option?
2021-07-18 04:17:20 -07:00
- Integration and end2end tests to get coverage to 100%
2022-01-18 13:07:34 -08:00
- Add custom fillet implementation that considers line-line connections only?
2022-04-10 13:26:28 -07:00
- Add nicer filleting error messages when makerjs dies for some reason
2022-04-05 11:35:12 -07:00
- Empty nets should be allowed (to mean unconnected)
2022-10-30 13:50:36 -07:00
- Debug point (orient+shift) differences in circles vs. polygons (see Discord)
2021-07-18 04:17:20 -07:00
## WEBUI
### Major
2021-11-27 12:04:30 -08:00
- Change over to Cache's live preview implementation
2021-12-15 11:35:15 -08:00
- Add missing KLE functionality
- Create browserified version of semver lib
2022-01-18 13:07:34 -08:00
- Or at least a shim with a console warning
- Visualizing multiple outlines at once, with different colors
2022-11-22 12:26:48 -08:00
- Add snapping/measurement capabilities for quicker iteration
2021-11-27 12:04:30 -08:00
2021-07-18 04:17:20 -07:00
### Minor
- Propagate log output from the ergogen module
- Attempt to auto-compile (if inactive for n secs, or whatever)
- Support saving to gists
- Add kicad_pcb visualization as well
2022-01-18 13:07:34 -08:00
- Get dropdown examples from a separate repo
2021-07-18 04:17:20 -07:00
- Expand the config dropdown with opensource stuff: corne, lily, ergodox, atreus...
### Patch
2022-01-18 13:07:34 -08:00
- Streamline (and document) an update pipeline
- Add puppeteer tests
2021-07-18 04:17:20 -07:00
## DOCS
- n00b tutorials
- With a progression of increasingly complex steps
- And lots of illustrations!
- Complete reference
2022-01-18 13:07:34 -08:00
- Some known deficiencies:
2021-07-18 04:17:20 -07:00
- Units separated to their own block at the front
- Key-level `width` and `height` are supported during visualization
- This key-level example should probably be added from discord: https://discord.com/channels/714176584269168732/759825860617437204/773104093546676244
2021-07-18 07:26:30 -07:00
- Change outline fields to have their full anchor support documented
- Mention the ability to opt out of gluing!
- Key-level defaults are based around u's, not 19!
2021-07-18 04:17:20 -07:00
- Contribution guidelines
2022-01-18 13:07:34 -08:00
- Include test commands (npm test, npm run coverage, --what switch, --dump switch)
2021-07-18 04:17:20 -07:00
- Changelog, Roadmap
- A public catalog of real-life ergogen configs
2022-01-18 13:07:34 -08:00
- Probably could be the same as the separate examples repo for the dropdown
2021-07-18 04:17:20 -07:00