Introduce POLYGONHOLE_MODE for creating holes in polygons
[geda-pcb/gde.git] / ChangeLog
blobb26c4310dd4ae757d14a60624deed9b8fe8aa4f2
1 2009-11-02   Dan McMahill * dan AT mcmahill dot net *
3         * NEWS: Add a few more news item for the upcoming release.
5 2009-11-02   Dan McMahill * dan AT mcmahill dot net *
7         * : commit ccd37c7db665e3b0f15bc5377a54f89ba997296d  Author: Dan
8         McMahill * dan AT mcmahill dot net * Date:   Mon Nov 2 22:24:29 2009
9         -0500
11 2009-09-22   Ineiev * ineiev AT users dot berlios dot de *
13         * src/file.c, src/global.h, src/mymem.c, src/parse_y.y: add
14         attributes to layers Fix memory leaks of attributes
16 2009-10-30   Dan McMahill * dan AT mcmahill dot net *
18         * configure.ac, doc/Makefile.am, lib/Makefile.am: Provide better
19         support for building from anoncvs sources.  There were a few conditionals which turned on additional portions of
20         the makefiles if it was determined that the build was from sources
21         obtained via git.  Expand this to also detect if sources were from
22         CVS since we still support anonymous cvs for tracking sources.
24 2009-10-29   Dan McMahill * dan AT mcmahill dot net *
26         * README.snapshots: Add some missing 'git push' to the instructions.
28 2009-10-29   Dan McMahill * dan AT mcmahill dot net *
30         * NEWS: Add some last minute news items for 20091101
32 2009-10-29   Dan McMahill * dan AT mcmahill dot net *
34         * README.snapshots: Recommend using the -O (obfuscate email
35         addresses) option to git2cl
37 2009-10-29   Dan McMahill * dan AT mcmahill dot net *
39         * utils/git2cl: Teach git2cl how to obfuscate email addresses.  Also
40         add a --help.
42 2009-10-29   Dan McMahill * dan AT mcmahill dot net *
44         * : commit dc0cdd25a1e490e7288622e9bcb5efd1f253c9cb  Author: Dan
45         McMahill * dan AT mcmahill dot net * Date:   Wed Oct 28 22:58:43
46         2009 -0400
48 2009-10-28   Dan McMahill * dan AT mcmahill dot net *
50         * README.snapshots: Take a first pass at updating the release
51         documentation for git instead of cvs.
53 2009-10-28   Dan McMahill * dan AT mcmahill dot net *
55         * NEWS: Update the target release date for the next snapshot
57 2009-10-22   Peter Clifton * pcjc2 AT cam dot ac dot uk *
59         * src/polygon.c: Pass r_NoHolesPolygonDicer a POLYAREA *, not a
60         PLINE * No functional changes to callers of NoHolesPolygonDicer() The allows state in the POLYAREA to be passed into the recursive
61         dicer. This is needed in order to maintain an up to date r-tree of
62         contours in the POLYAREA.
64 2009-10-22   Peter Clifton * pcjc2 AT cam dot ac dot uk *
66         * src/polygon1.c: Fix bug with polygon boolean operation PBO_XOR (I
67         think!) If the contour in A is outside of B, it should be kept. It seems
68         this case may have been missed.  PCB does not use the PBO_XOR operation, so it is difficult to test
69         whether this is correct or not.
71 2009-10-21   Peter Clifton * pcjc2 AT cam dot ac dot uk *
73         * src/global.h, src/polyarea.h, src/polygon1.c: Make rtree_t type
74         available to polygon1.c This saves a load of casting, and helps the compiler doing its job
75         catching programming errors.
77 2009-10-21   Jared Casper * jaredcasper AT gmail dot com *
79         * src/hid/gtk/gui-top-window.c: Fix a bug in gtk hid which caused
80         layer buttons to get confused (sourceforge bug 1988951) In ghid_layer_enable_buttons_update, the layer_buttons array was
81         being indexed using a counter which stoped at the current max_layer,
82         which was wrong.  Changed this to use the constants LAYER_BUTTON_*.  Also made the handling of the silk and rats buttons match the
83         (slightly more correct) handling of the other buttons in
84         layer_enable_button_cb.
86 2009-10-21   Peter Clifton * pcjc2 AT cam dot ac dot uk *
88         * src/create.c, src/global.h, src/hid/common/draw_helpers.c,
89         src/mymem.c, src/polygon.c, src/polygon.h: Add cache for "noholes",
90         diced versions of polygons
92 2009-10-21   Peter Clifton * pcjc2 AT cam dot ac dot uk *
94         * src/hid/common/draw_helpers.c, src/polygon.c: Give callback from
95         NoHolesPolygonDicer ownership of the returned contour This means callers of NoHolesPolygonDicer() should call
96         poly_FreeContours on the contour they are passed (if they do not
97         wish to retain it).
99 2009-10-21   Peter Clifton * pcjc2 AT cam dot ac dot uk *
101         * src/polyarea.h, src/polygon1.c: Replace poly_Clear(POLYAREA *)
102         function with poly_FreeContours(PLINE **) The poly_Clear function only clears the contours of the polygon
103         anyway, so make a more explicitly named function to do this work,
104         and pass the contours directly.  This will be useful should we want to deal with a series of contours
105         separately from a POLYAREA object.
107 2009-10-21   Peter Clifton * pcjc2 AT cam dot ac dot uk *
109         * src/action.c, src/create.c, src/strflags.c: Fix "newfullpoly" flag
110         test and save its state into the .pcb file.  The flag controlling this behaviour is kept up to date as a PCB
111         flag, not something which is updated in Settings.FullPoly. Change
112         the test accordingly.  Added a PCB flag "newfullpoly" to save this state in the .pcb file.  NOTE: "full" polygons severly break connectivity checking, as the
113               code always treats broken up pieces of the polygon as being
114         connected.        It _might_ have been better to leave this support broken - so       users don't inadvertently create polygons with the "fullpoly"
115               flag.  TODO: Consider removing, hiding or adding warnings to this feature.
117 2009-10-20   Peter Clifton * pcjc2 AT cam dot ac dot uk *
119         * src/hid/gtk/gui-output-events.c: hid/gtk: Remove unused function
120         in_draw_state()
122 2009-10-19   Peter Clifton * pcjc2 AT cam dot ac dot uk *
124         * src/hid/common/actions.c: hid/common: Fix dereference bug in
125         hid_find_action().  We want to check context for being NULL, not *context.
127 2009-10-19   Peter Clifton * pcjc2 AT cam dot ac dot uk *
129         * src/hid/common/actions.c: hid/common: Don't walk off end of string
130         whilst parsing.  Fixed a bug where the action parser would walk off the end of a
131         string when given an action without a "(" in it, e.g. "benchmark".
133 2009-10-17   Peter Clifton * pcjc2 AT cam dot ac dot uk *
135         * src/find.c: Tidy up IsPolygonInPolygon No functional changes
137 2009-10-17   Peter Clifton * pcjc2 AT cam dot ac dot uk *
139         * src/global.h, src/polygon1.c, src/rtree.c: Add some annotations to
140         help optimise branch prediction.  Macros G_LIKELY and G_UNLIKELY were taken from GLib (LGPL 2), and
141         renamed without the G_ prefix.  This hasn't had much discernable effect
143 2009-10-17   Peter Clifton * pcjc2 AT cam dot ac dot uk *
145         * src/polygon1.c: Rework iteration over contours in "intersect" to
146         improve performance We don't need to be using an r_tree search to determine if a
147         contour's bounding box hits anything in another contour. Just
148         compare the bounding boxes directly, then continue to the more
149         expensive testing.  Rather than counting the vertices of each POLYAREA then swapping to
150         ensure we loop over the the small one, wait until we've worked out
151         which contours we're comparing. Rather than swapping, we just choose
152         which to loop over. This saves us time in the case where the larger
153         intersecting contour belongs to the polygon with fewer vertices.  In one case, this change reduced a complex board's load time from
154         ~140 seconds to ~70.
156 2009-10-14   Peter Clifton * pcjc2 AT cam dot ac dot uk *
158         * src/.gitignore: Add dbus-introspect.h to src/.gitignore dbus-introspect.h is a generated file.
160 2009-09-14   Dan McMahill * dan AT mcmahill dot net *
162         * : commit 7ae3210e58b682577bbae1ff4d8ffc89a6666ad9  Author: Dan
163         McMahill * dan AT mcmahill dot net * Date:   Mon Sep 14 07:20:50
164         2009 -0400
166 2009-09-11   DJ Delorie * dj AT delorie dot com *
168         * src/misc.c: Fix "Design Rule Checker moves elements and traces off
169         grid"  Patch from Ineiev * ineiev AT gmail dot com * to keep the grid from
170         changing just because DRC ran.
172 2009-08-29   Bert Timmerman * bert dot timmerman AT xs4all dot nl *
174         * src/hid/batch/batch.c: gEDA-dev: [pcb patch] Correction of the pcb
175         homepage url in the batch HID Hi, Subject says it all.  Kind regards, Bert Timmerman.  >From 54b7d8e1d7704c1f467e0711f94dc564cc0a2c6d Mon Sep 17 00:00:00
176         2001  From: Bert Timmerman * bert dot timmerman AT xs4all dot nl *
177         Date: Sat, 29 Aug 2009 21:57:22 +0200 Subject: [PATCH] Correction of
178         the pcb homepage url in the batch HID.
180 2009-08-14   Bert Timmerman * bert dot timmerman AT xs4all dot nl *
182         * src/misc.c: gEDA-dev: pcb [PATCH] Correction of the geda homepage
183         url and wiki url in the about dialog window.  Hi all, Here is another one :) Kind regards, Bert Timmerman.  >From c383fc1aabfcefb3c688bb5274f08874c86e7a8a Mon Sep 17 00:00:00
184         2001  From: Bert Timmerman * bert dot timmerman AT xs4all dot nl *
185         Date: Fri, 14 Aug 2009 00:33:26 +0200 Subject: [PATCH] Correction of
186         the geda homepage url and wiki url in the about dialog window.
188 2009-08-13   Bert Timmerman * bert dot timmerman AT xs4all dot nl *
190         * src/misc.c: Correction of the pcb homepage url in the about dialog
191         window.
193 2009-03-31   Bert Timmerman * bert dot timmerman AT xs4all dot nl *
195         * src/hid/gtk/gui-dialog.c: Apply filters to load filechooser
196         dialogs. [1988982] [2686963] Applies filters to the filechooser dialogs when loading layouts,
197         layouts (to buffer), elements (to buffer) and netlists.  Default behaviour is to not filter in the filechooser dialog.
198         Choosing a predefined filefilter in the filechooser dialog filters
199         on registered mime types, lowercase and uppercase file extensions.
200         Predefined filters are selected upon the action chosen in the "File"
201         pulldown menu.
203 2009-08-04   Peter TB Brett * peter AT peter-b dot co dot uk *
205         * README.cvs, README.git: Replace 'README.cvs' with 'README.git'.
206         [2810417] Provide information on how to use git to access the PCB repository.
207         Fixes bug #2810417.
209 2009-08-04   Peter TB Brett * peter AT peter-b dot co dot uk *
211         * doc/.gitignore: Add some generated .texi files to doc/.gitignore.
213 2009-08-01   Uwe Hermann * uwe AT hermann-uwe dot de *
215         * doc/gs/fb-blinker.texi, doc/gs/fb-smt.texi: gEDA-user: [PATCH]
216         s/pj-102.fp/pj102.fp/ in PCB tutorial Replace pj-102.fp filename with pj102.fp to make the PCB example
217         work.
219 2009-07-30   Dan McMahill * dan AT mcmahill dot net *
221         * src/hid/png/png.c: Do not try to call gdImageCreate() on a 0x0
222         sized image.  This hopefully addresses some of the segfaults seen recently with
223         the latest version of gd.  If a brush size scales to give a size of
224         0 then bump it up to a single pixel.
226 2009-07-29   Dan McMahill * dan AT mcmahill dot net *
228         * src/hid/png/png.c: Check return codes from the various gd
229         allocation functions.  Check returns codes for gdImageCreate(), gdImageColorAllocate(), and
230         gdImageColorAllocateAlpha() calls to check for problems.
232 2009-07-27   Dan McMahill * dan AT mcmahill dot net *
234         * src/action.c: Don't disperse locked elements.  When dispersing elements do not disperse locked elements.  Locked
235         elements often times are mechanical and really should not be moved.
236         Noted by Levente Kovacs on gEDA-user.
238 2009-07-07   anthonix * anthonix AT anthonix-desktop dot (none) *
240         * : commit 2f80c6fc0c4aa1b7b5bb85d0d45f8415564dbe68  Author:
241         anthonix * anthonix AT anthonix-desktop dot (none) * Date:   Tue Jul
242         7 02:21:33 2009 +1200
244 2009-07-02   Dan McMahill * dan AT mcmahill dot net *
246         * po/POTFILES.in: add src/toporoute.c add src/toporoute.c which lets this pass 'make distcheck' again.
248 2009-07-03   anthonix * anthonix AT anthonix-desktop dot (none) *
250         * src/toporouter.c, src/toporouter.h: Toporouter: ROAR
252 2009-06-27   anthonix * anthonix AT anthonix-desktop dot (none) *
254         * : commit ffb17f87f0d5c4e06574750f36a15e51f4ff89d3  Author:
255         anthonix * anthonix AT anthonix-desktop dot (none) * Date:   Sat Jun
256         27 11:27:55 2009 +1200
258 2009-06-25   Dan McMahill * dan AT mcmahill dot net *
260         * : commit b17582ba2e192f42cd87d8466f16ea48fbde0d5b  Author: Dan
261         McMahill * dan AT mcmahill dot net * Date:   Thu Jun 25 22:58:29
262         2009 -0400
264 2009-06-26   anthonix * anthonix AT anthonix-desktop dot (none) *
266         * : commit 889ee4f3a223c90d376c68524bce75423ef776bc  Author:
267         anthonix * anthonix AT anthonix-desktop dot (none) * Date:   Fri Jun
268         26 13:56:48 2009 +1200
270 2009-06-26   anthonix * anthonix AT anthonix-desktop dot (none) *
272         * src/toporouter.c, src/toporouter.h: Toporouter: One pass
273         curvilinear wiring
275 2009-06-25   Dan McMahill * dan AT mcmahill dot net *
277         * tests/run_tests.sh: When using the gerber HID, always use
278         --fab-author to make the resuls repeatable.  Always use the --fab-author flag to the gerber HID to avoid many
279         false failures which would occur when different users try to run the
280         testsuite.  Also fix a minor glitch when building from a read-only
281         source tree while here.
283 2009-06-24   Dan McMahill * dan AT mcmahill dot net *
285         * Makefile.am, configure.ac: Top level configure stuff for the
286         testsuite.  Add top level configure stuff missed in the previous few commits for
287         the testsuite.
289 2009-06-24   Dan McMahill * dan AT mcmahill dot net *
291         * tests/golden/Makefile.am, tests/golden/hid_png1/Makefile.am,
292         tests/run_tests.sh, tests/tests.list: Teach the testsuite how to
293         compare image files.  Teach testsuite how to compare image files and add a very basic test
294         on the PNG HID.
296 2009-06-24   Dan McMahill * dan AT mcmahill dot net *
298         * : commit 81fdd6f7753046121b268cc562faab2d4bcb69f6  Author: Dan
299         McMahill * dan AT mcmahill dot net * Date:   Wed Jun 24 22:16:17
300         2009 -0400
302 2009-06-23   Dan McMahill * dan AT mcmahill dot net *
304         * src/buffer.c: Document the FreeRotateBuffer() action.  Add syntax and help strings as well as the manual documentation for
305         the FreeRotateBuffer() action.
307 2009-06-23   Dan McMahill * dan AT mcmahill dot net *
309         * doc/pcb.texi: Add a comment about breakouts for fine pitch power
310         pins and the autorouter.  Add a comment about breakouts for fine pitch power pins and the
311         autorouter.  Suggested by harry on geda-user.
313 2009-06-22   Dan McMahill * dan AT mcmahill dot net *
315         * doc/pcb.texi: Add a short chapter on using the autorouter.  Add a short chapter on using the autorouter based on email
316         instructions from harry on geda-user.
318 2009-06-22   DJ Delorie * dj AT delorie dot com *
320         * src/hid/png/png.c: Add bloat to PNG hid Add a --png-bloat option that takes a bloat setting, much like the
321         postscript HID.  Optionally, a units suffix is allowed:  --png-bloat
322         10px or --png-bloat 1.2mil.
324 2009-06-21   harry * harry AT harry-laptop dot (none) *
326         * src/autoroute.c: calculate total wire length for result
328 2009-06-21   harry * harry AT harry-laptop dot (none) *
330         * src/buffer.c, src/create.c, src/polygon1.c, src/rats.c,
331         src/remove.c, src/search.c: Fix several errors, some more
332         point-boxes that weren't half open and several found with valgrind.
333         valgrind is your friend!
335 2009-06-21   harry * harry AT harry-laptop dot (none) *
337         * src/misc.c: fix single-point rectangles to correctly have
338         half-closed boxes
340 2009-06-21   harry * harry AT harry-laptop dot (none) *
342         * src/action.c: don't count one rat line twice when deleting them
344 2009-06-21   Dan McMahill * dan AT mcmahill dot net *
346         * src/pcbtest.sh.in: Improve the pre-install pcb wrapper script.  The pcbtest.sh wrapper script is used to run pcb for testing before
347         pcb is installed.  Improve the robustness of this script to allow it
348         to be run from a different directory from where it is created as
349         well as allowing the export HID's to be called with it.
351 2009-06-21   harry * harry AT harry-laptop dot (none) *
353         * : commit dfc097708cf04983767be89b4e29a551cc0b3bc3  Author: harry *
354         harry AT harry-laptop dot (none) * Date:   Sun Jun 21 14:33:59 2009
355         -0400
357 2009-06-21   harry * harry AT harry-laptop dot (none) *
359         * src/autoroute.c, src/box.h, src/heap.c, src/heap.h, src/hid.h,
360         src/hid/gtk/gtkhid-main.c, src/hid/lesstif/main.c, src/mtspace.c,
361         src/mtspace.h, src/rtree.c, src/vector.c, src/vector.h: Major
362         updates to the autorouter. Fixes bug created from prior changes
363         elsewhere and changes significantly the way that expansion searching
364         is performed.
366 2009-06-20   DJ Delorie * dj AT delorie dot com *
368         * src/hid/common/actions.c: Oops, re-comment-out a debug statement.  Re-comment out a debug statement that was accidentally left
369         uncommented in the last commit.
371 2009-06-19   Jared Casper * jaredcasper AT gmail dot com *
373         * src/hid/common/actions.c: Allow quoted strings and escaped
374         characters in action arguments.  Quoting works similar to bash quoting: A backslash (\) is the escape character.  It preserves the literal
375         value of the next character that follows.  To get a literal '\' use
376         "\\".  Enclosing characters in single quotes preseves the literal value of
377         each character within the quotes.  A single quote may not occur
378         between single quotes, even when preceded by a blackslash.  Enclosing characters in double quotes preserves the literal value of
379         all characters within the quotes, with the exception of '\' which
380         maintains its special meaning as an escape character.
382 2009-06-16   Dan McMahill * dan AT mcmahill dot net *
384         * : commit 8039b7114c038b05688f0e7c2a527a187cda242e  Author: Dan
385         McMahill * dan AT mcmahill dot net * Date:   Tue Jun 16 21:03:51
386         2009 -0400
388 2009-06-17   anthonix * anthonix AT anthonix-desktop dot (none) *
390         * src/toporouter.c: Toporouter: Fix for routing_edge_insert() with
391         same coordinates
393 2009-06-14   anthonix * anthonix AT anthonix-desktop dot (none) *
395         * src/toporouter.c: Toporouter: Fix for TCS candidate vertices leak
397 2009-06-14   anthonix * anthonix AT anthonix-desktop dot (none) *
399         * src/toporouter.c: Toporouter: Fix for arc orientation in export
400         checks
402 2009-06-14   anthonix * anthonix AT anthonix-desktop dot (none) *
404         * src/toporouter.c: Toporouter: Fix for arc orientation in export
405         checks
407 2009-06-14   anthonix * anthonix AT anthonix-desktop dot (none) *
409         * src/toporouter.h: Toporouter: Wiring score calculation
411 2009-06-14   anthonix * anthonix AT anthonix-desktop dot (none) *
413         * src/toporouter.c: Toporouter: Better cleanup of routing edges
415 2009-06-14   anthonix * anthonix AT anthonix-desktop dot (none) *
417         * src/toporouter.c: Toporouter: Fix for arc removal not updating
418         vertex link
420 2009-06-14   anthonix * anthonix AT anthonix-desktop dot (none) *
422         * src/toporouter.c, src/toporouter.h: Toporouter: Work on traces
423         arcing back around vertices
425 2009-06-10   Dan McMahill * dan AT mcmahill dot net *
427         * lib/geda.inc: RESC3216M was defined twice.  The first was supposed
428         to be INDC3216M.  Noted by John Luciana on the gEDA user list.
430 2009-06-11   anthonix * anthonix AT anthonix-desktop dot (none) *
432         * src/Makefile.am, src/gts/gts.h, src/gts/predicates.c,
433         src/gts/predicates_init.c, src/toporouter.c, src/toporouter.h: 
434         Toporouter: Dynamic computation of GTS predicates
436 2009-06-10   anthonix * anthonix AT anthonix-desktop dot (none) *
438         * src/toporouter.c: Toporouter: Workaround for older GLib
440 2009-06-10   anthonix * anthonix AT anthonix-desktop dot (none) *
442         * src/toporouter.c: Toporouter: Workaround for older GLib
444 2009-06-10   anthonix * anthonix AT anthonix-desktop dot (none) *
446         * src/toporouter.c: Toporouter: Workaround for older GLib
448 2009-06-10   anthonix * anthonix AT anthonix-desktop dot (none) *
450         * src/toporouter.c: Toporouter: Workaround for older GLib
452 2009-06-10   anthonix * anthonix AT anthonix-desktop dot (none) *
454         * : commit 9653a6371aa41f873932062ef6d6b838bf98a987  Author:
455         anthonix * anthonix AT anthonix-desktop dot (none) * Date:   Wed Jun
456         10 13:28:10 2009 +1200
458 2009-06-09   Dan McMahill * dan AT mcmahill dot net *
460         * : commit 6878692f1e13a09a7191c8f9cf09e05c403fbe33  Author:
461         anthonix * anthonix AT anthonix-desktop dot (none) * Date:   Wed Jun
462         10 13:23:27 2009 +1200
464 2009-06-10   anthonix * anthonix AT anthonix-desktop dot (none) *
466         * src/toporouter.c: Toporouter: disabled some experimental stuff
468 2009-06-10   anthonix * anthonix AT anthonix-desktop dot (none) *
470         * src/toporouter.c, src/toporouter.h: Misc Toporouter Changes
472 2009-06-09   Dan McMahill * dan AT mcmahill dot net *
474         * src/gts/boolean.c, src/gts/split.c, src/gts/surface.c,
475         src/report.c: Remove some unused variables Remove some unused variables.  On some others which are only
476         conditionally used, then only conditionally declare them.  Same for
477         some functions.  This clears out some of the compiler warning
478         clutter.
480 2009-06-09   Dan McMahill * dan AT mcmahill dot net *
482         * src/hid/gtk/gui-pinout-preview.c: Revert "avoid trying to use the
483         background graphics context before it is created." This reverts commit 1138b9419b56c6c4a5861dce79ed058ee4e513ba.  As
484         noted by Peter Clifton, there is a visible artifact that results
485         from this.  We'll look for a better way to make sure the GC is
486         created when it is needed.
488 2009-06-08   Dan McMahill * dan AT mcmahill dot net *
490         * src/hid/gtk/gui-pinout-preview.c: avoid trying to use the
491         background graphics context before it is created.  On startup, some code was trying to access the background graphics
492         context before it was created.  Check to make sure the context has
493         been created before we do anything with it.
495 2009-06-08   Jared A. Casper * jcasper AT youngmc dot Stanford dot EDU *
497         * src/hid/common/actions.c, src/hid/gtk/gtkhid-main.c,
498         src/hid/lesstif/main.c: Fix command line exporting.  Previously, hid_actionv was changed to always call gui->get_coords
499         wether or not the action had a need_coord_msg, in an attempt to
500         always get the latest coords for things like zoom or pan that didn't
501         have a need_coord_msg.  However, this broke command line exporting
502         because it was trying to call get_coords on the nogui hid.  Added the check back in to only call gui->get_coords when the action
503         has a need_coord_msg and added need_coord_msg's to actions that need
504         coords.
506 2009-06-08   Jared Casper * jaredcasper AT gmail dot com *
508         * src/gpcb-menu.res, src/hid/gtk/gtkhid-main.c,
509         src/hid/gtk/gui-output-events.c: Adding ability to customize mouse
510         scroll action in GTK.  Changed the mouse_scroll gtk event handler to use do_mouse_action
511         instead of manually handling the event.  gtk treats scrolling
512         differently as a mouse button event, and doesn't give a mouse button
513         number, so this patch just hard codes up/down/left/right to buttons
514         4 through 7.  This corresponds to the default names used in the
515         resource file, and, for X11, gtk hardcodes mouse buttons 4 - 7 to
516         the scrolling events anyway.  This may cause problems in quartz or
517         windows if some mouse has a bunch of buttons and quartz/windows maps
518         those buttons to numbers 4 - 7, but I don't have a system to test
519         that (and in that case the names in the resource file would be wrong
520         as well).  Added a Scroll action to the gtk hid to be able to mimic the
521         existing scroll wheel behavior with an action script.
523 2009-06-08   Steven Michalske * smichalske AT gmail dot com *
525         * src/line.c: Allow mod1(alt)(option) to bypass AUTO enforce DRC For Apples, which use ctrl-click to simulate right-click.
527 2009-06-08   Steven Michalske * smichalske AT gmail dot com *
529         * src/hid.h, src/hid/batch/batch.c, src/hid/bom/bom.c,
530         src/hid/common/extents.c, src/hid/common/hidnogui.c,
531         src/hid/gerber/gerber.c, src/hid/gtk/gtkhid-main.c,
532         src/hid/gtk/gui.h, src/hid/lesstif/main.c, src/hid/lpr/lpr.c,
533         src/hid/nelma/nelma.c, src/hid/png/png.c, src/hid/ps/eps.c,
534         src/hid/ps/ps.c: Adding the ability to use mod1 (alt)(option) in
535         HIDs This is useful for OSX installs as crtl-click, is mapped to right
536         click.  so when drawing a line that you want to force a DRC
537         "Violation" and you need to use the control key, it will cancel the
538         line being drawn, and start a new point.  This is tested in the lesstif and GTK hids, under OSX wher ehte
539         option key is the "alt" key.   I leave it to the patch integrator th
540         verify on linux for GTK and lesstif.  This is a bit hackish on detecting the alt key/option key, I
541         #ifdefed it to __APPLE__ because the option key returns 1<<13 not
542         GDK_MOD1_MASK Under lesstif I might guess that the alt/mod1 is not
543         quite the same as option.
545 2009-06-07   Jared Casper * jaredcasper AT gmail dot com *
547         * src/Makefile.am, src/action.c, src/gpcb-menu.res,
548         src/hid/common/actions.c, src/hid/common/hid_resource.c,
549         src/hid/common/hid_resource.h, src/hid/gtk/gtkhid-main.c,
550         src/hid/gtk/gui-output-events.c, src/hid/gtk/gui-top-window.c,
551         src/hid/gtk/gui.h, src/hid/lesstif/lesstif.h,
552         src/hid/lesstif/main.c, src/hid/lesstif/menu.c: Teaching GTK hid to
553         use mouse resources I had some free time over the weekend and have been wanting to get
554         my hands dirty in the PCB code so I took a crack at this and wanted
555         to get some feedback.  Attached is a patch with a detailed commit message of what I did,
556         but the general idea was to move the lesstif hid's handling of the
557         mouse resources into a common hid file (which I called hid_resource)
558         and have the gtk hid use that instead of being hardcoded.  This way
559         the hid's are only responsible for catching the button press,
560         determining which modifier keys were active, then calling the common
561         code to handle it.  The common code does what the lesstif hid does,
562         calls the actions defined in the resource file.  In theory more
563         common stuff could be moved to hid_resource, the code to find and
564         load the resource file, for example, is nearly identical in both
565         hids.  I changed up the Mouse resource in gpcb-menu.res to match the
566         hardcoded behavior of the gtk hid as closely as possible (see the
567         commit message for details).  I've played around with it a bit and it seems to be working, but as
568         this my first time meddling with the code, I'm sure I missed some
569         stuff.  If anybody has time to look it over and/or try it out that
570         would be great.  Comments regarding the approach, formatting, style,
571         etc. are all appreciated (I did my best to match the style of the
572         surrounding code).  Jared
574 2009-06-05   Dan McMahill * dan AT mcmahill dot net *
576         * src/edif.y: Use the appropriate header files instead of providing
577         extern foo() prototypes.  Use the correct headers for a handful of function prototypes.  This
578         should fix some build issues reported on geda-uers.
580 2009-06-03   Dan McMahill * dan AT mcmahill dot net *
582         * configure.ac: When building from git sources and building docs,
583         force maintainer-mode.  When building from git sources, maintainer mode is required to build
584         the manual.  So, unless the user has specified --disable-doc then
585         force maintainer mode.  When building from a tarball, the
586         preformatted manual is already contained and we do not impose
587         maintainer-mode.  Hopefully this puts to rest the documentation
588         building issues once and for all!
590 2009-06-01   Dan McMahill * dan AT mcmahill dot net *
592         * po/pcb.pot: Remove generated file that cause continual git churn.  This file is generated and also removed by the clean target.
593         Removing a file from the source tree via 'make clean' that is under
594         version control just causes headaches.
596 2009-06-01   Dan McMahill * dan AT mcmahill dot net *
598         * doc/fractional_size.texi, doc/letter_size.texi,
599         doc/metric_size.texi, doc/wire_size.texi: Remove additional
600         generated files.  Remove the .texi files that are generated from the ASCII .tab files
601         from git to avoid gratitous storage of and changing of generated
602         files.
604 2009-05-29   Dan McMahill * dan AT mcmahill dot net *
606         * doc/.gitignore, doc/gs/.gitignore: Add a few more missing
607         .gitignore entries.
609 2009-05-29   Dan McMahill * dan AT mcmahill dot net *
611         * doc/.gitignore: Expand out the list of files since git didn't like
612         the patterns I used.
614 2009-05-29   Dan McMahill * dan AT mcmahill dot net *
616         * doc/.gitignore: Add gitignore file for the manual
618 2009-05-29   Dan McMahill * dan AT mcmahill dot net *
620         * src/.gitignore, src/gts/.gitignore: Add some missing .gitignore
621         entries for the new gts code
623 2009-05-29   Dan McMahill * dan AT mcmahill dot net *
625         * README.cvs: update this a bit to reflect the new repository home
626         and also remove references to needing maintainer-mode
628 2009-05-29   Dan McMahill * dan AT mcmahill dot net *
630         * utils/git2cl: add git2cl utility to help update ChangeLog's for
631         releases.
633 2009-05-29   Dan McMahill * dan AT mcmahill dot net *
635         * doc/actions.texi, doc/pcbfile.texi, doc/version.texi: remove some
636         generated files from git.  These are only needed if you are building
637         the documentation in which case you have all the tools and makefile
638         rules for them to be regenrated anyway.  Eliminates all the
639         headaches associated with generated files in version control.
641 2009-05-29   Dan McMahill * dan AT mcmahill dot net *
643         * doc/gs/gafrc, doc/gs/gschemrc: these are generated at configure
644         time now.
646 2009-05-29   Dan McMahill * dan AT mcmahill dot net *
648         * doc/gs/gafrc.in, doc/gs/gschemrc.in: to handle the case where we
649         may be building outside the source directory, generate gafrc and
650         gschemrc at configure time.
652 2009-05-29   Dan McMahill * dan AT mcmahill dot net *
654         * doc/gs/print-eps.scm: comment out a color theme that relied on a
655         path only present on DJ's machine.  It isn't really needed anyway.
657 2009-05-29   Dan McMahill * dan AT mcmahill dot net *
659         * po/POTFILES.in: add a missing file.
661 2009-05-29   Dan McMahill * dan AT mcmahill dot net *
663         * configure.ac, doc/Makefile.am, doc/gs/Makefile.inc,
664         lib/Makefile.am: Remove the use of maintainer mode to gate on/off
665         rules for building the documentation.  Instead look for the
666         existance of $(top_srcdir)/.git and decide based on that if this is
667         a tarball build (in which case the documentation ships already
668         built) or a git build.  If it is a git build, then simply require
669         all the needed tools for building the docs.  If the tools are not
670         found then configure will exit with an explicit message saying why
671         it has failed and that either tools need to be installed or
672         --disable-doc needs to be given.  Hopefully this will eliminate the
673         previous strange behavior of needing --maintainer-mode when building
674         docs from cvs/git.
676 2009-05-29   Dan McMahill * dan AT mcmahill dot net *
678         * src/Makefile.am: add gts/predicates_init.h to DISTCLEANFILES.
679         Also comment out the section that extracts REGISTER lines from the
680         gts code.  We currently don't have any REGISTER lines in the gts
681         code and so make was exiting because a grep failed.
683 2009-05-23   Dan McMahill * dan AT mcmahill dot net *
685         * lib/geda.inc, lib/to.inc: Add TO18, TO39, and fix pinout on TO92.  Added TO18 and TO39 footprints based on the JEDEC drawings.  Note
686         that the pinout used is the one from the JEDEC drawings and it may
687         or may not match a particular vendors pin numbering.  I have in fact
688         seen different vendors number the pins differently on these
689         packages.  It is entirely up to the user to make sure that their CAD
690         symbols have the correct mapping from E, B, C (for a bipolar) to
691         pins 1, 2, 3 and that the JEDEC numbering is used.  While here correct the TO92 pinout.  It now also matches the JEDEC
692         drawing and is more consistent with the most common vendor
693         numberings.  How on earth has this not caused problems before?
695 2009-05-17   Jared Casper * jaredcasper AT gmail dot com *
697         * ChangeLog, configure.ac, src/hid/lpr/hid.conf: Some cleanup of
698         configure script Added top level check for pkg-config with PKG_PROG_PKG_CONFIG and
699         removed AC_PATH_PROG call for pkg-config from inside a block
700         conditional on enable_dbus.  Added a PKG_CHECK_MODULE for cairo if the toporouter output is
701         enabled.  Added a check for HID dependencies.  A hid's hid.conf can set a
702         variable "deps" which is a list of other HIDs that must be included
703         with that hid.  Added ps the lpr's deps.
705 2009-05-14   Dan McMahill * dan AT mcmahill dot net *
707         * lib/m4lib_to_newlib.sh: Remove an extra '' quote in a comment
708         which caused confusion on some systems.
710 2009-05-05   Ineiev * ineiev AT gmail dot com *
712         * ChangeLog, configure.ac, src/Makefile.am, src/gts/cdt.c,
713         src/toporouter.c, src/toporouter.h: Toporouter: portability fixes 1) add #include <assert.h> 2) add configure options for toporouter --disable-toporouter
714         switches off toporouter --disable-toporouter-output switches off
715         toporouter cairo output 3) make toporouter compatible with glib < 2.10.0 provide
716         slist_insert_sorted_with_data() for those cases 4) fix VPATH builds gts/predicates_init stuff was not quite clean 5) fix find_closest() implementation for glib < 2.4.0 The earlier
717         version combined with toporouter produced segfault on tut1.pcb (on
718         top of glib-2.0.1 and glib-2.6.4); furthermore, it accessed to
719         undocumented glib structures.
721 2009-04-30   Anthony Blake * tonyb33 AT gmail dot com *
723         * src/gts/gts.h: gts.h fix Fixes the include of gtsconfig.h
725 2009-04-24   Anthony Blake * tonyb33 AT gmail dot com *
727         * gts/Makefile.am, gts/NOTES, gts/bbtree.c, gts/boolean.c,
728         gts/cdt.c, gts/config.h.win32, gts/container.c, gts/curvature.c,
729         gts/edge.c, gts/eheap.c, gts/face.c, gts/fifo.c, gts/graph.c,
730         gts/gts-config.in, gts/gts-private.h, gts/gts.def, gts/gts.h,
731         gts/gts.m4, gts/gtsconfig.h, gts/heap.c, gts/hsurface.c, gts/iso.c,
732         gts/isotetra.c, gts/kdtree.c, gts/makefile.msc, gts/matrix.c,
733         gts/misc.c, gts/named.c, gts/object.c, gts/oocs.c, gts/partition.c,
734         gts/pgraph.c, gts/point.c, gts/predicates.c, gts/predicates.h,
735         gts/predicates_init.c, gts/psurface.c, gts/refine.c,
736         gts/rounding.h, gts/segment.c, gts/split.c, gts/stripe.c,
737         gts/surface.c, gts/triangle.c, gts/tribox3.c, gts/vertex.c,
738         gts/vopt.c, src/Makefile.am, src/gts/NOTES, src/gts/bbtree.c,
739         src/gts/boolean.c, src/gts/cdt.c, src/gts/container.c,
740         src/gts/curvature.c, src/gts/edge.c, src/gts/eheap.c,
741         src/gts/face.c, src/gts/fifo.c, src/gts/graph.c,
742         src/gts/gts-private.h, src/gts/gts.h, src/gts/heap.c,
743         src/gts/hsurface.c, src/gts/iso.c, src/gts/isotetra.c,
744         src/gts/kdtree.c, src/gts/matrix.c, src/gts/misc.c,
745         src/gts/named.c, src/gts/object.c, src/gts/oocs.c,
746         src/gts/partition.c, src/gts/pgraph.c, src/gts/point.c,
747         src/gts/predicates.c, src/gts/predicates.h,
748         src/gts/predicates_init.c, src/gts/psurface.c, src/gts/refine.c,
749         src/gts/rounding.h, src/gts/segment.c, src/gts/split.c,
750         src/gts/stripe.c, src/gts/surface.c, src/gts/triangle.c,
751         src/gts/tribox3.c, src/gts/vertex.c, src/gts/vopt.c,
752         src/toporouter.c, src/toporouter.h: GTS build script changes Changed build scripts to include GTS.
754 2009-04-22   Anthony Blake * tonyb33 AT gmail dot com *
756         * gts/Makefile.am, gts/NOTES, gts/bbtree.c, gts/boolean.c,
757         gts/cdt.c, gts/config.h.win32, gts/container.c, gts/curvature.c,
758         gts/edge.c, gts/eheap.c, gts/face.c, gts/fifo.c, gts/graph.c,
759         gts/gts-config.in, gts/gts-private.h, gts/gts.def, gts/gts.h,
760         gts/gts.m4, gts/gtsconfig.h, gts/heap.c, gts/hsurface.c, gts/iso.c,
761         gts/isotetra.c, gts/kdtree.c, gts/makefile.msc, gts/matrix.c,
762         gts/misc.c, gts/named.c, gts/object.c, gts/oocs.c, gts/partition.c,
763         gts/pgraph.c, gts/point.c, gts/predicates.c, gts/predicates.h,
764         gts/predicates_init.c, gts/psurface.c, gts/refine.c,
765         gts/rounding.h, gts/segment.c, gts/split.c, gts/stripe.c,
766         gts/surface.c, gts/triangle.c, gts/tribox3.c, gts/vertex.c,
767         gts/vopt.c, src/Makefile.am, src/toporouter.c, src/toporouter.h: 
768         Added topological autorouter Topological autorouter (not yet exporting geometry) GTS with small
769         but crucial bug fixes
771 2009-04-19   Ben Jackson * ben AT ben dot com *
773         * .gitignore: Add *.backup to gitignore (in case you test run PCB in
774         the tree)
776 2009-04-19   Ben Jackson * ben AT ben dot com *
778         * src/hid/gtk/gui-config.c: GTK HID: Background color can be set
779         live from config dialog Background, off-limit and grid color changes require a special
780         update that was missing when colors were edited in the config
781         dialog.
783 2009-04-17   DJ Delorie * dj AT delorie dot com *
785         * src/report.c: Add "report all net lengths" option Usage: Report (AllNetLengths[,(mm|in|mil|pcb)])
787 2009-04-09   Ben Jackson * ben AT ben dot com *
789         * .gitignore, data/.gitignore, lib/.gitignore, po/.gitignore,
790         src/.gitignore, src/hid/.gitignore: Add initial gitignore files
791         covering autogen files and GTK HID build
793 2009-04-06   Peter Clifton * pcjc2 AT cam dot ac dot uk *
795         * src/hid/gtk/gui-render-pixmap.c: GTK HID: Use clipping region when
796         drawing DRC violation previews Should speed up rendering quite a bit for non-trivial boards.
798 2009-04-06   Peter Clifton * pcjc2 AT cam dot ac dot uk *
800         * src/hid/gtk/gtkhid-main.c, src/hid/gtk/gui.h: GTK HID: Move inline
801         coordinate conversions from gtkhid-main.c to gui.h This allows other source files easy access to the routines Vx(),
802         Vy(), Vz() and Px(), Py, Pz().
804 2009-04-05   Peter Clifton * pcjc2 AT cam dot ac dot uk *
806         * src/polygon.c: Allow PolygonHoles() to be passed a NULL region Passing a NULL region implies we wish to be called back for all
807         holes in the polygon, as we don't have a region to test against.  Fixes crash in the DRC window when the design has polygons, and is
808         viewed with either thindraw, or thindraw polygons.
810 2009-04-05   Peter Clifton * pcjc2 AT cam dot ac dot uk *
812         * src/hid/gtk/gui-drc-window.c: GTK HID: Add "Refresh" button to DRC
813         window to re-run the DRC.  Allows the user to more quickly get an updated view of their
814         progress fixing design rule violations.
816 2009-04-05   Peter Clifton * pcjc2 AT cam dot ac dot uk *
818         * src/hid/gtk/gui-drc-window.c: GTK HID: Fix pango markup in DRC
819         window to be more compatible Avoid using the attribute alias "font_size" in the markup. Older
820         pango versions only support "size", which is functionally identical.
822 2009-04-03   Peter Clifton * pcjc2 AT cam dot ac dot uk *
824         * src/hid/gtk/gtkhid-main.c: GTK HID: Fix cursor warping on flipped
825         boards
827 2009-04-03   Peter Clifton * pcjc2 AT cam dot ac dot uk *
829         * src/Makefile.am, src/hid/gtk/gui-drc-window.c,
830         src/hid/gtk/gui-drc-window.h, src/hid/gtk/gui-render-pixmap.c,
831         src/hid/gtk/gui.h: GTK HID: Add preview images in the drc violations
832         window
834 2009-04-03   Peter Clifton * pcjc2 AT cam dot ac dot uk *
836         * src/Makefile.am, src/hid/gtk/gtkhid-main.c,
837         src/hid/gtk/gui-config.c, src/hid/gtk/gui-drc-window.c,
838         src/hid/gtk/gui-drc-window.h, src/hid/gtk/gui.h: GTK HID: Add DRC
839         list window using the new DRC_GUI hooks.
841 2009-04-02   Peter Clifton * pcjc2 AT cam dot ac dot uk *
843         * src/action.c, src/find.c, src/global.h, src/gpcb-menu.res,
844         src/hid.h, src/hid/batch/batch.c, src/hid/bom/bom.c,
845         src/hid/common/hidnogui.c, src/hid/gerber/gerber.c,
846         src/hid/gtk/gtkhid-main.c, src/hid/lesstif/main.c,
847         src/hid/lpr/lpr.c, src/hid/nelma/nelma.c, src/hid/png/png.c,
848         src/hid/ps/eps.c, src/hid/ps/ps.c: Refactor DRC reporting to work
849         around a DrcViolationType structure.  Add hooks to the HID structure allowing a GUI to consume this data
850         directly (if it wants), rather than being called to display ordinary
851         message dialog boxes. No HID yet utilises this interface.  Remove log messages for individual design rule violations, instead
852         writing log entries based on the title in the DrcViolationType. This
853         modifies some of the logged messages slightly. All now prefix:
854         "WARNING!  Design Rule error - ", as was present on some of the old
855         messges.
857 2009-04-01   Peter Clifton * pcjc2 AT cam dot ac dot uk *
859         * src/polygon1.c: Fix leak of input objects for certain short-cut
860         cases in poly_Boolean_free When either a or b input object is NULL, depending on the boolean
861         operation selected, either a, b or NULL is returned as the result.
862         Make sure we free any non NULL, and non-returned inputs when taking
863         these shortcut paths.
865 2009-04-01   Peter Clifton * pcjc2 AT cam dot ac dot uk *
867         * src/polygon1.c: Fix leak of cross vertex connectivity lists when
868         deleting contours Free these lists as we free the contour's nodes in poly_DelContour()
870 2009-03-25   Tibor Palinkas * igor2 AT inno dot bme dot hu *
872         * src/hid/lesstif/menu.c: pass context in lesstif Minor patch to get the action context properly passed to actions
873         with lesstif, which doesn't use hid_actionv() for some reason.
875 2009-03-25   DJ Delorie * dj AT delorie dot com *
877         * src/hid.h, src/hid/common/actions.c, src/hid/hidint.h,
878         src/hid/lesstif/menu.c: single-action register/deregister New API to support registering individual actions with a context for
879         them, for example for scripting languages to register a hub
880         dispatcher.   From Igor2 AT inno dot bme dot hu (Tibor Palinkas)
882 2009-03-08   DJ Delorie * dj AT delorie dot com *
884         * src/report.c: bugfix: avoid NULL pin names with Report(NetLength) There was an assumption that all pins and pads have non-NULL names,
885         but if you create a .pcb with a script you could end up with
886         anything.  Make sure the names we get are non-NULL before using
887         them.
889 2009-03-06   Peter Clifton * pcjc2 AT cam dot ac dot uk *
891         * src/hid/gerber/gerber.c, src/hid/png/png.c: Fix exporters to cope
892         with hairlines now they are passed as width 0, not 1 This fixes breakage introduced in commit
893         8dd739f9bd72dc3c8beb6e4e5e32c124cac0d13b png exporter:   - Needs a minimum 1x1 pixel brush for drawing hairlines    - Report and patch by Levente Kovacs * leventelist AT gmail dot
894           com * gerber exporter:   - The hairline drawn around holes must be ignored    - Report and diagnosis by Ineiev * ineiev AT gmail dot com *
896 2009-03-05   Dan McMahill * dan AT mcmahill dot net *
898         * README.snapshots: Add a note for next time about some increased
899         test coverage.  We need to do a distcheck build with a wider variety of requested
900         HID's to catch things like the missing src/hid/batch/hid.conf
902 2009-03-05   Dan McMahill * dan AT mcmahill dot net *
904         * src/Makefile.am: add missing hid/batch/hid.conf to EXTRA_DIST.
905         Noted by Stefan Salewski.
907 2009-02-27   Dan McMahill * dan AT mcmahill dot net *
909         * configure.ac: Bump the required autoconf version to 2.60.  pdfdir, psdir, and friends appeared in version 2.60 of autoconf.
910         Since we use those, we need 2.60 or higher.  Problem noted by Bert
911         Timmerman.
913 2009-02-27   Dan McMahill * dan AT mcmahill dot net *
915         * src/hid/png/png.c: Remove some now unused RCS ID's
917 2009-02-21   Peter Clifton * pcjc2 AT cam dot ac dot uk *
919         * src/Makefile.am, src/dbus.c, src/draw.c, src/global.h, src/hid.h,
920         src/hid/batch/batch.c, src/hid/bom/bom.c,
921         src/hid/common/draw_helpers.c, src/hid/common/draw_helpers.h,
922         src/hid/common/extents.c, src/hid/common/hidinit.c,
923         src/hid/common/hidnogui.c, src/hid/gerber/gerber.c,
924         src/hid/gtk/gtkhid-main.c, src/hid/gtk/gui-config.c,
925         src/hid/gtk/gui.h, src/hid/lesstif/main.c, src/hid/lpr/lpr.c,
926         src/hid/nelma/nelma.c, src/hid/png/png.c, src/hid/ps/eps.c,
927         src/hid/ps/ps.c, src/polygon.c, src/polygon.h: Add support for
928         filling / thindrawing raw polygons to the HID interface Refactor core polygon drawing to use these member functions, and
929         split the old code which used the HID's fill_polygon and draw_line
930         functions into a helper function which the guis now use to convert
931         the polygon into the primitives it knows how to draw.  Alter the NoHoles dicer to pass back PLINE contours, rather than
932         wrapping them in a POLYAREA and PolygonType.
934 2009-02-21   Peter Clifton * pcjc2 AT cam dot ac dot uk *
936         * src/draw.c, src/polygon.c, src/polygon.h: Add user_data parameter
937         to NoHolesPolygonDicer Also switch the clip_box parameter before the ones defining the
938         callback and its user_data.
940 2009-02-21   Peter Clifton * pcjc2 AT cam dot ac dot uk *
942         * src/draw.c: Thindraw with 0 width, not 1 PCB unit width.  This allows the gui to differentiate between when the core wants
943         hairline drawing, and when the core is drawing primitives which are
944         actually 1 PCB unit wide.
946 2009-02-21   Peter Clifton * pcjc2 AT cam dot ac dot uk *
948         * src/draw.c: Thindraw polygons with circular line-caps.  Set an explicit cap style for consistency with other "special"
949         polygon drawing code.
951 2009-02-17   Peter Clifton * pcjc2 AT cam dot ac dot uk *
953         * src/polygon.c: Bisect and union self-intersecting arcs in
954         ArcPoly() Avoids creating a self-intersecting contour which produces incorrect
955         result. Bug noted when clearing a 360 degree arc from a polygon.  For self-intersecting arcs, we now bisect, produce two polygons
956         (with non-self-intersecting contours), then compute their union.
958 2009-02-10   Peter Clifton * pcjc2 AT cam dot ac dot uk *
960         * src/hid/bom/bom.c, src/hid/gerber/gerber.c, src/hid/lpr/lpr.c,
961         src/hid/nelma/nelma.c, src/hid/png/png.c, src/hid/ps/eps.c,
962         src/hid/ps/ps.c: Various HIDs: Add missing pointers for the watch
963         and block hander methods These were missed when adding DBus support, since the initialisation
964         of the HID structure assumes that unspecified members are zero, and
965         all subsequent function pointers were explicitly 0, so as not to
966         cause a type mismatch.  Hids fixed:   bom   gerber   lpr   nelma   png   eps   ps
968 2009-02-10   Peter Clifton * pcjc2 AT cam dot ac dot uk *
970         * src/hid/nelma/nelma.c: nelma: Fix prototype on set_layer() method
971         to take the "empty" flag.  Fixes warning about incompatible types when intialising the HID
972         structure.
974 2009-02-10   Peter Clifton * pcjc2 AT cam dot ac dot uk *
976         * src/polygon1.c: polygon1.c: Implement poly_Boolean() by calling
977         poly_Boolean_free() Reduces duplicated code. The poly_Boolean() implemetation already
978         copied the original contours, then duplicated the processing steps
979         taken in poly_Boolean_free().
981 2009-02-08   Peter Clifton * pcjc2 AT cam dot ac dot uk *
983         * src/hid/gtk/gui-netlist-window.c: gtkhid: Return NULL from
984         ghid_get_net_from_node_name() Fixes calling return; from function returning non-void type.
986 2009-02-08   Peter Clifton * pcjc2 AT cam dot ac dot uk *
988         * src/crosshair.c: crosshair.c: When drawing via DRC clearence, pass
989         correct angle.  360 * 64 was a hold-over from before the HID split. The passed angle
990         should be 360.
992 2009-01-24   Peter Clifton * pcjc2 AT cam dot ac dot uk *
994         * src/polygon.c, src/polygon.h, src/rats.c: Make rats to polygons
995         work for arbitrary clipped shapes The rat will still be drawn to the first point on the polygon, which
996         might not necessarily be the closest.
998 2009-01-14   DJ Delorie * dj AT delorie dot com *
1000         * src/hid/lesstif/dialogs.c: Skip undocumented options.
1002 2009-01-14   DJ Delorie * dj AT delorie dot com *
1004         * src/hid/gtk/gui-dialog-print.c: Don't show undocumented options.
1006 2009-01-11   Peter Clifton * pcjc2 AT cam dot ac dot uk *
1008         * src/hid/gtk/gui-netlist-window.c: GTK HID: Avoid critical warning
1009         looking up connectivity without netlist
1011 2009-01-10   DJ Delorie * dj AT delorie dot com *
1013         * src/hid/png/png.c: Add only-visible support to photo-mode, check
1014         for more outline fill spots.
1016 2009-01-10   DJ Delorie * dj AT delorie dot com *
1018         * src/hid/png/png.c: Add outline mode for photo-mode, from Mark
1019         Rages
1021 2009-01-10   DJ Delorie * dj AT delorie dot com *
1023         * src/action.c: Handle wrap-around when searching the string hash
1024         table.
1026 2009-01-08   Dan McMahill * dan AT mcmahill dot net *
1028         * lib/misc.inc: for the axial footprints, put the mark on pin 1
1029         instead of on the body of the footprint.  This gives you a much
1030         better chance of the pins being on-grid when working with the
1031         coarser grids typically found in a thru-hole design.
1033 2008-12-30   DJ Delorie * dj AT delorie dot com *
1035         * src/polygon.c: Add description of how polygon data works from Ben,
1036         and debug routines for dumping polygon structures within gdb.
1038 2008-12-27   DJ Delorie * dj AT delorie dot com *
1040         * src/action.c, src/const.h, src/draw.c, src/flags.c,
1041         src/gpcb-menu.res, src/pcb-menu.res, src/search.c, src/strflags.c: 
1042         Add "hide names" option to hide all refdes on the board temporarily.
1044 2008-12-27   DJ Delorie * dj AT delorie dot com *
1046         * src/hid/gtk/gtkhid-main.c, src/hid/lesstif/main.c: Fix flipping of
1047         arcs.
1049 2008-12-27   DJ Delorie * dj AT delorie dot com *
1051         * src/parse_y.y: fix parsing of old-syntax arcs.
1053 2008-12-27   DJ Delorie * dj AT delorie dot com *
1055         * src/draw.c: Include explicit text/lines/etc on silk layers in
1056         assembly drawings.
1058 2008-12-27   DJ Delorie * dj AT delorie dot com *
1060         * src/action.c: Make sure the user has specified an element for the
1061         pinout window.
1063 2008-12-27   DJ Delorie * dj AT delorie dot com *
1065         * src/hid/gtk/gui-config.c: Add min-drill and min-ring to the saved
1066         config list, and save the config file *after* updating it, not
1067         before.
1069 2008-12-27   DJ Delorie * dj AT delorie dot com *
1071         * src/hid/gerber/gerber.c: sf patch 2162834 from d.ineiev - count
1072         apertures for diagonal pads
1074 2008-12-27   DJ Delorie * dj AT delorie dot com *
1076         * src/draw.c, src/hid.h, src/hid/batch/batch.c,
1077         src/hid/common/extents.c, src/hid/common/hidnogui.c,
1078         src/hid/gerber/gerber.c, src/hid/gtk/gtkhid-main.c,
1079         src/hid/lesstif/main.c, src/hid/png/png.c, src/hid/ps/eps.c,
1080         src/hid/ps/ps.c: Add "empty layer" hint to HID.  Add option
1081         --all-layers to gerber export which causes it to export all layers,
1082         empty or otherwise.
1084 2008-12-27   DJ Delorie * dj AT delorie dot com *
1086         * src/hid/png/png.c: Rename ben-mode to photo-mode.
1088 2008-12-27   DJ Delorie * dj AT delorie dot com *
1090         * src/hid.h, src/main.c: Add an option for undocumented attributes.
1092 2008-12-27   Dan McMahill * dan AT mcmahill dot net *
1094         * configure.ac, newlib/Makefile.am: deprecate the analog-devices and
1095         burr-brown newlib libraries
1097 2008-12-27   Dan McMahill * dan AT mcmahill dot net *
1099         * newlib/analog-devices/ADC12138CIMSA,
1100         newlib/analog-devices/Makefile.am, newlib/burr-brown/Makefile.am,
1101         newlib/burr-brown/OPA340_SOT23-5: remove some footprints of
1102         questionable use
1104 2008-12-24   Peter Clifton * pcjc2 AT cam dot ac dot uk *
1106         * src/mymem.c: Regenerate rats r-tree when re-allocating a bigger
1107         rats array.  Shuould fix crashes observed on a board with a large number of rats.
1109 2008-12-24   DJ Delorie * dj AT delorie dot com *
1111         * src/hid/common/hidinit.c: Typo.
1113 2008-12-24   DJ Delorie * dj AT delorie dot com *
1115         * src/hid/common/hidinit.c: Make sure we clean up if dlopen fails.
1117 2008-12-24   DJ Delorie * dj AT delorie dot com *
1119         * src/hid/common/hidinit.c: Avoid checking memory before short-named
1120         files.
1122 2008-12-24   Peter Clifton * pcjc2 AT cam dot ac dot uk *
1124         * src/hid/gtk/gui-netlist-window.c: Fix off-by one error in the GTK
1125         HID's netlist window model generation Broken when I added support for a hierarchical view of nets. The bug
1126         caused invalid memory to be read, possibly leading to a crash, as
1127         the last (and missing) element from g_new0 was supposed to be a
1128         terminator.
1130 2008-12-21   DJ Delorie * dj AT delorie dot com *
1132         * src/find.c: Fix via annulus calculations, from Jasper
1134 2008-12-21   DJ Delorie * dj AT delorie dot com *
1136         * src/hid/lesstif/menu.c: Set home from homedir.
1138 2008-12-20   DJ Delorie * dj AT delorie dot com *
1140         * doc/gs/gs.css: More missing files
1142 2008-12-20   DJ Delorie * dj AT delorie dot com *
1144         * doc/gs/gafrc, doc/gs/gschemrc: missed files
1146 2008-12-20   DJ Delorie * dj AT delorie dot com *
1148         * configure.ac: add texi2dvi check and doc/gs subdir
1150 2008-12-20   DJ Delorie * dj AT delorie dot com *
1152         * doc/eps2png, doc/gs/555.sym, doc/gs/555.symdef,
1153         doc/gs/Makefile.am, doc/gs/Makefile.inc, doc/gs/fb-blinker-sch.sch,
1154         doc/gs/fb-blinker.net, doc/gs/fb-blinker.pcb,
1155         doc/gs/fb-blinker.prj, doc/gs/fb-blinker.texi, doc/gs/fb-led-5.pcb,
1156         doc/gs/fb-led.pcb, doc/gs/fb-led.texi, doc/gs/fb-smt-sch.sch,
1157         doc/gs/fb-smt.net, doc/gs/fb-smt.pcb, doc/gs/fb-smt.prj,
1158         doc/gs/fb-smt.texi, doc/gs/firstboard.texi, doc/gs/gs.texi,
1159         doc/gs/installation.texi, doc/gs/introduction.texi,
1160         doc/gs/pj102.fp, doc/gs/powerjack.sym, doc/gs/print-eps.scm,
1161         doc/gs/term-annulus-1.pcb, doc/gs/term-clearance-1.pcb,
1162         doc/gs/term-element-1.pcb, doc/gs/term-pad-1.pcb,
1163         doc/gs/term-pin-1.pcb, doc/gs/term-platedhole-1.pcb,
1164         doc/gs/term-tented-1.pcb, doc/gs/term-thermal-1.pcb,
1165         doc/gs/term-thickness-1.pcb, doc/gs/terminology.texi,
1166         doc/gs/texinfo.tex: Add initial "getting started" guide.
1168 2008-12-20   DJ Delorie * dj AT delorie dot com *
1170         * src/hid.h: append '-' on all parameter names to prevent
1171         mis-interpretation of such.  Example: "xor" is a C++ reserved name.
1173 2008-12-20   DJ Delorie * dj AT delorie dot com *
1175         * src/hid/gerber/gerber.c: Increase resolution of gerbers to 0.01
1176         mil; drills remain at 0.1 mil
1178 2008-12-20   DJ Delorie * dj AT delorie dot com *
1180         * src/parse_l.l: Add support for suffixes on numbers, like "mm",
1181         "um", "in", or "mil".  No suffix defaults to "pcb units" as before.
1183 2008-12-20   DJ Delorie * dj AT delorie dot com *
1185         * src/flags.c: Add flags for whether various layers are shown.
1187 2008-12-20   DJ Delorie * dj AT delorie dot com *
1189         * src/action.c: Add MinClearGap() action.
1191 2008-12-12   Dan McMahill * dan AT mcmahill dot net *
1193         * configure.ac: try to clean up the logic around cross compiling and
1194         an executible pcb.  Hopefully addresses some corner cases when cross
1195         compiling.
1197 2008-12-12   Dan McMahill * dan AT mcmahill dot net *
1199         * doc/Makefile.am, doc/version.texi, lib/Makefile.am,
1200         lib/m4lib_to_newlib.sh.in: use if FOO  stuff endif instead of    @FOOTRUE@ stuff as the latter prevents automake from properly understanding some
1201         dependencies.
1203 2008-12-05   Dan McMahill * dan AT mcmahill dot net *
1205         * doc/actions.texi: regen
1207 2008-12-05   Dan McMahill * dan AT mcmahill dot net *
1209         * configure.ac, doc/Makefile.am, lib/Makefile.am,
1210         lib/m4lib_to_newlib.sh: Correctly deal with the case where one wants
1211         to do a maintainer cross compile which requires an installed pcb
1212         that can be executed on the build host.  As part of this, also do
1213         not build the png previews of the pcblib-newlib library by default.
1214         They were not really used for anything and it really slows the
1215         build.  They can be built with --enable-m4lib-png.
1217 2008-12-03   Dan McMahill * dan AT mcmahill dot net *
1219         * configure.ac, src/Makefile.am: check for windres as a build tool
1220         instead of hard coding 'windres'.  Should help with cross-compiling
1221         with windows as the target.  Noted as a patch for gerbv by Cesar
1222         Strauss.
1224 2008-12-03   DJ Delorie * dj AT delorie dot com *
1226         * src/misc.c: Merge thermals from old flags, not overwrite them.
1228 2008-11-30   Dan McMahill * dan AT mcmahill dot net *
1230         * win32/pcb.nsi.in: fix some shortcut removal issues on Vista.
1232 2008-11-30   Dan McMahill * dan AT mcmahill dot net *
1234         * win32/build_pcb: add a --nsis-only option that only creates the
1235         installer
1237 2008-11-30   Dan McMahill * dan AT mcmahill dot net *
1239         * win32/build_pcb: fix up the PATH used during the build so pcb can
1240         run when generating the pcblib-newlib previews
1242 2008-11-30   Dan McMahill * dan AT mcmahill dot net *
1244         * win32/build_pcb, win32/pcb.nsi.in: try to fix the pdf and html
1245         manual links.  Noted by Bob Paddock.
1247 2008-11-29   Dan McMahill * dan AT mcmahill dot net *
1249         * src/hid/gtk/gui-output-events.c: Fix bug 2011285 auto-pan on
1250         solder side not working properly.  Patch provided in the bug report.
1252 2008-11-29   Dan McMahill * dan AT mcmahill dot net *
1254         * src/action.c, src/crosshair.c, src/global.h, src/gpcb-menu.res,
1255         src/hid/gtk/gui-output-events.c, src/hid/lesstif/main.c,
1256         src/pcb-menu.res: Add additional crosshair shapes.  ctrl-right click
1257         cycles through.  Patch 2170634 from D. Ineiev.
1259 2008-11-29   Dan McMahill * dan AT mcmahill dot net *
1261         * src/hid/gtk/gui-dialog.c: teach ghid_confirm_dialog to remember
1262         its last position and to come up at the same place the next time.  Patch 1900832 from Tomaz Solc.
1264 2008-11-28   Dan McMahill * dan AT mcmahill dot net *
1266         * README.snapshots: Minor formatting updates for some long lines and
1267         also minor updates to reflect some sourceforge changes.
1269 2008-11-28   Dan McMahill * dan AT mcmahill dot net *
1271         * src/hid/gtk/gui-config.c: fix up the library path dialog for
1272         windows
1274 2008-11-28   Dan McMahill * dan AT mcmahill dot net *
1276         * src/hid/gtk/gui-config.c: Use PCB_PATH_DELIMETER instead of ":" in
1277         a few key places
1279 2008-11-28   Dan McMahill * dan AT mcmahill dot net *
1281         * configure.ac: bump rev after 20081128 branch
1283 2008-11-28   Dan McMahill * dan AT mcmahill dot net *
1285         * README.snapshots: update dates for 20081128 snapshot
1287 2008-11-28   Dan McMahill * dan AT mcmahill dot net *
1289         * NEWS: update for 20081128 snapshot
1291 2008-11-28   Dan McMahill * dan AT mcmahill dot net *
1293         * ChangeLog: update for 20081128 snapshot
1295 2008-11-28   Dan McMahill * dan AT mcmahill dot net *
1297         * doc/actions.texi: regen.
1299 2008-11-28   Dan McMahill * dan AT mcmahill dot net *
1301         * Makefile.am: Make DISTCHECK_CONFIGURE_FLAGS actually work again so
1302         we can check that 'make distcheck' passes for lesstif.
1304 2008-11-27   Dan McMahill * dan AT mcmahill dot net *
1306         * doc/Makefile.am: honor psdir, pdfdir, docdir, htmldir, dvidir.
1307         Noted in sf bug #1916057.
1309 2008-11-27   DJ Delorie * dj AT delorie dot com *
1311         * src/create.c: Test the two lines, not the line vs the current pcb,
1312         for compatible poly-join flags.
1314 2008-11-27   Dan McMahill * dan AT mcmahill dot net *
1316         * src/pcbtest.sh.in: get rid of an insecure usage of a temp file
1318 2008-11-25   Dan McMahill * dan AT mcmahill dot net *
1320         * src/main.c: do not free() the result of getenv().  Noted by Peter
1321         Clifton
1323 2008-11-25   Dan McMahill * dan AT mcmahill dot net *
1325         * src/global.h, src/hid/common/hidinit.c,
1326         src/hid/gtk/gui-top-window.c, src/hid/lesstif/menu.c, src/main.c: 
1327         Determine the users home directory on program startup and remember
1328         it for use in other places later.  This avoids repeated use of
1329         getenv("HOME") which may have issues especially under windows.
1331 2008-11-25   Dan McMahill * dan AT mcmahill dot net *
1333         * win32/build_pcb: create a DOS batch file wrapper for the installer
1334         to make it easier to run the installer immediately after building it
1335         from the cygwin shell.  Without this, vista doesn't seem to like to
1336         run it for some reason.
1338 2008-11-25   Dan McMahill * dan AT mcmahill dot net *
1340         * doc/actions.texi, doc/version.texi: regen
1342 2008-11-25   Dan McMahill * dan AT mcmahill dot net *
1344         * win32/Makefile.am, win32/build_pcb, win32/extract_gtk_win32,
1345         win32/pcb.nsi.in, win32/registerExtension.nsh: - various minor updates for a more recent download of gtk and
1346           friends largely taken from gerbv.  - associate .pcb and .fp file extensions with pcb - make sure we start up pcb in the My Documents area to discourage   writing into Program Files.
1348 2008-11-24   Dan McMahill * dan AT mcmahill dot net *
1350         * po/POTFILES.in: add 2 missing files that have translations
1352 2008-11-23   DJ Delorie * dj AT delorie dot com *
1354         * src/hid/ps/ps.c: Fix the foo.ps.type.ps bug
1356 2008-11-19   DJ Delorie * dj AT delorie dot com *
1358         * src/djopt.c: Move splitlines even earlier, to avoid unwanted
1359         changes.
1361 2008-11-11   DJ Delorie * dj AT delorie dot com *
1363         * src/create.c: Don't merge two lines if the join flag differs.
1365 2008-10-21   Peter Clifton * pcjc2 AT cam dot ac dot uk *
1367         * src/hid/gtk/gui-pinout-preview.c: Fix preview drawing broken by
1368         resetting "Gathering" mode after painting.  Seems that the pinout preview widget relied on the bug fixed in
1369         commit 0647d028e6c755715d2fcdbd0b4f2be73d36ae7f. In the expose
1370         handler of the preview, We should be calling the
1371         hid_expose_callback() function rather than DrawElement() directly.
1373 2008-10-21   Peter Clifton * pcjc2 AT cam dot ac dot uk *
1375         * src/hid/gtk/gui-output-events.c: Remove logged warning when
1376         pressing a key with no defined binding Poping up the log window in these cases is very intrusive, and it
1377         triggered for keys such as capslock, Mod4/Windows etc. There is no
1378         real need to log errant key-presses, so remove this feature.
1380 2008-10-13   Peter Clifton * pcjc2 AT cam dot ac dot uk *
1382         * src/autoroute.c, src/mtspace.c: Fix two assertion test to allow
1383         compiling a debug build.  Due to code-restructures, a couple of assert tests (not normally
1384         compiled) had bit-rotted. Remove one, rejig the other.
1386 2008-10-13   Peter Clifton * pcjc2 AT cam dot ac dot uk *
1388         * src/rtree.c: rtree.c: Fix typo in assertion test inside __r_search Caused false assertion failures when running a debugging build.
1390 2008-10-13   Peter Clifton * pcjc2 AT cam dot ac dot uk *
1392         * src/search.c: Fix IsPointInBox to work with wide as well as tall
1393         boxes Actually implement the test, rather than trying to construct a pad
1394         to test which has the right geometry.
1396 2008-10-13   Peter Clifton * pcjc2 AT cam dot ac dot uk *
1398         * src/rtree.c: Change rtree penalty function in rtree.c to use
1399         doubles, not long long.  Since the exact integer result doesn't matter, this is ok.
1400         Marginally faster on Core Duo machine.
1402 2008-10-13   Peter Clifton * pcjc2 AT cam dot ac dot uk *
1404         * src/rtree.c: Check all r-tree node children for fit before working
1405         out penalties Working out the penalty involves multiplications which produce a
1406         "long long" result, and is seen to be appear in profiling.  Make a pass at testing all children for the fast case of the child
1407         node containing the desired box, before working out size penalties
1408         to expanding each child.
1410 2008-10-13   Peter Clifton * pcjc2 AT cam dot ac dot uk *
1412         * src/heap.c: Increase initial heap size from 32 to 256 In complex boards with lots of polygons, we were realloc'ing up to
1413         this kind of number anyway, in x2 size steps. Save all the
1414         memcpy'ing by making the heap larger to start with.  My test board still has some requirement for heaps >256, <512, but
1415         the frequency is low.
1417 2008-10-13   Peter Clifton * pcjc2 AT cam dot ac dot uk *
1419         * src/hid/gtk/gtkhid-main.c: GTK HID: Raise already open command
1420         window to top with ":" key Previously, ":" only opened the window, but would not raise it if
1421         already open.
1423 2008-10-02   Peter Clifton * pcjc2 AT cam dot ac dot uk *
1425         * src/move.c: Fix array index out of bounds over layer groups Off by one error in for loop, picked out by a recent version of GCC
1426         being better at spotting this kind of bug. The effects (if any) this
1427         bug caused are unknown.
1429 2008-10-01   Peter Clifton * pcjc2 AT cam dot ac dot uk *
1431         * src/hid/gtk/gui-netlist-window.c: GTK HID: Fix crash when
1432         highlighting connectivity caused by net tree.  Seems I caused a crash in the connectivity highlighting code which
1433         assumed the net model of in the netlist window is a list structure
1434         where each element represents a net. Adapted the code to hunt out
1435         the right net / node with a tree model of nets.
1437 2008-10-01   Dan McMahill * dan AT mcmahill dot net *
1439         * README.snapshots, utils/cvs2cl.pl: add a local coyp of cvs2cl.pl
1441 2008-09-30   Peter Clifton * pcjc2 AT cam dot ac dot uk *
1443         * src/polygon.c, src/polygon.h: Don't bother unsubtracting complex
1444         polygons when doing incremental updates Since the polygon is re-cleared against any objects existing within
1445         the bounding box of the update region, there is no point wasting CPU
1446         cycles intersecting a more complex polygon than necessary. Just take
1447         the UNION of the polygon being unsubtracted, and the bounding box of
1448         the hole to be filed in.
1450 2008-09-30   Peter Clifton * pcjc2 AT cam dot ac dot uk *
1452         * src/misc.c, src/polygon.c: Fix text bounds to include the area
1453         cleared into a polygon Fixes re-clearing the polygon when a closely touching object is
1454         incrementally updated.
1456 2008-09-30   Peter Clifton * pcjc2 AT cam dot ac dot uk *
1458         * src/draw.c: Ensure "Gathering" mode is set after painting the
1459         screen.  In between repaints initiated from the GUI, with this flag set, all
1460         Draw{object_type} operations just update a dirtied bounds. A final
1461         Draw() call then calls the HID to invalidate the bounds gathered.  Setting "Gathering = True" after an expose event callback ensures
1462         subsequent drawing is batched up for the next screen update.
1464 2008-09-30   Peter Clifton * pcjc2 AT cam dot ac dot uk *
1466         * src/draw.c: Add debugging code to visually check a pad's bounding
1467         box Proved useful in fixing the pad bounding box update routine.
1468         Disabled with #if 0 block.
1470 2008-09-30   Peter Clifton * pcjc2 AT cam dot ac dot uk *
1472         * src/misc.c, src/move.h: Fix bounding boxes for rotated square
1473         ended pads.  Bounding box compution only worked for round ended pads before.  In
1474         addition, the "move" code previously called SetLineBoundingBox for
1475         pads, which computes the wrong result.
1477 2008-09-30   Peter Clifton * pcjc2 AT cam dot ac dot uk *
1479         * src/hid/gtk/gui-library-window.c: GTK HID: Make double clicking on
1480         a footprint library expand / contract it Usability improvement.
1482 2008-09-30   DJ Delorie * dj AT delorie dot com *
1484         * src/buffer.c: Put exploded pads on the correct layer
1486 2008-09-23   Peter Clifton * pcjc2 AT cam dot ac dot uk *
1488         * src/hid/gtk/gui-netlist-window.c: Display nets as a hierarchical
1489         tree in the netlist window.  The view splits netnames at "/" characters, and builds the netlist
1490         view as a tree accordingly. Allows more strutured viewing of nets
1491         coming from hierarchical designs.
1493 2008-09-23   Peter Clifton * pcjc2 AT cam dot ac dot uk *
1495         * src/hid/common/hidinit.c: Improve hashing algorithm for storing
1496         color data Curosry testing showed the old algorithm encountered a lot of hash
1497         collisions. Swap to a more sensible hashing algorithm.
1499 2008-09-23   Peter Clifton * pcjc2 AT cam dot ac dot uk *
1501         * src/hid/common/hidinit.c: Fix lru heuristic to shortcut color
1502         cache lookup Heuristic didn't work before as the lru element wasn't saved.
1504 2008-09-23   Peter Clifton * pcjc2 AT cam dot ac dot uk *
1506         * src/hid/batch/batch.c: Fix batch HID by adding stub functions for
1507         file watches and block hooks This was broken when these features were added to the HID interface.
1509 2008-09-11   DJ Delorie * dj AT delorie dot com *
1511         * src/polygon.c: Fix poly clearance around rotated pads - Robert
1512         Fitzsimons and Ineiev
1514 2008-09-11   DJ Delorie * dj AT delorie dot com *
1516         * src/hid/lesstif/main.c: Fix lesstif crosshair color - joel
1517         silvestre
1519 2008-08-22   Dan McMahill * dan AT mcmahill dot net *
1521         * README.cvs: update the anoncvs server name
1523 2008-08-19   Dan McMahill * dan AT mcmahill dot net *
1525         * configure.ac, src/Makefile.am: add a --enable-debug mode that does
1526         not disable assert()
1528 2008-08-16   DJ Delorie * dj AT delorie dot com *
1530         * src/hid/batch/batch.c: Add missing parameter name
1532 2008-08-06   DJ Delorie * dj AT delorie dot com *
1534         * globalconst.h: Bump up font size and aperture count.
1536 2008-08-03   DJ Delorie * dj AT delorie dot com *
1538         * src/hid/png/png.c: Add --ben-flip-x and --ben-flip-y options to
1539         produce "ben mode" images of the other side of the board.
1541 2008-07-10   Ben Jackson * ben AT ben dot com *
1543         * src/hid/png/png.c: Fix crash with 'ben-mode' if your layer stack
1544         is the reverse of DJ's.
1546 2008-07-08   DJ Delorie * dj AT delorie dot com *
1548         * src/hid/png/png.c: Add "Ben Mode".  Fix export of thindrawn
1549         polygons.
1551 2008-07-05   DJ Delorie * dj AT delorie dot com *
1553         * src/action.c: Oops, fix bug from previous patch.
1555 2008-07-05   DJ Delorie * dj AT delorie dot com *
1557         * src/action.c: Do not require a second paramter for SaveTo(Layout)
1559 2008-06-02   DJ Delorie * dj AT delorie dot com *
1561         * src/print.c: Allow outline layers that have nothing but arcs.
1563 2008-05-28   DJ Delorie * dj AT delorie dot com *
1565         * src/macro.h: Add ELEMENTARC_LOOP
1567 2008-05-20   Peter Clifton * pcjc2 AT cam dot ac dot uk *
1569         * data/pcb.xml.in, doc/actions.texi, doc/pcbfile.texi: Add mime
1570         magic "M48" for detection of excellon drill files.
1572 2008-05-07   DJ Delorie * dj AT delorie dot com *
1574         * src/hid/gerber/gerber.c: Don't say ,TZ as we're not omitting
1575         trailing zeros.
1577 2008-04-28   Dan McMahill * dan AT mcmahill dot net *
1579         * src/mtspace.c, src/report.c: fix a few more code before
1580         declarations bugs.  Patch by der Mouse.
1582 2008-04-28   Dan McMahill * dan AT mcmahill dot net *
1584         * configure.ac: if the compiler takes it, turn on code before
1585         declarations warnings
1587 2008-04-28   Dan McMahill * dan AT mcmahill dot net *
1589         * src/edif.y, src/puller.c: Fix some code before declarations bugs
1590         noted by der Mouse.
1592 2008-04-13   Peter Clifton * pcjc2 AT cam dot ac dot uk *
1594         * src/action.c: Applied patch from Tomaz Solc fixing crosshair
1595         issues with ActionNew() ActionNew() function didn't call a RestoreCrosshair() after a
1596         HideCrosshair() in most cases.  This causes symptoms similar to those described in #1900255 when
1597         "Start new layout" is selected in the File menu in GTK HID (most
1598         probably also in Lesstiff, but I haven't checked).  This patch adds two missing RestoreCrosshair() calls and fixes that
1599         issue.  Minor re-indentation by Peter Clifton during application.
1601 2008-04-13   Peter Clifton * pcjc2 AT cam dot ac dot uk *
1603         * src/misc.c: Applied patch from Tomaz Solc fixing a bug in the
1604         CenterDisplay function.  This patch fixes a bug in the CenterDisplay function that doesn't do
1605         a RestoreCrosshair() after HideCrosshair().  This causes the crosshair stack overflow when using the DRC checker
1606         (which calls CenterDisplay a lot).  Minor re-indentation by Peter Clifton during application.
1608 2008-04-13   Peter Clifton * pcjc2 AT cam dot ac dot uk *
1610         * src/crosshair.c, src/hid/gtk/gui-output-events.c: Applied patch
1611         from Tomaz Solc fixing bug #1882970.  This patch fixes a bug where objects attached to the cursor (line
1612         segments during drawing, etc.) permanently disappear if mouse cursor
1613         leaves a window during dragging.  Minor re-indentation by Peter Clifton during application.
1615 2008-04-13   Peter Clifton * pcjc2 AT cam dot ac dot uk *
1617         * src/hid/gtk/gtkhid-main.c: Apply patch from Igor to ensure when
1618         flipping the board, the cursor remains on the same point on the
1619         layout. Thanks!
1621 2008-04-13   Peter Clifton * pcjc2 AT cam dot ac dot uk *
1623         * doc/actions.texi, src/action.c, src/command.c, src/hid.h,
1624         src/hid/batch/batch.c, src/hid/bom/bom.c, src/hid/common/extents.c,
1625         src/hid/common/hidnogui.c, src/hid/gerber/gerber.c,
1626         src/hid/gtk/gtkhid-main.c, src/hid/gtk/gui-dialog.c,
1627         src/hid/gtk/gui.h, src/hid/lesstif/dialogs.c,
1628         src/hid/lesstif/main.c, src/hid/lpr/lpr.c, src/hid/nelma/nelma.c,
1629         src/hid/png/png.c, src/hid/ps/eps.c, src/hid/ps/ps.c: Add HID hook,
1630         close_confirm_dialog() for closing modified layouts.  This allows GUI HIDs to present a more native looking "save before
1631         closing" dialog. The HID is responsible for any save which the user
1632         requests and the subsequent return codes from the HID are as before,
1633         0 for cancel and 1 for close.  This checkin also fixes the GTK HID's Save() action to return 1 for
1634         cancel if the user cancels from the "Save As" dialog.
1636 2008-04-02   DJ Delorie * dj AT delorie dot com *
1638         * src/hid/png/png.c: Fix off-by-one bug drawing pads.
1640 2008-03-31   DJ Delorie * dj AT delorie dot com *
1642         * src/hid/ps/ps.c: When drawing zero-length lines, draw a square or
1643         circle according to the end cap value.
1645 2008-03-30   DJ Delorie * dj AT delorie dot com *
1647         * src/misc.c: If a layer selected through --layer-stack isn't found,
1648         let the user know and print a list of available layers.
1650 2008-03-24   DJ Delorie * dj AT delorie dot com *
1652         * src/hid/gerber/gerber.c: Ignore zero-radius filled circles.
1654 2008-03-16   Dan McMahill * dan AT mcmahill dot net *
1656         * src/find.c, src/parse_y.y: Only use the min annular ring parameter
1657         for checking the annular rings on pins and vias.  Previously the
1658         minimum copper width setting was also used.  Changed after a
1659         discussion on geda-user.  Also make sure we use the minimum copper
1660         width as the default if the .pcb file doesn't specify the minimum
1661         annulus.
1663 2008-03-15   Dan McMahill * dan AT mcmahill dot net *
1665         * src/hid/gerber/gerber.c: Add a missing terminating '*' on the
1666         first G04 line of the output files.  Noted on #geda.
1668 2008-02-27   Dan McMahill * dan AT mcmahill dot net *
1670         * src/Makefile.am: revert most of the previous commit which
1671         accidentally added some stuff that was not meant to be checked in.
1673 2008-02-26   Dan McMahill * dan AT mcmahill dot net *
1675         * src/Makefile.am, src/pcbtest.sh.in: use absolute paths (set at
1676         configure time) so this script may be called from other directories
1677         as part of a test suite.
1679 2008-02-22   Dan McMahill * dan AT mcmahill dot net *
1681         * lib/geda.inc: add 128 pin 14x14 mm LQFP with exposed padded.  Add
1682         128 pin 14x14 mm TQFP with and without exposed paddle
1684 2008-02-10   DJ Delorie * dj AT delorie dot com *
1686         * src/hid/ps/ps.c: Allow negative bloats
1688 2008-02-01   Dan McMahill * dan AT mcmahill dot net *
1690         * README.snapshots: add file size to checksum file
1692 2008-02-01   Dan McMahill * dan AT mcmahill dot net *
1694         * po/LINGUAS, po/fr.po, po/fr_FR.po: move fr_FR to fr as the latter
1695         seems to be recommended these days
1697 2008-02-01   Dan McMahill * dan AT mcmahill dot net *
1699         * configure.ac: bump to 1.99x after branching 20080202
1701 2008-02-01   Dan McMahill * dan AT mcmahill dot net *
1703         * ChangeLog: update for 20080202
1705 2008-02-01   Dan McMahill * dan AT mcmahill dot net *
1707         * README.snapshots: update to deal with the desktop integration and
1708         20080202
1710 2008-02-01   Dan McMahill * dan AT mcmahill dot net *
1712         * NEWS: add some news items for 20080202
1714 2008-02-01   Dan McMahill * dan AT mcmahill dot net *
1716         * src/misc.c: add 2008 to copyright year
1718 2008-02-01   Dan McMahill * dan AT mcmahill dot net *
1720         * doc/actions.texi: regen
1722 2008-02-01   Dan McMahill * dan AT mcmahill dot net *
1724         * src/hid/gtk/gui-utils.c: fix mark up rendering on status line
1726 2008-01-31   Dan McMahill * dan AT mcmahill dot net *
1728         * win32/build_pcb: add a --with-tex and --with-etex to work around
1729         some cygwin/tex bugs
1731 2008-01-31   Dan McMahill * dan AT mcmahill dot net *
1733         * win32/pcb.nsi.in: fix the start menu shortcut icon
1735 2008-01-31   Dan McMahill * dan AT mcmahill dot net *
1737         * win32/build_pcb: use tr to kill the extra \r that end up in the
1738         Makefiles courtesy of pkg-config.  This builds all but the docs on
1739         windows again.
1741 2008-01-31   Dan McMahill * dan AT mcmahill dot net *
1743         * src/hid/gtk/gtkhid-main.c, src/hid/gtk/gtkhid.h,
1744         src/hid/gtk/gui-top-window.c: avoid segfaults on loading certain
1745         boards from the command line.  This patch introduces a flag that
1746         indicates when the gui is up and calls to ghid_shift_is_pressed()
1747         and ghid_control_is_pressed() can proceed as normal.
1749 2008-01-30   Dan McMahill * dan AT mcmahill dot net *
1751         * win32/extract_gtk_win32: clean up a comment
1753 2008-01-30   Dan McMahill * dan AT mcmahill dot net *
1755         * win32/build_pcb, win32/extract_gtk_win32, win32/pcb.nsi.in: copy
1756         over build_pcb improvements from gerbv.  Add gdwin32 to the extract
1757         script.
1759 2008-01-30   Dan McMahill * dan AT mcmahill dot net *
1761         * win32/Makefile.am, win32/extract_gtk_win32, win32/pcb.nsi.in: add
1762         script to help setup build environmnet.  Also add all the various
1763         licenses to the installer.
1765 2008-01-29   Peter Clifton * pcjc2 AT cam dot ac dot uk *
1767         * icon-theme-installer: Fix bug in icon-theme-installer where the
1768         -?? size was not stripped from the installed icon name.
1770 2008-01-28   Dan McMahill * dan AT mcmahill dot net *
1772         * src/flags.c, src/gpcb-menu.res, src/pcb-menu.res: Repair the
1773         buffer # menus by changing CheckedWhen() to checked=.  As part of
1774         this, added a buffer flag.
1776 2008-01-22   Dan McMahill * dan AT mcmahill dot net *
1778         * src/hid/gtk/gui-misc.c, src/hid/gtk/gui-utils.c,
1779         src/hid/gtk/gui.h: add a bunch of const fixups from Larry Doolittle.
1781 2008-01-22   Dan McMahill * dan AT mcmahill dot net *
1783         * src/find.c: After we run DRC, force a redraw since we've possibly
1784         turned on and off layers (like silk).  Should address SF bug
1785         1843181.
1787 2008-01-16   Dan McMahill * dan AT mcmahill dot net *
1789         * autogen.sh: drop the intltool required version to 0.35 as that
1790         seems to work
1792 2008-01-16   Dan McMahill * dan AT mcmahill dot net *
1794         * Makefile.am, configure.ac, data/Makefile.am, icon-theme-installer: 
1795         check for gtk-update-icon-cache and use it.  For distcheck, disable
1796         that via setting the GTK_UPDATE_ICON_CACHE_BIN to 'true' to avoid
1797         creating a cache file which then is not removed.  A better way would
1798         probably be a uninstall hook which noticed that it was a distcheck
1799         uninstall and simply removed the file.
1801 2008-01-16   Dan McMahill * dan AT mcmahill dot net *
1803         * doc/actions.texi: regen
1805 2008-01-16   Dan McMahill * dan AT mcmahill dot net *
1807         * win32/Makefile.am: remove deprecated icon generation code
1809 2008-01-15   Dan McMahill * dan AT mcmahill dot net *
1811         * : regen
1813 2008-01-15   Dan McMahill * dan AT mcmahill dot net *
1815         * data/regen_files: add some help output, add options to only do the
1816         .png's or the .ico, check for imagemagick and netpbm.
1818 2008-01-15   Dan McMahill * dan AT mcmahill dot net *
1820         * configure.ac, src/Makefile.am, win32/Xdefaults.tgif,
1821         win32/pcb_icon_big.obj, win32/pcb_icon_med.obj,
1822         win32/pcb_icon_sml.obj: Use the same icons for windows as in the
1823         kde/gnome desktop.  Remove the old windows icons which were really
1824         placeholders anyway.  Remove the rules for regenerating these
1825         obsolete icons.
1827 2008-01-15   Dan McMahill * dan AT mcmahill dot net *
1829         * doc/Xdefaults.tgif: this file is no longer used.  The drawings for
1830         the documentation are drawn with pcb.
1832 2008-01-15   Dan McMahill * dan AT mcmahill dot net *
1834         * doc/pcb.man.in, doc/pcb.man.raw: remove some old and very obsolete
1835         files.
1837 2008-01-15   Dan McMahill * dan AT mcmahill dot net *
1839         * data/Makefile.am, icon-theme-installer: Remove the use of
1840         #!/bin/bash for the benefit of systems which don't install bash in
1841         /bin.  In the Makefile, call out the name of the shell to help
1842         systems like solaris where it is more likely that SHELL will be
1843         /bin/ksh instead of the broken solaris /bin/sh
1845 2008-01-15   Dan McMahill * dan AT mcmahill dot net *
1847         * autogen.sh: Check for the version of intltool.  Also apply some
1848         fixups to the po/Makefile.in.in file created by intltoolize.
1850 2008-01-15   Dan McMahill * dan AT mcmahill dot net *
1852         * src/autoroute.c: fix an unitialized variable
1854 2008-01-15   Dan McMahill * dan AT mcmahill dot net *
1856         * src/edif.y, src/hid/lesstif/menu.c: fix a few gcc4 warnings
1858 2008-01-15   Dan McMahill * dan AT mcmahill dot net *
1860         * Makefile.am: skip adding m4/ChangeLog to the distfile.  It seems
1861         to be installation dependent
1863 2008-01-14   Dan McMahill * dan AT mcmahill dot net *
1865         * Makefile.am: it helps if we build libintl before using it...
1867 2008-01-14   Dan McMahill * dan AT mcmahill dot net *
1869         * configure.ac: add missing $INTLLIBS to LIBS.  Fixes building with
1870         lesstif and batch.
1872 2008-01-13   Dan McMahill * dan AT mcmahill dot net *
1874         * configure.ac, src/hid/gtk/gui-top-window.c: check for and include
1875         locale.h.  Should fix solaris build problems.
1877 2008-01-13   Dan McMahill * dan AT mcmahill dot net *
1879         * mkinstalldirs: remove generated file.  This comes from the
1880         ./autogen.sh bootstrap
1882 2008-01-12   Peter Clifton * pcjc2 AT cam dot ac dot uk *
1884         * data/regen_files: Fix script to regenerate icon files, including
1885         mask channel for windows icons.
1887 2008-01-12   Dan McMahill * dan AT mcmahill dot net *
1889         * autogen.sh: put in a check for autopoint version
1891 2008-01-11   Dan McMahill * dan AT mcmahill dot net *
1893         * data/README: note the regen_files script
1895 2008-01-11   Dan McMahill * dan AT mcmahill dot net *
1897         * data/regen_files: hopefully fix a few minor bugs in inkscape
1898         exporting
1900 2008-01-11   Dan McMahill * dan AT mcmahill dot net *
1902         * data/Makefile.am, data/regen_files: add windows icon and script to
1903         generate it
1905 2008-01-11   DJ Delorie * dj AT delorie dot com *
1907         * src/polygon1.c: Strict aliasing patch from Larry Doolittle.
1909 2008-01-11   Dan McMahill * dan AT mcmahill dot net *
1911         * lib/geda.inc: fix pincount for MSOP10
1913 2008-01-11   Dan McMahill * dan AT mcmahill dot net *
1915         * src/hid/batch/.cvsignore, src/hid/bom/.cvsignore,
1916         src/hid/common/.cvsignore, src/hid/gerber/.cvsignore,
1917         src/hid/gtk/.cvsignore, src/hid/lesstif/.cvsignore,
1918         src/hid/lpr/.cvsignore, src/hid/nelma/.cvsignore,
1919         src/hid/png/.cvsignore, src/hid/ps/.cvsignore: add .dirstamp
1921 2008-01-11   Peter Clifton * pcjc2 AT cam dot ac dot uk *
1923         * lib/gtag.m4: Fix typo in gtag.m4 file
1925 2008-01-10   Peter Clifton * pcjc2 AT cam dot ac dot uk *
1927         * configure.ac, src/Makefile.am, src/hid/gtk/gui.h, src/main.c: 
1928         Activate gettext support in PCB by setting up the domain and locale
1929         dir.
1931 2008-01-10   Peter Clifton * pcjc2 AT cam dot ac dot uk *
1933         * data/pcb.desktop.in: Add application/x-pcb-footprint to the
1934         mime-types PCB will be launched for
1936 2008-01-10   Peter Clifton * pcjc2 AT cam dot ac dot uk *
1938         * data/pcb.xml.in: Add an attempt at a glob pattern to match PCB
1939         footprints Searches for the string "Element[" starting between and offset of 0
1940         and 20 bytes into the file.
1942 2008-01-10   Peter Clifton * pcjc2 AT cam dot ac dot uk *
1944         * data/pcb.desktop.in: Fix mime type registered to open PCB to
1945         application/x-pcb-layout
1947 2008-01-10   Peter Clifton * pcjc2 AT cam dot ac dot uk *
1949         * data/Makefile.am: Fix data/Makefile.am where xdgdir was used
1950         instead of xdgdatadir
1952 2008-01-10   Peter Clifton * pcjc2 AT cam dot ac dot uk *
1954         * Makefile.am: Add intltool-XXX.in to EXTRA_DIST and add appropriate
1955         cleaning rules.
1957 2008-01-10   Peter Clifton * pcjc2 AT cam dot ac dot uk *
1959         * Makefile.am, icon-theme-installer: Add missed icon-theme-installer
1960         script required for installing icons
1962 2008-01-10   Peter Clifton * pcjc2 AT cam dot ac dot uk *
1964         * Makefile.am: Add make distcheck ./configure flag
1965         --disable-desktop-database Ensures cache files won't be left during make distcheck which could
1966         break the distcheck.
1968 2008-01-10   Dan McMahill * dan AT mcmahill dot net *
1970         * win32/.cvsignore: add missing cvsignore
1972 2008-01-10   Dan McMahill * dan AT mcmahill dot net *
1974         * src/hid/common/.cvsignore: add hidlist.h
1976 2008-01-10   Dan McMahill * dan AT mcmahill dot net *
1978         * .cvsignore, src/.cvsignore, src/hid/.cvsignore,
1979         src/hid/batch/.cvsignore, src/hid/bom/.cvsignore,
1980         src/hid/common/.cvsignore, src/hid/gerber/.cvsignore,
1981         src/hid/gtk/.cvsignore, src/hid/lesstif/.cvsignore,
1982         src/hid/lpr/.cvsignore, src/hid/nelma/.cvsignore,
1983         src/hid/png/.cvsignore, src/hid/ps/.cvsignore, src/icons/.cvsignore: 
1984         add a cvsignore file
1986 2008-01-10   Dan McMahill * dan AT mcmahill dot net *
1988         * data/README: fix a typo
1990 2008-01-10   Dan McMahill * dan AT mcmahill dot net *
1992         * Makefile.am, configure.ac: wire in the desktop stuff
1994 2008-01-10   Peter Clifton * pcjc2 AT cam dot ac dot uk *
1996         * src/Makefile.am, src/gpcb-menu.res, src/hid/gtk/gui-config.c,
1997         src/hid/gtk/gui-library-window.c, src/hid/gtk/gui-library-window.h,
1998         src/hid/gtk/gui.h: Change library window to give a preview and
1999         filterable list of components.  Code for the libarary window is based on x_compselect.c from
2000         gEDA/gaf's gschem schematic editor, and the libray window code
2001         pre-existing in PCB.  Also added a shortcut "i" to the library window, matching gschem's
2002         insert component shortcut.
2004 2008-01-10   Peter Clifton * pcjc2 AT cam dot ac dot uk *
2006         * configure.ac, po/LINGUAS, po/POTFILES.in: Ensure GETTEXT_PACKAGE
2007         is set, and add missing LINGUAS and POTFILES.in files.
2009 2008-01-10   Dan McMahill * dan AT mcmahill dot net *
2011         * Makefile.am, README.cvs, autogen.sh, configure.ac: add i18n
2012         framework.
2014 2008-01-10   Peter Clifton * pcjc2 AT cam dot ac dot uk *
2016         * data/Makefile.am: Add Makefile.am for data dir, with rules to
2017         install icons and desktop data
2019 2008-01-10   Peter Clifton * pcjc2 AT cam dot ac dot uk *
2021         * data/pcb.desktop.in: Commit pcb.desktop.in template menu file for
2022         translation
2024 2008-01-10   Peter Clifton * pcjc2 AT cam dot ac dot uk *
2026         * data/pcb.xml.in, data/x-excellon.desktop.in,
2027         data/x-gerber.desktop.in, data/x-pcb-footprint.desktop.in,
2028         data/x-pcb-layout.desktop.in, data/x-pcb-netlist.desktop.in: Check
2029         in KDE mimelnk .desktop.in and XDG pcb.xml.in MIME registrations Files are annotated suitably for translation with intltool
2031 2008-01-10   Peter Clifton * pcjc2 AT cam dot ac dot uk *
2033         * data/README, data/application-x-excellon-16.svg,
2034         data/application-x-excellon-22.svg,
2035         data/application-x-excellon-32.svg,
2036         data/application-x-excellon-48.svg,
2037         data/application-x-excellon.svg, data/application-x-gerber-16.svg,
2038         data/application-x-gerber-22.svg, data/application-x-gerber-32.svg,
2039         data/application-x-gerber-48.svg, data/application-x-gerber.svg,
2040         data/application-x-pcb-footprint-16.svg,
2041         data/application-x-pcb-footprint-22.svg,
2042         data/application-x-pcb-footprint-32.svg,
2043         data/application-x-pcb-footprint-48.svg,
2044         data/application-x-pcb-footprint.svg,
2045         data/application-x-pcb-layout-16.svg,
2046         data/application-x-pcb-layout-22.svg,
2047         data/application-x-pcb-layout-32.svg,
2048         data/application-x-pcb-layout-48.svg,
2049         data/application-x-pcb-layout.svg,
2050         data/application-x-pcb-netlist-16.svg,
2051         data/application-x-pcb-netlist-22.svg,
2052         data/application-x-pcb-netlist-32.svg,
2053         data/application-x-pcb-netlist-48.svg,
2054         data/application-x-pcb-netlist.svg, data/pcb.svg: Check in MIME and
2055         app icons along with a README with origins and copyright
2057 2008-01-08   Peter Clifton * pcjc2 AT cam dot ac dot uk *
2059         * configure.ac, src/dbus-pcbmain.c: Avoid using deprecated
2060         dbus_watch_get_fd() in newer dbus versions.  Use a configure test (copied from PulseAudio) for the newer API,
2061         dbus_watch_get_unix_fd(), and use that if available.
2063 2008-01-08   Dan McMahill * dan AT mcmahill dot net *
2065         * src/polygon1.c: add a FIXME comment
2067 2008-01-08   Peter Clifton * pcjc2 AT cam dot ac dot uk *
2069         * src/Makefile.am, src/hid/gtk/gtkhid-main.c,
2070         src/hid/gtk/gui-pinout-preview.c, src/hid/gtk/gui-pinout-preview.h,
2071         src/hid/gtk/gui-pinout-window.c, src/hid/gtk/gui.h: Refactored
2072         pinout preview code into a new widget, GhidPinoutPreview In the refactoring, fix a bug where if the pinout window was larger
2073         than the PCB window's viewport, elements in the preview were clipped
2074         to the viewport size.  In a break from the old behaviour, the previewed element is centered
2075         in the preview area.
2077 2008-01-07   Dan McMahill * dan AT mcmahill dot net *
2079         * src/hid/gtk/gui-misc.c, src/hid/gtk/gui-output-events.c: remove a
2080         handful of strict aliasing rule violation warnings generate by gcc4
2082 2008-01-07   Dan McMahill * dan AT mcmahill dot net *
2084         * src/parse_l.l, src/res_lex.l: avoid some 'defined but not used'
2085         gcc warnings.
2087 2008-01-07   Dan McMahill * dan AT mcmahill dot net *
2089         * src/autoroute.c, src/hid/nelma/nelma.c, src/misc.c: clear out a
2090         few more compiler warnings
2092 2008-01-07   Dan McMahill * dan AT mcmahill dot net *
2094         * src/gpcb-menu.res: remove some duplicated entries and remove some
2095         conflicting hot keys.
2097 2008-01-07   Dan McMahill * dan AT mcmahill dot net *
2099         * src/hid/gtk/gui-top-window.c: be a little smarter about parsing
2100         the hotkey parts of the menu resource file.  Now give a sane message
2101         instead of segfaulting on a malformed input.  Also check for
2102         duplicate hot keys and drop the duplicates with a message.
2104 2008-01-06   Dan McMahill * dan AT mcmahill dot net *
2106         * src/hid/gtk/gui-output-events.c: correctly scale the step sizes
2107         for scroll bar scrolling of the main drawing area.  This addresses
2108         the "scoll bars scroll by tiny tiny steps" part of sf bug [ 1796016
2109         ] Cursor/scrolling madness
2111 2008-01-06   Dan McMahill * dan AT mcmahill dot net *
2113         * doc/Makefile.am: add some extra dependencies to get this working
2114         with parallel make jobs.
2116 2008-01-06   Dan McMahill * dan AT mcmahill dot net *
2118         * configure.ac: add min version for automake
2120 2008-01-06   Dan McMahill * dan AT mcmahill dot net *
2122         * configure.ac: specify the minimum autoconf version
2124 2008-01-06   Dan McMahill * dan AT mcmahill dot net *
2126         * Makefile.in, README.cvs, README_FILES/Makefile.in, aclocal.m4,
2127         config.h.in, configure, doc/Makefile.in, doc/actions.texi,
2128         doc/pcbfile.texi, doc/version.texi, example/Makefile.in,
2129         example/libraries/Makefile.in, lib/Makefile.in,
2130         newlib/2_pin_thru-hole_packages/Makefile.in, newlib/Makefile.in,
2131         newlib/analog-devices/Makefile.in, newlib/burr-brown/Makefile.in,
2132         newlib/connectors/Makefile.in, newlib/crystal/Makefile.in,
2133         newlib/electro-optics/Makefile.in, newlib/headers/Makefile.in,
2134         newlib/keystone/Makefile.in, newlib/msp430/Makefile.in,
2135         newlib/not_vetted_ingo/Makefile.in, newlib/sockets/Makefile.in,
2136         newlib/tests/Makefile.in, src/Makefile.in, src/icons/Makefile.in,
2137         tools/Makefile.in, tutorial/Makefile.in, win32/Makefile.in: remove a
2138         bunch of autotools generated files and update the instructions for
2139         building from cvs accordingly.
2141 2008-01-06   Dan McMahill * dan AT mcmahill dot net *
2143         * src/hid/png/png.c: before exporting png, clear out any existing
2144         color or brush cache.  They are stale.  Should fix sf bug [ 1807726 ] png HID exports transparent copper
2145         rectangles
2147 2008-01-06   Dan McMahill * dan AT mcmahill dot net *
2149         * src/hid/png/png.c: apply the patch provided in sf bug [ 1792119 ]
2150         Slanted squared pads: png output which corrects the drawing of non
2151         90-deg square cap lines in the png output.
2153 2008-01-05   Dan McMahill * dan AT mcmahill dot net *
2155         * src/Makefile.am, src/action.c, src/edif.y, src/edif_parse.h,
2156         src/file.c, src/file.h: add the ability to load edif netlists
2157         provided in sf patch [ 1516885 ] added edif netlist import by Jeff
2158         Bailey.
2160 2008-01-05   Dan McMahill * dan AT mcmahill dot net *
2162         * src/hid/gtk/gtkhid-main.c, src/hid/gtk/gui-dialog.c: remove some
2163         unused variables
2165 2008-01-05   Dan McMahill * dan AT mcmahill dot net *
2167         * src/hid/gtk/gtkhid-main.c, src/hid/gtk/gui-dialog.c,
2168         src/hid/gtk/gui.h: fix a bug where sometimes the confirm dialog had
2169         corrupt button names.
2171 2008-01-05   Dan McMahill * dan AT mcmahill dot net *
2173         * src/action.c: apply the patch provided in sf bug [ 1850097 ] Grid
2174         off by 1 after setting to 1
2176 2008-01-05   Dan McMahill * dan AT mcmahill dot net *
2178         * src/hid/gtk/gtkhid-main.c: apply a patch provided in sf bug [
2179         1840422 ] GTK HID panning bug.  Keeps the scroll bars in sync when
2180         the display is panned.
2182 2008-01-05   DJ Delorie * dj AT delorie dot com *
2184         * src/hid/common/actions.c: Re-initialize num so that multiple
2185         actions will be parsed properly.
2187 2008-01-05   Dan McMahill * dan AT mcmahill dot net *
2189         * src/hid/gtk/gtkhid-main.c: remove some code from set_cursor() that
2190         tries to limit the cursor position in a way which seems to cause
2191         spurious scrolling in a number of situations.  Should hopefully fix sf bug [ 1796016 ] Cursor/scrolling madness
2193 2008-01-05   Dan McMahill * dan AT mcmahill dot net *
2195         * src/hid/gtk/gui-top-window.c: update a comment
2197 2008-01-04   Dan McMahill * dan AT mcmahill dot net *
2199         * src/buffer.c: Allow the conversion of a selection which contains
2200         only silk to an element instead of requiring a pad or pin.  Useful
2201         for logos.  Requested in sf bug [ 1820380 ] convert-to-element requires at least
2202         one pin or pad
2204 2008-01-04   Dan McMahill * dan AT mcmahill dot net *
2206         * configure.ac: add missing check for texi2dvi.  sf bug [ 1840645 ] texi2dvi: Missing configure check
2208 2008-01-04   Dan McMahill * dan AT mcmahill dot net *
2210         * src/hid/ps/ps.c: Add an option that turns off the scale and file
2211         name in the postscript output.  This is useful when trying to do a
2212         toner transfer or print transparencies that use the whole page.  Requested in sf bug [ 1858547 ] unwanted text lines in printouts
2213         makes these useless
2215 2008-01-04   Dan McMahill * dan AT mcmahill dot net *
2217         * src/find.c, src/hid/gtk/gtkhid-main.c, src/hid/gtk/gui-dialog.c,
2218         src/hid/gtk/gui.h: Apply sf patch [ 1848465 ] brief error info in
2219         "DRC continue" dialog While here, add some missing bits of code in the dialog_confirm
2220         function for the gtk hid that lets you specify the ok and cancel
2221         messages.
2223 2008-01-04   Dan McMahill * dan AT mcmahill dot net *
2225         * src/hid/gtk/gui-top-window.c: fix a printf format string compiler
2226         warning.
2228 2008-01-04   Dan McMahill * dan AT mcmahill dot net *
2230         * src/action.c, src/file.c, src/hid/gerber/gerber.c, src/misc.c: add
2231         some casts to silence some gcc4 warnings
2233 2008-01-04   Dan McMahill * dan AT mcmahill dot net *
2235         * lib/geda.inc, lib/qfpdj.inc: apply sf patch 1784721 to move the
2236         QFP footprints to 0.01 mil resolution.  Also the remaining SO
2237         packages have been moved to the hi-res format.  Minor corrections to the patch by me.
2239 2008-01-03   Dan McMahill * dan AT mcmahill dot net *
2241         * lib/Makefile.am, lib/Makefile.in, lib/png_diff.sh: add a utility
2242         script for comparing .png's of an entire footprint library.
2244 2008-01-03   Dan McMahill * dan AT mcmahill dot net *
2246         * lib/m4lib_to_newlib.sh.in: add a -d|--dpi flag to use a fixed
2247         scale factor for the exported png files
2249 2008-01-03   Ben Jackson * ben AT ben dot com *
2251         * src/parse_y.y: Temporarily change PCB=yyPCB while InitClip after
2252         load (similar hacks exist in other load code)
2254 2008-01-03   Dan McMahill * dan AT mcmahill dot net *
2256         * lib/qfpdj.inc: add missing PKG_QFP_40
2258 2008-01-03   Dan McMahill * dan AT mcmahill dot net *
2260         * src/hid/gtk/gui-config.c, src/hid/gtk/gui-top-window.c: apply
2261         patch 1852864     GTK HID: scrolled layer preferences To enable a
2262         scroll window for the layers.  This is needed if the user uses more
2263         than 8 or so layers.
2265 2008-01-02   Dan McMahill * dan AT mcmahill dot net *
2267         * src/hid/bom/bom.c: Fix a problem with the X-Y output file where
2268         the y values were mirrored and offset with respect to the RS274-X
2269         output.  Given that this bug has been here since the code was
2270         written 3 years ago, I conclude that in fact no one has used this
2271         feature.
2273 2007-12-26   Dan McMahill * dan AT mcmahill dot net *
2275         * src/lrealpath.c: change the preprocessor logic a bit to avoid
2276         #ifdef-ing in code that will never be reached.
2278 2007-12-26   Dan McMahill * dan AT mcmahill dot net *
2280         * src/puller.c: add a couple of casts to make pointer compares work
2281         on identical pointer types.
2283 2007-12-26   DJ Delorie * dj AT delorie dot com *
2285         * src/hid/png/png.c: Fix some off-by-one bugs.
2287 2007-12-26   Dan McMahill * dan AT mcmahill dot net *
2289         * src/puller.c: get rid of a handful of compiler warnings (printf
2290         format strings, and unused variables).
2292 2007-12-22   DJ Delorie * dj AT delorie dot com *
2294         * src/hid/lesstif/netlist.c: Cast parameters to right type.
2296 2007-12-21   Dan McMahill * dan AT mcmahill dot net *
2298         * lib/geda.inc: add 10x10mm TQFP64, 12x12mm TQFP80, and 12x12mm
2299         TQFP100 footprints
2301 2007-12-19   Dan McMahill * dan AT mcmahill dot net *
2303         * lib/connector.inc: make sure both rows of CONNECTOR_DIL use 38 mil
2304         pins.  Noted on geda-user by Michael Stovenour
2306 2007-12-19   DJ Delorie * dj AT delorie dot com *
2308         * src/hid/lesstif/dialogs.c: Resolve some const-cast issues.
2310 2007-12-18   DJ Delorie * dj AT delorie dot com *
2312         * lib/geda.inc: Add TSSOP14 and TSSOP16
2314 2007-12-13   Dan McMahill * dan AT mcmahill dot net *
2316         * lib/plcc.inc: fix a few more cases of = being used where == was
2317         called for
2319 2007-12-13   Dan McMahill * dan AT mcmahill dot net *
2321         * lib/plcc.inc: use == instead of = for testing equality.  Gets rid
2322         of a bunch of warnings.  Verified that pcblib-newlib contents did
2323         not change with this commit.
2325 2007-12-11   DJ Delorie * dj AT delorie dot com *
2327         * src/gpcb-menu.res, src/pcb-menu.res: Various changes from Kai;
2328         cut-copy swap for lesstif.
2330 2007-12-11   Peter Clifton * pcjc2 AT cam dot ac dot uk *
2332         * : Forced checkin with no changes due to missed log entry from in
2333         commit Initialise static variables x_prev and y_prev in
2334         ghid_port_window_motion_cb() to -1, to avoid the (unlikely) case
2335         they are used initialised.
2337 2007-12-10   DJ Delorie * dj AT delorie dot com *
2339         * src/hid/gtk/gui-output-events.c: Fix enter/leave logic to avoid
2340         leaving obsolete crosshair-attached elements on the screen when the
2341         cursor leaves the working area.
2343 2007-12-10   Ben Jackson * ben AT ben dot com *
2345         * src/hid/lesstif/main.c, src/pcb-menu.res: Add Zoom(Toggle) and
2346         bind it to ` (backtick).  Fix all warnings in hid/lesstif/main.c
2348 2007-12-10   Ben Jackson * ben AT ben dot com *
2350         * src/draw.c: Make 'outline' layer test case-insensitive to match
2351         other instances.
2353 2007-12-10   Ben Jackson * ben AT ben dot com *
2355         * src/draw.c: Add gross hack to avoid using mask in DrawRats() for
2356         othet than lesstif HID, as lesstif and gtk provide different
2357         capabilities in CLEAR mode.
2359 2007-12-10   Ben Jackson * ben AT ben dot com *
2361         * src/draw.c, src/hid/lesstif/main.c, src/hid/lesstif/xincludes.h: 
2362         Add XRENDER support to the Lesstif HID.  Rat lines and soldermasks
2363         are now displayed at 50% intensity on top of other drawn elements.
2365 2007-12-09   Ben Jackson * ben AT ben dot com *
2367         * configure: Rebuild with 2.61
2369 2007-12-09   DJ Delorie * dj AT delorie dot com *
2371         * config.h.in, configure, configure.ac: Check for Xrender library.
2373 2007-12-08   Harry Eaton * haceaton AT users dot sourceforge dot net *
2375         * src/polygon1.c: Sometimes single-point touching will leave no
2376         starting point on the 'A' pline for an ISECTED contour. Check for
2377         starting points on the 'B' pline (only at the point of intersection)
2378         just in case it has a valid starting point.
2380 2007-12-04   Ben Jackson * ben AT ben dot com *
2382         * src/hid/png/png.c: ignore paste layers when exporting 'as shown':
2383         Correct logic for silk display; Add logic for mask display ignore
2384         soldermask layers for normal output add option to make
2385         background/erasures transparent
2387 2007-12-03   Ben Jackson * ben AT ben dot com *
2389         * src/crosshair.c: Avoid moving elements snapping to their own pins
2390         or pads.  Don't snap moving vias to any kind of pins (they can't
2391         overlap anyway).
2393 2007-12-03   Ben Jackson * ben AT ben dot com *
2395         * src/action.c: Don't create empty text objects.
2397 2007-12-02   Ben Jackson * ben AT ben dot com *
2399         * src/misc.c, src/polygon.c: Data->LayerN should generally be
2400         avoided.  It's not initialized for buffers.  All buffers should have
2401         max_layer available (which is a macro for PCB->Data->LayerN, the
2402         number of layers in the current board).
2404 2007-12-02   Ben Jackson * ben AT ben dot com *
2406         * src/action.c: Partial fix? [ 1775101 ] Undo with the line tool
2407         sometimes switches to wrong node If you auto-drc and you extend a
2408         line (causing a delete and re-add of a longer line), then undo, this
2409         patch ensures the restored short segment has FOUNDFLAG so you can
2410         continue drawing.
2412 2007-12-02   Ben Jackson * ben AT ben dot com *
2414         * src/macro.h, src/move.c: Fix [ 1820398 ] Inconsistant vias with
2415         move-to-layer Add explicit check for silk layer when making vias due
2416         to movelinetolayer
2418 2007-12-02   Ben Jackson * ben AT ben dot com *
2420         * src/action.c: Fix [ 1836169 ] undo of shift-paste element
2421         replacement broken Code was "stealing" the original name memory
2422         before removing it, so the element went into the undo buffer
2423         nameless.  Copy string instead.
2425 2007-12-02   Ben Jackson * ben AT ben dot com *
2427         * src/action.c: Fix [ 1836172 ] shift-create two vias, undo twice,
2428         internal error Caused by my addition of shift-click vias -- the new
2429         via undo was happening before the new flag undo.
2431 2007-12-02   Ben Jackson * ben AT ben dot com *
2433         * src/buffer.c: Missed a spot when adding 'clearlineflag' support to
2434         Text.  Also Fixed a bug in movearctobuffer
2436 2007-11-30   DJ Delorie * dj AT delorie dot com *
2438         * src/hid/gtk/gtkhid-main.c, src/hid/lesstif/dialogs.c,
2439         src/hid/ps/ps.c: Fix printer calibration.
2441 2007-11-30   DJ Delorie * dj AT delorie dot com *
2443         * src/gpcb-menu.res, src/pcb-menu.res: Add 50 mil grid setting.  Add
2444         global puller submenu.
2446 2007-11-30   Ben Jackson * ben AT ben dot com *
2448         * src/action.c: Fix a typo.  Do not use grid size for
2449         Connection(Find) search radius
2451 2007-11-30   DJ Delorie * dj AT delorie dot com *
2453         * src/hid/lesstif/menu.c: Attach the show soldermask layer button to
2454         its flag.
2456 2007-11-30   Ben Jackson * ben AT ben dot com *
2458         * src/polygon.c: In case 'biggest()' polygon is 0 area, init size =
2459         -1 instead of 0.
2461 2007-11-27   Ben Jackson * ben AT ben dot com *
2463         * src/rats.c: Fix two bugs in my via-rats patch: 1)  Certain combinations of objects (presumably rare!) could lead to
2464         a crash.  2)  Fix a cut/paste error where the wrong coordinate was tested.
2465         Add explanatory comment.
2467 2007-11-25   DJ Delorie * dj AT delorie dot com *
2469         * src/puller.c: Add global puller.
2471 2007-11-25   DJ Delorie * dj AT delorie dot com *
2473         * src/hid/lesstif/main.c: Draw arc start/end radii in separate
2474         colors, and dotted, if enabled.
2476 2007-11-25   DJ Delorie * dj AT delorie dot com *
2478         * src/draw.c, src/draw.h: Export DrawLayer() for the ps exporter.
2480 2007-11-25   DJ Delorie * dj AT delorie dot com *
2482         * src/hid/ps/ps.c: Draw outline layer on all other copper layers
2483         when "draw outline" is selected.  Make alignment marks less
2484         obtrusive.  Make drill helpers half the board's minimum drill size,
2485         not twice PCB's minimum drill size.  Include commented out helpers
2486         for brass paste stencil etching.
2488 2007-11-25   DJ Delorie * dj AT delorie dot com *
2490         * src/undo.c: Don't just clean out RemoveList, free it, so it's
2491         created properly later.
2493 2007-11-25   Ben Jackson * ben AT ben dot com *
2495         * src/polyarea.h: Add some prototypes for global functions returning
2496         double that will confuse the heck out of you if treated as returning
2497         int!
2499 2007-11-24   DJ Delorie * dj AT delorie dot com *
2501         * src/hid/lesstif/netlist.c: Don't crash if a scanned element has no
2502         text.
2504 2007-11-24   DJ Delorie * dj AT delorie dot com *
2506         * src/hid/lesstif/library.c: lesstif_show_library: Don't reset the
2507         dialog when we're just re-displaying it.
2509 2007-11-24   Ben Jackson * ben AT ben dot com *
2511         * src/action.c: Apply [ 1726201 ] SaveTo(PasteBuffer.file) for
2512         footprint creation with cleanups (original patch from Christian
2513         Riggenbach - gizmotron)
2515 2007-11-23   Ben Jackson * ben AT ben dot com *
2517         * src/actionlist.c: Remove obsolete (generated, even!) file
2519 2007-11-23   Ben Jackson * ben AT ben dot com *
2521         * src/gpcb-menu.res, src/pcb-menu.res: Change all the GetXY prompts
2522         for greater clarity.
2524 2007-11-23   Ben Jackson * ben AT ben dot com *
2526         * src/hid/gtk/gui-config.c: Apply patch [ 1835365 ] Fix for [
2527         1820385 ] Can't close the preference dialog from denis77
2529 2007-11-23   Ben Jackson * ben AT ben dot com *
2531         * src/autoroute.c: LIST_LOOP works on circular lists, but at least
2532         some code will produce a head pointer of NULL for an empty list,
2533         causing LIST_LOOP to crash.  Since I'm not sure which is the bug, I
2534         changed LIST_LOOP to assert() on a NULL list head and skip the loop.
2535         With assert disabled, the loop becomes a no-op, which seems
2536         appropriate.
2538 2007-11-23   DJ Delorie * dj AT delorie dot com *
2540         * src/search.c, src/search.h: Additional slanted-pad patch for
2541         missed DRC
2543 2007-11-22   DJ Delorie * dj AT delorie dot com *
2545         * src/hid/lesstif/styles.c: Update the status line even when we
2546         don't have a styles dialog.
2548 2007-11-19   DJ Delorie * dj AT delorie dot com *
2550         * src/report.c: Add annulus and mask gap to pin/via report.
2552 2007-11-19   Dan McMahill * dan AT mcmahill dot net *
2554         * configure, configure.ac: add a missing AC_MSG_RESULT in the
2555         makeinfo version test.  Patch from Peter Brett.  While here, remove
2556         a bashism (== vs =).
2558 2007-11-18   DJ Delorie * dj AT delorie dot com *
2560         * globalconst.h: Expand min/max values.
2562 2007-11-14   DJ Delorie * dj AT delorie dot com *
2564         * src/misc.c, src/parse_y.y: Fix pin bound calculations based on new
2565         thermal calculations.
2567 2007-11-12   DJ Delorie * dj AT delorie dot com *
2569         * src/crosshair.c: Snap to pin/pads whenever we're within the
2570         pin/pad copper, unless shift is pressed, then snap to the nearest
2571         grid point if it's closer.
2573 2007-11-12   DJ Delorie * dj AT delorie dot com *
2575         * src/hid/common/hidnogui.c: Don't complain about checking the shift
2576         key when exporting pngs from the command line.
2578 2007-11-12   Ben Jackson * ben AT ben dot com *
2580         * src/buffer.c: Fix bugs intoduced by revision 1.41 while preserving
2581         the fixes in 1.41.
2583 2007-11-10   DJ Delorie * dj AT delorie dot com *
2585         * lib/connector.inc: Reduce silk width of connector/header/jumpers
2586         (some fabs clip it to the pads) to be similar to other elements.
2588 2007-11-10   DJ Delorie * dj AT delorie dot com *
2590         * lib/qfpdj.inc, lib/smt.inc: Move silk away from pads.  Fix notch
2591         in SO footprints.
2593 2007-11-05   Dan McMahill * dan AT mcmahill dot net *
2595         * lib/geda.inc: fix DIN41651_20 and DIN41651_20S.  Those are 20 pin
2596         footprints not 10 pin footprints.  Reported by Marshall Jose.
2598 2007-11-04   Ben Jackson * ben AT ben dot com *
2600         * src/change.c, src/change.h, src/move.c, src/polygon.c,
2601         src/rotate.c, src/strflags.c: Add support for clearing text from
2602         polygons.  Text with the clearline flag (set with the J key by
2603         default, just like lines and arcs) will have a rounded rectangle
2604         hole cut in any overlapping polygons.
2606 2007-11-04   Ben Jackson * ben AT ben dot com *
2608         * src/action.c: Shift-click with the via tool to connect it to the
2609         current layer as you place it.
2611 2007-11-04   Ben Jackson * ben AT ben dot com *
2613         * src/hid/lesstif/netlist.c, src/netlist.c, src/rats.h: Plumb the
2614         NetlistShow() hid action in lesstif.  Takes a pin name or a net name
2615         and sets the current selection in the netlist window.  Does not pop
2616         up the netlist.
2618 2007-11-02   Dan McMahill * dan AT mcmahill dot net *
2620         * configure, doc/actions.texi, doc/version.texi: regen
2622 2007-11-02   DJ Delorie * dj AT delorie dot com *
2624         * src/draw.c: Properly thin-draw slanted pads.
2626 2007-11-02   DJ Delorie * dj AT delorie dot com *
2628         * src/find.c, src/polygon.c, src/search.c, src/search.h: Fixes for
2629         DRC of slanted pads.  Tracker bug 1791388 and patch 1791392.
2631 2007-11-02   DJ Delorie * dj AT delorie dot com *
2633         * src/draw.c: Don't draw pins/holes on the outline layer.  Include
2634         commented-out code to put board outline on mask layers, for fabs
2635         that need that.
2637 2007-11-02   Dan McMahill * dan AT mcmahill dot net *
2639         * src/action.c, src/buffer.c, src/hid/gtk/gui-output-events.c,
2640         src/hid/gtk/gui-top-window.c, src/select.c: fix some compiler
2641         warnings
2643 2007-11-02   Dan McMahill * dan AT mcmahill dot net *
2645         * configure.ac: Improve the robustness of the makeinfo version test.
2646         Patch provided by Peter Brett.
2648 2007-11-02   Dan McMahill * dan AT mcmahill dot net *
2650         * src/hid/gtk/gui-top-window.c: Don't segfault when clicking the top
2651         right button which toggles units.  Problem noted by and solution
2652         provided by Christian Riggenbach.
2654 2007-10-24   Ben Jackson * ben AT ben dot com *
2656         * src/search.c: Treat VIAFLAG rats (displayed as donuts) as round
2657         targets, not as the invisible lines they are internally.
2659 2007-10-23   DJ Delorie * dj AT delorie dot com *
2661         * src/hid/lesstif/dialogs.c: Make sure the leftmost end of the line
2662         is visible in the log window.
2664 2007-10-21   Ben Jackson * ben AT ben dot com *
2666         * src/action.c: Fix printf format warnings.
2668 2007-10-21   Ben Jackson * ben AT ben dot com *
2670         * src/crosshair.c, src/draw.c, src/rats.c: Ratlist generation is
2671         changed to favor connecting to polygons when they are available and
2672         surround the pin needing a connection.  Such rats are still
2673         internally lines to the corner of the polygon, but have the VIAFLAG
2674         set.  The drawing code is modified to show them as little donuts
2675         (suggesting the via that would be used to connect the pin, vs a
2676         line).  The crosshair rubberband code is modified to NOT draw these
2677         lines while dragging.  These changes are forward and backward
2678         compatible.
2680 2007-10-21   Ben Jackson * ben AT ben dot com *
2682         * src/action.c, src/find.c, src/find.h: Make DRC dialog
2683         next/continue to clarify its function.  When DRC is over, message
2684         now indicates if it was cancelled (so log can distinguish lack of
2685         DRC errors from aborted DRC).
2687 2007-10-20   Ben Jackson * ben AT ben dot com *
2689         * src/rubberband.c: The correct point on a line now moves with a
2690         polygon (fix cut'n'paste typo) When you move a line endpoint, only
2691         *exactly* connected lines go with you.  When you move a line, if
2692         another segment fully overlaps the end of the moving line, the
2693         entire segment (not an arbitrary end of it) will move.  When you
2694         move an element, any segments completely covered by a pad move with
2695         the pad.  (there are still some bugs in the drawing code as you
2696         drag??)
2698 2007-10-06   Dan McMahill * dan AT mcmahill dot net *
2700         * src/hid/gtk/gtkhid-main.c: Fix some really broken spurious panning
2701         of the drawing area which happens when the board is viewed from the
2702         back.  Reported by Peter Clifton who also helped getting this patch
2703         working right.
2705 2007-10-04   Peter Clifton * pcjc2 AT cam dot ac dot uk *
2707         * src/hid/gtk/gui-output-events.c: Reject double and triple clicks
2708         in ghid_port_button_press_cb() Fixes a bug where a component would be rotated by more steps than
2709         desired if clicking quickly with the rotate tool.
2711 2007-09-24   Ben Jackson * ben AT ben dot com *
2713         * src/polygon.c: Change rendering of rounded corners used when
2714         clearing polygons.  This fixes a slight rotation in rounded
2715         rectangles and asymmetry of all rounded clearances besides complete
2716         circles (which were not affected by the bug).  For an illustration,
2717         see:  http://ad7gd.net/geda/roundrectanim.gif (include error code
2718         print in returns from the polygon code -- not much use)
2720 2007-09-24   Ben Jackson * ben AT ben dot com *
2722         * src/autoroute.c: Add (under ifdef) code I used to debug a report
2723         of "The rats nest is stale! Aborting autoroute...".  It leaves the
2724         rat in question selected after the error.
2726 2007-09-19   Dan McMahill * dan AT mcmahill dot net *
2728         * src/misc.c: add missing 2007 in copyright year (for all the gtk
2729         usermenu stuff)
2731 2007-09-17   Dan McMahill * dan AT mcmahill dot net *
2733         * src/hid/gtk/gui-top-window.c: avoid free()-ing some memory a bit
2734         too soon.  Patch from Ineiev.
2736 2007-09-14   Dan McMahill * dan AT mcmahill dot net *
2738         * src/gpcb-menu.res, src/pcb-menu.res: use mil and mm instead of
2739         mils and mms for grid units
2741 2007-09-13   Dan McMahill * dan AT mcmahill dot net *
2743         * README.snapshots: a few minor corrections
2745 2007-09-12   Dan McMahill * dan AT mcmahill dot net *
2747         * configure, configure.ac: welcome to 1.99w
2749 2007-09-12   Dan McMahill * dan AT mcmahill dot net *
2751         * NEWS: news for 20070912
2753 2007-09-12   Dan McMahill * dan AT mcmahill dot net *
2755         * ChangeLog: update for 20070912 snapshot
2757 2007-09-12   Dan McMahill * dan AT mcmahill dot net *
2759         * README.snapshots: set date for 20070912
2761 2007-09-12   Dan McMahill * dan AT mcmahill dot net *
2763         * Makefile.in, README_FILES/Makefile.in, aclocal.m4, configure,
2764         doc/Makefile.in, doc/actions.texi, doc/pcbfile.texi,
2765         doc/version.texi, example/Makefile.in,
2766         example/libraries/Makefile.in, lib/Makefile.in,
2767         newlib/2_pin_thru-hole_packages/Makefile.in, newlib/Makefile.in,
2768         newlib/analog-devices/Makefile.in, newlib/burr-brown/Makefile.in,
2769         newlib/connectors/Makefile.in, newlib/crystal/Makefile.in,
2770         newlib/electro-optics/Makefile.in, newlib/headers/Makefile.in,
2771         newlib/keystone/Makefile.in, newlib/msp430/Makefile.in,
2772         newlib/not_vetted_ingo/Makefile.in, newlib/sockets/Makefile.in,
2773         newlib/tests/Makefile.in, src/Makefile.in, src/icons/Makefile.in,
2774         tools/Makefile.in, tutorial/Makefile.in, win32/Makefile.in: regen
2776 2007-09-12   Dan McMahill * dan AT mcmahill dot net *
2778         * src/hid/gtk/gtkhid-main.c: fill in the missing code to get the gtk
2779         HID set_crosshair() function working as well as the Cursor() action
2781 2007-09-12   Dan McMahill * dan AT mcmahill dot net *
2783         * src/hid/lesstif/main.c: fix a typo in a help string
2785 2007-09-12   Dan McMahill * dan AT mcmahill dot net *
2787         * src/hid/gtk/gui-output-events.c: remove unused variable
2789 2007-09-11   DJ Delorie * dj AT delorie dot com *
2791         * src/hid/lesstif/main.c: Add missing else.
2793 2007-09-08   Ben Jackson * ben AT ben dot com *
2795         * src/buffer.c: Fix bugs with undoing "group" moves of objects over
2796         a polygon.  The group code uses the buffer code (sort of an
2797         automatic cut/paste) so it applies to inserting elements and using
2798         the buffers as well.
2800 2007-09-08   Ben Jackson * ben AT ben dot com *
2802         * src/action.c: Fix [ 1751568 ] shorted nets stay orange after
2803         fixing and re-opt netlist
2805 2007-09-08   Ben Jackson * ben AT ben dot com *
2807         * src/rotate.c: Fix [ 1751574 ] undoing rotation that put an elt
2808         inside a poly didn't fix plow Properly restores/clears rubber band
2809         lines during rotate and undo.  Still shockingly slow if you try this
2810         on an even moderately full board!
2812 2007-09-08   Ben Jackson * ben AT ben dot com *
2814         * src/find.c, src/rtree.h: Search for rat-end connections using 3x3
2815         "fat" ends to avoid having rat-to-polygon-corner connections missed.
2817 2007-09-08   Ben Jackson * ben AT ben dot com *
2819         * src/select.c: Fix [ 1751566 ] When 'far side' hidden, hidden
2820         elements don't deselect Change the SelectBlock to ignore visibility
2821         for deselect while looping over all elements.  The diffs are large
2822         because the original code used VISIBLE_*_LOOP so all of the looping
2823         was replaced.
2825 2007-09-08   Ben Jackson * ben AT ben dot com *
2827         * src/search.c: Apply [ 1751580 ] polys should not be
2828         selectable/considered when thin-drawn
2830 2007-09-08   Ben Jackson * ben AT ben dot com *
2832         * src/search.c: Fix the crash from [ 1724453 ] PCB Crashes with bad
2833         footprint (in its library) Does not fix whatever bug in the input
2834         allowed a bogus element in (see bug for description of the problem
2835         with the element and the source of the bad element).
2837 2007-09-08   Ben Jackson * ben AT ben dot com *
2839         * src/remove.c: Fix bugs 1751572 and 1743534 by allowing a remove on
2840         an endpoint to delete the segment if it's not just deleting a kink
2841         from a longer line.
2843 2007-09-08   Ben Jackson * ben AT ben dot com *
2845         * src/move.c: Fix [ 1751578 ] 'move to current layer' doesn't
2846         re-plow polygon correctly by clearing the NEW line pointer instead
2847         of the old (destroyed) one.
2849 2007-09-06   Dan McMahill * dan AT mcmahill dot net *
2851         * lib/dil.inc: Patch [ 1784693 ] Fix Mark position for SDIP packages
2853 2007-09-06   Dan McMahill * dan AT mcmahill dot net *
2855         * configure, configure.ac: Add newlib/keystone/Makefile.  Forgot to
2856         check this in earlier.
2858 2007-09-05   Dan McMahill * dan AT mcmahill dot net *
2860         * newlib/Makefile.am, newlib/Makefile.in,
2861         newlib/keystone/KEYSTONE_1062.fp, newlib/keystone/Makefile.am,
2862         newlib/keystone/Makefile.in: add Keystone SMT battery holder for
2863         CR2032 coin cells.
2865 2007-09-05   Dan McMahill * dan AT mcmahill dot net *
2867         * lib/Makefile.am, lib/Makefile.in, lib/candk.inc, lib/common.m4,
2868         lib/nichicon.inc, lib/optek.inc: Add C&K ES series switches, Optek
2869         white LED, and Nichicon WT series of SMT electrolytics.
2871 2007-09-04   Dan McMahill * dan AT mcmahill dot net *
2873         * src/hid/gtk/gui-dialog-print.c, src/hid/gtk/gui.h: gut
2874         ghid_print_dialog() and use the attribute editor to do all of the
2875         dialog box work.  Removes a bunch of duplicated code.
2877 2007-09-04   Dan McMahill * dan AT mcmahill dot net *
2879         * src/action.c, src/file.c, src/gpcb-menu.res, src/hid.h,
2880         src/hid/batch/batch.c, src/hid/bom/bom.c,
2881         src/hid/common/hidnogui.c, src/hid/gerber/gerber.c,
2882         src/hid/gtk/gtkhid-main.c, src/hid/gtk/gui-dialog-print.c,
2883         src/hid/gtk/gui-dialog.c, src/hid/gtk/gui.h,
2884         src/hid/lesstif/dialogs.c, src/hid/lesstif/lesstif.h,
2885         src/hid/lesstif/main.c, src/hid/lpr/lpr.c, src/hid/nelma/nelma.c,
2886         src/hid/png/png.c, src/hid/ps/ps.c, src/vendor.c: Add a
2887         ->fileselect() function to the HID interface.  Now actions can use
2888         gui->fileselect() instead of gui->prompt_for() when they are
2889         specifically looking for a file.  Currently the gtk HID implements
2890         this and the lesstif one has the old behaviour.  While messing around with dialogs, add a "descr" argument to the
2891         attribute editor.  That can be used as a tooltip, help string, or
2892         ignored.
2894 2007-08-26   Peter Clifton * pcjc2 AT cam dot ac dot uk *
2896         * src/hid/ps/ps.c: Fixed .ps output with "drill-copper" and
2897         "drill-helper" options.  Holes in the soldermask (and other non-copper layers) are now drawn
2898         correctly when the "drill-copper" option is set to false. With the
2899         "drill-helper" option on, only holes on copper layers are affected.
2901 2007-08-22   Dan McMahill * dan AT mcmahill dot net *
2903         * src/hid.h, src/hid/batch/batch.c, src/hid/common/hidnogui.c,
2904         src/hid/gtk/gtkhid-main.c, src/hid/gtk/gui-dialog-print.c,
2905         src/hid/gtk/gui.h, src/hid/lesstif/dialogs.c,
2906         src/hid/lesstif/main.c, src/hid/ps/ps.c: add a title argument to the
2907         HID attribute_dialog function so the dialogs can have appropriate
2908         titles
2910 2007-08-22   Dan McMahill * dan AT mcmahill dot net *
2912         * src/hid/gtk/gtkhid-main.c, src/hid/gtk/gui-dialog-print.c,
2913         src/hid/gtk/gui.h: Implement the missing attribute editor dialog for
2914         the GTK HID and now that it is available, add the PrintCalibrate()
2915         action to match the lesstif one.
2917 2007-08-22   Dan McMahill * dan AT mcmahill dot net *
2919         * src/hid/ps/ps.c: indent
2921 2007-08-19   Dan McMahill * dan AT mcmahill dot net *
2923         * src/draw.c: when drawing the mark for an element also put an "L"
2924         on it if the element is locked.  Patch from Bert Timmerman
2926 2007-08-17   Dan McMahill * dan AT mcmahill dot net *
2928         * doc/pcb.texi: clean up the regexp appendix a bit
2930 2007-08-17   Dan McMahill * dan AT mcmahill dot net *
2932         * lib/qfn.inc: use a default pad clearance of 20 mils instead of
2933         zero.  Bug [ 1742394 ] Zero clearance QFN footprints.
2935 2007-08-17   Dan McMahill * dan AT mcmahill dot net *
2937         * src/gpcb-menu.res, src/hid/gtk/gui-top-window.c: Teach the GTK HID
2938         about active=<flag> in the menu resource file.  Now that this works,
2939         sync up the active=have_regex menus with the lesstif menu resource
2940         file.
2942 2007-08-06   DJ Delorie * dj AT delorie dot com *
2944         * src/global.h: Give data->pcb a real type.
2946 2007-08-06   DJ Delorie * dj AT delorie dot com *
2948         * src/buffer.c: Make sure loaded buffers have a proper pcb
2949         backpointer.
2951 2007-08-06   DJ Delorie * dj AT delorie dot com *
2953         * src/draw.c: [ 1751567 ] with thin-draw-poly on, soldermask display
2954         is messed up
2956 2007-08-06   DJ Delorie * dj AT delorie dot com *
2958         * src/select.c: Match whole names with regex's, when possible.
2959         [1741650]
2961 2007-08-06   DJ Delorie * dj AT delorie dot com *
2963         * src/flags.c, src/pcb-menu.res: Fix the have_regex flag in
2964         pcb-menu.res [1751564]
2966 2007-08-06   DJ Delorie * dj AT delorie dot com *
2968         * src/hid/common/actions.c, src/hid/lesstif/menu.c: More empty
2969         :command checks [1751582]
2971 2007-08-06   DJ Delorie * dj AT delorie dot com *
2973         * src/polygon.c: Ben: Avoid duplicate passes through pad clearances.
2975 2007-08-05   DJ Delorie * dj AT delorie dot com *
2977         * src/action.c, src/const.h, src/draw.c, src/flags.c, src/global.h,
2978         src/gpcb-menu.res, src/main.c, src/pcb-menu.res, src/polygon.c,
2979         src/strflags.c: patch 1738364: flag for non-clipped polygons.
2981 2007-08-05   DJ Delorie * dj AT delorie dot com *
2983         * src/hid/bom/bom.c: Adds an export in mm to the BOM export dialog
2984         [1742399]
2986 2007-08-05   DJ Delorie * dj AT delorie dot com *
2988         * src/set.c: Don't limit keepaway size to minimum *line* size.
2990 2007-08-04   DJ Delorie * dj AT delorie dot com *
2992         * src/hid/ps/ps.c: Apply bloat to drawn rectangles.
2994 2007-08-04   DJ Delorie * dj AT delorie dot com *
2996         * src/draw.c: Tracker 1753084 - fixes 1751589, merged soldermask has
2997         larger than expected outline.
2999 2007-08-03   DJ Delorie * dj AT delorie dot com *
3001         * src/hid/gtk/gui-top-window.c: More paranoid check for "gui is up"
3003 2007-08-02   DJ Delorie * dj AT delorie dot com *
3005         * src/hid/gtk/gui-top-window.c: Don't allow LayersChanged if there's
3006         no GUI yet.
3008 2007-08-01   DJ Delorie * dj AT delorie dot com *
3010         * src/hid/lesstif/main.c: Protect against empty :command string.
3012 2007-08-01   DJ Delorie * dj AT delorie dot com *
3014         * src/strflags.c: Fixed a bug in flags_to_string where the LOCALREF
3015         pcb flag would be discarded.
3017 2007-08-01   DJ Delorie * dj AT delorie dot com *
3019         * src/action.c: Fix references to RouteStyleChanged (should be
3020         RouteStylesChanged).  Call it when :RouteStyle is called.
3022 2007-08-01   DJ Delorie * dj AT delorie dot com *
3024         * src/file.c: When a board is loaded, the first route style is
3025         automatically selected if the old style doesn't happen to match any
3026         styles.
3028 2007-08-01   DJ Delorie * dj AT delorie dot com *
3030         * src/misc.c: Add missing variable.
3032 2007-08-01   DJ Delorie * dj AT delorie dot com *
3034         * src/misc.c: When the layer stack is reset, bring the component
3035         layer to the front and make it active.
3037 2007-08-01   DJ Delorie * dj AT delorie dot com *
3039         * src/hid/lesstif/main.c: When swapping board sides, swap top/bot
3040         layers even if both layers are visible.
3042 2007-08-01   DJ Delorie * dj AT delorie dot com *
3044         * src/hid/lesstif/main.c: Swap the direction of scroll bars when the
3045         board is swapped.
3047 2007-08-01   DJ Delorie * dj AT delorie dot com *
3049         * src/hid/gerber/gerber.c, src/hid/ps/eps.c, src/hid/ps/ps.c: 
3050         Gerber, PS, and EPS ignore the thindraw settings.  Fix bug in PS
3051         when first item on the board is an arc.  PS "drill helper" changed
3052         to a simple hole reduction so that copper extends to drilled hole
3053         even when hole is off-center.
3055 2007-08-01   DJ Delorie * dj AT delorie dot com *
3057         * src/hid/lesstif/menu.c: Don't free home_pcbmenu until after it's
3058         used.
3060 2007-06-28   Dan McMahill * dan AT mcmahill dot net *
3062         * src/hid/gtk/gui-config.c: Don't forget to fclose() the config file
3063         after we're done reading it.  CID 27, scan #1.
3065 2007-06-28   Dan McMahill * dan AT mcmahill dot net *
3067         * src/hid/bom/bom.c: Fix a few memory leaks.  Coverity ID 22, 23,
3068         and 24, scan #1.
3070 2007-06-13   Dan McMahill * dan AT mcmahill dot net *
3072         * src/hid/gtk/gtkhid-main.c: add missing save_syntax and save_help.
3073         Also allow Save(PasteBuffer) so we have more compatibility with the
3074         lesstif HID.  This also fixes the regression about saving buffer
3075         elements which appeared after the user menu branch was merged.
3077 2007-06-13   Dan McMahill * dan AT mcmahill dot net *
3079         * src/hid/lesstif/dialogs.c: add Save(PasteBuffer) to save_syntax.
3081 2007-06-09   DJ Delorie * dj AT delorie dot com *
3083         * src/action.c, src/pcb-menu.res: Add Delete() action.  No
3084         arguments: delete selected ELSE object, but options for selected
3085         only, object only, selected rats, all rats.
3087 2007-05-29   Peter Clifton * pcjc2 AT cam dot ac dot uk *
3089         * src/draw.c: Revert patch to hide far-side (invisible) pads when
3090         near-side pins / pads are switched off. Old behaviour was
3091         intentional.
3093 2007-05-25   Peter Clifton * pcjc2 AT cam dot ac dot uk *
3095         * src/hid/ps/ps.c: Add option "drill-copper" to draw / not draw
3096         drill holes in the copper layers of the ps exporter. This is useful
3097         for plated through processes which require the etch mask to protect
3098         the vias / pins during etching.
3100 2007-05-25   Peter Clifton * pcjc2 AT cam dot ac dot uk *
3102         * src/draw.c: Change drawing code for square pads to use
3103         gui->fill_rect (...) as on Win32, the current method of drawing a
3104         zero length line doesn't work.
3106 2007-05-25   Peter Clifton * pcjc2 AT cam dot ac dot uk *
3108         * src/draw.c: Stop far side 'invisible' pads being drawn when pins /
3109         pads are switched off.
3111 2007-05-25   Peter Clifton * pcjc2 AT cam dot ac dot uk *
3113         * src/hid/gtk/gtkhid-main.c: Fix drawing of filled rectangles when
3114         the board is flipped.  Makes soldermask view  on the back of the
3115         board work.
3117 2007-05-24   Dan McMahill * dan AT mcmahill dot net *
3119         * configure: regen
3121 2007-05-24   Dan McMahill * dan AT mcmahill dot net *
3123         * configure.ac: check for buggy versions of m4 which seem to think
3124         eval(-2/2) should be 2147483647.  Noted by Peter Clifton.
3126 2007-05-23   Dan McMahill * dan AT mcmahill dot net *
3128         * src/hid/gtk/gui-top-window.c: Avoid a stack corruption.  Noted by
3129         Peter Clifton.  Should probably replace all instances of sprintf in
3130         pcb with snprintf, but that will take some work.
3132 2007-05-17   Dan McMahill * dan AT mcmahill dot net *
3134         * src/hid/gtk/gui-top-window.c, src/hid/lesstif/menu.c, src/main.c: 
3135         check for getenv() return codes everywhere and deal if getenv
3136         returns NULL.  Noted by Peter Clifton.
3138 2007-05-16   Dan McMahill * dan AT mcmahill dot net *
3140         * src/file.c: if the popen fails for the ListLibraryContents.sh
3141         shell script, continue on with the newlib processing instead of
3142         failing.  This helps on systems where either the user has disabled
3143         m4 libraries or on systems like windows where the popen will not
3144         work.
3146 2007-05-04   Dan McMahill * dan AT mcmahill dot net *
3148         * src/todo: remove a few fixed things
3150 2007-05-04   Dan McMahill * dan AT mcmahill dot net *
3152         * lib/connector.inc: Increase the hole size on the DIN* connectors
3153         (are these named wrong btw?) from 28 mils to 40 mils.  This is more
3154         in line with what is recommended for Tyco *-1634689-* box headers in
3155         Tyco drawing 1634689.  Noted by Seb James.
3157 2007-05-02   Dan McMahill * dan AT mcmahill dot net *
3159         * src/create.c: When refusing to create overlapping vias spit out a
3160         warning.  We should probably allow overlapping vias but turn it into
3161         a DRC violation.  But until then, at least give a warning instead of
3162         silently dropping them.  More details are in bug reports: [ 1687692
3163         ] Large Pads (150 mils) silently dropped [ 1266154 ] lost vias
3165 2007-05-02   Dan McMahill * dan AT mcmahill dot net *
3167         * src/file.c, src/file.h, src/misc.c: avoid triggering an emergency
3168         save on normal exit.  Reported and patch provided in bug [ 1705607 ]
3169         Emergency save on normal exit.
3171 2007-05-01   Dan McMahill * dan AT mcmahill dot net *
3173         * src/hid/gtk/gui-pinout-window.c: - make arcs show up in the pinout window - don't rotate the element in the pinout window.  Rather display
3174           with the same rotation as in the layout.  Besides being more useful
3175           this avoid a segfault in some cases.
3177 2007-05-01   Dan McMahill * dan AT mcmahill dot net *
3179         * src/gpcb-menu.res: remove the menu mneumonics as some conflict
3180         with hotkeys
3182 2007-05-01   Dan McMahill * dan AT mcmahill dot net *
3184         * src/gpcb-menu.res, src/hid/gtk/gtkhid-main.c,
3185         src/hid/gtk/gui-output-events.c, src/hid/gtk/gui-top-window.c,
3186         src/hid/gtk/gui.h: Teach the GTK HID how to trap certain hotkeys
3187         which gtk usually captures for its own use.  This lets PCB use the
3188         arrow keys and the tab key again.  So restore the hotkey for
3189         flipping sides in the menu resource file.  Start on the Cursor()
3190         action which is needed for the arrow keys.  That part is not done
3191         yet.
3193 2007-04-28   Harry Eaton * haceaton AT users dot sourceforge dot net *
3195         * src/polygon.c: Don't double the pad thickness when restoring to
3196         the polygon.  For speedup, just add back a simple rectangle since it
3197         only has 4 points. Should do that for lines too, but didn't.
3199         ----------------------------------------------------------------------
3201 2007-04-27   Harry Eaton * haceaton AT users dot sourceforge dot net *
3203         * src/polygon.c: fix bloating of region to search for re-clearance
3204         after a portion of polyogn is restored.
3206         ----------------------------------------------------------------------
3208 2007-04-22   DJ Delorie * dj AT delorie dot com *
3210         * src/hid/gerber/gerber.c: Draw non-circular arcs manually.
3212 2007-04-21   DJ Delorie * dj AT delorie dot com *
3214         * src/action.c, src/buffer.c, src/copy.c, src/create.c,
3215         src/create.h, src/parse_y.y: Preserve width *and* height when
3216         manipulating arcs.
3218 2007-04-21   DJ Delorie * dj AT delorie dot com *
3220         * src/buffer.c: Add FreeRotatebuffer(Angle) (angle can be any angle)
3222 2007-04-21   DJ Delorie * dj AT delorie dot com *
3224         * src/crosshair.c, src/search.c: Allow for diagonal pads.
3226 2007-04-21   DJ Delorie * dj AT delorie dot com *
3228         * src/hid/lesstif/dialogs.c: Use ".fp" when loading element data.
3230 2007-04-21   DJ Delorie * dj AT delorie dot com *
3232         * src/buffer.c, src/create.c: Permit the existence of diagonal pads.
3234 2007-04-21   DJ Delorie * dj AT delorie dot com *
3236         * src/hid/gerber/gerber.c: Use polygons to draw square ended
3237         diagonal lines.
3239 2007-04-21   Dan McMahill * dan AT mcmahill dot net *
3241         * src/autoplace.c: add a check to make sure malloc() succeeds.
3242         Noted in bug [ 1657886 ] Check return codes everywhere
3244 2007-04-21   Dan McMahill * dan AT mcmahill dot net *
3246         * src/gpcb-menu.res, src/pcb-menu.res: Change "Select all" to
3247         "Select all visible" to match up with what actually happens.
3248         Reported in bug [ 1013719 ] Select all objects: misleading name?
3250 2007-04-20   Dan McMahill * dan AT mcmahill dot net *
3252         * src/hid/gtk/gui-output-events.c, src/hid/gtk/gui-top-window.c,
3253         src/hid/lesstif/main.c, src/hid/ps/ps.c, src/hid/ps/ps.h: fix a
3254         handful of compiler warnings
3256 2007-04-20   Dan McMahill * dan AT mcmahill dot net *
3258         * doc/actions.texi: regen after usermenu merge
3260 2007-04-20   Dan McMahill * dan AT mcmahill dot net *
3262         * config.h.in, configure, configure.ac, src/Makefile.am,
3263         src/Makefile.in, src/action.c, src/gpcb-menu.res,
3264         src/hid/gtk/gtkhid-main.c, src/hid/gtk/gui-config.c,
3265         src/hid/gtk/gui-output-events.c, src/hid/gtk/gui-top-window.c,
3266         src/hid/gtk/gui.h, src/misc.c, src/pcbtest.sh.in, src/set.c,
3267         src/todo: Merge the usermenu branch.   This reworks how the menus
3268         and hotkeys are defined and handled for the gtk HID.  In particular,
3269         instead of being hard coded, the menus are loaded from a menu
3270         resource file like in the lesstif gui.  All hotkeys are defined via
3271         the menu hotkeys and thus are visually presented in the menus.  The
3272         gtk HID looks for "gpcb-menu.res" instead of "pcb-menu.res" so that
3273         the menu organization may be different between the lesstif and gtk
3274         HID's.
3276 2007-04-19   Dan McMahill * dan AT mcmahill dot net *
3278         * src/action.c, src/change.c, src/hid/gtk/gui-output-events.c,
3279         src/hid/gtk/gui-pinout-window.c, src/hid/gtk/gui-top-window.c,
3280         src/misc.c, src/output.c, src/output.h, src/set.c, src/thermal.c: 
3281         Remove references to the now unused output.h.  To help keep it that
3282         way, go ahead and remove the unused output.c and output.h files.
3284 2007-04-12   DJ Delorie * dj AT delorie dot com *
3286         * src/command.c: Allow :s without filename to use current filename.
3288 2007-04-11   Dan McMahill * dan AT mcmahill dot net *
3290         * configure, configure.ac, src/Makefile.am, src/Makefile.in,
3291         src/hid/nelma/hid.conf, src/hid/nelma/nelma.c,
3292         src/hid/nelma/nelma.h: add the nelma export HID provided in patch: [
3293         1601099 ] Nelma export HID by Tomaz Solc with a few minor updates by
3294         me.
3296 2007-04-11   Dan McMahill * dan AT mcmahill dot net *
3298         * src/hid/gtk/gui-output-events.c: Apply patch supplied in patch [
3299         1692014 ] Patch for "click on focus for zoom" bug from Tomaz Solc.
3301 2007-04-10   Dan McMahill * dan AT mcmahill dot net *
3303         * doc/actions.texi, doc/pcbfile.texi, doc/version.texi,
3304         src/Makefile.in: regen
3306 2007-04-08   Dan McMahill * dan AT mcmahill dot net *
3308         * src/hid/gtk/gui-config.c: Initialize command history size to 5 if
3309         no config setting is given.  Patch [ 1608559 ] Patch for command
3310         entry history bug.
3312 2007-04-08   Dan McMahill * dan AT mcmahill dot net *
3314         * src/hid/gtk/gui-misc.c: add distance and angle to the relative
3315         readout.  Mostly provided in patch submission [ 1621913 ] Euclidian
3316         distance from mark.  Minor update (fix the fact that in PCB units,
3317         positive Y is down) from me.
3319 2007-04-08   Dan McMahill * dan AT mcmahill dot net *
3321         * src/file.c, src/file.h, src/parse_y.y: turn on the code which
3322         marks the file format version in the file.  pcb has had the code in
3323         place for a bit now that parses that and gives a warning if the
3324         version of pcb is not new enough to read the current file version.
3326 2007-04-07   Dan McMahill * dan AT mcmahill dot net *
3328         * src/hid/gtk/gui-misc.c, src/hid/gtk/gui-top-window.c: prevent the
3329         cursor position labels from growing/shrinking as you move the cursor
3330         around.
3332 2007-04-06   Dan McMahill * dan AT mcmahill dot net *
3334         * src/flags.c: Change the stringflag in the settings from showdrc to
3335         showdrcmode since we already used showdrc for the flag.  This fixes
3336         the menu choice for "crosshairs show drc clearance".
3338 2007-04-06   Dan McMahill * dan AT mcmahill dot net *
3340         * src/rats.c: avoid using an unitialized variable (even though we
3341         ignore the result of that access)
3343 2007-04-06   Dan McMahill * dan AT mcmahill dot net *
3345         * src/move.c: document MoveLayer() action
3347 2007-04-06   Dan McMahill * dan AT mcmahill dot net *
3349         * src/file.h: add missing prototypes
3351 2007-04-06   Dan McMahill * dan AT mcmahill dot net *
3353         * src/file.c: add missing header, remove unused variable
3355 2007-04-06   Dan McMahill * dan AT mcmahill dot net *
3357         * src/create.c, src/find.c: remove unused variable
3359 2007-04-06   Dan McMahill * dan AT mcmahill dot net *
3361         * src/action.c: format string fix
3363 2007-03-10   Harry Eaton * haceaton AT users dot sourceforge dot net *
3365         * src/rats.c: find rats regardless of how far the coordinates are
3366         out of bounds
3368         ----------------------------------------------------------------------
3370 2007-03-10   Harry Eaton * haceaton AT users dot sourceforge dot net *
3372         * src/rats.c: Handle case for connections are close to or beyond
3373         MAX_COORD
3375         ----------------------------------------------------------------------
3377 2007-03-09   DJ Delorie * dj AT delorie dot com *
3379         * src/Makefile.am, src/Makefile.in, src/clip.c, src/clip.h,
3380         src/hid/gtk/gtkhid-main.c, src/hid/lesstif/main.c: Add basic line
3381         clipping to both GUIs.
3383 2007-03-04   Dan McMahill * dan AT mcmahill dot net *
3385         * src/find.c: Fix a bug when looking for square pad to square pad
3386         clearance.  The old way simply grew one of the pads by Bloat on all
3387         4 sides and looked for overlap.  This is not the correct test in the
3388         case where the closest line between the two pads is a unique line
3389         from two of the corners.  The new way should correctly handle all
3390         cases.
3392 2007-03-04   DJ Delorie * dj AT delorie dot com *
3394         * src/Makefile.am, src/Makefile.in, src/action.c, src/action.h,
3395         src/autoroute.c, src/change.c, src/const.h, src/crosshair.c,
3396         src/data.c, src/data.h, src/djopt.c, src/draw.c, src/file.c,
3397         src/find.c, src/flags.c, src/global.h, src/hid.h,
3398         src/hid/batch/batch.c, src/hid/common/hidinit.c,
3399         src/hid/common/hidnogui.c, src/hid/gerber/gerber.c,
3400         src/hid/gtk/gtkhid-main.c, src/hid/lesstif/main.c,
3401         src/hid/lesstif/menu.c, src/hid/lesstif/netlist.c,
3402         src/hid/png/png.c, src/hid/ps/eps.c, src/hid/ps/ps.c, src/macro.h,
3403         src/main.c, src/misc.c, src/misc.h, src/parse_y.y,
3404         src/pcb-menu.res, src/report.c, src/search.c, src/set.c,
3405         src/strflags.c, src/strflags.h, src/todo: Made flags type big enough
3406         to hold PCB flags.  Added hash table for parameter lookup in action.c Moved thindraw code out of lesstif hid.  Added "thin draw polygons" flag to toplevel stuff.  Fixed "check polygons" so it works again.  Added "lock names" setting: When set, the arrow tool ignores element
3407         names and text objects, so you can select the elements or objects
3408         beneath them.  Added "only names" setting: When set, the arrow tool can only select
3409         element names and text objects; you won't accidentally move an
3410         element.  Made the crosshair-move code draw the outline of pads, not the
3411         centerline.  It does still draw round-end pads as rectangles,
3412         though.  Allow "--no-foo" to shut off boolean "--foo" options that default to
3413         on.  Added "--layer-stack" option that takes a string and sets the layer
3414         stack to it (for eps/png export, mostly).  Layers are numbers
3415         0..N-1, the names of the layers from the loaded PCB file, or the
3416         special names "rats", "invisible", "pins", "vias", or "elements".
3417         Layers may be separated by spaces, commas, semicolons, or colons.  Added Display(Step,[1..9]) to move the cursor in steps.  Implemented
3418         in lesstif HID, attached to arrow keys.  Added "what to do with the
3419         pointer" parameter - warp pointer to match crosshair, or pan window
3420         to put crosshair under cursor.  Make autorouter show live trials.  Clean up various FIXMEs.  Add support for string encoded PCB flags.  thindraw exports: off by default?  Follow current setting?  Or put
3421         it in their own attribute list? Added Report(NetLength) which reports on the total length of
3422         segments (lines and arcs) for the net under the cursor.  It will
3423         also tell you the name of the net.  Remove obsolete UseLogWindow and RaiseLogWindow.
3425 2007-03-02   Dan McMahill * dan AT mcmahill dot net *
3427         * win32/pcb.nsi.in: remove some left over links on uninstall
3429 2007-02-27   DJ Delorie * dj AT delorie dot com *
3431         * src/file.c: Avoid segfaults when loading elements, fixes bug in
3432         load-element-as-pcb patch.
3434 2007-02-27   DJ Delorie * dj AT delorie dot com *
3436         * src/hid/ps/ps.c: Add calibration values to the attribute list so
3437         they can be stored in the settings file, or given on the command
3438         line.
3440 2007-02-24   DJ Delorie * dj AT delorie dot com *
3442         * src/file.c, src/parse_y.y: Allow the user to load a footprint as a
3443         pcb; create a suitably-sized pcb around it.
3445 2007-02-23   DJ Delorie * dj AT delorie dot com *
3447         * src/report.c: Report on pads as rectangles, not lines, so we get
3448         width and height for the pad and mask.  Also, report the gap between
3449         the pad and the mask.
3451 2007-02-23   DJ Delorie * dj AT delorie dot com *
3453         * src/hid/ps/ps.c: Silence some compiler warnings.
3455 2007-02-23   DJ Delorie * dj AT delorie dot com *
3457         * src/hid/ps/ps.c: Don't print the scale if we're filling the page.
3458         Don't print (null) if there's no board name.
3460 2007-02-15   DJ Delorie * dj AT delorie dot com *
3462         * src/hid/lesstif/main.c: Attach status bar widgets to the correct
3463         siblings.
3465 2007-02-15   DJ Delorie * dj AT delorie dot com *
3467         * src/hid/lesstif/main.c: Don't use the crosshair's position to keep
3468         track of whether it's in the window or not; have a separate variable
3469         so we can avoid panning when we're just resetting the crosshair
3470         after a tool change.
3472 2007-02-15   DJ Delorie * dj AT delorie dot com *
3474         * src/autoroute.c, src/hid/ps/ps.c, src/parse_l.l, src/polygon.c: 
3475          Move declarations before statements (patch by Ben Jackson * ben AT
3476          ben dot com *)
3478 2007-02-13   DJ Delorie * dj AT delorie dot com *
3480         * src/action.c, src/change.c, src/draw.c, src/draw.h, src/move.c,
3481         src/print.c, src/remove.c, src/rotate.c, src/undo.c: Keep track of
3482         the minimum line size for text depending on which layer the text is
3483         on (copper, silk, pin numbers).
3485 2007-02-12   Dan McMahill * dan AT mcmahill dot net *
3487         * src/Makefile.am, src/Makefile.in, src/Pcb.ad.in, src/Pcb.ad.raw,
3488         src/Pcb.ad.small: Remove the appdefaults files.  These were leftover
3489         from Xaw days and weren't really doing anything other than providing
3490         a filename conflict on case insensitive file systems (pcb vs Pcb).
3492 2007-02-12   DJ Delorie * dj AT delorie dot com *
3494         * src/hid/ps/ps.c: Compensate for rotated boards.  Allow the print
3495         step to be skipped.
3497 2007-02-10   DJ Delorie * dj AT delorie dot com *
3499         * src/action.c, src/hid/lesstif/dialogs.c, src/hid/lpr/lpr.c,
3500         src/hid/ps/ps.c, src/pcb-menu.res: Add printer calibration code for
3501         lesstif HID.
3503 2007-02-10   DJ Delorie * dj AT delorie dot com *
3505         * src/vendor.c: Cache vendor lookups.  Use binary search instead of
3506         linear.
3508 2007-02-10   DJ Delorie * dj AT delorie dot com *
3510         * src/file.c, src/parse_l.l: Properly deal with quoted characters in
3511         both string reading and string writing.
3513 2007-02-10   DJ Delorie * dj AT delorie dot com *
3515         * src/vendor.c: Call busy before applying the vendor map.
3517 2007-02-10   DJ Delorie * dj AT delorie dot com *
3519         * src/action.c, src/djopt.c, src/hid.h, src/hid/batch/batch.c,
3520         src/hid/gtk/gtkhid-main.c, src/hid/lesstif/main.c: Change the way
3521         the busy cursor is done.  Called for autoplace, autoroute, and
3522         optimize.
3524 2007-02-10   DJ Delorie * dj AT delorie dot com *
3526         * src/hid/lesstif/main.c, src/pcb-menu.res: Add "C" for Center()
3527         action.  Provide examples for zooming-with-centering in
3528         pcb-menu.res.
3530 2007-02-10   Dan McMahill * dan AT mcmahill dot net *
3532         * README.cvs_branches: note the usermenu branch
3534 2007-02-09   DJ Delorie * dj AT delorie dot com *
3536         * src/create.c: Always initialize default layer names.
3538 2007-02-09   Dan McMahill * dan AT mcmahill dot net *
3540         * src/create.c: use MAX_LAYER in a spot instead of max_layer.
3541         Prevents a segfault with the lesstif hid.
3543 2007-02-09   Dan McMahill * dan AT mcmahill dot net *
3545         * configure, configure.ac: bump rev after 20070208 branch
3547 2007-02-09   Dan McMahill * dan AT mcmahill dot net *
3549         * ChangeLog, NEWS: update for 20070208 snapshot
3551 2007-02-08   Dan McMahill * dan AT mcmahill dot net *
3553         * configure, configure.ac, src/main.c: if we somehow fail to find
3554         the install path from lrealpath(argv[0]) or by searching through the
3555         PATH environment variable, fall back to the configure time path
3556         which is compiled into the binary.
3558 2007-02-08   Dan McMahill * dan AT mcmahill dot net *
3560         * doc/actions.texi, doc/version.texi: regen
3562 2007-02-08   Dan McMahill * dan AT mcmahill dot net *
3564         * lib/Makefile.am, lib/Makefile.in: Modify how the dependencies work
3565         a bit for the newlib library that is generated from the m4
3566         libraries.  In particular, make sure that a normal user building
3567         from a tarball doesn't have to build the libraries since they take
3568         quite a bit of time.  Also make sure things work with a read-only
3569         source tree.
3571 2007-02-08   Dan McMahill * dan AT mcmahill dot net *
3573         * src/main.c: When pcb is called with no path, i.e. "pcb" instead of
3574         "../src/pcb" or /usr/local/bin/pcb, then we can't just look at
3575         argv[0] to figure out the installation path.  In this situation,
3576         search through PATH to find which pcb was called.  Should fix
3577         problems noted on geda-dev by Tomaz Solc.
3579 2007-02-08   Harry Eaton * haceaton AT users dot sourceforge dot net *
3581         * src/pcbtest.sh.in: fix pcbtest script to use the new binary name
3582         ('pcb') even when not using gdb
3584         ----------------------------------------------------------------------
3586 2007-02-08   Harry Eaton * haceaton AT users dot sourceforge dot net *
3588         * src/polygon1.c: Prevent degenrate holes with no points from being
3589         added to polygon.  This is a stop-gap measure until I figure out why
3590         coincident edges in opposite directions are being created in some
3591         polygons.
3593         ----------------------------------------------------------------------
3595 2007-02-08   Dan McMahill * dan AT mcmahill dot net *
3597         * Makefile.in, README_FILES/Makefile.in, aclocal.m4, configure,
3598         doc/Makefile.in, example/Makefile.in,
3599         example/libraries/Makefile.in, lib/Makefile.in,
3600         newlib/2_pin_thru-hole_packages/Makefile.in, newlib/Makefile.in,
3601         newlib/analog-devices/Makefile.in, newlib/burr-brown/Makefile.in,
3602         newlib/connectors/Makefile.in, newlib/crystal/Makefile.in,
3603         newlib/electro-optics/Makefile.in, newlib/headers/Makefile.in,
3604         newlib/msp430/Makefile.in, newlib/not_vetted_ingo/Makefile.in,
3605         newlib/sockets/Makefile.in, newlib/tests/Makefile.in,
3606         src/Makefile.in, src/icons/Makefile.in, tools/Makefile.in,
3607         tutorial/Makefile.in, win32/Makefile.in: regen
3609 2007-02-08   Dan McMahill * dan AT mcmahill dot net *
3611         * : remove these generated files
3613 2007-02-08   Dan McMahill * dan AT mcmahill dot net *
3615         * README.snapshots: update for 20070208 snapshot
3617 2007-02-08   Dan McMahill * dan AT mcmahill dot net *
3619         * configure.ac: add a GIF AM_CONDITIONAL to go along with the PNG
3620         one
3622 2007-02-06   Dan McMahill * dan AT mcmahill dot net *
3624         * doc/Makefile.am, doc/Makefile.in: s/pcb-bin/pcb
3626 2007-02-06   Dan McMahill * dan AT mcmahill dot net *
3628         * win32/build_pcb: fix botched commit
3630 2007-02-06   Dan McMahill * dan AT mcmahill dot net *
3632         * win32/build_pcb: add a --enable-maintainer-mode flag
3634 2007-02-06   Dan McMahill * dan AT mcmahill dot net *
3636         * win32/pcb.nsi.in: Include in the installer the licenses for the
3637         included libraries (gd, png, jpeg, freetype, zlib).
3639 2007-02-06   Dan McMahill * dan AT mcmahill dot net *
3641         * win32/build_pcb, win32/pcb.nsi.in: Add in the png HID to the
3642         non-cygwin windows build.
3644 2007-02-06   Dan McMahill * dan AT mcmahill dot net *
3646         * lib/m4lib_to_newlib.sh.in: When generating the previews of the
3647         footprints, run pcb on an input and output file in the current
3648         directory instead of a different directory.  This becomes important
3649         on filesystems that use \ instead of / for the directory separator.
3651 2007-02-06   Dan McMahill * dan AT mcmahill dot net *
3653         * config.h.in, configure, configure.ac: On non-cygwin windows, look
3654         for -lbgd instead of -lgd since the former is what is available as a
3655         pre-build dll.
3657 2007-02-06   Dan McMahill * dan AT mcmahill dot net *
3659         * src/file.c: remove some illegal casts to unions.
3661 2007-02-06   Dan McMahill * dan AT mcmahill dot net *
3663         * lib/m4lib_to_newlib.sh.in: the executible is now pcb not pcb-bin
3665 2007-02-05   Dan McMahill * dan AT mcmahill dot net *
3667         * src/parse_l.l: If the passed path to Parse is "" then don't use
3668         it.
3670 2007-02-05   Dan McMahill * dan AT mcmahill dot net *
3672         * src/parse_l.l: make sure r is always initialized
3674 2007-02-04   Dan McMahill * dan AT mcmahill dot net *
3676         * Makefile.in, README_FILES/Makefile.in, acinclude.m4, aclocal.m4,
3677         config.h.in, configure, configure.ac, doc/Makefile.in,
3678         example/Makefile.in, example/libraries/Makefile.in,
3679         lib/Makefile.in, newlib/2_pin_thru-hole_packages/Makefile.in,
3680         newlib/Makefile.in, newlib/analog-devices/Makefile.in,
3681         newlib/burr-brown/Makefile.in, newlib/connectors/Makefile.in,
3682         newlib/crystal/Makefile.in, newlib/electro-optics/Makefile.in,
3683         newlib/headers/Makefile.in, newlib/msp430/Makefile.in,
3684         newlib/not_vetted_ingo/Makefile.in, newlib/sockets/Makefile.in,
3685         newlib/tests/Makefile.in, src/Makefile.in, src/file.c,
3686         src/icons/Makefile.in, src/main.c, src/parse_l.l,
3687         tools/Makefile.in, tutorial/Makefile.in, win32/Makefile.in: More
3688         work on the relocatability stuff to handle the annoying "\" instead
3689         of "/" for directory separators in windows.  Use ";" instead of ":"
3690         for path seperators under windows since it is common to have
3691         "c:\some\path".  With this change things seem to work under
3692         non-cygwin windows.
3694 2007-02-04   Dan McMahill * dan AT mcmahill dot net *
3696         * win32/pcb.nsi.in: install pcb.exe instead of pcb-bin.exe
3698 2007-02-04   Dan McMahill * dan AT mcmahill dot net *
3700         * configure, configure.ac, lib/Makefile.am, lib/Makefile.in,
3701         newlib/Makefile.am, newlib/Makefile.in, newlib/cypress/Makefile.am,
3702         newlib/cypress/Makefile.in,
3703         newlib/generic_SMD_packages/0805_reflow_solder,
3704         newlib/generic_SMD_packages/0805_wave_solder,
3705         newlib/generic_SMD_packages/1206_reflow_solder,
3706         newlib/generic_SMD_packages/Makefile.am,
3707         newlib/generic_SMD_packages/Makefile.in,
3708         newlib/generic_SMD_packages/SOT-23_Transistor,
3709         newlib/toko/Makefile.am, newlib/toko/Makefile.in: Remove some empty
3710         newlib directories, some poorly maintained footprints, and some
3711         "heavy" footprints.  There is still much more to be done but this is
3712         a start.
3714 2007-02-04   Dan McMahill * dan AT mcmahill dot net *
3716         * config.h.in, configure, configure.ac, doc/actions.texi,
3717         doc/pcb.texi, doc/version.texi, src/Makefile.am, src/Makefile.in,
3718         src/file.c, src/global.h, src/hid/common/hidinit.c,
3719         src/hid/gtk/gui-config.c, src/main.c, src/pcbtest.sh.in,
3720         src/script/Makefile.am, src/script/Makefile.in, src/script/pcb.in: 
3721         Take a stab at making pcb installations be relocatable.  By this I
3722         mean you can configure and install with ./configure --prefix=/original/path make make install mv
3723         /original/path /new/path and still have pcb work.  To make this work, the binary path is determined at runtime and all
3724         of the other paths are computed relative to this.  As part of this, go ahead and kill off the pcb wrapper script around
3725         pcb-bin.  That was leftover from Xaw days and wasn't really needed
3726         anymore.  As a side effect, the --program-prefix and
3727         --program-suffix configure options will probably work now.
3729 2007-02-03   Dan McMahill * dan AT mcmahill dot net *
3731         * acinclude.m4, config.h.in, configure, configure.ac: add autoconf
3732         macros from
3733         http://autoconf-archive.cryp.to/adl_compute_relative_paths.html and
3734         http://autoconf-archive.cryp.to/adl_normalize_path.html and use them
3735         to find relative paths from $bindir (where the pcb binary gets
3736         installed) to the directories with the default font and the
3737         footprints.  This is the first step in making an installation be
3738         relocatable.
3740 2007-02-03   Dan McMahill * dan AT mcmahill dot net *
3742         * src/file.c, src/file.h, src/hid/gtk/gui-config.c, src/main.c: - Instead of tying the saving of preferences to the autobackup
3743         timer, save them when we press ok on the preferences form.  - Move the autosave code out of the gtk hid and put it in the core.
3744           Now autosave should work on all gui's instead of just the gtk one.
3746 2007-02-03   Dan McMahill * dan AT mcmahill dot net *
3748         * src/hid/gtk/gui-netlist-window.c: Add a "find" and "rip-up" button
3749         to the netlist window.  Patch from Hans Nieuwenhuis on the geda-user
3750         mailing list.
3752 2007-02-03   Dan McMahill * dan AT mcmahill dot net *
3754         * globalconst.h, src/file.c: Instead of writing the backup file
3755         always to /tmp/something derive a backup name from the pcb file name
3756         (if the pcb file name exists, otherwise use PCB.%i.save in the
3757         current directory).  This should make it easier to find the backup
3758         file for a particular layout and also helps in cases where /tmp is
3759         not appropriate (windows).
3761 2007-02-02   DJ Delorie * dj AT delorie dot com *
3763         * src/main.c: Add command line option for setting DrawGrid
3765 2007-02-02   DJ Delorie * dj AT delorie dot com *
3767         * src/report.c: Round drill sizes before reporting them.
3769 2007-02-02   DJ Delorie * dj AT delorie dot com *
3771         * src/netlist.c, src/rats.c, src/rats.h: Fix logic for adding new
3772         rat lines to the netlist.
3774 2007-02-02   DJ Delorie * dj AT delorie dot com *
3776         * src/hid/gtk/gtkhid-main.c: Fix gtk grid when board flipped.
3778 2007-02-02   Dan McMahill * dan AT mcmahill dot net *
3780         * Makefile.in, README_FILES/Makefile.in, configure,
3781         doc/Makefile.in, example/Makefile.in,
3782         example/libraries/Makefile.in,
3783         newlib/2_pin_thru-hole_packages/Makefile.in, newlib/Makefile.in,
3784         newlib/analog-devices/Makefile.in, newlib/burr-brown/Makefile.in,
3785         newlib/connectors/Makefile.in, newlib/crystal/Makefile.in,
3786         newlib/cypress/Makefile.in, newlib/electro-optics/Makefile.in,
3787         newlib/generic_SMD_packages/Makefile.in,
3788         newlib/headers/Makefile.in, newlib/msp430/Makefile.in,
3789         newlib/not_vetted_ingo/Makefile.in, newlib/sockets/Makefile.in,
3790         newlib/tests/Makefile.in, newlib/toko/Makefile.in, src/Makefile.in,
3791         src/icons/Makefile.in, src/script/Makefile.in, tools/Makefile.in,
3792         tutorial/Makefile.in, win32/Makefile.in: regen
3794 2007-02-01   DJ Delorie * dj AT delorie dot com *
3796         * src/draw.c: Draw plated holes when exporting.
3798 2007-01-29   DJ Delorie * dj AT delorie dot com *
3800         * src/hid/lesstif/main.c, src/hid/lesstif/netlist.c: Add more
3801         functionality to netlist dialog.
3803 2007-01-27   DJ Delorie * dj AT delorie dot com *
3805         * src/action.c: Make sure we have a current mark when we convert
3806         selection to an element.
3808 2007-01-22   Dan McMahill * dan AT mcmahill dot net *
3810         * lib/Makefile.am, lib/Makefile.in: Fix a problem where we ended up
3811         with "//" in a full path name.  This caused problems on cygwin.
3813 2007-01-20   Dan McMahill * dan AT mcmahill dot net *
3815         * src/hid/gtk/gtkhid-main.c: add some code showing how to get the
3816         installation path on windows.  Right now, just print out the
3817         directory to show it works until I figure out how to get it to the
3818         rest of the program.
3820 2007-01-20   Dan McMahill * dan AT mcmahill dot net *
3822         * win32/build_pcb: clean out the old install directory prior to
3823         installing to avoid leftover cruft showing up in the installer.
3825 2007-01-20   Dan McMahill * dan AT mcmahill dot net *
3827         * win32/build_pcb: add a number of flags to this script to help when
3828         using it with cvs sources or in debug mode.  See "build_pcb --help"
3829         for details on the flags.
3831 2007-01-20   Dan McMahill * dan AT mcmahill dot net *
3833         * configure, configure.ac, src/main.c: Break apart PCBTREEDIR into
3834         the original plus PCBTREEPATH where the latter is a : seperated path
3835         and the former is just the base installation directory for newlib.
3837 2007-01-19   Dan McMahill * dan AT mcmahill dot net *
3839         * src/compat.c, src/compat.h, src/hid/common/hidinit.c: Add
3840         replacement wrappers for dlopen() and friends on windows.  Update
3841         the hid initialization code to pull in the compat header.  Also work
3842         around windows limitations with stat().  No change on real operating
3843         systems.
3845 2007-01-19   Dan McMahill * dan AT mcmahill dot net *
3847         * config.h.in, configure, configure.ac: - check for dlfcn.h and windows.h - fix the test for if the PNG hid is being compiled in or not
3849 2007-01-17   Dan McMahill * dan AT mcmahill dot net *
3851         * src/file.c: exclude .html and .png files from newlib directories
3853 2007-01-17   Dan McMahill * dan AT mcmahill dot net *
3855         * configure, configure.ac, src/pcbtest.sh.in: add the generated
3856         (from m4lib) newlib to the library search path
3858 2007-01-16   Dan McMahill * dan AT mcmahill dot net *
3860         * lib/Makefile.am, lib/Makefile.in, lib/footprint.pcb: - Add missing template .pcb file for generating previews of all the
3861           footprints.  Building the previews also verifies that there are no
3862           syntax errors in the m4lib footprints.  - fix the logic for rebuilding the newlib library from m4 libs.
3864 2007-01-16   DJ Delorie * dj AT delorie dot com *
3866         * src/hid/gerber/gerber.c: Use a global aperture list instead of
3867         per-layer lists.
3869 2007-01-16   DJ Delorie * dj AT delorie dot com *
3871         * src/file.c, src/macro.h, src/main.c, src/parse_l.l: Don't call
3872         popen() if we don't need to.
3874 2007-01-15   Dan McMahill * dan AT mcmahill dot net *
3876         * lib/Makefile.am, lib/Makefile.in: Build and install a newlib
3877         library from the m4lib library.  Currently nothing else has changed,
3878         the default for pcb is still the old behaviour.  This is just the
3879         first step.
3881 2007-01-15   Dan McMahill * dan AT mcmahill dot net *
3883         * lib/m4lib_to_newlib.sh.in: Make building the png preview optional.
3884         Other minor cleanups.
3886 2007-01-15   Dan McMahill * dan AT mcmahill dot net *
3888         * configure, configure.ac: add an AM_CONDITIONAL indicating if the
3889         png HID was compiled in
3891 2007-01-15   DJ Delorie * dj AT delorie dot com *
3893         * doc/actions.texi, doc/pcbfile.texi, doc/version.texi: Update from
3894         ../src
3896 2007-01-15   DJ Delorie * dj AT delorie dot com *
3898         * src/djopt.c: Keep canonicalizing lines until they're all
3899         canonicalized.  Don't delete vias that aren't tented (assume they're
3900         test points).  Add an option to just canonicalize lines.
3902 2007-01-14   Harry Eaton * haceaton AT users dot sourceforge dot net *
3904         * src/autoroute.c, src/mtspace.c, src/mtspace.h: More thurough via
3905         site searching, cost function changes and some better handling of
3906         certain search conditions.  Much improved smoothing pass
3907         implementation. Doesn't gratuitously pack traces at minimum
3908         clearance during smoothing pass. Overall much better routing is
3909         acheived.
3911         ----------------------------------------------------------------------
3913 2007-01-11   DJ Delorie * dj AT delorie dot com *
3915         * src/hid/ps/ps.c:  From: Hans Nieuwenhuis * vzzbx AT xs4all dot nl
3916         * Check for failed opens.
3918 2007-01-09   DJ Delorie * dj AT delorie dot com *
3920         * src/draw.c, src/hid/gerber/gerber.c: Don't draw plated holes on
3921         outline gerber.
3923 2007-01-09   Harry Eaton * haceaton AT users dot sourceforge dot net *
3925         * src/move.c: fix segfault when moving polygon to layer. Also user
3926         r_search to find the pin/via thermals.
3928         ----------------------------------------------------------------------
3930 2006-12-23   DJ Delorie * dj AT delorie dot com *
3932         * src/hid/lesstif/dialogs.c: Cast away const-ness.
3934 2006-12-22   Harry Eaton * haceaton AT users dot sourceforge dot net *
3936         * src/crosshair.c: don't indicate line end-point if the line is
3937         selected since move will move the whole selection.
3939         ----------------------------------------------------------------------
3941 2006-12-22   Harry Eaton * haceaton AT users dot sourceforge dot net *
3943         * src/crosshair.c, src/hid/gtk/gtkhid-main.c,
3944         src/hid/gtk/gui-misc.c, src/hid/gtk/gui.h, src/hid/lesstif/main.c,
3945         src/search.h, src/todo: provide a cursor shape change when the arrow
3946         mode crosshair is over a line end-point.
3948         ----------------------------------------------------------------------
3950 2006-12-22   DJ Delorie * dj AT delorie dot com *
3952         * src/todo: Take "enums" off the lesstif list.
3954 2006-12-22   DJ Delorie * dj AT delorie dot com *
3956         * src/hid/lesstif/dialogs.c: Add support for HID_Enum in attribute
3957         dialogs.
3959 2006-12-22   DJ Delorie * dj AT delorie dot com *
3961         * src/hid/lesstif/main.c: Increase default size of main window.
3963 2006-12-21   Dan McMahill * dan AT mcmahill dot net *
3965         * win32/build_pcb: if the configure or build fails, then abort the
3966         whole process.
3968 2006-12-21   Dan McMahill * dan AT mcmahill dot net *
3970         * win32/pcb.nsi.in: the link should be to pcb-bin.exe not pcb
3972 2006-12-21   DJ Delorie * dj AT delorie dot com *
3974         * src/todo: Remove completed projects, add some new ones.
3976 2006-12-18   DJ Delorie * dj AT delorie dot com *
3978         * src/hid/common/hidnogui.c, src/hid/gtk/gtkhid-main.c,
3979         src/hid/lesstif/main.c: ... and return 0 for progress hooks.
3981 2006-12-18   DJ Delorie * dj AT delorie dot com *
3983         * src/hid/common/hidnogui.c, src/hid/gtk/gtkhid-main.c,
3984         src/hid/lesstif/main.c: Fix progress prototypes.
3986 2006-12-17   DJ Delorie * dj AT delorie dot com *
3988         * src/hid.h, src/hid/batch/batch.c, src/hid/bom/bom.c,
3989         src/hid/common/hidnogui.c, src/hid/gtk/gtkhid-main.c,
3990         src/hid/lesstif/main.c, src/hid/lpr/lpr.c, src/hid/png/png.c,
3991         src/hid/ps/ps.c: Add progress() hook to HID structure.  No actual
3992         implementation yet.
3994 2006-12-17   DJ Delorie * dj AT delorie dot com *
3996         * src/hid/lesstif/main.c: Add automatic busy cursor.  Add (disabled)
3997         debug code for arc thindraw.
3999 2006-12-17   DJ Delorie * dj AT delorie dot com *
4001         * lib/geda.inc: Add SDIP20.  Fix comment.
4003 2006-12-15   DJ Delorie * dj AT delorie dot com *
4005         * src/parse_y.y: Allow attributes in old-style elements too.
4007 2006-12-14   Dan McMahill * dan AT mcmahill dot net *
4009         * src/hid/gtk/gui-output-events.c, src/hid/gtk/gui.h: Fix a bug in
4010         GTK hid that causes the view port to scroll in a random direction on
4011         a mouse click inside the view port (for example when drawing a
4012         line).  This bug only shows itself when an X application that steals window
4013         focus is running together with PCB on the same X server. At least
4014         GNOME and XFCE window managers are known to do that.  See the following and related GNOME bugs for some discussion about
4015         this: http://bugzilla.gnome.org/show_bug.cgi?id=102209 See also GTK documentation for GtkWidget and GdkEvent.  Analysis and patch provided in patch [ 1610717 ] Patch for auto-pan
4016         bug by Tomaz Solc.  This should also address bug report [ 1593578 ] Display sometimes
4017         auto-scrolls when drawing lines by Garth Webb.
4019 2006-12-14   Dan McMahill * dan AT mcmahill dot net *
4021         * src/Makefile.in: regen
4023 2006-12-14   Harry Eaton * haceaton AT users dot sourceforge dot net *
4025         * src/polygon1.c: avoid duplicate removal of duplicate points
4027         ----------------------------------------------------------------------
4029 2006-12-14   Harry Eaton * haceaton AT users dot sourceforge dot net *
4031         * src/hid/gtk/gui-config.c: beginnings of support for isleArea as a
4032         dialog changeable item
4034         ----------------------------------------------------------------------
4036 2006-12-14   Harry Eaton * haceaton AT users dot sourceforge dot net *
4038         * src/draw.c: fix arc drawing on the flipped board
4040         ----------------------------------------------------------------------
4042 2006-12-14   Dan McMahill * dan AT mcmahill dot net *
4044         * src/Makefile.am, src/Makefile.in: add missing lrealpath.h
4046 2006-12-14   Dan McMahill * dan AT mcmahill dot net *
4048         * src/dbus.c: change a libiberty.h include to lrealpath.h since
4049         thats what we have now
4051 2006-12-13   Dan McMahill * dan AT mcmahill dot net *
4053         * src/buffer.c, src/mymem.c, src/undo.c: Avoid some null pointer
4054         dereferences.  Also make sure UndoList and RemoveList are
4055         initialized at startup to avoid any strange behavior there.  This
4056         fixes a bug reported on geda-user where starting pcb with an empty
4057         board and then doing 'load layout to buffer' and pasting and then
4058         doing it again causes a segfault.  Thanks to Peter Clifton for
4059         pointing this out.
4061 2006-12-13   Dan McMahill * dan AT mcmahill dot net *
4063         * src/dbus-pcbmain.c, src/dbus-pcbmain.h, src/dbus.c, src/dbus.h: 
4064         indent new code -- no other changes
4066 2006-12-13   Dan McMahill * dan AT mcmahill dot net *
4068         * config.h.in, configure, src/Makefile.in: regen
4070 2006-12-13   Dan McMahill * dan AT mcmahill dot net *
4072         * acinclude.m4: fix underquoting of libiberty_NEED_DECLARATION
4074 2006-12-13   Dan McMahill * dan AT mcmahill dot net *
4076         * src/Makefile.am: when building dbus, compile in lrealpath.c
4078 2006-12-13   Dan McMahill * dan AT mcmahill dot net *
4080         * acinclude.m4, configure.ac: add configure checks needed for
4081         lrealpath.c
4083 2006-12-13   Dan McMahill * dan AT mcmahill dot net *
4085         * src/lrealpath.c: remove ansidecls.h
4087 2006-12-13   Dan McMahill * dan AT mcmahill dot net *
4089         * src/lrealpath.c, src/lrealpath.h: add a header with the lrealpath
4090         prototype and point to that instead of libiberty.h
4092 2006-12-13   Dan McMahill * dan AT mcmahill dot net *
4094         * src/lrealpath.c: Add lrealpath.c from gcc's libiberty.   For now
4095         lets just add this one libiberty function.  This is the unmodified
4096         version from gcc current as of 2006-12-12.  Last modified on
4097         2005-05-24.
4099 2006-12-10   Harry Eaton * haceaton AT users dot sourceforge dot net *
4101         * src/misc.c: scan all layers for match because buffers don't always
4102         have LayerN set properly
4104         ----------------------------------------------------------------------
4106 2006-12-09   Harry Eaton * haceaton AT users dot sourceforge dot net *
4108         * src/autoroute.c: break loops when exploring new paths, plus some
4109         other enhancements.
4111         ----------------------------------------------------------------------
4113 2006-12-07   Dan McMahill * dan AT mcmahill dot net *
4115         * src/dbus.c: put back the unused variable but protect it with
4116         #ifdef DEBUG. From Peter Clifton
4118 2006-12-07   Dan McMahill * dan AT mcmahill dot net *
4120         * src/hid/gtk/gtkhid-main.c: fix broken dereference from last commit
4122 2006-12-07   Dan McMahill * dan AT mcmahill dot net *
4124         * src/dbus.c: remove an unused variable
4126 2006-12-07   Dan McMahill * dan AT mcmahill dot net *
4128         * src/hid/gtk/gtkhid-main.c, src/hid/lesstif/main.c: Don't try to
4129         cast to a union.  This practice does not work with all compilers.
4130         Fixes compilation with sun compilers.
4132 2006-12-07   Dan McMahill * dan AT mcmahill dot net *
4134         * src/hid/ps/ps.c: add --scale for postscript scaling.  Patch from
4135         Hans Nieuwenhuis on geda-user.
4137 2006-12-07   Dan McMahill * dan AT mcmahill dot net *
4139         * Makefile.in, README_FILES/Makefile.in, config.h.in, configure,
4140         configure.ac, doc/Makefile.in, doc/pcbfile.texi,
4141         example/Makefile.in, example/libraries/Makefile.in,
4142         lib/Makefile.in, newlib/2_pin_thru-hole_packages/Makefile.in,
4143         newlib/Makefile.in, newlib/analog-devices/Makefile.in,
4144         newlib/burr-brown/Makefile.in, newlib/connectors/Makefile.in,
4145         newlib/crystal/Makefile.in, newlib/cypress/Makefile.in,
4146         newlib/electro-optics/Makefile.in,
4147         newlib/generic_SMD_packages/Makefile.in,
4148         newlib/headers/Makefile.in, newlib/msp430/Makefile.in,
4149         newlib/not_vetted_ingo/Makefile.in, newlib/sockets/Makefile.in,
4150         newlib/tests/Makefile.in, newlib/toko/Makefile.in, src/Makefile.am,
4151         src/Makefile.in, src/dbus-pcbmain.c, src/dbus-pcbmain.h,
4152         src/dbus.c, src/dbus.h, src/dbus.xml, src/hid.h,
4153         src/hid/common/extents.c, src/hid/common/hidnogui.c,
4154         src/hid/gtk/gtkhid-main.c, src/hid/lesstif/main.c,
4155         src/icons/Makefile.in, src/main.c, src/script/Makefile.in,
4156         tools/Makefile.in, tutorial/Makefile.in, win32/Makefile.in: Initial
4157         checkin of Peter Cliftons DBus work.  Currently dbus is disabled by
4158         default but can be enabled with --enable-dbus
4160 2006-12-06   Dan McMahill * dan AT mcmahill dot net *
4162         * src/hid/gtk/gui-top-window.c: Intercept window manager delete
4163         events.  This prevents data loss when the window manager closes or
4164         deletes a window.   Reported as [ 1458340 ] data loss with closing
4165         main PCB windows and also on geda-dev by Peter Clifton.
4167 2006-12-06   Dan McMahill * dan AT mcmahill dot net *
4169         * src/hid/gtk/gui-library-window.c, src/hid/gtk/gui-log-window.c,
4170         src/hid/gtk/gui-netlist-window.c, src/hid/gtk/gui-pinout-window.c: 
4171         Stop preventing the library, log, netlist, and pinout windows from
4172         accepting focus.  Preventing them from accepting focus had the side
4173         effect of breaking those dialogs on some systems with certain window
4174         managers.
4176 2006-12-05   Harry Eaton * haceaton AT users dot sourceforge dot net *
4178         * src/autoroute.c: allow searching across expansion boxes in each
4179         direction which can find lower cost routes.
4181         ----------------------------------------------------------------------
4183 2006-12-05   Harry Eaton * haceaton AT users dot sourceforge dot net *
4185         * src/autoroute.c: Various changes to improve the ability to find
4186         routes and make better looking, more efficient routes.
4188 2006-12-03   Harry Eaton * haceaton AT users dot sourceforge dot net *
4190         * src/misc.c, src/polygon.c: use Data->LayerN instead of max_layer
4191         where Data may not be PCB->Data
4193         ----------------------------------------------------------------------
4195 2006-12-02   DJ Delorie * dj AT delorie dot com *
4197         * src/move.c: Handle edge conditions when adding/removing layers wrt
4198         thermals.
4200 2006-12-02   DJ Delorie * dj AT delorie dot com *
4202         * src/move.c: Move thermals when we move layers.
4204 2006-12-02   DJ Delorie * dj AT delorie dot com *
4206         * src/hid/ps/ps.c: Move layer ID text outside of the "board" area.
4207         Print board name, layer name, and mirror flag in lower left near
4208         margin.  When both mirror and auto-mirror are checked, xor them.
4210 2006-12-01   Dan McMahill * dan AT mcmahill dot net *
4212         * src/hid/lpr/lpr.c, src/hid/ps/ps.c, src/hid/ps/ps.h: make sure the
4213         postscript header line makes it in the lpr HID.  Should fix problems
4214         where the postscript text was being printed instead of executed.
4216 2006-11-16   Harry Eaton * haceaton AT users dot sourceforge dot net *
4218         * src/polygon.c, src/polygon.h, src/thermal.c: make clearances
4219         around rectangular pins and pads have rounded rectangle features
4221         ----------------------------------------------------------------------
4223 2006-11-15   Harry Eaton * haceaton AT users dot sourceforge dot net *
4225         * src/draw.c: remove dead code accidentally left behind
4227         ----------------------------------------------------------------------
4229 2006-11-14   Harry Eaton * haceaton AT users dot sourceforge dot net *
4231         * src/draw.c, src/polygon.c, src/polygon.h: always draw with dicing
4232         so that polygons can reside in holes of other polygons
4234         ----------------------------------------------------------------------
4236 2006-11-14   Harry Eaton * haceaton AT users dot sourceforge dot net *
4238         * src/hid/gtk/gtkhid-main.c, src/hid/gtk/gui.h: Make the invalidate
4239         rectangle only include the drawn region.  This vastly speeds up
4240         drawing when zoomed in on a complex deisgn.
4242         ----------------------------------------------------------------------
4244 2006-11-13   Harry Eaton * haceaton AT users dot sourceforge dot net *
4246         * src/buffer.c: Warn if non-manhattan lines are trying to become
4247         pads.
4249 2006-11-13   Harry Eaton * haceaton AT users dot sourceforge dot net *
4251         * src/polygon.c: preven silk clipping copper polygons and copper
4252         clipping silk polygons
4254 2006-11-11   Dan McMahill * dan AT mcmahill dot net *
4256         * src/parse_y.y: minor fix to the FileVersion documentation
4258 2006-11-10   Dan McMahill * dan AT mcmahill dot net *
4260         * src/hid/ps/ps.c: add us and international business card media
4262 2006-11-10   Dan McMahill * dan AT mcmahill dot net *
4264         * src/file.c, src/file.h, src/parse_l.l, src/parse_y.y: Add code to
4265         the parser which looks for a line like FileVersion[20061101] at the top of the .pcb file.  If this line is seen and indicates a
4266         version which is too new for this version of pcb then issue a
4267         complaint and explain why.  This should help out when the file
4268         format changes and someone tries to load a new design with an older
4269         version of pcb.  Of course the real benefit won't happen until
4270         versions of pcb prior to this check all go away...  For now, the actual output file from pcb hasn't changed.  There is a
4271         two line change to include the FileVersion[] line that can be
4272         included the next time the file format is changed.  However, there
4273         is no reason to not have the program start watching for it.
4275 2006-11-10   Harry Eaton * haceaton AT users dot sourceforge dot net *
4277         * src/buffer.c, src/undo.c: fix some segfaults due to clearing pcb
4278         pointer in data structure.
4280 2006-11-09   Dan McMahill * dan AT mcmahill dot net *
4282         * src/hid/ps/ps.c: Add several more media types and for the existing
4283         metric ones, recompute the bounding box size since pcb has more
4284         internal resolution that the old values.
4286 2006-11-08   Harry Eaton * haceaton AT users dot sourceforge dot net *
4288         * src/remove.c: prevent segfault when removing polyogn points
4289         resulting in fewer than 3 points in the poly
4291         ----------------------------------------------------------------------
4293 2006-11-06   Harry Eaton * haceaton AT users dot sourceforge dot net *
4295         * src/polygon.c, src/polygon1.c: fix some bugs for unusual clipping
4296         conditions. Specifically holes touching at one point (or edge) as an
4297         acceptable self-intersection and snap-rounding expanding the
4298         bounding box by 1.
4300         ----------------------------------------------------------------------
4302 2006-11-05   Dan McMahill * dan AT mcmahill dot net *
4304         * doc/actions.texi, doc/pcbfile.texi: regen
4306 2006-11-05   Dan McMahill * dan AT mcmahill dot net *
4308         * src/action.c, src/change.c, src/change.h, src/const.h,
4309         src/draw.c, src/find.c, src/strflags.c: Add a 'nopaste' flag for
4310         pads.  This lets you produce fiducial marks that should not have
4311         solder paste.  In addition you can use it for things like card edge
4312         connectors where you may not want solder paste.  Since this is
4313         moderately dangerous (how do you make sure you don't set this flag
4314         somewhere where you _need_ solder paste), the drc check reports a
4315         count of how many times this flag is used.
4317 2006-11-04   Harry Eaton * haceaton AT users dot sourceforge dot net *
4319         * src/intersect.c: fix crash due to not checking for no overlaps.
4320         Thanks to Anread Kemnade for the patch.
4322         ----------------------------------------------------------------------
4324 2006-11-03   Dan McMahill * dan AT mcmahill dot net *
4326         * src/action.c: use *FILEVERSION* instead of *VERSION* for the
4327         annotation file to help avoid possible confusion between file
4328         version and program version.
4330 2006-10-29   DJ Delorie * dj AT delorie dot com *
4332         * src/report.c: Report units in mm or mils as selected by user.
4334 2006-10-29   Harry Eaton * haceaton AT users dot sourceforge dot net *
4336         * src/parse_y.y: fix polyarea ordering to correspond to file saving
4338         ----------------------------------------------------------------------
4340 2006-10-25   Harry Eaton * haceaton AT users dot sourceforge dot net *
4342         * src/action.c: fix setsame layer changing
4344         ----------------------------------------------------------------------
4346 2006-10-21   Harry Eaton * haceaton AT users dot sourceforge dot net *
4348         * src/find.c: allow pins/vias with zero clearance to touch polygons
4350         ----------------------------------------------------------------------
4352 2006-10-21   Harry Eaton * haceaton AT users dot sourceforge dot net *
4354         * src/polygon1.c: speed improvement by avoiding r_search call
4355         overhead when there is no overlap
4357         ----------------------------------------------------------------------
4359 2006-10-21   Harry Eaton * haceaton AT users dot sourceforge dot net *
4361         * src/file.c, src/global.h, src/main.c, src/parse_l.l: support for
4362         polygon island size in the pcb file
4364         ----------------------------------------------------------------------
4366 2006-10-21   Harry Eaton * haceaton AT users dot sourceforge dot net *
4368         * src/parse_y.y, src/polygon.c: Avoid use of 'max_layer' macro - it
4369         assumes the Data is the loaded PCB which doesn't work during file
4370         reading.
4372         ----------------------------------------------------------------------
4374 2006-10-21   Harry Eaton * haceaton AT users dot sourceforge dot net *
4376         * src/polygon.c, src/thermal.c, src/thermal.h: use the saved thermal
4377         scale when loading a design
4379         ----------------------------------------------------------------------
4381 2006-10-20   Dan McMahill * dan AT mcmahill dot net *
4383         * src/hid/common/hidinit.c, src/hid/gerber/gerber.c: Cast the char's
4384         which are being fed to isspace() and friends to ints which is what
4385         they want.
4387 2006-10-20   Harry Eaton * haceaton AT users dot sourceforge dot net *
4389         * src/rtree.c: check the coming regions, not the one we're at over
4390         and over
4392         ----------------------------------------------------------------------
4394 2006-10-20   Dan McMahill * dan AT mcmahill dot net *
4396         * src/hid/gtk/gui-misc.c, src/hid/gtk/gui-output-events.c: add a
4397         couple of casts and kill the rest of the remaining gcc and SunPRO
4398         warnings!
4400 2006-10-19   Dan McMahill * dan AT mcmahill dot net *
4402         * src/hid/lesstif/dialogs.c, src/hid/lesstif/menu.c,
4403         src/hid/lesstif/styles.c: cast to a size_t before converting
4404         callback data between ints and pointers
4406 2006-10-19   Dan McMahill * dan AT mcmahill dot net *
4408         * src/hid/gtk/gui-icons-misc.data, src/hid/gtk/gui-top-window.c: 
4409         remove some SunPRO compiler complaints about initilizers being out
4410         of range
4412 2006-10-19   Dan McMahill * dan AT mcmahill dot net *
4414         * src/hid/common/hidinit.c: catch HID_Mixed in a switch
4416 2006-10-19   Dan McMahill * dan AT mcmahill dot net *
4418         * src/hid/bom/bom.c, src/hid/gerber/gerber.c, src/print.c: avoid gcc
4419         warnings when using %c with strftime
4421 2006-10-19   Dan McMahill * dan AT mcmahill dot net *
4423         * src/polygon1.c: #ifdef DEBUG out a couple of things which are
4424         defined but not used unless DEBUG is defined
4426 2006-10-19   Dan McMahill * dan AT mcmahill dot net *
4428         * src/draw.c: cast to a size_t before an int when passing an int to
4429         a callback function.
4431 2006-10-19   Harry Eaton * haceaton AT users dot sourceforge dot net *
4433         * src/rtree.c: even faster tree searching and insertion
4435         ----------------------------------------------------------------------
4437 2006-10-19   Dan McMahill * dan AT mcmahill dot net *
4439         * src/polygon1.c: modify the DEBUGP macro slightly so it can be
4440         legally called with only one argument like DEBUGP("\n");
4442 2006-10-19   Harry Eaton * haceaton AT users dot sourceforge dot net *
4444         * src/polygon1.c: oops, don't manage the contour bounding boxes in
4445         the tree
4447         ----------------------------------------------------------------------
4449 2006-10-18   Dan McMahill * dan AT mcmahill dot net *
4451         * lib/geda.inc: {T,}QFN16_3{,_EP} needs to use PKG_QFN_50S not
4452         PKG_QFN_50.  Noted by Matthias Wenzel.
4454 2006-10-18   Harry Eaton * haceaton AT users dot sourceforge dot net *
4456         * src/polygon1.c: speed up hole insertion further. Trees everywhere!
4458         ----------------------------------------------------------------------
4460 2006-10-18   Dan McMahill * dan AT mcmahill dot net *
4462         * configure, configure.ac: Only apply the -rdynamic check if we're
4463         using gcc.  This probably isn't the correct long term fix but for
4464         now it lets users with SunPRO build again.  The problem is -rdynamic
4465         with SunPRO's cc doesn't have the same behaviour as with gcc but it
4466         returns 0 so configure thinks it is ok to add -rdynamic.
4468 2006-10-17   Dan McMahill * dan AT mcmahill dot net *
4470         * src/hid/ps/ps.c: Use the media option to set the page size and
4471         margins.  Selecting different paper size should work now.
4473 2006-10-17   Harry Eaton * haceaton AT users dot sourceforge dot net *
4475         * src/create.c, src/polyarea.h, src/polygon.c, src/polygon1.c,
4476         src/rtree.c: bug fixes for hole insertion and fast point inside
4477         polygon checking
4479         ----------------------------------------------------------------------
4481 2006-10-17   Dan McMahill * dan AT mcmahill dot net *
4483         * config.h.in, configure, configure.ac: check for dlopen in -ldl.
4484         Needed on solaris 9
4486 2006-10-17   Dan McMahill * dan AT mcmahill dot net *
4488         * configure, configure.ac: be verbose about the rdynamic test
4490 2006-10-16   Dan McMahill * dan AT mcmahill dot net *
4492         * lib/geda.inc: add some 16 pin 3x3 mm QFN packages
4494 2006-10-15   DJ Delorie * dj AT delorie dot com *
4496         * src/buffer.c: If we're converting a buffer to an element and the
4497         buffer has no associated PCB; assign the current one so we have *a*
4498         group table to use.
4500 2006-10-15   DJ Delorie * dj AT delorie dot com *
4502         * src/hid/gtk/gui-top-window.c, src/hid/lesstif/menu.c: Keep
4503         ElemenOn and *SILK->On in sync.
4505 2006-10-14   Harry Eaton * haceaton AT users dot sourceforge dot net *
4507         * src/change.c: handle polygon clearance for unplated holes
4509         ----------------------------------------------------------------------
4511 2006-10-14   Harry Eaton * haceaton AT users dot sourceforge dot net *
4513         * src/find.c: fix rat<->polygon connection test
4515         ----------------------------------------------------------------------
4517 2006-10-14   Harry Eaton * haceaton AT users dot sourceforge dot net *
4519         * src/change.c, src/polygon.c: fix undo handling for all change
4520         operations that affect polygon clip
4522         ----------------------------------------------------------------------
4524 2006-10-13   Harry Eaton * haceaton AT users dot sourceforge dot net *
4526         * src/find.c: fix rat to polygon connection test
4528         ----------------------------------------------------------------------
4530 2006-10-13   Harry Eaton * haceaton AT users dot sourceforge dot net *
4532         * src/change.c: fix the sense of set/clear for line join
4534         ----------------------------------------------------------------------
4536 2006-10-12   Harry Eaton * haceaton AT users dot sourceforge dot net *
4538         * src/macro.h: Fix GROUP_LOOP macro
4540 2006-10-12   Harry Eaton * haceaton AT users dot sourceforge dot net *
4542         * src/create.c, src/global.h, src/heap.h, src/polygon.c,
4543         src/polygon1.c: fix GROUP_LOOP macro, optimize hole insertion and
4544         fix some small bugs
4546         ----------------------------------------------------------------------
4548 2006-10-12   Harry Eaton * haceaton AT users dot sourceforge dot net *
4550         * src/action.c: Morph selections
4552         ----------------------------------------------------------------------
4554 2006-10-11   Dan McMahill * dan AT mcmahill dot net *
4556         * src/hid/lesstif/dialogs.c, src/hid/lesstif/menu.c: fix a few
4557         pointer bugs.
4559 2006-10-10   Dan McMahill * dan AT mcmahill dot net *
4561         * src/hid/lesstif/dialogs.c: remove some unused variables
4563 2006-10-10   Dan McMahill * dan AT mcmahill dot net *
4565         * src/hid/lesstif/menu.c: - include resource.h before lesstif.h to make sure we get a
4566           prototype for lesstif_note_mouse_resource().  - remove some unused variables.
4568 2006-10-10   Dan McMahill * dan AT mcmahill dot net *
4570         * src/hid/lesstif/main.c: remove some unused variables and add a
4571         missing return value
4573 2006-10-10   Dan McMahill * dan AT mcmahill dot net *
4575         * src/hid/lesstif/lesstif.h: - Be consistent with underscores in __RESOURCE_INCLUDED__.  Now this
4576           file matches what resource.h has! - Add a couple of missing prototypes.
4578 2006-10-10   Dan McMahill * dan AT mcmahill dot net *
4580         * src/resource.h: be consistent with underscores in
4581         __RESOURCE_INCLUDED__
4583 2006-10-10   Harry Eaton * haceaton AT users dot sourceforge dot net *
4585         * src/draw.c, src/polyarea.h, src/polygon.c, src/polygon.h,
4586         src/polygon1.c: fix polygon search bug introduced with
4587         optimizations.  fix a layer group bug in polygon clearing.  speed up
4588         gerber generation a little
4590         ----------------------------------------------------------------------
4592 2006-10-09   Dan McMahill * dan AT mcmahill dot net *
4594         * doc/version.texi: regen
4596 2006-10-09   Dan McMahill * dan AT mcmahill dot net *
4598         * configure, configure.ac: bump rev to 1.99u in light of the clipper
4599         code going in
4601 2006-10-09   Dan McMahill * dan AT mcmahill dot net *
4603         * doc/actions.texi, doc/ideas/database.txt, doc/pcbfile.texi,
4604         src/Makefile.am, src/Makefile.in, src/action.c, src/autoplace.c,
4605         src/autoroute.c, src/buffer.c, src/buffer.h, src/change.c,
4606         src/change.h, src/command.c, src/compat.c, src/const.h, src/copy.c,
4607         src/copy.h, src/create.c, src/crosshair.c, src/dev_ps.c,
4608         src/dev_ps.h, src/dev_rs274x.c, src/dev_rs274x.h, src/djopt.c,
4609         src/draw.c, src/drill.c, src/file.c, src/find.c, src/fontmode.c,
4610         src/global.h, src/hid.h, src/hid/batch/batch.c, src/hid/bom/bom.c,
4611         src/hid/common/extents.c, src/hid/common/hidnogui.c,
4612         src/hid/gerber/gerber.c, src/hid/gtk/gtkhid-main.c,
4613         src/hid/gtk/gui-pinout-window.c, src/hid/lesstif/main.c,
4614         src/hid/lpr/lpr.c, src/hid/png/png.c, src/hid/ps/eps.c,
4615         src/hid/ps/ps.c, src/insert.c, src/line.c, src/macro.h, src/main.c,
4616         src/mirror.c, src/misc.c, src/misc.h, src/move.c, src/mtspace.c,
4617         src/mymem.c, src/netlist.c, src/parse_y.y, src/polyarea.h,
4618         src/polygon.c, src/polygon.h, src/polygon1.c, src/print.c,
4619         src/puller.c, src/rats.c, src/remove.c, src/report.c, src/rotate.c,
4620         src/rtree.c, src/rubberband.c, src/search.c, src/search.h,
4621         src/select.c, src/strflags.c, src/thermal.c, src/thermal.h,
4622         src/undo.c, src/undo.h, src/vendor.c: Merge clipper branch back to
4623         the trunk.
4625 2006-10-08   DJ Delorie * dj AT delorie dot com *
4627         * src/hid/common/hidinit.c: Add RTLD_GLOBAL.
4629 2006-10-07   Dan McMahill * dan AT mcmahill dot net *
4631         * src/hid/common/hidinit.c: add missing header for Message()
4632         prototype and remove an unused variable
4634 2006-10-07   Dan McMahill * dan AT mcmahill dot net *
4636         * src/hid.h: add missing hid_{load,save}_settings prototypes
4638 2006-10-06   DJ Delorie * dj AT delorie dot com *
4640         * src/hid/gtk/gui-dialog-print.c: Minor bug fix for exporter.
4642 2006-10-05   DJ Delorie * dj AT delorie dot com *
4644         * src/hid.h, src/hid/common/hidinit.c,
4645         src/hid/gtk/gui-dialog-print.c, src/hid/lesstif/dialogs.c,
4646         src/main.c: Add global "exporter" option.
4648 2006-10-02   DJ Delorie * dj AT delorie dot com *
4650         * doc/actions.texi, src/action.c, src/hid.h,
4651         src/hid/common/hidinit.c, src/main.c: Load settings from
4652         ./pcb.settings and ~/.pcb/settings.  Add :savesettings action.
4654 2006-10-02   DJ Delorie * dj AT delorie dot com *
4656         * src/hid/common/hidinit.c: Remove debugging printf.
4658 2006-10-02   DJ Delorie * dj AT delorie dot com *
4660         * src/hid/common/hidinit.c: Fix plugin init function logic.
4662 2006-10-02   DJ Delorie * dj AT delorie dot com *
4664         * configure, configure.ac, src/hid.h, src/hid/batch/batch.c,
4665         src/hid/bom/bom.c, src/hid/common/extents.c,
4666         src/hid/common/hidinit.c, src/hid/common/hidnogui.c,
4667         src/hid/gerber/gerber.c, src/hid/gtk/gtkhid-main.c,
4668         src/hid/lesstif/main.c, src/hid/lpr/lpr.c, src/hid/png/png.c,
4669         src/hid/ps/eps.c, src/hid/ps/ps.c: Dynamically load plug-ins (hids,
4670         actions, etc) at runtime.
4672 2006-10-01   Dan McMahill * dan AT mcmahill dot net *
4674         * win32/build_pcb: extract the version from configure.ac instead of
4675         hard coding it.
4677 2006-10-01   DJ Delorie * dj AT delorie dot com *
4679         * src/hid/lesstif/menu.c: Fix off-by-one error.
4681 2006-10-01   Dan McMahill * dan AT mcmahill dot net *
4683         * config.h.in, configure, configure.ac: Check for popen().  So far
4684         nothing is done as a result of this.
4686 2006-10-01   Dan McMahill * dan AT mcmahill dot net *
4688         * win32/build_pcb: It should be "-mms-bitfields" instead of
4689         "--mms-bitfields".  Noted by Cesar Strauss.
4691 2006-09-30   DJ Delorie * dj AT delorie dot com *
4693         * configure, configure.ac: Add -rdynamic when it's available.
4695 2006-09-30   DJ Delorie * dj AT delorie dot com *
4697         * src/todo: I did the one about separate ps files.
4699 2006-09-29   Dan McMahill * dan AT mcmahill dot net *
4701         * configure, configure.ac, win32/build_pcb: Move the gcc flags that
4702         cause builds under cygwin to produce non-cygwin binaries out of the
4703         configure script and into the script which is used to build a
4704         non-cygwin binary under cygwin.  The end result should be the same for users who use
4705         ./win32/build_pcb but users who wish to compile a cygwin binary
4706         should be able to now.  Adapated from patch #1567401 "Re-enabling the Cygwin port" by Cesar
4707         Strauss.
4709 2006-09-27   Dan McMahill * dan AT mcmahill dot net *
4711         * doc/extract-docs: make this script more robust with respect to the
4712         formatting of the help and syntax strings.  In particular, variable
4713         whitespace is now allowed in the "static const char" declaration and
4714         the string may not begin on the same line as the declaration.  This
4715         allows the source code to run through indent(1) and still have the
4716         docs extracted properly.
4718 2006-09-26   Dan McMahill * dan AT mcmahill dot net *
4720         * configure, configure.ac: We don't directly need X stuff anymore
4721         unless we're using the lesstif HID so don't look for X except in
4722         that case.  This avoids some issues seen on some systems which have
4723         older libraries in /usr/X11R6/lib (like freetype or fontconfig).
4725 2006-09-25   Dan McMahill * dan AT mcmahill dot net *
4727         * src/hid/lesstif/dialogs.c: use the unified "about" string.
4729 2006-09-25   Dan McMahill * dan AT mcmahill dot net *
4731         * src/mymem.c, src/mymem.h: const-ify DSAddString
4733 2006-09-25   Dan McMahill * dan AT mcmahill dot net *
4735         * src/hid/gtk/gui-dialog.c, src/misc.c, src/misc.h: Improve the gtk
4736         "about" dialog box output to explicitly list the HID's which have
4737         been compiled in.  As part of this, pull out the code which
4738         generates the text of the dialog box into its own function so that
4739         it can be used by other HID's.
4741 2006-09-25   DJ Delorie * dj AT delorie dot com *
4743         * src/draw.c: A layer group that only contains a layer named
4744         "outline" or "route" will not have pins, pads, or vias drawn.
4746 2006-09-25   DJ Delorie * dj AT delorie dot com *
4748         * src/hid/common/flags.c: A layer group containing only an "outline"
4749         or "route" layer will be named "outline" when exported.
4751 2006-09-25   DJ Delorie * dj AT delorie dot com *
4753         * src/hid/gerber/gerber.c: Add a --verbose option to list gerber
4754         files as they're printed.
4756 2006-09-24   Dan McMahill * dan AT mcmahill dot net *
4758         * src/rats.c: When optimizing rats, if there are > 0 of them,
4759         display a message indicating how many.  This way when the layout is
4760         not complete you see how far you have to go and also you see that
4761         the operation has done something.
4763 2006-09-24   DJ Delorie * dj AT delorie dot com *
4765         * src/draw.c: If Settings.RatThickness is less than 20, it's a pixel
4766         size, not a pcb size.
4768 2006-09-24   DJ Delorie * dj AT delorie dot com *
4770         * src/hid/lesstif/main.c: Display remaining rats in status bar.
4772 2006-09-24   DJ Delorie * dj AT delorie dot com *
4774         * src/hid/gtk/gui-output-events.c, src/hid/gtk/gui-top-window.c,
4775         src/search.h: Note pixel slop in gtk hid.  Increase slop to 10
4776         pixels.
4778 2006-09-22   Dan McMahill * dan AT mcmahill dot net *
4780         * src/fontmode.c: add missing return value
4782 2006-09-22   Dan McMahill * dan AT mcmahill dot net *
4784         * src/create.c, src/file.c: remove some unused variables
4786 2006-09-22   DJ Delorie * dj AT delorie dot com *
4788         * src/buffer.c: Fix bug in poly point sorting for element
4789         conversion.
4791 2006-09-22   DJ Delorie * dj AT delorie dot com *
4793         * src/buffer.c: Allow rectangular polygons when converting a buffer
4794         to an element.
4796 2006-09-21   DJ Delorie * dj AT delorie dot com *
4798         * src/drill.c, src/mymem.c: Avoid attempts to realloc to zero bytes.
4800 2006-09-21   DJ Delorie * dj AT delorie dot com *
4802         * src/action.c: Fix undo for MinMaskGap()
4804 2006-09-21   DJ Delorie * dj AT delorie dot com *
4806         * doc/actions.texi, src/action.c: Add MinMaskGap() action.
4808 2006-09-20   DJ Delorie * dj AT delorie dot com *
4810         * src/hid/ps/ps.c: Add multi-file output option.
4812 2006-09-20   DJ Delorie * dj AT delorie dot com *
4814         * src/hid/common/flags.c, src/hid/gerber/gerber.c, src/hid/hidint.h: 
4815         Break out layer->filename code.  Fix bug in top/bottom detection.
4817 2006-09-14   Dan McMahill * dan AT mcmahill dot net *
4819         * src/hid/gerber/gerber.c: If the output file(s) can't be opened for
4820         writing then spit out an error message instead of segfaulting.  The
4821         segfaults were noted in bug [ 1556894 ] "segfault when exporting to
4822         non-existing directory" reported by Stephan Boettcher.
4824 2006-09-13   DJ Delorie * dj AT delorie dot com *
4826         * src/draw.c: Draw the elements' marks.
4828 2006-09-13   Dan McMahill * dan AT mcmahill dot net *
4830         * lib/amp.inc, lib/amphenol.inc, lib/bga.inc, lib/bourns.inc,
4831         lib/connector.inc, lib/dil.inc, lib/gtag.m4, lib/johnstech.inc,
4832         lib/lsi.m4, lib/misc.inc, lib/pci.inc, lib/plcc.inc, lib/qfn.inc,
4833         lib/qfp.inc, lib/qfp2.inc, lib/qfpdj.inc, lib/resistor_adjust.inc,
4834         lib/to.inc, lib/zif.inc: quote the refdes parameter (name on board
4835         parameter) on the PKG_* macros.  This prevents problems when a
4836         refdes matches the name of a macro and m4 expands it.  Patch
4837         provided by Peter Clifton.
4839 2006-09-13   Dan McMahill * dan AT mcmahill dot net *
4841         * lib/to.inc: remove a ' in an output comment line which threw off a
4842         closing ) that broke the TO3_90 element.
4844 2006-09-13   DJ Delorie * dj AT delorie dot com *
4846         * src/hid/common/actions.c:  * pcjc2 AT cam dot ac dot uk * Patch to
4847         fix bug #1553558, Stack corruption PCB bug in hid_parse_actions
4849 2006-09-04   Dan McMahill * dan AT mcmahill dot net *
4851         * configure, configure.ac, lib/Makefile.am, lib/Makefile.in,
4852         lib/m4lib_to_newlib.sh.in: Go ahead and let configure process the
4853         m4lib_to_newlib script.  Also remove a couple of hardcoded paths in
4854         the same script.
4856 2006-09-03   Dan McMahill * dan AT mcmahill dot net *
4858         * lib/to.inc: Fix up the pads and drill sizes on the TO* packages.
4859         Based on patch [ 1108881 ] "Fix to m4 library hole sizes" by Walter
4860         Fetter Lages.  I added comments containing the actual dimensions
4861         from the JEDEC drawings and comments about how the pad size and
4862         drill size were selected.  Based on the JEDEC drawings I adjusted
4863         some of the drill and pad sizes.  I did not change or examine pin
4864         locations, numbering, or silk.
4866 2006-09-03   Dan McMahill * dan AT mcmahill dot net *
4868         * lib/misc.inc: improve the drill sizes for several footprints.
4869         Changes provided by patch [ 1108881 ] "Fix to m4 library hole sizes"
4870         by Walter Fetter Lages.
4872 2006-09-02   Dan McMahill * dan AT mcmahill dot net *
4874         * src/hid/common/hidinit.c: ensure that derive_default_filename()
4875         always comes back with a valid string even when we don't have a name
4876         for the pcbfile.  This fixes bug [ 1548756 ] "Segfault when
4877         exporting png files" reported by Werner Hoch.
4879 2006-09-01   Dan McMahill * dan AT mcmahill dot net *
4881         * lib/connector.inc: increase PKG_CONNECTOR and PKG_CONNECTOR_DIL
4882         hole size to something more reasonable.
4884 2006-09-01   Dan McMahill * dan AT mcmahill dot net *
4886         * lib/geda.inc: - remove the BRE* footprints.  The required PKG_RECTANGULAR macro
4887           doesn't exist anywhere and I can't figure out what the correct
4888           behaviour should be anyway so rather than propagate a very
4889           questionable footprint name, kill it right here.  - Fix the problem where the ACY*P and RCY*P packages called
4890           non-existant macros.  They now produce the same footprints as the
4891           ACY* and RCY* packages but with a polarity marking.  The suitability
4892           for any particular part number should be still verified before using
4893         them on a board.
4895 2006-09-01   Dan McMahill * dan AT mcmahill dot net *
4897         * lib/misc.inc: expand the PKG_AXIAL_LAY and PKG_RADIAL_CAN macros
4898         to take an extra optional argument.  When set to 1, this optional
4899         argument causes the part to have a "+" by pin 1 and "-" by pin 2.
4900         This was done instead of implementing the missing
4901         PKG_AXIAL_LAY_POLAR and  PKG_RADIAL_CAN_POLAR macros.
4903 2006-09-01   Dan McMahill * dan AT mcmahill dot net *
4905         * lib/m4lib_to_newlib.sh.in: Rather than putting a huge list of
4906         footprints into one index file, break it out by library.
4908 2006-09-01   Dan McMahill * dan AT mcmahill dot net *
4910         * lib/geda.inc: remove unused PKG_DUMMY which did not do anything
4911         anyway
4913 2006-09-01   Dan McMahill * dan AT mcmahill dot net *
4915         * lib/m4lib_to_newlib.sh.in: - put both the index.html file and the broken.html file in the
4916         output directory.  - run pcb-bin from the src build directory to avoid complaints about
4917           not being able to find the font - use .fp as the file extension for footprints - fix up the .png output file names - fix up the links in the index file
4919 2006-09-01   DJ Delorie * dj AT delorie dot com *
4921         * src/action.c: Shift-click replaces element on pcb with element in
4922         buffer.
4924 2006-08-30   DJ Delorie * dj AT delorie dot com *
4926         * doc/actions.texi, doc/pcbfile.texi, doc/version.texi: Regenerate
4927         to add attributes
4929 2006-08-30   DJ Delorie * dj AT delorie dot com *
4931         * src/parse_y.y: Doc typo.
4933 2006-08-30   DJ Delorie * dj AT delorie dot com *
4935         * src/copy.c: Copy attributes when copying element data.
4937 2006-08-30   DJ Delorie * dj AT delorie dot com *
4939         * src/create.c, src/create.h, src/file.c, src/global.h,
4940         src/parse_l.l, src/parse_y.y: Add arbitrary attributes to PCB and
4941         Element types.  Ignore optional flags on Layer types.
4943 2006-08-30   DJ Delorie * dj AT delorie dot com *
4945         * src/draw.c: Remove obsolete comment.
4947 2006-08-29   Dan McMahill * dan AT mcmahill dot net *
4949         * lib/m4lib_to_newlib.sh.in: add the start of a m4lib to newlib
4950         conversion script
4952 2006-08-28   Dan McMahill * dan AT mcmahill dot net *
4954         * Makefile.in, README_FILES/Makefile.in, doc/Makefile.in,
4955         example/Makefile.in, example/libraries/Makefile.in,
4956         lib/Makefile.in, newlib/2_pin_thru-hole_packages/Makefile.in,
4957         newlib/Makefile.in, newlib/analog-devices/Makefile.in,
4958         newlib/burr-brown/Makefile.in, newlib/connectors/Makefile.in,
4959         newlib/crystal/Makefile.in, newlib/cypress/Makefile.in,
4960         newlib/electro-optics/Makefile.in,
4961         newlib/generic_SMD_packages/Makefile.in,
4962         newlib/headers/Makefile.in, newlib/msp430/Makefile.in,
4963         newlib/not_vetted_ingo/Makefile.in, newlib/sockets/Makefile.in,
4964         newlib/tests/Makefile.in, newlib/toko/Makefile.in, src/Makefile.in,
4965         src/icons/Makefile.in, src/script/Makefile.in, tools/Makefile.in,
4966         tutorial/Makefile.in, win32/Makefile.in: regen after the lex/yacc
4967         configure.ac change
4969 2006-08-27   DJ Delorie * dj AT delorie dot com *
4971         * src/hid/lesstif/main.c: Constrain arc start angles to -180..180
4972         degrees.
4974 2006-08-24   DJ Delorie * dj AT delorie dot com *
4976         * src/netlist.c: Fix rats enable/disable code.
4978 2006-08-23   Dan McMahill * dan AT mcmahill dot net *
4980         * configure, configure.ac: error out if yacc or lex could not be
4981         found
4983 2006-08-23   Dan McMahill * dan AT mcmahill dot net *
4985         * doc/version.texi: bump rev after 20060822 branch
4987 2006-08-23   Dan McMahill * dan AT mcmahill dot net *
4989         * configure, configure.ac: bump rev after 20060822 branch
4991 2006-08-23   DJ Delorie * dj AT delorie dot com *
4993         * src/hid/ps/eps.c: When printing as-shown, mirror the image if
4994         we're viewing the solder side.
4996 2006-08-23   DJ Delorie * dj AT delorie dot com *
4998         * src/hid/ps/eps.c: Don't consider off layers for fast mask.  Don't
4999         print paste.
5001 2006-08-22   DJ Delorie * dj AT delorie dot com *
5003         * src/hid/ps/eps.c: Don't print invisible silk.
5005 2006-08-22   Dan McMahill * dan AT mcmahill dot net *
5007         * README.snapshots: add a note about how I test the distcheck target
5008         for the lesstif HID
5010 2006-08-22   DJ Delorie * dj AT delorie dot com *
5012         * src/find.c: Special case: allow vias with exactly zero clearance.
5014 2006-08-22   Dan McMahill * dan AT mcmahill dot net *
5016         * ChangeLog, NEWS, README.snapshots: update for 20060822 snapshot
5018 2006-08-22   DJ Delorie * dj AT delorie dot com *
5020         * src/hid/lesstif/main.c: fill_rect needs the same point-ordering as
5021         draw_rect
5023 2006-08-22   DJ Delorie * dj AT delorie dot com *
5025         * src/change.c: Allow via clearance to be reduced to zero.
5027 2006-08-22   DJ Delorie * dj AT delorie dot com *
5029         * src/draw.c: If a pad/via's clearance is zero, don't attempt to
5030         draw a zero-width clear.
5032 2006-08-21   DJ Delorie * dj AT delorie dot com *
5034         * src/main.c: Add default colors for layers 9..16
5036 2006-08-21   DJ Delorie * dj AT delorie dot com *
5038         * src/file.c: post-initialize PCBs loaded from files.
5040 2006-08-21   DJ Delorie * dj AT delorie dot com *
5042         * src/pcb-menu.res: Let right-mouse do "rotate" for now.
5044 2006-08-21   DJ Delorie * dj AT delorie dot com *
5046         * src/search.c, src/todo: Don't let search find backsilk if
5047         invisible objects are off.
5049 2006-08-21   DJ Delorie * dj AT delorie dot com *
5051         * src/draw.c: Draw via annulii on assembly drawings.
5053 2006-08-18   Dan McMahill * dan AT mcmahill dot net *
5055         * configure, doc/actions.texi, doc/pcbfile.texi: regen
5057 2006-08-18   Dan McMahill * dan AT mcmahill dot net *
5059         * src/action.c, src/global.h, src/undo.c, src/undo.h: add a
5060         Renumber() action which renumbers reference designators and outputs
5061         a "was/is" sort of file which can be used for back annotation if
5062         someone writes a utility to apply those changes to a schematic.  For now Renumber() is still considered somewhat experimental and
5063         hence is not hooked up to the menus yet.
5065 2006-08-15   DJ Delorie * dj AT delorie dot com *
5067         * configure, configure.ac: Add X_CFLAGS to CFLAGS so that Xm/Xm.h
5068         can be found.
5070 2006-08-15   Dan McMahill * dan AT mcmahill dot net *
5072         * src/hid/ps/ps.c: add header for a missing prototype
5074 2006-08-15   Dan McMahill * dan AT mcmahill dot net *
5076         * src/action.c: Apply patch from patch [ 1496742 ] Make 'a' key
5077         (SetSame) work again submitted by Wim Lewis.
5079 2006-08-14   Dan McMahill * dan AT mcmahill dot net *
5081         * configure, configure.ac: when pkg-config fails to find the desired
5082         version of gtk or glib, then print the pkg-config output as part of
5083         the error message.  Suggested in bug # 1507555 by Mark Whitis.
5085 2006-08-14   Dan McMahill * dan AT mcmahill dot net *
5087         * lib/geda.inc: use 0.01 mm instead of 0.05 mm for the roundoff for
5088         01005 footprints because they are so small.  This bumps the gap
5089         between pads just over 6 mils instead of just under 6 mils.
5091 2006-08-11   Dan McMahill * dan AT mcmahill dot net *
5093         * src/hid/lpr/lpr.c: Fix bug [ 1534098 ] Segmentation fault in GTK
5094         print dialog reported by Mark Rages.  Symptom was changing the lpr
5095         command in the gtk dialog box gave an instant crash.
5097 2006-08-10   Dan McMahill * dan AT mcmahill dot net *
5099         * src/Makefile.am, src/Makefile.in: add hid/batch/batch_lists.h to
5100         DISTCLEANFILES
5102 2006-08-10   Dan McMahill * dan AT mcmahill dot net *
5104         * lib/geda.inc: Add 01005 footprints.
5106 2006-08-04   Dan McMahill * dan AT mcmahill dot net *
5108         * src/copy.c: Remove extra calls to Draw().  This greatly speeds up
5109         copy operations.  This is especially true when pasting large blocks
5110         of layout.  Patch supplied by  Tibor Palinkas as patch #1532922.
5112 2006-08-03   DJ Delorie * dj AT delorie dot com *
5114         * src/Makefile.am, src/Makefile.in, src/fontmode.c: Add font editing
5115         mode (FontEdit() and FontSave())
5117 2006-08-03   DJ Delorie * dj AT delorie dot com *
5119         * src/file.c: Use the old style (mil) syntax when saving font info,
5120         if the values permit it, for readability and to save file space.
5122 2006-08-03   DJ Delorie * dj AT delorie dot com *
5124         * src/action.c: Allow New() to take a name, so that the user need
5125         not be prompted during scripts and such.
5127 2006-08-03   DJ Delorie * dj AT delorie dot com *
5129         * src/move.c: When deleting a layer, make sure to zero out the
5130         now-unused slot at the end.
5132 2006-08-02   Dan McMahill * dan AT mcmahill dot net *
5134         * configure, configure.ac: After running PATH_XTRA and checking for
5135         various X libs (Xpm, etc), we need to use $X_LIBS as part of LIBS in
5136         subsequent library tests or we'll have a failure.  This should
5137         address some issues noted recently on one of the gEDA lists and
5138         configuring with lesstif and the png HID's.
5140 2006-08-02   DJ Delorie * dj AT delorie dot com *
5142         * src/Pcb.ad.in, src/Pcb.ad.raw, src/Pcb.ad.small, src/action.c,
5143         src/autoroute.c, src/buffer.c, src/create.c, src/crosshair.c,
5144         src/data.c, src/dev_rs274x.c, src/djopt.c, src/draw.c, src/error.c,
5145         src/file.c, src/find.c, src/hid/gtk/gtkhid-main.c,
5146         src/hid/lesstif/main.c, src/line.c, src/misc.c, src/mtspace.h,
5147         src/mymem.c, src/netlist.c, src/output.c, src/parse_l.l,
5148         src/parse_y.y, src/polygon.c, src/puller.c, src/rats.c,
5149         src/rtree.c, src/rubberband.c, src/search.c, src/select.c,
5150         src/undo.c: spelling fixes from Larry.
5152 2006-08-02   DJ Delorie * dj AT delorie dot com *
5154         * src/hid/ps/ps.c, src/print.c, src/print.h: When the drill list
5155         fits "naturally", no offset is added, which makes me happy.  When
5156         the drill list would otherwise fall off the left edge of the paper,
5157         just enough offset is added to keep that from happening.
5159 2006-08-02   DJ Delorie * dj AT delorie dot com *
5161         * src/hid/lesstif/netlist.c: Allow extended selections.
5163 2006-08-01   Dan McMahill * dan AT mcmahill dot net *
5165         * README.cvs: - Note that automake-1.7 and older are too old.  - Add a pointer to the README.snapshot document
5167 2006-07-26   DJ Delorie * dj AT delorie dot com *
5169         * src/file.c: Enable loaded netlists by default.
5171 2006-07-26   DJ Delorie * dj AT delorie dot com *
5173         * src/hid/lesstif/lesstif.h, src/hid/lesstif/main.c,
5174         src/hid/lesstif/menu.c, src/pcb-menu.res: Add the ability to
5175         user-configure mouse actions.
5177 2006-07-24   DJ Delorie * dj AT delorie dot com *
5179         * src/hid/lesstif/lesstif.h, src/hid/lesstif/main.c,
5180         src/hid/lesstif/menu.c: Add support for multi-key hotkeys, via
5181         <Keys>abc syntax for a/b/c sequence.
5183 2006-07-23   DJ Delorie * dj AT delorie dot com *
5185         * src/hid/lesstif/dialogs.c: use "top" and "bottom" to describe the
5186         side flags, instead of using "solder" and "component", which are
5187         common layer names.
5189 2006-07-20   Harry Eaton * haceaton AT users dot sourceforge dot net *
5191         * src/autoroute.c, src/mtspace.c, src/rtree.c: Various improvements
5192         to speed up auto-routing. Mainly optimizing the r-tree searching
5193         even more.
5195         ----------------------------------------------------------------------
5197 2006-07-14   DJ Delorie * dj AT delorie dot com *
5199         * src/crosshair.c, src/hid/gtk/gtkhid-main.c,
5200         src/hid/lesstif/main.c: Fix draw_rect vs board flipping bug.
5202 2006-07-14   DJ Delorie * dj AT delorie dot com *
5204         * src/autoplace.c, src/djopt.c, src/main.c, src/move.c, src/mymem.c: 
5205         Minor patches from Larry.
5207 2006-07-13   Harry Eaton * haceaton AT users dot sourceforge dot net *
5209         * src/autoroute.c, src/rats.c: fix some autorouter bugs and improve
5210         ability to round around non-manhattan lines
5212         ----------------------------------------------------------------------
5214 2006-07-10   Dan McMahill * dan AT mcmahill dot net *
5216         * src/Makefile.am, src/Makefile.in: remove circular dependency which
5217         breaks non-GNU make programs.
5219 2006-07-08   Dan McMahill * dan AT mcmahill dot net *
5221         * INSTALL: summarize the dependencies for building pcb
5223 2006-07-08   Dan McMahill * dan AT mcmahill dot net *
5225         * INSTALL: fix a typo
5227 2006-07-08   Dan McMahill * dan AT mcmahill dot net *
5229         * README: remove some redundant and out of date notes
5231 2006-07-07   DJ Delorie * dj AT delorie dot com *
5233         * src/misc.c: Fix minor rounding bug in c_dtostr().
5235 2006-07-07   DJ Delorie * dj AT delorie dot com *
5237         * src/misc.c: Fix layer group parsing code.  Avoid trailing colon in
5238         group string.
5240 2006-07-04   Dan McMahill * dan AT mcmahill dot net *
5242         * src/hid/bom/bom.c, src/hid/common/hidinit.c,
5243         src/hid/gerber/gerber.c, src/hid/gtk/gui-top-window.c,
5244         src/hid/hidint.h, src/hid/png/png.c, src/hid/ps/eps.c,
5245         src/hid/ps/ps.c: Apply a patch from Larry Doolittle.  Refactors filename handling code common to the file export HIDs
5246         (bom, gerber, png, eps, ps).  The png code had one feature (last_made_filename) that was missing
5247         in the others.  This refactoring brings all the HIDs to feature
5248         parity, which lets pcb -x bom --bomfile=foo.txt bar.pcb work as expected.  The old code ignores the command line flag, and
5249         writes the bom to bar.bom.  Likewise for .xy, .gbr, .eps, and .ps
5250         files.  Also fixes a couple of spelling errors.
5252 2006-07-04   Dan McMahill * dan AT mcmahill dot net *
5254         * doc/actions.texi, doc/pcbfile.texi, src/Makefile.in,
5255         src/action.c, src/create.c, src/dev_rs274x.c, src/drill.c,
5256         src/file.c, src/find.c, src/mymem.c, src/mymem.h, src/parse_l.l,
5257         src/rats.c, src/remove.c, src/undo.c: Apply a patch from Larry
5258         Doolittle that switches from the MyFree() function to the new
5259         MYFREE() macro to avoid strict aliasing violations.
5261 2006-06-26   DJ Delorie * dj AT delorie dot com *
5263         * src/djopt.c: Don't delete vias with thermals.  Try to split
5264         diagonal lines at pins and vias.
5266 2006-06-25   DJ Delorie * dj AT delorie dot com *
5268         * src/todo: MoveLayers cleanup tasks - thermals, pips, undo
5270 2006-06-22   Dan McMahill * dan AT mcmahill dot net *
5272         * README.cvs: add a comment about needing the png HID for building
5273         docs from cvs
5275 2006-06-21   DJ Delorie * dj AT delorie dot com *
5277         * src/hid/lesstif/main.c: Account for board flipping when zooming.
5279 2006-06-11   DJ Delorie * dj AT delorie dot com *
5281         * src/action.c: Remove obsolete ActionSwapSides()
5283 2006-06-11   DJ Delorie * dj AT delorie dot com *
5285         * src/hid/lesstif/main.c, src/pcb-menu.res: Merge lesstif's Flip()
5286         action into SwapSides to avoid conflict with core Flip().
5288 2006-06-11   DJ Delorie * dj AT delorie dot com *
5290         * src/hid/lesstif/menu.c: Print actions called when verbose.
5292 2006-06-10   DJ Delorie * dj AT delorie dot com *
5294         * globalconst.h, src/action.c, src/autoplace.c, src/autoroute.c,
5295         src/buffer.c, src/copy.c, src/create.c, src/create.h,
5296         src/crosshair.c, src/data.h, src/djopt.c, src/draw.c, src/file.c,
5297         src/find.c, src/global.h, src/hid/common/extents.c,
5298         src/hid/common/flags.c, src/hid/gerber/gerber.c,
5299         src/hid/gtk/gtkhid-main.c, src/hid/gtk/gui-config.c,
5300         src/hid/gtk/gui-top-window.c, src/hid/gtk/gui.h,
5301         src/hid/lesstif/dialogs.c, src/hid/lesstif/main.c,
5302         src/hid/lesstif/menu.c, src/hid/png/png.c, src/hid/ps/eps.c,
5303         src/hid/ps/ps.c, src/line.c, src/macro.h, src/main.c, src/misc.c,
5304         src/misc.h, src/move.c, src/move.h, src/parse_y.y,
5305         src/pcb-menu.res, src/polygon.c, src/print.c, src/rats.c,
5306         src/rtree.c, src/rubberband.c, src/search.c, src/undo.c, src/undo.h: 
5307         flexible max_layers
5309 2006-06-09   DJ Delorie * dj AT delorie dot com *
5311         * src/hid/lesstif/main.c: Compensate for board flipping in the
5312         panning code.
5314 2006-06-06   DJ Delorie * dj AT delorie dot com *
5316         * src/hid/gerber/gerber.c: Fix rounding bug when collecting drill
5317         sizes.
5319 2006-06-03   DJ Delorie * dj AT delorie dot com *
5321         * src/djopt.c: Fix logic a bit, don't try to move pins.
5323 2006-06-03   DJ Delorie * dj AT delorie dot com *
5325         * src/pcb-menu.res: Syntax fix for DisperseElements()
5327 2006-05-29   DJ Delorie * dj AT delorie dot com *
5329         * src/todo: Remove lesstif board flipping item.
5331 2006-05-29   DJ Delorie * dj AT delorie dot com *
5333         * src/hid/lesstif/main.c, src/pcb-menu.res: Add Flip action, both
5334         vertical and horizontal.
5336 2006-05-29   DJ Delorie * dj AT delorie dot com *
5338         * src/djopt.c: Adjust endpoints of lines that don't quite reach
5339         adjoining lines.
5341 2006-05-21   DJ Delorie * dj AT delorie dot com *
5343         * src/hid/lesstif/menu.c, src/report.c: Report on locked objects if
5344         there are no unlocked objects under the cursor.  Save the cursor
5345         position even if we don't initially need it, in case we call an
5346         action that does.
5348 2006-05-21   DJ Delorie * dj AT delorie dot com *
5350         * src/hid/gerber/gerber.c: Reset layer value cache before we
5351         shortcut for counting apertures.
5353 2006-05-20   DJ Delorie * dj AT delorie dot com *
5355         * src/draw.c, src/hid.h, src/hid/common/extents.c,
5356         src/hid/gerber/gerber.c, src/hid/gtk/gtkhid-main.c,
5357         src/hid/lesstif/main.c, src/hid/png/png.c, src/hid/ps/eps.c,
5358         src/hid/ps/ps.c: Split plated and unplated drills in gerber output.
5360 2006-05-20   DJ Delorie * dj AT delorie dot com *
5362         * src/hid/gerber/gerber.c: Name internal gerber layers sanely.
5364 2006-05-20   DJ Delorie * dj AT delorie dot com *
5366         * src/hid/gerber/gerber.c: Change gerber names to be compatible with
5367         pre-hid.
5369 2006-05-20   DJ Delorie * dj AT delorie dot com *
5371         * src/const.h, src/search.c: Ignore locked objects unless
5372         LOCKED_TYPE is passed (lock tool).
5374 2006-05-16   Dan McMahill * dan AT mcmahill dot net *
5376         * configure, configure.ac: add the batch HID to the list of gui HIDs
5377         in the help output
5379 2006-05-15   DJ Delorie * dj AT delorie dot com *
5381         * src/hid/gtk/gui-top-window.c: Fig typo in ChangeDrillSize menu.
5383 2006-05-15   DJ Delorie * dj AT delorie dot com *
5385         * src/hid/batch/batch.c: Fix test for interactiveness.
5387 2006-05-15   DJ Delorie * dj AT delorie dot com *
5389         * src/Makefile.am, src/Makefile.in, src/hid/batch/batch.c,
5390         src/hid/batch/hid.conf: Add batch-mode HID.
5392 2006-05-14   DJ Delorie * dj AT delorie dot com *
5394         * src/crosshair.c: Fix drawing of box around text items in buffer.
5396 2006-05-14   DJ Delorie * dj AT delorie dot com *
5398         * src/draw.c: Add support for drawing/exporting paste layers.
5400 2006-05-01   Dan McMahill * dan AT mcmahill dot net *
5402         * doc/actions.texi, doc/version.texi, src/action.c: add Message()
5403         action
5405 2006-04-30   Dan McMahill * dan AT mcmahill dot net *
5407         * src/buffer.c: fix a bug where mirroring a buffer with only traces
5408         triggered the "can't mirror a buffer with text" if there was text
5409         anywhere in the layout.  Patch provided as part of bug #1467446.
5411 2006-04-29   Bill Wilson * billw2 AT users dot sourceforge dot net *
5413         * src/hid/gtk/gtkhid-main.c, src/hid/gtk/gui-dialog.c,
5414         src/hid/gtk/gui-top-window.c: Update status line after menu Save
5415         layout and Save layout as.  Change file select response button from "Open" to "Ok".  Don't try to Save layout when user hits Cancel and file name is
5416         NULL.
5418 2006-04-29   Bill Wilson * billw2 AT users dot sourceforge dot net *
5420         * src/hid/gtk/gui-output-events.c, src/hid/gtk/gui-utils.c: Couple
5421         of small typo bugs: a missing "break" and needed -1 arg to size
5422         request.
5424 2006-04-28   Dan McMahill * dan AT mcmahill dot net *
5426         * src/action.c: prevent segfaults when trying to undo in the middle
5427         of drawing ratlines.  Problem noted by Daniel Wisehart, fixed by me.
5429 2006-04-28   DJ Delorie * dj AT delorie dot com *
5431         * src/file.c, src/misc.c, src/misc.h, src/parse_l.l: Use
5432         locale-independent strtod and dtostr functions.
5434 2006-04-27   Dan McMahill * dan AT mcmahill dot net *
5436         * config.h.in: regen
5438 2006-04-27   Dan McMahill * dan AT mcmahill dot net *
5440         * INSTALL: minor updates, mention gd-2.0.23 as having been used
5442 2006-04-27   Dan McMahill * dan AT mcmahill dot net *
5444         * configure, configure.ac: if gdlib-config is not found, try and
5445         just check for -lgd on the off chance that it works.  The user in
5446         this case may have to add things like -lpng to their LDFLAGS
5447         variable in the environment or just update to a newer version of
5448         gdlib.  gdlib-config has been around for at least a few years
5449         anyway.
5451 2006-04-26   Dan McMahill * dan AT mcmahill dot net *
5453         * README_FILES/Makefile.in: remove obsolete README file
5455 2006-04-26   Dan McMahill * dan AT mcmahill dot net *
5457         * INSTALL: bring the install docs up to date
5459 2006-04-26   Dan McMahill * dan AT mcmahill dot net *
5461         * README-GTK_PORT, README_FILES/INSTALL, README_FILES/Makefile.am,
5462         README_FILES/Makefile.in: remove obsolete README file
5464 2006-04-25   Dan McMahill * dan AT mcmahill dot net *
5466         * configure, configure.ac: complain if the png HID has been
5467         requested but all formats disabled
5469 2006-04-24   Dan McMahill * dan AT mcmahill dot net *
5471         * src/hid/gtk/gui-top-window.c: do not crash if the input pipe
5472         terminates when using --listen
5474 2006-04-24   Dan McMahill * dan AT mcmahill dot net *
5476         * src/hid/lesstif/main.c: remove a debugging printf
5478 2006-04-24   DJ Delorie * dj AT delorie dot com *
5480         * src/global.h: Comment tweak.
5482 2006-04-24   DJ Delorie * dj AT delorie dot com *
5484         * src/global.h: Define on-board objects in terms of base types.
5486 2006-04-23   Dan McMahill * dan AT mcmahill dot net *
5488         * src/buffer.c: when smashing the pastebuffer, don't set the pure
5489         hole flag on the vias unless is was set on the original pin.
5490         Reported by Levente Kovacs on geda-user.
5492 2006-04-23   Dan McMahill * dan AT mcmahill dot net *
5494         * doc/pcb.texi: update newlib creation section for the latest GTK
5495         HID.  Addresses bug 1473640.
5497 2006-04-22   Dan McMahill * dan AT mcmahill dot net *
5499         * NEWS: add 20060422 release notes
5501 2006-04-22   Dan McMahill * dan AT mcmahill dot net *
5503         * README.snapshots: update for 20060422
5505 2006-04-22   Dan McMahill * dan AT mcmahill dot net *
5507         * ChangeLog: update for 20060422 snapshot
5509 2006-04-21   Dan McMahill * dan AT mcmahill dot net *
5511         * src/hid/gtk/gui-config.c: Comment out locale.h since the code
5512         which needed that was also commented out.  Fixes builds on solaris
5513         with sunpro and the gtk HID.
5515 2006-04-21   Dan McMahill * dan AT mcmahill dot net *
5517         * src/macro.h: protect some GNU C specific stuff with #ifdef
5518         __GNUC__
5520 2006-04-21   Dan McMahill * dan AT mcmahill dot net *
5522         * src/hid/gtk/gui-utils.c: change from NONE_PRESSED to
5523         NO_BUTTON_PRESSED since the former is not part of the ButtonState
5524         enum while the latter is.
5526 2006-04-21   Dan McMahill * dan AT mcmahill dot net *
5528         * src/hid/lesstif/main.c: comment out with #if 0 the code related to
5529         lesstif_options and lesstif_resources since those were both empty.
5530         With this change pcb should build correctly on 64-bit Irix-6.5 with
5531         version 7.41 of the MIPSpro compilers.  There are still a handful of
5532         compiler warnings to investigate.
5534 2006-04-20   DJ Delorie * dj AT delorie dot com *
5536         * doc/actions.texi, src/hid.h, src/hid/common/actions.c,
5537         src/hid/lesstif/dialogs.c, src/hid/lesstif/library.c,
5538         src/hid/lesstif/main.c, src/hid/lesstif/menu.c,
5539         src/hid/lesstif/netlist.c, src/hid/lesstif/styles.c: Document
5540         lesstif hid actions.
5542 2006-04-20   Dan McMahill * dan AT mcmahill dot net *
5544         * src/box.h, src/find.c: rely on the autoconf test for inline
5545         instead of using our own based on __GNUC__.  This will let other
5546         non-gcc C99 compilers take advantage of inline.
5548 2006-04-19   Dan McMahill * dan AT mcmahill dot net *
5550         * config.h.in, configure, configure.ac, doc/actions.texi,
5551         doc/version.texi, src/Makefile.am, src/Makefile.in, src/djopt.c,
5552         src/draw.c, src/file.c, src/flags.c, src/hid/lesstif/dialogs.c,
5553         src/hid/lesstif/library.c, src/hid/lesstif/main.c,
5554         src/hid/lesstif/menu.c, src/hid/lesstif/netlist.c,
5555         src/hid/lesstif/styles.c, src/hid/lesstif/xincludes.h, src/misc.c,
5556         src/parse_y.y, src/strflags.c, src/strflags.h: - add checks for sys/param.h and compiler understanding of 'inline'.  - remove a handful of warnings which showed up with the sunpro
5557         compiler.  - move the X11 includes into a header where they can be included in
5558           a way which keeps them from messing up the namespace of the rest of   pcb.  Fixes some obscure warnings from sunpro.
5560 2006-04-19   Dan McMahill * dan AT mcmahill dot net *
5562         * src/hid/png/png.c: get this to properly link when --disable-gif is
5563         used and the installed libgd does not have gif support.
5565 2006-04-19   DJ Delorie * dj AT delorie dot com *
5567         * src/hid/ps/ps.c: Add --psfade option.
5569 2006-04-18   Bill Wilson * billw2 AT users dot sourceforge dot net *
5571         * src/command.c, src/data.c: Clean out Gtk HID related FIXMEs
5573 2006-04-18   Bill Wilson * billw2 AT users dot sourceforge dot net *
5575         * src/draw.c: Clean out Gtk HID related FIXMEs.  Also old background
5576         image code which is now done in the Gtk and Lesstif HIDs.
5578 2006-04-18   Bill Wilson * billw2 AT users dot sourceforge dot net *
5580         * src/main.c, src/set.c: Clean out FIXMEs specific to the Gtk HID.
5582 2006-04-18   Bill Wilson * billw2 AT users dot sourceforge dot net *
5584         * src/misc.c, src/misc.h: Remove Gtk HID specific
5585         build_route_string() function.
5587 2006-04-18   Bill Wilson * billw2 AT users dot sourceforge dot net *
5589         * src/hid/gtk/gui-config.c, src/hid/gtk/gui-dialog-size.c,
5590         src/hid/gtk/gui-top-window.c: Fix route style "Save as default" bug.  Update status line when new route style selected.
5592 2006-04-17   DJ Delorie * dj AT delorie dot com *
5594         * doc/actions.texi, doc/extract-docs, doc/pcb.texi,
5595         doc/pcbfile.texi, doc/version.texi, src/const.h, src/hid.h,
5596         src/hid/common/actions.c, src/hid/lesstif/main.c, src/parse_y.y: 
5597         Remove all the prev-next-up links, reformat all the texi files to
5598         allow for automatic structure generation.  Add helper hooks in the
5599         extractor to let the source files control what types of nodes and
5600         document structure is used for each category.  Auto-create nodes and
5601         document substructure for each key within each category.
5603 2006-04-17   Bill Wilson * billw2 AT users dot sourceforge dot net *
5605         * src/hid/gtk/gui-config.c, src/hid/gtk/gui-top-window.c,
5606         src/hid/gtk/gui-utils.c, src/hid/gtk/gui.h: For the Gtk HID, add an
5607         alternate vertical window layout mode to help on lower vertical
5608         resolution displays.
5610 2006-04-17   DJ Delorie * dj AT delorie dot com *
5612         * src/netlist.c: Include sys/types.h so that regex compiles on more
5613         hosts.
5615 2006-04-16   Bill Wilson * billw2 AT users dot sourceforge dot net *
5617         * src/hid/gtk/gtkhid-main.c, src/hid/gtk/gui-command-window.c,
5618         src/hid/gtk/gui-keyref-window.c, src/hid/gtk/gui-library-window.c,
5619         src/hid/gtk/gui-log-window.c, src/hid/gtk/gui-netlist-window.c,
5620         src/hid/gtk/gui-top-window.c, src/hid/gtk/gui.h: Fix soldermask draw
5621         while TAB view from solder side.  Don't raise windows if already shown so library & netlist window
5622         won't grab focus.  Focus can still be grabbed if an already shown
5623         window is reshown via the top menu bar.  Not sure yet how to handle
5624         this case.
5626 2006-04-16   Dan McMahill * dan AT mcmahill dot net *
5628         * src/hid/png/png.c: switch the output scaling to default to 100 dpi
5629         instead of fixing the max dimension at 800 pixels.  This at makes
5630         the default be a sort of to scale (for 100 dpi monitors it will be
5631         to scale) image.
5633 2006-04-15   DJ Delorie * dj AT delorie dot com *
5635         * doc/actions.texi, src/report.c: Document actions in report.c.
5637 2006-04-15   DJ Delorie * dj AT delorie dot com *
5639         * doc/Makefile.am, doc/Makefile.in, doc/actions.texi,
5640         doc/puller.pcb, doc/version.texi, src/puller.c: Document the puller
5641         action.
5643 2006-04-15   Bill Wilson * billw2 AT users dot sourceforge dot net *
5645         * src/hid/gtk/gui-output-events.c: Make ghid_get_coords() x value
5646         account for side viewed (when using TAB).
5648 2006-04-14   Bill Wilson * billw2 AT users dot sourceforge dot net *
5650         * src/hid/gtk/gtkhid-main.c, src/hid/gtk/gui-top-window.c,
5651         src/hid/gtk/gui.h: Support --bg-image in the Gtk HID.  Images can be
5652         jpg, png, gif, etc. as supported by the Gdk installation.  Zooming gets slow at higher zoom levels, but I can address that
5653         later when I have more time.
5655 2006-04-14   DJ Delorie * dj AT delorie dot com *
5657         * src/global.h: Make sure the Message and return are in the same
5658         scope.
5660 2006-04-14   Dan McMahill * dan AT mcmahill dot net *
5662         * src/hid/gtk/gui-top-window.c: make sure we set the default icon
5663         _before_ any windows are created
5665 2006-04-14   Dan McMahill * dan AT mcmahill dot net *
5667         * configure, configure.ac: bump rev after 20060414 branch
5669 2006-04-14   Dan McMahill * dan AT mcmahill dot net *
5671         * NEWS: 20060414 release notes
5673 2006-04-14   Dan McMahill * dan AT mcmahill dot net *
5675         * ChangeLog: update for 20060414 snapshot
5677 2006-04-14   Dan McMahill * dan AT mcmahill dot net *
5679         * README.snapshots: update the instructions a bit
5681 2006-04-14   Dan McMahill * dan AT mcmahill dot net *
5683         * doc/actions.texi: regen
5685 2006-04-14   Dan McMahill * dan AT mcmahill dot net *
5687         * Makefile.am, Makefile.in: fix a distcheck problem
5689 2006-04-14   DJ Delorie * dj AT delorie dot com *
5691         * src/hid/lesstif/main.c: Add --bg-image option to lesstif hid to
5692         load a background image.
5694 2006-04-13   Dan McMahill * dan AT mcmahill dot net *
5696         * src/hid/gtk/gui-top-window.c: on win32, figure out the path to the
5697         installed package so we can set the newlib directory.
5699 2006-04-13   Dan McMahill * dan AT mcmahill dot net *
5701         * src/hid/gtk/gtkhid-main.c: add missing return value
5703 2006-04-13   Dan McMahill * dan AT mcmahill dot net *
5705         * src/compat.c: add a (lame) random() replacement
5707 2006-04-13   Dan McMahill * dan AT mcmahill dot net *
5709         * src/autoplace.c, src/strflags.c: add compat.h header for missing
5710         system functions
5712 2006-04-13   Dan McMahill * dan AT mcmahill dot net *
5714         * Makefile.am, Makefile.in, README.win32: add a win32 README file
5716 2006-04-13   Dan McMahill * dan AT mcmahill dot net *
5718         * src/Makefile.am, src/Makefile.in: add a dependency on the icon
5719         resource object if this is win32
5721 2006-04-13   Dan McMahill * dan AT mcmahill dot net *
5723         * win32/Makefile.in: add missing file
5725 2006-04-13   Dan McMahill * dan AT mcmahill dot net *
5727         * : add generated icon file
5729 2006-04-13   Dan McMahill * dan AT mcmahill dot net *
5731         * Makefile.am, Makefile.in: add win32 to SUBDIRS
5733 2006-04-13   Dan McMahill * dan AT mcmahill dot net *
5735         * win32/Makefile.am, win32/Xdefaults.tgif: add a tgif Xdefaults file
5736         needed for generating the correct XPM version
5738 2006-04-13   Dan McMahill * dan AT mcmahill dot net *
5740         * win32/pcb_icon_big.obj, win32/pcb_icon_med.obj,
5741         win32/pcb_icon_sml.obj: replace wcalc icons with placeholder pcb
5742         icons
5744 2006-04-13   Dan McMahill * dan AT mcmahill dot net *
5746         * Makefile.in, README_FILES/Makefile.in, configure, configure.ac,
5747         doc/Makefile.in, example/Makefile.in,
5748         example/libraries/Makefile.in, lib/Makefile.in,
5749         newlib/2_pin_thru-hole_packages/Makefile.in, newlib/Makefile.in,
5750         newlib/analog-devices/Makefile.in, newlib/burr-brown/Makefile.in,
5751         newlib/connectors/Makefile.in, newlib/crystal/Makefile.in,
5752         newlib/cypress/Makefile.in, newlib/electro-optics/Makefile.in,
5753         newlib/generic_SMD_packages/Makefile.in,
5754         newlib/headers/Makefile.in, newlib/msp430/Makefile.in,
5755         newlib/not_vetted_ingo/Makefile.in, newlib/sockets/Makefile.in,
5756         newlib/tests/Makefile.in, newlib/toko/Makefile.in, src/Makefile.am,
5757         src/Makefile.in, src/icons/Makefile.in, src/script/Makefile.in,
5758         tools/Makefile.in, tutorial/Makefile.in: check for a few tools used
5759         to regenerate windows icons
5761 2006-04-13   Dan McMahill * dan AT mcmahill dot net *
5763         * src/error.c, src/file.c, src/find.c, src/main.c, src/misc.c,
5764         win32/build_pcb: add a few more checks to let this build under
5765         cygwin/mingw
5767 2006-04-13   Dan McMahill * dan AT mcmahill dot net *
5769         * config.h.in, configure, configure.ac: check for getcwd()
5771 2006-04-13   Dan McMahill * dan AT mcmahill dot net *
5773         * src/hid/gtk/pcb.rc: add windres file for win32 icons
5775 2006-04-13   Dan McMahill * dan AT mcmahill dot net *
5777         * config.h.in, configure, configure.ac: one more header check
5779 2006-04-13   Dan McMahill * dan AT mcmahill dot net *
5781         * config.guess, config.sub: add some new configure related files
5783 2006-04-13   Dan McMahill * dan AT mcmahill dot net *
5785         * src/Makefile.am, src/Makefile.in: add stuff to compile in icons
5786         for win32
5788 2006-04-13   Dan McMahill * dan AT mcmahill dot net *
5790         * Makefile.in, README_FILES/Makefile.in, config.h.in, configure,
5791         configure.ac, doc/Makefile.in, example/Makefile.in,
5792         example/libraries/Makefile.in, lib/Makefile.in,
5793         newlib/2_pin_thru-hole_packages/Makefile.in, newlib/Makefile.in,
5794         newlib/analog-devices/Makefile.in, newlib/burr-brown/Makefile.in,
5795         newlib/connectors/Makefile.in, newlib/crystal/Makefile.in,
5796         newlib/cypress/Makefile.in, newlib/electro-optics/Makefile.in,
5797         newlib/generic_SMD_packages/Makefile.in,
5798         newlib/headers/Makefile.in, newlib/msp430/Makefile.in,
5799         newlib/not_vetted_ingo/Makefile.in, newlib/sockets/Makefile.in,
5800         newlib/tests/Makefile.in, newlib/toko/Makefile.in, src/Makefile.in,
5801         src/compat.c, src/compat.h, src/file.c, src/hid/gerber/gerber.c,
5802         src/icons/Makefile.in, src/misc.c, src/print.c,
5803         src/script/Makefile.in, tools/Makefile.in, tutorial/Makefile.in: Add
5804         a couple more configure checks for functions (gethostname and
5805         password related functions) and headers which may not be present on
5806         win32.  This should be enough to get things to compile under cygwin
5807         although there are still runtime issues.
5809 2006-04-12   Dan McMahill * dan AT mcmahill dot net *
5811         * win32/Makefile.am, win32/Readme.txt, win32/build_pcb,
5812         win32/pcb.nsi.in, win32/pcb_icon_big.obj, win32/pcb_icon_med.obj,
5813         win32/pcb_icon_sml.obj: Add some stuff to help build under win32.
5814         Note:  win32 support is not finished and PCB does not yet work
5815         correctly under win32, but this is some progress.
5817 2006-04-12   Dan McMahill * dan AT mcmahill dot net *
5819         * src/error.c, src/error.h, src/hid.h, src/hid/common/hidnogui.c,
5820         src/hid/gtk/gui-log-window.c, src/hid/gtk/gui.h,
5821         src/hid/lesstif/dialogs.c, src/hid/lesstif/main.c: const-ify the log
5822         message functions
5824 2006-04-12   Dan McMahill * dan AT mcmahill dot net *
5826         * src/hid/gtk/gtkhid-main.c: add the About action
5828 2006-04-12   Dan McMahill * dan AT mcmahill dot net *
5830         * src/action.c, src/global.h, src/vendor.c: use AFAIL() when an
5831         action fails due to a syntax error
5833 2006-04-12   DJ Delorie * dj AT delorie dot com *
5835         * src/hid/ps/eps.c: Determine when we need to use the complex erase
5836         logic, and when we can just paint white.  Painting white is a LOT
5837         faster, and avoids rasterization in ps2pdf.
5839 2006-04-12   Dan McMahill * dan AT mcmahill dot net *
5841         * doc/version.texi: add thermals to glossary
5843 2006-04-12   Dan McMahill * dan AT mcmahill dot net *
5845         * doc/pcb.texi: add thermal to the glossary
5847 2006-04-12   Dan McMahill * dan AT mcmahill dot net *
5849         * doc/Makefile.am, doc/Makefile.in: increase resolution of PDFs of
5850         drawings.  72dpi looked pretty bad on the thermal drawing
5852 2006-04-12   Dan McMahill * dan AT mcmahill dot net *
5854         * doc/Makefile.am, doc/Makefile.in: add thermal drawing
5856 2006-04-12   Dan McMahill * dan AT mcmahill dot net *
5858         * doc/thermal.pcb: change name of board
5860 2006-04-12   Dan McMahill * dan AT mcmahill dot net *
5862         * doc/thermal.pcb: add a drawing showing what a thermal relief looks
5863         like
5865 2006-04-12   Dan McMahill * dan AT mcmahill dot net *
5867         * doc/database.txt, doc/ideas/database.txt, doc/ideas/keepouts.txt,
5868         doc/keepouts.txt: move these to an ideas subdirectory to hopefully
5869         more clearly indicate that not only are these not implemented yet
5870         but that they are not even certain to ever be implemented.
5872 2006-04-12   DJ Delorie * dj AT delorie dot com *
5874         * doc/actions.texi, doc/version.texi, src/netlist.c: Document
5875         actions in netlist.c
5877 2006-04-12   Dan McMahill * dan AT mcmahill dot net *
5879         * doc/actions.texi, src/action.c: add support for units and relative
5880         coordinates in PasteBuffer(ToLayout)
5882 2006-04-12   Dan McMahill * dan AT mcmahill dot net *
5884         * doc/database.txt, doc/keepouts.txt: add two documents in progress
5885         describing a plan for future work
5887 2006-04-11   Dan McMahill * dan AT mcmahill dot net *
5889         * doc/actions.texi, src/action.c, src/global.h: Add a "ToLayout"
5890         option for the PasteBuffer() action.  You can now do things like
5891         PasteBuffer(ToLayout, 10000, 200000) to paste from the current
5892         buffer Also add a DumpLibrary() action.
5894 2006-04-11   DJ Delorie * dj AT delorie dot com *
5896         * doc/actions.texi, doc/extract-docs, src/action.c, src/command.c: 
5897         Document actions in command.c.
5899 2006-04-11   Dan McMahill * dan AT mcmahill dot net *
5901         * lib/crystal.list, lib/crystal.m4, lib/generic.list,
5902         lib/generic.m4, lib/resistor_0.25W.list, lib/resistor_array.list,
5903         lib/texas_inst_voltage_reg.m4, lib/transistor.m4: - add a missing description and move some footprints from the wrong
5904         .list file to the correct .list file to be able to pick up the
5905         descriptions and parameters from the corresponding .m4 file.  - all of the m4 libs should at least be correct in the sense that
5906         the pieces are all there and they all run through m4 correctly.
5907         They have not been verified any more for correctness, but this is
5908         progress.
5910 2006-04-11   DJ Delorie * dj AT delorie dot com *
5912         * src/print.c, src/report.c: Print correct symbol counts for drills
5913         on fab drawing.
5915 2006-04-11   Dan McMahill * dan AT mcmahill dot net *
5917         * Makefile.in, README_FILES/Makefile.in, example/Makefile.in,
5918         example/libraries/Makefile.in, lib/Makefile.in,
5919         newlib/2_pin_thru-hole_packages/Makefile.in, newlib/Makefile.in,
5920         newlib/analog-devices/Makefile.in, newlib/burr-brown/Makefile.in,
5921         newlib/connectors/Makefile.in, newlib/crystal/Makefile.in,
5922         newlib/cypress/Makefile.in, newlib/electro-optics/Makefile.in,
5923         newlib/generic_SMD_packages/Makefile.in,
5924         newlib/headers/Makefile.in, newlib/msp430/Makefile.in,
5925         newlib/not_vetted_ingo/Makefile.in, newlib/sockets/Makefile.in,
5926         newlib/tests/Makefile.in, newlib/toko/Makefile.in, src/Makefile.in,
5927         src/icons/Makefile.in, src/script/Makefile.in, tools/Makefile.in,
5928         tutorial/Makefile.in: regen (after checking for perl)
5930 2006-04-11   Dan McMahill * dan AT mcmahill dot net *
5932         * doc/actions.texi, doc/version.texi, src/action.c, src/select.c,
5933         src/select.h: - for the Select(*ByName) action, allow a 2nd argument to specify
5934         the name and only use the gui dialog box if the 2nd argument is not
5935         specified.  - Add *ByName options for the Unselect() action.
5937 2006-04-11   Dan McMahill * dan AT mcmahill dot net *
5939         * src/hid/gtk/gtkhid-main.c: garbage collect some printf output
5941 2006-04-11   Dan McMahill * dan AT mcmahill dot net *
5943         * src/hid/gtk/gui-top-window.c: Fix bug [ 1462380 ] saving buffer
5944         elemnts to file does nothing.
5946 2006-04-11   Dan McMahill * dan AT mcmahill dot net *
5948         * configure, configure.ac, doc/Makefile.am, doc/Makefile.in: When
5949         building docs, look for a perl to use.  This will let the user set
5950         PERL in their environment and have configure pick it up.
5952 2006-04-11   Harry Eaton * haceaton AT users dot sourceforge dot net *
5954         * src/find.c: turn off debugging by default
5956         ----------------------------------------------------------------------
5958 2006-04-11   Harry Eaton * haceaton AT users dot sourceforge dot net *
5960         * src/find.c: fixed list overflow with element connection listing
5962         ----------------------------------------------------------------------
5964 2006-04-11   Harry Eaton * haceaton AT users dot sourceforge dot net *
5966         * src/find.c: added overflow error reporting to the ADD* routines
5968         ----------------------------------------------------------------------
5970 2006-04-10   Harry Eaton * haceaton AT users dot sourceforge dot net *
5972         * src/find.c: fixed bug using in LookupLOConnectionsToPVList where
5973         the wrong variable was used.
5975         ----------------------------------------------------------------------
5977 2006-04-10   DJ Delorie * dj AT delorie dot com *
5979         * doc/actions.texi, doc/version.texi, src/action.c: Document the
5980         rest of the registered actions in action.c.
5982 2006-04-06   Dan McMahill * dan AT mcmahill dot net *
5984         * src/find.c: move some initializations inside a loop so they don't
5985         get missed
5987 2006-04-06   Dan McMahill * dan AT mcmahill dot net *
5989         * src/main.c: declare dump_actions() right before using it
5991 2006-04-06   Dan McMahill * dan AT mcmahill dot net *
5993         * src/hid/png/png.c: add some missing const-s
5995 2006-04-06   Bill Wilson * billw2 AT users dot sourceforge dot net *
5997         * src/hid/gtk/gui-top-window.c: mode_button_toggled_cb() didn't sync
5998         ghidgui->settings_mode with current mode button state.
6000 2006-04-06   Dan McMahill * dan AT mcmahill dot net *
6002         * src/hid/gtk/gui-top-window.c: revert the previous, this part
6003         wasn't quite right.
6005 2006-04-05   Dan McMahill * dan AT mcmahill dot net *
6007         * src/mymem.c, src/mymem.h: add a MyMalloc to go along with MyCalloc
6009 2006-04-05   Bill Wilson * billw2 AT users dot sourceforge dot net *
6011         * src/hid/gtk/gui-netlist-window.c, src/hid/gtk/gui.h: Fix netlist
6012         window to scroll to net/node when user lookups connection.
6014 2006-04-05   Dan McMahill * dan AT mcmahill dot net *
6016         * src/hid/gtk/gui-output-events.c, src/hid/gtk/gui-top-window.c: - make the ESC key return you to the arrow tool if you are in via,
6017           thermal, lock, etc modes.  - in line, poly, arc, etc. modes, the first ESC press returns you to
6018           "tool neutral" and the 2nd ESC press returns you to the arrow tool.
6020 2006-04-05   Dan McMahill * dan AT mcmahill dot net *
6022         * src/hid/gtk/gui-dialog.c, src/hid/lesstif/dialogs.c: add pointer
6023         to the geda homepage and wiki as well as the pcb home page in the
6024         about dialog
6026 2006-04-05   Dan McMahill * dan AT mcmahill dot net *
6028         * src/hid/gtk/gui-dialog-print.c: fix a bug which prevented the
6029         File->Export menu from working more than once in a pcb session.
6031 2006-04-05   DJ Delorie * dj AT delorie dot com *
6033         * src/action.c, src/djopt.c, src/hid.h, src/hid/common/actions.c,
6034         src/hid/gtk/gtkhid-main.c, src/hid/lesstif/dialogs.c,
6035         src/hid/lesstif/main.c, src/main.c, src/vendor.c: Initial chunk of
6036         inline action docs.
6038 2006-04-05   DJ Delorie * dj AT delorie dot com *
6040         * doc/Makefile.am, doc/Makefile.in, doc/actions.texi,
6041         doc/extract-docs, doc/pcb.texi, doc/version.texi: Fix eps->pdf rule
6042         to set size and resolution right.  Limit pcb->* to visible areas.
6043         Add support for action extraction from sources.
6045 2006-04-05   Dan McMahill * dan AT mcmahill dot net *
6047         * src/script/Makefile.am, src/script/Makefile.in,
6048         src/script/pcb-print: remove the pcb-print script.  It is obsolete
6049         now that the HID version directly supports command line export/print
6050         through the export HID's.
6052 2006-04-05   Harry Eaton * haceaton AT users dot sourceforge dot net *
6054         * src/find.c: Expand search box during bloat in case the box overlap
6055         would otherwise prevent checking.  This repairs a really bad bug
6056         introduced when the rtrees were used to speed the find tracing.
6058         ----------------------------------------------------------------------
6060 2006-04-05   Harry Eaton * haceaton AT users dot sourceforge dot net *
6062         * src/misc.c: fixed pin/via bounding box to include thermal tails;
6063         bug reported by CL
6065         ----------------------------------------------------------------------
6067 2006-04-05   Dan McMahill * dan AT mcmahill dot net *
6069         * src/hid/gtk/gui.h: Be a bit more careful with rouding issues when
6070         converting to pcb units.  Hopefully this will help with the issue
6071         reported on the geda lists about 23.99 mil vias when the user
6072         thought they picked 24 mil ones.  Patch posted on geda-user by DJ.
6074 2006-04-05   Dan McMahill * dan AT mcmahill dot net *
6076         * config.h.in, configure, configure.ac, src/hid/png/png.c: check to
6077         see which graphic file formats are supported by the installed GD.
6078         If the desired list is not found, abort and tell the user they can
6079         explicitly disable certain file types.  Should deal with installed
6080         versions of gd which do not support GIF output.
6082 2006-04-05   Dan McMahill * dan AT mcmahill dot net *
6084         * src/hid/lesstif/styles.c: fix a prototype
6086 2006-03-28   Dan McMahill * dan AT mcmahill dot net *
6088         * src/dolists.h, src/hid/lesstif/dialogs.c, src/hid/lesstif/main.c,
6089         src/hid/lesstif/menu.c, src/hid/lesstif/styles.c: move variable
6090         declarations to the beginning of blocks to make gcc-2.95 and
6091         probably other non-gcc compilers happy.
6093 2006-03-28   Dan McMahill * dan AT mcmahill dot net *
6095         * src/find.c: Check to make sure a pointer is not NULL before
6096         dereferencing it.  This seems to be the place where the segfault was
6097         happening sometimes when saving connection data.  For now, spit out
6098         a warning message because I think there may be some other underlying
6099         bug which causes the NULL pointer in the first place.
6101 2006-03-28   Dan McMahill * dan AT mcmahill dot net *
6103         * src/mymem.h: do not redefine malloc if we are using dmalloc
6105 2006-03-28   Dan McMahill * dan AT mcmahill dot net *
6107         * src/action.c, src/autoplace.c, src/autoroute.c, src/buffer.c,
6108         src/change.c, src/command.c, src/crosshair.c, src/djopt.c,
6109         src/draw.c, src/error.c, src/file.c, src/insert.c, src/intersect.c,
6110         src/line.c, src/main.c, src/misc.c, src/mtspace.c, src/netlist.c,
6111         src/output.c, src/print.c, src/puller.c, src/report.c,
6112         src/res_parse.y, src/rtree.c, src/select.c, src/set.c,
6113         src/strflags.c, src/vector.c, src/vendor.c: put back dmalloc support
6115 2006-03-28   DJ Delorie * dj AT delorie dot com *
6117         * src/action.c, src/find.c, src/hid/gtk/gtkhid-main.c,
6118         src/hid/gtk/gui-misc.c, src/hid/gtk/gui-output-events.c,
6119         src/hid/gtk/gui-top-window.c, src/hid/lesstif/dialogs.c,
6120         src/hid/lesstif/library.c, src/hid/lesstif/main.c,
6121         src/hid/lesstif/netlist.c, src/main.c, src/set.c: hid_actionl must
6122         be terminated with NULL, not a plain 0, in case integers and
6123         pointers are different sizes.
6125 2006-03-28   Dan McMahill * dan AT mcmahill dot net *
6127         * src/hid/gtk/gui-top-window.c: access djopt_set_auto_only() via the
6128         associated action instead of directly
6130 2006-03-28   Dan McMahill * dan AT mcmahill dot net *
6132         * src/djopt.c, src/djopt.h: fix prototype for an action.  kills one
6133         more compiler warning
6135 2006-03-28   Dan McMahill * dan AT mcmahill dot net *
6137         * src/hid/lesstif/main.c: add a missing typecase
6139 2006-03-27   Dan McMahill * dan AT mcmahill dot net *
6141         * src/action.c, src/hid/gtk/gui-top-window.c, src/pcb-menu.res: - When changing selected line size from the menu, do it to the
6142         selected arcs to.  - Add a SelectedArcs option to the ChangeSize action.
6144 2006-03-27   Dan McMahill * dan AT mcmahill dot net *
6146         * src/select.c: Fix a bug where actions using SelectedPads did
6147         nothing and SelectedPins picked up both pins and pads.  Noted by bug
6148         #1438523
6150 2006-03-27   Dan McMahill * dan AT mcmahill dot net *
6152         * src/strflags.c: avoid allocating 0 bytes
6154 2006-03-27   Dan McMahill * dan AT mcmahill dot net *
6156         * src/misc.c: fix a typo in a comment
6158 2006-03-27   Dan McMahill * dan AT mcmahill dot net *
6160         * src/main.c: No need to use strdup(Concat()) as Concat already
6161         gives us allocated memory that is not referenced anywhere else.
6163 2006-03-27   Dan McMahill * dan AT mcmahill dot net *
6165         * src/file.c: Fix an off by one overflow of a malloc'ed buffer.
6166         Found with ElectricFence.
6168 2006-03-27   Dan McMahill * dan AT mcmahill dot net *
6170         * src/misc.c: in a function which is supposed to return a string but
6171         is commented out with #ifdef FIXME, return a big warning string
6172         rather than no return value until I/we figure out how to fix it.
6173         Hopefully if this triggers bugs it will be easier to locate.
6175 2006-03-27   Dan McMahill * dan AT mcmahill dot net *
6177         * configure, configure.ac: add back in the --enable-efence and
6178         --enable-dmalloc configure flags to turn on ElectricFence and
6179         dmalloc debugging respectively.
6181 2006-03-27   DJ Delorie * dj AT delorie dot com *
6183         * src/action.c, src/command.c, src/djopt.c, src/hid.h,
6184         src/hid/common/actions.c, src/hid/gtk/gtkhid-main.c,
6185         src/hid/gtk/gui-netlist-window.c, src/hid/gtk/gui-top-window.c,
6186         src/hid/lesstif/dialogs.c, src/hid/lesstif/library.c,
6187         src/hid/lesstif/main.c, src/hid/lesstif/menu.c,
6188         src/hid/lesstif/netlist.c, src/hid/lesstif/styles.c, src/netlist.c,
6189         src/puller.c, src/report.c, src/vendor.c: hid actions: remove
6190         needs_coords, use need_coord_msg to determine when to get coords.
6192 2006-03-27   Dan McMahill * dan AT mcmahill dot net *
6194         * src/hid/gtk/gui-top-window.c, src/hid/gtk/gui-utils.c: Make sure
6195         we initialize some variables before using them.  Fixes a segfault on
6196         startup problem noted on NetBSD/alpha when displaying to an 8-bit
6197         Xvnc.
6199 2006-03-27   Bill Wilson * billw2 AT users dot sourceforge dot net *
6201         * src/hid/gtk/gtkhid-main.c: I wrapped too much into the verbose
6202         option so the file load stopped working - fixed.
6204 2006-03-26   Dan McMahill * dan AT mcmahill dot net *
6206         * configure, configure.ac: bump the rev letter to help identify this
6207         as the HID version if someone pulls up the "about" dialog box.
6209 2006-03-26   Dan McMahill * dan AT mcmahill dot net *
6211         * src/hid/gtk/gtkhid-main.c: - Remove a debug printf which tried to print a NULL string.  Avoids
6212         a segfault bug.  - When chosing "Save Layout" on a new layout (that hadn't already
6213         been given a name or filename), correctly use the new file name that
6214         is selected with the dialog box.
6216 2006-03-26   Dan McMahill * dan AT mcmahill dot net *
6218         * src/hid/lesstif/dialogs.c: - remove a debug printf which was trying to print a NULL string.
6219           Fixes a segfault bug on solaris-2.9/sparc.  - Fix the behaviour when doing "Save Layout" on a new board that   didn't have a file name yet.
6221 2006-03-26   Dan McMahill * dan AT mcmahill dot net *
6223         * src/hid/lesstif/main.c: add a --listen option for the lesstif HID
6224         too (works the same as the gtk one -- listens on stdin for actions).
6226 2006-03-26   Bill Wilson * billw2 AT users dot sourceforge dot net *
6228         * src/hid/gtk/gui-netlist-window.c, src/hid/gtk/gui-output-events.c: 
6229         Pan to a netlist window selected node if it's not visible.  Fix a pan bug.
6231 2006-03-25   Dan McMahill * dan AT mcmahill dot net *
6233         * src/hid/gtk/gui-netlist-window.c: add cast to avoid compiler
6234         warnings
6236 2006-03-25   DJ Delorie * dj AT delorie dot com *
6238         * src/action.c, src/hid/gtk/gui-top-window.c, src/pcb-menu.res: Add
6239         File->Revert.
6241 2006-03-25   Bill Wilson * billw2 AT users dot sourceforge dot net *
6243         * src/hid/gtk/gtkhid-main.c, src/hid/gtk/gui-netlist-window.c: Turn
6244         of Disable all nets button when NetlistChanged.  Make some diagnostic output only if verbose.
6246 2006-03-25   Bill Wilson * billw2 AT users dot sourceforge dot net *
6248         * src/hid/gtk/gui-netlist-window.c: Set netlist nodes enabled by
6249         default when NetlistChanged.
6251 2006-03-25   Bill Wilson * billw2 AT users dot sourceforge dot net *
6253         * src/hid/gtk/gtkhid-main.c: Fix draw arc when flipped.
6255 2006-03-25   Dan McMahill * dan AT mcmahill dot net *
6257         * doc/actions.texi, doc/fractional_size.texi, doc/letter_size.texi,
6258         doc/metric_size.texi, doc/overview.texi, doc/pcbfile.texi,
6259         doc/wire_size.texi: add some of the generated files to see if that
6260         will help with those who don't read the README.cvs file...
6262 2006-03-25   Dan McMahill * dan AT mcmahill dot net *
6264         * src/hid/gtk/gui-top-window.c: use fileno(stdin) instead of 1 to
6265         get the stdin file descriptor.
6267 2006-03-25   Dan McMahill * dan AT mcmahill dot net *
6269         * src/drill.c: fix a segfault when printing a board with no drill
6270         holes at all.
6272 2006-03-25   Dan McMahill * dan AT mcmahill dot net *
6274         * src/hid/gtk/gui-top-window.c: add a --listen option which causes
6275         pcb to listen on the standard input for actions.  This should open
6276         the door to experimenting with having gschem interact directly with
6277         pcb.
6279 2006-03-25   Dan McMahill * dan AT mcmahill dot net *
6281         * src/hid/gtk/gui-config.c: Fix a bug in options parsing where the
6282         loop looking for matches continued after a match had already been
6283         found.
6285 2006-03-25   Dan McMahill * dan AT mcmahill dot net *
6287         * src/main.c: add a help string for --lib-newlib
6289 2006-03-25   Dan McMahill * dan AT mcmahill dot net *
6291         * doc/Makefile.am, doc/Makefile.in: minor cleanup of status output
6293 2006-03-24   DJ Delorie * dj AT delorie dot com *
6295         * src/hid/lesstif/menu.c: Also look for ~/.pcb/pcb-menu.res.
6296         Actually use the path we found ;-)
6298 2006-03-24   Dan McMahill * dan AT mcmahill dot net *
6300         * configure, configure.ac: List the available HID's in the
6301         ./configure --help output.  Ideally, we'd have the help text be
6302         automatic, but until we figure out how, just statically list the HID
6303         (in the help text)
6305 2006-03-24   Dan McMahill * dan AT mcmahill dot net *
6307         * Makefile.in, README_FILES/Makefile.in, config.h.in, configure,
6308         doc/Makefile.in, example/Makefile.in,
6309         example/libraries/Makefile.in, lib/Makefile.in,
6310         newlib/2_pin_thru-hole_packages/Makefile.in, newlib/Makefile.in,
6311         newlib/analog-devices/Makefile.in, newlib/burr-brown/Makefile.in,
6312         newlib/connectors/Makefile.in, newlib/crystal/Makefile.in,
6313         newlib/cypress/Makefile.in, newlib/electro-optics/Makefile.in,
6314         newlib/generic_SMD_packages/Makefile.in,
6315         newlib/headers/Makefile.in, newlib/msp430/Makefile.in,
6316         newlib/not_vetted_ingo/Makefile.in, newlib/sockets/Makefile.in,
6317         newlib/tests/Makefile.in, newlib/toko/Makefile.in, src/Makefile.in,
6318         src/icons/Makefile.in, src/script/Makefile.in, tools/Makefile.in,
6319         tutorial/Makefile.in: regen
6321 2006-03-24   Dan McMahill * dan AT mcmahill dot net *
6323         * Makefile.am, README.cvs, configure.ac, doc/Makefile.am: - when not in maintainer mode, do not list all the dependencies for
6324           the manual.  This allows regular users who are building from a
6325           tarball to avoid having to rebuild the manual and lets them simply
6326           take the preformatted one.  This avoids recently noted issues with
6327           incompatibility with older versions of texinfo which seem somewhat
6328           common.  It also removes the requirement for having latex installed
6329           and for building the png HID for pcb.  - add a --disable-doc flag which allows users who are building from
6330           CVS to skip the doc directory and thus avoid the need for the
6331           documentation formatting tools.
6333 2006-03-24   Dan McMahill * dan AT mcmahill dot net *
6335         * README.snapshots: note the DISTCHECK_CONFIGURE_FLAGS variable
6337 2006-03-24   Bill Wilson * billw2 AT users dot sourceforge dot net *
6339         * src/hid/gtk/gui-top-window.c: Fix gtk magenta color messages ->
6340         initialize all new hidGC colornames to Settings.BackgroundColor
6341         because bgGC color outside of ghid_expose_callback() is never
6342         initialized and it's used to draw outside of the callback when an
6343         object is selected.
6345 2006-03-24   Dan McMahill * dan AT mcmahill dot net *
6347         * doc/Makefile.am, doc/Makefile.in: Fix the calculation of the names
6348         of the generated .texi tables for the drill sizes.
6350 2006-03-24   Dan McMahill * dan AT mcmahill dot net *
6352         * Makefile.in, README_FILES/Makefile.in, aclocal.m4,
6353         doc/Makefile.in, doc/pad.eps, example/Makefile.in,
6354         example/libraries/Makefile.in, lib/Makefile.in,
6355         newlib/2_pin_thru-hole_packages/Makefile.in, newlib/Makefile.in,
6356         newlib/analog-devices/Makefile.in, newlib/burr-brown/Makefile.in,
6357         newlib/connectors/Makefile.in, newlib/crystal/Makefile.in,
6358         newlib/cypress/Makefile.in, newlib/electro-optics/Makefile.in,
6359         newlib/generic_SMD_packages/Makefile.in,
6360         newlib/headers/Makefile.in, newlib/msp430/Makefile.in,
6361         newlib/not_vetted_ingo/Makefile.in, newlib/sockets/Makefile.in,
6362         newlib/tests/Makefile.in, newlib/toko/Makefile.in,
6363         src/icons/Makefile.in, src/script/Makefile.in, tools/Makefile.in,
6364         tutorial/Makefile.in: regen after configure.ac changes
6366 2006-03-24   Dan McMahill * dan AT mcmahill dot net *
6368         * autogen.sh: don't automatically run ./configure.  Simplifies
6369         things a bit when trying to have several different builds share the
6370         same source tree.
6372 2006-03-24   Dan McMahill * dan AT mcmahill dot net *
6374         * doc/extract-docs: put the generated files in the build directory
6375         instead of the source directory (in case they are not the same)
6377 2006-03-24   Dan McMahill * dan AT mcmahill dot net *
6379         * doc/Makefile.am, doc/Makefile.in: Rework the dependencies on the
6380         various generated files a bit to hopefully correctly include all
6381         dependencies.  Also allow this to continue and just use the shipped
6382         preformatted docs in the case where latex and friends are not
6383         available.
6385 2006-03-24   Dan McMahill * dan AT mcmahill dot net *
6387         * src/pcbtest.sh.in: correctly find the font file correctly find the
6388         m4lib stuff when building outside the source tree.
6390 2006-03-24   Dan McMahill * dan AT mcmahill dot net *
6392         * configure, configure.ac, lib/ListLibraryContents.sh,
6393         lib/ListLibraryContents.sh.in: move ListLibraryContents.sh to being
6394         something created at configure time like the rest of the m4lib
6395         stuff.  This puts it in the build directory and allows you to run
6396         pcb out of the build directory prior to installation even in the
6397         case of a read only source tree.  While here add some
6398         AM_CONDITIONALS to indicate when latex and friends are not available
6399         for formating the reference card.
6401 2006-03-24   Dan McMahill * dan AT mcmahill dot net *
6403         * src/Makefile.am, src/Makefile.in: add missing lesstif header to
6404         get it in the distfile
6406 2006-03-23   Dan McMahill * dan AT mcmahill dot net *
6408         * src/hid/png/png.c: fix a bug when specifying the output file name
6410 2006-03-23   Dan McMahill * dan AT mcmahill dot net *
6412         * src/pcbtest.sh.in: also set the font path
6414 2006-03-23   Dan McMahill * dan AT mcmahill dot net *
6416         * src/pcbtest.sh.in: fix a couple of paths when building outside the
6417         source directory
6419 2006-03-23   Dan McMahill * dan AT mcmahill dot net *
6421         * src/hid/lesstif/main.c, src/hid/lesstif/menu.c: avoid some
6422         compiler warnings on solaris-2.9/sparc (gcc-3.3.5)
6424 2006-03-23   Dan McMahill * dan AT mcmahill dot net *
6426         * src/hid/lesstif/main.c: check the result of the --install options
6427         _after_ the options have been processed.  Thanks to DJ for finding
6428         this one.
6430 2006-03-23   DJ Delorie * dj AT delorie dot com *
6432         * src/Makefile.am, src/Makefile.in: Change the way we handle built
6433         include files.
6435 2006-03-23   Dan McMahill * dan AT mcmahill dot net *
6437         * src/strflags.c: avoid some compiler warnings on solaris-2.9/sparc
6438         (gcc-3.3.5)
6440 2006-03-23   Bill Wilson * billw2 AT users dot sourceforge dot net *
6442         * src/hid/gtk/gui-config.c, src/hid/gtk/gui-top-window.c: 
6443         ghid_invalidate_all() when colors change.
6445 2006-03-23   Dan McMahill * dan AT mcmahill dot net *
6447         * src/hid/common/actions.c, src/misc.c, src/mymem.c: avoid some
6448         compiler warnings on solaris-2.9/sparc (gcc-3.3.5)
6450 2006-03-23   Bill Wilson * billw2 AT users dot sourceforge dot net *
6452         * src/hid/gtk/gtkhid-main.c, src/hid/gtk/gui-output-events.c: Fix a
6453         zoom glitch.
6455 2006-03-23   Dan McMahill * dan AT mcmahill dot net *
6457         * src/file.c: avoid some complier warnings on solaris-2.9/sparc
6458         (gcc-3.3.5)
6460 2006-03-23   DJ Delorie * dj AT delorie dot com *
6462         * src/drill.c, src/drill.h, src/hid/gerber/gerber.c, src/print.c: 
6463         Round drill sizes to nearest mil for fab drawings and gerber drill
6464         file.
6466 2006-03-23   DJ Delorie * dj AT delorie dot com *
6468         * src/mtspace.c: Avoid aliasing problems.
6470 2006-03-23   Dan McMahill * dan AT mcmahill dot net *
6472         * src/pcbtest.sh.in: add some missing arguments when running in gdb
6474 2006-03-23   Dan McMahill * dan AT mcmahill dot net *
6476         * src/main.c: don't include the full path for the default value of
6477         the LibraryCommand and LibraryContentsCommand.  That prevented
6478         --lib-command-dir from working.
6480 2006-03-23   DJ Delorie * dj AT delorie dot com *
6482         * src/undo.c: Use void * pointers to avoid aliasing problems.
6484 2006-03-23   DJ Delorie * dj AT delorie dot com *
6486         * src/search.c: Use explicit void** pointers to avoid aliasing
6487         problems.
6489 2006-03-23   DJ Delorie * dj AT delorie dot com *
6491         * src/hid/gerber/gerber.c, src/hid/lesstif/dialogs.c,
6492         src/hid/lesstif/lesstif.h, src/hid/lesstif/main.c,
6493         src/hid/lesstif/menu.c, src/hid/lesstif/netlist.c,
6494         src/hid/lesstif/styles.c: Misc bugfixes and changes, to silence
6495         compiler warnings.
6497 2006-03-23   DJ Delorie * dj AT delorie dot com *
6499         * src/mymem.c, src/mymem.h: MyCalloc, MyRealloc, MyStrdup: make
6500         final parameter (tag string) const, to avoid compiler warnings.
6502 2006-03-23   Dan McMahill * dan AT mcmahill dot net *
6504         * src/action.c: fix the ChangeFlag action (compiler warning pointed
6505         to the bug)
6507 2006-03-23   Dan McMahill * dan AT mcmahill dot net *
6509         * src/Makefile.am, src/Makefile.in: quote the regexp passed to grep
6510         to keep solaris-2.9 happy
6512 2006-03-23   DJ Delorie * dj AT delorie dot com *
6514         * src/hid/lesstif/main.c: Don't try to run the idle proc until the
6515         GUI is created.
6517 2006-03-23   Dan McMahill * dan AT mcmahill dot net *
6519         * src/action.c, src/command.c, src/djopt.c, src/dolists.h,
6520         src/flags.c, src/hid.h, src/hid/gtk/gtkhid-main.c,
6521         src/hid/gtk/gui-netlist-window.c, src/hid/gtk/gui-top-window.c,
6522         src/hid/lesstif/dialogs.c, src/hid/lesstif/library.c,
6523         src/hid/lesstif/main.c, src/hid/lesstif/netlist.c,
6524         src/hid/lesstif/styles.c, src/hid/png/png.c, src/hid/ps/eps.c,
6525         src/hid/ps/ps.c, src/main.c, src/netlist.c, src/puller.c,
6526         src/report.c, src/vendor.c: Revert the ";" thing.  The REGISTER_*
6527         macros now contain ";" where needed and a ";" should not be used
6528         when the macros are called.   This is because the REGISTER_* macros
6529         in hid.h expand to a function like int foo(){/* code here */} where
6530         no ";" should be used at the end.  gcc ignores the resulting empty
6531         declaration but the sunpro c compiler doesn't like it.
6533 2006-03-22   Dan McMahill * dan AT mcmahill dot net *
6535         * src/action.c, src/action.h, src/actionlist.c, src/autoplace.c,
6536         src/autoplace.h, src/autoroute.c, src/autoroute.h, src/box.h,
6537         src/buffer.c, src/buffer.h, src/change.c, src/change.h, src/clip.c,
6538         src/clip.h, src/command.c, src/command.h, src/compat.c,
6539         src/compat.h, src/const.h, src/copy.c, src/copy.h, src/create.c,
6540         src/create.h, src/crosshair.c, src/crosshair.h, src/data.c,
6541         src/data.h, src/dev_ps.c, src/dev_ps.h, src/dev_rs274x.c,
6542         src/dev_rs274x.h, src/djopt.c, src/djopt.h, src/dolists.h,
6543         src/draw.c, src/draw.h, src/drill.c, src/drill.h, src/error.c,
6544         src/error.h, src/file.c, src/file.h, src/find.c, src/find.h,
6545         src/flags.c, src/global.h, src/heap.c, src/heap.h, src/hid.h,
6546         src/hid/hidint.h, src/hid/lesstif/dialogs.c,
6547         src/hid/lesstif/lesstif.h, src/hid/lesstif/library.c,
6548         src/hid/lesstif/main.c, src/hid/lesstif/menu.c,
6549         src/hid/lesstif/netlist.c, src/hid/lesstif/styles.c,
6550         src/hid/lpr/lpr.c, src/hid/png/png.c, src/hid/png/png.h,
6551         src/hid/ps/eps.c, src/hid/ps/ps.c, src/hid/ps/ps.h,
6552         src/icons/Makefile.in, src/insert.c, src/insert.h, src/intersect.c,
6553         src/intersect.h, src/line.c, src/macro.h, src/main.c, src/mirror.c,
6554         src/mirror.h, src/misc.c, src/misc.h, src/move.c, src/move.h,
6555         src/mtspace.c, src/mtspace.h, src/mymem.c, src/mymem.h,
6556         src/netlist.c, src/output.c, src/output.h, src/parse_l.h,
6557         src/polygon.c, src/polygon.h, src/print.c, src/print.h,
6558         src/puller.c, src/rats.c, src/rats.h, src/remove.h, src/report.c,
6559         src/resource.h, src/rotate.c, src/rotate.h, src/rtree.c,
6560         src/rtree.h, src/rubberband.c, src/rubberband.h,
6561         src/script/Makefile.in, src/search.c, src/search.h, src/select.c,
6562         src/select.h, src/set.c, src/set.h, src/strflags.c, src/strflags.h,
6563         src/undo.c, src/undo.h, src/vector.c, src/vector.h, src/vendor.c,
6564         src/vendor.h: indent
6566 2006-03-22   Dan McMahill * dan AT mcmahill dot net *
6568         * src/hid/bom/bom.c, src/hid/common/actions.c,
6569         src/hid/common/extents.c, src/hid/common/flags.c,
6570         src/hid/common/hidinit.c, src/hid/common/hidnogui.c,
6571         src/hid/gerber/gerber.c, src/hid/gtk/gtkhid-main.c,
6572         src/hid/gtk/gtkhid.h, src/hid/gtk/gui-command-window.c,
6573         src/hid/gtk/gui-config.c, src/hid/gtk/gui-dialog-print.c,
6574         src/hid/gtk/gui-dialog-size.c, src/hid/gtk/gui-dialog.c,
6575         src/hid/gtk/gui-keyref-window.c, src/hid/gtk/gui-library-window.c,
6576         src/hid/gtk/gui-log-window.c, src/hid/gtk/gui-misc.c,
6577         src/hid/gtk/gui-netlist-window.c, src/hid/gtk/gui-output-events.c,
6578         src/hid/gtk/gui-pinout-window.c, src/hid/gtk/gui-top-window.c,
6579         src/hid/gtk/gui-utils.c, src/hid/gtk/gui.h: indent
6581 2006-03-22   Dan McMahill * dan AT mcmahill dot net *
6583         * src/action.c, src/command.c, src/djopt.c, src/dolists.h,
6584         src/flags.c, src/hid.h, src/hid/gtk/gtkhid-main.c,
6585         src/hid/gtk/gui-netlist-window.c, src/hid/gtk/gui-top-window.c,
6586         src/hid/lesstif/dialogs.c, src/hid/lesstif/library.c,
6587         src/hid/lesstif/main.c, src/hid/lesstif/menu.c,
6588         src/hid/lesstif/netlist.c, src/hid/lesstif/styles.c,
6589         src/hid/png/png.c, src/hid/ps/eps.c, src/hid/ps/ps.c, src/main.c,
6590         src/netlist.c, src/puller.c, src/report.c, src/vendor.c: Take the
6591         ";" out of the REGISTER_* defines and put them in the invocations.
6592         This will let indent work correctly.
6594 2006-03-22   Dan McMahill * dan AT mcmahill dot net *
6596         * src/action.c, src/command.c, src/crosshair.c, src/draw.c,
6597         src/main.c, src/misc.c, src/polygon.c, src/polygon.h, src/puller.c,
6598         src/rats.c: fix several more compiler warnings by removing some
6599         unused variables and adding/removing return values where
6600         appropriate.
6602 2006-03-22   Dan McMahill * dan AT mcmahill dot net *
6604         * src/hid/gtk/gui-icons-mode-buttons.data,
6605         src/hid/gtk/gui-top-window.c, src/hid/ps/eps.c: remove more compiler
6606         warnings
6608 2006-03-22   Dan McMahill * dan AT mcmahill dot net *
6610         * src/hid/lpr/lpr.c: add missing member to the lpr_hid
6611         initialization
6613 2006-03-22   Dan McMahill * dan AT mcmahill dot net *
6615         * src/file.c: remove unused variable
6617 2006-03-22   Dan McMahill * dan AT mcmahill dot net *
6619         * src/misc.c: add missing header
6621 2006-03-22   Dan McMahill * dan AT mcmahill dot net *
6623         * src/hid/common/flags.c: remove an unused variable
6625 2006-03-22   Dan McMahill * dan AT mcmahill dot net *
6627         * src/hid/common/hidnogui.c: remove compiler warning
6629 2006-03-22   Dan McMahill * dan AT mcmahill dot net *
6631         * src/vendor.c: remove unused variable
6633 2006-03-22   Dan McMahill * dan AT mcmahill dot net *
6635         * src/report.c: format string fix
6637 2006-03-22   Dan McMahill * dan AT mcmahill dot net *
6639         * src/puller.c: add a couple of missing headers
6641 2006-03-22   Dan McMahill * dan AT mcmahill dot net *
6643         * src/print.c: add missing draw.h header
6645 2006-03-22   Dan McMahill * dan AT mcmahill dot net *
6647         * src/flags.c: add RCSID and dmalloc.h
6649 2006-03-22   Dan McMahill * dan AT mcmahill dot net *
6651         * src/flags.c: remove a spurious ";"
6653 2006-03-22   Dan McMahill * dan AT mcmahill dot net *
6655         * src/hid/gerber/gerber.c: remove unused variable
6657 2006-03-22   Dan McMahill * dan AT mcmahill dot net *
6659         * src/hid/gtk/gui-misc.c: remove a duplicate header and Id
6661 2006-03-22   Dan McMahill * dan AT mcmahill dot net *
6663         * src/hid/lesstif/lesstif.h: add RCS Id
6665 2006-03-22   Dan McMahill * dan AT mcmahill dot net *
6667         * src/hid/lesstif/dialogs.c, src/hid/lesstif/library.c,
6668         src/hid/lesstif/main.c, src/hid/lesstif/menu.c,
6669         src/hid/lesstif/netlist.c, src/hid/lesstif/styles.c: add config.h,
6670         dmalloc.h, and RCS Id
6672 2006-03-22   Dan McMahill * dan AT mcmahill dot net *
6674         * src/hid/gtk/gui-misc.c: add dmalloc.h
6676 2006-03-22   Dan McMahill * dan AT mcmahill dot net *
6678         * src/hid/hidint.h: add RCS Id
6680 2006-03-22   Dan McMahill * dan AT mcmahill dot net *
6682         * src/hid/common/actions.c, src/hid/common/extents.c,
6683         src/hid/common/flags.c, src/hid/common/hidinit.c,
6684         src/hid/common/hidnogui.c, src/hid/gerber/gerber.c,
6685         src/hid/lpr/lpr.c: add config.h, dmalloc.h, and RCS Id
6687 2006-03-22   Dan McMahill * dan AT mcmahill dot net *
6689         * src/hid/ps/eps.c, src/hid/ps/ps.c, src/hid/ps/ps.h: remove
6690         compiler warning and add config.h, dmalloc.h, and RCS Id
6692 2006-03-22   Dan McMahill * dan AT mcmahill dot net *
6694         * src/hid/png/png.c: remove a compiler warning
6696 2006-03-22   Dan McMahill * dan AT mcmahill dot net *
6698         * src/hid/bom/bom.c: add missing header
6700 2006-03-22   Dan McMahill * dan AT mcmahill dot net *
6702         * src/Makefile.am, src/Makefile.in: add the generated headers to
6703         DISTCLEANFILES and add a bunch of missing headers to the various
6704         *_SOURCES.  With this change, the 'distcheck' target works again.
6706 2006-03-22   Dan McMahill * dan AT mcmahill dot net *
6708         * configure: regen
6710 2006-03-22   Dan McMahill * dan AT mcmahill dot net *
6712         * configure.ac: add $srcdir in a couple of places for configuring
6713         outside of the source directory.
6715 2006-03-22   Dan McMahill * dan AT mcmahill dot net *
6717         * src/dolists.h: add missing RCS Id
6719 2006-03-22   Dan McMahill * dan AT mcmahill dot net *
6721         * configure, configure.ac, doc/Makefile.am, doc/Makefile.in,
6722         doc/pad.eps, doc/pad.obj: Replace the tgif drawing with a pcb
6723         drawing.  The suffix rules are now in place to use .pcb files as
6724         part of the manual.
6726 2006-03-21   DJ Delorie * dj AT delorie dot com *
6728         * src/hid/lpr/lpr.c: Call lpr, don't just save the file.
6730 2006-03-21   DJ Delorie * dj AT delorie dot com *
6732         * src/hid/lesstif/library.c: Remove a debug printf.
6734 2006-03-21   DJ Delorie * dj AT delorie dot com *
6736         * src/action.c, src/file.c, src/main.c, src/misc.h, src/set.c,
6737         src/set.h: Remove UpdateSettingsOnScreen.  Call InitCrosshair only
6738         for GUIs.
6740 2006-03-21   Dan McMahill * dan AT mcmahill dot net *
6742         * doc/pad.pcb: correctly identify the poly clearance
6744 2006-03-21   Dan McMahill * dan AT mcmahill dot net *
6746         * configure, doc/Makefile.in: regen
6748 2006-03-21   Dan McMahill * dan AT mcmahill dot net *
6750         * configure.ac, doc/Makefile.am: detect when tgif is not found and
6751         give a warning instead of crashing the build
6753 2006-03-21   Dan McMahill * dan AT mcmahill dot net *
6755         * doc/pad.eps: include the tgif output here until I replace the
6756         drawings with pcb drawings
6758 2006-03-21   Dan McMahill * dan AT mcmahill dot net *
6760         * doc/pad.pcb: improve this drawing a bit
6762 2006-03-21   Dan McMahill * dan AT mcmahill dot net *
6764         * src/hid/bom/bom.c: Use log() instead of logv().  Fixes compilation
6765         on NetBSD/alpha, gcc-3.3.3
6767 2006-03-21   DJ Delorie * dj AT delorie dot com *
6769         * compile: New file, from automake 1.9.
6771 2006-03-21   DJ Delorie * dj AT delorie dot com *
6773         * depcomp, doc/mdate-sh, doc/texinfo.tex, install-sh, missing,
6774         mkinstalldirs, ylwrap: Update to automake 1.9 files.
6776 2006-03-21   DJ Delorie * dj AT delorie dot com *
6778         * Makefile.in, README_FILES/Makefile.in, aclocal.m4, config.h.in,
6779         configure, doc/Makefile.in, example/Makefile.in,
6780         example/libraries/Makefile.in, lib/Makefile.in,
6781         newlib/2_pin_thru-hole_packages/Makefile.in, newlib/Makefile.in,
6782         newlib/analog-devices/Makefile.in, newlib/burr-brown/Makefile.in,
6783         newlib/connectors/Makefile.in, newlib/crystal/Makefile.in,
6784         newlib/cypress/Makefile.in, newlib/electro-optics/Makefile.in,
6785         newlib/generic_SMD_packages/Makefile.in,
6786         newlib/headers/Makefile.in, newlib/msp430/Makefile.in,
6787         newlib/not_vetted_ingo/Makefile.in, newlib/sockets/Makefile.in,
6788         newlib/tests/Makefile.in, newlib/toko/Makefile.in, src/Makefile.in,
6789         src/icons/Makefile.in, src/script/Makefile.in, tools/Makefile.in,
6790         tutorial/Makefile.in: regenerate everything with FC4.
6792 2006-03-21   DJ Delorie * dj AT delorie dot com *
6794         * config.h.in, configure, configure.ac, src/Makefile.am,
6795         src/Makefile.in, src/Pcb.ad.in, src/action.c, src/action.h,
6796         src/autoplace.c, src/autoroute.c, src/buffer.c, src/change.c,
6797         src/command.c, src/command.h, src/const.h, src/control.c,
6798         src/control.h, src/copy.c, src/create.c, src/create.h,
6799         src/crosshair.c, src/data.c, src/data.h, src/dialog.c,
6800         src/dialog.h, src/djopt.c, src/djopt.h, src/dolists.h, src/draw.c,
6801         src/draw.h, src/error.c, src/file.c, src/fileselect.c,
6802         src/fileselect.h, src/find.c, src/find.h, src/flags.c,
6803         src/global.h, src/gui-command-window.c, src/gui-config.c,
6804         src/gui-dialog-print.c, src/gui-dialog-size.c, src/gui-dialog.c,
6805         src/gui-icons-misc.data, src/gui-icons-mode-buttons.data,
6806         src/gui-keyref-window.c, src/gui-library-window.c,
6807         src/gui-log-window.c, src/gui-misc.c, src/gui-netlist-window.c,
6808         src/gui-output-events.c, src/gui-pinout-window.c,
6809         src/gui-top-window.c, src/gui-utils.c, src/gui.c, src/gui.h,
6810         src/heap.c, src/hid.h, src/hid/bom/bom.c, src/hid/bom/hid.conf,
6811         src/hid/common/actions.c, src/hid/common/extents.c,
6812         src/hid/common/flags.c, src/hid/common/hidinit.c,
6813         src/hid/common/hidnogui.c, src/hid/gerber/gerber.c,
6814         src/hid/gerber/hid.conf, src/hid/gtk/gtkhid-main.c,
6815         src/hid/gtk/gtkhid.h, src/hid/gtk/gui-command-window.c,
6816         src/hid/gtk/gui-config.c, src/hid/gtk/gui-dialog-print.c,
6817         src/hid/gtk/gui-dialog-size.c, src/hid/gtk/gui-dialog.c,
6818         src/hid/gtk/gui-icons-misc.data,
6819         src/hid/gtk/gui-icons-mode-buttons.data,
6820         src/hid/gtk/gui-keyref-window.c, src/hid/gtk/gui-library-window.c,
6821         src/hid/gtk/gui-log-window.c, src/hid/gtk/gui-misc.c,
6822         src/hid/gtk/gui-netlist-window.c, src/hid/gtk/gui-output-events.c,
6823         src/hid/gtk/gui-pinout-window.c, src/hid/gtk/gui-top-window.c,
6824         src/hid/gtk/gui-utils.c, src/hid/gtk/gui.h, src/hid/gtk/hid.conf,
6825         src/hid/hidint.h, src/hid/lesstif/dialogs.c,
6826         src/hid/lesstif/hid.conf, src/hid/lesstif/lesstif.h,
6827         src/hid/lesstif/library.c, src/hid/lesstif/main.c,
6828         src/hid/lesstif/menu.c, src/hid/lesstif/netlist.c,
6829         src/hid/lesstif/styles.c, src/hid/lpr/hid.conf, src/hid/lpr/lpr.c,
6830         src/hid/png/hid.conf, src/hid/png/png.c, src/hid/png/png.h,
6831         src/hid/ps/eps.c, src/hid/ps/hid.conf, src/hid/ps/ps.c,
6832         src/hid/ps/ps.h, src/insert.c, src/intersect.c, src/lgdialog.c,
6833         src/lgdialog.h, src/library.c, src/library.h, src/line.c,
6834         src/log.c, src/log.h, src/macro.h, src/main.c, src/menu.c,
6835         src/menu.h, src/misc.c, src/misc.h, src/move.c, src/mtspace.c,
6836         src/mymem.c, src/mymem.h, src/netlist.c, src/netlist.h,
6837         src/output.c, src/output.h, src/parse_l.l, src/parse_y.y,
6838         src/pcb-menu.res, src/pcbtest.sh.in, src/pinout.c, src/pinout.h,
6839         src/polygon.c, src/print.c, src/print.h, src/printdialog.c,
6840         src/printdialog.h, src/printpanner.c, src/printpanner.h,
6841         src/puller.c, src/rats.c, src/report.c, src/report.h,
6842         src/res_lex.l, src/res_parse.y, src/resmenu.c, src/resmenu.h,
6843         src/rotate.c, src/rtree.c, src/search.c, src/select.c,
6844         src/selector.c, src/selector.h, src/set.c, src/set.h,
6845         src/sizedialog.c, src/sizedialog.h, src/strflags.c, src/todo,
6846         src/undo.c, src/undo.h, src/vector.c, src/vendor.c, src/vendor.h: 
6847         HID merge.
6849 2006-03-21   Dan McMahill * dan AT mcmahill dot net *
6851         * README.cvs_branches: note what some of the branches are
6853 2006-03-21   Dan McMahill * dan AT mcmahill dot net *
6855         * README.snapshots: add a few more notes about the snapshot process
6857 2006-03-21   Dan McMahill * dan AT mcmahill dot net *
6859         * README_FILES/Makefile.in, aclocal.m4, example/Makefile.in,
6860         example/libraries/Makefile.in,
6861         newlib/2_pin_thru-hole_packages/Makefile.in, newlib/Makefile.in,
6862         newlib/analog-devices/Makefile.in, newlib/burr-brown/Makefile.in,
6863         newlib/connectors/Makefile.in, newlib/crystal/Makefile.in,
6864         newlib/cypress/Makefile.in, newlib/electro-optics/Makefile.in,
6865         newlib/generic_SMD_packages/Makefile.in,
6866         newlib/headers/Makefile.in, newlib/msp430/Makefile.in,
6867         newlib/not_vetted_ingo/Makefile.in, newlib/sockets/Makefile.in,
6868         newlib/tests/Makefile.in, newlib/toko/Makefile.in,
6869         src/icons/Makefile.in, src/script/Makefile.in, tools/Makefile.in: 
6870         regen
6872 2006-03-21   Dan McMahill * dan AT mcmahill dot net *
6874         * NEWS: add news for the 20060321 snapshot
6876 2006-03-21   Dan McMahill * dan AT mcmahill dot net *
6878         * AUTHORS: update authors a bit
6880 2006-03-21   Dan McMahill * dan AT mcmahill dot net *
6882         * ChangeLog: update with changes for 20060321 snapshot.
6884 2006-03-21   Dan McMahill * dan AT mcmahill dot net *
6886         * Makefile.in, tutorial/Makefile.in: regen
6888 2006-03-21   Dan McMahill * dan AT mcmahill dot net *
6890         * doc/version.texi: bump updated date
6892 2006-03-21   Dan McMahill * dan AT mcmahill dot net *
6894         * doc/Makefile.in: regen
6896 2006-03-21   Dan McMahill * dan AT mcmahill dot net *
6898         * doc/Makefile.am: Minor updates to fix the 'distcheck' target.
6899         Adds a missing file (extract-docs) to the list of distributed files, uses $(srcdir) in a
6900         couple of spots, etc.
6902 2006-03-20   Dan McMahill * dan AT mcmahill dot net *
6904         * configure: regen
6906 2006-03-20   Dan McMahill * dan AT mcmahill dot net *
6908         * configure.ac: - replace obsolete AC_ERROR with AC_MSG_ERROR - store the path to the m4 executible
6910 2006-03-16   DJ Delorie * dj AT delorie dot com *
6912         * src/parse_y.y: Document ElementArc, ElementLine, and Mark.
6914 2006-03-14   Dan McMahill * dan AT mcmahill dot net *
6916         * doc/pad.pcb: add drawing of soldermask opening around a pad
6918 2006-03-14   Dan McMahill * dan AT mcmahill dot net *
6920         * lib/QueryLibrary.sh.in, lib/common.m4: add an optional -fp
6921         argument which will display the correct footprint= attribute for
6922         gschem.  Generally useful for debugging.
6924 2006-03-14   Dan McMahill * dan AT mcmahill dot net *
6926         * lib/pci.inc, lib/pci.list, lib/pci.m4: Remove the abuse of the
6927         value field as a way of passing in multiple extra parameters.  While
6928         here fix the pinlists.  These footprints still have diagonal pads
6929         which are not allowed.
6931 2006-03-14   Dan McMahill * dan AT mcmahill dot net *
6933         * lib/Makefile.in, src/Makefile.in: regen
6935 2006-03-14   Dan McMahill * dan AT mcmahill dot net *
6937         * lib/Makefile.am, lib/genericsmt.inc, lib/genericsmt.list,
6938         lib/genericsmt.m4: garbage collect some footprints that were not at
6939         all conforming to the correct usage of the m4 library system.  In
6940         addition, they were rather redundant.
6942 2006-03-13   Dan McMahill * dan AT mcmahill dot net *
6944         * lib/CreateLibraryContents.sh.in: put the correct gschem footprint=
6945         attribute in [] at the end of each description
6947 2006-03-12   DJ Delorie * dj AT delorie dot com *
6949         * doc/extract-docs: New file, for extracting inline documentation.
6951 2006-03-12   Dan McMahill * dan AT mcmahill dot net *
6953         * lib/QueryLibrary.sh.in: eat blank lines of which there can be many
6954         in the element output
6956 2006-03-11   DJ Delorie * dj AT delorie dot com *
6958         * doc/Makefile.am, doc/Makefile.in, doc/pcb.css, doc/pcb.texi,
6959         src/const.h, src/parse_y.y: Inline documentation.
6961 2006-03-11   DJ Delorie * dj AT delorie dot com *
6963         * src/action.c, src/change.c, src/change.h: Add "join" to SetFlag,
6964         ClrFlag, and ChangeFlag actions.
6966 2006-03-08   Harry Eaton * haceaton AT users dot sourceforge dot net *
6968         * src/autoroute.c: Fixed bug where pads were assumed to be on the
6969         same side as the element
6971         ----------------------------------------------------------------------
6973 2006-03-08   Harry Eaton * haceaton AT users dot sourceforge dot net *
6975         * src/crosshair.c: Crosshair snap to pad ends instead of center -
6976         necessary for rat drawing because rats only connect at pad end
6977         points.
6979         ----------------------------------------------------------------------
6981 2006-03-06   DJ Delorie * dj AT delorie dot com *
6983         * src/print.c: Fab author fixes from Karel.
6985 2006-03-06   Dan McMahill * dan AT mcmahill dot net *
6987         * src/parse_y.y: Fix reduce-reduce conflicts (patch from DJ).
6989 2006-03-03   Dan McMahill * dan AT mcmahill dot net *
6991         * doc/pcb.texi: - clarify that the manual does not currently document the very
6992           latest pcb output file format.  - add a (sparsely populated) glossary appendix - add a note about how to change layers
6994 2006-03-03   Dan McMahill * dan AT mcmahill dot net *
6996         * globalconst.h, src/action.c, src/create.c, src/file.c,
6997         src/find.c, src/global.h, src/gui-config.c, src/parse_y.y,
6998         src/rotate.c, src/sizedialog.c, src/vendor.c: add DRC checks for
6999         minimum drill diameter and minimum annular ring.
7001 2006-03-02   Dan McMahill * dan AT mcmahill dot net *
7003         * src/rats.c: When manually adding nets, make sure we actually pick
7004         a unique name when a new net is created.  Fixes a bug noted by
7005         Vanessa Dannenberg.
7007 2006-02-28   Dan McMahill * dan AT mcmahill dot net *
7009         * doc/pad.pcb: Add a pad drawing showing how a pad is drawn with a
7010         rectangular aperture.  Not used yet, but this will replace the tgif
7011         drawing at some point.
7013 2006-01-29   Dan McMahill * dan AT mcmahill dot net *
7015         * src/error.c: apply some fixes for DragonFly BSD
7017 2006-01-18   Dan McMahill * dan AT mcmahill dot net *
7019         * src/action.c: format cleanup of ActionChangePinName() to bring
7020         more in line with GNU coding standards for C code formatting.
7022 2006-01-17   Dan McMahill * dan AT mcmahill dot net *
7024         * doc/pcb.texi: document ChangePinName action
7026 2006-01-17   Dan McMahill * dan AT mcmahill dot net *
7028         * src/action.c, src/action.h, src/command.c: add a ChangePinName()
7029         action which lets you change the name of a pin/pad on an element.
7030         For example, ChangePinName(U1, 7, VCC) changes the name of pin #7 on
7031         U1 to "VCC".  This makes it simple to propagate pin names from a
7032         schematic capture tool to the layout without requiring the layout
7033         library to know the pin names for every component.
7035 2006-01-16   Harry Eaton * haceaton AT users dot sourceforge dot net *
7037         * src/buffer.c, src/copy.c, src/create.c, src/draw.c, src/find.c,
7038         src/insert.c, src/move.c, src/mymem.c, src/parse_y.y,
7039         src/polygon.c, src/print.c, src/remove.c, src/report.c,
7040         src/search.c, src/select.c: Updated to use rtrees for polygon
7041         handling
7043 2006-01-15   Harry Eaton * haceaton AT users dot sourceforge dot net *
7045         * src/polygon.c: Fixed bugs in GetClosestPolygonPoint where (a) the
7046         passed point was not used, and (b) projection of the segment past
7047         the end was being used when it shouldn't.
7049         ----------------------------------------------------------------------
7051 2006-01-02   Harry Eaton * haceaton AT users dot sourceforge dot net *
7053         * src/autoroute.c: Speed computation of route costs, it uses about
7054         13% of the CPU time during routing.
7056         ----------------------------------------------------------------------
7058 2006-01-02   Harry Eaton * haceaton AT users dot sourceforge dot net *
7060         * src/rtree.c: Speed up the rtree searches by establishing better
7061         balance of the cluster size during a node split. This reduces the
7062         tree depth resulting in faster searching.
7064         ----------------------------------------------------------------------
7066 2006-01-02   Harry Eaton * haceaton AT users dot sourceforge dot net *
7068         * src/strflags.c: Fixed clearline flag so that arcs also have this
7069         property
7071         ----------------------------------------------------------------------
7073 2006-01-02   Harry Eaton * haceaton AT users dot sourceforge dot net *
7075         * src/change.c: Fixed bug where clearances could be set 1 below the
7076         spacing setting
7078         ----------------------------------------------------------------------
7080 2005-12-09   Dan McMahill * dan AT mcmahill dot net *
7082         * doc/Makefile.in: regen [put the html manual in 1 file]
7084 2005-12-09   Dan McMahill * dan AT mcmahill dot net *
7086         * doc/Makefile.am: put the html manual in 1 file.  Its a bit easier
7087         to manage
7089 2005-12-09   Dan McMahill * dan AT mcmahill dot net *
7091         * doc/version.texi: bump date last touched
7093 2005-12-07   Dan McMahill * dan AT mcmahill dot net *
7095         * lib/smt.inc: cause the missing ) in PKG_SMT_2PAD_MM100 to appear
7097 2005-12-06   Dan McMahill * dan AT mcmahill dot net *
7099         * doc/pcb.texi: - added the pad drawing showing how a pad is drawn with an aperture.  - added some comments about the evolving file format for layout
7100         files.
7102 2005-12-02   Dan McMahill * dan AT mcmahill dot net *
7104         * src/create.c, src/global.h, src/gui-netlist-window.c, src/rats.c: 
7105         fix a bug which prevented disabling nets from the ratsnest
7107 2005-12-02   Dan McMahill * dan AT mcmahill dot net *
7109         * lib/geda.inc: fix duplicate PKG_SME4 which should have been called
7110          SME5.  Reported by Wojciech Kazubski in bug #1353304
7112 2005-12-02   Dan McMahill * dan AT mcmahill dot net *
7114         * src/pcbtest.sh.in: Be sure to set the library path to the source
7115         tree.  Patch supplied by Wim Lewis in patch #1362564
7117 2005-10-11   Dan McMahill * dan AT mcmahill dot net *
7119         * lib/geda.inc: redo the 0201, 0402, etc passives to bring them in
7120         line with the IPC recommendations.  The pads on, for example 0603,
7121         were too small before.  They worked, were really not adequate.
7123 2005-10-11   Dan McMahill * dan AT mcmahill dot net *
7125         * lib/smt.inc: add a PKG_SMT_2PAD_MM100 which directly takes
7126         dimensions for the pads, silk, and placement courtyard from IPC-7351
7127         for things like 0402 capacitor and resistor footprints.
7129 2005-09-06   Dan McMahill * dan AT mcmahill dot net *
7131         * autogen.sh: make this script a bit more verbose and also abort on
7132         errors
7134 2005-09-06   Dan McMahill * dan AT mcmahill dot net *
7136         * configure: regen
7138 2005-09-06   Dan McMahill * dan AT mcmahill dot net *
7140         * configure.ac: make sure to check for -lX11 even when we're using
7141         the gtk gui.  action.c still has a direct call to an X function
7142         (XWarpPointer) so on some systems (Solaris) you need to explicitly
7143         link -lX11 instead of getting it through the gtk dependencies
7145 2005-08-05   Dan McMahill * dan AT mcmahill dot net *
7147         * configure: regen
7149 2005-08-05   Dan McMahill * dan AT mcmahill dot net *
7151         * configure.ac: check for gtk+ >= 2.4.0 instead of 2.2.0 since we
7152         need >= 2.4.0
7154 2005-08-05   Dan McMahill * dan AT mcmahill dot net *
7156         * src/script/Makefile.am, src/script/Makefile.in: add pcb-print to
7157         the list of distributed files
7159 2005-08-05   Dan McMahill * dan AT mcmahill dot net *
7161         * src/script/pcb-print: fix a bug in the --add-alignment option.
7162         Noted by David Baird
7164 2005-08-04   Dan McMahill * dan AT mcmahill dot net *
7166         * src/gui-library-window.c: fix -auto-place for the library window
7168 2005-08-04   Dan McMahill * dan AT mcmahill dot net *
7170         * src/script/pcb-print: add script to make it easier to print from
7171         the command line
7173 2005-08-04   Dan McMahill * dan AT mcmahill dot net *
7175         * src/action.c, src/action.h, src/command.c, src/global.h,
7176         src/gui-library-window.c, src/gui-log-window.c,
7177         src/gui-netlist-window.c, src/gui-pinout-window.c,
7178         src/gui-top-window.c, src/main.c, src/misc.c,
7179         src/script/Makefile.am, src/script/Makefile.in: - change the Print action to PrintDialog since it causes the print   dialog box to come up - add a new Print action provided by David Baird as patch # 1212168.    Modified by me to work with the gtk version of pcb.  - to let this action work, allow actions to take a parameter list
7180           and # of parameters to allow large numbers of arguments.  - modify the Quit action and some of the initialization code so that   you can use Quit() in a startup script.  - add a -auto-place command line option which causes the windows to
7181           be automatically placed rather than letting the window manager do
7182           it.  This is useful when printing via the command line.  - add a command line shell script for printing.  This is a wrapper
7183           which takes a whole bunch of flags relating to the print parameters
7184           and translates that to the correct invocation of the Print() action.    Shell script provided by David Baird as part of patch #1212168 and   modified by me to make it portable.
7186 2005-07-31   Dan McMahill * dan AT mcmahill dot net *
7188         * lib/geda.inc: add 1008 package
7190 2005-07-27   Dan McMahill * dan AT mcmahill dot net *
7192         * lib/bourns.inc: fix the pin order.
7194 2005-07-24   Harry Eaton * haceaton AT users dot sourceforge dot net *
7196         * src/gui-config.c: Fix initial layer groups so that layer named
7197         'component' is actually on the component side and layer named
7198         'solder' is actually on the solder side. Unfortunately the GTK
7199         version saves the old bug in the .pcb/preferences file so no
7200         patching will fix existing installations. They must manually edit
7201         the layer groups and check the "use as default" to fix their
7202         installation.
7204         ----------------------------------------------------------------------
7206 2005-07-23   Dan McMahill * dan AT mcmahill dot net *
7208         * aclocal.m4, configure: regen (fix botched commit which was missing
7209         some M4 paths)
7211 2005-07-22   Dan McMahill * dan AT mcmahill dot net *
7213         * doc/pcb.texi, doc/version.texi: add appendix describing the
7214         centroid file format along with the algorithm for finding the
7215         centroid and rotation.
7217 2005-07-22   Dan McMahill * dan AT mcmahill dot net *
7219         * src/print.c: remove some redundant code to make things more clear
7221 2005-07-18   Dan McMahill * dan AT mcmahill dot net *
7223         * lib/genericsmt.m4: fix typo
7225 2005-07-18   Dan McMahill * dan AT mcmahill dot net *
7227         * aclocal.m4, configure: regen
7229 2005-07-18   Dan McMahill * dan AT mcmahill dot net *
7231         * configure.ac, src/vendor.c: add a check for sys/types.h and then
7232         if found, include in vendor.c.  Needed to build on FreeBSD.  Problem
7233         and fix reported in bug #1220963.
7235 2005-07-18   Dan McMahill * dan AT mcmahill dot net *
7237         * lib/qfn.inc: hires-ify the QFN packages.  While here make sure we
7238         use an appropriate soldermask relief for this style of package.
7240 2005-07-18   Dan McMahill * dan AT mcmahill dot net *
7242         * src/gui-dialog-print.c, src/gui-dialog-size.c, src/set.c: remove
7243         the inclusion of menu.h.  We don't use that file anymore and the
7244         only reason we could still build on some systems is we'd find the
7245         /usr/include/menu.h from curses!  Problem noted in bug #1226924 by
7246         Axeloide.
7248 2005-07-18   Dan McMahill * dan AT mcmahill dot net *
7250         * doc/refcard.tex, src/gui-keyref-window.c, src/gui-output-events.c: 
7251         apply patches provided by Bill Wilson in patch #1230708.   Fix key bindings for drill size changes to be <mod>s  and <shift><mod>s to agree with the Xaw default key  bindings.   Add missing key bindings '/' and '.' for cycle  multiline mode and toggle 45 degree enforcement  respectively.   Fix refcard.tex to reflect the current set of key binding.   Now the gtk key bindings and the refcard should be in  sync and be the same as the default Xaw PCB bindings  with one exception: the buffer selection binding is  <control>1...5 instead of <shift>1...5. This can be  fixed but at the cost of removing the shortcuts from  the menus because gtk can't use <shift>digits as menu  shortcuts.
7253 2005-07-18   Dan McMahill * dan AT mcmahill dot net *
7255         * INSTALL, NEWS, README-GTK_PORT: apply patches provided by Bill
7256         Wilson in patch #1230704  This patch adds a note to the README-GTK_PORT about  runtime warnings if using early gtk+2.4.0 versions.   It also makes small adjustments to the INSTALL file to  remove an outdated Xt reference and a non-existent  68HC11 file reference.   In addition, note that gtk+2.4 is needed, not gtk+2.2.
7258 2005-07-18   Dan McMahill * dan AT mcmahill dot net *
7260         * src/global.h, src/gui-config.c, src/gui-top-window.c, src/gui.h: 
7261         apply patches provided by Bill Wilson in patch #1227292  As per a request on the gEDA list, this patch adds a  Preferences option to make the layout name appear on  the window title bar instead of on the main menu bar  area. This is convenient when the layout name might be  somewhat long and takes up too much horizontal space on  the menu bar area.
7263 2005-07-18   Dan McMahill * dan AT mcmahill dot net *
7265         * src/file.c, src/gui-config.c, src/gui-top-window.c: apply patches
7266          provided by Bill Wilson in patch #1227205 When loading layouts using
7267          alternating mil/mm units, the PCB units displaying can get out of
7268          sync. This patch fixes it.
7270 2005-07-18   Dan McMahill * dan AT mcmahill dot net *
7272         * src/find.c, src/gui-utils.c: apply patches provided by Bill Wilson
7273         in patch #1215935 1) The DRC user interface issue has been reported on the gEDA
7274         mailing list and is listed on the PCB bugs page as request id
7275         1206762 dated 2005-05-23 01:29 and is fixed in this patch.  3) Fix a dangling DRC check g_message() which I overlooked fixing
7276         during the final Gtk port cleanup.  4) Adjust the DRC draw centering to be 1/4 screen offset since the
7277         continue dialog is centered (under window manager control) and that
7278         was covering up the DRC highlighted portion of the draw which was
7279         previously also centered.  2) The log window was not scrolling to keep most recent log items
7280         added in view and this patch fixes that.
7282 2005-07-18   Dan McMahill * dan AT mcmahill dot net *
7284         * src/const.h, src/global.h, src/gui-netlist-window.c: apply the
7285         patches provided by Wim Lewis in patch #1189989 to allow pcb to
7286         compile more cleanly on OpenBSD.
7288 2005-06-11   DJ Delorie * dj AT delorie dot com *
7290         * src/action.c, src/autoroute.c, src/buffer.c, src/change.c,
7291         src/const.h, src/copy.c, src/create.c, src/create.h,
7292         src/crosshair.c, src/data.h, src/dev_rs274x.c, src/djopt.c,
7293         src/draw.c, src/file.c, src/find.c, src/global.h,
7294         src/gui-top-window.c, src/insert.c, src/line.c, src/macro.h,
7295         src/misc.c, src/misc.h, src/move.c, src/mymem.c, src/parse_l.l,
7296         src/parse_y.y, src/polygon.c, src/print.c, src/rats.c,
7297         src/report.c, src/rotate.c, src/search.c, src/strflags.c,
7298         src/strflags.h, src/undo.c, src/undo.h: Update sources to support
7299         more than 8 layers.
7301 2005-06-08   Dan McMahill * dan AT mcmahill dot net *
7303         * NEWS: add news for 20050609
7305 2005-06-08   Dan McMahill * dan AT mcmahill dot net *
7307         * ChangeLog: add changes for 20050609
7309 2005-06-08   Dan McMahill * dan AT mcmahill dot net *
7311         * globalconst.h: reduce minimum board size from 1.2 to 0.6 inches
7313 2005-06-08   Dan McMahill * dan AT mcmahill dot net *
7315         * src/Makefile.in: regen [add missing strflags.h]
7317 2005-06-08   Dan McMahill * dan AT mcmahill dot net *
7319         * src/Makefile.am: add missing strflags.h
7321 2005-06-08   Dan McMahill * dan AT mcmahill dot net *
7323         * configure: regen
7325 2005-06-08   Dan McMahill * dan AT mcmahill dot net *
7327         * configure.ac: make sure we still set the X library rpath (yes, it
7328         is still possible to use --disable-rpath debian folks).
7330 2005-06-08   Dan McMahill * dan AT mcmahill dot net *
7332         * src/draw.c, src/global.h, src/gui-config.c,
7333         src/gui-output-events.c, src/gui-top-window.c, src/gui-utils.c,
7334         src/main.c: convert several c++ style comments to c comments.  not
7335         all compilers like //
7337 2005-06-03   DJ Delorie * dj AT delorie dot com *
7339         * src/djopt.c: Avoid name conflict with abs/min/max
7341 2005-05-26   Dan McMahill * dan AT mcmahill dot net *
7343         * configure: regen [error out if m4 not found]
7345 2005-05-26   Dan McMahill * dan AT mcmahill dot net *
7347         * configure.ac: error out if m4 is not found
7349 2005-03-28   DJ Delorie * dj AT delorie dot com *
7351         * src/strflags.c: Fix the "all pads are ovals" bug.
7353 2005-03-21   DJ Delorie * dj AT delorie dot com *
7355         * src/strflags.c: Minor bugfixes related to error handling
7357 2005-03-21   DJ Delorie * dj AT delorie dot com *
7359         * src/Makefile.am, src/Makefile.in, src/file.c, src/parse_y.y,
7360         src/strflags.c, src/strflags.h: When saving files, convert flags to
7361         symbolic format instead of storing the actual internal bitfield.
7363 2005-03-21   DJ Delorie * dj AT delorie dot com *
7365         * src/const.h: Put parens around computed macros.  Use ~0 instead of
7366         -1 for "all bits".
7368 2005-03-14   Dan McMahill * dan AT mcmahill dot net *
7370         * src/gui-icons-misc.data, src/gui-icons-mode-buttons.data: add some
7371         files missed in the gtk-pcb checkin
7373 2005-03-13   Dan McMahill * dan AT mcmahill dot net *
7375         * doc/pcbrc-sample, src/file.c, src/global.h, src/gui-config.c,
7376         src/gui-top-window.c, src/gui.h, src/main.c, src/misc.c,
7377         src/misc.h, src/pcbtest.sh.in: add some config file patches from
7378         Bill Wilson
7380 2005-03-12   Dan McMahill * dan AT mcmahill dot net *
7382         * README-GTK_PORT, configure, configure.ac, doc/version.texi,
7383         globalconst.h, po/fr_FR.po, po/pcb.pot, src/Makefile.am,
7384         src/Makefile.in, src/Pcb.ad.in, src/action.c, src/action.h,
7385         src/autoplace.c, src/autoroute.c, src/buffer.c, src/change.c,
7386         src/clip.c, src/clip.h, src/command.c, src/command.h, src/const.h,
7387         src/create.c, src/crosshair.c, src/data.c, src/data.h,
7388         src/dev_ps.c, src/dev_rs274x.c, src/djopt.c, src/djopt.h,
7389         src/draw.c, src/draw.h, src/drill.c, src/error.c, src/error.h,
7390         src/file.c, src/file.h, src/find.c, src/global.h,
7391         src/gui-command-window.c, src/gui-config.c, src/gui-dialog-print.c,
7392         src/gui-dialog-size.c, src/gui-dialog.c, src/gui-keyref-window.c,
7393         src/gui-library-window.c, src/gui-log-window.c, src/gui-misc.c,
7394         src/gui-netlist-window.c, src/gui-output-events.c,
7395         src/gui-pinout-window.c, src/gui-top-window.c, src/gui-utils.c,
7396         src/gui.h, src/heap.c, src/insert.c, src/intersect.c, src/line.c,
7397         src/macro.h, src/main.c, src/menu.h, src/misc.c, src/misc.h,
7398         src/move.c, src/mtspace.c, src/mymem.c, src/output.c, src/output.h,
7399         src/parse_l.l, src/parse_y.y, src/pcb-menu.res, src/pcbtest.sh.in,
7400         src/polygon.c, src/print.c, src/rats.c, src/rats.h, src/report.c,
7401         src/res_parse.y, src/rotate.c, src/rtree.c, src/script/pcb.in,
7402         src/select.c, src/select.h, src/set.c, src/set.h, src/undo.c,
7403         src/vector.c, src/vendor.c, src/vendor.h: Import Bill Wilson's port
7404         of pcb to gtk.  Things seem to compile and run but this should be
7405         considered a work in progress at the moment.
7407 2005-03-12   Dan McMahill * dan AT mcmahill dot net *
7409         * doc/Makefile.in: regen
7411 2005-03-12   Dan McMahill * dan AT mcmahill dot net *
7413         * doc/Makefile.am: add a few missing files to EXTRA_DIST
7415 2005-03-10   Dan McMahill * dan AT mcmahill dot net *
7417         * ChangeLog: update with latest changes
7419 2005-03-10   Dan McMahill * dan AT mcmahill dot net *
7421         * Makefile.in, README_FILES/Makefile.in, doc/Makefile.in,
7422         doc/version.texi, example/Makefile.in,
7423         example/libraries/Makefile.in, lib/Makefile.in,
7424         newlib/2_pin_thru-hole_packages/Makefile.in, newlib/Makefile.in,
7425         newlib/analog-devices/Makefile.in, newlib/burr-brown/Makefile.in,
7426         newlib/connectors/Makefile.in, newlib/crystal/Makefile.in,
7427         newlib/cypress/Makefile.in, newlib/electro-optics/Makefile.in,
7428         newlib/generic_SMD_packages/Makefile.in,
7429         newlib/headers/Makefile.in, newlib/msp430/Makefile.in,
7430         newlib/not_vetted_ingo/Makefile.in, newlib/sockets/Makefile.in,
7431         newlib/tests/Makefile.in, newlib/toko/Makefile.in, src/Makefile.in,
7432         src/icons/Makefile.in, src/script/Makefile.in, tools/Makefile.in,
7433         tutorial/Makefile.in: regen after adding gtk configure.ac stuff
7435 2005-03-10   Dan McMahill * dan AT mcmahill dot net *
7437         * autogen.sh: use ACLOCAL_FLAGS if set
7439 2005-03-10   Dan McMahill * dan AT mcmahill dot net *
7441         * lib/geda.inc, lib/misc.inc, lib/to.inc: add MULTIWATT and friends.
7442         Fix drill size for several versions of the TO-220 package, fix some
7443         bugs which caused several TO-220 packages and others to generate
7444         syntax errors, and fix the drill size on several TO-* packages.  You
7445         can't fit a 40 mil pin in a 20 mil hole!
7447 2005-02-23   DJ Delorie * dj AT delorie dot com *
7449         * src/global.h, src/main.c, src/print.c: Allow FAB author name to be
7450         set by .Xdefaults
7452 2005-02-10   Dan McMahill * dan AT mcmahill dot net *
7454         * src/action.h: add a few missing prototypes
7456 2005-02-09   Dan McMahill * dan AT mcmahill dot net *
7458         * aclocal.m4: regen
7460 2005-02-09   Dan McMahill * dan AT mcmahill dot net *
7462         * configure: regen after adding --enable-gtk and --disable-xaw
7464 2005-02-09   Dan McMahill * dan AT mcmahill dot net *
7466         * configure.ac: add --enable-gtk and --disable-xaw configure flags
7467         which will turn on the configuring of gtk+ and turn off the
7468         configuring of Athena widgets respectively.  At this time the effect
7469         is that you will not be able to compile if you use these options.
7470         They are added to help support some gtk+ development work.
7472 2005-02-02   Dan McMahill * dan AT mcmahill dot net *
7474         * src/data.c, src/dialog.c, src/printdialog.c: fix a segfault bug
7475         when using <Key>Up and <Key>Down to try and adjust the scale slider
7476         in the print dialog box.  While here fix up the print dialog box so
7477         that you can use the arrow keys to fine adjust the scale slider.
7478         Noted in bug #1111847 filed by Bob Paddock.
7480 2005-02-02   Dan McMahill * dan AT mcmahill dot net *
7482         * src/rotate.c: fix a segfault bug on the pinout window (no null
7483         pointer dereference)
7485 2005-02-02   Dan McMahill * dan AT mcmahill dot net *
7487         * src/Pcb.ad.in: change units to 1/100 mil for pinout window offset
7489 2005-01-30   Dan McMahill * dan AT mcmahill dot net *
7491         * lib/geda.inc: Add DIP44.  Provided by Walter Fetter Lages in patch
7492         #1108881
7494 2005-01-30   Dan McMahill * dan AT mcmahill dot net *
7496         * lib/misc.inc: fix drill size for ZIP packages.  Noted by Walter
7497         Fetter Lages in patch #1108881
7499 2005-01-30   Dan McMahill * dan AT mcmahill dot net *
7501         * lib/connector.inc: fix drill size for PKG_BNC_LAY.  Provided by
7502         Walter Fetter Lages in patch #1108881
7504 2005-01-30   Dan McMahill * dan AT mcmahill dot net *
7506         * lib/geda.inc: add TQFP packages provided by Walter Fetter Lages in
7507         patch #1108881.  More to come from that patch...
7509 2005-01-29   Dan McMahill * dan AT mcmahill dot net *
7511         * doc/Makefile.in: regen
7513 2005-01-29   Dan McMahill * dan AT mcmahill dot net *
7515         * doc/Makefile.am: add flag to keep building the html manual as a
7516         single page.  Having multiple pages seems to do strange things to
7517         the install.
7519 2005-01-29   Dan McMahill * dan AT mcmahill dot net *
7521         * doc/Makefile.in: regen
7523 2005-01-29   Dan McMahill * dan AT mcmahill dot net *
7525         * doc/Makefile.am: fix typo in target for creating texi files from
7526         the ascii list of drills
7528 2005-01-29   Dan McMahill * dan AT mcmahill dot net *
7530         * doc/Makefile.in: regen
7532 2005-01-29   Dan McMahill * dan AT mcmahill dot net *
7534         * doc/Makefile.am, doc/ascii2texi.awk, doc/fractional_size.tab,
7535         doc/letter_size.tab, doc/metric_size.tab, doc/pcb.texi,
7536         doc/wire_size.tab: add an appendix with a big list of drill sizes.
7537         Included are American Standard wire size, letter size, fractional
7538         size, and metric.
7540 2005-01-27   Dan McMahill * dan AT mcmahill dot net *
7542         * NEWS: add news for snapshot 20050127
7544 2005-01-27   Dan McMahill * dan AT mcmahill dot net *
7546         * ChangeLog: update to get ready for next snapshot
7548 2005-01-27   Dan McMahill * dan AT mcmahill dot net *
7550         * Makefile.in, README_FILES/Makefile.in, aclocal.m4,
7551         doc/Makefile.in, example/Makefile.in,
7552         example/libraries/Makefile.in, lib/Makefile.in,
7553         newlib/2_pin_thru-hole_packages/Makefile.in, newlib/Makefile.in,
7554         newlib/analog-devices/Makefile.in, newlib/burr-brown/Makefile.in,
7555         newlib/connectors/Makefile.in, newlib/crystal/Makefile.in,
7556         newlib/cypress/Makefile.in, newlib/electro-optics/Makefile.in,
7557         newlib/generic_SMD_packages/Makefile.in,
7558         newlib/headers/Makefile.in, newlib/msp430/Makefile.in,
7559         newlib/not_vetted_ingo/Makefile.in, newlib/sockets/Makefile.in,
7560         newlib/tests/Makefile.in, newlib/toko/Makefile.in, src/Makefile.in,
7561         src/icons/Makefile.in, src/script/Makefile.in, tools/Makefile.in,
7562         tutorial/Makefile.in: update to latest automake
7564 2005-01-27   Dan McMahill * dan AT mcmahill dot net *
7566         * src/Pcb.ad.in, src/main.c: change pcb to Pcb in a commented out
7567         resource
7569 2005-01-27   Dan McMahill * dan AT mcmahill dot net *
7571         * lib/geda.inc, lib/misc.inc: fix the LED3 and LED5 footprints for
7572         T-1 and T-1 3/4 (3mm and 5mm) standard LED's.  The old footprint had
7573         drill holes which were too small and also there was silk on the pad.
7575 2005-01-26   Dan McMahill * dan AT mcmahill dot net *
7577         * lib/plcc.inc: increase the padsize and drill size for through-hole
7578         PLCC sockets
7580 2005-01-25   DJ Delorie * dj AT delorie dot com *
7582         * src/pcb-menu.res: Oops, take out test entry
7584 2005-01-25   DJ Delorie * dj AT delorie dot com *
7586         * src/menu.c, src/pcb-menu.res, src/resmenu.c, src/resmenu.h: Move
7587         right-click popup menu to pcb-menu.res also.
7589 2005-01-21   Dan McMahill * dan AT mcmahill dot net *
7591         * doc/version.texi: bump date
7593 2005-01-21   Dan McMahill * dan AT mcmahill dot net *
7595         * src/create.c: do not complain about MIN_PINORVIACOPPER on a
7596         mounting hole
7598 2005-01-21   Dan McMahill * dan AT mcmahill dot net *
7600         * src/Pcb.ad.in, src/main.c, src/set.c: - break the status line into 2 lines as it was getting rather long - put the cursor position line below the menu as it is also getting   rather long with the metric display.  Besides keeping the 2 lines from being cutoff on smaller displays,
7601         it seems to avoid some of the strange Xaw issues seen in bug
7602         #1099862 and patch #1042731 where the porthole for the main drawing
7603         area is not properly sized and where the status line is sometimes
7604         covered by the porthole.
7606 2005-01-21   Dan McMahill * dan AT mcmahill dot net *
7608         * src/Makefile.in: regen
7610 2005-01-21   Dan McMahill * dan AT mcmahill dot net *
7612         * src/Makefile.am: for the .test/Pcb apps-default file (the one used
7613         when running before installation), use the pcb-menu.res file in the
7614         source directory.
7616 2005-01-21   Dan McMahill * dan AT mcmahill dot net *
7618         * doc/pcb.texi, src/action.c, src/pcb-menu.res: Add "Selected" and
7619         "All" arguments to DisperseElements so you have the option to not
7620         disperse all of them.  Add corresponding menu choices.
7622 2005-01-18   Dan McMahill * dan AT mcmahill dot net *
7624         * src/print.c: avoid having text overlaying text in the fab drawing
7625         when a very small number of drill sizes are used.  Problem reported
7626         in bug #1100163.  Patch provided by Mick.
7628 2005-01-18   Dan McMahill * dan AT mcmahill dot net *
7630         * configure: regen
7632 2005-01-18   Dan McMahill * dan AT mcmahill dot net *
7634         * configure.ac: add a --disable-rpath flag to disable hardcoding of
7635         the X11 library path.  Default behaviour is unchanged.
7637 2005-01-17   Dan McMahill * dan AT mcmahill dot net *
7639         * src/main.c: use LAYOUT_BOTTOM to always put the status line at the
7640         bottom of the main window.  Gets rid of some annoying bugs on
7641         solaris and some other systems where the status line would sometimes
7642         get covered up when the window was resized.
7644 2005-01-17   Dan McMahill * dan AT mcmahill dot net *
7646         * src/create.c: in the message log produced when a via size has to
7647         be increased to meet the minimum copper, add a location to make it
7648         easier to locate the via.
7650 2005-01-17   Dan McMahill * dan AT mcmahill dot net *
7652         * src/Pcb.ad.in, src/main.c: Increase
7653         Pcb.masterForm*cursorPosition.width to make room for metric display.
7654         Provided by Mark Whitis in patch #1042731
7656 2005-01-17   Dan McMahill * dan AT mcmahill dot net *
7658         * doc/pcb.texi: add docs for ChangeClearSize() action.  Also apply
7659         some other fixes provided in patch #1068842
7661 2005-01-14   Dan McMahill * dan AT mcmahill dot net *
7663         * lib/misc.inc: increase quoting of $2 in PKG_CRYSTAL to avoid the
7664         refdes from being expanded by m4.  Lets you use "X1" as the refdes
7665         in gschem and gsch2pcb
7667 2005-01-13   Dan McMahill * dan AT mcmahill dot net *
7669         * README_FILES/Makefile.in: regen
7671 2005-01-13   Dan McMahill * dan AT mcmahill dot net *
7673         * doc/version.texi: udate data
7675 2005-01-13   Dan McMahill * dan AT mcmahill dot net *
7677         * src/pcb-menu.res: add DisperseElements() to menu
7679 2005-01-13   Dan McMahill * dan AT mcmahill dot net *
7681         * src/control.c, src/main.c, src/resmenu.c: remove some more
7682         compiler warnings
7684 2005-01-13   Dan McMahill * dan AT mcmahill dot net *
7686         * doc/pcb.texi, src/action.c, src/action.h, src/main.c: add a
7687         DisperseElements() action which will disperse all elemnents in a
7688         layout.  The purpose is to spread out elements which are all on top
7689         of each other at the very beginning of a design.
7691 2005-01-06   Dan McMahill * dan AT mcmahill dot net *
7693         * README, README_FILES/LICENSE, README_FILES/MAILING,
7694         README_FILES/Makefile.am, README_FILES/README: remove duplicated
7695         files and fix some out of date info
7697 2005-01-06   Dan McMahill * dan AT mcmahill dot net *
7699         * src/djopt.c, src/rtree.c: cast some pointers to (void *) when
7700         printing debug output.  reduces the # of compiler warnings
7702 2005-01-03   Dan McMahill * dan AT mcmahill dot net *
7704         * src/action.c, src/autoplace.c, src/autoroute.c, src/box.h,
7705         src/buffer.c, src/buffer.h, src/change.c, src/change.h, src/clip.c,
7706         src/clip.h, src/copy.c, src/copy.h, src/create.c, src/create.h,
7707         src/crosshair.c, src/crosshair.h, src/data.c, src/data.h,
7708         src/dev_ps.c, src/dev_rs274x.c, src/draw.c, src/file.c, src/find.c,
7709         src/find.h, src/global.h, src/insert.c, src/insert.h,
7710         src/intersect.c, src/line.c, src/macro.h, src/mirror.c,
7711         src/mirror.h, src/misc.c, src/misc.h, src/move.c, src/move.h,
7712         src/mtspace.c, src/output.c, src/output.h, src/pinout.c,
7713         src/polygon.c, src/polygon.h, src/print.c, src/print.h,
7714         src/printdialog.c, src/rotate.c, src/rotate.h, src/rubberband.c,
7715         src/search.c, src/search.h, src/set.c, src/set.h, src/undo.c,
7716         src/undo.h: change "Location" to "LocationType".  Avoids some
7717         confusion with some compilers (SunPRO in particular) when "Location"
7718         is also used as part of a struct.
7720 2004-12-31   Dan McMahill * dan AT mcmahill dot net *
7722         * src/vendor.c: move the regfree() call _before_ the return from the
7723         function that calls it so that it actually happens.
7725 2004-12-12   Dan McMahill * dan AT mcmahill dot net *
7727         * src/vendor.c: remove a compiler warning
7729 2004-11-20   Dan McMahill * dan AT mcmahill dot net *
7731         * src/set.c: add metric output to the location display.  Based on
7732         patches provided in patch #1042731 by Mark Whitis
7734 2004-11-20   Dan McMahill * dan AT mcmahill dot net *
7736         * src/main.c: adjust Pcb.masterForm*cursorPosition.width to match
7737         the app-defaults file value
7739 2004-11-20   Dan McMahill * dan AT mcmahill dot net *
7741         * src/actionlist.c: revert previous.  Seems to have snuck in by
7742         mistake in the strcmp() cleanup.
7744 2004-11-20   Dan McMahill * dan AT mcmahill dot net *
7746         * src/pcb-menu.res: add <Key>. as the hotkey for toggling 45 degree
7747         line mode.  addressed bug #1069665 filed by Mark Whitis.
7749 2004-11-19   Harry Eaton * haceaton AT users dot sourceforge dot net *
7751         * src/crosshair.c: Snap to pads go to pad centers and allow snapping
7752         to element mark too.
7754         ----------------------------------------------------------------------
7756 2004-11-19   Harry Eaton * haceaton AT users dot sourceforge dot net *
7758         * src/action.c, src/actionlist.c, src/autoplace.c, src/create.c,
7759         src/dev_rs274x.c, src/dialog.c, src/djopt.c, src/draw.c,
7760         src/file.c, src/fileselect.c, src/macro.h, src/main.c, src/misc.c,
7761         src/netlist.c, src/print.c, src/rats.c, src/res_parse.y,
7762         src/search.c, src/selector.c, src/set.c, src/vendor.c: Replace all
7763         strcmp with a macro that tests for NULL pointers
7765         ----------------------------------------------------------------------
7767 2004-11-08   Dan McMahill * dan AT mcmahill dot net *
7769         * src/control.c: Restore translation table for the mode buttons.
7770         This seems to fix the "mode buttons are not responsive" bug reported
7771         in bug #716517 Patch provided by Daniel Nilsson in patch #1023078.
7773 2004-11-07   Harry Eaton * haceaton AT users dot sourceforge dot net *
7775         * src/change.c, src/change.h: Allow element names to be edited over
7776         the name itself
7778         ----------------------------------------------------------------------
7780 2004-11-02   Dan McMahill * dan AT mcmahill dot net *
7782         * src/Pcb.ad.in: Fix the <Key>. binding to toggle 45 degree mode.
7783         Addresses bug #1022800
7785 2004-11-01   Dan McMahill * dan AT mcmahill dot net *
7787         * config.h.in, configure: regen [add support for ElectricFence
7788         debugging.  --enable-efence]
7790 2004-11-01   Dan McMahill * dan AT mcmahill dot net *
7792         * configure.ac: add support for ElectricFence debugging.
7793         --enable-efence
7795 2004-11-01   Dan McMahill * dan AT mcmahill dot net *
7797         * doc/pcb.texi, doc/version.texi: clarify the units used by PCB a
7798         bit
7800 2004-10-31   Dan McMahill * dan AT mcmahill dot net *
7802         * doc/pcb.texi, src/vendor.c: Allow the use of regular expressions
7803         in the resources which specify elements which should not have their
7804         drill holes mapped to the vendor table.
7806 2004-10-30   Dan McMahill * dan AT mcmahill dot net *
7808         * src/pcb-menu.res, src/vendor.c: Modify the LoadVendor() action so
7809         if the file name is not give, the user is presented with a file
7810         selection dialog box to choose a file.  Also add a menu choice for
7811         this.
7813 2004-10-30   Dan McMahill * dan AT mcmahill dot net *
7815         * src/script/pcb.in:  Quote "$@" to keep args whole
7817 2004-10-29   Dan McMahill * dan AT mcmahill dot net *
7819         * src/Makefile.am, src/Makefile.in: add missing vendor.h
7821 2004-10-29   Dan McMahill * dan AT mcmahill dot net *
7823         * doc/pcb.texi: document vendor drill mapping
7825 2004-10-29   Dan McMahill * dan AT mcmahill dot net *
7827         * src/Makefile.in, src/actionlist.c: regen after adding vendor
7828         resource/mapping code
7830 2004-10-29   Dan McMahill * dan AT mcmahill dot net *
7832         * src/Makefile.am, src/action.c, src/change.c, src/change.h,
7833         src/create.c, src/pcb-menu.res, src/vendor.c, src/vendor.h: Add
7834         support for a loadable vendor resource.  The primary purpose is to
7835         import a list of vendor supported or prefered drill sizes.  The
7836         design is then modified to change drills to sizes in the drill list.
7837         Additionally, the vendor resource file may include DRC settings.
7839 2004-10-27   DJ Delorie * dj AT delorie dot com *
7841         * src/resmenu.c: Support multiple actions per line for -action and
7842         -script
7844 2004-10-27   DJ Delorie * dj AT delorie dot com *
7846         * src/pcbtest.sh.in:  Quote "$@" to keep args whole
7848 2004-10-27   DJ Delorie * dj AT delorie dot com *
7850         * src/actionlist.c, src/global.h, src/main.c, src/resmenu.c: Add
7851         -action command line, to execute one action string at startup
7853 2004-10-27   DJ Delorie * dj AT delorie dot com *
7855         * src/pcb-menu.res, src/res_lex.l: Add support for comments.
7856         Comments begin with '#' and extend to the end of the line.
7858 2004-10-27   DJ Delorie * dj AT delorie dot com *
7860         * doc/pcb.texi, doc/version.texi: Document resource file comments
7862 2004-10-26   Dan McMahill * dan AT mcmahill dot net *
7864         * src/dialog.c: remove unused variable, make sure return returns a
7865         value on a non-void fn
7867 2004-10-25   Dan McMahill * dan AT mcmahill dot net *
7869         * src/dialog.c: Add date and compile time to the About dialog.
7870         Patch provided as patch #1053444 by Bob Paddock.
7872 2004-10-25   Dan McMahill * dan AT mcmahill dot net *
7874         * src/buffer.c: Fix one more (last one maybe?) hires bug where when
7875         converting a selection or buffer to element, the soldermask relief
7876         is 100x smaller than the default.  Address bug report #1049033.
7878 2004-10-25   Dan McMahill * dan AT mcmahill dot net *
7880         * Makefile.in, README_FILES/Makefile.in, example/Makefile.in,
7881         example/libraries/Makefile.in, lib/Makefile.in,
7882         newlib/2_pin_thru-hole_packages/Makefile.in, newlib/Makefile.in,
7883         newlib/analog-devices/Makefile.in, newlib/burr-brown/Makefile.in,
7884         newlib/connectors/Makefile.in, newlib/crystal/Makefile.in,
7885         newlib/cypress/Makefile.in, newlib/electro-optics/Makefile.in,
7886         newlib/generic_SMD_packages/Makefile.in,
7887         newlib/headers/Makefile.in, newlib/msp430/Makefile.in,
7888         newlib/not_vetted_ingo/Makefile.in, newlib/sockets/Makefile.in,
7889         newlib/tests/Makefile.in, newlib/toko/Makefile.in, src/Makefile.in,
7890         src/icons/Makefile.in, src/script/Makefile.in, tools/Makefile.in,
7891         tutorial/Makefile.in: regen so that all Makefile.in files came from
7892         the same version of automake
7894 2004-10-25   Dan McMahill * dan AT mcmahill dot net *
7896         * doc/version.texi: update date on manual since there have been
7897         additions
7899 2004-10-23   Dan McMahill * dan AT mcmahill dot net *
7901         * doc/pcb.texi: minor fixups to make this happy again with the new
7902         texinfo.tex
7904 2004-10-23   Dan McMahill * dan AT mcmahill dot net *
7906         * doc/texinfo.tex: update to texinfoversion 2004-09-06.16
7908 2004-10-21   Harry Eaton * haceaton AT users dot sourceforge dot net *
7910         * src/change.c: Fix borking of name_tree when changing an element
7911         name
7913         ----------------------------------------------------------------------
7915 2004-10-21   Dan McMahill * dan AT mcmahill dot net *
7917         * doc/Makefile.in: regen
7919 2004-10-21   Dan McMahill * dan AT mcmahill dot net *
7921         * doc/Makefile.am: - override the mostlyclean-aminfo target to avoid deleting the .dvi,
7922         .html, .pdf, and .ps versions of the manual with 'make clean'.
7923         Since these files already go in the distfile, we don't want a 'make
7924         clean' to remove them as that would force a dependency on TeX.  This
7925         issue was noted by Stuart Brorson.  - while here let automake handle the html and pdf conversions
7926         automatically.  This ends up defaulting to texi2pdf for PDF which
7927         seems to do a better job than ps2pdf anyway.
7929 2004-10-21   Dan McMahill * dan AT mcmahill dot net *
7931         * aclocal.m4, configure: regen
7933 2004-10-21   Dan McMahill * dan AT mcmahill dot net *
7935         * configure.ac: check for ps2pdf which is used for building the
7936         refcard
7938 2004-10-21   Dan McMahill * dan AT mcmahill dot net *
7940         * acinclude.m4: improve the quoting so that aclocal-1.9.2 is happier
7942 2004-10-20   Dan McMahill * dan AT mcmahill dot net *
7944         * doc/pcb.texi: minor fixup in the newlib element creation guide.
7946 2004-10-20   Dan McMahill * dan AT mcmahill dot net *
7948         * doc/pcb.texi: Apply several improvements from Bob Paddock
7949         including: - spell check - improved section on modifying newlib footprints - add section on searching for elements - add section on measurements - add appendix on regular expressions Some texinfo fixes from me.
7951 2004-10-17   DJ Delorie * dj AT delorie dot com *
7953         * src/resmenu.c: Sort actions by modifier so that both Ctrl<Key>x
7954         and <Key>x work.
7956 2004-10-17   DJ Delorie * dj AT delorie dot com *
7958         * src/actionlist.c: Regenerated
7960 2004-10-17   DJ Delorie * dj AT delorie dot com *
7962         * src/action.c: Add FlagHaveRegex (have_regex) so that the
7963         SelectByName menu entries work.
7965 2004-10-12   DJ Delorie * dj AT delorie dot com *
7967         * src/global.h: Oops, overzealous patching ;-)
7969 2004-10-12   DJ Delorie * dj AT delorie dot com *
7971         * src/global.h: add non-gcc definition of ATTRIBUTE_UNUSED
7973 2004-10-12   Dan McMahill * dan AT mcmahill dot net *
7975         * src/global.h: add missing #else clause in defining
7976         ATTRIBUTE_UNUSED on non-gcc or older gcc version.  Problem noted by
7977         Dave McGuire.
7979 2004-10-08   DJ Delorie * dj AT delorie dot com *
7981         * src/rats.c: Check for numberless pins.
7983 2004-10-08   DJ Delorie * dj AT delorie dot com *
7985         * src/print.c: Print plated and unplated hole counts on separate
7986         lines.
7988 2004-10-06   DJ Delorie * dj AT delorie dot com *
7990         * src/print.c: Avoid checking pin numbers for unnumbered pins.
7992 2004-09-24   DJ Delorie * dj AT delorie dot com *
7994         * src/actionlist.c, src/data.c, src/dialog.c, src/global.h,
7995         src/main.c: Add command history to : widget.
7997 2004-09-24   Dan McMahill * dan AT mcmahill dot net *
7999         * README.snapshots: minor tweaks to instructions
8001 2004-09-21   Harry Eaton * haceaton AT users dot sourceforge dot net *
8003         * src/draw.c, src/move.c, src/pinout.c: Fixes for pinout window
8004         crash. Still need to fix pinout scroll range at high zoom
8006 2004-09-21   Harry Eaton * haceaton AT users dot sourceforge dot net *
8008         * src/misc.c: Fix error on non-quarter circle arc bounding box
8009         calculations
8011 2004-09-21   Harry Eaton * haceaton AT users dot sourceforge dot net *
8013         * src/menu.c: Don't ask for X,Y coordinates in third-button pop-up
8014         menu; the coordinate is where the cursor was when the menu was
8015         popped up.
8017 2004-09-21   Harry Eaton * haceaton AT users dot sourceforge dot net *
8019         * src/draw.c: Fixed return value of Emark_callback. (Didn't really
8020         matter, we weren't count number of marks drawn).
8022 2004-09-21   Harry Eaton * haceaton AT users dot sourceforge dot net *
8024         * src/action.c: Allow Ctrl-drag to copy objects in arrow mode.
8026 2004-09-21   Harry Eaton * haceaton AT users dot sourceforge dot net *
8028         * src/polygon.c: Fix bug with polygon clearances from other layers
8029         in the group.
8031 2004-09-08   Dan McMahill * dan AT mcmahill dot net *
8033         * src/set.c: add an extra digit to the display of metric
8034         measurements.  Patch from Gabriel Paubert.
8036 2004-09-04   Dan McMahill * dan AT mcmahill dot net *
8038         * NEWS: mention the background image in 20040903
8040 2004-09-03   Dan McMahill * dan AT mcmahill dot net *
8042         * NEWS: update with pcb-20040903 news items
8044 2004-09-03   Dan McMahill * dan AT mcmahill dot net *
8046         * ChangeLog: update to get ready for next snapshot
8048 2004-09-03   Dan McMahill * dan AT mcmahill dot net *
8050         * README.snapshots: add more detailed snapshot instructions
8052 2004-08-30   Dan McMahill * dan AT mcmahill dot net *
8054         * src/main.c, src/resmenu.h: add missing headers
8056 2004-08-30   Dan McMahill * dan AT mcmahill dot net *
8058         * src/parse_y.y: add missing prototype
8060 2004-08-30   Dan McMahill * dan AT mcmahill dot net *
8062         * src/find.c: remove unused variable
8064 2004-08-30   Dan McMahill * dan AT mcmahill dot net *
8066         * src/res_lex.l: add missing prototype
8068 2004-08-30   Dan McMahill * dan AT mcmahill dot net *
8070         * src/res_parse.y: clean up a few more compiler warnings
8072 2004-08-30   Dan McMahill * dan AT mcmahill dot net *
8074         * src/djopt.c: get rid of a bunch of format string compiler warnings
8075         along with some unused variable warnings
8077 2004-08-30   Dan McMahill * dan AT mcmahill dot net *
8079         * src/action.c, src/autoplace.c, src/autoroute.c, src/buffer.c,
8080         src/change.c, src/clip.c, src/command.c, src/compat.c,
8081         src/control.c, src/copy.c, src/create.c, src/crosshair.c,
8082         src/data.c, src/dev_ps.c, src/dev_rs274x.c, src/dialog.c,
8083         src/djopt.c, src/draw.c, src/drill.c, src/error.c, src/file.c,
8084         src/fileselect.c, src/find.c, src/global.h, src/gui.c, src/heap.c,
8085         src/insert.c, src/intersect.c, src/lgdialog.c, src/library.c,
8086         src/line.c, src/log.c, src/main.c, src/menu.c, src/mirror.c,
8087         src/misc.c, src/move.c, src/mtspace.c, src/mymem.c, src/netlist.c,
8088         src/output.c, src/parse_l.l, src/parse_y.y, src/pinout.c,
8089         src/polygon.c, src/print.c, src/printdialog.c, src/printpanner.c,
8090         src/rats.c, src/remove.c, src/report.c, src/res_lex.l,
8091         src/res_parse.y, src/resmenu.c, src/rotate.c, src/rtree.c,
8092         src/rubberband.c, src/search.c, src/select.c, src/selector.c,
8093         src/set.c, src/sizedialog.c, src/undo.c, src/vector.c: rework the
8094         lines which have static char *rcsid=....  to include an unused
8095         attribute on gcc.  This gets rid of a bunch of gcc -Wall warnings
8096         which can cause some actual bugs to be lost in the noise.  While here, make sure we include config.h and also dmalloc.h if
8097         dmalloc debugging has been requested.
8099 2004-08-29   Dan McMahill * dan AT mcmahill dot net *
8101         * src/draw.c: fix a "=" instead of "==" bug
8103 2004-08-28   Dan McMahill * dan AT mcmahill dot net *
8105         * README.cvs: update this to more closely match the current reality
8107 2004-08-28   Dan McMahill * dan AT mcmahill dot net *
8109         * src/actionlist.c: add actionlist.c for non-maintainers
8111 2004-08-28   Dan McMahill * dan AT mcmahill dot net *
8113         * configure: regen (if we are using gcc then add -Wall)
8115 2004-08-28   Dan McMahill * dan AT mcmahill dot net *
8117         * configure.ac: if we are using gcc then add -Wall
8119 2004-08-27   Dan McMahill * dan AT mcmahill dot net *
8121         * src/draw.c: add missing header (for isdigit)
8123 2004-08-27   Dan McMahill * dan AT mcmahill dot net *
8125         * src/dev_rs274x.c: use long int in some places to avoid assigning a
8126         long int to an int
8128 2004-08-27   Dan McMahill * dan AT mcmahill dot net *
8130         * src/action.c, src/rtree.c: remove some unused variables
8132 2004-08-27   Dan McMahill * dan AT mcmahill dot net *
8134         * src/output.c, src/resmenu.c: add a missing header
8136 2004-08-27   Dan McMahill * dan AT mcmahill dot net *
8138         * src/main.c: remove an unused variable
8140 2004-08-27   Dan McMahill * dan AT mcmahill dot net *
8142         * doc/version.texi: bump updated date
8144 2004-08-27   Dan McMahill * dan AT mcmahill dot net *
8146         * doc/Makefile.in: regen (add pcb.1 to EXTRA_DIST)
8148 2004-08-27   Dan McMahill * dan AT mcmahill dot net *
8150         * doc/Makefile.am: add pcb.1 to EXTRA_DIST
8152 2004-08-27   Dan McMahill * dan AT mcmahill dot net *
8154         * doc/pcb.texi: document the ExecuteFile() action and the -script
8155         command line option
8157 2004-08-27   Dan McMahill * dan AT mcmahill dot net *
8159         * src/global.h, src/main.c, src/misc.c, src/resmenu.c: add an
8160         ExecuteFile(file) action which executes the actions contained in the
8161         specified file.  In addition, add a "-script <filename>" option
8162         which will invoke ExecuteFile(<filename>) upon startup.  Eventually
8163         (but not yet) this will be able to be used for things like
8164         generating postscript and RS-274-X output from the command line.
8166 2004-08-26   Dan McMahill * dan AT mcmahill dot net *
8168         * src/resmenu.c: Fix a minor memory leak bug which allocated space
8169         for 10 more pointers everytime invoke_action() was called.  While here add a few comments about whats going on in this function.
8171 2004-08-25   Dan McMahill * dan AT mcmahill dot net *
8173         * doc/pcb.texi: update the table of the output files generated by
8174         PCB
8176 2004-08-25   Dan McMahill * dan AT mcmahill dot net *
8178         * src/pcb-menu.res: use "Reference Designator" instead of "Name on
8179         PCB" as the former is more standard
8181 2004-08-25   Dan McMahill * dan AT mcmahill dot net *
8183         * src/file.c: exclude Makefile, Makefile.am, and Makefile.in as
8184         valid element names as these may reside in a lib directory
8186 2004-08-25   Dan McMahill * dan AT mcmahill dot net *
8188         * doc/pcb.texi: add a brief comment about what M4 is and where to
8189         find more info
8191 2004-08-25   Dan McMahill * dan AT mcmahill dot net *
8193         * src/action.c: add one more Usage message.  this time for the
8194         RemoveSelected() action
8196 2004-08-25   Dan McMahill * dan AT mcmahill dot net *
8198         * src/main.c, src/misc.c: allow --version, --help, and --copyright
8199         to also work since those are typically supported by GNU programs.
8201 2004-08-25   Dan McMahill * dan AT mcmahill dot net *
8203         * src/misc.c: In the Usage() function be sure to restore stderr at
8204         the beginning since this function calls exit().  This will ensure
8205         that the Usage() message can actually be seen in all cases.  Fixes
8206           the following:  clock AT oberon:~$ pcb --version    clock AT oberon:~$ noted by Karel Kulhav on the gEDA mailing
8207         list.
8209 2004-08-24   Dan McMahill * dan AT mcmahill dot net *
8211         * doc/Makefile.in: regen after adding pcb.1
8213 2004-08-24   Dan McMahill * dan AT mcmahill dot net *
8215         * doc/Makefile.am, doc/pcb.1: add a man page which says where to
8216         look for the manual
8218 2004-07-31   Dan McMahill * dan AT mcmahill dot net *
8220         * src/find.c: avoid 'inline' unless we're using gcc.
8222 2004-07-31   Dan McMahill * dan AT mcmahill dot net *
8224         * src/res_parse.y: use foo?foo:bar instead of foo?:bar as the latter
8225         is a gcc extension.  Makes the irix c compiler happy.
8227 2004-07-29   Dan McMahill * dan AT mcmahill dot net *
8229         * lib/geda.inc: update the 150 and 300 mil width SOIC packages per
8230         the IPC recommendations at footprint.ipc.org.  Partially addresses
8231         the "silk on pad" bug noted in bug report #995401.
8233 2004-07-29   Dan McMahill * dan AT mcmahill dot net *
8235         * lib/smt.inc: improve the decision on adding or not adding a silk
8236         arc on the COMMON_SMT_DIL_MIL macro
8238 2004-07-17   Harry Eaton * haceaton AT users dot sourceforge dot net *
8240         * src/print.c: Only clear silk on same side as pad. Patch
8241         contributed by burto
8243 2004-07-10   DJ Delorie * dj AT delorie dot com *
8245         * doc/pcb.texi, src/draw.c, src/draw.h, src/global.h, src/main.c,
8246         src/misc.c: Add limited support for a behind-the-board background
8247         image.
8249 2004-07-08   Dan McMahill * dan AT mcmahill dot net *
8251         * src/rubberband.c: Fix a bug related to checking for the
8252         intersection of a circular region defined by an line end point and
8253         its radius and a rectangular pin/pad.  The old code looked for the
8254         intersection of the smallest square which encloses the circular
8255         region and the rectangular pin/pad region.  However this method
8256         claims that there are intersections when in fact there are not.  For
8257         example a very wide trace has a significant area enclosed by the
8258         square which encloses the circular region defined by the line end
8259         and radius that is not enclosed by the circular region.  The new code actually looks for intersection of the circular region
8260         and the square region.
8262 2004-07-07   Dan McMahill * dan AT mcmahill dot net *
8264         * src/rubberband.c: fix some errors where the diameter was used
8265         where the radius should have been used when looking for circular
8266         regions which intersect.  Fixes bug report #978412.  Partial patch
8267         provided in the bug report, additional bugs fixed by me.  Note: a bug still exists when calculating line -> rectangular pad
8268         intersection.  A fix will be coming.
8270 2004-07-02   Harry Eaton * haceaton AT users dot sourceforge dot net *
8272         * src/undo.c: Fix UndoChangeMaskSize assuming LINESTRUCT has the
8273         mask parameter
8275 2004-06-30   Dan McMahill * dan AT mcmahill dot net *
8277         * src/pcbtest.sh.in, src/script/pcb.in: when running under gdb set
8278         XAPPLRESDIR and unset XUSERFILESEARCHPATH
8280 2004-06-30   Dan McMahill * dan AT mcmahill dot net *
8282         * src/resmenu.c: make 'str' static so that the memory allocated by
8283         MyStrdup() can properly be freed on the next call of invoke_action.
8285 2004-06-25   DJ Delorie * dj AT delorie dot com *
8287         * src/pcb-menu.res: Change size of selected objects, fix enlarge
8288         options to actually enlarge (bug 978408)
8290 2004-06-25   DJ Delorie * dj AT delorie dot com *
8292         * src/menu.c: Cut and Copy from the popup menu now wait for a click
8293         before acting (bug 978406)
8295 2004-06-24   DJ Delorie * dj AT delorie dot com *
8297         * src/Pcb.ad.in, src/main.c, src/menu.c, src/pcb-menu.res,
8298         src/resmenu.c, src/resmenu.h: Add support for menu accelerators.
8299         Replace hotkey translations with menu accelerators where
8300         appropriate.
8302 2004-06-20   DJ Delorie * dj AT delorie dot com *
8304         * src/Makefile.am, src/Makefile.in: Run gather-actions only if
8305         maintainer-mode
8307 2004-06-15   Harry Eaton * haceaton AT users dot sourceforge dot net *
8309         * src/action.c, src/autoroute.c, src/const.h, src/menu.c,
8310         src/pcb-menu.res: Fix live routing menu handling; patch segfault on
8311         breaking element with no element specified.  Autorouter tweaks.
8313 2004-06-10   Dan McMahill * dan AT mcmahill dot net *
8315         * lib/geda.inc: add a few more 400mil width DIP packages (DIPxM)
8317 2004-06-10   Dan McMahill * dan AT mcmahill dot net *
8319         * src/dev_rs274x.c: make sure we define all aperture codes used by
8320         arcs.  Fixes the bug reported in bug #969903 by Werner Hoch where an
8321         arc of a width not used by anything else in the layout does not have
8322         its aperture defined.
8324 2004-06-09   Dan McMahill * dan AT mcmahill dot net *
8326         * src/find.c: fix the function name strings passed to MyCalloc().
8328 2004-06-09   Dan McMahill * dan AT mcmahill dot net *
8330         * src/pcb-menu.res: Do not arbitrarily change the zoom setting
8331         whenever running DRC.  Especially if there are no DRC errors, we
8332         don't want/need to change the zoom.  Noted by Mark Becker.
8334 2004-06-09   Dan McMahill * dan AT mcmahill dot net *
8336         * src/pcb-menu.res: Add 0.5 and 0.1 mil grid selections.  Requested
8337         in RFE #876549 by John Griessen.
8339 2004-06-09   Dan McMahill * dan AT mcmahill dot net *
8341         * src/find.c, src/misc.c, src/misc.h: Save layerstack settings prior
8342         to running DRC and restore them afterwards so that things like
8343         current input layer are not changed by DRC.  Noted by Mark Becker.
8345 2004-06-05   Dan McMahill * dan AT mcmahill dot net *
8347         * configure: regen after rpath flag order change
8349 2004-06-05   Dan McMahill * dan AT mcmahill dot net *
8351         * configure.ac: change the order in the list of rpath flags which
8352         are tried out.  This is because when -R was tried first, it was
8353         accepted on linux systems because even though gcc didn't like it, it
8354         still exited with 0.  The new order seems to do the right thing on
8355         solaris, linux, and netbsd as the compiler now actually gives an
8356         error code for the flags it does not like.
8358 2004-06-05   DJ Delorie * dj AT delorie dot com *
8360         * src/djopt.c: Be even more picky about which line is chosen as an
8361         example.
8363 2004-06-04   Dan McMahill * dan AT mcmahill dot net *
8365         * configure: regen (If --enable-dmalloc is given but dmalloc is not
8366         found then error out instead of disabling dmalloc
8368 2004-06-04   Dan McMahill * dan AT mcmahill dot net *
8370         * configure.ac: If --enable-dmalloc is given but dmalloc is not
8371         found then error out instead of disabling dmalloc
8373 2004-06-03   Dan McMahill * dan AT mcmahill dot net *
8375         * src/action.c: add usage output for several more actions
8377 2004-06-03   Dan McMahill * dan AT mcmahill dot net *
8379         * src/action.c: Add usage output if the input arguments are not
8380         quite right for several actions.  Still have more to add, but this
8381         is a start.
8383 2004-06-02   Dan McMahill * dan AT mcmahill dot net *
8385         * src/default_font:  add @ character.  Absence noted by Dave
8386         McGuire.
8388 2004-06-01   Dan McMahill * dan AT mcmahill dot net *
8390         * src/pcb-menu.res: add a GetXY() to the 'copy selection to buffer'
8391         menu.  Needed to have a resonable reference point for the copy.
8392         Noted by Mark Becker.
8394 2004-06-01   Dan McMahill * dan AT mcmahill dot net *
8396         * configure: regen (fail configuration if Xaw is not found)
8398 2004-06-01   Dan McMahill * dan AT mcmahill dot net *
8400         * configure.ac: fail configuration if Xaw is not found
8402 2004-05-31   Dan McMahill * dan AT mcmahill dot net *
8404         * README.snapshots: add a note to remember to do something better
8405         with versions on the next snapshot
8407 2004-05-31   Dan McMahill * dan AT mcmahill dot net *
8409         * NEWS: remove duplicated line
8411 2004-05-31   Dan McMahill * dan AT mcmahill dot net *
8413         * ChangeLog: update changelog with cvs2cl.pl.  This file previously
8414         was empty.
8416 2004-05-31   Dan McMahill * dan AT mcmahill dot net *
8418         * doc/version.texi: bump updated date to match snapshot date
8420 2004-05-31   Dan McMahill * dan AT mcmahill dot net *
8422         * NEWS: add some release notes for the upcoming 20040530 snapshot
8424 2004-05-29   Dan McMahill * dan AT mcmahill dot net *
8426         * src/change.c: add missing prototype
8428 2004-05-29   Dan McMahill * dan AT mcmahill dot net *
8430         * globalconst.h: set MASKFRAME to be 3 (mils) instead of 0.  This
8431         way the soldermask opening will be larger than the pads for
8432         components defined using the older style format which did not
8433         explicitly give soldermask relief size.
8435 2004-05-29   Dan McMahill * dan AT mcmahill dot net *
8437         * doc/pcb.texi: document the SetFlag(), ClrFlag(), and ChangeFlag()
8438         actions
8440 2004-05-29   Dan McMahill * dan AT mcmahill dot net *
8442         * doc/pcb.texi: correct location for Pcb appdefaults file
8444 2004-05-29   Dan McMahill * dan AT mcmahill dot net *
8446         * src/pcbtest.sh.in, src/script/pcb.in: For the pcb wrapper script,
8447         if the first argument is "-gdb", pick off that flag and run pcb
8448         inside of the gdb debugger.  Should simplify debugging a bit.
8450 2004-05-29   Dan McMahill * dan AT mcmahill dot net *
8452         * src/action.c, src/action.h, src/change.c, src/change.h,
8453         src/main.c: Add SetFlag, ClrFlag, and ChangeFlag actions.  These
8454         currently let you set, clear, or change the square, octagon, or
8455         thermal pads.  For example :SetFlag(SelectedVias,thermal)
8456         :ClrFlag(SelectedObjects,square) :ChangeFlag(SelectedPads,octagon,1)
8458 2004-05-28   Dan McMahill * dan AT mcmahill dot net *
8460         * src/djopt.c: Fix the segfault bug noted in bug report #959073 by
8461         Bob Paddock.  While here, also fix a bug which can potentially cause
8462         a floating point exception.
8464 2004-05-28   Dan McMahill * dan AT mcmahill dot net *
8466         * config.h.in, configure: regen after adding rint() test
8468 2004-05-28   Dan McMahill * dan AT mcmahill dot net *
8470         * configure.ac: add test for rint()
8472 2004-05-27   Dan McMahill * dan AT mcmahill dot net *
8474         * doc/version.texi: bump date
8476 2004-05-27   Dan McMahill * dan AT mcmahill dot net *
8478         * doc/pcb.texi: add INFO-DIR-SECTION Miscellaneous per bug #957369
8479         submitted by Mike Frysinger
8481 2004-05-23   Dan McMahill * dan AT mcmahill dot net *
8483         * lib/smt.inc: update the COMMON_SMT_2PAD_MIL macro to the newer
8484         element format.  With this change, the soldermask relief and
8485         clearance can now be specified for the pads.  This fixes the issue
8486         noted recently on the geda mailing list about 0805 footprints from
8487         the ~geda library having soldermask openings which are the same size
8488         as the pads.
8490 2004-05-14   Dan McMahill * dan AT mcmahill dot net *
8492         * src/dev_ps.c: make sure we get the preamble in all EPS output
8493         files.  Bug noted by David Koski
8495 2004-05-14   Dan McMahill * dan AT mcmahill dot net *
8497         * lib/geda.inc: add SOJ packages (lots of them)
8499 2004-05-14   Dan McMahill * dan AT mcmahill dot net *
8501         * lib/smt.inc: fix a hi-res bug in the polarity arc silk for some
8502         SMT DIL pkgs
8504 2004-05-14   Dan McMahill * dan AT mcmahill dot net *
8506         * src/res_parse.y: add missing string.h (for strcmp).  Noted by Dave
8507         McGuire
8509 2004-05-14   Dan McMahill * dan AT mcmahill dot net *
8511         * src/pcbtest.sh.in, src/script/pcb.in: unset XUSERFILESEARCHPATH
8512         which causes a conflict with XAPPLRESDIR
8514 2004-05-14   Dan McMahill * dan AT mcmahill dot net *
8516         * src/resource.h: add a comment
8518 2004-05-13   Dan McMahill * dan AT mcmahill dot net *
8520         * src/misc.c: correct the pin/pad bounding box calculation.  Bug
8521         noted by David Koski.
8523 2004-05-05   Dan McMahill * dan AT mcmahill dot net *
8525         * src/macro.h: fix typo in comment
8527 2004-05-02   DJ Delorie * dj AT delorie dot com *
8529         * src/djopt.c, src/pcb-menu.res: Add flag to default to optimizing
8530         only autorouted nets, plus menu option to control it.
8532 2004-05-02   DJ Delorie * dj AT delorie dot com *
8534         * src/resmenu.c: Don't use local var for widget name.
8536 2004-05-02   DJ Delorie * dj AT delorie dot com *
8538         * src/djopt.c: Fix bug wrt intersecting layer groups in miter
8540 2004-05-02   DJ Delorie * dj AT delorie dot com *
8542         * src/menu.c, src/resmenu.c: Remove gcc-isms
8544 2004-05-01   Dan McMahill * dan AT mcmahill dot net *
8546         * doc/pcb.texi: fix typo
8548 2004-05-01   Dan McMahill * dan AT mcmahill dot net *
8550         * src/resmenu.c: protect the inclusion of string.h with
8551         HAVE_STRING_H
8553 2004-04-30   Dan McMahill * dan AT mcmahill dot net *
8555         * lib/minicircuits.inc: adjust spacing between the 2 rows of pins to
8556         better match the datasheet
8558 2004-04-30   Dan McMahill * dan AT mcmahill dot net *
8560         * lib/smt.inc: clarify a comment
8562 2004-04-30   Dan McMahill * dan AT mcmahill dot net *
8564         * src/Pcb.ad.in, src/action.c, src/file.c, src/find.c,
8565         src/global.h, src/macro.h, src/main.c, src/parse_y.y,
8566         src/sizedialog.c: Add some DRC checking of silkscreen layers.
8567         Currently this check looks for minimum widths of silk lines.
8568         Currently not checked are: - silk polygons - silk text - wide silk lines made by overlapping several narrow silk lines
8570 2004-04-30   Dan McMahill * dan AT mcmahill dot net *
8572         * src/find.c: put a string which is repeated several times into a
8573         #define and use that macro instead.
8575 2004-04-29   Dan McMahill * dan AT mcmahill dot net *
8577         * src/autoplace.h, src/autoroute.h, src/djopt.h, src/drill.h,
8578         src/heap.h, src/intersect.h, src/netlist.h, src/output.c,
8579         src/rats.c, src/resmenu.h, src/rtree.h, src/selector.c,
8580         src/vector.h: RCS Id police
8582 2004-04-29   Dan McMahill * dan AT mcmahill dot net *
8584         * src/Makefile.in: regen
8586 2004-04-29   Dan McMahill * dan AT mcmahill dot net *
8588         * src/Makefile.am: minor fixes to get the distcheck target working
8589         again.
8591 2004-04-29   Dan McMahill * dan AT mcmahill dot net *
8593         * doc/pcb.texi: add a note about the centroid and bill of materials
8594         output.  While here add a feature list near the top of the document
8595         to help a new user quickly answer the question "what is pcb and what
8596         can it do?".
8598 2004-04-29   Dan McMahill * dan AT mcmahill dot net *
8600         * src/resmenu.c: RCS Id and config.h police
8602 2004-04-29   Dan McMahill * dan AT mcmahill dot net *
8604         * src/print.c: When printing to RS-274-X also generate a centroid
8605         data file (X-Y data) with the required data to drive a pick and
8606         place machine.  The centroid of each part is calculated from the
8607         center of each pin/pad.  The rotation is determined by looking at
8608         the angle of pin1 relative to the centroid.  In addition, generate a bill of materials file.  This lists the
8609         part, quantity, and list of reference designators.
8611 2004-04-29   Dan McMahill * dan AT mcmahill dot net *
8613         * src/res_lex.l, src/res_parse.y, src/resmenu.c: fix some 64-bit
8614         bugs to get this working on my alpha.  Of prime importance, an int
8615         isn't big enough to hold a pointer.
8617 2004-04-29   Dan McMahill * dan AT mcmahill dot net *
8619         * src/resource.h: RCS Id police
8621 2004-04-28   Dan McMahill * dan AT mcmahill dot net *
8623         * src/res_lex.l, src/res_parse.y: RCS Id police
8625 2004-04-28   Dan McMahill * dan AT mcmahill dot net *
8627         * src/misc.c: put variable declarations at the beginning of
8628         functions.  Avoids syntax error on gcc-2.95
8630 2004-04-28   Dan McMahill * dan AT mcmahill dot net *
8632         * lib/amp.inc, lib/bourns.inc, lib/johnstech.inc,
8633         lib/minicircuits.inc, lib/panasonic.inc: fix the EXTRACT_END flag
8635 2004-04-28   Dan McMahill * dan AT mcmahill dot net *
8637         * lib/Makefile.am, lib/Makefile.in, lib/common.m4, lib/cts.inc: add
8638         cts library containing CTS series 742/3/4/5/6 resistor packs
8640 2004-04-28   Dan McMahill * dan AT mcmahill dot net *
8642         * lib/johnstech.inc, lib/smt.inc: fix refdes silk size
8644 2004-04-28   Dan McMahill * dan AT mcmahill dot net *
8646         * lib/dil.inc, lib/geda.inc: Fix SDIP (shrink DIP) footprints.
8647         Patch from Wojciech Kazubski in RFE #929697 slightly modified by me.
8649 2004-04-28   Dan McMahill * dan AT mcmahill dot net *
8651         * lib/panasonic.inc: Correct the spacing between the rows of pads.
8652         Also fix one of the pad widths on a footprint which was obviously
8653         broken.
8655 2004-04-28   Dan McMahill * dan AT mcmahill dot net *
8657         * lib/smt.inc: hires-ify the COMMON_SMT_DIL_MIL macro.  The macro
8658         already took input arguments in 1/1000 mil so now we simple only
8659         reduce the resolution to 1/100 mil in the output instead of to 1
8660         mil.  This also helps the COMMON_SMT_DIL_MM which calls the
8661         COMMON_SMT_DIL_MIL macro.
8663 2004-04-27   Dan McMahill * dan AT mcmahill dot net *
8665         * src/tmp.txt: test commit #3
8667 2004-04-27   Dan McMahill * dan AT mcmahill dot net *
8669         * src/tmp.txt: test commit #2
8671 2004-04-27   Dan McMahill * dan AT mcmahill dot net *
8673         * src/tmp.txt: test commit
8675 2004-04-27   DJ Delorie * dj AT delorie dot com *
8677         * doc/version.texi: add version.texi for non-maintainers
8679 2004-04-27   DJ Delorie * dj AT delorie dot com *
8681         * doc/pcb.texi, src/Makefile.am, src/Makefile.in, src/Pcb.ad.in,
8682         src/Pcb.ad.raw, src/Pcb.ad.small, src/action.h, src/dialog.c,
8683         src/gather-actions, src/global.h, src/gui.c, src/main.c,
8684         src/menu.c, src/menu.h, src/misc.c, src/misc.h, src/pcb-menu.res,
8685         src/res_lex.l, src/res_parse.y, src/resmenu.c, src/resmenu.h,
8686         src/resource.h, src/set.c, src/sizedialog.c: add file-driven menus
8688 2004-04-27   DJ Delorie * dj AT delorie dot com *
8690         * Makefile.in, ylwrap: add ylwrap
8692 2004-04-27   Harry Eaton * haceaton AT users dot sourceforge dot net *
8694         * src/autoroute.c: More autorouter improvements, some bug fixes
8696 2004-04-26   Harry Eaton * haceaton AT users dot sourceforge dot net *
8698         * src/autoroute.c, src/mtspace.c: Significant improvements to
8699         autorouting of congested designs
8701 2004-04-25   Harry Eaton * haceaton AT users dot sourceforge dot net *
8703         * src/global.h, src/rtree.c: Fix rtree memory management bugs
8705 2004-04-19   Harry Eaton * haceaton AT users dot sourceforge dot net *
8707         * src/rtree.c: Fix a bug that allocates too much memory to store
8708         pointers
8710 2004-04-19   Harry Eaton * haceaton AT users dot sourceforge dot net *
8712         * src/buffer.c, src/move.c: Fix some bugs with rtree based name
8713         handling
8715 2004-04-19   Harry Eaton * haceaton AT users dot sourceforge dot net *
8717         * src/autoroute.c, src/find.c, src/rats.c: More autorouter
8718         improvements. Improve trace appearance, slightly speed up and allow
8719         it to use power planes
8721 2004-04-18   Harry Eaton * haceaton AT users dot sourceforge dot net *
8723         * src/action.c, src/change.c, src/copy.c, src/file.c, src/insert.c,
8724         src/move.c, src/polygon.c, src/polygon.h, src/remove.c,
8725         src/rotate.c: Fix pin-in-poly bug; because polys can overlap can
8726         never check one single polygon.
8728 2004-04-12   Harry Eaton * haceaton AT users dot sourceforge dot net *
8730         * src/autoroute.c, src/djopt.c: Restore mistakenly lost lines in
8731         djopt, and various improvements to auto-router
8733 2004-04-11   Harry Eaton * haceaton AT users dot sourceforge dot net *
8735         * src/move.c: Argh, another attempt to properly fix the bug
8737 2004-04-11   Harry Eaton * haceaton AT users dot sourceforge dot net *
8739         * src/djopt.c, src/move.c: Fixup some errors introduced in last
8740         patch
8742 2004-04-09   Harry Eaton * haceaton AT users dot sourceforge dot net *
8744         * src/djopt.c: Fix segfault with edge-connector elements (pads on
8745         both sides)
8747 2004-04-09   Harry Eaton * haceaton AT users dot sourceforge dot net *
8749         * src/draw.c, src/insert.c, src/move.c, src/output.c: Various bug
8750         fixes
8752 2004-03-28   Harry Eaton * haceaton AT users dot sourceforge dot net *
8754         * src/action.c, src/autoroute.c, src/global.h, src/menu.c: Still
8755         more improvements to the router, plus can show it's action on
8756         screen.
8758 2004-03-28   Harry Eaton * haceaton AT users dot sourceforge dot net *
8760         * src/autoroute.c, src/box.h, src/mtspace.c, src/mtspace.h: More
8761         improvements to the autorouter
8763 2004-03-26   Harry Eaton * haceaton AT users dot sourceforge dot net *
8765         * src/create.c: Forbid diagonal pads when created externally with an
8766         editor
8768 2004-03-25   Harry Eaton * haceaton AT users dot sourceforge dot net *
8770         * src/autoroute.c: Some improvements to autorouter - still need to
8771         better handle mtspace structures so there is not so much duplicate
8772         effort with multiple route styles
8774 2004-03-23   DJ Delorie * dj AT delorie dot com *
8776         * src/parse_y.y: Provide our own yywrap(), just in case.
8778 2004-03-22   Harry Eaton * haceaton AT users dot sourceforge dot net *
8780         * src/Pcb.ad.in: Fix a couple of key binding bugs
8782 2004-03-22   Harry Eaton * haceaton AT users dot sourceforge dot net *
8784         * src/find.c: Fix some re-drawing issues after finding connections
8786 2004-03-22   Harry Eaton * haceaton AT users dot sourceforge dot net *
8788         * src/autoroute.c: Fix some autoroute bugs; add proper style
8789         handling to autorouter
8791 2004-03-20   Harry Eaton * haceaton AT users dot sourceforge dot net *
8793         * src/report.c, src/rtree.c: Provide better rtree visualization
8794         capability
8796 2004-03-20   Harry Eaton * haceaton AT users dot sourceforge dot net *
8798         * src/buffer.c, src/change.c, src/create.c, src/dev_ps.c,
8799         src/draw.c, src/global.h, src/misc.c, src/move.c, src/move.h,
8800         src/mymem.c, src/print.c, src/printpanner.c, src/remove.c,
8801         src/rotate.c, src/search.c: Use rtree to search element names; fix
8802         postscript paper handling; fix silk names clipped over pins/pads
8804 2004-03-20   Harry Eaton * haceaton AT users dot sourceforge dot net *
8806         * src/rtree.c, src/rtree.h: Slight optimization of tree
8807         construction, plus add means to visualize tree
8809 2004-03-20   Harry Eaton * haceaton AT users dot sourceforge dot net *
8811         * src/file.c: Don't use _LOOP macros for writing files in order to
8812         preserver ordering so that diff can be effectively used on pcb files
8814 2004-03-19   Dan McMahill * dan AT mcmahill dot net *
8816         * lib/johnstech.inc: increase soldermask relief on mounting pads
8818 2004-03-18   Harry Eaton * haceaton AT users dot sourceforge dot net *
8820         * src/const.h, src/draw.c, src/polygon.c: Use sqrt(2)/2 defined in
8821         math library when available
8823 2004-03-18   Harry Eaton * haceaton AT users dot sourceforge dot net *
8825         * src/rats.c: Handle shorts to unnamed elements and pins
8827 2004-03-18   Harry Eaton * haceaton AT users dot sourceforge dot net *
8829         * src/line.c: Forgot to check this in with the _LOOP macro changes
8831 2004-03-18   Harry Eaton * haceaton AT users dot sourceforge dot net *
8833         * src/dev_ps.c, src/print.c: Add assembly drawing output for
8834         postscript
8836 2004-03-17   Harry Eaton * haceaton AT users dot sourceforge dot net *
8838         * src/action.c, src/autoplace.c, src/autoroute.c, src/buffer.c,
8839         src/change.c, src/copy.c, src/create.c, src/crosshair.c,
8840         src/dev_ps.c, src/dev_rs274x.c, src/djopt.c, src/draw.c,
8841         src/drill.c, src/file.c, src/find.c, src/global.h, src/library.c,
8842         src/macro.h, src/menu.c, src/mirror.c, src/misc.c, src/move.c,
8843         src/mymem.c, src/netlist.c, src/pinout.c, src/polygon.c,
8844         src/print.c, src/rats.c, src/remove.c, src/report.c, src/rotate.c,
8845         src/rtree.c, src/rubberband.c, src/search.c, src/select.c,
8846         src/set.c, src/undo.c: Change _LOOP macros so that gdb can break
8847         inside the loop
8849 2004-03-17   Dan McMahill * dan AT mcmahill dot net *
8851         * src/rtree.c: revert last change.  Some compilers including
8852         gcc-2.95.3 do not like it.  ok'ed by harry.
8854 2004-03-14   Harry Eaton * haceaton AT users dot sourceforge dot net *
8856         * src/autoplace.c, src/intersect.c: Various fixes to autoplacement
8857         code
8859 2004-03-14   Harry Eaton * haceaton AT users dot sourceforge dot net *
8861         * src/set.c: auto drc bug fix
8863 2004-03-14   Harry Eaton * haceaton AT users dot sourceforge dot net *
8865         * src/action.c: Acknowledge placement
8867 2004-03-14   Harry Eaton * haceaton AT users dot sourceforge dot net *
8869         * src/netlist.c, src/rats.c: Fix memory leaks
8871 2004-03-13   Harry Eaton * haceaton AT users dot sourceforge dot net *
8873         * src/rotate.c: corrctly distinguish rubberand rat lines
8875 2004-03-11   Harry Eaton * haceaton AT users dot sourceforge dot net *
8877         * src/rtree.c: Remove unnecessary union identifier to clarify code
8879 2004-03-10   Harry Eaton * haceaton AT users dot sourceforge dot net *
8881         * src/action.c: Fix polygon insert point bug introduced when
8882         reorganizing code
8884 2004-03-10   Dan McMahill * dan AT mcmahill dot net *
8886         * lib/geda.inc: 100 pin QFP packages have 100 pins not 72
8888 2004-03-10   Harry Eaton * haceaton AT users dot sourceforge dot net *
8890         * src/error.c: Fix for bad pipe handling under cygwin
8892 2004-03-09   Harry Eaton * haceaton AT users dot sourceforge dot net *
8894         * src/draw.c: Minimize rectangle fills
8896 2004-03-09   Harry Eaton * haceaton AT users dot sourceforge dot net *
8898         * src/polygon.c: Oops - this fixes the error introduced moving to
8899         IsPadInPolygon
8901 2004-03-09   Harry Eaton * haceaton AT users dot sourceforge dot net *
8903         * src/crosshair.c: Use SQUARE macro
8905 2004-03-09   Harry Eaton * haceaton AT users dot sourceforge dot net *
8907         * src/action.c, src/change.c, src/create.c, src/rats.c: clean up
8908         code to use SQUARE macro and fix via mask update bug
8910 2004-03-09   Harry Eaton * haceaton AT users dot sourceforge dot net *
8912         * src/draw.c, src/find.c, src/find.h, src/polygon.c, src/print.c,
8913         src/search.c, src/search.h: Erase silk over solder regions when they
8914         cross and display that way on screen
8916 2004-03-08   Harry Eaton * haceaton AT users dot sourceforge dot net *
8918         * src/rtree.c: Streamline code for clustering
8920 2004-03-08   Harry Eaton * haceaton AT users dot sourceforge dot net *
8922         * src/Pcb.ad.in, src/action.c: Added a function { AddRats(Close)
8923         bound to shift-n } that selects the shortest unselected ratline and
8924         centers the screen view on it.
8926 2004-03-08   Harry Eaton * haceaton AT users dot sourceforge dot net *
8928         * src/crosshair.c, src/crosshair.h, src/line.c, src/line.h: New
8929         Auto-DRC line drawing mode implemented.
8931 2004-03-07   Harry Eaton * haceaton AT users dot sourceforge dot net *
8933         * src/draw.c, src/draw.h: Forgot to checkin draw.h; fix some bugs
8934         with really high zoom
8936 2004-03-07   Harry Eaton * haceaton AT users dot sourceforge dot net *
8938         * src/find.c: Avoid doubling DRC clearance between non-clearing
8939         polygons and square pins/pads
8941 2004-03-07   Harry Eaton * haceaton AT users dot sourceforge dot net *
8943         * src/action.c, src/buffer.c, src/change.c, src/create.c,
8944         src/dialog.c, src/draw.c, src/find.c, src/global.h, src/move.c,
8945         src/move.h, src/mymem.c, src/output.c, src/printpanner.c,
8946         src/remove.c, src/rotate.c, src/rtree.c, src/search.c, src/select.c: 
8947         Fixes for various bugs introduced with the rtree database
8948         infrastructure
8950 2004-03-07   Harry Eaton * haceaton AT users dot sourceforge dot net *
8952         * src/menu.c, src/misc.c: A couple of bug fixes: absolute negative
8953         value entries (e.g. =-4) also check the correct zoom level in the
8954         menu
8956 2004-03-06   Harry Eaton * haceaton AT users dot sourceforge dot net *
8958         * src/select.h: Fix conditional compile variable name
8960 2004-03-05   Harry Eaton * haceaton AT users dot sourceforge dot net *
8962         * src/library.c, src/mymem.c, src/output.c, src/polygon.c: Fixes for
8963         several memory leaks and some uninitialized varibable bugs
8965 2004-03-05   Harry Eaton * haceaton AT users dot sourceforge dot net *
8967         * src/file.c, src/parse_l.l, src/parse_y.y: Save the DRC settings in
8968         the board file
8970 2004-03-04   Harry Eaton * haceaton AT users dot sourceforge dot net *
8972         * src/Pcb.ad.in, src/dev_ps.c, src/global.h, src/printdialog.c,
8973         src/printpanner.c: Fix the postscript print panner bugs introduced
8974         with hi-res; also fix the long-standing bug where the default media
8975         selection wasn't used
8977 2004-03-04   Dan McMahill * dan AT mcmahill dot net *
8979         * src/select.h: one more regex bug fix noted by Matt Ettus
8981 2004-03-04   Dan McMahill * dan AT mcmahill dot net *
8983         * doc/pcb.texi: document the ToggleVisibility action
8985 2004-03-04   Dan McMahill * dan AT mcmahill dot net *
8987         * src/action.c, src/action.h, src/main.c: Added a new action which
8988         will toggle the visibility of layers without clicking on them.
8989         Intended to be bound to keys.  Patch provided by Matt Ettus in patch
8990         #908658.
8992 2004-03-04   Dan McMahill * dan AT mcmahill dot net *
8994         * src/action.c, src/menu.c, src/select.c: enable the regex select
8995         stuff.  A trial of a regex select of some components seems to work.
8996         Prompted by patches provided by Matt Ettus in patch submission
8997         908651.
8999 2004-03-03   Dan McMahill * dan AT mcmahill dot net *
9001         * lib/geda.inc: a HEADER60_2 should have 60 pins not 50 as noted in
9002         bug report 900231
9004 2004-03-03   Harry Eaton * haceaton AT users dot sourceforge dot net *
9006         * globalconst.h, src/action.c, src/draw.c, src/misc.c, src/move.c,
9007         src/report.c: Fixes for element line boundry handling
9009 2004-03-01   Harry Eaton * haceaton AT users dot sourceforge dot net *
9011         * src/move.c: Fix for search element bounding box error
9013 2004-03-01   Harry Eaton * haceaton AT users dot sourceforge dot net *
9015         * src/crosshair.c, src/crosshair.h: These were updated too for the
9016         auto-DRC infrastructure
9018 2004-03-01   Harry Eaton * haceaton AT users dot sourceforge dot net *
9020         * src/action.c, src/change.c, src/control.c, src/control.h,
9021         src/find.c, src/find.h, src/global.h, src/misc.c, src/misc.h,
9022         src/move.c, src/output.c, src/search.c, src/set.c: Some intersection
9023         bug fixes and more rtree infrastructure change Also more ground work
9024         for auto drc line mode
9026 2004-02-29   DJ Delorie * dj AT delorie dot com *
9028         * src/Makefile.in: Regenerate.
9030 2004-02-28   Harry Eaton * haceaton AT users dot sourceforge dot net *
9032         * src/action.c, src/buffer.c, src/change.c, src/const.h,
9033         src/create.c, src/draw.c, src/find.c, src/global.h, src/insert.c,
9034         src/menu.c, src/misc.c, src/misc.h, src/move.c, src/remove.c,
9035         src/search.c, src/set.c, src/undo.c: More usage of rtrees for rats,
9036         pins and pads. Some foundation work for a new auto-drc line drawing
9037         mode, and some bug fixes.
9039 2004-02-27   Harry Eaton * haceaton AT users dot sourceforge dot net *
9041         * src/buffer.c, src/create.c, src/find.c, src/global.h, src/menu.c,
9042         src/misc.c, src/move.c, src/mymem.c, src/remove.c, src/rtree.c,
9043         src/rtree.h: Store pins/pads in rtree
9045 2004-02-27   Harry Eaton * haceaton AT users dot sourceforge dot net *
9047         * src/rtree.c: Fixes for some compiler warnings
9049 2004-02-27   Harry Eaton * haceaton AT users dot sourceforge dot net *
9051         * src/clip.c, src/clip.h: Oh Yeah, the drawing clipping won't work
9052         without these files!
9054 2004-02-27   Harry Eaton * haceaton AT users dot sourceforge dot net *
9056         * src/Makefile.am, src/Makefile.in, src/action.c, src/create.c,
9057         src/data.c, src/data.h, src/draw.c, src/global.h, src/insert.c,
9058         src/insert.h, src/line.c, src/line.h, src/macro.h, src/misc.c,
9059         src/output.c, src/parse_y.y, src/polygon.c, src/report.c: Fixes for
9060         clipping the drawing. Simple saturation could change the geometry
9061         when zoomed way in. Also some organizational changes to make the
9062         code easier to maintain.
9064 2004-02-27   Dan McMahill * dan AT mcmahill dot net *
9066         * doc/pcb.texi: clarify the pad creation a little
9068 2004-02-27   Harry Eaton * haceaton AT users dot sourceforge dot net *
9070         * src/misc.c: Fix for text bounding box error
9072 2004-02-25   Harry Eaton * haceaton AT users dot sourceforge dot net *
9074         * src/action.c, src/const.h, src/crosshair.c, src/menu.c: Add a
9075         feature to display design-rule clearance arround prospective
9076         line/arc/via
9078 2004-02-25   Harry Eaton * haceaton AT users dot sourceforge dot net *
9080         * src/find.c, src/search.c: Fix some DRC bugs with square pins
9082 2004-02-20   Dan McMahill * dan AT mcmahill dot net *
9084         * lib/misc.inc: whitespace fix
9086 2004-02-19   Dan McMahill * dan AT mcmahill dot net *
9088         * lib/connector.inc: add a PKG_CONNECTOR_DIL for 2 column headers
9089         with DIL pin numbering.  This fixes the HEADER*_1 entries in the
9090         geda footprint library.
9092 2004-02-17   Harry Eaton * haceaton AT users dot sourceforge dot net *
9094         * src/buffer.c: Fix typo that caused bug in via tree handling.
9096 2004-02-17   Dan McMahill * dan AT mcmahill dot net *
9098         * lib/generic.list: remove extra whitespace in generic208_lqfp
9100 2004-02-17   Harry Eaton * haceaton AT users dot sourceforge dot net *
9102         * src/action.c, src/draw.c, src/find.c, src/polygon.c,
9103         src/polygon.h, src/print.c, src/report.c, src/rtree.c: Bug fixes for
9104         design rule checking
9106 2004-02-17   Harry Eaton * haceaton AT users dot sourceforge dot net *
9108         * src/rtree.c: Make rtree routines reentrant since now they are used
9109         that way when drawing during DRC.
9111 2004-02-15   Harry Eaton * haceaton AT users dot sourceforge dot net *
9113         * src/action.c, src/autoplace.c, src/autoroute.c, src/buffer.c,
9114         src/change.c, src/copy.c, src/create.c, src/dev_ps.c, src/draw.c,
9115         src/file.c, src/find.c, src/find.h, src/global.h, src/insert.c,
9116         src/macro.h, src/main.c, src/mirror.c, src/mirror.h, src/misc.c,
9117         src/misc.h, src/move.c, src/move.h, src/mtspace.c, src/mymem.c,
9118         src/mymem.h, src/parse_y.y, src/pinout.c, src/polygon.c,
9119         src/polygon.h, src/print.c, src/rats.c, src/remove.c, src/report.c,
9120         src/rotate.c, src/rotate.h, src/rtree.c, src/rtree.h,
9121         src/rubberband.c, src/search.c, src/search.h, src/select.c,
9122         src/undo.c: Large number of changes to keep most of the database in
9123         rtrees and avoid linear searches
9125 2004-02-15   Harry Eaton * haceaton AT users dot sourceforge dot net *
9127         * src/change.c: Fix minor bug in pad clearance adjustment
9129 2004-02-15   Dan McMahill * dan AT mcmahill dot net *
9131         * src/Makefile.in: regen after adding compat.c/h
9133 2004-02-15   Dan McMahill * dan AT mcmahill dot net *
9135         * src/Makefile.am, src/compat.c, src/compat.h, src/draw.c,
9136         src/set.c: add a place for putting our own implementation of
9137         missing/broken functions.  For now add a logf and expf to help
9138         solaris.
9140 2004-02-15   Dan McMahill * dan AT mcmahill dot net *
9142         * tools/Makefile.am, tools/Makefile.in: install MergePCBPS and
9143         Merge_dimPBPS
9145 2004-02-15   Dan McMahill * dan AT mcmahill dot net *
9147         * config.h.in, configure: regen after adding logf and expf checks
9149 2004-02-15   Dan McMahill * dan AT mcmahill dot net *
9151         * configure.ac: add checks for logf and expf
9153 2004-02-15   Dan McMahill * dan AT mcmahill dot net *
9155         * src/create.c, src/dev_ps.c, src/dev_rs274x.c, src/draw.c,
9156         src/file.c, src/global.h, src/parse_l.l, src/parse_y.y: add a way to
9157         control the scale factor associated with thermals.  This is a global
9158         value stored in the .pcb file.  The default gives the same behaviour
9159         as previous version.  By increasing the scale factor, the width of
9160         the spokes increases.  Eventually it would be nice to make this be
9161         per pin/via.
9163 2004-02-15   Dan McMahill * dan AT mcmahill dot net *
9165         * src/report.c: correct the drill diameter in the drill report after
9166         the hi-res changes
9168 2004-02-14   Harry Eaton * haceaton AT users dot sourceforge dot net *
9170         * src/polygon.c: Fixed syntax error and potential bug
9172 2004-02-14   Harry Eaton * haceaton AT users dot sourceforge dot net *
9174         * src/draw.c: Elliminate pre-computing of octagons - there are too
9175         many with .01 mil resolution
9177 2004-02-14   Harry Eaton * haceaton AT users dot sourceforge dot net *
9179         * src/find.c, src/polygon.c: More non-clearing polygon fixes
9181 2004-02-14   Harry Eaton * haceaton AT users dot sourceforge dot net *
9183         * src/buffer.c, src/dev_rs274x.c, src/draw.c, src/macro.h,
9184         src/menu.c, src/polygon.c, src/print.c, src/rubberband.c: Fixed some
9185         bugs with non-clearing polygons and made GROUP_LOOP macro
9187 2004-02-14   Harry Eaton * haceaton AT users dot sourceforge dot net *
9189         * src/action.c, src/crosshair.c, src/macro.h: Fix arc creation tool
9190         when crosshair is on-axis with start point
9192 2004-02-14   Harry Eaton * haceaton AT users dot sourceforge dot net *
9194         * src/report.c, src/report.h: Report on points and fix some
9195         formating
9197 2004-02-14   Harry Eaton * haceaton AT users dot sourceforge dot net *
9199         * src/set.c: Fix formatting mismatch
9201 2004-02-14   Harry Eaton * haceaton AT users dot sourceforge dot net *
9203         * src/polygon.c: Fixup includes and trivial bug
9205 2004-02-14   Harry Eaton * haceaton AT users dot sourceforge dot net *
9207         * src/move.c: fix includes for Message()
9209 2004-02-14   Harry Eaton * haceaton AT users dot sourceforge dot net *
9211         * src/menu.c: add left/right buffer mirror menu entry
9213 2004-02-13   Harry Eaton * haceaton AT users dot sourceforge dot net *
9215         * src/Pcb.ad.in, src/action.c, src/find.c, src/global.h,
9216         src/insert.c, src/main.c, src/polygon.c, src/polygon.h,
9217         src/print.c, src/report.c, src/set.c, src/sizedialog.c: More
9218         complete and sensible DRC checking
9220 2004-02-13   Harry Eaton * haceaton AT users dot sourceforge dot net *
9222         * src/move.c, src/search.c: Prevent changing layers of locked
9223         objects, find ratlines before other layer objects
9225 2004-02-13   Harry Eaton * haceaton AT users dot sourceforge dot net *
9227         * src/action.c, src/buffer.c, src/buffer.h, src/menu.c: Added
9228         function to mirror the buffer
9230 2004-02-13   Harry Eaton * haceaton AT users dot sourceforge dot net *
9232         * src/buffer.c: Recalculate arc bounding box when swaping the side
9234 2004-02-13   Harry Eaton * haceaton AT users dot sourceforge dot net *
9236         * src/dialog.c: Updated about dialog
9238 2004-02-13   Harry Eaton * haceaton AT users dot sourceforge dot net *
9240         * src/rats.c: Use warn color on pins/pads even when netname is known
9242 2004-02-13   Harry Eaton * haceaton AT users dot sourceforge dot net *
9244         * src/change.c: Only change masks with size change when they're
9245         non-zero to begin with
9247 2004-02-13   Harry Eaton * haceaton AT users dot sourceforge dot net *
9249         * src/change.c: Allow +0 change to mask size to make it equal the
9250         underlying copper
9252 2004-02-13   Harry Eaton * haceaton AT users dot sourceforge dot net *
9254         * src/action.c, src/change.c, src/select.c: Proper handling of all
9255         text scalings
9257 2004-02-13   Harry Eaton * haceaton AT users dot sourceforge dot net *
9259         * src/action.c, src/select.c: Handle element name size changing
9260         properly
9262 2004-02-12   Harry Eaton * haceaton AT users dot sourceforge dot net *
9264         * src/change.c: Automatically adjust mask size when copper size is
9265         changed
9267 2004-02-10   Harry Eaton * haceaton AT users dot sourceforge dot net *
9269         * src/print.c: Fixed output bug with persistant thermal changes
9271 2004-02-09   Dan McMahill * dan AT mcmahill dot net *
9273         * tools/Makefile.in: regen after adding Merge_dimPCBPS
9275 2004-02-09   Dan McMahill * dan AT mcmahill dot net *
9277         * tools/Makefile.am: add Merge_dimPCBPS
9279 2004-02-09   Dan McMahill * dan AT mcmahill dot net *
9281         * tools/MergePCBPS, tools/Merge_dimPCBPS: #/bin/sh -> #!/bin/sh to
9282         make these execute correctly.  While here, add RCS Id's.
9284 2004-02-07   Harry Eaton * haceaton AT users dot sourceforge dot net *
9286         * src/find.c: Find more errors when skipping through DRCs
9288 2004-02-06   Harry Eaton * haceaton AT users dot sourceforge dot net *
9290         * src/action.c, src/find.c, src/find.h: Added feature to continue
9291         checking drc after first error is found
9293 2004-02-06   Harry Eaton * haceaton AT users dot sourceforge dot net *
9295         * src/change.c: Prevent clearance size adjustment from changing
9296         joined lines to unjoined
9298 2004-02-06   Harry Eaton * haceaton AT users dot sourceforge dot net *
9300         * src/set.c: Fix bug where local reference mark was not erased
9301         properly
9303 2004-02-06   Harry Eaton * haceaton AT users dot sourceforge dot net *
9305         * src/file.c: Fix bug where loading pcb didn't restore saved view
9306         position correctly
9308 2004-02-06   Harry Eaton * haceaton AT users dot sourceforge dot net *
9310         * src/global.h, src/undo.c: Fixed undo change text size bug
9311         introduced with hi-res changes
9313 2004-02-06   Harry Eaton * haceaton AT users dot sourceforge dot net *
9315         * src/draw.c: Special drawing mode to examine planes for break-up
9316         due to tracks routing through them.
9318 2004-02-06   Harry Eaton * haceaton AT users dot sourceforge dot net *
9320         * tools/Merge_dimPCBPS: Add a tool to merge to PCB postscript files
9321         where the first one is printed in a light gray color. This is useful
9322         for making an assembly drawing where the front tracks are shown in
9323         light gray while the silkscreen is solid black.
9325 2004-02-06   Harry Eaton * haceaton AT users dot sourceforge dot net *
9327         * src/draw.c, src/macro.h, src/polygon.c, src/print.c: Make
9328         persistant thermal flags for easier changes to polygons
9330 2004-02-05   Harry Eaton * haceaton AT users dot sourceforge dot net *
9332         * src/action.c, src/const.h, src/menu.c: Add mode for poly viewing
9333         to help spot broken planes
9335 2004-02-05   Harry Eaton * haceaton AT users dot sourceforge dot net *
9337         * src/main.c: Fix text scaling intialization
9339 2004-02-05   Harry Eaton * haceaton AT users dot sourceforge dot net *
9341         * src/dev_rs274x.c: Fix a couple of gerber bugs introduced with
9342         hi-res
9344 2004-02-05   Harry Eaton * haceaton AT users dot sourceforge dot net *
9346         * src/polygon.c: Warn on unplated holes piercing polygons
9348 2004-02-05   Harry Eaton * haceaton AT users dot sourceforge dot net *
9350         * src/print.c: Don't clear pure-holes in polygons
9352 2004-02-05   Harry Eaton * haceaton AT users dot sourceforge dot net *
9354         * src/polygon.c: Fix bug in PIP flags
9356 2004-02-05   Harry Eaton * haceaton AT users dot sourceforge dot net *
9358         * src/dev_rs274x.c, src/find.c, src/find.h, src/print.c: Fixed some
9359         gerber hi-res bugs and some complex ground-plane print issues
9361 2004-02-04   DJ Delorie * dj AT delorie dot com *
9363         * example/libraries/Makefile.in: * Detect re_comp(), regcomp(), and <regex.h> (select.c doesn't use
9364           the new HAVE_* yet, this is a prelude to it).  * Set -DNDEBUG for all src/* compiles.  * Support maintainer mode (--enable-maintainer-mode) (I got tired of   having half the world regenerated just because I did a "cvs
9365           update") * Detect tgif, if not found pad.{png,eps} just isn't built (what's   that for, anyway?)  Prebuilt copies of those should be checked in   too at some point.
9367 2004-02-04   DJ Delorie * dj AT delorie dot com *
9369         * Makefile.in, README_FILES/Makefile.in, aclocal.m4, config.h.in,
9370         configure, configure.ac, doc/Makefile.am, doc/Makefile.in,
9371         example/Makefile.in, lib/Makefile.in,
9372         newlib/2_pin_thru-hole_packages/Makefile.in, newlib/Makefile.in,
9373         newlib/analog-devices/Makefile.in, newlib/burr-brown/Makefile.in,
9374         newlib/connectors/Makefile.in, newlib/crystal/Makefile.in,
9375         newlib/cypress/Makefile.in, newlib/electro-optics/Makefile.in,
9376         newlib/generic_SMD_packages/Makefile.in,
9377         newlib/headers/Makefile.in, newlib/msp430/Makefile.in,
9378         newlib/not_vetted_ingo/Makefile.in, newlib/sockets/Makefile.in,
9379         newlib/tests/Makefile.in, newlib/toko/Makefile.in, src/Makefile.am,
9380         src/Makefile.in, src/icons/Makefile.in, src/script/Makefile.in,
9381         tools/Makefile.in, tutorial/Makefile.in: * Detect re_comp(), regcomp(), and <regex.h> (select.c doesn't use
9382           the new HAVE_* yet, this is a prelude to it).  * Set -DNDEBUG for all src/* compiles.  * Support maintainer mode (--enable-maintainer-mode) (I got tired of   having half the world regenerated just because I did a "cvs
9383           update") * Detect tgif, if not found pad.{png,eps} just isn't built (what's   that for, anyway?)  Prebuilt copies of those should be checked in   too at some point.
9385 2004-02-04   DJ Delorie * dj AT delorie dot com *
9387         * src/draw.c: Don't assume that an all-ones pixel is white.
9389 2004-02-03   Harry Eaton * haceaton AT users dot sourceforge dot net *
9391         * src/menu.c: Fixes for hi-res bugs
9393 2004-02-03   Harry Eaton * haceaton AT users dot sourceforge dot net *
9395         * src/print.c: Changes to the fab drawing for improved clarity and
9396         allows for a an outline route by naming a layer "outline" or "route"
9398 2004-02-03   Harry Eaton * haceaton AT users dot sourceforge dot net *
9400         * src/error.c: Added a line count to Message mechanism
9402 2004-02-03   Dan McMahill * dan AT mcmahill dot net *
9404         * NEWS: note harry's hi-res changes.
9406 2004-02-02   Harry Eaton * haceaton AT users dot sourceforge dot net *
9408         * src/autoroute.c, src/heap.c, src/heap.h: More speed-ups for the
9409         router
9411 2004-02-01   Harry Eaton * haceaton AT users dot sourceforge dot net *
9413         * src/print.c: Change gerber drill files to have .cnc suffix and
9414         name the component side output group "front", the solder-side output
9415         "back"
9417 2004-02-01   Harry Eaton * haceaton AT users dot sourceforge dot net *
9419         * src/action.c, src/parse_y.y: A couple of bug fixes for arc
9420         handling in hi-res
9422 2004-01-31   Harry Eaton * haceaton AT users dot sourceforge dot net *
9424         * src/autoroute.c: More speed-up changes. Limit the intial search in
9425         FindIntersecting
9427 2004-01-31   Harry Eaton * haceaton AT users dot sourceforge dot net *
9429         * src/rtree.c: Minor comment changes and some tiny tweaks
9431 2004-01-31   Harry Eaton * haceaton AT users dot sourceforge dot net *
9433         * src/buffer.c: Fix bug in element name mirroring when elements are
9434         created on the solder side
9436 2004-01-30   Harry Eaton * haceaton AT users dot sourceforge dot net *
9438         * src/main.c: Fix initial screen/offscreen zoom
9440 2004-01-30   Harry Eaton * haceaton AT users dot sourceforge dot net *
9442         * src/polygon.c: Some Hi-res fixes plus elliminat too close to
9443         polygon concept
9445 2004-01-30   Harry Eaton * haceaton AT users dot sourceforge dot net *
9447         * src/output.c: Fixed the auto-scroll broken when switched to hi-res
9449 2004-01-30   Harry Eaton * haceaton AT users dot sourceforge dot net *
9451         * src/rats.c: Fix bug introduced changing to hi-res
9453 2004-01-29   Harry Eaton * haceaton AT users dot sourceforge dot net *
9455         * src/autoroute.c, src/box.h: More speed ups to the auto-router
9456         code. This is only code streamlining, there is no algorithm change
9458 2004-01-28   Harry Eaton * haceaton AT users dot sourceforge dot net *
9460         * src/kdtree.c, src/kdtree.h: The kdtree has been replaced with
9461         rtree which is faster given the way it is used
9463 2004-01-28   Harry Eaton * haceaton AT users dot sourceforge dot net *
9465         * src/rtree.c, src/rtree.h: rtree for faster rectangle intersection
9466         searching
9468 2004-01-28   Harry Eaton * haceaton AT users dot sourceforge dot net *
9470         * src/Makefile.am, src/Makefile.in, src/autoplace.c,
9471         src/autoroute.c, src/mtspace.c: replaced kd-tree with r-tree for
9472         faster auto-routing
9474 2004-01-20   Harry Eaton * haceaton AT users dot sourceforge dot net *
9476         * src/action.c: Fix for smashing element in place
9478 2004-01-19   Harry Eaton * haceaton AT users dot sourceforge dot net *
9480         * src/autoroute.c, src/heap.h, src/kdtree.c, src/kdtree.h: Fixes for
9481         auto-router with hi-res and some speed-ups of its operation
9483 2004-01-19   Harry Eaton * haceaton AT users dot sourceforge dot net *
9485         * src/find.c: Speed up polygon/polygon intersection testing. The
9486         special case is *all* points inside polygon, not just some points so
9487         only one point need be tested
9489 2004-01-19   Harry Eaton * haceaton AT users dot sourceforge dot net *
9491         * src/const.h, src/data.c, src/data.h, src/draw.c, src/draw.h,
9492         src/file.c, src/global.h, src/macro.h, src/main.c, src/menu.c,
9493         src/parse_y.y, src/pinout.c, src/set.c, src/set.h: Modifications to
9494         support arbitrary zoom ratios
9496 2004-01-18   Harry Eaton * haceaton AT users dot sourceforge dot net *
9498         * src/menu.c: Fix for intermediate zoom levels
9500 2004-01-18   Harry Eaton * haceaton AT users dot sourceforge dot net *
9502         * globalconst.h, src/Pcb.ad.in, src/data.c, src/draw.c,
9503         src/macro.h, src/output.c, src/parse_y.y, src/set.c: Added some
9504         intermediate zooms, so now it goes by sqrt(2)
9506 2004-01-17   Harry Eaton * haceaton AT users dot sourceforge dot net *
9508         * src/menu.c: Add menu item to auto-route only selected rats
9510 2004-01-17   Harry Eaton * haceaton AT users dot sourceforge dot net *
9512         * src/output.c: Increase the minimum size of the panner control
9514 2004-01-17   Harry Eaton * haceaton AT users dot sourceforge dot net *
9516         * src/main.c: Fix some default sizes for hi-res when no resource
9517         file is available
9519 2004-01-15   Harry Eaton * haceaton AT users dot sourceforge dot net *
9521         * src/action.c, src/action.h, src/menu.c: Added support to smash an
9522         element in place
9524 2004-01-15   Harry Eaton * haceaton AT users dot sourceforge dot net *
9526         * src/action.c, src/const.h, src/menu.c, src/misc.c, src/set.c: 
9527         Added Local reference measurement for line drawing and allow
9528         not-overriding the mark position for moves and line-drawing
9530 2004-01-15   Harry Eaton * haceaton AT users dot sourceforge dot net *
9532         * src/Pcb.ad.in, src/action.c, src/main.c, src/set.c, src/set.h: Fix
9533         to keep mode setting and add a function for moving an object by/to
9534         numerical coordinates
9536 2004-01-14   Harry Eaton * haceaton AT users dot sourceforge dot net *
9538         * src/Pcb.ad.in, src/action.c, src/command.c, src/misc.c: Tweaks for
9539         case-insensitive command arguments, keyboard adjust of grid and
9540         fixed a couple of absolute/relative bugs.
9542 2004-01-14   Harry Eaton * haceaton AT users dot sourceforge dot net *
9544         * src/misc.c: Turned off debugging messages
9546 2004-01-14   Harry Eaton * haceaton AT users dot sourceforge dot net *
9548         * src/macro.h, src/misc.c, src/output.c: Fixes for several
9549         solder-side viewing bugs introduced with hi-res changes
9551 2004-01-13   Harry Eaton * haceaton AT users dot sourceforge dot net *
9553         * src/djopt.c: Fixed for new definition of mils for savings report
9555 2004-01-13   Harry Eaton * haceaton AT users dot sourceforge dot net *
9557         * src/box.h, src/mtspace.c: Fix for mtspace coalesce; hi-res
9558         requires floats for area computation
9560 2004-01-10   Harry Eaton * haceaton AT users dot sourceforge dot net *
9562         * src/action.c, src/draw.c, src/report.c: Fixes for text scaling
9564 2004-01-10   Dan McMahill * dan AT mcmahill dot net *
9566         * src/parse_y.y: One more hi-res buglet.  Correct parsing of 'Arc'.
9567         Thanks to Bill Wilson for catching this one.
9569 2004-01-09   Dan McMahill * dan AT mcmahill dot net *
9571         * lib/smt.inc: partially undo the last change with respect to
9572         quoting.  Only quote $2.  This keeps the reference designator from
9573         being expanded as desired but lets the Description field get
9574         expanded as desired.
9576 2004-01-08   Harry Eaton * haceaton AT users dot sourceforge dot net *
9578         * Makefile.in, aclocal.m4, configure, doc/Makefile.in,
9579         lib/Makefile.in, newlib/2_pin_thru-hole_packages/Makefile.in,
9580         newlib/Makefile.in, newlib/analog-devices/Makefile.in,
9581         newlib/burr-brown/Makefile.in, newlib/connectors/Makefile.in,
9582         newlib/crystal/Makefile.in, newlib/cypress/Makefile.in,
9583         newlib/electro-optics/Makefile.in,
9584         newlib/generic_SMD_packages/Makefile.in,
9585         newlib/headers/Makefile.in, newlib/msp430/Makefile.in,
9586         newlib/not_vetted_ingo/Makefile.in, newlib/sockets/Makefile.in,
9587         newlib/tests/Makefile.in, newlib/toko/Makefile.in, src/Pcb.ad.in,
9588         src/action.c, src/icons/Makefile.in, src/main.c, src/misc.c,
9589         src/script/Makefile.in: Fixes for absolute/relative size change.
9590         Also added repeat last typed command and fixed a few hi-res bugs.
9592 2004-01-06   Harry Eaton * haceaton AT users dot sourceforge dot net *
9594         * src/set.c: Fixed sign display in fractional mil part of crosshair
9596 2004-01-06   Harry Eaton * haceaton AT users dot sourceforge dot net *
9598         * src/action.c: Fix for Display(Save|Restore)
9600 2004-01-05   Dan McMahill * dan AT mcmahill dot net *
9602         * src/print.c: fix generation of fab drawing with the high
9603         resolution changes
9605 2004-01-05   Dan McMahill * dan AT mcmahill dot net *
9607         * src/dev_rs274x.c: fix a couple of other bugs related to the high
9608         res changes.  In particular, correct the aperture for the fab
9609         drawing and for the outline.  Also fix up text output.
9611 2004-01-05   Dan McMahill * dan AT mcmahill dot net *
9613         * lib/johnstech.inc: Convert to a high resolution footprint.  Pads
9614         are a little more accurate now.
9616 2004-01-05   Dan McMahill * dan AT mcmahill dot net *
9618         * src/dev_rs274x.c: correct the aperture definition output lines and
9619         the drill tool definition output lines after the hi-res change.
9620         Gerber output should be ok again.
9622 2004-01-05   Harry Eaton * haceaton AT users dot sourceforge dot net *
9624         * src/Pcb.ad.in: fixed missing continuation in scroll commands
9626 2004-01-05   Harry Eaton * haceaton AT users dot sourceforge dot net *
9628         * configure, configure.ac, globalconst.h, src/Makefile.in,
9629         src/Pcb.ad.in, src/action.c, src/action.h, src/autoplace.c,
9630         src/autoplace.h, src/autoroute.c, src/autoroute.h, src/box.h,
9631         src/buffer.c, src/buffer.h, src/change.c, src/change.h,
9632         src/const.h, src/copy.c, src/copy.h, src/create.c, src/create.h,
9633         src/crosshair.c, src/crosshair.h, src/data.c, src/data.h,
9634         src/dev_ps.c, src/dev_rs274x.c, src/djopt.c, src/djopt.h,
9635         src/draw.c, src/drill.h, src/file.c, src/find.c, src/find.h,
9636         src/global.h, src/gui.c, src/gui.h, src/heap.h, src/insert.c,
9637         src/insert.h, src/intersect.c, src/intersect.h, src/kdtree.c,
9638         src/kdtree.h, src/macro.h, src/main.c, src/menu.c, src/mirror.c,
9639         src/mirror.h, src/misc.c, src/misc.h, src/move.c, src/move.h,
9640         src/mtspace.c, src/mtspace.h, src/netlist.c, src/netlist.h,
9641         src/output.c, src/output.h, src/parse_y.y, src/pinout.c,
9642         src/polygon.c, src/polygon.h, src/print.c, src/print.h, src/rats.c,
9643         src/report.c, src/rotate.c, src/rotate.h, src/rubberband.c,
9644         src/search.c, src/search.h, src/set.c, src/set.h, src/sizedialog.c,
9645         src/undo.c, src/undo.h, src/vector.h: Many changes to add 0.01 mil
9646         resolution
9648 2004-01-02   Harry Eaton * haceaton AT users dot sourceforge dot net *
9650         * src/change.c: Display pin/pad number when prompting for name
9652 2004-01-02   Harry Eaton * haceaton AT users dot sourceforge dot net *
9654         * src/draw.c: Minor correction to not attempt to write vertical null
9655         strings
9657 2004-01-02   Dan McMahill * dan AT mcmahill dot net *
9659         * doc/refcard.tex: add missing RCS Id
9661 2004-01-02   Dan McMahill * dan AT mcmahill dot net *
9663         * src/autoplace.c, src/autoplace.h, src/autoroute.c,
9664         src/autoroute.h, src/box.h, src/djopt.c, src/djopt.h, src/drill.h,
9665         src/gui.c, src/gui.h, src/heap.c, src/heap.h, src/intersect.c,
9666         src/intersect.h, src/kdtree.c, src/kdtree.h, src/mtspace.c,
9667         src/mtspace.h, src/netlist.c, src/netlist.h, src/rats.c,
9668         src/vector.c, src/vector.h: add missing RCS Id
9670 2004-01-01   Dan McMahill * dan AT mcmahill dot net *
9672         * lib/smt.inc: - modify the 2 pad smt base definition to put the origin of the
9673           footprint at the common centroid.  Useful both for driving pick and
9674           place as noted in bug report 716519 and for centering a part on a
9675         grid.  - while here make sure the $1, $2, and $3 arguments to the various   macros are properly quoted.  This helps avoid some obscure bugs   with generated layouts from gEDA.
9677 2004-01-01   Harry Eaton * haceaton AT users dot sourceforge dot net *
9679         * src/draw.c: Font metrics need to be outside TO_DRAW() macros
9681 2004-01-01   Dan McMahill * dan AT mcmahill dot net *
9683         * lib/smt.inc: fix some quoting
9685 2004-01-01   Dan McMahill * dan AT mcmahill dot net *
9687         * lib/amphenol.inc: bump copyright date
9689 2004-01-01   Dan McMahill * dan AT mcmahill dot net *
9691         * lib/amphenol.inc: properly pass down the arguments to the
9692         underlying macro for the PKG_AMPHENOL_ARFX123{0,1,2} packages
9694 2004-01-01   Dan McMahill * dan AT mcmahill dot net *
9696         * doc/wishlist.txt: add element versioning and database of good
9697         elements
9699 2004-01-01   Dan McMahill * dan AT mcmahill dot net *
9701         * doc/wishlist.txt: add a features wish list.  not sure if this is
9702         the best place for such a thing, but for now it'll do.
9704 2003-12-31   Dan McMahill * dan AT mcmahill dot net *
9706         * lib/Makefile.in: regen after adding amp library
9708 2003-12-31   Dan McMahill * dan AT mcmahill dot net *
9710         * lib/Makefile.am, lib/amp.inc, lib/common.m4: add Amp connector
9711         library.  Currently its populated with the 767054 series of Mictor
9712         connectors.
9714 2003-12-31   Harry Eaton * haceaton AT users dot sourceforge dot net *
9716         * src/menu.c: Fixed menu selection of metric grids: The
9717         C-preprocessor won't change string literals of course.
9719 2003-12-31   Harry Eaton * haceaton AT users dot sourceforge dot net *
9721         * src/Pcb.ad.in, src/const.h, src/draw.c, src/misc.c: Added vertical
9722         text support for pinout descriptions
9724 2003-12-31   Dan McMahill * dan AT mcmahill dot net *
9726         * lib/smt.inc: with reverse order numbering in COMMON_SMT_DIL_MIL
9727         and COMMON_SMT_DIL_MM, make sure the pin number matches the pin
9728         name.
9730 2003-12-31   Dan McMahill * dan AT mcmahill dot net *
9732         * lib/panasonic.inc: fix typo in a comment
9734 2003-12-31   Dan McMahill * dan AT mcmahill dot net *
9736         * lib/geda.inc, lib/smt.inc: add SC70_3, SC70_4, SC70_5, and SC70_6
9737         footprints (the 3,4,5, and 6 pin SC70 family).
9739 2003-12-31   Dan McMahill * dan AT mcmahill dot net *
9741         * lib/to.inc: rename the SOT23 and SOT323 footprints here to
9742         SOT23_CEL and SOT323_CEL to avoid a conflict with the ones defined
9743         in the geda library.  The "CEL" part reflects that the pin numbering
9744         is the one used by CEL which is different from what others seem to
9745         use.
9747 2003-12-31   Dan McMahill * dan AT mcmahill dot net *
9749         * lib/Makefile.in: regen after adding panasonic library
9751 2003-12-31   Dan McMahill * dan AT mcmahill dot net *
9753         * lib/Makefile.am, lib/common.m4, lib/panasonic.inc: Add the
9754         panasonic EXB series of chip resistor arrays.
9756 2003-12-31   Dan McMahill * dan AT mcmahill dot net *
9758         * lib/smt.inc: deal with SMT DIL packages with an odd number of pads
9759         per side
9761 2003-12-31   Dan McMahill * dan AT mcmahill dot net *
9763         * lib/smt.inc: add an extra argument to COMMON_SMT_DIL_MIL and
9764         COMMON_SMT_DIL_MM to allow the pins to go in the reverse order to
9765         deal with some non-standard pinouts like the mini-circuits KK81
9766         package.
9768 2003-12-31   Dan McMahill * dan AT mcmahill dot net *
9770         * lib/Makefile.in: regen after adding minicircuits
9772 2003-12-31   Dan McMahill * dan AT mcmahill dot net *
9774         * lib/Makefile.am, lib/common.m4, lib/minicircuits.inc: add several
9775         minicircuits packages
9777 2003-12-30   Dan McMahill * dan AT mcmahill dot net *
9779         * lib/Makefile.in: regen after adding bourns library
9781 2003-12-30   Dan McMahill * dan AT mcmahill dot net *
9783         * lib/geda.inc, lib/smt.inc: - add a handful of 3 pin SMT EMI filter footprints - add US* family of SMT packages.
9785 2003-12-30   Dan McMahill * dan AT mcmahill dot net *
9787         * lib/connector.inc: add through hole test point footprint.
9789 2003-12-30   Dan McMahill * dan AT mcmahill dot net *
9791         * lib/common.m4: include the bourns library
9793 2003-12-30   Dan McMahill * dan AT mcmahill dot net *
9795         * lib/amphenol.inc, lib/amphenol.list, lib/amphenol.m4: add some
9796         more SMA connectors
9798 2003-12-30   Dan McMahill * dan AT mcmahill dot net *
9800         * lib/Makefile.am, lib/bourns.inc: add bourns 3224G, 3224J, 3224W,
9801         and 3224X trim pots
9803 2003-12-30   Dan McMahill * dan AT mcmahill dot net *
9805         * doc/pcb.texi: add note about the dangers of whitespace in .list
9806         files
9808 2003-12-30   Dan McMahill * dan AT mcmahill dot net *
9810         * lib/amphenol.m4: correct capitalization for amphenol_ARFX1229
9812 2003-12-30   Dan McMahill * dan AT mcmahill dot net *
9814         * lib/amphenol.list: remove extra whitespace at end of ARFX1229 line
9816 2003-12-30   Dan McMahill * dan AT mcmahill dot net *
9818         * lib/Makefile.in: regen after adding amphenol library
9820 2003-12-30   Dan McMahill * dan AT mcmahill dot net *
9822         * lib/Makefile.am, lib/amphenol.inc, lib/amphenol.list,
9823         lib/amphenol.m4, lib/common.m4: Add amphenol connectors.  Start out
9824         with the ARFX1229 SMA connector.
9826 2003-12-30   Dan McMahill * dan AT mcmahill dot net *
9828         * lib/connector.inc, lib/geda.inc: add MTA100 connectors
9830 2003-12-30   Harry Eaton * haceaton AT users dot sourceforge dot net *
9832         * src/action.c, src/autoplace.c, src/buffer.c, src/change.c,
9833         src/copy.c, src/create.c, src/crosshair.c, src/dev_ps.c,
9834         src/dev_rs274x.c, src/dialog.c, src/draw.c, src/drill.c,
9835         src/file.c, src/find.c, src/library.c, src/menu.c, src/mirror.c,
9836         src/misc.c, src/move.c, src/mymem.c, src/netlist.c, src/pinout.c,
9837         src/polygon.c, src/print.c, src/rats.c, src/remove.c, src/report.c,
9838         src/rotate.c, src/rubberband.c, src/search.c, src/select.c,
9839         src/set.c, src/undo.c: Ok, this complete the formating changes.
9840         Whew!
9842 2003-12-29   Harry Eaton * haceaton AT users dot sourceforge dot net *
9844         * src/file.c: Fixed another glitch during format change
9846 2003-12-29   Harry Eaton * haceaton AT users dot sourceforge dot net *
9848         * src/find.c: Fixed a polygon/polygon intersection bug where a wrong
9849         point index was used
9851 2003-12-29   Harry Eaton * haceaton AT users dot sourceforge dot net *
9853         * src/file.c: Restored accidentally deleted line during formating
9854         change.
9856 2003-12-29   Harry Eaton * haceaton AT users dot sourceforge dot net *
9858         * src/action.c, src/autoplace.c, src/buffer.c, src/change.c,
9859         src/command.c, src/control.c, src/copy.c, src/create.c,
9860         src/crosshair.c, src/dev_ps.c, src/dev_rs274x.c, src/dialog.c,
9861         src/draw.c, src/drill.c, src/error.c, src/file.c, src/fileselect.c,
9862         src/find.c, src/gui.c, src/insert.c, src/kdtree.c, src/lgdialog.c,
9863         src/library.c, src/log.c, src/main.c, src/menu.c, src/mirror.c,
9864         src/misc.c, src/move.c, src/mtspace.c, src/mymem.c, src/netlist.c,
9865         src/output.c, src/pinout.c, src/polygon.c, src/print.c,
9866         src/printdialog.c, src/printpanner.c, src/rats.c, src/remove.c,
9867         src/report.c, src/rotate.c, src/rubberband.c, src/search.c,
9868         src/select.c, src/set.c, src/sizedialog.c, src/undo.c, src/vector.c: 
9869         Cleaned up coding formating from long-ago indent diaster with _LOOP
9870         macros.  These should be formating changes only.
9872 2003-12-28   Harry Eaton * haceaton AT users dot sourceforge dot net *
9874         * src/insert.c, src/polygon.c, src/remove.c, src/search.c,
9875         src/search.h, src/undo.c: fixed polygon undo bugs; speed-up of undo
9876         operations
9878 2003-12-26   DJ Delorie * dj AT delorie dot com *
9880         * src/djopt.c: Use the layer groups to determine which layers are
9881         solder and component.  Fix bugs in check2 and padcleaner where
9882         deleted lines weren't skipped.
9884 2003-12-26   Harry Eaton * haceaton AT users dot sourceforge dot net *
9886         * src/djopt.c: added undo capability for trace optimizations
9888 2003-12-25   Harry Eaton * haceaton AT users dot sourceforge dot net *
9890         * src/autoroute.c, src/copy.c, src/dev_rs274x.c, src/draw.c,
9891         src/find.c, src/macro.h, src/polygon.c, src/print.c,
9892         src/rubberband.c, src/undo.c: using macro LAYER_PTR(n) to go from
9893         layer number to pointer.  this simplifies the code a little bit
9895 2003-12-25   Harry Eaton * haceaton AT users dot sourceforge dot net *
9897         * src/move.c, src/remove.c: simplified ObjectMove undo serial number
9898         handling
9900 2003-12-24   Harry Eaton * haceaton AT users dot sourceforge dot net *
9902         * src/select.c: fixed bug where null F->Pad could be called (e.g.
9903         change drill size)
9905 2003-12-22   Harry Eaton * haceaton AT users dot sourceforge dot net *
9907         * src/netlist.c: Both ends of an added rat line must have named
9908         elements
9910 2003-12-22   Harry Eaton * haceaton AT users dot sourceforge dot net *
9912         * src/find.c, src/search.c: Fixed various DRC errors with arcs,
9913         square pads and square pins
9915 2003-12-21   Harry Eaton * haceaton AT users dot sourceforge dot net *
9917         * src/netlist.c: Disallow drawing rat-lines to unnamed elements;
9918         fixed a problem with netlist window being doubly disposed.
9920 2003-12-20   Dan McMahill * dan AT mcmahill dot net *
9922         * lib/smt.inc: add -*- m4 -*-
9924 2003-12-17   Dan McMahill * dan AT mcmahill dot net *
9926         * lib/Makefile.am, lib/Makefile.in, lib/common.m4,
9927         lib/gen_list.awk, lib/gen_m4.awk, lib/johnstech.inc: add footprints
9928         for Johnstech Evaluation Socket for QFN packages Johnstech Socket
9929         Part Numbers 724810 through 724839.  Note, the footprint has been
9930         checked by hand but not yet verified through fabrication.
9932 2003-12-01   Dan McMahill * dan AT mcmahill dot net *
9934         * configure: regen after -R fix
9936 2003-12-01   Dan McMahill * dan AT mcmahill dot net *
9938         * configure.ac: When trying out the various -R, --rpath, etc.
9939         compiler flags, actually try them out instead of just claiming to.
9940         Addresses part of bug report 850369 filed by Tom Saunders.
9942 2003-11-29   Harry Eaton * haceaton AT users dot sourceforge dot net *
9944         * src/crosshair.c: Allow snap to line end-points and vias when
9945         off-grid
9947 2003-11-20   Harry Eaton * haceaton AT users dot sourceforge dot net *
9949         * src/dev_rs274x.c: restored bug fixes that got lost, fixed some
9950         bugs and cleaned the code a little
9952 2003-11-20   Harry Eaton * haceaton AT users dot sourceforge dot net *
9954         * src/dev_rs274x.c: removed #include <varargs> that accidentally got
9955         in on the last commit
9957 2003-11-19   Harry Eaton * haceaton AT users dot sourceforge dot net *
9959         * src/dev_rs274x.c, src/print.c: Changed print.c and dev_rs274x.c in
9960         order to provide negative image ground planes for gerber output when
9961         possible. Some fab vendors can't handle or charge extra for
9962         composite ground planes which is the motivation for this.  Negative
9963         image planes are made when (1) There are no lines, arcs, text, or
9964         pads on a layer and (2) There is exactly 1 polygon on the layer and (3) All vias/holes/pins pierce the polygon. The polygon is then
9965         assumed to consume all of the area and only the thermal reliefs and
9966         pin/via clearances are needed. haceaton 11/19/03
9968 2003-11-13   Dan McMahill * dan AT mcmahill dot net *
9970         * doc/Makefile.in: regen
9972 2003-11-13   Dan McMahill * dan AT mcmahill dot net *
9974         * doc/Makefile.am: add rules for creating postscript and png from a
9975         tgif drawing.  Needed for improved docs.
9977 2003-11-13   Dan McMahill * dan AT mcmahill dot net *
9979         * config.h.in: regen after adding Xpm check
9981 2003-11-13   Dan McMahill * dan AT mcmahill dot net *
9983         * src/print.c: Change how the polarity of the soldermask relief
9984         layer is handled.  The polarity is not changed but it now correctly
9985         works for postscript output as well as gerber output.  Previously
9986         the postscript output produced white on a white background or black
9987         on a black background.  This addresses PR 825680 filed by Russ Dill.
9989 2003-11-08   Dan McMahill * dan AT mcmahill dot net *
9991         * configure, configure.ac: use AC_PATH_PROGS to search through a
9992         list of candidates for wish
9994 2003-11-08   Dan McMahill * dan AT mcmahill dot net *
9996         * configure, src/Makefile.in, src/script/Makefile.in: regen after
9997         moving the pcb script to a subdirectory.
9999 2003-11-08   Dan McMahill * dan AT mcmahill dot net *
10001         * configure.ac, src/Makefile.am, src/pcb.in,
10002         src/script/Makefile.am, src/script/pcb.in: move the pcb script to a
10003         subdirectory to avoid name conflicts with the Pcb application
10004         default file on systems such as cygwin that are not case sensitive.
10006 2003-11-08   Dan McMahill * dan AT mcmahill dot net *
10008         * configure, configure.ac: search for libXpm which is needed on
10009         cygwin libXaw
10011 2003-11-08   Dan McMahill * dan AT mcmahill dot net *
10013         * configure, configure.ac: add a few more variants of wish (wish83,
10014         cygwish80, etc) to search for
10016 2003-10-15   Dan McMahill * dan AT mcmahill dot net *
10018         * src/dev_rs274x.c: fix two bugs related to gerber file generation.
10019         The first bug is triggered when the first aperture used in a file is
10020         the same as the last aperture used in the previous file.  In this
10021         case the aperture selection code is missing from the output file.  The second bug is when the first point drawn has its Y coordinate
10022         (in PCB coordinates) equal to zero.  The output will be at gerber Y
10023         coordinate zero which is on the opposite side of the board.  Thanks to Gabriel Paubert (paubert at iram dot es) for noting these
10024         bugs and supplying a patch.
10026 2003-10-13   Dan McMahill * dan AT mcmahill dot net *
10028         * src/report.c: correct the reporting of soldermask relief for pads
10029         and via's.  Patch provided by Gabriel Paubert, paubert at iram dot
10030         es on the geda-dev mailing list.
10032 2003-10-11   Dan McMahill * dan AT mcmahill dot net *
10034         * src/report.c: show pad names in object report.  patch supplied in
10035         bug report 787711 by Olof Tangrot.
10037 2003-10-11   Dan McMahill * dan AT mcmahill dot net *
10039         * src/cmask.grb, src/cpaste.grb, src/csilk.grb, src/pdrill.grb,
10040         src/smask.grb, src/spaste.grb, src/ssilk.grb, src/udrill.grb: remove
10041         some output files which should have never been in CVS.
10043 2003-10-03   Dan McMahill * dan AT mcmahill dot net *
10045         * lib/Makefile.in: regen after qfn.inc additions
10047 2003-10-03   Dan McMahill * dan AT mcmahill dot net *
10049         * lib/Makefile.am, lib/common.m4, lib/geda.inc, lib/qfn.inc: add 60
10050         members of the Quad Flat No-lead (QFN) package family.  Based on
10051         package drawings downloaded from www.maxim-ic.com and Intersil
10052         technical brief TB389.1 "PCB Land Pattern Desugn and Surface Mount
10053         Guidelines for QFN (MLFP) Packages".
10055 2003-10-01   Dan McMahill * dan AT mcmahill dot net *
10057         * doc/Xdefaults.tgif, doc/pad.obj: add a figure to help with
10058         describing the pads.  Also add an Xresources file needed to convert
10059         the tgif drawing to png
10061 2003-09-30   Dan McMahill * dan AT mcmahill dot net *
10063         * doc/pcb.texi: update copyright for last changes
10065 2003-09-30   Dan McMahill * dan AT mcmahill dot net *
10067         * configure, example/Makefile.in, example/libraries/Makefile.in: 
10068         regen after example/libraries addition
10070 2003-09-30   Dan McMahill * dan AT mcmahill dot net *
10072         * configure.ac, example/Makefile.am: add example/libraries/Makefile
10074 2003-09-30   Dan McMahill * dan AT mcmahill dot net *
10076         * doc/pcb.texi, example/libraries/Makefile.am,
10077         example/libraries/example.inc, example/libraries/example.list,
10078         example/libraries/example.m4: Add two new chapters to the manual.
10079         The first attempts to provide some more documentation about library
10080         creation.  It includes a complete example of adding footprints using
10081         M4 style libraries as well as giving instructions on creating newlib
10082         style footprints.  The second added chapter shows how to take a
10083         design from start to finish using gEDA as the schematic capture and
10084         PCB as the layout tool.  This chapter still needs work, but early
10085         feedback is good and its better than no documentation.
10087 2003-09-03   DJ Delorie * dj AT delorie dot com *
10089         * src/dev_ps.c, src/dev_rs274x.c, src/draw.c, src/drill.c,
10090         src/print.c, src/report.c: Add FAB drawing page.  Use thinner traces
10091         for larger fonts.
10093 2003-09-03   Dan McMahill * dan AT mcmahill dot net *
10095         * aclocal.m4, configure: regen
10097 2003-09-03   Dan McMahill * dan AT mcmahill dot net *
10099         * acinclude.m4, configure.ac: don't hardcode -lXaw in the FUNCPROTO
10100         and related tests.
10102 2003-09-03   Dan McMahill * dan AT mcmahill dot net *
10104         * configure: regen
10106 2003-09-03   Dan McMahill * dan AT mcmahill dot net *
10108         * configure.ac: add a --with-xaw= option that lets you select an
10109         alternative to Xaw.  For example, --with-xaw=Xaw3d will search for
10110         the Xaw3d library.
10112 2003-09-03   Dan McMahill * dan AT mcmahill dot net *
10114         * doc/pcb.texi: add brief section about the trace optimizer.
10116 2003-08-31   Dan McMahill * dan AT mcmahill dot net *
10118         * lib/geda.inc: change 'Square' to 'Rectangular' to the comment for
10119         the rectangular QFP section.
10121 2003-08-30   Dan McMahill * dan AT mcmahill dot net *
10123         * lib/gen_geda_list.awk, lib/gen_geda_m4.awk: remove the lines which
10124         tried to copy the source file RCS Id to the generated files.  CVS
10125         broke this feature by expanding keywords on me.
10127 2003-08-30   Dan McMahill * dan AT mcmahill dot net *
10129         * lib/geda.list, lib/geda.m4: these files are autogenerated now
10131 2003-08-30   Dan McMahill * dan AT mcmahill dot net *
10133         * lib/geda.inc, lib/qfpdj.inc: rework the QFP packages fixing
10134         several bugs and greatly expanding the footprint database.  Patches
10135         supplied in bug report 785400 by Wojciech Kazubski.  Many thanks for
10136         the contribution!
10138 2003-08-30   Dan McMahill * dan AT mcmahill dot net *
10140         * lib/common.m4: add qfpdj.inc to the include list
10142 2003-08-30   Dan McMahill * dan AT mcmahill dot net *
10144         * lib/CreateLibraryContents.sh.in: when given a -I flag, look both
10145         there and the current directory for .list files.   Needed for
10146         building outside the source tree directory.
10148 2003-08-30   Dan McMahill * dan AT mcmahill dot net *
10150         * lib/Makefile.am, lib/Makefile.in, lib/gen_geda_list.awk,
10151         lib/gen_geda_m4.awk: add scripts which autogenerate geda.m4 and
10152         geda.list from geda.inc.
10154 2003-08-26   Dan McMahill * dan AT mcmahill dot net *
10156         * lib/geda.inc, lib/geda.list, lib/geda.m4, lib/plcc.inc: Add
10157         20,28,32 pin PLCC footprints, both unsocketed and socketed (through
10158         hole).  Provided in bug report 777539 by Troy Jacobson.
10160 2003-08-23   DJ Delorie * dj AT delorie dot com *
10162         * src/djopt.c: Support however many layers are configured.
10164 2003-08-16   Dan McMahill * dan AT mcmahill dot net *
10166         * doc/pcb.texi: add info-dir entry
10168 2003-08-16   Dan McMahill * dan AT mcmahill dot net *
10170         * newlib/2_pin_thru-hole_packages/Makefile.in: regen
10172 2003-08-16   Dan McMahill * dan AT mcmahill dot net *
10174         * newlib/2_pin_thru-hole_packages/Makefile.am: Makefile.am is not a
10175         library component so do not install it as one
10177 2003-08-15   Dan McMahill * dan AT mcmahill dot net *
10179         * README.snapshots: add a note on creating snapshots
10181 2003-08-15   Dan McMahill * dan AT mcmahill dot net *
10183         * doc/pcb.texi: add DJ and myself
10185 2003-08-14   Dan McMahill * dan AT mcmahill dot net *
10187         * lib/lsi.list, lib/lsi.m4: Remove extra space in one of the pin
10188         names in AT90S2313_dil and add missing AT90S4434_dil AT90S8535_dil
10189         AT90S8535_plcc.  Patch provided in bug report 770829 by Daniel
10190         Mooney (dbmk).
10192 2003-08-06   Dan McMahill * dan AT mcmahill dot net *
10194         * lib/texas_inst_voltage_reg.m4: fix parse error on uA7952C.  Patch
10195         provided in bug report 770829 by Daniel Mooney (dbmk).
10197 2003-08-05   Dan McMahill * dan AT mcmahill dot net *
10199         * lib/texas_inst_amplifier.m4: fix parse errors in TL083 and ua747.
10200         Patch provided in bug report 770829 by Daniel Mooney (dbmk).
10202 2003-08-05   Dan McMahill * dan AT mcmahill dot net *
10204         * lib/jerry.m4: fix parse errors on DS1225 and DS1230.  Patch
10205         provided in bug report 770829 by Daniel Mooney (dbmk).
10207 2003-07-25   DJ Delorie * dj AT delorie dot com *
10209         * : second dummy commit
10211 2003-07-20   Dan McMahill * dan AT mcmahill dot net *
10213         * README.cvs: note that autoconf 2.13 is not new enough and mention
10214         how to get the version
10216 2003-07-20   DJ Delorie * dj AT delorie dot com *
10218         * src/dev_rs274x.c: polygon fills must have a defined aperture also
10220 2003-07-20   DJ Delorie * dj AT delorie dot com *
10222         * src/dev_rs274x.c, src/print.c: Solder mask layers are reliefs and
10223         normally are positive prints.  Support inverted gerber plots.
10225 2003-07-07   DJ Delorie * dj AT delorie dot com *
10227         * src/dev_rs274x.c: Properly scale outline and alignment.  Add
10228         segment to alignment to act as registration.
10230 2003-07-06   DJ Delorie * dj AT delorie dot com *
10232         * src/report.c: Sort drill report by hole size, list total hole
10233         count.
10235 2003-07-02   DJ Delorie * dj AT delorie dot com *
10237         * src/djopt.c: Fix off-by-one bug in handling bloat.  Be more
10238         careful about cleaning up traces within pads.
10240 2003-07-01   DJ Delorie * dj AT delorie dot com *
10242         * src/sizedialog.c: The minimum size of a board should never be more
10243         than the current actual size of the board.
10245 2003-06-25   DJ Delorie * dj AT delorie dot com *
10247         * src/Pcb.ad.in, src/change.c: Automatically set CLEARLINEFLAG if
10248         the user modifies the clearance.  Add keys for changing clearance by
10249         selection instead of pointer.
10251 2003-06-22   DJ Delorie * dj AT delorie dot com *
10253         * src/Makefile.in: Regenerate with djopt.c
10255 2003-06-22   DJ Delorie * dj AT delorie dot com *
10257         * src/action.c, src/const.h, src/crosshair.c, src/menu.c: Add
10258         orthogonal move feature
10260 2003-06-22   DJ Delorie * dj AT delorie dot com *
10262         * src/Pcb.ad.in, src/action.c, src/const.h, src/draw.c, src/menu.c: 
10263         Add Thindraw
10265 2003-06-22   DJ Delorie * dj AT delorie dot com *
10267         * src/Makefile.am, src/Pcb.ad.in, src/djopt.c, src/djopt.h,
10268         src/main.c, src/menu.c: Add trace optimizer.
10270 2003-06-13   Dan McMahill * dan AT mcmahill dot net *
10272         * Makefile.in, aclocal.m4, config.h.in, configure, depcomp: add
10273         automake/conf output to make it easier for users to build
10275 2003-06-13   Dan McMahill * dan AT mcmahill dot net *
10277         * README_FILES/Makefile.in, doc/Makefile.in, example/Makefile.in,
10278         lib/Makefile.in, newlib/2_pin_thru-hole_packages/Makefile.in,
10279         newlib/Makefile.in, newlib/analog-devices/Makefile.in,
10280         newlib/burr-brown/Makefile.in, newlib/connectors/Makefile.in,
10281         newlib/crystal/Makefile.in, newlib/cypress/Makefile.in,
10282         newlib/electro-optics/Makefile.in,
10283         newlib/generic_SMD_packages/Makefile.in,
10284         newlib/headers/Makefile.in, newlib/msp430/Makefile.in,
10285         newlib/not_vetted_ingo/Makefile.in, newlib/sockets/Makefile.in,
10286         newlib/tests/Makefile.in, newlib/toko/Makefile.in, src/Makefile.in,
10287         src/icons/Makefile.in, tools/Makefile.in, tutorial/Makefile.in: add
10288         the automake/conf generated files to make building from CVS sources
10289         easier for people.
10291 2003-06-13   Dan McMahill * dan AT mcmahill dot net *
10293         * src/error.c: only declare sys_nerr if we're using the sys_errlist
10294         interface.  This fixes compilation on NetBSD/alpha using gcc-3.3.
10296 2003-06-13   Dan McMahill * dan AT mcmahill dot net *
10298         * src/dev_rs274x.c: remove unused varargs.h header which breaks
10299         gcc-3.3 compilation
10301 2003-06-05   Dan McMahill * dan AT mcmahill dot net *
10303         * src/action.c, src/menu.c: Allow '=' at the beginning of the zoom
10304         exponent to indicate an absolute number rather than a relative
10305         number.  This lets a value of "=-2" be used to indicate an absolute
10306         -2 while "-2" still indicates a relative -2.  Also correct the
10307         position of the check mark on the zoom menu.  Patch from DJ Delorie.
10309 2003-05-26   Dan McMahill * dan AT mcmahill dot net *
10311         * src/file.c, src/fileselect.c, src/misc.c, src/misc.h: Fix a bug in
10312         the way the current working directory is found.  This caused the
10313         file dialog box to always start in the library tree directory.  In addition add a loop in ParseLibraryTree() to allow multiple
10314         newlib style directory tree's to be specified in the Xresource.
10315         This provides an easy way to have per-user and per-project library
10316         directories.  These directories may either be specified as an
10317         absolute or relative path.  Patches provided by Tony (droghedra at users dot sourceforge dot
10318         net) in bug report 736010 with minor changes by me.
10320 2003-05-22   Dan McMahill * dan AT mcmahill dot net *
10322         * lib/Makefile.am: add missing rules.inc
10324 2003-05-22   Dan McMahill * dan AT mcmahill dot net *
10326         * src/menu.c: add 2 more levels of zooming to the menu.  Inspired by
10327         an email from DJ Delorie on the gEDA mailing list.
10329 2003-05-21   Dan McMahill * dan AT mcmahill dot net *
10331         * src/parse_l.l: change yy_current_buffer to YY_CURRENT_BUFFER.
10332         This addresses the build \ problem reported in bug 734403 and also
10333         agrees with the man page for \ flex-2.5.4.\ \ In addition add a
10334         %option yylineno to address part of bug 736010\ where the line
10335         number associated with a parse error is incorrectly\ displayed as 1.
10336         \
10338 2003-05-20   Dan McMahill * dan AT mcmahill dot net *
10340         * lib/common.m4: add missing bga.inc and resistor_adjust.inc
10341         included.  The latter addresses part of bug report 734403.
10343 2003-03-17   Dan McMahill * dan AT mcmahill dot net *
10345         * : remove spurious file which should not have been imported.  Noted
10346          by Mark Becker.
10348 2003-03-17   Dan McMahill * dan AT mcmahill dot net *
10350         * ...: remove spurious file which should not have been imported.
10351         Noted by Mark Becker.
10353 2003-03-05   Dan McMahill * dan AT mcmahill dot net *
10355         * src/error.c: if strerror() is present on our system then use it
10356         instead of trying to use sys_errlist.  Patch from harry, with the
10357         check for strerror from me.
10359 2003-03-05   Dan McMahill * dan AT mcmahill dot net *
10361         * configure.ac: move the strerror test up in the configure process
10362         so we don't need to link to the X libraries for the test.
10364 2003-03-05   Dan McMahill * dan AT mcmahill dot net *
10366         * configure.ac: add check for strerror()
10368 2003-02-24   Dan McMahill * dan AT mcmahill dot net *
10370         * src/autoroute.c: when checking for a NULL pointer compare to NULL
10371         rather than 0 for enhanced portability.
10373 2003-02-21   Dan McMahill * dan AT mcmahill dot net *
10375         * configure.ac: bump to 1.99o since a 1.99n version was posted to
10376         the geda list.  We should avoid further updates to this version
10377         number until a release.  If users want snapshots, they can get them
10378         from CVS.
10380 2003-02-21   Dan McMahill * dan AT mcmahill dot net *
10382         * src/kdtree.c: change c++ style comments to c style and remove the
10383         use of non-static initializers to allow the SunPRO c compiler to be
10384         able to compile this file.
10386 2003-02-21   Dan McMahill * dan AT mcmahill dot net *
10388         * src/autoroute.c: coding style fixes to allow this to be compiled
10389         with the SunPRO c compiler.  Changes are moving from c++ style
10390         comments to c style comments and getting rid of non-static
10391         initializers.
10393 2003-02-21   Dan McMahill * dan AT mcmahill dot net *
10395         * README.cvs: - add section on checking out via anoncvs and updating via anoncvs.  - point to INSTALL document for what to do afte bootstrapping the
10396           auto* tools
10398 2003-02-20   Dan McMahill * dan AT mcmahill dot net *
10400         * doc/Imakefile, doc/pcb.texi.in, doc/pcb.texi.raw,
10401         doc/refcard.tex.in, doc/refcard.tex.raw: remove obsolete files
10403 2003-02-20   Dan McMahill * dan AT mcmahill dot net *
10405         * : these don't really belong in CVS.  The sources are in the doc/
10406         directory and they do get generated and put into the distfile when a
10407         release is made.
10409 2003-02-20   Dan McMahill * dan AT mcmahill dot net *
10411         * : remove obsolete file (the contents live in pcb/newlib/ now
10413 2003-02-20   Dan McMahill * dan AT mcmahill dot net *
10415         * lib/CreateLibrary.sh.raw, lib/CreateLibraryContents.sh.raw,
10416         lib/Imakefile, lib/QueryLibrary.sh.raw: remove obsolete files
10418 2003-02-20   Dan McMahill * dan AT mcmahill dot net *
10420         * src/CreateSedScript.sh, src/Imakefile: remove obsolete files
10422 2003-02-20   Dan McMahill * dan AT mcmahill dot net *
10424         * src/1.grb, src/2.grb, src/3.grb, src/4.grb, src/5.grb: remove
10425         unneeded output files
10427 2003-02-20   Dan McMahill * dan AT mcmahill dot net *
10429         * Initial revision