mirror of
git://projects.qi-hardware.com/fped.git
synced 2024-11-05 08:27:09 +02:00
5d7ab083a3
- README: added that loops can also execute zero times - accept labels only at the beginning of a line - rectangles and lines no longer use the bounding box for drawing (caused offset problems since we now correct for the line width) - dist_rect and inside_rect no longer require their input pre-sorted - pad instances now have their own structure and no longer abuse the bounding box to know the pad coordinates - Makefile: use $(GEN) for fig2dev, to reduce chattiness - when dragging a point, the symbol is now adjusted accordingly - added moving of rects, pads, circles, and arcs - added creation of pads - moved rotate_r from gui_inst.c to coord.c - new function "theta" that combines most of the angle calculations - save_pix_buf: y < 0 clipping changed width, not height git-svn-id: http://svn.openmoko.org/trunk/eda/fped@5386 99fdad57-331a-0410-800a-d7fa5415bdb3
54 lines
2.2 KiB
Plaintext
54 lines
2.2 KiB
Plaintext
Missing features:
|
|
- populate input area (still needed: mm/mil, rezoom)
|
|
- add table/var/loop editor (missing: add col/row, add/del var/table/loop)
|
|
- add default unit (combine with grid unit selection ?)
|
|
- consider adding auto/mm/mil selection for each dimension
|
|
- add measurements (partly done. still needed: find out how to define
|
|
non-trivial endpoints, e.g., some vector in last iteration of loop)
|
|
- add KiCad output
|
|
- add postscript output
|
|
- add option to include/omit helper vecs and frames (display and postscript)
|
|
|
|
Error detection:
|
|
- eliminate duplicate instances
|
|
|
|
Style:
|
|
- make column of entry field greedily consume all unallocated space
|
|
- status area looks awful
|
|
|
|
Bugs:
|
|
- default silk width has no business being hard-coded in obj.c
|
|
- after moving, arc sometimes wrap the wrong way
|
|
|
|
Code cleanup:
|
|
- merge edit_unique with edit_name
|
|
- merge find_var_in_frame with similar mechanisms in expr.c and fpd.y
|
|
- add regression tests
|
|
|
|
Open decisions:
|
|
- decide on table presentation (merge frame and vars into single entity ?)
|
|
- Q: should loop be (start, last) or (start, iterations) ? or start ... last ?
|
|
- change vector circle color ? (also, highlight on hover ?)
|
|
- Q: allow reassignment of vector names ?
|
|
A1: no: would cause confusion in GUI (vectors could become orphaned)
|
|
A2: yes. but we don't change the linkage.
|
|
- Q: how do we handle stacks of objects ?
|
|
A: we don't but we make it easy to avoid them, by giving a good zoom,
|
|
flexible selection, and by disallowing stacks of identical objects in the
|
|
first place.
|
|
- Q: add frame arguments ? (e.g., .frame pad(pin_num_offset) ...)
|
|
we can already approximate this by introducing an intermediate table that
|
|
sets up the arguments (provided that we don't consider vectors as well)
|
|
- Q: should we make it a requirement to generate objects only once ?
|
|
A: almost certainly yes.
|
|
|
|
Future directions:
|
|
- future: consider using cairo instead of gdk
|
|
- live update of value when entering strings and expressions ?
|
|
- advanced: non-standard solder mask
|
|
- advanced: solder paste exceptions (subtractive, additive)
|
|
- advanced: silk line width
|
|
- future: when encountering an error after a change, we could try to find the
|
|
same element in the old instance, and select it
|
|
- future: consider editing off-canvas items in place
|