1 2011-09-18 DJ Delorie * dj AT delorie dot com *
3 * po/POTFILES.in: Remove src/hid/common/hidgl_package_vrml_y.c from
4 POTFILES.in Reverts 61bd0cb1e134bbea96abd6fd2d5fb94d09c0b3c8 as this file
5 doesn't exist in this repository, causing a distcheck failure.
7 2011-09-18 DJ Delorie * dj AT delorie dot com *
9 * : Update golden files for nanometers hid_png3 was off by a pixel on a line end. I retested my UV and TT
10 films to verify that the nanometers conversion didn't affect line
11 *widths* and updated the golden file to accept this one-pixel
14 2011-09-17 DJ Delorie * dj AT delorie dot com *
16 * src/action.c: [windows] use unix-style path separators when
19 2011-09-17 Felix Ruoff * Felix AT posaunenmission dot de *
21 * : commit 70db91fc3dfb8b378962794fc8f86f71b52f7af8 Author:
22 Kai-Martin Knaak * kmk AT lilalaser dot de * Date: Fri Sep 16
25 2011-09-16 Kai-Martin Knaak * kmk AT lilalaser dot de *
27 * doc/pcb.texi: remove panner control from documentation There is no panner control in the GUI (anymore?) since at least five
28 years. this pathc removes its description from the texi manual.
30 2011-09-17 Peter Clifton * pcjc2 AT cam dot ac dot uk *
32 * src/file.c, src/main.c: Don't adjust the Library command settings
33 if they are NULL, or an empty string. (The empty string part is a fixup for commit
34 31df66e87a810aac852139da9119b15c47fa8c71 - this will teach me for bikeshedding) The NULL part should fix bug lp-852598 Closes-bug: lp-852598
36 2011-09-17 Peter Clifton * pcjc2 AT cam dot ac dot uk *
38 * src/file.c, src/main.c: Bikeshed commit
39 11700ba8c3c951a788c8190073eb09822060dfdd I don't like magic strings, and IMO, using a blank
40 LibraryContentsCommand string to imply "don't use this feature" is
43 2011-09-17 Peter Clifton * pcjc2 AT cam dot ac dot uk *
45 * src/hid/gtk/gui-top-window.c: hid/gtk: Set the LC_NUMERIC locale
46 to "C" rather than "POSIX" This value is supported on Win32 platforms, whereas "POSIX" doesn't
47 appear to have any effect. This was one possible way to fix the "zoom doesn't work" bug on
48 Win32 for locales which use "," as the decimal separator. DJ fixed the Zoom action to be locale independent in commit
49 fd5399c67b988f2f7c9d1a0b4ab7c13bc2e95158, which worked around the
50 problem for this particular action, but I feel it would be best that
51 we made our locale handling consistent between Linux and Win32 as
52 well. Affects-bug: lp-843577
54 2011-09-08 Dima Kogan * dima AT secretsauce dot net *
56 * src/djopt.c: fixed an instance of the "only-optimize-autorouted"
57 flag being ignored Signed-off-by: Dima Kogan * dima AT secretsauce dot net *
59 2011-09-16 DJ Delorie * dj AT delorie dot com *
61 * src/file.c, src/main.c: Skip the M4 library on Windows On Windows, set the LibraryContentsCommand to the magic string
62 "*NONE*" and check for that string while loading the libraries.
63 This avoids the windows pcb.exe from trying to run bash or m4
64 scripts, which are normally not available, yet allows the user a way
65 to re-enable them if they want.
67 2011-09-16 DJ Delorie * dj AT delorie dot com *
69 * src/hid/gtk/gtkhid-main.c, src/hid/lesstif/main.c: De-localize
70 zoom parsing The values used for Zoom() were being parsed with strtod(), which
71 switches between '.' and ',' depending on locale. Switch to
72 g_ascii_strtod() which always uses '.' and thus always matches our
73 actions. Note: I didn't change the command line parsing, because I didn't
74 think we should impose '.'-centric syntax on other locales.
76 2011-09-16 DJ Delorie * dj AT delorie dot com *
78 * lib/generic.list: Add DIL footprint names and R025. Existing tutorials say to use "DIL 16 300" for DIPs (we use "N 16
79 300") and often call for the R025 footprint, so add them as aliases
80 so the m4-to-newlib converter includes them.
82 2011-09-16 DJ Delorie * dj AT delorie dot com *
84 * lib/m4lib_to_newlib.sh: Fix m4-to-newlib converter filenames The m4 library uses macros and parameters to describe footprints,
85 which allows for a *very* flexible footprint naming scheme. While
86 it is impossible for pcb to know all valid footprint values, it does
87 have a list of "standard" ones, and knows how to obtain those.
88 However, the m4 to newlib converter wasn't using the same footprint
89 naming convention as everyone else, so produced *.fp files that
90 weren't always useful. For example, there were a large number of
91 300.fp files that all collided. With this fix, the footprint name matches the value in [...] in the
92 library window, which is what we tell people to use for the
93 "footprint=" attribute anyway.
95 2011-09-16 DJ Delorie * dj AT delorie dot com *
97 * src/hid/lesstif/lesstif.h: Wrap all XmStrings in gettext()
99 2011-09-15 Peter Clifton * pcjc2 AT cam dot ac dot uk *
101 * po/POTFILES.in: Add another missing source file to POTFILES.in
103 2011-09-15 DJ Delorie * dj AT delorie dot com *
105 * src/main.c: Add locale functions Add textdomain() and setlocale() to connect to our message catalogs.
107 2011-09-15 Peter Clifton * pcjc2 AT cam dot ac dot uk *
109 * po/POTFILES.in: Add some missing files to POTFILES.in (And sorted the file contents). Reported-by: Bert Timmerman * bert dot timmerman AT xs4all dot nl *
110 Affects-bug: lp-846368
112 2011-09-09 Bert Timmerman * bert dot timmerman AT xs4all dot nl *
114 * po/nl.po: Updated the Dutch translation.
116 2011-09-15 Peter Clifton * pcjc2 AT cam dot ac dot uk *
118 * src/report.c: report.c: Don't leave actions in the undo stack or
119 change the user's flags Some actions in ReportNetLength*() would have been lumped in with
120 whatever actions were next added to the undo stack. These functions
121 also left the user's board with a different "FOUND" flags on various
122 items. In the case of the "Report(AllNetLenths)" action, a very long undo
123 stack would be created, which is not very helpful to the user. These changes hide the internal flag changes made during the net
124 length calculation from the undo system. We are able to get back to the inital board state because we save
125 the operations caused by our initial RestConnections() on the undo
126 stack. After we have done our work (modifying various flags in the
127 process), we reset the flags again (this time bypassing the Undo
128 system), so the board is consistent with the ResetConnections() call
129 we DID save undo data for. We then Undo() these changes before we
132 2011-09-15 Peter Clifton * pcjc2 AT cam dot ac dot uk *
134 * src/report.c: report.c: Return 1 for all failure conditions in
135 ReportNetLengthByName()
137 2011-09-14 Peter Clifton * pcjc2 AT cam dot ac dot uk *
139 * src/undo.c: undo.c: Add error message where
140 RestoreUndoSerialNumber() will break things If operations are addded to the undo stack between a call to
141 IncrementUndoSerialNumber() and a subsequent call for
142 RestoreUndoSerialNumber(), those added operations will be placed in
143 the undo stack with an inconsistent serial number. The {Save,Restore}UndoSerialNumber() API is pretty fragile in this
144 regard, and we should avoid using it where possible. An better alternative might be to implement a
145 "LockUndoSerialNumber()" call which temporarily disables
146 IncrementUndoSerialNumber(), and a "UnlockUndoSerialNumber()" call
147 which re-enables its increment function. Better yet - we could make these functions nestable, so we need not
148 worry whether some action uses this new feature internally when we
151 2011-09-14 Peter Clifton * pcjc2 AT cam dot ac dot uk *
153 * src/undo.c: undo.c: Handle undo failures in a more sane manner Our current error-case handling can cause serial number
154 inconsistency when something goes wrong when performing an Undo
155 operation. There are also various logic flaws in our handling, as it
156 only catches failures where every sub-undo operation with that
157 serial number fails. Remove the confusing do-loop which decrements the serial number in
158 the failure case, and return some sensible error message instead. This patch also removes the code which looked like it was intended
159 to loop over the undo stack until a serial number was found to
160 operate on. It is advantageous for code like the DRC to be able to
161 add increment the undo serial number, then safely perform an Undo -
162 even if there were no changes logged in the undo system during the
163 previous serial number. Closes-bug: lp-848509
165 2011-09-14 Peter Clifton * pcjc2 AT cam dot ac dot uk *
167 * src/undo.c: undo.c: Allow undo of locked objects Our internal actions can make changes to locked objects, then use
168 the undo mechanism to revert these changes. An example is DRC, which
169 changes flags on objects and uses the Undo system to restore their
170 original values. Affects-bug: lp-848509
172 2011-09-14 Peter Clifton * pcjc2 AT cam dot ac dot uk *
174 * src/find.c: find.c: Remove stray RestoreUndoSerialNumber() calls These will cause havoc with the undo system, as we don't actually
175 save a serial number to restore to. Until a commit efd212c1deb264e9a7f2be17e9338fbb60e22cc0 we were
176 saving a serial number at the start of each "ResetConnections
177 (true);" call, and it would have been that serial number which got
178 restored. With this and some other fixes to the undo system, these restores
179 are no longer required. Affects-bug: lp-848509
181 2011-09-14 Peter Clifton * pcjc2 AT cam dot ac dot uk *
183 * src/hid/gtk/gtkhid-main.c: gtk: Fix ghid_zoom_view_fit() to work
184 when the board is flipped. Affects-bug: lp-850311
186 2011-09-13 Peter Clifton * pcjc2 AT cam dot ac dot uk *
188 * src/hid/common/hidgl.c, src/hid/gtk/gtkhid-gl.c: Fixup OpenGL
189 includes for better compatibility with OSX Not tested ;)
191 2011-09-13 Peter Clifton * pcjc2 AT cam dot ac dot uk *
193 * autogen.sh, configure.ac, m4/ax_check_gl.m4, m4/ax_check_glu.m4,
194 m4/ax_lang_compiler_ms.m4, m4/ax_pthread.m4: Better autoconf tests
195 for GL and GLU (from GtkGLExt - GPL v2 or later) These tests should give better cross platform support for our build.
197 2011-09-13 Peter Clifton * pcjc2 AT cam dot ac dot uk *
199 * .gitignore, m4/.gitignore: Remove the m4 directory from the root
200 .gitignore file and add its own
202 2011-09-13 DJ Delorie * dj AT delorie dot com *
204 * src/hid/lesstif/styles.c: [lesstif] set units for styles dialog in
205 more places The styles dialog was segfaulting as the units hadn't been set yet,
206 if you open the style dialog before doing anything with the grid.
208 2011-09-13 Peter Clifton * pcjc2 AT cam dot ac dot uk *
210 * src/hid/gtk/gtkhid-gl.c: hid/gtk: Remove misplaced (and redundant)
211 hidgl_flush_triangles() call. If we were to flush the triangle buffer in ghid_show_crosshair(), we
212 should do it before we set XOR mode on the GL context (assuming the
213 buffer might be dirty when we are called), and we should do it after
214 we finish drawing (if we wish to leave the buffer clean when we
215 return). The location the flush was in before this commit is just plain
216 wrong. As we currently have flushes of the triangle buffer wrapping the
217 call to ghid_show_crosshair(), just leave the flushing out of this
218 function. Does this commit message provide an adequate example of simple
219 patch, complex commit message phenomenon?
221 2011-09-13 Peter Clifton * pcjc2 AT cam dot ac dot uk *
223 * src/hid/gtk/gtkhid-gdk.c, src/hid/gtk/gtkhid-gl.c,
224 src/hid/gtk/gtkhid-main.c, src/hid/gtk/gui-config.c,
225 src/hid/gtk/gui-output-events.c, src/hid/gtk/gui.h: hid/gtk: Remove
226 auto-pan feature (kill it with fire). This seems to be fairly universally unpopular on geda-user, and its
227 implementation is a little fragile, often leading the board to pan
228 off to some corner of the board as the poor user reaches for the
229 layer selector or a menu without having remembered to click the
230 feature off. The fact that the pan direction and speed was set the instant you
231 leave the drawing window also made it particularly unhelpful. A
232 proper implementation should have grabbed the mouse - or at least
233 implemented some buffer zone in which the mouse could be used to
234 give feedback on the pan direction.
236 2011-09-11 DJ Delorie * dj AT delorie dot com *
238 * src/hid/gtk/gtkhid-main.c: [windows] set GDK_PIXBUF_MODULE_FILE If we're using a local gdk-pixbuf installation, we need to set this
239 env variable to point to it.
241 2011-09-11 Bdale Garbee * bdale AT gag dot com *
243 * doc/Makefile.am: Invoke eps2png in $(srcdir), no .
245 2011-09-12 Peter Clifton * pcjc2 AT cam dot ac dot uk *
247 * src/hid/common/hidgl.c: hid/common: Remove #include "draw.h" from
250 2011-09-11 Dima Kogan * dima AT secretsauce dot net *
252 * src/hid/gtk/ghid-route-style-selector.c,
253 src/hid/gtk/ghid-route-style-selector.h, src/hid/gtk/gtkhid-main.c:
254 Re-ordered all references in the style selector dialog to have one
255 consistent ordering. Everything that refers to the settings in the style selector dialog
256 now does so in order of Line thickness Hole size Hole thickness (hole + annular ring)
257 keepaway region size This wasn't 100% consistent previously, which resulted in a bug
258 (fixed in a previous patch). This patch doesn't touch the
259 functionality, but improves the style to avoid future bugs. Modified to apply on recent route style selector changes by Bert
260 Timmerman. Signed-off-by: Andrew Poelstra (local) * apoelstra AT wpsoftware
261 dot net * Affects-bug: lp-844635
263 2011-09-11 Dima Kogan * dima AT secretsauce dot net *
265 * src/hid/gtk/ghid-route-style-selector.c: Swap via-hole and -ring
266 size connection in route style selector dialog Closes-bug: lp-844635 Signed-off-by: Andrew Poelstra (local) * apoelstra AT wpsoftware
269 2011-09-10 Andrew Poelstra (local) * apoelstra AT wpsoftware dot net *
271 * src/hid/gtk/gtkhid-main.c, src/hid/gtk/gui-top-window.c,
272 src/hid/gtk/gui.h: Repopulate route style selector on PCBChanged
273 action When loading a new pcb, Bad Things happen to the route style
274 selector because pcb's route style data is freed. This patch removes
275 all styles from the route style selector and re-adds them whenever a
278 2011-09-10 Andrew Poelstra (local) * apoelstra AT wpsoftware dot net *
280 * src/hid/gtk/ghid-route-style-selector.c,
281 src/hid/gtk/ghid-route-style-selector.h: Add
282 ghid_route_style_selector_empty to GHidRouteStyleSelector
284 2011-09-10 Andrew Poelstra (local) * apoelstra AT wpsoftware dot net *
286 * src/hid/gtk/ghid-route-style-selector.c: Add finalize function to
287 GHidRouteStyleSelector
289 2011-09-09 Bert Timmerman * bert dot timmerman AT xs4all dot nl *
291 * po/POTFILES.in: Remove the src/hid/gtk/gui-dialog-size.c entry
292 from the translatable files list. This is a completion of commit:
293 a914d5ba58104d8559395b66798b35761afb991a "Replace old route style
294 selector with GHidRouteStyleSelector" dated 20110903 11:09 PM
296 2011-09-09 Peter Clifton * pcjc2 AT cam dot ac dot uk *
298 * src/hid/gtk/ghid-layer-selector.c: hid/gtk: Filter out double
299 clicks on the layer selector widget This makes things behave a little nicer if you click to toggle a
300 layer's visibility twice in quick succession. Previously, this would
301 be interpreted as a double-click, causing an extra synthetic click
302 event which would toggle the visibility an extra time.
304 2011-09-07 Peter Clifton * pcjc2 AT cam dot ac dot uk *
306 * src/hid/gtk/gui-top-window.c: hid/gtk: Update file-changed
307 notification bar to match gedit a bit more 1. Add a stock "refresh" image to the "Reload" button. 2. Change the message text when the board has modifications. 3. Reload without further prompting if the user presses "Reload", even if the board is modified. (We already warned them due to
310 2011-09-07 Peter Clifton * pcjc2 AT cam dot ac dot uk *
312 * src/hid/gtk/gtkhid-main.c, src/hid/gtk/gui-top-window.c,
313 src/hid/gtk/gui.h: hid/gtk: Reimplement file-change monitor without
314 GFileMonitor I must have had a brain-fail when I hooked up setting up the
315 file-changed monitor in the function which sets the window title.
316 NB: That also gets called after every menu operation! A better place to hook up the monitor would be
317 ghid_sync_with_new_layout(), however changing this alone revealed
318 another issue - we would get notified for changes WE make to the
319 files. We were avoiding those events as the file-monitor was being
320 reset before it could pop up, at the end of the menu action which
321 invoked the save). However - due to a race condition bug in GLib / GIO, we would
322 sometimes see change notify events for changes we made, even when we
323 hooked up the GFileMonitor AFTER having saved (and synced) our
324 changes to disk. Rather than attempt to work around this bug, implement the
325 file-change notification in a much more simple way - look at the
326 file mtime when we update the layout, and at each time the mouse
327 pointer enters the main window. FWIW, this is how gedit currently
328 achieves the same feature.
330 2011-09-06 DJ Delorie * dj AT delorie dot com *
332 * src/action.c: Warn user if footprints can't be found on import Since the message log doesn't make it obvious, add a pop-up dialog
333 whenever there are missing footprints during an import. Affects-bug: lp-828388
335 2011-09-06 DJ Delorie * dj AT delorie dot com *
337 * src/search.c: Fix math error in IsPointOnLine() The math in C didn't match the math in the comment (and, apparently,
338 hasn't for quite some time). To test: Draw three lines, from 1000,3000 to 1500,2500, then to
339 2000,3000, then back to the start at 1000,3000. Without this patch,
340 the first and last lines are removed and replaced with a copy of the
343 2011-09-05 Peter Clifton * pcjc2 AT cam dot ac dot uk *
345 * src/action.c, src/file.c, src/file.h, src/hid/common/actions.c:
346 Implement a new RevertPCB() call, sharing code with LoadPCB() The RevertPCB() takes no filename parameter, and aside from that,
347 the only difference to LoadPCB is that when it calls the GUI's
348 "PCBChanged" action, it passes a new "revert" argument. This should
349 let the GUIs optionally do less work resetting the view state for a
350 board being reverted.
352 2011-09-06 Peter Clifton * pcjc2 AT cam dot ac dot uk *
354 * src/action.c, src/command.c, src/hid.h: Add a HID API call,
355 notify_pcb_filename_change() This is so the core can tell the GUI when the PCB being edited is
356 saved into a different file.
358 2011-09-05 Peter Clifton * pcjc2 AT cam dot ac dot uk *
360 * src/file.c, src/hid.h: Add a HID API call, notify_save_pcb()
361 called around saving the PCB The intention of this API is so that GUIs monitoring the active PCB
362 file on disk for changes, can filter out changes which occur as we
363 save the file ourselves.
365 2011-09-06 Peter Clifton * pcjc2 AT cam dot ac dot uk *
367 * src/action.c, src/command.c, src/file.c: file.c: Don't set the PCB
368 filename or changed flags inside SavePCB (Filename) Save this for the caller to do. (action.c already set the filename
369 for the SaveAs case anyway).
371 2011-09-06 Peter Clifton * pcjc2 AT cam dot ac dot uk *
373 * src/hid/gtk/gtkhid-main.c: Revert "hid/gtk: Avoid the deprecated
374 gdk_drawable_get_display()" This reverts commit c6d6ca16e58b5c7f2248c21e3248825f54e52374. Turns out the replacement API I used was only introduced in GTK
375 2.24, which is still a little new for us here.
377 2011-09-05 Peter Clifton * pcjc2 AT cam dot ac dot uk *
379 * src/hid/gtk/gui-top-window.c, src/hid/gtk/gui-utils.c: hid/gtk:
380 Remove usage of deprecated gtk_range_set_update_policy() We only set this to the default value anyway, and the API has been
381 removed with no replacements.
383 2011-09-05 Peter Clifton * pcjc2 AT cam dot ac dot uk *
385 * src/hid/gtk/gui-top-window.c, src/hid/gtk/gui-utils.c: hid/gtk:
386 Replace gtk_container_border_width with
387 gtk_container_set_border_width Replaces the old deprecated API.
389 2011-09-05 Peter Clifton * pcjc2 AT cam dot ac dot uk *
391 * src/hid/gtk/gui-utils.c: hid/gtk: Use g_signal_connect(), not
392 gtk_signal_connect() gtk_signal_connect() is deprecated.
394 2011-09-05 Peter Clifton * pcjc2 AT cam dot ac dot uk *
396 * src/hid/gtk/gui-dialog-print.c: hid/gtk: Re-write the tool-tip
397 handling code to use newer tooltip API Use the gtk_widget_set_tooltip* API introduced in GTK 2.12. This
398 avoids the APIs deprecated in GTK 2.12, and also avoids the
399 requirement to pack GTK_WIDGET_NO_WINDOW widgets inside
400 gtk_event_box() widgets to make their tooltips work.
402 2011-09-05 Peter Clifton * pcjc2 AT cam dot ac dot uk *
404 * src/hid/gtk/gui-drc-window.c, src/hid/gtk/gui-library-window.c,
405 src/hid/gtk/gui-log-window.c, src/hid/gtk/gui-netlist-window.c,
406 src/hid/gtk/gui-pinout-window.c, src/hid/gtk/gui-top-window.c:
407 hid/gtk: Replace usage of the deprecated gtk_widget_set_uposition()
408 call The closest replacement is gtk_window_move(), and looking at the GTK
409 sources, appears to be what gtk_widget_set_uposition() calls
410 internally. We are still rather at the mercy of the user's window manager as to
411 whether it will honour the request we make, and arguably we ought to
412 remove this (mis-)feature anyway.
414 2011-09-05 Peter Clifton * pcjc2 AT cam dot ac dot uk *
416 * src/hid/gtk/gui-dialog.c: hid/gtk: Replace deprecated function
417 call gtk_box_pack_start_defaults()
419 2011-09-05 Peter Clifton * pcjc2 AT cam dot ac dot uk *
421 * src/hid/gtk/gtkhid-main.c: hid/gtk: Avoid the deprecated
422 gdk_drawable_get_display() Grab the active display using gdk_window_get_display() on the window
423 belonging to the drawing area.
425 2011-09-05 Peter Clifton * pcjc2 AT cam dot ac dot uk *
427 * src/hid/gtk/gtkhid-main.c: hid/gtk: Use the g_timeout_add()
428 function, not the deprecated GTK one.
430 2011-09-05 Peter Clifton * pcjc2 AT cam dot ac dot uk *
432 * src/hid/gtk/ghid-main-menu.c: hid/gtk: Fix not accessing
433 GtkMenuShell's children harder I missed a critical part of the fix from commit
434 3584101f67f6ca2f0a252c312cb0c6c9c4fa016f
436 2011-09-05 Peter Clifton * pcjc2 AT cam dot ac dot uk *
438 * src/hid/gtk/gui-pinout-preview.c: hid/gtk: Replace
439 GTK_WIDGET_REALIZED() test with a check for window != NULL This avoids the use of the deprecated GTK_WIDGET_REALIZED macro,
440 without needing to use the GTK2.20 function
441 gtk_widget_get_realized(). The check for a NULL window should be
442 sufficient here I hope.
444 2011-09-05 Peter Clifton * pcjc2 AT cam dot ac dot uk *
446 * src/hid/gtk/gui-command-window.c: hid/gtk: Use gtk_bin_get_child()
447 accessor In GTK3.0, direct access to bin->child will be impossible.
449 2011-09-05 Peter Clifton * pcjc2 AT cam dot ac dot uk *
451 * src/hid/gtk/gui-config.c: hid/gtk: Use gtk_notebook_get_n_pages()
452 rather than diving in and counting In GTK3.0, direct access to notebook->children will be impossible.
454 2011-09-05 Peter Clifton * pcjc2 AT cam dot ac dot uk *
456 * src/hid/gtk/ghid-main-menu.c: hid/gtk: Don't access a
457 GtkMenuShell's children directly In GTK3.0, direct access to shell->children will be impossible.
459 2011-09-05 Peter Clifton * pcjc2 AT cam dot ac dot uk *
461 * src/hid/gtk/ghid-main-menu.c: hid/gtk: Free list returned from
462 gtk_container_get_children() We can (and should) g_list_free() the list of children returned when
463 we are finished with it. Whilst we are at it, convert the while loop to a for loop and use a
464 tighter condition on the loop termination test. The existing test
465 worked, but would leave a negative number in the object counter we
466 test against. This would not work if the object counters were ever
467 unsigned integers (as they might plausibly be).
469 2011-09-05 Peter Clifton * pcjc2 AT cam dot ac dot uk *
471 * src/hid/gtk/ghid-route-style-selector.c,
472 src/hid/gtk/gtkhid-main.c, src/hid/gtk/gui-dialog-print.c,
473 src/hid/gtk/gui-dialog.c, src/hid/gtk/gui-library-window.c,
474 src/hid/gtk/gui-utils.c: hid/gtk: Use accessors to get the vbox from
475 GtkDialog In GTK3.0, direct access to dialog->vbox will be impossible.
477 2011-09-05 Peter Clifton * pcjc2 AT cam dot ac dot uk *
479 * src/hid/gtk/gui-output-events.c: hid/gtk: Use accessor functions
480 for handling GtkAdjustments In GTK3.0, direct access to these member variables will be
483 2011-09-05 Peter Clifton * pcjc2 AT cam dot ac dot uk *
485 * src/hid/gtk/gui-config.c, src/hid/gtk/gui-top-window.c: hid/gtk:
486 Don't use GTK_WIDGET_SET_FLAGS() Call the appropriate setter function instead. (For GTK3.0
489 2011-09-05 Peter Clifton * pcjc2 AT cam dot ac dot uk *
491 * src/hid/gtk/gui-library-window.c: hid/gtk: Don't test for NOOP
492 before calling gtk_widget_set_sensitive() We were using a deprecated test macro anyway, GTK already does a
493 NOOP test inside gtk_widget_set_sensitive().
495 2011-09-05 Peter Clifton * pcjc2 AT cam dot ac dot uk *
497 * src/hid/gtk/gui-utils.c, src/hid/gtk/gui.h: hid/gtk: Remove unused
498 function ghid_button_set_text()
500 2011-09-05 Peter Clifton * pcjc2 AT cam dot ac dot uk *
502 * src/hid/gtk/gui-utils.c, src/hid/gtk/gui.h: hid/gtk: Remove unused
503 function ghid_button_active()
505 2011-09-05 Peter Clifton * pcjc2 AT cam dot ac dot uk *
507 * src/hid/gtk/gtkhid-gdk.c, src/hid/gtk/gui-drc-window.c: hid/gtk:
508 Use gtk_widget_get_style() accessor, rather than direct access In GTK3.0, direct access to widget->style will be impossible. Swap out the GTK_WIDGET_STATE() macro for gtk_widget_get_state(),
509 which does not directly access the GSeal'd member widget->state.
511 2011-09-05 Peter Clifton * pcjc2 AT cam dot ac dot uk *
513 * src/hid/gtk/gtkhid-gdk.c, src/hid/gtk/gtkhid-main.c,
514 src/hid/gtk/gui-misc.c, src/hid/gtk/gui-output-events.c,
515 src/hid/gtk/gui-pinout-preview.c, src/hid/gtk/gui-top-window.c,
516 src/hid/gtk/gui-utils.c: hid/gtk: Use gtk_widget_get_window()
517 accessor In GTK3.0, direct access to widget->window will be impossible.
519 2011-09-05 Peter Clifton * pcjc2 AT cam dot ac dot uk *
521 * src/hid/gtk/gtkhid-gl.c, src/hid/gtk/gui-drc-window.c,
522 src/hid/gtk/gui-keyref-window.c, src/hid/gtk/gui-library-window.c,
523 src/hid/gtk/gui-log-window.c, src/hid/gtk/gui-netlist-window.c,
524 src/hid/gtk/gui-top-window.c: hid/gtk: Use
525 gtk_widget_get_allocation() accessor In GTK3.0, direct access to widget->allocation will be impossible.
527 2011-09-05 Peter Clifton * pcjc2 AT cam dot ac dot uk *
529 * src/hid/gtk/gtkhid-gdk.c, src/hid/gtk/gtkhid-gl.c: hid/gtk: Use
530 gtk_widget_get_allocation() not gdk_window_get_geometry() This avoids an unnecessary round-trip the the X server on X11
533 2011-09-05 Peter Clifton * pcjc2 AT cam dot ac dot uk *
535 * src/hid/gtk/gtkhid-gdk.c: hid/gtk: Avoid warning caused by early
536 drawing before gport->pixmap is set Avoids a command line warning: (pcb:28876): Gdk-CRITICAL **: IA__gdk_draw_drawable: assertion
537 `GDK_IS_DRAWABLE (src)' failed With the GDK renderer in use. This trigger appears to be some state changes triggered as the new
538 layer selector widget initialises.
540 2011-09-05 Peter Clifton * pcjc2 AT cam dot ac dot uk *
542 * src/hid/gtk/gui-misc.c: hid/gtk: Clean and make
543 gport_set_cursor_type() more GTK3.0 compatible Also removes the DEFAULT_CURSOR return value (for the case of no
544 window being setup) to GDK_X_CURSOR (the 0 enum value), as the code
545 path which returned DEFAULT_CURSOR would never have been hit.
547 2011-09-05 Peter Clifton * pcjc2 AT cam dot ac dot uk *
549 * src/hid/gtk/ghid-cell-renderer-visibility.c: hid/gtk: Use
550 gtk_cell_renderer_get_{align,pad} accessors In GTK3.0, direct access to these fields will be impossible.
552 2011-09-05 Peter Clifton * pcjc2 AT cam dot ac dot uk *
554 * src/hid/gtk/gui-top-window.c: hid/gtk: Avoid double-destroying the
555 file-changed info_bar on "Reload" This was caused by an addition I made in the earlier patch to
556 destroy the info_bar when the user manually reverts or loads a new
557 file). The callback on revert button was trying to delete it (again) after
558 the revert _action_ we call triggered a destroy of the widget. Avoid
559 this by destroying the info_bar before we call the revert action.
561 2011-09-05 Andrew Poelstra * asp11 AT sfu dot ca *
563 * src/hid/gtk/ghid-layer-selector.c: gtk: use
564 gtk_action_block_activate() in layer selector The GHidLayerSelector widget now uses gtk_action_block_activate()
565 instead of storing/blocking signal IDs. This is the proper way to
566 suppress signal emission since 2.16. This also fixes the lockup bug that was supposed to be fixed by the
567 recent commit 8857757, but still occured when using the menus to
570 2011-09-05 DJ Delorie * dj AT delorie dot com *
572 * src/const.h, src/draw.c, src/misc.c, src/print.c, src/report.c:
573 Fix text scaling exceeding Coord max. The old way of scaling text was to multiply by scale/100 but this
574 could easily overflow on reasonably sized boards with a 32-bit Coord
575 type. The new code scales by (double)scale/100.0 instead. Since we
576 don't store scaled values in the PCB file, a loss of precision won't
577 matter, but a double has 53 bits of precision - in nanometers,
578 that's a board about the size of North America. Closes-bug: lp-832451
580 2011-09-05 DJ Delorie * dj AT delorie dot com *
582 * configure.ac, globalconst.h, src/global.h: Add configure selection
583 of 32/64 Coord type --enable-coord64 Force 64-bit coordinate types --enable-coord32 Force 32-bit coordinate types Defaults to "long" as before, but if you give one of the above, the
584 type changes to a suitable 32-bit or 64-bit type. Note that this is
585 only guaranteed to be the size you choose if you have <stdint.h>
586 which most OSs provide, else the "int" and "long long" types are
589 2011-09-05 Andrew Poelstra * asp11 AT sfu dot ca *
591 * src/hid/gtk/ghid-layer-selector.c: gtk: Fix "clicking on layer
592 selector separator bug" If you click on the selector between real and virtual layers in the
593 pcb layer selector, it will toggle the first layer. This patch
594 simply ignores the click.
596 2011-09-05 Andrew Poelstra * asp11 AT sfu dot ca *
598 * src/hid/gtk/ghid-layer-selector.c, src/hid/gtk/gui-top-window.c:
599 gtk: fix behavior when hiding the last visible layer When you try to toggle the last layer invisible, pcb should refuse
600 to let you do so, since something has to be selected, and we don't
601 allow selection of invisible layers. What actually happens is that pcb locks up. This patch fixes that.
603 2011-09-05 Andrew Poelstra * asp11 AT sfu dot ca *
605 * src/hid/gtk/gui-top-window.c: gtk: Force silk and rat layers
606 visible when they are selected.
608 2011-09-05 Andrew Poelstra * asp11 AT sfu dot ca *
610 * src/hid/gtk/ghid-route-style-selector.c,
611 src/hid/gtk/ghid-route-style-selector.h, src/hid/gtk/gtkhid-main.c:
612 Implement RouteStylesChanged action This action looks at the actual route-style settings (i.e.,
613 Settings.LineThickness), and gives these to the route style
614 selector. The selector looks in its list and selects a style, if one
615 matches. Otherwise, it does nothing.
617 2011-09-04 Andrew Poelstra * asp11 AT sfu dot ca *
619 * src/hid/gtk/ghid-route-style-selector.c,
620 src/hid/gtk/ghid-route-style-selector.h,
621 src/hid/gtk/gui-command-window.c, src/hid/gtk/gui-top-window.c,
622 src/hid/gtk/gui.h: Add Ctrl+F1,F2,F3,... accelerators to route style
623 selector Since we now have three accelerator groups to worry about (those of
624 the layer selector, route style selector and main menu), I have
625 moved the hooking/unhooking code into two functions: ghid_install_accel_groups () ghid_remove_accel_groups () These should be used whenever accelerators need to be disabled, for
626 example, when the user has the command box active.
628 2011-09-03 Andrew Poelstra * asp11 AT sfu dot ca *
630 * src/hid/gtk/gui-top-window.c, src/hid/gtk/gui.h: Remove the last
631 of ghidgui->toggle_holdoff
633 2011-09-03 Andrew Poelstra * asp11 AT sfu dot ca *
635 * src/Makefile.am, src/hid/gtk/gtkhid-main.c,
636 src/hid/gtk/gui-dialog-size.c, src/hid/gtk/gui-top-window.c,
637 src/hid/gtk/gui.h: Replace old route style selector with
638 GHidRouteStyleSelector TODO: The RouteStylesChanged action is now very broken. Menu accelerators need to be installed
640 2011-09-03 Andrew Poelstra * asp11 AT sfu dot ca *
642 * src/hid/gtk/ghid-main-menu.c, src/hid/gtk/ghid-main-menu.h:
643 Introduce functions for GHidRouteStyleSelector handling to menu
645 2011-09-03 Andrew Poelstra * asp11 AT sfu dot ca *
647 * src/Makefile.am, src/hid/gtk/ghid-route-style-selector.c,
648 src/hid/gtk/ghid-route-style-selector.h: Introduce
649 GHidRouteStyleSelector widget, don't use it yet
651 2011-09-04 Peter Clifton * pcjc2 AT cam dot ac dot uk *
653 * src/hid/gtk/gui-top-window.c, src/hid/gtk/gui.h: hid/gtk: Add file
654 change notification for the currently open PCB If the file is modified on disk, a bar appears at the top of the PCB
655 area offering the user a choice as to whether they wish to reload
656 the board or cancel (do nothing). If the user has changes, and hits reload - they are prompted as to
657 whether they wish to throw away their changes. Requires GTK 2.18 or higher due to use of the GtkInfoBar widget.
659 2011-09-05 Peter Clifton * pcjc2 AT cam dot ac dot uk *
661 * configure.ac: Require GTK 2.18 or later for the GTK HID. This is for some new widgets, like the GtkInfoBar.
663 2011-09-04 Peter Clifton * pcjc2 AT cam dot ac dot uk *
665 * src/hid/gtk/gui-top-window.c, src/hid/gtk/gui.h: hid/gtk: Fix
666 styling of menubar area so it is consistent across its width This relies on some nasty tricks copying GtkStyle's between the
667 menubar widget and a new GtkEventBox widget we pack the top bar in
668 to give us a background to paint on. We also adjust the styles of
669 the coordinate read- out labels and frames to ensure they are
670 legible. There may still be some inconsistencies, as the coordinate selector
671 button is themed as if it were a toolbar button, hence the
672 colourings used may be designed to work with a different background
675 2011-09-04 Peter Clifton * pcjc2 AT cam dot ac dot uk *
677 * src/hid/gtk/gui-top-window.c, src/hid/gtk/gui.h: hid/gtk: Create a
678 GtkToolbar of mode buttons for compact vertical mode Rather than packing our mode buttons into an hbox, use a proper
679 GtkToolbar so theming will match the rest of the user's desktop. This simplifies code to switch compact mode on and off, as we have
680 two distinct widgets to show / hide, rather than having to reparent
681 the mode buttons each time. It does, however mean we have to be careful not to double-trigger
682 events when keeping the two sets of mode buttons in sync with each
683 other, so that isn't ideal. In the longer term, we probably ought to split out the mode button
684 area on the left-hand toolbar as a separate self-contained widget.
686 2011-09-03 Andrew Poelstra * asp11 AT sfu dot ca *
688 * src/hid/gtk/ghid-cell-renderer-visibility.c: gtk: Prelight toggle
689 swatches in layer selector This brightens the layer visibility swatches subtly when the mouse
690 hovers over them. IMHO this improves the discoverability of the
691 widget without being distracting or misleading.
693 2011-09-03 Andrew Poelstra * asp11 AT sfu dot ca *
695 * src/hid/gtk/ghid-layer-selector.c: gtk: Don't gray out invisible
696 layers' text in the selector
698 2011-09-03 Andrew Poelstra * asp11 AT sfu dot ca *
700 * src/hid/gtk/ghid-layer-selector.c: gtk: toggle non-activatable
701 layers on click, without checking for swatch
703 2011-09-03 Peter Clifton * pcjc2 AT cam dot ac dot uk *
705 * src/hid/gtk/gui-config.c, src/hid/gtk/gui-top-window.c,
706 src/hid/gtk/gui.h: hid/gtk: Remove compact_vbox and compact_hbox
708 2011-09-03 Peter Clifton * pcjc2 AT cam dot ac dot uk *
710 * src/hid/gtk/gui-config.c, src/hid/gtk/gui-top-window.c,
711 src/hid/gtk/gui.h: hid/gtk: Always show the PCB name on the
712 title-bar, not the toolbar This saves space and reduces code complexity
714 2011-09-03 Peter Clifton * pcjc2 AT cam dot ac dot uk *
716 * src/hid/gtk/gui-top-window.c, src/hid/gtk/gui.h: hid/gtk: Don't
717 use a GtkEventBox as a container widget We weren't making use of the events from the event box, and appeared
718 just to be using it as a convenient container to allow setting the
719 sensitivity on our entire left hand toolbar at once. Scrap the event box widget and just store a pointer to the vbox
720 widget which the left toobar items are packed into. We can set the
721 sensitivity on this and get the desired effect.
723 2011-09-03 Peter Clifton * pcjc2 AT cam dot ac dot uk *
725 * src/hid/gtk/gui-pinout-window.c, src/hid/gtk/gui-top-window.c:
726 hid/gtk: Don't pack the drawing area in a GtkViewport widget (For both the main window and the pinout preview). The GtkViewport
727 widget is designed to add scroll bars to a widget which doesn't have
728 native scroll capabilities. We are handling out own scroll-bars, so
729 the only gain we had from the GtkViewport we added was a shadow
730 around the widget. If we decide we want the shadow back, a more appropriate widget to
731 pack the drawing area with might be a GtkFrame.
733 2011-09-03 Peter Clifton * pcjc2 AT cam dot ac dot uk *
735 * src/hid/gtk/gui-top-window.c: hid/gtk: Remove the vbox used to
736 pack ghidgui->compact_hbox The main effect here is that the contents of the compact_hbox will
737 get more vertical space assigned to them if the menu bar section is
738 taller than the natural size of those widgets. The visual change seems acceptable, and we could use every bit of
739 code-cleanup in ghid_build_pcb_top_window()
741 2011-09-03 Peter Clifton * pcjc2 AT cam dot ac dot uk *
743 * src/hid/gtk/gui-top-window.c: hid/gtk: Remove some more temporary
744 variable assignments These make the code harder to follow, as the same temporary variable
745 is used again and again to refer to different widgets.
747 2011-09-03 Peter Clifton * pcjc2 AT cam dot ac dot uk *
749 * src/hid/gtk/gui-top-window.c, src/hid/gtk/gui.h: hid/gtk: Don't
750 use an hbox to pack the board name label The hbox only has one child, so use the name label directly.
752 2011-09-03 Peter Clifton * pcjc2 AT cam dot ac dot uk *
754 * src/hid/gtk/gui-top-window.c: hid/gtk: Skip the generic "hbox"
755 variable when storing the widget anyway For widgets we keep references to in the ghidgui structure, we avoid
756 confusion by assigning directly to the more descriptive ghidgui
759 2011-09-03 Peter Clifton * pcjc2 AT cam dot ac dot uk *
761 * src/hid/gtk/gui-top-window.c: hid/gtk: Don't pack a frame around
764 2011-09-02 Andrew Poelstra * asp11 AT sfu dot ca *
766 * src/hid/gtk/gui-dialog-size.c, src/misc.c, src/misc.h: Move
767 make_route_string() from gtk into misc.c
769 2011-09-02 Andrew Poelstra * asp11 AT sfu dot ca *
771 * src/mymem.c, src/mymem.h: Const-correct StripWhiteSpaceAndDup in
774 2011-09-01 Peter Clifton * pcjc2 AT cam dot ac dot uk *
776 * src/hid/gtk/gtkhid-main.c: hid/gtk: Attempt to fix logic to flip
777 component / solder group visibility on flip Should get back to better behaviour. I probably broke this somewhat
778 with commit f903b4be6b85efc110852f7be40edf8245f0a513, which
779 attempted to re-state the previous logic in a clearer fashon. The logic now should: If flipping sides, and only ONE of the solder / component layers
780 (groups) is visible, and that layer (group) is _active_, then swap
781 the visibilities of the component / solder layers (groups), and make
782 the newly visible layer (group) active. There are still bugs in this code relating to the assumption that
783 the first entry in the layer group is the one which is being
784 toggled. This breaks if the first entry in the group is that
785 corresponding to the silk for that side of the board.
787 2011-08-31 Andrew Poelstra * asp11 AT sfu dot ca *
789 * src/hid/gtk/ghid-layer-selector.c: gtk: fix typo preventing layer
790 selector menu items from working
792 2011-08-31 Andrew Poelstra * asp11 AT sfu dot ca *
794 * src/hid/gtk/gui-top-window.c: gtk: remove in_toggle_view
795 recursion-prevention flag We don't call ToggleView programmatically anywhere, so it is
796 impossible for there to be recursion.
798 2011-08-31 Andrew Poelstra * asp11 AT sfu dot ca *
800 * src/hid/gtk/ghid-main-menu.c: Block signals in
801 ghid_main_menu_update_toggle_state() The function ghid_main_menu_update_toggle_state() is supposed to
802 sync the menu checkboxes to the actual state of pcb, by checking the
803 flags given in the resource file. If this function is emitting signals and changing pcb's state, this
804 is a bug. Fortunately, this appears not to be the case, so the
805 effect of this commit is to eliminate one more use of
806 ghidgui->toggle_holdoff.
808 2011-08-31 Andrew Poelstra * asp11 AT sfu dot ca *
810 * src/hid/gtk/gui-top-window.c: gtk: sync visiibility of layer
811 selector with core state in LayersChanged
813 2011-08-31 Andrew Poelstra * asp11 AT sfu dot ca *
815 * src/hid/gtk/ghid-layer-selector.c,
816 src/hid/gtk/ghid-layer-selector.h: Use signal blocking for
817 visibility toggling in GHidLayerSelector
819 2011-08-31 Andrew Poelstra * asp11 AT sfu dot ca *
821 * src/hid/gtk/gui-config.c: Add call to
822 ghid_layer_buttons_color_update() when loading new colors
824 2011-08-30 Andrew Poelstra * asp11 AT sfu dot ca *
826 * src/change.c: Change change.c to treat text scale as mils
828 2011-08-30 Andrew Poelstra * asp11 AT sfu dot ca *
830 * src/hid/gtk/ghid-layer-selector.c: Configure layer selector to
831 only accept left-clicks Suggested by Kai-Martin Knaak, seconded by me.
833 2011-08-30 Andrew Poelstra * asp11 AT sfu dot ca *
835 * src/hid/gtk/gui-top-window.c: Fix invalid free of ~/.pcb/filename
836 path in gui-top-window.c
838 2011-08-29 Andrew Poelstra * asp11 AT sfu dot ca *
840 * src/hid/gtk/ghid-layer-selector.c,
841 src/hid/gtk/ghid-layer-selector.h: minor: fix comment and forward
842 declaration in ghid-layer-selector
844 2011-08-29 Andrew Poelstra * asp11 AT sfu dot ca *
846 * src/hid/gtk/ghid-layer-selector.c: Remove default layer selection
847 from ghid-layer-selector.c Having the layer selector select its own first layer is not needed -
848 pcb does this for us, after making the widget. It's not the sort of
849 decision a widget should be making on its own, anyway.
851 2011-08-29 Andrew Poelstra * asp11 AT sfu dot ca *
853 * src/hid/gtk/ghid-layer-selector.c: Use g_signal_handler_block
854 instead of flags in ghid-layer-selector.c Thanks to Peter C. for this code-cleanliness tip. Now the two
855 layer-selection interfaces (menu button and selector widget) set
856 each other's GUI state but do not raise any signals past the
859 2011-08-29 Andrew Poelstra * asp11 AT sfu dot ca *
861 * src/hid/gtk/ghid-layer-selector.c: Add missing free_ldata() in
862 ghid-layer-selector.c
864 2011-08-29 Andrew Poelstra * asp11 AT sfu dot ca *
866 * src/hid/gtk/gui-command-window.c: Disable layer selector's
867 GtkAccelGroup while in command mode
869 2011-08-30 Peter Clifton * pcjc2 AT cam dot ac dot uk *
871 * src/draw.c: draw.c: Add const qualifiers to some BoxType
872 *drawn_area parameters
874 2011-08-30 Peter Clifton * pcjc2 AT cam dot ac dot uk *
876 * src/misc.c, src/misc.h: misc.c: Add const qualifier to BoxType *
877 parameter passed to CountHoles
879 2011-08-30 Peter Clifton * pcjc2 AT cam dot ac dot uk *
881 * src/draw.c: draw.c: Fold DrawLayerCommon() into DrawLayer() Since the last commit, DrawLayer() just calls DrawLayerCommon with
882 the "clear_pins" argument set to true. The only other
883 DrawLayerCommon caller passes clear_pins as true, so having
884 functions is redundant.
886 2011-08-30 Peter Clifton * pcjc2 AT cam dot ac dot uk *
888 * src/draw.c: DrawLayer(): Pass true to clear_pins of
889 DrawLayerCommon This should not affect any rendering. If the check planes flag is
890 set, we should only draw polygons, nothing more. Only a handful of
891 cases draw layers via this code-path, and in all but the exporter
892 cases, they are not called if CHECKPLANES is set. The exporters which call DrawLayer explicitly clear the CHECKPLANES
893 flag (since commit 3c01bd38cb59922692408b71cd5d77892dbe6ade), so
894 nothing should be affected by this argument change.
896 2011-08-30 Peter Clifton * pcjc2 AT cam dot ac dot uk *
898 * src/hid/gerber/gerber.c, src/hid/ps/eps.c, src/hid/ps/ps.c:
899 hid/{ps,eps,gerber}: Clear CHECKPLANESFLAG before exporting Ensure we are in a sensible view state before exporting. This update
900 those HIDs which cleared other similar renedering flags before
901 exporting to include the CHECKPLANES flag.
903 2011-08-30 Peter Clifton * pcjc2 AT cam dot ac dot uk *
905 * src/draw.c: draw.c: Have DrawLayerGroup() call DrawPPV for non-gui
906 exporters This means DrawLayerGroup() can have a void return type as most of
907 the other drawing functions, and makes things a little neater. Only the GUI renderers special case the pin / pad / via to wait
908 until a later rendering oass than the layers they reside on.
910 2011-08-29 Peter Clifton * pcjc2 AT cam dot ac dot uk *
912 * src/hid/gtk/gtkhid-main.c: hid/gtk: Remove unused "button"
913 parameter from Popup function. Remove the dead code and comments refering to the fact the
914 function's second argument indicates a mouse button number.
916 2011-08-29 Andrew Poelstra * asp11 AT sfu dot ca *
918 * src/hid/gtk/ghid-layer-selector.c,
919 src/hid/gtk/ghid-layer-selector.h, src/hid/gtk/ghid-main-menu.c,
920 src/hid/gtk/ghid-main-menu.h, src/hid/gtk/gui-top-window.c: Link
921 GHidLayerSelector and GHidMainMenu Layer visibility-toggle and selection menu items now appear in the
922 main menu. Accelerators work correctly and are reassigned on
923 deletion/addition of layers to simulate the old behavior.
925 2011-08-29 Andrew Poelstra * asp11 AT sfu dot ca *
927 * src/hid/gtk/ghid-layer-selector.c: Clean up layer data handling in
928 ghid-layer-selector.c
930 2011-08-29 Andrew Poelstra * asp11 AT sfu dot ca *
932 * src/hid/gtk/ghid-layer-selector.c: Give GHidLayerSelector an
933 internal layer structure Before we had various arrays to resize and index; now each row has a
934 structure associated with it, that is easier to access and maintain.
936 2011-08-28 Andrew Poelstra * asp11 AT sfu dot ca *
938 * src/hid/gtk/gtkhid-main.c, src/hid/gtk/gui-command-window.c,
939 src/hid/gtk/gui-output-events.c, src/hid/gtk/gui-top-window.c,
940 src/hid/gtk/gui.h: Replace gtk UI manager with GHidMainMenu widget This commit replaces the old UI manager with a customize gtk widget
941 that builds menus directly from a resource tree. This eliminates the
942 translate-to-XML step, the ugly hacks used to access individual
943 actions, and all the associated manual memory management. This will also give us the ability to have more dynamic menus, in
944 particular layer lists without maximum capacities. Layers and route styles are still not hooked into the menu. This
945 means that those accelerators DO NOT WORK. (This will be fixed in a
946 later commit.) Checkboxes have been replaced with radio buttons
947 where appropriate. There are now tearoffs on the context-menu's
948 submenus. Other than that, there should be no user-visible changes. ;)
950 2011-08-28 Andrew Poelstra * asp11 AT sfu dot ca *
952 * src/Makefile.am, src/hid/gtk/ghid-main-menu.c,
953 src/hid/gtk/ghid-main-menu.h: Created ghid-main-menu.[ch] Still need to hook up layer selector and route styles.
955 2011-08-29 Andrew Poelstra * asp11 AT sfu dot ca *
957 * src/hid/gtk/gui-top-window.c: Fix select-hidden-layer behavior When you select a hidden layer, it should toggle the visibility so
958 that the currently-selected layer is always visible. We were
961 2011-08-29 Andrew Poelstra * asp11 AT sfu dot ca *
963 * src/hid/gtk/ghid-layer-selector.c, src/hid/gtk/gui-top-window.c:
964 Prevent recursion in layer selector events
966 2011-08-29 Andrew Poelstra * asp11 AT sfu dot ca *
968 * src/Makefile.am, src/hid/gtk/ghid-coord-entry.c,
969 src/hid/gtk/ghid-coord-entry.h, src/hid/gtk/gtk-pcb-coord-entry.c,
970 src/hid/gtk/gtk-pcb-coord-entry.h, src/hid/gtk/gui-config.c,
971 src/hid/gtk/gui-dialog-print.c, src/hid/gtk/gui-dialog-size.c,
972 src/hid/gtk/gui-utils.c, src/hid/gtk/gui.h: Rename GtkPcbCoordEntry
975 2011-08-29 Andrew Poelstra * asp11 AT sfu dot ca *
977 * src/Makefile.am, src/hid/gtk/ghid-layer-selector.c,
978 src/hid/gtk/ghid-layer-selector.h,
979 src/hid/gtk/gtk-pcb-layer-selector.c,
980 src/hid/gtk/gtk-pcb-layer-selector.h, src/hid/gtk/gui-top-window.c:
981 Rename GtkPcbLayerSelector to GHidLayerSelector
983 2011-08-29 Andrew Poelstra * asp11 AT sfu dot ca *
985 * src/Makefile.am, src/hid/gtk/ghid-cell-renderer-visibility.c,
986 src/hid/gtk/ghid-cell-renderer-visibility.h,
987 src/hid/gtk/gtk-pcb-cell-renderer-visibility.c,
988 src/hid/gtk/gtk-pcb-cell-renderer-visibility.h,
989 src/hid/gtk/gtk-pcb-layer-selector.c: Rename
990 GtkPcbCellRendererVisibility to GHidCellRendererVisibility
992 2011-08-28 Andrew Poelstra * asp11 AT sfu dot ca *
994 * src/gpcb-menu.res.in: Add mnemonics to menus in default
995 gpcb-menu.res.in You can now access the main menu without a mouse, by doing Alt+F,
996 for example, to select the File menu.
998 2011-08-27 Andrew Poelstra * asp11 AT sfu dot ca *
1000 * src/hid/common/hid_resource.c, src/hid/common/hid_resource.h,
1001 src/hid/gtk/gui-top-window.c, src/res_parse.y, src/resource.h: gtk:
1002 Const-correct add_resource_to_menu and related functions Five files have had const keywords added: ../common/hid_resource.c ../common/hid_resource.h gui-top-window.c ../../res_parse.y ../../resource.h No casts were added. No compilation warnings were added.
1004 2011-08-27 Andrew Poelstra * asp11 AT sfu dot ca *
1006 * src/hid/gtk/gtk-pcb-layer-selector.c: Delete GtkAction along with
1007 layer in gtk-pcb-layer-selector.c
1009 2011-08-29 Peter Clifton * pcjc2 AT cam dot ac dot uk *
1011 * src/hid/ps/eps.c: hid/ps/eps.c: Remove assigned by unused
1014 2010-10-21 Markus Hitter * mah AT jump-ing dot de *
1016 * src/hid/gcode/gcode.c: HID-gcode: make use of MAXPATHLEN. Affects-bug: lp-699497
1018 2011-08-28 Felix Ruoff * Felix AT posaunenmission dot de *
1020 * src/hid/bom/bom.c, src/hid/gerber/gerber.c, src/main.c: Add
1021 attributes to docu for commandline options
1023 2011-08-28 Felix Ruoff * Felix AT posaunenmission dot de *
1025 * doc/pcb.texi: Docu: Fix some references to command-line options and remove the documentation for a non-working X11-Interface option.
1027 2011-08-28 Dima Kogan * dkogan AT cds dot caltech dot edu *
1029 * src/find.c: Better handling of unplated vias The attached patch adds checks in the geometry intersection
1030 functions to no longer treat unplated vias (mounting holes) as
1031 conducting. The implementation in the patch will act as if the
1032 unplated via doesn't intersect with metal objects at all, which is
1033 possibly not what is desired. Should the conductivity check happen
1034 on a higher level from the geometry intersection routines? A case
1035 that would require this is not obvious to me. Closes-bug: lp-699499
1037 2011-08-14 Felix Ruoff * Felix AT posaunenmission dot de *
1039 * src/hid/gcode/gcode.c, src/hid/gerber/gerber.c,
1040 src/hid/lpr/lpr.c, src/hid/nelma/nelma.c, src/hid/png/png.c,
1041 src/hid/ps/ps.c: Unify HID description (no fullstop at end of
1042 description) Most parts of this patch-serie was written by Kai-Martin Knaak.
1043 Adaption to actual git HEAD and some modifications by Felix Ruoff.
1045 2011-08-14 Felix Ruoff * Felix AT posaunenmission dot de *
1047 * src/hid/ps/ps.c: Add docu for ps HID commandline options Most parts of this patch-serie was written by Kai-Martin Knaak.
1048 Adaption to actual git HEAD and some modifications by Felix Ruoff.
1050 2011-08-14 Felix Ruoff * Felix AT posaunenmission dot de *
1052 * src/hid/ps/eps.c: Add docu for eps HID commandline options Most parts of this patch-serie was written by Kai-Martin Knaak.
1053 Adaption to actual git HEAD and some modifications by Felix Ruoff.
1055 2011-08-14 Felix Ruoff * Felix AT posaunenmission dot de *
1057 * src/hid/png/png.c: Add docu for png HID commandline options Most parts of this patch-serie was written by Kai-Martin Knaak.
1058 Adaption to actual git HEAD and some modifications by Felix Ruoff.
1060 2011-08-14 Felix Ruoff * Felix AT posaunenmission dot de *
1062 * src/hid/nelma/nelma.c: Add docu for nemla HID commandline options Most parts of this patch-serie was written by Kai-Martin Knaak.
1063 Adaption to actual git HEAD and some modifications by Felix Ruoff.
1065 2011-08-14 Felix Ruoff * Felix AT posaunenmission dot de *
1067 * src/hid/lpr/lpr.c: Add docu for lpt HID commandline options Most parts of this patch-serie was written by Kai-Martin Knaak.
1068 Adaption to actual git HEAD and some modifications by Felix Ruoff.
1070 2011-08-14 Felix Ruoff * Felix AT posaunenmission dot de *
1072 * src/hid/gerber/gerber.c: Add docu for Gerber HID commandline
1073 options Most parts of this patch-serie was written by Kai-Martin Knaak.
1074 Adaption to actual git HEAD and some modifications by Felix Ruoff.
1076 2011-08-14 Felix Ruoff * Felix AT posaunenmission dot de *
1078 * src/hid/bom/bom.c: Add docu for the BOM HID commandline options Most parts of this patch-serie was written by Kai-Martin Knaak.
1079 Adaption to actual git HEAD and some modifications by Felix Ruoff.
1081 2011-08-14 Felix Ruoff * Felix AT posaunenmission dot de *
1083 * src/hid/gtk/gui-top-window.c, src/hid/lesstif/main.c: Add docu for
1084 commandline-options for GTK+ and lesstif GUI Most parts of this patch-serie was written by Kai-Martin Knaak.
1085 Adaption to actual git HEAD and some modifications by Felix Ruoff.
1087 2011-08-18 Felix Ruoff * Felix AT posaunenmission dot de *
1089 * src/main.c: Add docu for DRC commandline options Most parts of this patch-serie was written by Kai-Martin Knaak.
1090 Adaption to actual git HEAD and some modifications by Felix Ruoff.
1092 2011-08-18 Felix Ruoff * Felix AT posaunenmission dot de *
1094 * src/main.c: Add docu for general gui commandline options Most parts of this patch-serie was written by Kai-Martin Knaak.
1095 Adaption to actual git HEAD and some modifications by Felix Ruoff.
1097 2011-08-18 Felix Ruoff * Felix AT posaunenmission dot de *
1099 * src/main.c: Add docu for path commandline options Most parts of this patch-serie was written by Kai-Martin Knaak.
1100 Adaption to actual git HEAD and some modifications by Felix Ruoff.
1102 2011-08-18 Felix Ruoff * Felix AT posaunenmission dot de *
1104 * src/main.c: Add docu for commandline commands Most parts of this patch-serie was written by Kai-Martin Knaak.
1105 Adaption to actual git HEAD and some modifications by Felix Ruoff.
1107 2011-08-18 Felix Ruoff * Felix AT posaunenmission dot de *
1109 * src/main.c: Add docu for layer names commandline options Most parts of this patch-serie was written by Kai-Martin Knaak.
1110 Adaption to actual git HEAD and some modifications by Felix Ruoff.
1112 2011-08-18 Felix Ruoff * Felix AT posaunenmission dot de *
1114 * src/main.c: Add docu for size commandline options Most parts of this patch-serie was written by Kai-Martin Knaak.
1115 Adaption to actual git HEAD and some modifications by Felix Ruoff.
1117 2011-08-18 Felix Ruoff * Felix AT posaunenmission dot de *
1119 * src/main.c: Add docu for color commandline options Most parts of this patch-serie was written by Kai-Martin Knaak.
1120 Adaption to actual git HEAD and some modifications by Felix Ruoff.
1122 2011-08-28 Felix Ruoff * Felix AT posaunenmission dot de *
1124 * doc/pcb.texi, src/main.c: Docu: Add general description for
1125 commandline options ... and for general options. (Patch 3/19 of this patch-serie is
1126 missing on purpose) Most parts of this patch-serie was written by Kai-Martin Knaak.
1127 Adaption to actual git HEAD and some modifications by Felix Ruoff.
1129 2011-08-28 Felix Ruoff * Felix AT posaunenmission dot de *
1131 * doc/pcb.texi: Remove out-dated docu for commandline options Most parts of this patch-serie was written by Kai-Martin Knaak.
1132 Adaption to actual git HEAD and some modifications by Felix Ruoff.
1134 2011-08-28 Peter Clifton * pcjc2 AT cam dot ac dot uk *
1136 * src/draw.c, src/misc.c, src/misc.h: Move CountHoles() from draw.c
1137 to misc.c and export it This function may be more generally useful.
1139 2011-08-28 Peter Clifton * pcjc2 AT cam dot ac dot uk *
1141 * src/draw.c: draw.c: Move doing_assy flag assignment into
1142 PrintAssembly() Keeps things tidier
1144 2011-08-28 Peter Clifton * pcjc2 AT cam dot ac dot uk *
1146 * src/hid/gcode/gcode.c, src/hid/nelma/nelma.c: hid/{nelma,gcode}:
1147 Remove assigned but unused variables lastcap and lastgroup
1149 2011-08-28 Peter Clifton * pcjc2 AT cam dot ac dot uk *
1151 * src/draw.h, src/main.c: Remove traces of LoadBackgroundImage()
1152 from the core of PCB
1154 2011-08-27 Peter Clifton * pcjc2 AT cam dot ac dot uk *
1156 * src/hid/gtk/gtkhid-gdk.c, src/hid/gtk/gtkhid-gl.c: hid/gtk: Use
1157 view_data struct to simplify saving and restoring views
1159 2011-08-27 Peter Clifton * pcjc2 AT cam dot ac dot uk *
1161 * src/hid/gtk/gtkhid-gdk.c, src/hid/gtk/gtkhid-gl.c,
1162 src/hid/gtk/gtkhid-main.c, src/hid/gtk/gui-output-events.c,
1163 src/hid/gtk/gui-top-window.c, src/hid/gtk/gui.h: hid/gtk:
1164 Encapsulate view parameters in a structure
1166 2011-08-27 Peter Clifton * pcjc2 AT cam dot ac dot uk *
1168 * src/hid/gtk/gtkhid-main.c: hid/gtk: Remove unnecessary prototype
1170 2011-08-27 Peter Clifton * pcjc2 AT cam dot ac dot uk *
1172 * src/hid/gtk/gui.h: hid/gtk: crosshair_{x,y} should be Coord, not
1175 2011-08-27 Peter Clifton * pcjc2 AT cam dot ac dot uk *
1177 * src/fontmode.c: fontmode.c: Add missing #include "pcb-printf.h"
1179 2011-08-26 DJ Delorie * dj AT delorie dot com *
1181 * src/fontmode.c: Fix FontEdit() Move top/bottom meta-layers to layers 0 and 1 so they'll exist after
1182 we trim out the layers. Set up DRC values to avoid interfereing
1183 with the font layout. Closes-bug: lp-808591
1185 2011-08-26 DJ Delorie * dj AT delorie dot com *
1187 * src/hid/lesstif/dialogs.c: Use correct units when setting up the
1188 Sizes dialog. Replace %mm with %mS so it auto-selects units, to match the scanning
1189 that's done when you save the settings.
1191 2011-08-26 DJ Delorie * dj AT delorie dot com *
1193 * src/parse_l.l: Avoid segfault tmp-saving partial board. Check for both PCB and PCB->Data to avoid trying to save a backup
1194 copy of a partially created layout.
1196 2011-08-26 Andrew Poelstra * asp11 AT sfu dot ca *
1198 * src/hid/gtk/gui-top-window.c: gtk: Sync selection with pcb state
1199 in ghid_layer_buttons_update It was possible for PCB's active layer to come out of sync with the
1200 selected entry in the layer selector. This fixes that.
1202 2011-08-26 Andrew Poelstra * asp11 AT sfu dot ca *
1204 * src/hid/gtk/gtk-pcb-layer-selector.c,
1205 src/hid/gtk/gtk-pcb-layer-selector.h, src/hid/gtk/gui-top-window.c:
1206 Support adding/deletion of layers in GtkPcbLayerSelector If you add a layer to a GtkPcbLayerSelector, and its ID is already
1207 in the selector, it will update the layer instead of adding a new
1208 one. This way, we can update the layer selector by: 1. Deleting all recently-deleted and non-copper layers. 2. Re-adding all layers (including new ones) 3. Re-adding all non-copper layers (so they go to the end) The old layer selector maintained MAX_LAYER + n layers (where n was
1209 the number of non-copper layers), and showed/hid the gui widget to
1210 managed deletion and adding of layers. The new one has no notion of
1211 MAX_LAYER, nor does it care whether a layer is copper or not. :)
1213 2011-08-26 Peter Clifton * pcjc2 AT cam dot ac dot uk *
1215 * src/hid/gtk/gui-drc-window.c: hid/gtk: Fix DRC preview pixmap
1216 rendering Another hard-coded constant in the old PCB coordinate system
1218 2011-08-26 Peter Clifton * pcjc2 AT cam dot ac dot uk *
1220 * src/hid/gtk/gtkhid-gdk.c: hid/gtk: Remove duplicated render pass
1221 in ghid_pinout_preview_expose() This looks like it was a copy+paste error.
1223 2011-08-26 Peter Clifton * pcjc2 AT cam dot ac dot uk *
1225 * src/hid/gtk/gui-pinout-preview.c,
1226 src/hid/gtk/gui-pinout-preview.h: hid/gtk: Fix pinout preview
1227 default zoom after unit conversion Apparently the scale factor equation was dependant on the old PCB
1228 units of 100th mils to produce a sensible zoom level. Since this code is monumentally obtuse, just re-write something
1229 completley new. The old code probably bit-rot when we split out the
1230 rendering widget. Lets just suggest a fixed size of 100 pixels natural size for each
1231 150 mil of element bounding box. That seems to work nicely.
1233 2011-08-26 Peter Clifton * pcjc2 AT cam dot ac dot uk *
1235 * src/misc.c: misc.c: Rework SetTextBoundingBox() to make it more
1236 clear how it works. Add lots of comments, change the coding style and rename variables
1237 to make them more obvious.
1239 2011-08-26 Peter Clifton * pcjc2 AT cam dot ac dot uk *
1241 * src/draw.c: Redefine pin / pad name label text size in terms of
1242 FONT_CAPHEIGHT This reduces the proliferation of various "magic numbers" which
1243 combine constants from several sources and aren't appearent why they
1244 are a particular number. There is a slight rounding error in the
1245 converted pin label size, but it is insignificant.
1247 2011-08-26 Peter Clifton * pcjc2 AT cam dot ac dot uk *
1249 * globalconst.h, src/change.c, src/report.c: Introduce global
1250 #define for the text cap-height of the PCB font. This should save the proliferation of rather opaque
1251 MIL_TO_COORD(45)'s in various places.
1253 2011-08-26 Peter Clifton * pcjc2 AT cam dot ac dot uk *
1255 * src/change.c, src/draw.c, src/report.c: Fix some text scale
1256 factors This commit fixes pin / pad name drawing, the pinout preview and two
1257 actions which change the size of text based on user input. To recap: Text->Scale is a percentage scaling (from the font definition). The
1258 default font has has an approximate cap-height of 45-50 mils, and
1259 PCB assumes this to be the case. Text->Scale is not a Coord, it is an integer, so use int as the
1260 resulting type for any calculations involving this number. (100% is
1261 stored as 100 in Text->scale). Code which scales text based upon
1262 other object sizes does so by dividing to a dimensionless scale
1263 factor. We may have to be careful about the width of intermediate
1264 results when scaling based on Coords if Coord is changed to 64bit at
1265 some point. ChangeTextSize() and ChangeElementNameSize accept absolute (or
1266 delta) sizes in units of distance. These are converted to a Scale by
1267 assuming a 100% scaled font is 45mils high. YMMV. Oh - and just to note.. the line-thickness is drawn at half the
1268 width stored in the font definition. This is clearly bonkers, but we
1269 would break designs if we changed it now. Grr. (Thanks a bunch
1270 commit 66592387176ba2578dfc14023a6fe49226f3a3df).
1272 2011-08-26 Peter Clifton * pcjc2 AT cam dot ac dot uk *
1274 * src/action.c, src/hid/ps/ps.c: action.c: Fix missing #include
1277 2011-08-26 Peter Clifton * pcjc2 AT cam dot ac dot uk *
1279 * : hid/ps: Fix inaccurate comment and twiddle some whitespace The whitespace changes in the if statement were from an earlier
1280 revision which actually had functional changes - but I prefer this
1281 way, so I'm committing it anyway. Also adds some != 0 to the end of strcmp tests, as I believe this
1282 aids clarity by reminding readers strcmp returns 0 for a match.
1284 2011-08-26 Peter Clifton * pcjc2 AT cam dot ac dot uk *
1286 * src/hid/gtk/gtkhid-main.c, src/hid/gtk/gui-output-events.c:
1287 hid/gtk: Allow zooming out past the board size (up to 1/10 viewport
1288 size) The 1/10 viewport size should be the same as the Lesstif HID allows.
1289 The purpose of the limit is to avoid zooming in so small the PCB is
1290 lost as a tiny dot, and also to avoid coodinate overflows when
1291 representing screen coordinats in PCB Coords. (Since we switched to
1292 nanometers, this could potentially raise its head more readily until
1293 we move to 64bit integers). The explicit pan fixup added to ghid_view_zoom_fit() is required as
1294 pan_common() no longer clamps the view back to the origin.
1296 2011-08-26 Peter Clifton * pcjc2 AT cam dot ac dot uk *
1298 * src/hid/gtk/gtkhid-main.c, src/hid/gtk/gui-output-events.c,
1299 src/hid/gtk/gui.h: hid/gtk: Remove ghid_port_ranges_pan for new
1300 replacement ghid_pan_view_rel ghid_pan_view_rel() does less heavy lifting directly, sharing common
1301 code with the other view altering routines for zooming and panning.
1303 2011-08-26 Peter Clifton * pcjc2 AT cam dot ac dot uk *
1305 * src/hid/gtk/gui.h: hid/gtk: Remove prototype for non-existant
1306 ghid_port_ranges_update_ranges The functionality this prototype implies is in
1307 ghid_port_ranges_scale().
1309 2011-08-26 Peter Clifton * pcjc2 AT cam dot ac dot uk *
1311 * src/hid/gtk/gtkhid-main.c: hid/gtk: Don't recompute view size in
1312 PCB coords in ScrollAction() We aleady keep around the view size in PCB coords, so use it
1315 2011-08-26 Peter Clifton * pcjc2 AT cam dot ac dot uk *
1317 * src/hid/gtk/gtkhid-main.c: hid/gtk: Add fixup for stored
1318 gport->pcb_{x,y} coords when changing view This updates the stored (in PCB coordinates) mouse pointer location
1319 on the board as we perform a pan / zoom. This is mostly relevant to
1320 panning and clipped zoom operations, as non-clipped zoom operations
1321 aim to leave the mouse pointer at the same PCB coordinate anyway.
1323 2011-08-26 Peter Clifton * pcjc2 AT cam dot ac dot uk *
1325 * src/polygon.c: polygon.c: Fix dicer to give up if the clipping
1326 region passed is invalid. Most of the dance checking return codes from polyBoolean_free was
1327 unnecessary, as it sets the output to NULL if there is a problem, so
1328 remove that. Whilst we're at it, fix up some variable names to make
1329 the operation of the function clearer.
1331 2011-08-26 Peter Clifton * pcjc2 AT cam dot ac dot uk *
1333 * src/polygon.c: polygon.c: Make RectPoly return NULL for zero or
1334 negatively sized rectangles Previously we would hit an assertion failure, where we could
1335 indicate the problem by returning NULL. I've hit an issue in which some expose events in the GTK (+GL) HID
1336 are collapsing to a zero-width region on the PCB, and some code is
1337 tripping up on the bad clip polygon produced using RectPoly on the
1338 coordinates. This causes segfaults in the branch which contains
1339 code to clip rendering of the soldermask at the board outline. We could (and perhaps should) test in the expose handler, but the
1340 failure mode here is not ideal. Since most builds of PCB run with
1341 asserts disabled, the asserts are not hit here and a bad polygon is
1342 silently gets created with no contours. This upsets the polygon
1343 algebra routines somewhat, but returning a NULL (empty) polygon
1346 2011-08-26 Andrew Poelstra * asp11 AT sfu dot ca *
1348 * src/hid/gtk/gui-config.c, src/hid/gtk/gui-top-window.c: gtk:
1349 remove call to ghid_layer_buttons_color_update The call to ghid_layer_buttons_color_update() in config_read() is
1350 now unnecessary; the Gtk layer selection widget does not exist, nor
1351 do the PCB struct's colors need to be synced with the ones in the
1352 Settings struct. So this call makes no sense. Oh, and it causes a segfault. Also: remove color-changing debug code from gui-top-window.c
1354 2011-08-26 Andrew Poelstra * asp11 AT sfu dot ca *
1356 * src/hid/gtk/gtk-pcb-coord-entry.c: Add doxygen comments to
1357 gtk-pcb-coord-entry.c No code changes.
1359 2011-08-26 Andrew Poelstra * asp11 AT sfu dot ca *
1361 * src/hid/gtk/gtk-pcb-cell-renderer-visibility.c,
1362 src/hid/gtk/gtk-pcb-layer-selector.c: Add doxygen comments to
1363 gtk-pcb-cell-renderer-visibility.c Also fix the file description for gtk-pcb-layer-selector.c. No code
1366 2011-08-26 Andrew Poelstra * asp11 AT sfu dot ca *
1368 * src/pcb-printf.c: Add doxygen comments to pcb-printf.c No code changes.
1370 2011-08-26 Andrew Poelstra * asp11 AT sfu dot ca *
1372 * src/flags.c: Fix const-correctness warning in flags.c
1374 2011-08-26 Andrew Poelstra * asp11 AT sfu dot ca *
1376 * globalconst.h: Make EMARK_SIZE unit-agnostic Closes-bug: lp-832455
1378 2011-08-26 Andrew Poelstra * asp11 AT sfu dot ca *
1380 * src/hid/gtk/gui-top-window.c, src/hid/gtk/gui.h: Use
1381 GtkPcbLayerSelector in gtk GUI Closes-bug: lp-699482
1383 2011-08-26 Andrew Poelstra * asp11 AT sfu dot ca *
1385 * src/Makefile.am, src/hid/gtk/gtk-pcb-cell-renderer-visibility.c,
1386 src/hid/gtk/gtk-pcb-cell-renderer-visibility.h,
1387 src/hid/gtk/gtk-pcb-layer-selector.c,
1388 src/hid/gtk/gtk-pcb-layer-selector.h: Introduce GtkPcbLayerSelector
1389 widget -- not used yet This widget will replace the layer-selection buttons in the Gtk GUI,
1390 as well as the layer selection and visibility-toggling parts of the
1391 menu. This is to make layer manipulation more consistent and more
1392 keyboard-accessible. In future, it would be good to update this widget with context menus
1393 with things like "hide all but this layer".
1395 2011-08-26 Andrew Poelstra * asp11 AT sfu dot ca *
1397 * src/hid/gtk/gui-top-window.c: Change Gtk layer_process() to use
1398 colors from Settings, not PCB Now the only code that uses the colors in the PCB struct is draw.c.
1399 Hopefully in a future commit we can remove this too and remove the
1400 duplication of color data in the Settings and PCB structs.
1402 2011-08-25 DJ Delorie * dj AT delorie dot com *
1404 * src/action.c: Fix File->Import for elements on back side. Mirror pasted footprints when replacing back-side elements. Also
1405 clear element cache when reloading the new footprint, to avoid
1406 getting a stale pointer. Closes-bug: lp-699331
1408 2011-08-25 DJ Delorie * dj AT delorie dot com *
1410 * src/report.c: Fix texinfo bug in report.c patch {} are special characters in texinfo
1412 2011-08-25 DJ Delorie * dj AT delorie dot com *
1414 * src/hid/lesstif/main.c: Lesstif: force widget update on grid unit
1415 change If the grid units change, force a redraw of the coordinates window
1418 2011-08-25 DJ Delorie * dj AT delorie dot com *
1420 * src/flags.c, src/hid/common/flags.c: Fix unitless menu flags. Numbers without units are counting numbers in flags, not cmil.
1421 Also, cache the lookup of units in flags.c
1423 2011-08-24 Bert Timmerman * bert dot timmerman AT xs4all dot nl *
1425 * src/report.c: This patch adds support for doing
1426 Report(netlength,net_name) Affects-bug: lp-699451 Updated patch to nanometers, fixed a few minor bugs, applied.
1428 2011-08-24 Peter Clifton * pcjc2 AT cam dot ac dot uk *
1430 * src/hid/gtk/gtkhid-main.c: hid/gtk: Don't compensate for crosshair
1431 position when panning Perhaps this was necessary before.. it is not now, and is causing
1432 the crosshair to be errenously offset whilst panning with the scroll
1435 2011-08-24 Peter Clifton * pcjc2 AT cam dot ac dot uk *
1437 * src/hid/gtk/gtkhid-main.c: hid/gtk: Simplify viewport setup in
1438 PCBChanged() This version still works ;)
1440 2011-08-24 Peter Clifton * pcjc2 AT cam dot ac dot uk *
1442 * src/hid/gtk/gtkhid-main.c: hid/gtk: Refactor common view clamping
1443 code from ghid_{pan,zoom}_view_abs Inspection of the zoom-fit code which triggers if the view exceeds
1444 the size of the board suggests that it will never be called, so
1447 2011-08-24 Peter Clifton * pcjc2 AT cam dot ac dot uk *
1449 * src/hid/gtk/gui-output-events.c: hid/gtk: A couple of NOOP
1450 cosmetic changes to ghid_port_ranges_pan()
1452 2011-08-24 Peter Clifton * pcjc2 AT cam dot ac dot uk *
1454 * src/hid/gtk/gtkhid-gdk.c, src/hid/gtk/gtkhid-gl.c: hid/gtk: Don't
1455 render of soldermask outside board area
1457 2011-08-22 Andrew Poelstra * asp11 AT sfu dot ca *
1459 * src/create.c: Fix negative-angle handling in create.c This bug could be seen by taking a component with an arc (say, a
1460 3-pin TO transistor, with curved silk), flipping it with 'b', and
1461 trying to move it. The arc would be inverted.
1463 2011-08-22 Andrew Poelstra * asp11 AT sfu dot ca *
1465 * src/report.c: Fix segfault in report.c text report output
1467 2011-08-22 Peter Clifton * pcjc2 AT cam dot ac dot uk *
1469 * src/hid/gtk/gtkhid-main.c, src/hid/gtk/gui-output-events.c,
1470 src/hid/gtk/gui.h: hid/gtk: Remove emit_changed parameter from
1471 ghid_port_ranges_scale. The one caller which passed TRUE, PCBChanged () also immediately
1472 aftwewards calls ghid_port_ranges_pan(), which will take car of any
1475 2011-08-20 Peter Clifton * pcjc2 AT cam dot ac dot uk *
1477 * src/hid/gtk/gtkhid-main.c: hid/gtk: Rework view flip code
1479 2011-08-20 Peter Clifton * pcjc2 AT cam dot ac dot uk *
1481 * src/hid/gtk/gtkhid-main.c, src/hid/gtk/gui.h: hid/gtk: Rework zoom
1484 2011-08-20 Peter Clifton * pcjc2 AT cam dot ac dot uk *
1486 * src/hid/gtk/gtkhid-main.c: hid/gtk: Some NOOP and whitespace
1487 changes to the SwapSides() function Split from of a later patch which reworks the view flipping APIs.
1488 Hopefully this makes the function a little simpler.
1490 2011-08-19 Peter Clifton * pcjc2 AT cam dot ac dot uk *
1492 * src/hid/gtk/gtkhid-gdk.c, src/hid/gtk/gtkhid-gl.c: hid/gtk:
1493 Convert line width to Coord units in renderer GC structs.
1495 2011-08-19 Peter Clifton * pcjc2 AT cam dot ac dot uk *
1497 * src/find.c: find.c: Remove unused variables in LineLineIntersect()
1499 2011-08-15 Andrew Poelstra * asp11 AT sfu dot ca *
1501 * src/main.c: Add --help and -? to options that will dump usage()
1502 without loading GUI Closes-bug: lp-826931
1504 2011-08-15 Andrew Poelstra * asp11 AT sfu dot ca *
1506 * src/hid/batch/batch.c: Fix compilation warnings in
1509 2011-08-15 Andrew Poelstra * asp11 AT sfu dot ca *
1511 * src/hid/gtk/gtk-pcb-coord-entry.c, src/hid/gtk/gui-dialog-print.c:
1512 Fix: spin increments not working in GtkPcbCoordEntry after unit
1515 2011-08-15 Andrew Poelstra * asp11 AT sfu dot ca *
1517 * src/hid/gtk/gui-config.c: Parse options of type CONFIG_Coord in
1520 2011-08-05 Andrew Poelstra * asp11 AT sfu dot ca *
1522 * globalconst.h, src/const.h, src/global.h, src/main.c: *** CONVERT
1523 PCB'S BASE UNITS TO NANOMETERS *** Convert base units to nm, change Coord from int to long, change
1524 LARGE_VALUE from a magic number to (LONG_MAX / 2 - 1). Fixes-bug: lp-772027
1526 2011-08-11 Andrew Poelstra * asp11 AT sfu dot ca *
1528 * src/const.h: Make MARK_SIZE base-unit-agnostic
1530 2011-08-10 Andrew Poelstra * asp11 AT sfu dot ca *
1532 * src/hid/gtk/gtk-pcb-coord-entry.c: Implement "change unit" submenu
1533 of GtkPcbCoordEntry context menu
1535 2011-08-10 Andrew Poelstra * asp11 AT sfu dot ca *
1537 * src/hid/gtk/gui-dialog-print.c, src/hid/ps/ps.c: Use
1538 GtkPcbCoordEntry in gui-dialog-print.c Also set ps-bloat to HID_Coord from HID_Integer in ps.c
1540 2011-08-10 Andrew Poelstra * asp11 AT sfu dot ca *
1542 * src/hid/gtk/gtk-pcb-coord-entry.c,
1543 src/hid/gtk/gtk-pcb-coord-entry.h, src/hid/gtk/gui-config.c,
1544 src/hid/gtk/gui-dialog-size.c, src/pcb-printf.c, src/pcb-printf.h:
1545 Use GtkPcbCoordEntry in gui-dialog-size.c
1547 2011-08-10 Andrew Poelstra * asp11 AT sfu dot ca *
1549 * src/Makefile.am, src/hid/gtk/gtk-pcb-coord-entry.c,
1550 src/hid/gtk/gtk-pcb-coord-entry.h, src/hid/gtk/gui-config.c,
1551 src/hid/gtk/gui-utils.c, src/hid/gtk/gui.h: Introduce
1552 GtkPcbCoordEntry widget, use it in gui-config.c The GtkPcbCoordEntry is a modified spinbox that handles pcb units
1553 internally and outputs them as human units. It uses the step sizes
1554 given in pcb-printf and adjusts automatically when units are
1555 changed. If you manually change the unit suffix, it will change its interal
1556 unit, so that if you change "10mil" to "10mm" it will do the right
1557 thing. TODO: handle overflows add a unit selector to the context menu
1559 2011-08-07 Andrew Poelstra * asp11 AT sfu dot ca *
1561 * src/hid/common/hidgl.c, src/hid/common/hidgl.h,
1562 src/hid/gtk/gtkhid-gl.c: Audit hidgl stuff, implement Coord I did not touch any code, only change 'int' to Coord where
1563 appropriate (and in a couple cases 'double' to Coord), under the
1564 assumption that any real changes should be done by Peter C.
1566 2011-08-07 Andrew Poelstra * asp11 AT sfu dot ca *
1568 * src/hid.h, src/hid/common/hidinit.c, src/hid/gtk/gui-config.c,
1569 src/hid/gtk/gui-dialog-print.c, src/hid/lesstif/dialogs.c,
1570 src/hid/lesstif/lesstif.h, src/hid/lesstif/main.c, src/main.c:
1571 Introduce HID_Coord type and related changes Give measure-specific HID options their own datatype, so that things
1572 like the --grid option can support suffixes instead of exposing the
1573 base unit. (In fact, since they use GetValue, they will keep right
1574 on pretending the base unit is cmil.) This gives us the opportunity to write measure-entry GUI widgets
1575 that will handle units correctly and whatnot, though I have not yet
1576 done this. Fixes-bug: lp-699640 Fixes-bug: lp-699641
1578 2011-08-11 Andrew Poelstra * asp11 AT sfu dot ca *
1580 * src/hid/lesstif/dialogs.c: Change lesstif_logv to use pcb-printf
1581 [rebase-after: audit lesstif]
1583 2011-08-05 Andrew Poelstra * asp11 AT sfu dot ca *
1585 * src/global.h, src/gpcb-menu.res.in, src/hid/lesstif/dialogs.c,
1586 src/hid/lesstif/main.c, src/hid/lesstif/styles.c,
1587 src/pcb-menu.res.in: Audit lesstif HID We can now remove LocationType and BDimension! This marks the
1588 completion of the code audit. Remaining to do is the conversion and
1591 2011-08-05 Andrew Poelstra * asp11 AT sfu dot ca *
1593 * src/hid/gtk/gtkhid-gdk.c, src/hid/gtk/gtkhid-gl.c,
1594 src/hid/gtk/gui-log-window.c, src/hid/gtk/gui-misc.c,
1595 src/hid/gtk/gui-output-events.c, src/hid/gtk/gui.h: Audit Gtk HID
1597 2011-08-05 Andrew Poelstra * asp11 AT sfu dot ca *
1599 * src/hid/common/draw_helpers.c, src/hid/common/extents.c,
1600 src/hid/common/hidnogui.c: Audit HID nogui/common code
1602 2011-08-05 Andrew Poelstra * asp11 AT sfu dot ca *
1604 * src/hid/nelma/nelma.c: Audit nelma HID
1606 2011-08-05 Andrew Poelstra * asp11 AT sfu dot ca *
1608 * src/hid/png/png.c: Audit png HID
1610 2011-08-04 Andrew Poelstra * asp11 AT sfu dot ca *
1612 * src/hid/gcode/gcode.c: Audit gcode HID
1614 2011-08-04 Andrew Poelstra * asp11 AT sfu dot ca *
1616 * src/hid/ps/ps.c: Audit ps.c
1618 2011-08-04 Andrew Poelstra * asp11 AT sfu dot ca *
1620 * src/hid/ps/eps.c: Audit eps.c
1622 2011-08-04 Andrew Poelstra * asp11 AT sfu dot ca *
1624 * src/hid/gerber/gerber.c: Audit gerber HID
1626 2011-08-04 Andrew Poelstra * asp11 AT sfu dot ca *
1628 * src/hid/bom/bom.c: Implement new unit selector in BOM HID, audit
1631 2011-08-05 Andrew Poelstra * asp11 AT sfu dot ca *
1633 * src/hid.h, src/hid/bom/bom.c, src/hid/common/hidinit.c,
1634 src/hid/gcode/gcode.c, src/hid/gerber/gerber.c,
1635 src/hid/gtk/gui-config.c, src/hid/gtk/gui-dialog-print.c,
1636 src/hid/gtk/gui-utils.c, src/hid/gtk/gui.h, src/hid/lpr/lpr.c,
1637 src/hid/nelma/nelma.c, src/hid/png/png.c, src/hid/ps/eps.c,
1638 src/hid/ps/ps.c, src/main.c: Introduce HID_Unit option type
1640 2011-08-04 Andrew Poelstra * asp11 AT sfu dot ca *
1642 * src/hid.h: Change drawing function coords in hid.h to Coord from
1643 int Note that this causes a slew of compilation warnings about
1644 mismatched pointer types, since the HIDs themselves are still using
1645 int-taking functions. These warnings will be cleaned up over the
1648 2011-08-04 Andrew Poelstra * asp11 AT sfu dot ca *
1650 * src/crosshair.c, src/crosshair.h: Audit crosshair.[ch], implement
1653 2011-08-04 Andrew Poelstra * asp11 AT sfu dot ca *
1655 * src/parse_y.y: Audit parse_y.y, implement Coord
1657 2011-08-04 Andrew Poelstra * asp11 AT sfu dot ca *
1659 * src/mtspace.c, src/mtspace.h: Audit mtspace.[ch], implement Coord
1661 2011-08-04 Andrew Poelstra * asp11 AT sfu dot ca *
1663 * src/pcb-printf.h, src/report.c: Audit report.c, implement Coord Includes fixes for the original pcb-printf conversion: Fix drill report spacing in report.c Use %ma spec outputting angles in report.c
1665 2011-08-04 Andrew Poelstra * asp11 AT sfu dot ca *
1667 * src/autoroute.c: Audit autoroute.[ch], implement Coord There are many magic numbers in this file. It is likely they will be
1668 skewed by base-unit changes, though I have worked to mitigate this.
1670 2011-08-04 Andrew Poelstra * asp11 AT sfu dot ca *
1672 * src/autoplace.c: Audit autoplace.c, implement Coord Note that there are -many- magic numbers in this file. I believe
1673 I've caught all of them that are supposed to be unit conversions and
1674 used macros instead.
1676 2011-08-04 Andrew Poelstra * asp11 AT sfu dot ca *
1678 * src/action.c, src/create.c, src/create.h: Audit create.[ch],
1681 2011-08-03 Andrew Poelstra * asp11 AT sfu dot ca *
1683 * src/intersect.c, src/line.c, src/line.h: Audit line.[ch],
1684 intersect.c, implement Coord
1686 2011-08-03 Andrew Poelstra * asp11 AT sfu dot ca *
1688 * src/find.c, src/find.h: Audit find.[ch], implement Coord Note that this commits brings major simplifications to some DRC
1689 functions. My tests show everything okay, but there will likely be
1690 some bugs (or bug fixes) as a result of this commit.
1692 2011-08-02 Andrew Poelstra * asp11 AT sfu dot ca *
1694 * src/find.c: Remove fBloat from find.c fBloat does nothing except act as a floating point copy of the
1695 integer Bloat variable. It should not be (and is not) necessary.
1697 2011-08-03 Andrew Poelstra * asp11 AT sfu dot ca *
1699 * src/find.c: Fix g_string_free (NULL) error
1701 2011-08-02 Andrew Poelstra * asp11 AT sfu dot ca *
1703 * src/global.h, src/hid/gtk/gui-drc-window.c,
1704 src/hid/gtk/gui-drc-window.h: Remove coord suffix/precision from DRC
1705 error struct Display units for DRC errors are now handled by the UI, rather than
1706 in the error struct. The struct now stores everything in Coord's,
1707 and pcb-printf worries about how to display them.
1709 2011-08-02 Andrew Poelstra * asp11 AT sfu dot ca *
1711 * src/file.c: Audit file.c, implement Coord
1713 2011-08-02 Andrew Poelstra * asp11 AT sfu dot ca *
1715 * src/find.c, src/pcb-printf.c, src/pcb-printf.h: Use pcb-printf in
1716 DRC code in find.c Also, expose pcb_vprintf in pcb_printf.h.
1718 2011-07-27 Andrew Poelstra * asp11 AT sfu dot ca *
1720 * src/draw.c, src/draw.h: Audit draw.[ch], implement Coord
1722 2011-07-27 Andrew Poelstra * asp11 AT sfu dot ca *
1724 * src/box.h, src/change.c, src/change.h: Audit change.[ch], box.h,
1727 2011-07-27 Andrew Poelstra * asp11 AT sfu dot ca *
1729 * src/copy.c, src/copy.h, src/insert.c, src/insert.h, src/mirror.c,
1730 src/mirror.h: Audit copy.[ch], insert.[ch], mirror.[ch], implement
1733 2011-07-27 Andrew Poelstra * asp11 AT sfu dot ca *
1735 * src/misc.c, src/misc.h: Audit misc.[ch], implement Coord
1737 2011-07-26 Andrew Poelstra * asp11 AT sfu dot ca *
1739 * src/move.c, src/move.h: Audit move.[ch], implement Coord
1741 2011-07-26 Andrew Poelstra * asp11 AT sfu dot ca *
1743 * src/polyarea.h, src/polygon.c, src/polygon.h, src/polygon1.c:
1744 Audit polygon*, polyarea.h, implement Coord
1746 2011-07-25 Andrew Poelstra * asp11 AT sfu dot ca *
1748 * src/rotate.c, src/rotate.h: Audit rotate.[ch], implement Coord
1750 2011-07-19 Andrew Poelstra * asp11 AT sfu dot ca *
1752 * src/search.c, src/search.h: Audit search.[ch], implement Coord
1753 unit This does not affect the "IsPointOnArc assumes circular arc" bug; it
1754 is just more obvious now with the cleaner code. Affects-bug: lp-815527
1756 2011-07-13 Andrew Poelstra * asp11 AT sfu dot ca *
1758 * src/rubberband.c, src/set.c, src/set.h, src/thermal.c,
1759 src/undo.c, src/undo.h: Audit undo.[ch], thermal.c, set.[ch],
1760 rubberband.c, introduce Coord
1762 2011-08-07 Andrew Poelstra * asp11 AT sfu dot ca *
1764 * src/action.c, src/buffer.c, src/buffer.h, src/command.c,
1765 src/djopt.c, src/djopt.h, src/fontmode.c, src/global.h, src/hid.h,
1766 src/hid/batch/batch.c, src/hid/common/actions.c,
1767 src/hid/common/hidnogui.c, src/hid/gtk/gtkhid-main.c,
1768 src/hid/gtk/gui-log-window.c, src/hid/gtk/gui-netlist-window.c,
1769 src/hid/gtk/gui-output-events.c, src/hid/gtk/gui-top-window.c,
1770 src/hid/gtk/gui.h, src/hid/lesstif/dialogs.c,
1771 src/hid/lesstif/lesstif.h, src/hid/lesstif/library.c,
1772 src/hid/lesstif/main.c, src/hid/lesstif/menu.c,
1773 src/hid/lesstif/netlist.c, src/hid/lesstif/styles.c, src/misc.c,
1774 src/move.c, src/netlist.c, src/puller.c, src/report.c,
1775 src/toporouter.c, src/vendor.c: Change get_coord and action
1776 signatures to use Coord
1778 2011-07-27 Andrew Poelstra * asp11 AT sfu dot ca *
1780 * src/file.c, src/hid/gtk/gtkhid-main.c, src/hid/lesstif/main.c:
1781 Introduce PCB::grid::unit attribute This is PCB's first use of the Attribute() field in the file format.
1782 It is a unit suffix string denoting the unit setting used by pcb
1783 when loading the file. Note the namespacing: as Attributes are persistent across
1784 file-saves, other programs may use them in future for purposes
1785 unknown and irrelevant to pcb. Therefore we will put all pcb
1786 attributes under the PCB namespace. If this attribute is missing or invalid (i.e., the unit given is
1787 unsupported by pcb-printf), PCB will then use the --grid-units
1788 command-line option. Failing that, it will use the grid-units entry
1789 in ~/.pcb/preferences. Failing that, it will use mils. Fixes-bug: lp-811393
1791 2011-08-10 Andrew Poelstra * asp11 AT sfu dot ca *
1793 * src/pcb-printf.c: Modify get_unit_struct()'s bad-unit forgiveness Suffixes passed to get_unit_struct() may now start or end with
1794 whitespace, without affecting the result. However, incomplete units
1795 will NOT be matched. This means that "mi" will no longer return the "mil" struct, for
1796 example. The reasons for this change are: 1. The old behavior returned the first potential match, regardless of other matches: "c" is always "cm", never "cmil". 2. Prevent surprises (due to point #1, or typos). 3. Prevent user dependence on behavior that will change as units are added or removed. It still supports plural units, like "inches" or "mils". However,
1797 it will read "miles" as "mil" because of this. ;)
1799 2011-08-05 Andrew Poelstra * asp11 AT sfu dot ca *
1801 * src/main.c, src/pcb-printf.c, src/pcb-printf.h: Add alias support,
1802 get_unit_list() to pcb-printf Add pcb-printf support for unit aliases (just one per unit for now,
1803 we will fix this if the need arises). Map "inch" to "in" and "pcb"
1804 to "cmil" for backward compatibility. Move initialize_units() call to main.c to ensure it is called before
1805 any other unit-handling code. Also, add the functions get_unit_list (); get_n_units (); which do exactly what they look like. These will
1806 be used to build HID-export unit selectors.
1808 2011-07-12 Andrew Poelstra * asp11 AT sfu dot ca *
1810 * src/gpcb-menu.res.in, src/pcb-menu.res.in: Use suffixed units in
1811 gpcb-menu.res and pcb-menu.res
1813 2011-07-04 Andrew Poelstra * asp11 AT sfu dot ca *
1815 * src/buffer.c, src/buffer.h, src/create.c, src/file.c,
1816 src/global.h, src/misc.c, src/misc.h, src/pcb-printf.c,
1817 src/pcb-printf.h, src/rotate.c: Make file.c use %mr pcb-printf spec I have changed the %mr spec to always output cmils, no suffix, and
1818 changed file.c to use this. The reason is that the %mc spec (cmils,
1819 no suffix) is locale- dependent, while %mr is not. When we change the actual file format, file.c can be left alone and
1820 the relevant changes should be done to the %mr spec in pcb-printf.
1822 2011-07-13 Andrew Poelstra * asp11 AT sfu dot ca *
1824 * src/hid/gtk/gui-config.c: Update hid/gtk/gui-config.c with new
1827 2011-07-13 Andrew Poelstra * asp11 AT sfu dot ca *
1829 * src/file.c, src/find.c, src/flags.c, src/global.h,
1830 src/gpcb-menu.res.in, src/hid/gtk/gtkhid-main.c,
1831 src/hid/gtk/gui-config.c, src/hid/gtk/gui-dialog-size.c,
1832 src/hid/gtk/gui-misc.c, src/hid/gtk/gui-top-window.c,
1833 src/hid/gtk/gui.h, src/hid/lesstif/dialogs.c,
1834 src/hid/lesstif/main.c, src/hid/lesstif/styles.c,
1835 src/pcb-menu.res.in, src/pcb-printf.h, src/report.c: Remove mm/mil
1836 dichotomy, support arbitrary user units Currently, pcb assumes the user's display units are either mm or
1837 mil, and uses the Settings.grid_unit_mm boolean (and flag
1838 "grid_unit_mm") to determine which is which. This patch removes the boolean and replaces it with the new
1839 Settings.grid_unit, which can be set to any unit supported by
1840 pcb-printf. The user-visible interface has not changed (there is
1841 still a mm/mil toggle in Gtk and the menus only contain mm and mil
1842 units), but new units can be accessed though the :SetUnits command. The flag is still there and can be used in pcb-menu.res as usual.
1843 However, the new flag "grid_unit_mil" should be checked to see if
1844 mils are selected, since this is no longer implied by grid_unit_mm
1845 == 0. There will be some user-visible changes to the precision of
1846 displayed values, since I have removed a lot of special-case code
1847 for this sort of this thing and use the default_prec of applicable
1848 units instead. Because of the new flexibility, some idioms have been changed: Settings.grid_unit_mm ? COORD_TO_MM (x) : COORD_TO_MIL (x) becomes coord_to_unit (Settings.grid_unit, x) Settings.grid_unit_mm ? "mm" : "mil" becomes Settings.grid_unit->suffix Settings.grid_unit_mm = 1; becomes Settings.grid_unit = get_unit_struct ("mm"); For GUI use, the Unit structure returned by get_unit_struct exposes
1849 certain members: suffix : "mm"/"mil"/etc in_suffix : i18n version of the above default_prec : precision used for spinboxes, labels, etc step_tiny : step_small : step_medium : step sizes for various spinboxes step_large : step_huge : Additionally, the *_increment_mm and *_increment_mil variables have
1850 their own structure containing default, min and max values. These
1851 can no longer be set on the command line.
1853 2011-07-12 Andrew Poelstra * asp11 AT sfu dot ca *
1855 * src/main.c: Cleanup default values in main.c
1857 2011-07-12 Andrew Poelstra * asp11 AT sfu dot ca *
1859 * src/misc.c, src/pcb-printf.c, src/pcb-printf.h: Introduce new
1860 structures (unit, increment) to pcb-printf Constants for gui spinbox steps are now in pcb-printf.h: Unit.step_tiny Unit.step_small Unit.step_medium Unit.step_large Unit.step_huge Additionally, the default/max/min values for the preferences
1861 Increments tab are in their own structure in pcb-printf.h. These changes are needed to bring all unit-specific constants into
1862 one place. The spinbox values can be shared by gtk and lesstif.
1864 2011-07-04 Andrew Poelstra * asp11 AT sfu dot ca *
1866 * src/misc.c, src/pcb-printf.c, src/pcb-printf.h: Add scale factor
1867 lookups to pcb_printf.c, tell GetValue to use them GetValue and pcb-printf have their own lookup tables to determine
1868 scale factors. To unify them, this patch adds two functions to pcb-
1869 printf, coord_to_unit and unit_to_coord. These a const char *suffix and return an appropriate scale factor. I have also added a NO_PRINT entry to the allow_mask array for
1870 suffixes like "inch" that we can read but never output. The definitive unit lookup table should now be in pcb_printf.c. Any
1871 other tables used in the code should be merged into this.
1873 2011-07-11 Andrew Poelstra * asp11 AT sfu dot ca *
1875 * src/action.c, src/autoplace.c, src/crosshair.c, src/crosshair.h,
1876 src/djopt.c, src/file.c, src/flags.c, src/fontmode.c, src/global.h,
1877 src/hid/common/hidgl.c, src/hid/gtk/gtkhid-gdk.c,
1878 src/hid/gtk/gui-config.c, src/hid/gtk/gui-misc.c,
1879 src/hid/gtk/gui.h, src/hid/lesstif/main.c, src/hid/lesstif/menu.c,
1880 src/main.c, src/misc.c, src/misc.h, src/set.c, src/set.h: Convert
1881 grid/increments from double to Coord Since Coord is an integer unit, there will be (often severe)
1882 precision errors until we convert the base unit to nm.
1884 2011-08-14 Felix Ruoff * Felix AT posaunenmission dot de *
1886 * src/global.h: Remove unused variable
1888 2011-08-14 Felix Ruoff * Felix AT posaunenmission dot de *
1890 * src/global.h, src/main.c: Remove broken --menu-file option The expected functionality is given by the option --pcb-menu for the
1891 GTK+ GUI and lesstif GUI.
1893 2011-08-13 DJ Delorie * dj AT delorie dot com *
1895 * src/change.c, src/find.c, src/global.h,
1896 src/hid/common/draw_helpers.c, src/misc.c, src/polygon.c,
1897 src/search.c: Make toggling the HOLE flag reversible Closes-bug: lp-699483 When toggling the HOLE flag, the Thickness is no longer changed.
1898 Instead, use PIN_SIZE() to select from Thickness or DrillingHole
1899 accordingly, and use that throughout. Mask size is handled thusly: For tented vias, the mask is opened up
1900 to just over the hole size. For untented vias, the mask gap is held
1901 constant. Also, various minor changes to ensure that untented holes are drawn
1904 2011-08-13 Jared Casper * jaredcasper AT gmail dot com *
1906 * src/action.c, src/create.c, src/create.h, src/file.c, src/main.c,
1907 src/parse_y.y: refdes labels in new layout can't be moved. The .pcb file that gsch2pcb creates does not have a font in it.
1908 When loading files, the bounding box for all the text is calculated
1909 as the file is read. In the case that there is no font, this is
1910 before the default font is installed, so the bounding box is way too
1911 small. This patch remedies this by making all new PCB structures contain
1912 the default font by calling CreateDefaultFont in CreateNewPCB
1913 (CreateDefaultFont now takes in a PCBTypePtr instead of using the
1914 global PCB). Previously, each time CreateNewPCB was called,
1915 CreateDefaultFont was called soon thereafter. In the case of loading a PCB from a file. The default font in the
1916 newly created struct PCB is marked invalid but not removed. If the
1917 .pcb file contains a font, the default font will be overwritten by
1918 the file's font. If it does not, PCB->Font will still be invalid
1919 after LoadPCB, a message is displayed that the default font is being
1920 used, and PCB->Font.Valid is set to true. Also fixes a related bug where the memory for a symbols lines wasn't
1921 being cleared when a new file was brought into place. Previously,
1922 this only happened if a new Font was loaded into an existing PCB.
1923 Now the font will be replaced every time a file with symbol
1924 information is loaded. Rebased to actual git-head by Felix Ruoff Closes-bug: lp-699478
1926 2011-08-13 DJ Delorie * dj AT delorie dot com *
1928 * src/hid/lesstif/dialogs.c, src/hid/lesstif/lesstif.h,
1929 src/hid/lesstif/library.c, src/hid/lesstif/main.c,
1930 src/hid/lesstif/menu.c, src/hid/lesstif/netlist.c,
1931 src/hid/lesstif/styles.c: Centralize Lesstif XmStringCreate* Closes-bug: lp-699472 To save time in the future, all XmString creation is done via
1932 XmStringCreatePCB which is a macro in lesstif.h. Meanwhile, this
1933 macro is defined to XmStringCreateLtoR instead of
1934 XmStringCreateLocalized.
1936 2011-08-13 Cesar Strauss * cstrauss AT not2005 dot cea dot inpe dot br *
1938 * Makefile.am, README.w32, configure.ac, w32/.gitignore,
1939 w32/Makefile.am, w32/README, w32/build-all.sh, w32/minipack.conf,
1941 w32/patches/gd/0001-Export-sysbols-when-building-as-a-DLL.patch,
1942 w32/patches/gd/0002-Libtool-requires-no-undefined-to-build-a-DLL.pa
1944 w32/patches/gd/0003-Avoid-conflit-between-libjpeg-and-windows-heade
1945 rs.patch, w32/patches/gettext/01-revert-sed-string.patch,
1946 w32/patches/gettext/02-Avoid-missing-open-argument-error.patch,
1947 w32/patches/gtk+/01-mousewheel.patch,
1948 w32/patches/zlib/01-shared-lib-support.patch,
1949 w32/patches/zlib/02-cross-build.patch, w32/recipes/atk.recipe,
1950 w32/recipes/cairo.recipe, w32/recipes/gd.recipe,
1951 w32/recipes/gettext.recipe, w32/recipes/glib.recipe,
1952 w32/recipes/gtk+.recipe, w32/recipes/jpeg.recipe,
1953 w32/recipes/libiconv.recipe, w32/recipes/libpng.recipe,
1954 w32/recipes/pango.recipe, w32/recipes/pcb.recipe,
1955 w32/recipes/pixman.recipe, w32/recipes/tiff.recipe,
1956 w32/recipes/zlib.recipe, w32/tools/mpk-build, w32/tools/mpk-clean,
1957 w32/tools/mpk-config.guess, w32/tools/mpk-help,
1958 w32/tools/mpk-install, w32/tools/mpk-remove, w32/tools/mpk-shell,
1959 w32/tools/mpk-source, w32/tools/mpk-unpack, w32/tools/mpk-version,
1960 w32/tools/tool.template: Add Windows cross-build script. Closes-bug: lp-699494
1962 2011-08-13 Cesar Strauss * cstrauss AT not2005 dot cea dot inpe dot br *
1964 * Makefile.am, README.win32, configure.ac, win32/.cvsignore,
1965 win32/Makefile.am, win32/Readme.txt, win32/build_pcb,
1966 win32/extract_gtk_win32, win32/pcb.nsi.in,
1967 win32/registerExtension.nsh: Remove previous Windows build script. Affects-bug: lp-699494
1969 2011-08-10 DJ Delorie * dj AT delorie dot com *
1971 * src/action.h, src/autoplace.h, src/autoroute.h, src/box.h,
1972 src/buffer.h, src/change.h, src/clip.h, src/command.h,
1973 src/compat.h, src/const.h, src/copy.h, src/create.h,
1974 src/crosshair.h, src/data.h, src/dbus-pcbmain.h, src/dbus.h,
1975 src/djopt.h, src/draw.h, src/edif_parse.h, src/error.h, src/file.h,
1976 src/find.h, src/global.h, src/heap.h, src/hid.h,
1977 src/hid/common/actions.h, src/hid/common/hid_resource.h,
1978 src/hid/common/hidgl.h, src/hid/common/hidinit.h,
1979 src/hid/common/hidnogui.h, src/hid/gcode/lists.h,
1980 src/hid/gtk/gtkhid.h, src/hid/gtk/gui-drc-window.h,
1981 src/hid/gtk/gui-library-window.h, src/hid/gtk/gui-pinout-preview.h,
1982 src/hid/gtk/gui.h, src/insert.h, src/intersect.h, src/line.h,
1983 src/lrealpath.h, src/macro.h, src/mirror.h, src/misc.h, src/move.h,
1984 src/mtspace.h, src/mymem.h, src/parse_l.h, src/pcb-printf.h,
1985 src/polyarea.h, src/polygon.h, src/print.h, src/rats.h,
1986 src/remove.h, src/report.h, src/resource.h, src/rotate.h,
1987 src/rtree.h, src/rubberband.h, src/search.h, src/select.h,
1988 src/set.h, src/strflags.h, src/thermal.h, src/toporouter.h,
1989 src/undo.h, src/vector.h, src/vendor.h: Fix header guard macro names Closes-bug: lp-699161 Make all headers use standard-compliant guard macro names.
1991 2011-08-10 DJ Delorie * dj AT delorie dot com *
1993 * configure.ac, src/hid/lesstif/main.c, src/hid/lesstif/xincludes.h:
1994 Detect XRender + Xinerama to avoid BadMatch Closes-bug: lp-699251 This seems to happen when your X server is using both Xinerama and
1995 XRender, and only affects the XRenderChangePicture() call with a
1996 clip_mask. So, I added code to detect Xinerama+XRender and disable
1997 XRender if they're found.
1999 2011-08-10 DJ Delorie * dj AT delorie dot com *
2001 * src/action.c: Don't set FOUND flag on silk lines. Closes-bug: lp-699291
2003 2011-08-08 Peter Clifton * pcjc2 AT cam dot ac dot uk *
2005 * src/hid/gtk/gtkhid-main.c: hid/gtk: Clean up ghid_pan_fixup ()
2007 2011-08-08 Peter Clifton * pcjc2 AT cam dot ac dot uk *
2009 * src/hid/gtk/gtkhid-main.c: hid/gtk: Re-write some routines with
2010 the new ghid_pcb_to_event_coords API. Cleans up ghid_set_crosshair() and Center() in gtkhid-main.c
2012 2011-08-08 Peter Clifton * pcjc2 AT cam dot ac dot uk *
2014 * src/hid/gtk/gtkhid-gdk.c, src/hid/gtk/gtkhid-gl.c,
2015 src/hid/gtk/gui.h: hid/gtk: Add API to convert pcb units into
2016 drawing widget coordinates.
2018 2011-08-07 Peter Clifton * pcjc2 AT cam dot ac dot uk *
2020 * src/misc.c: misc.c: Remove comment missed from commit e82ad9b
2022 2011-08-07 Peter Clifton * pcjc2 AT cam dot ac dot uk *
2024 * src/macro.h: macro.h: Remove now unused SCREEN_SIGN_{X,Y} macros
2026 2011-07-25 Peter Clifton * pcjc2 AT cam dot ac dot uk *
2028 * src/hid/gtk/gtkhid-gdk.c, src/hid/gtk/gtkhid-gl.c,
2029 src/hid/gtk/gui-netlist-window.c, src/hid/gtk/gui.h: hid/gtk:
2030 Implement an API to draw the user into a particular location This is renderer-specific, but the general idea is to help the user
2031 find a particular location on the board.
2033 2011-08-07 Peter Clifton * pcjc2 AT cam dot ac dot uk *
2035 * src/hid/gtk/gui-netlist-window.c, src/select.c, src/select.h: Move
2036 the SelectPin() function into the file of its only caller. The new function is in hid/gtk/gui-netlist-window.c, and is called
2037 toggle_pin_selected (). Whilst we're at it, simplify the function, removing its always-
2038 constant argument and condense the redrawing calls.
2040 2011-08-07 Peter Clifton * pcjc2 AT cam dot ac dot uk *
2042 * src/action.c: action.c: Remove unused parser token F_Scroll
2045 2011-08-07 Peter Clifton * pcjc2 AT cam dot ac dot uk *
2047 * src/action.c, src/action.h: action.c: Remove unused action
2050 2011-08-07 Peter Clifton * pcjc2 AT cam dot ac dot uk *
2052 * src/hid/gtk/gui-misc.c: hid/gtk: Remove dead "MovePointer"
2053 keyboard navigation code. This was not working correctly anyway, as the action was not
2054 properly registered. Obviously no-one missed it, so let it die. Whilst we are here, kill off the hard-coded panning actions in this
2055 sub-main loop. Eventually, we should use common code for any
2056 keyboard navigation. This only affects operation of the ghid_get_user_xy() function, e.g.
2057 the one which temporarily greys out the PCB user interface whilst
2058 waiting for the user to supply a location.
2060 2011-08-07 Peter Clifton * pcjc2 AT cam dot ac dot uk *
2062 * src/action.c: action.c: Simplify ActionMovePointer() The save / restore of the crosshair coordinates is unnecessary since
2063 we are emitting the appropriate change notifications.
2065 2011-08-07 Peter Clifton * pcjc2 AT cam dot ac dot uk *
2067 * src/action.c: action.c: Remove dead code, IgnoreMotionEvents
2069 2011-08-07 Peter Clifton * pcjc2 AT cam dot ac dot uk *
2071 * src/action.c, src/find.c, src/hid/gtk/gui-drc-window.c,
2072 src/misc.c, src/misc.h, src/select.c: misc.c: Remove unused "delta"
2073 argument from CenterDisplay() All the callers are passing absolute locations.
2075 2011-08-07 Peter Clifton * pcjc2 AT cam dot ac dot uk *
2077 * po/POTFILES.in, src/Makefile.am, src/gpcb-menu.res,
2078 src/gpcb-menu.res.in, src/pcb-menu.res, src/pcb-menu.res.in:
2079 Generate pcb-menu.res and gpcb-menu.res from ".in" files No functional changes here, just a preliminary cleaning before
2080 adding the topological autorouter to the menus. Doing so requies
2081 conditional inclusion of certain lines, as the toporouter is not
2082 always built. Based on a patch by Stanislav Brabec * sbrabec AT suse dot cz * Affects-bug: lp-812429
2084 2011-08-07 Peter Clifton * pcjc2 AT cam dot ac dot uk *
2086 * src/pcb-menu.res: pcb-menu.res: Fixup some more whitespace
2088 2011-07-18 Stanislav Brabec * sbrabec AT suse dot cz *
2090 * src/action.c: RipUp(): Rip arcs created by toporouter. Toporouter creates not only lines but also arcs. Rip up all auto
2091 routed tracks should rip these arcs as well. Closes-bug: lp-812380 Reviewed-by: Peter Clifton * pcjc2 AT cam dot ac dot uk *
2093 2011-08-07 Peter Clifton * pcjc2 AT cam dot ac dot uk *
2095 * po/POTFILES.in: POTFILES.in: Add src/crosshair.c and
2096 src/autoroute.c We were missing translations before. "make distcheck" now passes ;)
2098 2011-08-07 Peter Clifton * pcjc2 AT cam dot ac dot uk *
2100 * doc/Makefile.am: doc: Don't make any DVI targets We don't have rules to build all the prerequisites, and we don't
2101 care about DVI. This is one of the issues causing "make distcheck"
2104 2011-08-07 Peter Clifton * pcjc2 AT cam dot ac dot uk *
2106 * doc/Makefile.am, doc/gs/Makefile.am: doc: Remove execute
2107 permissions on Makefile.am and gs/Makefile.am
2109 2011-08-07 Peter Clifton * pcjc2 AT cam dot ac dot uk *
2111 * src/gpcb-menu.res, src/pcb-menu.res: Clean up whitespace in
2114 2011-08-03 Peter Clifton * pcjc2 AT cam dot ac dot uk *
2116 * src/crosshair.c: crosshair.c: Fix layer check for off-grid line
2117 snapping in line-draw mode
2119 2011-08-03 Peter Clifton * pcjc2 AT cam dot ac dot uk *
2121 * src/crosshair.c: crosshair.c: Revise heuristic for snapping on
2122 off-grid lines Only snap to an off-grid section of a line when: Drawing lines on the same layer as the one being snapped to When
2123 manipulating the end-point of a _different) line on the same layer
2124 as the one being snapped to. This should hopefully reduce the tendancy of the off-grid-line code
2125 to cause lots of unnecessary snapping.
2127 2011-08-01 Gabriel Paubert * paubert AT iram dot es *
2129 * src/hid/lesstif/main.c: Correct parameter order in Distance
2130 function in hid/lesstif/main.c in src/did/lesstif/main.c, the Distance function is called with the
2131 parameters in the wrong order. This small patches fixes the problem. I still think that the format
2132 is wrong, or at least the rounding to integer mm/mil taking only the
2133 grid into account, but I've not yet decided on how to fix it. The
2134 worse is that often the display is wrong because the decimal part is
2135 truncated (displaying say -24 between two grid points on a 5mil
2138 2011-07-27 Peter Clifton * pcjc2 AT cam dot ac dot uk *
2140 * src/hid/png/png.c: hid/png: Increase the maximum allowable DPI of
2141 the exporter Sometimes for rendering fiddly boards, you just need the detail. Move the arbitrary 1000 dpi limit to still arbitrary, 10000 dpi.
2143 2011-07-27 Peter Clifton * pcjc2 AT cam dot ac dot uk *
2145 * src/hid/ps/ps.c: hid/ps: Fix arc drawing since pcb_printf patch The last parameter to the arc macro we use for drawing arcs is
2146 unitless, so should be a double. This was broken by: commit fa9ae1f6b1eabaab961795ce7be53afe46eaa735 Convert ps/eps/lpr HID's to use pcb-printf I've reverted the change, and added an extra (double) cast compared
2147 to what was there before, I'm not sure we wouldn't get an integer
2148 division without it. One day I should learn these type promotion /
2149 casting rules properly! ;)
2151 2011-07-25 Peter Clifton * pcjc2 AT cam dot ac dot uk *
2153 * src/hid/gtk/gtkhid-gdk.c, src/hid/gtk/gtkhid-gl.c,
2154 src/hid/gtk/gui-top-window.c, src/hid/gtk/gui.h: hid/gtk: Add a
2155 shutdown function to the renderer backends This will be necessary to stop any event handlers / timers which
2156 should not fire as the GUI is being shut down. This code isn't actually very "live" at the moment, as the place
2157 I've hooked up its trigger (the destroy event of the main window),
2158 doesn't actually appear to get called. This seems to be because the core "Quit" action just kills the
2159 program dead, rather than attempting to shut down the GUI.
2161 2011-07-25 Peter Clifton * pcjc2 AT cam dot ac dot uk *
2163 * src/hid/gtk/gui-netlist-window.c: hid/gtk: Do not run a main loop
2164 from within the netlist window code. It turns out that this is a really bad idea.. if the main loop is
2165 kept busy, the new main-loop never exits and the events can become
2166 reentrant. I discovered this when testing code for an animation which used the
2167 main event loop for its timing. Each time a node was selected in the
2168 netlist window, stack-frame would grow - as the new nested main
2169 loops never became idle. Segfaults ensued quite readily, presumably
2170 due to the code not being designed to be reentrant. It appears from reading the code, that these: while (gtk_events_pending ()) /* Make sure everything gets
2171 built */ gtk_main_iteration (); Are not actually necessary.
2173 2011-07-25 Peter Clifton * pcjc2 AT cam dot ac dot uk *
2175 * src/hid/gtk/gui-netlist-window.c: hid/gtk: Skip check before
2176 calling ghid_netlist_window_create If the window already exists, ghid_netlist_window_create() is a
2177 NOOP, so there is no point in checking twice.
2179 2011-07-25 Peter Clifton * pcjc2 AT cam dot ac dot uk *
2181 * src/hid/gtk/gui-netlist-window.c, src/hid/gtk/gui.h: hid/gtk:
2182 Remove unused function ghid_netlist_nodes_update ()
2184 2011-07-25 DJ Delorie * dj AT delorie dot com *
2186 * src/default_font: Tweak default font. Minor changes to various glyphs to improve readability and
2187 legibility, such as making V look less like U, or 8 less like 0. No
2188 changes to font metrics, bounding boxes, or spacing.
2190 2011-07-25 Peter Clifton * pcjc2 AT cam dot ac dot uk *
2192 * src/hid/gtk/gtkhid-main.c: hid/gtk: Fix up paning when flipping
2193 the board. I'm not sure when this got broken, but it was probably my fault ;)
2195 2011-07-25 Peter Clifton * pcjc2 AT cam dot ac dot uk *
2197 * : commit f9ad6634a55f7f79106945e3307aafe0d39eae61 Author: Andrew
2198 Poelstra * asp11 AT sfu dot ca * Date: Mon Jul 25 00:33:23 2011
2201 2011-07-24 Peter Clifton * pcjc2 AT cam dot ac dot uk *
2203 * : hid/gtk: Refactor viewport handling
2205 2011-07-24 Peter Clifton * pcjc2 AT cam dot ac dot uk *
2207 * src/hid/gtk/gtkhid-main.c: hid/gtk: Fixup Zoom() and zoom_by() so
2208 they don't ignore passed coordinates. The Zoom() action was passing bogus coordinates (in pixels), and
2209 zoom_by() was ignoring the passed coordinates and just using the
2210 mouse pointer location last recorded in gport->pcb_x and
2211 gport->pcb_y. Fix zoom_by() to use the passed coordinates, fix Zoom() to not
2212 mangle the passed board coordinates into screen space.. zoom_by()
2213 wants board coords. Finally, remove a special case from the Zoom() action where if the
2214 passed coordinates were both zero, we would pass the PCB coordinates
2215 of the board center. I'm hopeful that things will "just work"
2218 2011-07-24 Peter Clifton * pcjc2 AT cam dot ac dot uk *
2220 * src/hid/gtk/gtkhid-main.c, src/hid/gtk/gui-output-events.c,
2221 src/hid/gtk/gui.h: hid/gtk: Introduce a zoom_fit() function, remove
2222 duplicated code. Several places in the code invoke a "zoom_fit" type function by
2223 calling zoom_to() or ghid_port_ranges_zoom() with bogus parameters. Implement a specific function which restricts this to one location,
2224 then remove the now redundant ghid_port_ranges_zoom(), which
2225 basically just duplicated the code from zoom_by() with an added
2226 check for a 0.0 zoom factor to trigger the zoom-to-fit feature.
2228 2011-07-24 Peter Clifton * pcjc2 AT cam dot ac dot uk *
2230 * src/hid/gtk/gtkhid-main.c: hid/gtk: Add missing static parameter
2231 to zoom_by() function.
2233 2011-07-24 Peter Clifton * pcjc2 AT cam dot ac dot uk *
2235 * src/hid/gtk/gtkhid-main.c: hid/gtk: Some cleanups to the zoom_to()
2236 function Still confusing, but at least its not the fault of the code
2239 2011-07-24 Peter Clifton * pcjc2 AT cam dot ac dot uk *
2241 * src/hid/gtk/gtkhid-main.c: hid/gtk: Remove old debugging code from
2242 zoom_to and zoom_by() functions This code was adding to clutter in the functions, and appears in
2243 some cases to be bit-rotten. (The coordinates it operated on don't
2244 appear to be have been consistent with the current GUI code).
2246 2011-07-24 Peter Clifton * pcjc2 AT cam dot ac dot uk *
2248 * src/hid/gtk/gtkhid-gdk.c, src/hid/gtk/gtkhid-gl.c,
2249 src/hid/gtk/gui-output-events.c, src/hid/gtk/gui.h: hid/gtk:
2250 Abstract away event coordinate conversion to PCB base units
2252 2010-12-26 Peter Clifton * pcjc2 AT cam dot ac dot uk *
2254 * src/hid/gtk/gtkhid-main.c, src/hid/gtk/gui-output-events.c,
2255 src/hid/gtk/gui.h: hid/gtk: Refactor semantics of, and rename
2256 view_x, view_y coordinates Rather than storing pointer coordinates in the imaginary "view"
2257 system, where the coordinates (in PCB base units) represent that of
2258 an unflipped board, store them such that they are directly
2259 meaningful on the board. As they now directly represent the cursor coordinats on the actual
2260 board, they don't require passing through the SIDE_{X,Y} macros
2261 before use with APIs that expect board coordinates. To avoid confusion, view_x and view_y have been renamed to pcb_x and
2262 pcb_y to reflect the change of semantics. In a number of cases, SIDE_{X,Y} macro calls were added to preserve
2263 correct functionality of old code which manipulates the mouse
2264 position in "view" coordinates. These are primarily concerned with
2265 zooming and panning. Also rename the confusingly titled VIEW_{X,Y} macros to
2268 2011-07-24 Peter Clifton * pcjc2 AT cam dot ac dot uk *
2270 * src/hid/gtk/gtkhid-gdk.c, src/hid/gtk/gtkhid-gl.c,
2271 src/hid/gtk/gtkhid-main.c, src/hid/gtk/gui-output-events.c,
2272 src/hid/gtk/gui.h: hid/gtk: Rename {x,y}_crosshair to
2273 crosshair_{x,y} (Just because!)
2275 2011-07-24 Peter Clifton * pcjc2 AT cam dot ac dot uk *
2277 * src/hid/gtk/gtkhid-gl.c: gtk+gl: Convert crosshair drawing to use
2278 PCB world coordinates Whilst I'm at it, add a z-coordinate to the crosshair drawing
2279 functions to future proof them for when we add some 3D effects.
2281 2011-07-08 Andrew Poelstra * asp11 AT sfu dot ca *
2283 * src/file.c, src/global.h, src/pcb-printf.c: Introduce Coord/Angle
2284 types, convert global.h and pcb-printf to use it For now Grid (in PCB and Settings) and its increments are still
2285 doubles to avoid serious breakage. Will change these to Coords in a
2286 separate commit. Also add %ma spec for Angle, tell file.c to use it, to prevent
2287 printf problems with Angle when changing ctypes.
2289 2011-07-24 Peter Clifton * pcjc2 AT cam dot ac dot uk *
2291 * gts/boolean.c, gts/cdt.c, gts/edge.c, gts/partition.c,
2292 gts/split.c: gts: Fixup warnings due to assigned but unused
2293 variables As I'm not 100% familiar with this code, I have commented out some
2294 of the redundant code rather than deleting it completely.
2296 2011-07-24 Peter Clifton * pcjc2 AT cam dot ac dot uk *
2298 * src/hid/common/hidgl.c: hid/common/hidgl.c: Cast the function
2299 pointers passed to gluTessCallback() Silences compiler warnings about incompatible pointer types
2301 2011-07-24 Peter Clifton * pcjc2 AT cam dot ac dot uk *
2303 * src/line.c: line.c: Fix a bogus compiler warning regarding a (X +
2304 c) >= X being always true. line.c: In function ‘EnforceLineDRC’: line.c:491:7: warning:
2305 assuming signed overflow does not occur when assuming that (X + c)
2306 >= X is always true [-Wstrict-overflow] It would appear that gcc (4.6.1-5ubuntu1) is identifying the
2307 conditional portions of INDEXOFCURRENT which would always evaluate a
2308 particular way if a given condition is met. It is "probably" safe to
2309 assume that this warning manifests due to gcc considering each
2310 portion of the INDEXOFCURRENT definition in turn. It appears we can avoid this particular warning by temporarily
2311 assigning INDEXOFCURRENT into a variable before we test with it.
2313 2011-07-24 Peter Clifton * pcjc2 AT cam dot ac dot uk *
2315 * src/toporouter.c: toporouter.c: Fixup warnings due to assigned but
2316 unused variables As I'm not 100% familiar with this code, I have commented out some
2317 of the redundant code rather than deleting it completely.
2319 2011-07-24 Peter Clifton * pcjc2 AT cam dot ac dot uk *
2321 * src/undo.c: undo.c: Fixup warnings due to assigned but unused
2324 2011-07-24 Peter Clifton * pcjc2 AT cam dot ac dot uk *
2326 * src/rtree.c: rtree.c: Fixup warnings due to assigned but unused
2327 variables Adds a nasty cludge using #ifndef NDEBUG around a variable
2328 assignment which is only used in a later assert() statement. (NB:
2329 assert() evaluates to nothing if NDEBUG is defined).
2331 2011-07-24 Peter Clifton * pcjc2 AT cam dot ac dot uk *
2333 * src/print.c: print.c: Fixup warnings due to assigned but unused
2336 2011-07-24 Peter Clifton * pcjc2 AT cam dot ac dot uk *
2338 * src/puller.c: puller.c: Fixup warnings due to assigned but unused
2341 2011-07-24 Peter Clifton * pcjc2 AT cam dot ac dot uk *
2343 * src/polygon1.c: polygon1.c: Fixup warnings due to assigned but
2344 unused variables Adds a nasty cludge using #ifndef NDEBUG around a variable
2345 assignment which is only used in a later assert() statement. (NB:
2346 assert() evaluates to nothing if NDEBUG is defined).
2348 2011-07-24 Peter Clifton * pcjc2 AT cam dot ac dot uk *
2350 * src/fontmode.c: fontmode.c: Fixup warnings due to assigned but
2353 2011-07-24 Peter Clifton * pcjc2 AT cam dot ac dot uk *
2355 * src/find.c: find.c: Fixup warnings due to assigned but unused
2358 2011-07-24 Peter Clifton * pcjc2 AT cam dot ac dot uk *
2360 * src/djopt.c: djopt.c: Fixup warnings due to assigned but unused
2363 2011-07-24 Peter Clifton * pcjc2 AT cam dot ac dot uk *
2365 * src/copy.c: copy.c: Fixup warnings due to assigned but unused
2368 2011-07-24 Peter Clifton * pcjc2 AT cam dot ac dot uk *
2370 * src/autoroute.c: autoroute.c: Fixup warnings due to assigned but
2371 unused variables Adds a nasty cludge using #ifndef NDEBUG around a variable
2372 assignment which is only used in a later assert() statement. (NB:
2373 assert() evaluates to nothing if NDEBUG is defined).
2375 2011-07-23 Peter Clifton * pcjc2 AT cam dot ac dot uk *
2377 * src/action.c: action.c: Fixup warnings due to assigned but unused
2380 2011-07-23 Peter Clifton * pcjc2 AT cam dot ac dot uk *
2382 * src/hid/gcode/trace.c: hid/gcode: Fixup warnings due to assigned
2383 but unused variables
2385 2011-07-23 Peter Clifton * pcjc2 AT cam dot ac dot uk *
2387 * src/hid/bom/bom.c: hid/bom: Fixup warnings due to assigned but
2390 2011-07-23 Peter Clifton * pcjc2 AT cam dot ac dot uk *
2392 * src/hid/gtk/gtkhid-main.c, src/hid/gtk/gui-library-window.c,
2393 src/hid/gtk/gui-top-window.c: hid/gtk: Fixup warnings due to
2394 assigned but unused variables
2396 2011-07-23 Peter Clifton * pcjc2 AT cam dot ac dot uk *
2398 * src/crosshair.c: crosshair.c: Snap to points along off-grid lines
2399 when drawing tracks This should greatly easy making tidy layouts where some lines have
2400 (perhaps by necessity) ended up off-grid. This patch adds code to snap onto the center of a line. It finds the
2401 nearest grid point to the cursor, then will allow snapping at the
2402 intersections between the line in question and the lines of an
2403 imaginary X and + centered on the nearest grid-point to the cursor. This allows neat drawing of horizontal, vertical and 45 degree lines
2404 which will land correctly on the existing line.
2406 2011-07-23 Peter Clifton * pcjc2 AT cam dot ac dot uk *
2408 * src/crosshair.c: crosshair.c: Rename some variables for clarity
2410 2011-07-23 Peter Clifton * pcjc2 AT cam dot ac dot uk *
2412 * src/crosshair.c: crosshair.c: Always allow snapping to the element
2413 mark (except in rat-draw mode)
2415 2011-07-23 Peter Clifton * pcjc2 AT cam dot ac dot uk *
2417 * src/crosshair.c: crosshair.c: Don't snap to an element's mark in
2420 2011-07-23 Peter Clifton * pcjc2 AT cam dot ac dot uk *
2422 * src/crosshair.c: crosshair.c: Drop checks to ensure the crosshair
2423 is inside the PCB It would seem that the MIN, MAX functions applied when setting
2424 Crosshair.X and Crosshair.Y should already constrain the coordinates
2425 such that the removed code was never triggered. It isn't obvious that these removed checks are even correct, or are
2426 being triggered. Drop the checks in the hope that the now simplified
2427 code continues to "just work" without the special casing.
2429 2011-07-23 Peter Clifton * pcjc2 AT cam dot ac dot uk *
2431 * src/parse_y.y: parse_y.y: Remove unused GRIDFIT macro
2433 2011-07-23 Peter Clifton * pcjc2 AT cam dot ac dot uk *
2435 * src/crosshair.c: Try snapping to element marks first, as they are
2436 only a weak snap. Because the element mark is never chosen in preference to a closer
2437 grid point, we should try snapping to it first - rather than last. Currently, we might have a crosshair location where (say), a pad is
2438 snapped to in preference to the nearest grid-point, then the element
2439 mark is tested and snapped to because it is closer than the pad.
2440 This can occur even when there is a closer grid point than the
2441 element mark, since the grid snap (nearest_is_grid == true) has
2442 already been discarded by the snap to the pad.
2444 2011-07-23 Peter Clifton * pcjc2 AT cam dot ac dot uk *
2446 * src/crosshair.c: Refactor crosshair snap code to reduce
2447 duplication and improve readability
2449 2011-07-23 Peter Clifton * pcjc2 AT cam dot ac dot uk *
2451 * src/search.c: Allow editing of ordinary text objects when element
2452 names are hidden Closes-bug: lp-810678
2454 2011-07-19 Andrew Poelstra * asp11 AT sfu dot ca *
2456 * src/hid/gtk/gui-netlist-window.c: Fix crash in netlist window
2457 caused by heirarchical netlists See http://archives.seul.org/geda/user/Jul-2011/msg00133.html
2459 2011-07-12 Andrew Poelstra * asp11 AT sfu dot ca *
2461 * src/hid/gtk/gui-top-window.c: Remove special grid-change handling
2464 2011-07-03 Andrew Poelstra * asp11 AT sfu dot ca *
2466 * src/hid/lesstif/dialogs.c, src/hid/lesstif/main.c,
2467 src/hid/lesstif/menu.c: Convert lesstif hid to use pcb-printf Should be no user-visible changes, except this bug: Closes-bug:
2470 2011-07-03 Andrew Poelstra * asp11 AT sfu dot ca *
2472 * src/pcb-printf.c: Add support for + and .* subspecifiers in
2475 2011-07-03 Andrew Poelstra * asp11 AT sfu dot ca *
2477 * src/hid/lesstif/main.c: Clean up coords_to_widget() in
2478 lesstif/main.c The coords_to_widget() function is used in exactly two places, for
2479 different purposes. To differentiate between the two uses, the
2480 ``state'' parameter is set to -1. The parameter is confusing enough without overloading it in this
2481 way. Therefore I have split the function into two: mark_delta_to_widget cursor_pos_to_widget Further, I have converted the code inside the functions to use
2482 g_printf_strdup instead of a fixed buffer. The functions should both
2483 be easier to read now than the original. There is one small change to user-visible output, which I think is
2484 justified: if you have a very small metric grid (<= 5um), the
2485 mark_delta output now uses .3f for both cartesian and radial
2486 display. Before it would use .3f for cartesian, .2f for radial.
2488 2011-07-01 Andrew Poelstra * asp11 AT sfu dot ca *
2490 * src/hid/gtk/gtkhid-main.c, src/hid/gtk/gui-dialog-size.c,
2491 src/hid/gtk/gui-misc.c, src/hid/gtk/gui-top-window.c: Convert gtk
2492 gui to use pcb-printf There should be no user-visible changes. Note that as long as base units are cmils, the .9999 bug in the
2493 cursor status is back. This is not a problem with smaller base units
2494 (I am using 17nm and all is okay.) Note also that the report dialogs are entirely based on report.c, so
2495 that is not part of this commit.
2497 2011-06-29 Andrew Poelstra * asp11 AT sfu dot ca *
2499 * src/hid/ps/eps.c, src/hid/ps/ps.c: Convert ps/eps/lpr HID's to use
2500 pcb-printf The postscript HID now uses pcb-printf to output all units as inches
2501 rather than cmils; therefore the default scale is now 1:1 rather
2502 than 1:10000. Therefore there will be a change in raw ps output but
2503 not in printed output. As inches are output with 5 digits after the decimal point, there
2504 will be no loss in precision, though in future this will be easy to
2505 increase. Also, minor code cleanups in ps.c to reduce global state and make
2506 global variables more visible.
2508 2011-06-28 Andrew Poelstra * asp11 AT sfu dot ca *
2510 * src/pcb-printf.c: Make pcb_fprintf ignore NULL file handle There is a lot of code in the HID's that looks like if (f != NULL) fprintf (f, "..."); I have moved the NULL check inside pcb-printf to remove this
2511 repetition/potential mistake.
2513 2011-06-26 Andrew Poelstra * asp11 AT sfu dot ca *
2515 * src/file.c: Make sure scale/direction are not output as measures
2518 2011-06-25 Andrew Poelstra * asp11 AT sfu dot ca *
2520 * src/report.c: Fix typo in unplated hole output in report.c
2522 2011-06-22 Andrew Poelstra * asp11 AT sfu dot ca *
2524 * src/toporouter.c: Convert toporouter trace code to use pcb-printf There is still a fair amount of trace code outputting measurements
2525 that are floating-point values. I left these alone since they will
2526 work independently of the actual type of BDimension. Everything should still be output in base units.
2528 2011-06-21 Andrew Poelstra * asp11 AT sfu dot ca *
2530 * src/polygon.c, src/polygon1.c: Convert polygon and polygon1.c
2531 debug code to use pcb-printf
2533 2011-06-21 Andrew Poelstra * asp11 AT sfu dot ca *
2535 * src/puller.c: Convert puller.c trace code to use pcb-printf Minor changes to trace output (addition of parens, mainly). Should
2536 be no user-visible output. No longer assumes BDimension == int.
2538 2011-06-21 Andrew Poelstra * asp11 AT sfu dot ca *
2540 * src/djopt.c: Convert djopt.c to use pcb-printf No change in user-visible output. Debug output is slightly changed since pcb-printf likes to put
2541 parens around tuples, so "%d,%d" is now effectively "(%d, %d)".
2542 Debug output is all base units, so the numbers will not change until
2543 the base unit size is changed.
2545 2011-06-21 Andrew Poelstra * asp11 AT sfu dot ca *
2547 * src/autoroute.c: Convert autoroute.c debug code to use pcb-printf Should be no change in output. Only change is that we no longer
2548 assume BDimension == int.
2550 2011-06-21 Andrew Poelstra * asp11 AT sfu dot ca *
2552 * src/action.c: Change action.c *WARN* lines to use pcb-printf Now instead of outputting unsuffixed cmils, warnings about
2553 locked/unnamed elements will refer to the part's position in either
2554 mm or mil, with an appropriate suffix. Non-warning-related output is unchanged.
2556 2011-06-21 Andrew Poelstra * asp11 AT sfu dot ca *
2558 * src/file.c: Convert file.c to use pcb-printf for cmil output file.c now uses pcb-printf, though in a limited way: everything is
2559 still output in unsuffixed cmils, though this is now independent of
2560 pcb's internal unit size. I have also removed the old-style output for symbols. Aside from that, everything should be the same. Any other change in
2561 output, or file format incompatibility of any kind, is a bug.
2563 2011-06-21 Andrew Poelstra * asp11 AT sfu dot ca *
2565 * src/pcb-printf.c, src/pcb-printf.h: Add # subspecifier to
2566 pcb-printf to prevent scaling for debug output
2568 2011-06-21 Andrew Poelstra * asp11 AT sfu dot ca *
2570 * src/puller.c: Convert puller.c to use Distance() intead of its own
2573 2011-06-21 Andrew Poelstra * asp11 AT sfu dot ca *
2575 * src/pcb-printf.c, src/pcb-printf.h: Add pcb_printf to pcb_*printf
2578 2011-06-19 Krzysztof Kościuszkiewicz * k dot kosciuszkiewicz AT gmail dot com *
2580 * doc/Makefile.am: doc: do not distribute dvi files DVI files cannot be generated without LaTeX, and since commit
2581 3afdb7efdaf6cc8094cc6143269e7df519183197 only pdfLaTeX is supported.
2583 2011-06-19 Andrew Poelstra * asp11 AT sfu dot ca *
2585 * src/hid/lesstif/menu.c: Allow 1...9 and Ctrl+1...9 accellerators
2586 for silk/rats in lesstif
2588 2011-06-19 Levente Kovacs * leventelist AT gmail dot com *
2590 * src/find.c, src/global.h: gEDA-user: skpi_drc patch On Fri, 17 Jun 2011 17:30:22 -0400 DJ Delorie * dj AT delorie dot
2591 com * wrote: > You want the (already global) AttributeGet() function. > >
2592 l->no_drc = AttributeGet (l, "PCB::skip-drc") != NULL; > > This does
2593 assume that the attribute has *some* value, even if the > value is
2594 the empty string. Thanks for pointing this out. Attached is the new patch. Levente -- Levente Kovacs http://levente.logonex.eu
2596 2011-06-20 DJ Delorie * dj AT delorie dot com *
2598 * src/hid/lesstif/main.c: Lesstif: ignore crosshair changes before
2601 2011-06-19 Andrew Poelstra * asp11 AT sfu dot ca *
2603 * src/hid/gtk/gui-top-window.c: Allow 1..9 accelerator keys to be
2604 applied to non-copper layers in gtk Closes-bug lp-699327
2606 2011-06-19 Andrew Poelstra * asp11 AT sfu dot ca *
2608 * src/report.c: Change report.c to use pcb-printf Right now there should be no change in the output from report.c;
2609 this is essentially just a code cleanup. The prec/UNIT nastiness is
2610 cleaned up -- precision is handled by the defaults in pcb-printf (.2
2611 for mil, .4 for mm, same as before) and unit selection is done with
2612 the %m+ specifier. It's easy now to expand to allow auto-scaling or even automatic
2613 selection of metric/imperial based on sig. figs., but I've played
2614 around with this and it looks like mixing units is confusing and
2615 hard-to-read, so we're sticking with just one of mm/mil for now.
2617 2011-06-19 Andrew Poelstra * asp11 AT sfu dot ca *
2619 * src/pcb-printf.c, src/pcb-printf.h: Add %m+ specifier to
2620 pcb-printf As long as our base units are cmils, allowing pcb-printf to guess
2621 the most natural units for displaying measures is a bad idea -- it
2622 cannot reliably count significant figures for many values. The
2623 result, for example, in report.c, is inconsistent and confusing
2624 dialogs with a mix of metric and imperial measurements. The %m+ specifier is used to force pcb-printf to only use certain
2625 units; in this case, the user's gui setting of metric/imperial.
2627 2011-06-19 Andrew Poelstra * asp11 AT sfu dot ca *
2629 * src/misc.c, src/misc.h: Add Distance() function to avoid overflow
2630 with sqrt(x*x + y*y)
2632 2011-06-19 Andrew Poelstra * asp11 AT sfu dot ca *
2634 * src/move.c: Fix typo (Polygon++ ==> PolygonN++) in src/move.c Closes-bug: lp-796059
2636 2011-06-19 Andrew Poelstra * asp11 AT sfu dot ca *
2638 * src/hid/gerber/gerber.c: Set file pointer to NULL after closing in
2639 gerber.c Closes-bug: lp-795734 When cleaning up the gerber HID, I had changed the file pointer used
2640 in maybe_close_f from a global to a (local) argument -- which made
2641 the line ``f = NULL'' effectively a no-op. However, the global variable f does need to be set to NULL for the
2642 code to recognize that the file is closed; otherwise it tries to
2643 keep using the (now invalid) file handle, causing crashes whenever
2644 the gerber HID is used more than once. This is now done after every call to maybe_close_f(), rather than
2645 depending on the function itself to have side effects.
2647 2011-06-17 DJ Delorie * dj AT delorie dot com *
2649 * src/hid/png/png.c: Check for empty layers in photo mode Now that the default stackup is for six layer boards, the PNG photo
2650 mode output needs to check to see if the user has used the inner
2651 layers, and automatically adapt - so that a two layer board *looks*
2652 like a two-layer board.
2654 2011-06-17 Gabriel Paubert * paubert AT iram dot es *
2656 * src/hid/gerber/gerber.c,
2657 tests/golden/hid_gerber3/arcs.plated-drill.cnc: Fix printf specifier
2658 for gerber drill output
2660 2011-06-16 Andrew Poelstra * asp11 AT sfu dot ca *
2662 * configure.ac, tests/golden/Makefile.am,
2663 tests/golden/hid_gerber3/Makefile.am,
2664 tests/golden/hid_gerber3/arcs.bottom.gbr,
2665 tests/golden/hid_gerber3/arcs.fab.gbr,
2666 tests/golden/hid_gerber3/arcs.group1.gbr,
2667 tests/golden/hid_gerber3/arcs.group4.gbr,
2668 tests/golden/hid_gerber3/arcs.plated-drill.cnc,
2669 tests/golden/hid_gerber3/arcs.top.gbr, tests/inputs/Makefile.am,
2670 tests/inputs/gerber_arcs.pcb, tests/tests.list: Add hid_gerber3 test
2671 to check arc rendering
2673 2011-06-16 Andrew Poelstra * asp11 AT sfu dot ca *
2675 * src/hid/gerber/gerber.c: Re-insert casts to unit conversion macros
2678 2011-06-12 Andrew Poelstra * asp11 AT sfu dot ca *
2680 * src/hid/gerber/gerber.c: Convert gerber hid to use pcb-printf
2682 2011-06-12 Andrew Poelstra * asp11 AT sfu dot ca *
2684 * src/hid/gcode/gcode.c: Convert gcode hid to use pcb-printf
2686 2011-06-12 Andrew Poelstra * asp11 AT sfu dot ca *
2688 * src/hid/bom/bom.c: Convert BOM hid to use pcb-printf
2690 2011-06-12 Andrew Poelstra * asp11 AT sfu dot ca *
2692 * src/pcb-printf.c, src/pcb-printf.h: Correct handling of %.*f in
2693 pcb-printf, remove from known issues
2695 2011-06-12 Andrew Poelstra * asp11 AT sfu dot ca *
2697 * src/hid/batch/batch.c: Convert batch HID to use pcb-printf
2699 2011-06-11 Andrew Poelstra * asp11 AT sfu dot ca *
2701 * src/Makefile.am, src/pcb-printf.c, src/pcb-printf.h: Add
2702 pcb-printf.c to allow custom specifiers for unit output From the header: /* This file defines a wrapper around sprintf, that * defines new specifiers that take pcb BDimension * objects as input. * * The new specifiers are: * %mm output a measure in mm * %mM output a measure in scaled (mm/um) metric * %ml output a measure in mil * %mL output a measure in scaled (mil/in) imperial * %ms output a measure in most natural mm/mil units * %mS output a measure in most natural scaled units * %md output a pair of measures in most natural mm/mil units * %mD output a pair of measures in most natural scaled units * %m3 output 3 measures in most natural scaled units * ... * %m9 output 9 measures in most natural scaled units * %m* output a measure with unit given as an additional * const char* parameter * %mr output a measure in a unit readable by parse_l.l * (this will always append a unit suffix) * * These accept the usual printf modifiers for %f, * as well as the additional modifier $ which is * used to output a unit suffix after the measure. * * KNOWN ISSUES: * No support for %zu size_t printf spec * No support for .* subspecifier for pcb specs */
2704 2011-06-09 DJ Delorie * dj AT delorie dot com *
2706 * globalconst.h, src/buffer.c, src/global.h, src/parse_y.y: Fix
2707 shift/reduce conflicts Closes-bug: lp-794743 I moved the interpretation of what "measurement" means even further
2708 up the heirarchy, by storing the original integer part as well as
2709 the units in a structure, and applying the new/old/unitless meanings
2710 where they're used. This way, there's no conflicts between a number
2711 which is a measurement, and a number which is a flag or mask, for
2712 the old formats that differ only in the number of parameters. I also cleaned up the parser rules for "zero or more" type lists, to
2713 remove most of the remaining conflicts. There's still one at the
2714 toplevel because we try to parse different types of files with the
2715 same parser. Lastly, the symbol rules were combined into a "symbol head" rule
2716 with a common "symbol body" rule. As a side effect, we can now reliably use units on old-style formats
2717 again, since the *100 scale factor is only applied if the units are
2720 2011-06-06 Andrew Poelstra * asp11 AT sfu dot ca *
2722 * src/autoroute.c, src/macro.h: Remove memory allocation from
2723 src/macro.h When we started using GLists for various objects, we also changed
2724 the looping macros to allocate copies of the list in order to avoid
2725 problems with list integrity in case items were removed during the
2726 iteration. However, this caused memory leaks whenever there was an early return
2727 from the middle of the list. Bug lp-792139 shows pcb using over 2Gb
2728 of memory and crashing when optimizing rats on a large board. This patch saves the next pointer before the loop body, rather than
2729 allocating a whole new list, to handle element deletions. Closes-bug: lp-792139
2731 2011-06-01 Krzysztof Kościuszkiewicz * k dot kosciuszkiewicz AT gmail dot com *
2733 * configure.ac, doc/Makefile.am, doc/gs/Makefile.inc: doc: use
2734 pdflatex instead of latex
2736 2011-06-01 Krzysztof Kościuszkiewicz * k dot kosciuszkiewicz AT gmail dot com *
2738 * doc/Makefile.am, doc/gs/Makefile.inc: doc: skip generation of GIF
2741 2011-06-04 Andrew Poelstra * asp11 AT sfu dot ca *
2743 * src/file.h, src/parse_l.l, src/parse_y.y: Add support for reading
2744 unit suffixes in parser Bumped PCB_FILE_VERSION up to 20110703. Removed old unit-reading code from parse_l.l since it was missing
2745 several units that we plan to support, and the scaling was backward
2746 for non-base units. Also, we now read all numbers as doubles, except those that need
2747 integers (array indices and flags, mainly). All measurements are
2748 round()ed to ints, after scaling, since that's what BDimension is
2749 and we don't want anomalies. The old NUMBER and FLOAT terminals in parse_y have been replaced by: 1. INTEGER - an integer, unscaled 2. number - floating or integer, unscaled 3. measure - a (possibly suffixed) measurement, with non-suffixed measurements read in cmils 4. oldmeasue - non-suffixed measurement, read in mils One exception is the PolyArea[] field. This is still read in cmil^2
2750 until we figure out what to do with it. This way the parser works independently of PCB's internal base
2751 units, and supports umil, cmil, mil, in, nm, um, mm, m and km unit
2752 suffixes. The parsing code should also be clearer now since not
2753 everything is NUMBER, with scale factors handled after-the-fact with
2754 /100's or in the lexer. Additionally, we now allow floating-point values for all
2755 measurements (even old-style mil fields), and pcb will allow spaces
2756 between measurements and their suffixes. Actually using these
2757 ``features'' will probably break tools that read .pcb files, though.
2759 2011-05-27 Felix Ruoff * Felix AT posaunenmission dot de *
2761 * doc/pcb.texi: Replace @extend with @noindent in docu-source If the @extend keyword is used to remove an intentation, the text
2762 will have a linebreak, where the source has one. If @noindent is
2763 used instead, the lines will be breaked as in normal paragraphs.
2765 2011-05-25 Felix Ruoff * Felix AT posaunenmission dot de *
2767 * src/hid/gtk/gtkhid-main.c: hid/gtk: Fix docu for 'ImportGUI()'
2769 2011-05-27 Felix Ruoff * Felix AT posaunenmission dot de *
2771 * doc/pcb.texi: Docu: Remove incomplete irritating sentence
2773 2011-05-31 Felix Ruoff * Felix AT posaunenmission dot de *
2775 * doc/pcb.texi: Remove repeated word in documentation
2777 2011-05-17 Alberto Maccioni * alberto dot maccioni AT gmail dot com *
2779 * doc/Makefile.am, doc/gcode.pcb, doc/gcode_control_img.eps,
2780 doc/gcode_tool_path.eps, doc/pcb.texi: Add documentation for G-Code
2781 export GUI This patch contains the documentation changes from lp:699476. It
2782 adds a new manual section on exporters and documents the gcode
2783 exporter. Sample pcb file is added with control image and the
2784 resulting toolpath. Reviewed-by: Felix Ruoff * Felix AT posaunenmission dot de *
2785 Reviewed-by: Krzysztof Kościuszkiewicz * k dot kosciuszkiewicz AT
2786 gmail dot com * Closes-bug: lp-699476
2788 2011-05-24 Andrew Poelstra * asp11 AT sfu dot ca *
2790 * src/hid/gerber/gerber.c: gEDA-dev:
2791 gerber-cleanup-0006-Change-a-couple-more-0-s-to-NULL-s.patch
2793 2011-05-24 Andrew Poelstra * asp11 AT sfu dot ca *
2795 * globalconst.h, src/hid/gerber/gerber.c: gEDA-dev:
2797 gerber-cleanup-0005-Remove-old-now-unused-aperture-structures-functions.patch
2799 2011-05-24 Andrew Poelstra * asp11 AT sfu dot ca *
2801 * src/hid/gerber/gerber.c: gEDA-dev:
2803 gerber-cleanup-0004-Use-new-aperture-functions-output-100-equal-to-origi.patch
2805 2011-05-24 Andrew Poelstra * asp11 AT sfu dot ca *
2807 * src/hid/gerber/gerber.c: gEDA-dev:
2809 gerber-cleanup-0003-Add-new-aperture-functions-but-don-t-use-them.patch
2811 2011-05-24 Andrew Poelstra * asp11 AT sfu dot ca *
2813 * src/hid/gerber/gerber.c: gEDA-dev:
2815 gerber-cleanup-0002-Remove-global-variable-dependence-from-maybe_close-a.patch
2817 2011-05-24 Andrew Poelstra * asp11 AT sfu dot ca *
2819 * src/hid/gerber/gerber.c: gEDA-dev:
2820 gerber-cleanup-0001-Remove-unused-Aperture-structure.patch
2822 2011-05-25 Felix Ruoff * Felix AT posaunenmission dot de *
2824 * src/hid/gtk/gui-output-events.c: hid/gtk: Fix tooltips Closes-bug: lp-786733
2826 2011-05-25 Felix Ruoff * Felix AT posaunenmission dot de *
2828 * doc/pcb.texi, src/global.h: gEDA-user: PCB: option dumpmenu
2829 missing A patch to remove this from documentation (and one variable from the
2830 source) is appended. Kind regards, Felix Am 25.05.2011 19:11, schrieb DJ Delorie: > I think that option is a
2831 leftover from my initial HID conversion. > > It would have been
2832 lesstif-specific anyway, the gtk hid has its own > menu file
2833 (gpcb-menu.res, same locations) > > >
2834 _______________________________________________ > geda-user mailing
2835 list > geda-user AT moria dot seul dot org >
2836 http://www.seul.org/cgi-bin/mailman/listinfo/geda-user > >From 94458c63ae97135964c41f4966b9cdf65ee4ec27 Mon Sep 17 00:00:00
2837 2001 From: Felix Ruoff * Felix AT posaunenmission dot de * Date:
2838 Wed, 25 May 2011 14:36:34 +0200 Subject: [PATCH 50/50] Remove
2839 commandline-option 'dumpmenu' from docu and source
2841 2011-05-23 Andrew Poelstra * asp11 AT sfu dot ca *
2843 * src/hid/gerber/gerber.c: gEDA-dev: Gerber hid code cleanup New patch is as follows (sizeof and casts fixed):
2845 2010-03-18 Newell Jensen * pillar2012 AT gmail dot com *
2847 * src/hid/png/png.c: hid/png: draw zero-length arcs properly on
2848 export Closes-bug: lp-699314 Reviewed-by: Patrick Bernaud * patrickb AT
2849 chez dot com * Reviewed-by: Krzysztof Kościuszkiewicz * k dot
2850 kosciuszkiewicz AT gmail dot com *
2852 2008-01-04 Wojciech Kazubski * wk0 AT o2 dot pl *
2854 * lib/geda.inc, lib/misc.inc: add more crystal footprints to m4
2855 library Currently m4 symbols contain one footprint for crystal holder
2856 (HC49), wich is not accurate, pin spacing is a bit too big and the
2857 outline is too small. This patch adds several m4 crystal holder footprints of different
2858 size, 2 or 3 pin, both standing and laying. Closes-bug: lp-699440 Reviewed-by: Bert Timmerman * bert dot
2859 timmerman AT xs4all dot nl * Reviewed-by: Krzysztof
2860 Kościuszkiewicz * k dot kosciuszkiewicz AT gmail dot com *
2862 2011-01-02 Felix Ruoff * Felix AT posaunenmission dot de *
2864 * src/hid/gtk/gtkhid-main.c, src/hid/gtk/gui-dialog.c: hid/gtk: use
2865 GTK dialog for confirming file-overwrite Since GTK 2.8 GTK provides an dialog for confirming
2866 file-overwriting. This dialog will be introduced by this patch.
2867 Needless code which was used for this will be removed. Closes-bug: lp-699508 Reviewed-by: Krzysztof Kościuszkiewicz * k
2868 dot kosciuszkiewicz AT gmail dot com *
2870 2011-01-09 Felix Ruoff * Felix AT posaunenmission dot de *
2872 * doc/refcard.tex: Fix refcard (missing footnote and add rotate
2873 buffer) The shortcut 'shift-F7' for rotating paste buffer by 90 degree is
2874 added as suggested in bug LP-699391 (formerly sf-1112590). Fix footnote used in the tabular environment. Closes-bug: lp-699391 Reviewed-by: Krzysztof Kościuszkiewicz * k
2875 dot kosciuszkiewicz AT gmail dot com *
2877 2011-05-17 Felix Ruoff * Felix AT posaunenmission dot de *
2879 * doc/pcb.texi: Fix doku for invisibleObjectsColor (color) Closes-bug: lp-699306
2881 2011-04-24 Felix Ruoff * Felix AT posaunenmission dot de *
2883 * src/gpcb-menu.res: Fix warning for gtk describing menuitems With GTK+ there are no 'describing menuitems' avaiable (the
2884 out-grayed items in lesstif-GUI). For this reason, the items in
2885 gpcb-menu.res are ignored and a warning is displayed at the
2886 message-log. This patch fixes this by removing these describing menuitems for the
2887 gtk-GUI and renamed the described items to a more explaining label.
2888 It also added mnemonics for these menu-items. Closes-bug: lp-769815
2890 2010-12-28 Felix Ruoff * Felix AT posaunenmission dot de *
2892 * src/hid/gtk/gui-output-events.c: hid/gtk: Cleanup conditional code
2893 because GTK 2.12 is required now Closes-bug: lp-699510
2895 2011-05-20 Colin D Bennett * colin AT gibibit dot com *
2897 * src/draw.c: Fix typo exporting plated vs unplated drills. Closes-bug: lp-785463
2899 2011-05-20 DJ Delorie * dj AT delorie dot com *
2901 * src/hid/png/png.c: Don't register the PNG hid if there are no file
2902 formats to use. In some cases, the GD library may not have any usable image formats
2903 for us to use, resulting in an empty filetypes[] table. Rather than
2904 trying to accomodate an empty table during export, it's easier (and
2905 perhaps better) to simply not register the PNG hid in that case.
2906 Thus, the exporter is simply not available when the table is empty.
2908 2011-03-23 Felix Ruoff * Felix AT posaunenmission dot de *
2910 * src/file.c: Ignore *.pcb files on generating library Closes-bug: lp-699261
2912 2011-05-20 DJ Delorie * dj AT delorie dot com *
2914 * src/hid/common/flags.c, src/hid/gcode/gcode.c,
2915 src/hid/gerber/gerber.c, src/hid/hidint.h, src/hid/nelma/nelma.c,
2916 src/hid/ps/ps.c: Add option to specify gerber output file style. --name-style <fixed|single|first|eagle> Naming style for individual gerber files Default is "fixed" which uses a fixed name (foo.top.gbr) for each
2917 layer. "single" uses the layer's name if there's exactly one layer
2918 in that group, else the fixed name. "first" always uses the layer
2919 name, choosing the first layer in each group for the name. "eagle"
2920 mode adds a three-character suffix instead of a separate type and
2921 extension. Affects-bug: lp-700877
2923 2011-05-19 DJ Delorie * dj AT delorie dot com *
2925 * src/move.c: Avoid top/bottom issues with layer deletion. PCB does not currently support boards without a top or bottom, so
2926 prevent the user from deleting them (they'd need to reassign the
2927 top/bottom groups first).
2929 2011-05-19 DJ Delorie * dj AT delorie dot com *
2931 * src/draw.c: Fix Mark size math wrt unplated holes. When computing the Mark size, check for the first pin being a hole
2932 and use the drill size rather than the copper size.
2934 2011-05-19 Peter Clifton * pcjc2 AT cam dot ac dot uk *
2936 * src/buffer.c: buffer.c: Update polygon r-tree when adding a
2937 polygon to the buffer. This resulted in a crash when rotating a buffer containing a
2938 polygon, as the polygon r-tree associated with the buffer was NULL
2939 despite the polygon count being non-zero. Reported-by: Gabriel Paubert * paubert AT iram dot es *
2941 2011-05-18 Peter Clifton * pcjc2 AT cam dot ac dot uk *
2943 * src/move.c: move.c: Adjust the object counters when moving objects
2944 between layers This fixes a crash introduced by commit
2945 2ce35292b9e96da38cb56878005aba20891689eb, "Convert board objects to
2946 GLists of g_slice allocated memory" It doesn't fix entirity of the defect reported in that bug, but it
2947 restores the prior behaviour where PCB would hang, not segfault. Reported-by: Colin Bennett * colin AT gibibit dot com * Affects-bug: lp-783640
2949 2011-05-17 Gabriel Paubert * paubert AT iram dot es *
2951 * src/hid/gtk/gui-output-events.c, src/hid/lesstif/menu.c: Lesstif +
2952 GTK HIDs: Ignore ISO Level3 shift modifier key This key press is found on some international keyboards (e.g.
2953 Spanish). If we don't ignore it, PCB complains about the key not
2954 being tied to an action when it is pressed. From the committer, Peter Clifton * pcjc2 AT cam dot ac dot uk *
2955 ... Thanks to Gabriel for reporting this and providing the patch
2956 for Lesstif. I have updated the patch to make the equivalent change
2957 to the GTK HID as well. Signed-off-By: Peter Clifton * pcjc2 AT cam dot ac dot uk *
2959 2011-05-17 Peter Clifton * pcjc2 AT cam dot ac dot uk *
2961 * src/buffer.c: buffer.c: Fix crash in SmashBufferElement The element is allocated with g_slice_new, so must be free'd with
2962 g_slice_free. Broken since commit 2ce35292b9e96da38cb56878005aba20891689eb: Convert board objects to GLists of g_slice allocated memory
2964 2011-05-16 Peter Clifton * pcjc2 AT cam dot ac dot uk *
2966 * src/rtree.c, src/rtree.h: rtree.c: Remove unused r_substitute()
2967 function This function was used to update r-trees when they contained objects
2968 changed memory location. Since we no longer shuffle objects around
2969 when we delete them, this function is no longer required.
2971 2011-05-13 Peter Clifton * pcjc2 AT cam dot ac dot uk *
2973 * src/hid/gtk/gtkhid-gl.c: GTK/GL: Draw pretty translucent polygons
2974 in thindraw-poly mode Eventually we need some way to configure this.. it might be nice in
2975 non-thindraw mode too. If people want thin-draw to gain extra speed,
2976 rather than have it actually slower (due to fill + outline), then a
2977 way to turn it off would also be useful.
2979 2011-05-14 Peter Clifton * pcjc2 AT cam dot ac dot uk *
2981 * src/hid/gtk/gtkhid-gl.c: GTK/GL: Add facility to set an alpha
2982 multiplier for the current rendering
2984 2011-05-14 Peter Clifton * pcjc2 AT cam dot ac dot uk *
2986 * src/hid/gtk/gtkhid-gl.c: GTK/GL: Refactor alpha handling Replace "alpha_mult" in set_gl_color_for_gc () with just explicitly
2987 calling this the "a" (alpha) value of the colour in question.
2989 2011-05-14 Peter Clifton * pcjc2 AT cam dot ac dot uk *
2991 * src/hid/gtk/gtkhid-gl.c: GTK/GL: Refactor GL colour setup handling
2993 2011-05-14 Peter Clifton * pcjc2 AT cam dot ac dot uk *
2995 * src/hid/gtk/gtkhid-gdk.c, src/hid/gtk/gtkhid-gl.c: hid/gtk: Remove
2996 unused gc->erase parameter from GDK and GL renderers
2998 2011-05-14 Peter Clifton * pcjc2 AT cam dot ac dot uk *
3000 * src/hid/gtk/gtkhid-gdk.c, src/hid/gtk/gtkhid-gl.c,
3001 src/hid/gtk/gtkhid-main.c, src/hid/gtk/gui.h: hid/gtk: Setup custom
3002 polygon renderer for the GL HID only
3004 2011-05-13 Peter Clifton * pcjc2 AT cam dot ac dot uk *
3006 * src/hid/gtk/gtkhid-gl.c: gtk/gl: Don't set "magenta" for a NULL
3007 color passed to ghid_set_color The code has a strdup (name), followed by a test for name == NULL.
3008 If name _were_ ever NULL, the strdup would crash, so we can remove
3011 2011-05-13 Peter Clifton * pcjc2 AT cam dot ac dot uk *
3013 * src/hid/common/hidgl.c: hid/common/hidgl.c: Use tags on circular
3014 contours to render them faster This lets us avoid the polygon tesselator for circular contours, and
3015 lets us render a different number of vertices in our appoximation
3016 depending upon zoom level.
3018 2011-05-13 Peter Clifton * pcjc2 AT cam dot ac dot uk *
3020 * src/hid/common/hidgl.c: hid/common/hidgl.c: Fix vertex array state
3021 preservation Fixes a bug with crosshair attached objects not being visible when
3022 the grid was rendered. Reported-by: Colin D Bennett * colin AT gibibit dot com *
3023 Closes-bug: lp-780958
3025 2011-05-13 Peter Clifton * pcjc2 AT cam dot ac dot uk *
3027 * src/Makefile.am, src/hid/batch/batch.c, src/hid/bom/bom.c,
3028 src/hid/common/hidinit.c, src/hid/common/hidnogui.c,
3029 src/hid/common/hidnogui.h, src/hid/gcode/gcode.c,
3030 src/hid/gerber/gerber.c, src/hid/gtk/gtkhid-main.c,
3031 src/hid/hidint.h, src/hid/lesstif/main.c, src/hid/lpr/lpr.c,
3032 src/hid/nelma/nelma.c, src/hid/png/png.c, src/hid/ps/eps.c,
3033 src/hid/ps/ps.c: Refactor application of the default hidnogui HID
3034 handlers. Replace usage of apply_default_hid() just prior to registering a HID
3035 with an early call to the new common_nogui_init() function which
3036 pre- applies the defaults, rather than post-replacing NULL handlers. As this was the last user of the apply_default_hid() function,
3037 remove it. Good riddance to yet another place which had to be
3038 updated every time a new HID member was added. The default nogui HID is now constructed explicitly by a call to
3039 nogui_hid_get_hid (), which is called from hid_init(). This is
3040 different to the other HIDs, as the nogui "hid" is never explicitly
3043 2011-05-13 Peter Clifton * pcjc2 AT cam dot ac dot uk *
3045 * src/hid/batch/batch.c: hid/batch: #include
3046 "hid/common/draw_helpers.h" which was missing Fixes a compiler warning about an implicitly declared function.
3048 2011-05-13 Peter Clifton * pcjc2 AT cam dot ac dot uk *
3050 * src/hid/lpr/lpr.c, src/hid/ps/ps.c, src/hid/ps/ps.h: hid/ps:
3051 Provide helper function to fill in HID members useful to other HIDs This avoids setting up the drawing routines of the lpr HID with
3052 apply_default_hid, which is a little opaque.
3054 2011-05-13 Peter Clifton * pcjc2 AT cam dot ac dot uk *
3056 * src/hid/common/hidinit.c: hid/common: Remove unused function
3057 hid_register_gui() GUIs are registered with the same API as exporter HIDs.
3059 2011-05-13 Peter Clifton * pcjc2 AT cam dot ac dot uk *
3061 * src/Makefile.am: src/Makefile.am: Use AM_CFLAGS instead of
3062 overriding CFLAGS directly
3064 2011-05-13 Peter Clifton * pcjc2 AT cam dot ac dot uk *
3066 * src/hid/gtk/gtkhid-main.c, src/hid/lesstif/main.c: Apply the
3067 default hidnogui HID to the GUIs as well. This saves them having to re-implement NOOP implementations for
3068 functions the "nogui" HID provides a non "CRASH;" implementation
3071 2011-05-09 Ineiev * ineiev AT users dot berlios dot de *
3073 * src/hid/batch/batch.c: fix batch gui
3075 2011-05-10 Peter Clifton * pcjc2 AT cam dot ac dot uk *
3077 * src/search.c: search.c: Don't allow selecting pads or pins of
3078 locked elements The locked flag test was mistakenly being applied ot the pad or pin
3079 its-self, not the parent element.
3081 2011-05-09 Peter Clifton * pcjc2 AT cam dot ac dot uk *
3083 * src/hid/gtk/gtkhid-gl.c: GTK/GL: Split out sub-compositing setup
3084 into a separate function.
3086 2011-05-08 Peter Clifton * pcjc2 AT cam dot ac dot uk *
3088 * src/hid/gtk/gtkhid-gl.c: GTK/GL: Make the silk layer translucent
3090 2011-05-05 Peter Clifton * pcjc2 AT cam dot ac dot uk *
3092 * src/hid/gtk/gtkhid-gl.c: GTK/GL: Sub-composite objects on each
3093 layer using the stencil buffer This avoids the highlight where translucent objects on a given layer
3094 are drawn over each other. It enables us to have a translucent silk
3095 screen layer and still be able to read the text.
3097 2011-05-08 Peter Clifton * pcjc2 AT cam dot ac dot uk *
3099 * src/draw.c, src/hid.h, src/hid/common/hidnogui.c: Add end_layer()
3100 function to HID API to mark the end of a layer's drawing This is going to be useful for the GTK/GL renderer to manage sub-
3101 compositing translucent objects within each layer.
3103 2011-05-05 Peter Clifton * pcjc2 AT cam dot ac dot uk *
3105 * src/hid/gtk/gtkhid-gl.c: hid/gtk: Enable transparent lines in GL
3108 2011-05-08 Peter Clifton * pcjc2 AT cam dot ac dot uk *
3110 * src/hid/common/hidgl.c, src/hid/common/hidgl.h,
3111 src/hid/gtk/gtkhid-gl.c: Manage stencil bitplanes so we don't have
3112 to clear them every time. Clearing the stencil buffer is a slow operation (especially on cards
3113 limited by fill rate (cough.. Intel.. cough), so the more clears we
3114 can avoid, the better.
3116 2011-05-08 Peter Clifton * pcjc2 AT cam dot ac dot uk *
3118 * src/hid/common/hidgl.c: hid/common/hidgl.c: Tidy up polygon
3119 contour tessleation Move the gluTessBeginPolygon and gluTessEndPolygon calls inside
3120 tesselate_contour, rather than duplicating it in each caller. Also, fix up some comments which were out of date or inaccurate.
3122 2011-05-08 Peter Clifton * pcjc2 AT cam dot ac dot uk *
3124 * src/hid.h, src/hid/common/draw_helpers.c,
3125 src/hid/common/hidnogui.c, src/hid/gerber/gerber.c,
3126 src/hid/png/png.c: HID: Remove "dicer" flag from HID structure. We don't pay any attention to this flag - always dicing the polygons
3127 in our common_fill_pcb_polygon routine. HIDs which don't want diced
3128 polygons implement their own hook for fill_pcb_polygon.
3130 2011-05-05 Peter Clifton * pcjc2 AT cam dot ac dot uk *
3132 * src/hid/common/hidgl.c, src/hid/common/hidgl.h,
3133 src/hid/gtk/gtkhid-gdk.c, src/hid/gtk/gtkhid-gl.c,
3134 src/hid/gtk/gtkhid-main.c, src/hid/gtk/gui.h: Add raw polygons
3135 support for the GTK+GL HID, bypassing the no-holes dicer Uses the OpenGL stencil buffer to make drawing polygons with holes
3136 faster. 1. Turn Stenciling on, updates to colour buffer off 2. Clear stencil buffer to 0 3. Paint polygon holes, setting those areas of the stencil buffer to
3137 1 4. Switch on stencil test (== 0), turn on updates to colour buffer 5. Paint outer polygon through areas of the stencil buffer still 0 6. Clear stencil buffer, switch off stencilling. Caveat: This function might throw up if it is used whilst drawing the mask,
3138 since that uses stenciling as well. We don't use polygons on the
3139 mask, so its not a a problem. (Mask cutouts for octagonal pins do
3142 2011-05-05 DJ Delorie * dj AT delorie dot com *
3144 * src/hid/lesstif/main.c: Don't prematurely dismiss the progress
3147 2011-05-05 DJ Delorie * dj AT delorie dot com *
3149 * src/hid/lesstif/main.c: Improve lesstif progress dialog. Closing the progress dialog cancels the operation. Add a sliding
3150 scale that shows progress. Make the dialog modal so you can't edit
3151 the pcb while autorouting. Fix event loop to handle all pending
3152 events and redraw. Fix elapsed time logic.
3154 2011-05-05 Peter Clifton * pcjc2 AT cam dot ac dot uk *
3156 * src/hid/gtk/gtkhid-main.c: hid/gtk: Don't auto-close progress
3157 dialog until commanded to We pass the cancel return value to our caller, but it is up to them
3158 to dismiss the progress dialog. Utilise the response_id to determine when the dialog has been closed
3159 or cancelled, rather than a separate stop_loop variable (which was a
3160 legacy from the blocking gtk_dialog_run() this code was based upon. Tidy up due to resulting simplifications.
3162 2011-05-05 Peter Clifton * pcjc2 AT cam dot ac dot uk *
3164 * src/hid/lesstif/main.c: hid/lesstif: Fix testing timeout value in
3165 lesstif_progress This looks like a typo, but was me testing different values of time
3166 interval between processing events.
3168 2011-05-04 Peter Clifton * pcjc2 AT cam dot ac dot uk *
3170 * src/hid/lesstif/main.c: hid/lesstif: Simple progress()
3171 implementation to present a cancel button Does not yet draw an actual progress bar, as I'm not familiar enough
3172 with coding for Lesstif.
3174 2011-05-05 Peter Clifton * pcjc2 AT cam dot ac dot uk *
3176 * src/autoroute.c: autoroute.c: When live-drawing, only emit one via
3177 per location I'd accidentally put the live-draw via in a place where it would
3178 emit one via for every layer group - causing warnings in PCB's log
3181 2011-05-04 Peter Clifton * pcjc2 AT cam dot ac dot uk *
3183 * src/hid/gtk/gui-library-window.c: hid/gtk: Fix crash in library
3184 window I missed a (GList *)->data dereference when converting to GList
3185 object storage. Unfortunately, the parameter in question was void *
3186 typed, so the compiler didn't notice my mistake.
3188 2011-05-03 Peter Clifton * pcjc2 AT cam dot ac dot uk *
3190 * src/autoroute.c: autoroute.c: Provide a progress update for the
3191 autorouter Provide a completion metric related to what pass the auto-router is
3192 processing, how many objects on its heap within a given pass it has
3193 processed, and how many sub-nets it has routed from the total. The progress isn't entirely linear, but the subdivision of process
3194 steps means it does at least march along without too many pauses. It is now possible to cancel the autorouting with a non-zero
3195 response code from the gui's progress dialog. Tested with the GTK HID, Lesstif doesn't yet have an implementation
3198 2011-05-03 Peter Clifton * pcjc2 AT cam dot ac dot uk *
3200 * src/hid/gtk/gtkhid-main.c: hid/gtk: Provide a simple progress
3201 dialog implementation
3203 2011-05-03 Peter Clifton * pcjc2 AT cam dot ac dot uk *
3205 * src/hid/gtk/gtkhid-gdk.c, src/hid/gtk/gtkhid-gl.c,
3206 src/hid/gtk/gui-top-window.c, src/hid/gtk/gui.h: Fix mesa crash on
3207 startup (for some mesa versions) I'm not sure why it crashed, but it seems that providing a realize
3208 handler which fiddles with the GL context solves it. The underlying
3209 problem appears to have been fixed in later mesa versions. Leaving this commit for the benefit users of broken mesa versions.
3211 2011-05-03 Peter Clifton * pcjc2 AT cam dot ac dot uk *
3213 * configure.ac: Make --enable-gl default when building the GTK HID Lets get this feature some testing for now - we may decide to revert
3214 the default before the next release, depending on how things
3217 2011-05-03 Peter Clifton * pcjc2 AT cam dot ac dot uk *
3219 * configure.ac, src/Makefile.am, src/hid/common/hidgl.c,
3220 src/hid/common/hidgl.h, src/hid/gtk/gtkhid-gl.c, src/hid/gtk/gui.h:
3221 hid/gtk: Drop in GL renderer - WOOT! Much of the generic GL drawing stuff lives in a new common helper,
3222 hid/common/hidgl.[ch]. Unavoidably, there is a lot of GUI specific
3223 setup and teardown code. There are probably still bits of code in hid/gtk/gtkhid-gl.c which
3224 could be moved to a shared place if / when other HIDs wish to use GL
3225 rendering. Currently only rat lines are drawn transparent, as we need to sub-
3226 composite each layer to avoid a confusing field of hightlights being
3227 drawn where line ends overlap. configure --enable-gl now checks for the required GL, glu and
3228 GtkGLEext. More good stuff to come soon! Credits: Algorithm to calculate number of segments to use in circular curve approximation suggested by DJ Delorie. Thanks to Krzysztof Kościuszkiewicz for testing and debugging some issues with the GL_SCISSOR_TEST being used. An small team of dedicated testers who have provided feedback, bug reports and encoragement throught the long development of this branch.
3230 2011-05-03 Andrew Poelstra * asp11 AT sfu dot ca *
3232 * src/hid/common/flags.c, src/hid/gtk/gtkhid-main.c,
3233 src/hid/lesstif/main.c, src/main.c, src/misc.c, src/misc.h,
3234 src/parse_y.y: Universal use of GetValue This is a patch to make all numeric code use GetValue, to unify
3235 parsing code and make sure everything uses the same units. Contained
3236 is almost a complete rewrite of GetValue to simplify code that uses
3237 funny units. Reviewed-by: Peter Clifton * pcjc2 AT cam dot ac dot uk * When committing the patch from Launchpad, I rebased it to apply with
3238 strcasecmp and strncasecmp changed to strcmp and strncmp, as changed
3239 by commit 31b7309764f2e4bd40141038c30f1f38309efb4a Affects-bug: lp-772027
3241 2011-05-03 Andrew Poelstra * asp11 AT sfu dot ca *
3243 * src/hid/gtk/gtkhid-main.c, src/hid/lesstif/main.c,
3244 src/hid/png/png.c, src/misc.c, src/parse_l.l, src/report.c: Add
3245 case-sensitivity to all unit-reading code Reviewed-by: Peter Clifton * pcjc2 AT cam dot ac dot uk * This breaks existing behaviour for any users using capitalised units
3246 in scripts, but as in general, units ARE case sensitive, we should
3247 not support anything other than their canonical names. Affects-bug: lp-772027
3249 2011-05-03 Peter Clifton * pcjc2 AT cam dot ac dot uk *
3251 * src/autoroute.c: autoroute.c: Simplify some long if statements In a couple of cases, almost all the processing logic was burried
3252 inside an if statement checking for validity of this processing
3253 pass. Re-organise to test for an invalid condition, then "continue;"
3254 the loop if that is hit. This reduces the nesting of some rather complex functions.
3256 2011-05-03 Peter Clifton * pcjc2 AT cam dot ac dot uk *
3258 * src/action.c: change.c: Fix drawing artaefacts when rotating the
3259 buffer In commit 0213e4791f9aa4008c8d06a48c377b338f6e1a43 converting
3260 {Hide,Restore}Crosshair calls to become notify_crosshair_changed, I
3261 mixed up two of the true / false parameters to to
3262 nofify_crosshair_changed. This caused the GUI to get out of sync undrawing and redrawing the
3263 crosshair attached objects around the change. Manually checking the diff from the offending commit, I don't see
3264 any other calls which were transposed incorrectly. Reported-by: DJ Delorie * dj AT delorie dot com *
3266 2011-05-02 Peter Clifton * pcjc2 AT cam dot ac dot uk *
3268 * src/hid/lesstif/main.c: hid/lesstif: Fix dropped crosshair
3269 artaefacts when dragging objects. It seems that the idle_proc redraw code assumed the crosshair was
3270 switched off upon entry, proceeding to redraw everything (and
3271 obliterate the crosshair in the process). The final show_crosshair
3272 (1) call only has any effect if the crosshair was notionally off
3273 before hand. As a quick work-around (you could probably do it with less flicker
3274 with a little more logic), ensure the crosshair is turned off just
3275 prior to redrawing the screen - so it will switch back on correctly
3278 2011-05-01 DJ Delorie * dj AT delorie dot com *
3280 * src/macro.h: Fix typo in new ELEMENTARC_LOOP macro. line -> arc
3282 2011-05-01 DJ Delorie * dj AT delorie dot com *
3284 * src/insert.c: Fix polygon clears on insert. Add the calls to update polygon clearances when a point is inserted
3287 2011-05-01 DJ Delorie * dj AT delorie dot com *
3289 * src/file.c, src/file.h: Make file version smarter. Restructure the FileVersion[] output to only output the actual
3290 needed version, in cases where a rarely used feature requires a new
3291 pcb. This avoids unnecessary backwards incompatibility.
3293 2011-05-01 Peter Clifton * pcjc2 AT cam dot ac dot uk *
3295 * src/hid/gtk/gtkhid-gdk.c: hid/gtk: Fix conversion from world to
3296 screen in ghid_invalidate_lr I accidentally muddled the Vx and Vy conversions routines for the
3297 right and top coordinates. In general, this resulted in the
3298 incorrect region being invalidated - manifesting as artaefacts on
3299 the the screen, such as when dragging objects around. Also drop the (double) cast.. having checked, Vx and Vy take integer
3300 arguments. I'm not sure why the rest of this file casts to double.
3302 2011-05-01 Peter Clifton * pcjc2 AT cam dot ac dot uk *
3304 * src/hid/gtk/gtkhid-gdk.c: hid/gtk: Rest clip region for bg_gc, as
3305 it is used for expose events. We set the clip region in the redraw_region() function to clip
3306 drawing to the area which we intend to repaint, but we did not clear
3307 the clip again. This caused expose events to be clipped to the last redraw area
3308 rather than the required damaged area.
3310 2011-05-01 Peter Clifton * pcjc2 AT cam dot ac dot uk *
3312 * src/hid/gtk/gtkhid-gdk.c: hid/gtk: Remove unused variable in
3315 2011-04-30 Peter Clifton * pcjc2 AT cam dot ac dot uk *
3317 * src/hid/lesstif/main.c: hid/lesstif: Remove unused variable in
3320 2011-04-30 Peter Clifton * pcjc2 AT cam dot ac dot uk *
3322 * src/mymem.c: mymem.c: Provide an optional implementation of
3323 g_list_free_full () This API was only added in GLib 2.28, and it is just a small
3324 convenience function. If an insufficient GLib version is found,
3325 provide our own implementation.
3327 2011-04-30 Peter Clifton * pcjc2 AT cam dot ac dot uk *
3329 * src/hid.h, src/hid/gtk/gtkhid-gdk.c, src/hid/lesstif/main.c:
3330 Remove live drawing parameters for HID->use_mask() These are no longer used by the autorouter, so lets clean the
3331 use_mask() interface to JUST deal with _masking_ from now on ;)
3333 2011-04-30 Peter Clifton * pcjc2 AT cam dot ac dot uk *
3335 * src/autoroute.c: autoroute.c: Utilise new HID interface for debug
3336 drawing This gives the HID an opportunity to refuse the autorouter's
3337 drawing. Both the GTK/GDK and Lesstif GUIs accept this drawing, so
3338 either should be suitable for use whilst debugging workings of the
3339 auto-router. The PCB+GL renderer (not yet landed) needs quite a lot of setup
3340 calls to be made before it can allow the core do draw, hence the
3341 need for this notification / permissioning.
3343 2011-04-30 Peter Clifton * pcjc2 AT cam dot ac dot uk *
3345 * src/autoroute.c: Fix livedraw to work with normal rendering APIs NB: This relies on the immutability of board object pointers, so
3346 must not be applied to older PCB code-bases which would often
3347 re-locate storage of board objects to keep them in a contiguous
3350 2011-04-30 Peter Clifton * pcjc2 AT cam dot ac dot uk *
3352 * src/action.c, src/autoroute.c, src/buffer.c, src/create.c,
3353 src/djopt.c, src/draw.c, src/file.c, src/find.c, src/fontmode.c,
3354 src/global.h, src/macro.h, src/move.c, src/mymem.c, src/mymem.h,
3355 src/puller.c, src/rats.c, src/remove.c, src/toporouter.c: Convert
3356 board objects to GLists of g_slice allocated memory This enables pointers for these objects to be immutable during their
3357 lifetime, which is a _huge_ benefit for some operations. Having otherwise was becoming VERY tiresome, and was a perenial
3358 source of bugs tripping up novice and experts of the codebase alike. Due to the risks associated with modifying the structure being
3359 iterated over, this patch makes the relevant *_LOOP macros iterate
3360 over a shallow copy of the underlying GList. This is slight overkill
3361 for many cases, but until we have identified which do not modify the
3362 data-structures it is wise to keep as we are.
3364 2011-04-30 Peter Clifton * pcjc2 AT cam dot ac dot uk *
3366 * src/puller.c: puller.c: Re-write parts to use hash tables to store
3367 stashed extra info This vastly simplifies some of the pointer arithmetic which was
3368 previously used to account for underlying location changes when
3369 objects moved. Having tested this, it produces different results than before
3370 application. This may be due to it zapping some underlying bug
3371 which has been removed in the patch, or perhaps more likely, that
3372 its slightly different iteration order over the lines and arcs (due
3373 to g_hash_table_foreach) will result in different pathologies being
3376 2011-04-30 Peter Clifton * pcjc2 AT cam dot ac dot uk *
3378 * src/djopt.c: djopt.c: Tidy up padcleaner() using loop macros
3380 2011-04-30 Peter Clifton * pcjc2 AT cam dot ac dot uk *
3382 * src/djopt.c: djopt.c: Tidy up element_name_for() by using loop
3385 2011-04-30 Peter Clifton * pcjc2 AT cam dot ac dot uk *
3387 * src/move.c: src/move.c: Gratuitous cosmetic changes Split from a future patch which ended up making these changes to
3388 help with consistency. Pre-patching here to avoid a huge delta when
3391 2011-04-30 Peter Clifton * pcjc2 AT cam dot ac dot uk *
3393 * src/buffer.c: src/buffer.c: More cosmetic changes
3395 2011-04-30 Peter Clifton * pcjc2 AT cam dot ac dot uk *
3397 * src/buffer.c: src/buffer.c: Gratuitous cosmetic changes Split from a future patch which ended up making these changes to
3398 help with consistency. Pre-patching here to avoid a huge delta when
3401 2011-04-30 Peter Clifton * pcjc2 AT cam dot ac dot uk *
3403 * src/remove.c: remove.c: Gratuitous cosmetic changes s/return (NULL)/return NULL/ Split from another patch where I just couldn't resist some tidying.
3405 2011-04-30 Peter Clifton * pcjc2 AT cam dot ac dot uk *
3407 * src/move.c, src/move.h: Make Move*ToLayerLowLevel() local to
3408 move.c No point in exporting these functions.
3410 2011-04-30 Peter Clifton * pcjc2 AT cam dot ac dot uk *
3412 * src/rats.c: rats.c: Tidy up FindPad() Changes are aimed to simplify the delta of a future patch relating
3413 to object storage. Moves indexed addressing of object structures to
3416 2011-04-30 Peter Clifton * pcjc2 AT cam dot ac dot uk *
3418 * src/toporouter.c: src/toporouter.c: Tidy up escape() routine Changes are aimed to simplify the delta of a future patch relating
3419 to object storage. Moves indexed addressing of object structures to
3422 2011-04-30 Peter Clifton * pcjc2 AT cam dot ac dot uk *
3424 * src/parse_y.y: parse.y: Convert an open-coded loop to use
3427 2011-04-30 Peter Clifton * pcjc2 AT cam dot ac dot uk *
3429 * src/hid/gtk/gui-pinout-preview.c: hid/gtk: Remove unused code from
3432 2011-04-30 Peter Clifton * pcjc2 AT cam dot ac dot uk *
3434 * src/draw.c: draw.c: Tidy up DrawEMark Changes are aimed to simplify the delta of a future patch relating
3435 to object storage. Moves indexed addressing of object structures to
3438 2011-04-30 Peter Clifton * pcjc2 AT cam dot ac dot uk *
3440 * src/autoroute.c, src/crosshair.c, src/edif.y, src/global.h,
3441 src/mtspace.c, src/polygon1.c: Include glib.h from global.h To avoid compiler warnings, remove the now duplicated (or
3442 unecessary) #define ABS definitions from various files. There has been a build-time dependance on GLib since the toporouter
3443 was added. Lets start to make use of it where it is useful.
3445 2011-04-29 Peter Clifton * pcjc2 AT cam dot ac dot uk *
3447 * src/hid/lesstif/main.c: hid/lesstif: Hook up debug drawing APIs
3449 2011-04-29 Peter Clifton * pcjc2 AT cam dot ac dot uk *
3451 * src/hid/gtk/gtkhid-gdk.c, src/hid/gtk/gtkhid-main.c,
3452 src/hid/gtk/gui.h: hid/gtk: Hook up debug drawing APIs
3454 2011-04-29 Peter Clifton * pcjc2 AT cam dot ac dot uk *
3456 * src/hid.h, src/hid/common/hidnogui.c: Add HID apis to handle live
3457 debug drawing from the core It is envisaved that this API should ONLY be used for debugging, not
3458 presenting a user-interface. In general, the GUIs may have their own
3459 special requirements for drawing the board, and this API is not
3460 meant to allow the core to augment or present user-visible drawing.
3461 This is reflected in the API naming. Request permission for debug drawing HID *ddraw = gui->request_debug_draw (void); Returns a HID pointer which should be used rather than the global
3462 gui-> for making drawing calls. If the return value is NULL, then
3463 permission has been denied, and the debug drawing must not continue. Flush pending drawing to the screen void ddraw->flush_debug_draw (void); May be implemented as a NOOP if the GUI has chosen to send the debug
3464 drawing directly to the screen. When finished, the user must inform the GUI to clean up resources: ddraw->finish_debug_draw (void); Any remaining rendering will be flushed to the screen.
3466 2011-04-29 Peter Clifton * pcjc2 AT cam dot ac dot uk *
3468 * src/hid/lesstif/main.c: hid/lesstif: Ensure crosshair and mark
3469 updates go to the screen The "pixmap" global might be pointing at one of the backing pixmaps
3470 when we are called. Does not fix any known bug, just in preparation for another patch
3471 relating to debug drawing which may leave pixmap pointing to the
3474 2011-04-29 Peter Clifton * pcjc2 AT cam dot ac dot uk *
3476 * src/hid/gtk/gtkhid-gdk.c: hid/gtk: Invalidate the damaged region,
3479 2011-04-29 Andrew Poelstra * asp11 AT sfu dot ca *
3481 * src/print.c: Subject: PCB / Physical unit macros patch 2: print.c This patch works correctly (i.e., no change in output) for my test
3482 file; about 6800 lines of postscript. The only differences were in
3483 the timestamps, which naturally were slightly different. I also confirmed visually that the before and after printouts look
3484 the same :) Rebased to git HEAD by Peter Clifton * pcjc2 AT cam dot ac dot uk *
3486 2011-04-28 Peter Clifton * pcjc2 AT cam dot ac dot uk *
3488 * src/autoroute.c: autoroute.c: Remove a couple of completely unused
3491 2011-04-28 Peter Clifton * pcjc2 AT cam dot ac dot uk *
3493 * src/global.h: global.h: Remove unused OutputType members Width and
3496 2011-04-28 Peter Clifton * pcjc2 AT cam dot ac dot uk *
3498 * src/action.c: Fixup usage of the never initialised, obsolete,
3499 Output.{Width,Height} For the stroke handling case (relating to zooming) it isn't clear
3500 what is correct, but for now, substitute PCB->MaxWidth and
3501 PCB->MaxHeight. This may still leave stroke based zooming broken, but it was
3502 CERTAINLY broken before.
3504 2011-04-28 Peter Clifton * pcjc2 AT cam dot ac dot uk *
3506 * src/hid/gtk/gui-pinout-preview.c: hid/gtk: Remove dead code (due
3507 to bitrot) from pinout_zoom_fit() function The code tried to compare against the uninitialised, unused
3508 Output.Width and Output.Height. Assuming these were initialised to
3509 zero by the compiler, the conditional would always cause the
3510 function to return FALSE. Remove the conditional, and drop the boolean return value from this
3511 function, short-cutting the caller to the utilised code-path. This removes the (long broken) feature where by the natural size (in
3512 pixels) of the pinout preview would be reduced if it was greater
3513 than 3/4 of the viewport size (in pixels) of the active PCB.
3515 2011-04-28 Peter Clifton * pcjc2 AT cam dot ac dot uk *
3517 * src/global.h: Remove unused old{Obj,Line,Box}State members from
3518 the OutputType structure
3520 2011-04-28 Peter Clifton * pcjc2 AT cam dot ac dot uk *
3522 * src/draw.c, src/main.c: main.c: Remove setup of global graphics
3523 contexts which are never used draw.c stashes these ones creates its own. Drop the unused ones, and
3524 drop the stashing in draw.c
3526 2011-04-28 Peter Clifton * pcjc2 AT cam dot ac dot uk *
3528 * src/autoroute.c: autoroute.c: Use the autoroute graphics context,
3529 not Output.fgGC I'm aiming to confine Output.* graphics contexts to draw.c for now.
3531 2011-04-28 Peter Clifton * pcjc2 AT cam dot ac dot uk *
3533 * src/data.c, src/data.h: Remove unused global variable
3534 Zoom_Multiplier Along with a following commented series of numbers which git log
3535 suggests was originally related to pre-defined zoom ratios.
3537 2011-04-28 Peter Clifton * pcjc2 AT cam dot ac dot uk *
3539 * src/macro.h: macro.h: Remove unused (obsolete) conversion macro
3542 2011-04-28 Peter Clifton * pcjc2 AT cam dot ac dot uk *
3544 * src/action.c: action.c: Replace use of obsolete conversion macro
3545 TO_PCB with a constant. This changes the location tolerance in NotifyLine()'s call to
3546 LookupConnection() from what previously evaluated to 100 internal
3547 units, to a constant of one internal unit. This is consistent with other similar calls to LookupConnection(),
3548 where it appears that a wide search area is not desired, so the
3549 smallest possible value is passed.
3551 2011-04-28 Peter Clifton * pcjc2 AT cam dot ac dot uk *
3553 * src/data.c, src/data.h, src/file.c: Remove unused variables Xorig
3556 2011-04-28 Peter Clifton * pcjc2 AT cam dot ac dot uk *
3558 * src/macro.h: macro.h: Remove unused, obsolete conversion macros
3559 TO_PCB_X and TO_PCB_Y
3561 2011-04-28 Peter Clifton * pcjc2 AT cam dot ac dot uk *
3563 * src/action.c: action.c: Partially fix up some stroke handling bugs 1. Stroke event coordinates are already in PCB units, drop bogus
3564 conversions 2. Fix incorrect variable name
3566 2011-04-28 Peter Clifton * pcjc2 AT cam dot ac dot uk *
3568 * src/file.c: file.c: Write out correct cursor location in the PCB
3571 2011-04-28 Peter Clifton * pcjc2 AT cam dot ac dot uk *
3573 * src/data.c, src/data.h: data.c: Remove unused globals theScreen,
3574 clipBox, vxl, vxh, vyl, vyh
3576 2011-04-28 Peter Clifton * pcjc2 AT cam dot ac dot uk *
3578 * src/draw.c, src/print.c, src/print.h: print.c: Pass an explicit
3579 graphics context to PrintFab() and friends This is a step towards being able to move the active graphics
3580 contexts out of the global scope.
3582 2011-04-28 Peter Clifton * pcjc2 AT cam dot ac dot uk *
3584 * src/global.h, src/main.c: Remove unused Output.GridGC variable
3586 2011-04-28 Peter Clifton * pcjc2 AT cam dot ac dot uk *
3588 * src/rtree.c: rtree.c: Remove old X11 based debug drawing code The core doesn't do drawing any more.. and can't assume that the
3589 GUI's graphics contexts are actually X11 or GDK graphics context, so
3590 this code can't work any more - remove it.
3592 2011-04-28 Peter Clifton * pcjc2 AT cam dot ac dot uk *
3594 * src/hid/batch/batch.c, src/hid/common/extents.c,
3595 src/hid/gerber/gerber.c, src/hid/gtk/gtkhid-gdk.c,
3596 src/hid/gtk/gtkhid-main.c, src/hid/gtk/gui.h,
3597 src/hid/lesstif/main.c, src/hid/png/png.c, src/hid/ps/eps.c: HIDs:
3598 Remove NOOP set_draw_faded implementations
3600 2011-04-28 Peter Clifton * pcjc2 AT cam dot ac dot uk *
3602 * src/hid/common/hidnogui.c: hid: Provided non-CRASH default
3603 implementation of HID->set_draw_faded There is no point in various HIDs providing their own NOOP
3606 2011-04-28 Peter Clifton * pcjc2 AT cam dot ac dot uk *
3608 * src/hid.h, src/hid/batch/batch.c, src/hid/common/extents.c,
3609 src/hid/common/hidnogui.c, src/hid/gcode/gcode.c,
3610 src/hid/gerber/gerber.c, src/hid/gtk/gtkhid-gdk.c,
3611 src/hid/gtk/gtkhid-main.c, src/hid/gtk/gui.h,
3612 src/hid/lesstif/main.c, src/hid/nelma/nelma.c, src/hid/png/png.c,
3613 src/hid/ps/eps.c, src/hid/ps/ps.c: hid: Remove unused
3614 set_line_cap_angle API
3616 2011-04-27 Peter Clifton * pcjc2 AT cam dot ac dot uk *
3618 * src/hid/gtk/gtkhid-gdk.c, src/hid/gtk/gui.h: hid/gtk: Make
3619 ghid_show_crosshair() local to the GDK implementation
3621 2011-04-27 Peter Clifton * pcjc2 AT cam dot ac dot uk *
3623 * src/hid/gtk/gtkhid-main.c: hid/gtk: Invalidate the crosshair
3624 rather than drawing it immediately
3626 2011-04-27 Peter Clifton * pcjc2 AT cam dot ac dot uk *
3628 * src/hid/gtk/gtkhid-gdk.c, src/hid/gtk/gui-output-events.c,
3629 src/hid/gtk/gui.h: Revert "hid/gtk: Add hooks to tell the render
3630 when we start/stop drawing" This reverts commit 332cb8ddc1cc032ac29c7d2b9a0051ccc228b6da. Since crosshair updates are now handled by notifications to the GUI,
3631 this isn't required for the forthcoming PCB+GL support.
3633 2011-04-27 Peter Clifton * pcjc2 AT cam dot ac dot uk *
3635 * src/hid/gtk/gui-output-events.c: hid/gtk: Avoid extra crosshair
3636 and attached object redraws The crosshair movement is handled by a notify_crosshair_change()
3637 call in ghid_note_event_location().
3639 2011-04-27 Andrew Poelstra * asp11 AT sfu dot ca *
3641 * globalconst.h, src/action.c, src/autoplace.c, src/buffer.c,
3642 src/change.c, src/const.h, src/create.c, src/djopt.c, src/find.c,
3643 src/hid/batch/batch.c, src/hid/gcode/gcode.c,
3644 src/hid/gerber/gerber.c, src/hid/gtk/gtkhid-main.c,
3645 src/hid/gtk/gui-drc-window.c, src/hid/gtk/gui-misc.c,
3646 src/hid/gtk/gui-top-window.c, src/hid/gtk/gui.h,
3647 src/hid/lesstif/dialogs.c, src/hid/lesstif/lesstif.h,
3648 src/hid/lesstif/main.c, src/hid/lesstif/styles.c,
3649 src/hid/nelma/nelma.c, src/hid/png/png.c, src/hid/ps/eps.c,
3650 src/hid/ps/ps.c, src/main.c, src/misc.c, src/parse_l.l,
3651 src/print.c, src/report.c, src/vendor.c: PCB / Physical unit macros
3652 patch Specify various constants in physical units, converting to PCB
3653 internal units using macros. When reporting to the user (or
3654 exporting), convert dimensions to physical units using macros so the
3655 code does not rely on details of PCB's internal coordinates in so
3658 2011-04-27 Peter Clifton * pcjc2 AT cam dot ac dot uk *
3660 * src/draw.c: draw.c: Remove old commented debug printf
3662 2011-04-27 Peter Clifton * pcjc2 AT cam dot ac dot uk *
3664 * src/draw.c: draw.c: Remove unused function thin_callback()
3666 2011-04-26 Peter Clifton * pcjc2 AT cam dot ac dot uk *
3668 * src/crosshair.c, src/crosshair.h, src/global.h,
3669 src/hid/lesstif/main.c: Move crosshair on / off functionality into
3670 lesstif HID. Lesstif is the only GUI which turns attached objects on and off,
3671 when the mouse leaves the viewport, so it might as well manage it
3674 2011-04-26 Peter Clifton * pcjc2 AT cam dot ac dot uk *
3676 * src/crosshair.c, src/hid.h, src/hid/common/hidnogui.c,
3677 src/hid/gtk/gtkhid-gdk.c, src/hid/gtk/gtkhid-main.c,
3678 src/hid/gtk/gui.h, src/hid/lesstif/main.c: Give the HIDs control
3679 over attached object (crosshair, mark) drawing This is required if a renderer doesn't want to follow the current
3680 drawing model where it is assumed the core can call the HID's
3681 drawing APIs at any arbitrary point in time. Expose some API from crosshair.c to perform the actual drawing on
3682 demand, and add hooks to the HID structure to notify the GUI when it
3683 would previously have called the crosshair or mark drawing routines. This allows renderers with defined setup and tear-down requirements
3684 around drawing to execute them before the objects are drawn. CrosshairOn() and CrosshairOff() now simply set the Crosshair.On
3685 flag and call the appropriate notification hooks. This commit replaces all HideCrosshair() and RestoreCrosshair()
3686 calls with the new hooks notify_{crosshair|mark}_changed(), with an
3687 argument specifying whether a change is about to happen (false
3688 argument), or has been completed (true argument).
3690 2011-04-26 Peter Clifton * pcjc2 AT cam dot ac dot uk *
3692 * src/action.c: action.c: Convert some explicit mark redrawing to
3695 2011-04-26 Peter Clifton * pcjc2 AT cam dot ac dot uk *
3697 * src/crosshair.c, src/crosshair.h, src/set.c: Separate out mark
3698 change notification from crosshair change notification Hook it up to notify the crosshair (which also redraws the mark) for
3701 2011-04-26 Peter Clifton * pcjc2 AT cam dot ac dot uk *
3703 * src/action.c, src/buffer.c, src/crosshair.c, src/crosshair.h,
3704 src/hid/gtk/gtkhid-main.c, src/hid/gtk/gui-misc.c,
3705 src/hid/gtk/gui-output-events.c, src/hid/lesstif/main.c,
3706 src/misc.c, src/set.c: Rename HideCrosshair() and RestoreCrosshair() Whist this is a tedious rename which will probably have implications
3707 for some plugins, it helps to clarify what is going on with the
3708 crosshair across forthcoming patches which put it under the control
3709 of the GUIs. The old APIs are retained for backwards compatibility with plugins,
3710 and will print a one-shot warning for each which is called.
3712 2011-04-26 Peter Clifton * pcjc2 AT cam dot ac dot uk *
3714 * src/hid/gtk/gtkhid-gdk.c: hid/gtk: DrawMark from
3715 ghid_invalidate_all() as well as DrawAttached
3717 2011-04-26 Peter Clifton * pcjc2 AT cam dot ac dot uk *
3719 * src/draw.c, src/hid/gtk/gtkhid-gdk.c,
3720 src/hid/gtk/gui-output-events.c, src/hid/gtk/gui-top-window.c,
3721 src/hid/gtk/gui.h: Let the GUIs manage the crosshair across a redraw Removes several {Hide/Restore}Crosshair() calls from the GTK HID. These are not requried any more, as they are followed by
3722 invalidate_all() calls which take care of the crosshair as well. Changes to draw.c were tested not to affect Lesstif HID
3724 2011-04-26 Peter Clifton * pcjc2 AT cam dot ac dot uk *
3726 * src/hid/gtk/gui.h: hid/gtk: Remove duplicated prototype
3728 2011-04-26 Peter Clifton * pcjc2 AT cam dot ac dot uk *
3730 * src/draw.c: draw.c: Remove obsolete comment
3732 2011-04-26 Peter Clifton * pcjc2 AT cam dot ac dot uk *
3734 * src/draw.c: draw.c: Remove clip_box global variable in favour of a
3735 more targeted one Used for polygon clipping during drawing.
3737 2011-04-26 Peter Clifton * pcjc2 AT cam dot ac dot uk *
3739 * src/draw.c: draw.c: EraseRat() should just gather the affected
3740 area These were missed (or incorrectly converted) in the previous patch
3741 series which split gathering routines from drawing routines. Tidy up DrawRat() to be consistent with the new code in EraseRat()
3743 2011-04-26 Peter Clifton * pcjc2 AT cam dot ac dot uk *
3745 * src/draw.c: draw.c: Separate out common code for drawing holes Makes things a bit clearer
3747 2011-04-26 Peter Clifton * pcjc2 AT cam dot ac dot uk *
3749 * src/draw.c: draw.c: Remove Gathering variable This variable is no longer needed since the "Gathering" Draw*
3750 functions are separate from the draw_... implementations which are
3751 triggered by the GUI calling for a repaint of the gathered area.
3753 2011-04-25 Peter Clifton * pcjc2 AT cam dot ac dot uk *
3755 * src/draw.c: draw.c: Split "Gathering" routines from real drawing
3756 routines (Text) Moves code from DrawRegularText() into its only caller
3759 2011-04-25 Peter Clifton * pcjc2 AT cam dot ac dot uk *
3761 * src/draw.c: draw.c: Split "Gathering" routines from real drawing
3762 routines (Polygons) Moves code from DrawPlainPolygon() into its only caller
3765 2011-04-25 Peter Clifton * pcjc2 AT cam dot ac dot uk *
3767 * src/draw.c: draw.c: Split "Gathering" routines from real drawing
3770 2011-04-25 Peter Clifton * pcjc2 AT cam dot ac dot uk *
3772 * src/draw.c: draw.c: Split "Gathering" routines from real drawing
3775 2011-04-26 Peter Clifton * pcjc2 AT cam dot ac dot uk *
3777 * src/draw.c: draw.c: Split "Gathering" from real drawing routines
3780 2011-04-25 Peter Clifton * pcjc2 AT cam dot ac dot uk *
3782 * src/draw.c: draw.c: Split "Gathering" routines from real drawing
3785 2011-04-25 Peter Clifton * pcjc2 AT cam dot ac dot uk *
3787 * src/draw.c: draw.c: Split "Gathering" routines from real drawing
3788 routines (Pins + Vias)
3790 2011-04-26 Peter Clifton * pcjc2 AT cam dot ac dot uk *
3792 * src/draw.c: draw.c: Split "Gathering" from real drawing routines
3793 (Element Pins and Pads)
3795 2011-04-25 Peter Clifton * pcjc2 AT cam dot ac dot uk *
3797 * src/draw.c: draw.c: Split "Gathering" from real drawing routines
3800 2011-04-25 Peter Clifton * pcjc2 AT cam dot ac dot uk *
3802 * src/draw.c: draw.c: Split "Gathering" from real drawing routines
3805 2011-04-26 Peter Clifton * pcjc2 AT cam dot ac dot uk *
3807 * src/draw.c: draw.c: Split "Gathering" from real drawing routines
3810 2011-04-25 Peter Clifton * pcjc2 AT cam dot ac dot uk *
3812 * src/draw.c: draw.c: Fold DrawHole into its only caller,
3815 2011-04-25 Peter Clifton * pcjc2 AT cam dot ac dot uk *
3817 * src/draw.c: draw.c: Move DrawPlainPin and DrawPlainVia into their
3818 only callers Make their code part of pin_callback and via_callback. Drop the Gathering tests within this code, as their only callers are
3819 within a block where Gathering is definately set.
3821 2011-04-25 Peter Clifton * pcjc2 AT cam dot ac dot uk *
3823 * src/action.c, src/autoplace.c, src/autoroute.c, src/draw.c,
3824 src/draw.h, src/find.c, src/toporouter.c, src/vendor.c: draw.c:
3825 Remove API ClearAndRedrawOutput(), in favour of Redraw(). These do the same thing anyway.
3827 2011-04-25 Peter Clifton * pcjc2 AT cam dot ac dot uk *
3829 * src/action.c, src/draw.c, src/draw.h, src/set.c: draw.c: Remove
3830 UpdateAll() API, in favour of Redraw(), which is identical
3832 2011-04-25 Peter Clifton * pcjc2 AT cam dot ac dot uk *
3834 * src/action.c, src/draw.c, src/draw.h: draw.c: Expose local
3835 Redraw() function, and remove wrapper RedrawOutput() Within the one caller ActionDisplay, combine the F_ClearAndRedraw
3836 and F_Redraw cases which have exactly the same effect.
3838 2011-04-25 Peter Clifton * pcjc2 AT cam dot ac dot uk *
3840 * src/draw.c: draw.c: Drop unused area parameters from Redraw(...)
3842 2011-04-25 Peter Clifton * pcjc2 AT cam dot ac dot uk *
3844 * src/draw.c: draw.c: Only set Gathering during
3845 hid_expose_callback() Removes setting of Gathering to false prior to calling UpdateAll()
3846 in ClearAndRedrawOutput(), and removes setting of Gathering to true
3847 after calling gui->invalidate_all() in Redraw()
3849 2011-04-25 Peter Clifton * pcjc2 AT cam dot ac dot uk *
3851 * : Regenerate test golden files for the png output hid The colour drawn for vias changed due to the fix in commit
3852 c095adf5ea890284cddc2730944b980ac1275109 (Build was broken due to the above commit until commit
3853 c9b915d7f2f49f5ebde0abeb5756b1e11e756edc)
3855 2011-04-24 Peter Clifton * pcjc2 AT cam dot ac dot uk *
3857 * src/draw.c: draw.c: Use the ON_SIDE() macro rather then open-code
3860 2011-04-24 Peter Clifton * pcjc2 AT cam dot ac dot uk *
3862 * src/draw.c: draw.c: Add a DrawPaste() helper function for paste
3865 2011-04-24 Peter Clifton * pcjc2 AT cam dot ac dot uk *
3867 * src/misc.c, src/misc.h: misc.c: Add query function IsPasteEmpty()
3868 to query a paste layer is empty
3870 2011-04-24 Peter Clifton * pcjc2 AT cam dot ac dot uk *
3872 * src/draw.c, src/macro.h: Make the ON_SIDE() macro global, not
3875 2011-04-24 Peter Clifton * pcjc2 AT cam dot ac dot uk *
3877 * src/hid/common/draw_helpers.c: hid/common: Fix
3878 common_thindraw_pcb_pad()'s handling of square pads I made a mistake in a logic test when simplifying this routine in
3879 commit 4efcedeeac06cd4d5e559a7fe0a0ee8685f2137a This caused slanted rendering of horizontal or vertical pads.
3881 2011-04-24 Peter Clifton * pcjc2 AT cam dot ac dot uk *
3883 * src/draw.c: draw.c: Rename the "screen" parameter of
3884 DrawLayerGroup to "drawn_area" (For consistency with other code in draw.c)
3886 2011-04-24 Peter Clifton * pcjc2 AT cam dot ac dot uk *
3888 * src/draw.c: draw.c: Use DrawPPV() where we can to save duplication
3890 2011-04-23 Peter Clifton * pcjc2 AT cam dot ac dot uk *
3892 * src/draw.c: draw.c: Change PrintAssembly() to use a layer side
3893 parameter Drops the "swap_ident" parameter in favour of a more explicit "side"
3894 parameter. Also drops the side_group parameter, as we can easily
3895 determine that from the requested side to draw.
3897 2011-04-23 Peter Clifton * pcjc2 AT cam dot ac dot uk *
3899 * src/draw.c: draw.c: Change DrawSilk() to use a layer side
3900 parameter, not SWAP_IDENT
3902 2011-04-24 Peter Clifton * pcjc2 AT cam dot ac dot uk *
3904 * src/draw.c: Make DrawPPV() always draw for non gui HIDs, rather than doing_assy The gui HIDs don't accept the assembly drawaing, so testing for
3905 !gui->gui will catch this case, and we can drop the doing_assy
3906 override for PCB->PinOn and PCB->ViaOn
3908 2011-04-23 Peter Clifton * pcjc2 AT cam dot ac dot uk *
3910 * src/draw.c: draw.c: Change DrawTop() to DrawPPV(), and teach it to
3911 work for any layer (PPV stands for Pins, Pads and Vias). Extend its functionality to
3912 work for pins and vias on any layer.
3914 2011-04-24 Peter Clifton * pcjc2 AT cam dot ac dot uk *
3916 * src/draw.c: draw.c: Rename DrawTop() "screen" parameter
3917 "drawn_area" For consistency with other code in draw.c
3919 2011-04-23 Peter Clifton * pcjc2 AT cam dot ac dot uk *
3921 * src/draw.c: draw.c: Fix order of farside object drawing Backside silk should be drawn before bakside pads
3923 2011-04-23 Peter Clifton * pcjc2 AT cam dot ac dot uk *
3925 * src/draw.c: draw.c: Add prototype for via_callback Fixes breakage since commit c095adf5ea890284cddc2730944b980ac1275109
3927 2011-04-23 Peter Clifton * pcjc2 AT cam dot ac dot uk *
3929 * src/draw.c: draw.c: Remove a couple of redundant if statements The outer if statement already ensures this code-path isn't followed
3930 for a gui hid.. don't repeat ourselves. One statement will always
3931 return false, hence is dead code - the other is always true.
3933 2011-04-23 Peter Clifton * pcjc2 AT cam dot ac dot uk *
3935 * src/draw.c: draw.c: Use the via callback when drawing vias. Since this code-path is only hit for exporters, (and the only
3936 difference between the pin and via callback is the drawing colour)
3937 it is not likely this matters, but lets be correct.
3939 2011-04-23 Peter Clifton * pcjc2 AT cam dot ac dot uk *
3941 * src/draw.c: draw.c: Add layer side parameter to DrawMask() Don't use the global variable SWAP_IDENT to choose which side to
3944 2011-04-23 Peter Clifton * pcjc2 AT cam dot ac dot uk *
3946 * src/draw.c: draw.c: Combine front and back element and name
3947 callbacks Pass an integer "side" parameter to determine which is desired
3949 2011-04-23 Peter Clifton * pcjc2 AT cam dot ac dot uk *
3951 * src/macro.h: Remove commented TEXT_IS_VISIBLE implementation I'm cleaning up code which uses SWAP_IDENT, and this comment scored
3954 2011-04-23 Peter Clifton * pcjc2 AT cam dot ac dot uk *
3956 * src/action.c, src/change.c, src/copy.c, src/draw.c, src/draw.h,
3957 src/find.c, src/hid/gtk/gui-drc-window.c, src/insert.c, src/move.c,
3958 src/polygon.c, src/rats.c, src/remove.c, src/rotate.c,
3959 src/select.c, src/toporouter.c, src/undo.c: draw.c: Remove unused
3960 parameter from various calls: DrawObject DrawVia DrawViaName DrawLine DrawArc DrawText DrawRegularText DrawPolygon DrawElement DrawElementPackage DrawElementPackageLowLevel DrawElementName DrawElementPinsAndPads DrawRat DrawPin DrawPinName DrawPad DrawPadName
3962 2011-04-23 Andrew Poelstra * asp11 AT sfu dot ca *
3964 * src/hid/png/png.c: hid/png: Fix incorrect um unit conversion in
3965 bloat parser. (Split from a larger patch by Peter Clifton * pcjc2 AT cam dot ac
3968 2011-04-23 Peter Clifton * pcjc2 AT cam dot ac dot uk *
3970 * globalconst.h: globalconst.h: Remove some unused constants
3972 2011-04-23 Peter Clifton * pcjc2 AT cam dot ac dot uk *
3974 * src/hid/png/png.c: hid/png: Fix segfault when no image formats are
3975 configured in. Based on a patch by Felix Ruoff * Felix AT posaunenmission dot de * Catch the case where the selected image format is actually the NULL
3976 terminator at the end of the format list. This happens when the list
3977 is empty. Don't strcmp against that terminator! Closes-bug: lp-699290 (sf-2669324)
3979 2011-04-23 Peter Clifton * pcjc2 AT cam dot ac dot uk *
3981 * src/hid/png/png.c: Revert "Fix potential segfault" This reverts commit 2d2040e92d5ebb069af42567855055b096532e71. This patch causes segfaults in the GTK and Lesstif hids, so
3982 reverting, as it removes the required NULL termination from an
3983 attribute enumeration. Any code which can't deal with an empty
3984 enumeration list should be fixed instead. Reopens-bug: lp-699290 (sf-2669324) Closes-bug: lp-769336
3986 2011-04-22 Peter Clifton * pcjc2 AT cam dot ac dot uk *
3988 * src/main.c, src/misc.c, src/polygon.c, src/polygon.h,
3989 src/thermal.c: Fix geometry errors caused by commit
3990 2d8dc8a3a3a55158b4e6278dd9f40588e4111c2d This fixes up problems from the following commit: [PATCH] fix bug 2793480 (vias/arcs-to-polygon clearances) frac_circle(): introduce radius_adjustment factor to make the polygon outline the arc rather than connet points on the arc ArcPolyNoIntersect(): compute number of segments so that polygon diverges from the arc no more than 0.02 of required thickness; adjust outer "arc" radius like in
3991 frac_circle() The object bounding boxes for arcs, vias, lines and rounded pads
3992 which determine the maximum area affected by that object were no
3993 longer correct, leading to artaefacts when doing incremental polygon
3994 processing. It also lead to missing fragments in (the non-curved + and x type
3995 thermals). These are also fixed up by this patch.
3997 2011-04-21 Peter Clifton * pcjc2 AT cam dot ac dot uk *
3999 * src/draw.c: draw.c: Tidy up hole_callback routine
4001 2011-04-21 Peter Clifton * pcjc2 AT cam dot ac dot uk *
4003 * src/draw.c: draw.c: Remove unnecessary pin_info struct. The argument specifying whether to clear pins was always true in any
4004 case where clearPin_callback was called (the only user of this
4007 2011-04-21 Peter Clifton * pcjc2 AT cam dot ac dot uk *
4009 * src/macro.h: macro.h: Remove unused X11 specific macros
4011 2011-04-21 Peter Clifton * pcjc2 AT cam dot ac dot uk *
4013 * src/macro.h: macro.h: Remove unused object visibility macros
4015 2011-04-21 Peter Clifton * pcjc2 AT cam dot ac dot uk *
4017 * src/draw.c, src/line.c, src/macro.h: Remove some old unused
4018 coordinate conversion macros from the core Sadly, there are still some left to expunge which are being used -
4019 and their usage appears broken in many cases!
4021 2011-04-21 Peter Clifton * pcjc2 AT cam dot ac dot uk *
4023 * tests/golden/hid_gcode1/Makefile.am,
4024 tests/golden/hid_gcode10/Makefile.am,
4025 tests/golden/hid_gcode11/Makefile.am,
4026 tests/golden/hid_gcode2/Makefile.am,
4027 tests/golden/hid_gcode3/Makefile.am,
4028 tests/golden/hid_gcode4/Makefile.am,
4029 tests/golden/hid_gcode5/Makefile.am,
4030 tests/golden/hid_gcode6/Makefile.am,
4031 tests/golden/hid_gcode7/Makefile.am,
4032 tests/golden/hid_gcode8/Makefile.am,
4033 tests/golden/hid_gcode9/Makefile.am,
4034 tests/golden/hid_gerber1/Makefile.am,
4035 tests/golden/hid_gerber2/Makefile.am: Fix test-suite harder Fixup Makefile.am files to match renames in last commit
4037 2011-04-21 Peter Clifton * pcjc2 AT cam dot ac dot uk *
4039 * tests/golden/hid_gcode1/gcode_oneline.gcode.back.cnc,
4040 tests/golden/hid_gcode1/gcode_oneline.gcode.bottom.cnc,
4041 tests/golden/hid_gcode1/gcode_oneline.gcode.front.cnc,
4042 tests/golden/hid_gcode1/gcode_oneline.gcode.top.cnc,
4043 tests/golden/hid_gcode10/gcode_oneline.gcode.back.cnc,
4044 tests/golden/hid_gcode10/gcode_oneline.gcode.bottom.cnc,
4045 tests/golden/hid_gcode10/gcode_oneline.gcode.front.cnc,
4046 tests/golden/hid_gcode10/gcode_oneline.gcode.top.cnc,
4047 tests/golden/hid_gcode11/gcode_oneline.gcode.back.cnc,
4048 tests/golden/hid_gcode11/gcode_oneline.gcode.bottom.cnc,
4049 tests/golden/hid_gcode11/gcode_oneline.gcode.front.cnc,
4050 tests/golden/hid_gcode11/gcode_oneline.gcode.top.cnc,
4051 tests/golden/hid_gcode2/out.back.cnc,
4052 tests/golden/hid_gcode2/out.bottom.cnc,
4053 tests/golden/hid_gcode2/out.front.cnc,
4054 tests/golden/hid_gcode2/out.top.cnc,
4055 tests/golden/hid_gcode3/gcode_oneline.gcode.back.cnc,
4056 tests/golden/hid_gcode3/gcode_oneline.gcode.bottom.cnc,
4057 tests/golden/hid_gcode3/gcode_oneline.gcode.front.cnc,
4058 tests/golden/hid_gcode3/gcode_oneline.gcode.top.cnc,
4059 tests/golden/hid_gcode4/gcode_oneline.gcode.back.cnc,
4060 tests/golden/hid_gcode4/gcode_oneline.gcode.bottom.cnc,
4061 tests/golden/hid_gcode4/gcode_oneline.gcode.front.cnc,
4062 tests/golden/hid_gcode4/gcode_oneline.gcode.top.cnc,
4063 tests/golden/hid_gcode5/gcode_oneline.gcode.back.cnc,
4064 tests/golden/hid_gcode5/gcode_oneline.gcode.bottom.cnc,
4065 tests/golden/hid_gcode5/gcode_oneline.gcode.front.cnc,
4066 tests/golden/hid_gcode5/gcode_oneline.gcode.top.cnc,
4067 tests/golden/hid_gcode6/gcode_oneline.gcode.back.cnc,
4068 tests/golden/hid_gcode6/gcode_oneline.gcode.bottom.cnc,
4069 tests/golden/hid_gcode6/gcode_oneline.gcode.front.cnc,
4070 tests/golden/hid_gcode6/gcode_oneline.gcode.top.cnc,
4071 tests/golden/hid_gcode7/gcode_oneline.gcode.back.cnc,
4072 tests/golden/hid_gcode7/gcode_oneline.gcode.bottom.cnc,
4073 tests/golden/hid_gcode7/gcode_oneline.gcode.front.cnc,
4074 tests/golden/hid_gcode7/gcode_oneline.gcode.top.cnc,
4075 tests/golden/hid_gcode8/gcode_oneline.gcode.back.cnc,
4076 tests/golden/hid_gcode8/gcode_oneline.gcode.bottom.cnc,
4077 tests/golden/hid_gcode8/gcode_oneline.gcode.front.cnc,
4078 tests/golden/hid_gcode8/gcode_oneline.gcode.top.cnc,
4079 tests/golden/hid_gcode9/gcode_oneline.gcode.back.cnc,
4080 tests/golden/hid_gcode9/gcode_oneline.gcode.bottom.cnc,
4081 tests/golden/hid_gcode9/gcode_oneline.gcode.front.cnc,
4082 tests/golden/hid_gcode9/gcode_oneline.gcode.top.cnc,
4083 tests/golden/hid_gerber1/gerber_oneline.back.gbr,
4084 tests/golden/hid_gerber1/gerber_oneline.bottom.gbr,
4085 tests/golden/hid_gerber1/gerber_oneline.front.gbr,
4086 tests/golden/hid_gerber1/gerber_oneline.top.gbr,
4087 tests/golden/hid_gerber2/out.back.gbr,
4088 tests/golden/hid_gerber2/out.bottom.gbr,
4089 tests/golden/hid_gerber2/out.front.gbr,
4090 tests/golden/hid_gerber2/out.top.gbr, tests/tests.list: Fix
4091 test-suite files to match component->front and solder->back rename Test-suite now passes again.
4093 2011-04-20 Peter Clifton * pcjc2 AT cam dot ac dot uk *
4095 * src/crosshair.c: hid/common: Draw the hole outline for pins / vias
4096 being moved or placed
4098 2011-04-21 Peter Clifton * pcjc2 AT cam dot ac dot uk *
4100 * src/crosshair.c: crosshair.c: Use a dummy via structure to draw
4103 2011-04-20 Peter Clifton * pcjc2 AT cam dot ac dot uk *
4105 * src/crosshair.c, src/draw.c, src/global.h, src/hid.h,
4106 src/hid/common/draw_helpers.c, src/hid/common/draw_helpers.h,
4107 src/hid/common/hidnogui.c: Consolidate pin / via drawing routines,
4108 moving them under the HID API Adds two new HID APIs, fill_pcb_pv and thindraw_pcb_pv, splitting
4109 drawing code from DrawPadLowlevel() to common_fill_pcb_pv() and
4110 common_thindraw_pcb_pv() in hid/common/draw_helpers.c. Octagonal vias and pins are now correctly drawn when attached to the
4113 2011-04-20 Peter Clifton * pcjc2 AT cam dot ac dot uk *
4115 * src/crosshair.c, src/draw.c, src/global.h, src/hid.h,
4116 src/hid/common/draw_helpers.c, src/hid/common/draw_helpers.h,
4117 src/hid/common/hidnogui.c: Consolidate pad drawing routines, moving
4118 them under the HID API Adds two new HID APIs, fill_pcb_pad and thindraw_pcb_pad, splitting
4119 drawing code from DrawPadLowlevel() to common_fill_pcb_pad() and
4120 common_thindraw_pcbpad() in hid/common/draw_helpers.c. I simplified the code somewhat as I moved it, reducing the number of
4121 special cases. gui->{thindraw|fill}_pcb_pad() is called from DrawPadLowlevel(), and
4122 is used to replace an incomplete thindraw implementation for pads in
4123 XORDrawElement(). Outlines for angled pads are now drawn in their entirety when
4124 attached to the cursor, not just their center line, and rounded end
4125 pads are also now drawn correctly in this mode.
4127 2011-04-20 Peter Clifton * pcjc2 AT cam dot ac dot uk *
4129 * src/hid/batch/batch.c, src/hid/common/draw_helpers.c,
4130 src/hid/common/draw_helpers.h, src/hid/common/extents.c,
4131 src/hid/gcode/gcode.c, src/hid/gerber/gerber.c,
4132 src/hid/gtk/gtkhid-main.c, src/hid/lesstif/main.c,
4133 src/hid/nelma/nelma.c, src/hid/png/png.c, src/hid/ps/eps.c,
4134 src/hid/ps/ps.c: hid/common: Provide a helper function for HIDs to
4135 use drawing helpers Gives the following changes to various HIDs: extents: now has thindraw_polygon implemented - should not be an
4136 issue gcode: now has thindraw_polygon implemented - should not
4137 be an issue gerber: now has thindraw_polygon implemented - should
4138 not be an issue nelma: now has thindraw_polygon implemented -
4139 should not be an issue png: now has thindraw_polygon implemented
4140 - should not be an issue eps: now has thindraw_polygon
4141 implemented - should not be an issue ps: now has
4142 thindraw_polygon implemented - should not be an issue batch: no
4143 longer has NOP fill_pcb_polygon and thindraw_pcb_polygon routines -
4144 should not be an issue, as the drawing calls the common helper
4145 routines use are still NOPs for the batch HID.
4147 2011-04-20 Peter Clifton * pcjc2 AT cam dot ac dot uk *
4149 * src/hid/common/draw_helpers.c: hid/common: Some formatting changes
4152 2011-04-20 Peter Clifton * pcjc2 AT cam dot ac dot uk *
4154 * src/hid/gcode/gcode.c, src/hid/png/png.c: Add missing HID
4155 structure zero initialisation for gcode and png HIDs. Missed from commit commit d67f4335b5d4f97330448b833ea1bf04377c3a57 "Initialise the HID vtable by function, rather than as a struct
4156 initialiser." I missed the memset from these two HIDs.
4158 2011-04-19 Peter Clifton * pcjc2 AT cam dot ac dot uk *
4160 * src/draw.c: draw.c: Fix damage area computation We should reset the left and top bounds to MAXINT, and the right and
4161 bottom bounds to -MAXINT. This way the correct bounds are computed
4162 when gathering. The code previously every coordinate to 0, meaning that the box
4163 encompasing (0, 0) up to the (max_x, max_y) would be invalidated,
4164 rather than (min_x, min_y) to (max_x, max_y). No improvement is going to be seen, as both the GTK and Lesstif GUIs
4165 ignore the damaged bounds and repaint the whole screen each time -
4166 it is just for correctness.
4168 2011-04-18 Peter Clifton * pcjc2 AT cam dot ac dot uk *
4170 * src/crosshair.c, src/crosshair.h, src/hid/lesstif/main.c: Don't
4171 abuse CrosshairOn() API to force a redraw. Expose DrawAttached() to the HIDs so they can call it themselves,
4172 and don't have to cheat by forcing Crosshair.On to false. Make DrawAttached() and DrawMark() a NOP if the relevant item is not
4173 being shown. Ie. if !Crosshair.On, both functions draw nothing. If
4174 !Marked.status, DrawMark() draws nothing. A minor change is required in CrosshairOff() to XOR un-draw before
4175 switching the flag to off. Not known to fix any particular bug, but it is possible that the
4176 crosshair should not be drawn at a given point (due to changes
4177 taking place inside a HideCrosshair() / RestoreCrosshair() pair. Tested with Lesstif and GTK HIDs.
4179 2011-04-18 Peter Clifton * pcjc2 AT cam dot ac dot uk *
4181 * src/crosshair.c, src/hid/gtk/gui-output-events.c: hid/gtk: Don't
4182 call CrosshairOn() when re-entering the viewport The GTK HID doesn't turn the crosshair off, so we don't turn it back
4183 on if we default to having it switched on in the first place. Make
4184 that default change, and remove the CrosshairOn() call. (Also tested not to break the Lesstif HID).
4186 2011-04-18 Peter Clifton * pcjc2 AT cam dot ac dot uk *
4188 * src/Makefile.am, src/hid/batch/batch.c, src/hid/bom/bom.c,
4189 src/hid/common/extents.c, src/hid/gcode/gcode.c,
4190 src/hid/gerber/gerber.c, src/hid/gtk/gtkhid-main.c,
4191 src/hid/lesstif/main.c, src/hid/lpr/lpr.c, src/hid/nelma/nelma.c,
4192 src/hid/nelma/nelma.h, src/hid/png/png.c, src/hid/png/png.h,
4193 src/hid/ps/eps.c, src/hid/ps/ps.c: Initialise the HID vtable by
4194 function, rather than as a struct initialiser. This allows adding new items without having to update every HID. It
4195 also reduces bloat for those HIDs which have a lot of zero entries.
4197 2011-04-12 DJ Delorie * dj AT delorie dot com *
4199 * src/misc.c: Add t/b synonyms for group list Allow 't' as well as 'c', and 'b' as well as 's', in the groups
4202 2011-03-31 Ineiev * ineiev AT users dot berlios dot de *
4204 * src/hid/png/png.c: Fix potential segfault Closes-bug: lp-699290 (sf-2669324)
4206 2011-04-11 DJ Delorie * dj AT delorie dot com *
4208 * src/hid/common/flags.c: Update file names to top/bottom convention Yes, I know this will break some scripts - mine included. I
4209 couldn't think of a good way to auto-detect when the old names
4212 2011-04-11 DJ Delorie * dj AT delorie dot com *
4214 * src/draw.c: Remove (now) unused variable.
4216 2011-04-11 DJ Delorie * dj AT delorie dot com *
4218 * src/draw.c: Don't draw an empty outline layer. If the design has an outline layer, and it's empty, draw an outline
4219 anyway - around the whole work area.
4221 2011-04-11 DJ Delorie * dj AT delorie dot com *
4223 * src/hid/ps/ps.c: Fix PS rect/outline logic PS's draw_rect was actually doing a fill_rect. Fixed. If the design has an outline layer, draw it in more of the cases
4224 where we would draw the synthetic outline.
4226 2011-04-11 DJ Delorie * dj AT delorie dot com *
4228 * src/misc.c, src/misc.h: Add IsEmpty functions Add functions to test if a given layer or layer group is "empty" -
4229 i.e. has none of its own drawing items on it.
4231 2011-04-11 DJ Delorie * dj AT delorie dot com *
4233 * src/hid/gerber/gerber.c: Fix gerber output Use the correct DRC minimums for drawn outlines on silk and copper
4234 layers. Draw rectangles as unfilled, not filled.
4236 2011-04-11 DJ Delorie * dj AT delorie dot com *
4238 * src/main.c: Tweak default layer stack. Change the default layer stack to reflect a six layer board,
4239 allowing for 2 or 4 layer designs with the same stack. Add an
4240 outline layer by default. Change the default names from
4241 "component/solder" to "top/bottom" to be consistent with names used
4242 by popular packages.
4244 2011-04-08 Krzysztof Kościuszkiewicz * k dot kosciuszkiewicz AT gmail dot com *
4246 * src/gpcb-menu.res, src/pcb-menu.res: Change menu location of "Move
4247 to current layer" To be consistent with other menu actions (like Flip/Flip selected): * "Move to current layer" is now located in the Info > Key
4248 bindings, * "Move selected to current layer" is now located in the
4249 Select menu. Closes-bug: lp-699106
4251 2011-04-01 Felix Ruoff * Felix AT posaunenmission dot de *
4253 * src/hid/gtk/gui-dialog.c: hid/gtk: Select adequate folder in
4254 file-save-dialog Since now, the 'Save layout as' - dialog gives full path and
4255 filename in name-line, but did not switches to given path in
4256 folder-list (lower part of the dialog). For me, this is
4257 uncomfortable, e.g. if I just want to switch to another near-by -
4258 folder. This solution was suggested by Krzysztof Kościuszkiewicz. Thank
4259 you! Closes-lp: 699491 Reviewed-by: Krzysztof Kościuszkiewicz * k dot
4260 kosciuszkiewicz AT gmail dot com *
4262 2011-04-07 Felix Ruoff * Felix AT posaunenmission dot de *
4264 * src/hid/gtk/gui-library-window.c: hid/gtk: expand library tree
4265 after filtering This patch changes the behavior of the library selection dialog.
4266 After filtering by name is applied the tree view of matching
4267 components is automatically expanded so that all leafs are
4268 immediately selectable. The tree view is collapsed when the filter
4269 is cleared. Patch is adapted from Krzysztof Kosciuszkiewicz's patch for gschem. Closes-bug: lp-753643 Reviewed-by: Krzysztof Kościuszkiewicz * k
4270 dot kosciuszkiewicz AT gmail dot com *
4272 2011-04-06 Peter Clifton * pcjc2 AT cam dot ac dot uk *
4274 * src/hid/gtk/gui-output-events.c, src/hid/gtk/gui.h: hid/gtk:
4275 Consolidate the mechanisms used for holding off scrollbar updates Don't duplicate mechanisms - it is confusing!
4277 2011-04-06 Peter Clifton * pcjc2 AT cam dot ac dot uk *
4279 * src/hid/gtk/gui-top-window.c: hid/gtk: Remove unused variables
4280 from {h,v}_adjument_changed_cb()
4282 2011-04-06 Peter Clifton * pcjc2 AT cam dot ac dot uk *
4284 * src/hid/gtk/gtkhid-gdk.c, src/hid/gtk/gui-output-events.c:
4285 hid/gtk: Only redraw the crosshair when necessary If we're about to repaint the screen from our backing pixmap, there
4286 is no point un-XOR drawing our current crosshair first.
4288 2011-04-06 Peter Clifton * pcjc2 AT cam dot ac dot uk *
4290 * src/crosshair.c: Don't issue CrosshairOff() from the
4291 DestroyCrosshair() function. We shouldn't assume we can make call GUI calls at this point. NB: The DestroyCrosshair() function is actually unused!
4293 2011-04-05 Ed Maste * emaste AT freebsd dot org *
4295 * configure.ac: Small change to get pcb to build on FreeBSD Add check for wish 8.5
4297 2011-04-06 Peter Clifton * pcjc2 AT cam dot ac dot uk *
4299 * src/action.c: action.c: Remove some unneded crosshair hide/restore
4300 calls Removed calls from various actions which should not have any effect
4301 on the objects drawn attached to the crosshair.
4303 2011-04-06 Peter Clifton * pcjc2 AT cam dot ac dot uk *
4305 * src/action.c: action.c: In ActionLoadFrom(), only hide the
4306 crosshair where required
4308 2011-04-06 Peter Clifton * pcjc2 AT cam dot ac dot uk *
4310 * src/action.c: action.c: In ActionUnselect(), only hide the
4311 crosshair where required
4313 2011-04-06 Peter Clifton * pcjc2 AT cam dot ac dot uk *
4315 * src/action.c: action.c: In ActionSelect(), only hide the crosshair
4318 2011-04-06 Peter Clifton * pcjc2 AT cam dot ac dot uk *
4320 * src/action.c: action.c: In ActionDisplay(), Only invalidate
4321 crosshair where needed Rather than wrapping the whole function in a crosshair hide/restore,
4322 only do it for the sub-paths which require it.
4324 2011-04-06 Peter Clifton * pcjc2 AT cam dot ac dot uk *
4326 * src/action.c: action.c: Combine the crosshair / restore for all
4327 paths in click_cb() Reduces code duplication in the different sub-paths of this routine.
4329 2011-04-06 Peter Clifton * pcjc2 AT cam dot ac dot uk *
4331 * src/action.c, src/buffer.c, src/hid/gtk/gui-command-window.c,
4332 src/report.c: Don't undraw the crosshair attached object when
4333 showing dialogue prompts
4335 2011-04-06 Peter Clifton * pcjc2 AT cam dot ac dot uk *
4337 * src/action.c: action.c: Remove commented out line of code Left from commit 089fbaf59c78fe75475db737e7e2827cd745d570 (Initial
4338 C++ compatibility patch)
4340 2011-04-03 Peter Clifton * pcjc2 AT cam dot ac dot uk *
4342 * : Commit hook test This commit is deliberately blank, but should close bug lp-700413
4343 due to the line below. Closes-bug: lp-700413
4345 2011-02-11 Felix Ruoff * Felix AT posaunenmission dot de *
4347 * src/draw.c: Remove unused function DrawVText() used GDK; it shouldn't have been implemented this way in
4348 any case. Closes-bug: lp-717294
4350 2011-03-23 Felix Ruoff * Felix AT posaunenmission dot de *
4352 * src/hid/gtk/gui-dialog-print.c: Fix warning at exporting png with
4353 GTK+ GUI An 'Gtk-CRITICAL'-Error was thrown on opening the png-exporter
4354 dialog because there is no default-string for the 'png-bloat'
4355 option. Closes-bug: lp-740526
4357 2011-03-28 Peter Clifton * pcjc2 AT cam dot ac dot uk *
4359 * src/crosshair.c: crosshair.c: Remove comment which is no longer
4362 2011-03-27 Peter Clifton * pcjc2 AT cam dot ac dot uk *
4364 * src/action.c, src/buffer.c, src/crosshair.c, src/crosshair.h,
4365 src/draw.c, src/hid/gtk/gtkhid-gdk.c, src/hid/gtk/gtkhid-main.c,
4366 src/hid/gtk/gui-command-window.c, src/hid/gtk/gui-misc.c,
4367 src/hid/gtk/gui-output-events.c, src/hid/gtk/gui-top-window.c,
4368 src/hid/lesstif/main.c, src/misc.c, src/report.c, src/set.c: Remove
4369 BlockToo argument from various crosshair hide / restore functions Goodness knows what it is supposed to do, but everything appears to
4370 work fine without it. For the majority of cases, the argument passed
4371 is true. When passed as false, the effect is to surpress drawing an attached
4372 selection / rubberband rectangle in the AttachedBox.state ==
4373 STATE_THIRD state. Digging through the version control history, this code appears to
4374 have been present since the project was initially placed under CVS
4375 control. The 23 places this argument was previously false are: ActionMovePointer - HideCrosshair (false); - RestoreCrosshair (false); EventMoveCrosshair - RestoreCrosshair (false); ActionDisplay - RestoreCrosshair (false); ActionFreeRotateBuffer - HideCrosshair(false); - RestoreCrosshair(false); MoveCrosshairAbsolute - HideCrosshair (false); ghid_invalidate_all - RestoreCrosshair (FALSE); ScrollAction (GTK HID) - HideCrosshair (FALSE); - RestoreCrosshair (FALSE); ghid_port_ranges_changed - HideCrosshair (FALSE); ghid_note_event_location - RestoreCrosshair (false); idle_proc (Lesstif HID) - CrosshairOn (0); CenterDisplay - RestoreCrosshair(false); ReportDialog - HideCrosshair (false); - RestoreCrosshair (false); ReportFoundPins - HideCrosshair (false); - RestoreCrosshair (false); ReportNetLength - HideCrosshair (false); - RestoreCrosshair (false); SetLocalRef - RestoreCrosshair (false); - HideCrosshair (false); - RestoreCrosshair (false);
4377 2011-03-27 Peter Clifton * pcjc2 AT cam dot ac dot uk *
4379 * src/action.c, src/crosshair.c, src/crosshair.h: Remove visibility
4380 overriding argument from DrawMark() Because of the places it was used, we can gaurantee this doesn't
4381 change any behaviour - the mark visibility status is always correct,
4382 so doesn't need overriding.
4384 2011-03-27 Peter Clifton * pcjc2 AT cam dot ac dot uk *
4386 * src/hid/gtk/gtkhid-gdk.c: hid/gtk: g_return_if_reached() for
4387 receipt of gui->use_mask(HID_MASK_BEFORE) This means one less untranslated printf which is never hit. If for
4388 some reason the core sends us one of these - logging a warning and
4389 continuing is probably better than a hard abort()
4391 2011-03-26 Peter Clifton * pcjc2 AT cam dot ac dot uk *
4393 * src/draw.c: draw.c: Don't make GUI drawing calls to erase objects Changing the colour here is unnecessary (as drawing is deferred).
4394 Delete the gui->set_color() calls.
4396 2011-03-26 Peter Clifton * pcjc2 AT cam dot ac dot uk *
4398 * src/change.c, src/find.c: Allow zero clearance pads and pins to
4399 touch polygons This was already supported for vias, lets be consistent.
4401 2011-03-27 Peter Clifton * pcjc2 AT cam dot ac dot uk *
4403 * src/draw.c: draw.c: Fix mask drawing at high zooms (only draw the
4404 bit on-screen) This probably papers over a bug in the GTK hid's fill_rect routine,
4405 as the only reason this should fix anything is because it avoids
4406 coordinate overflow at high zoom. The GTK hid really ought to clip coords to the screen before
4407 transforming them for rendering.
4409 2011-03-27 Peter Clifton * pcjc2 AT cam dot ac dot uk *
4411 * src/draw.c: draw.c: Tidy up mask drawing code Since the gerber HID now supports putting the outline on various
4412 layers, we can also safely remove the commented out code for doing
4415 2011-03-26 Peter Clifton * pcjc2 AT cam dot ac dot uk *
4417 * src/hid/gtk/gtkhid-main.c: hid/gtk: Make benchmark()
4418 implementation suit multiple drawing models Invalidate and process updates, rather than calling redraw directly.
4419 This suits the coming GL renderer which will use an
4420 invalidate/expose model.
4422 2011-03-26 Peter Clifton * pcjc2 AT cam dot ac dot uk *
4424 * src/hid/gtk/gtkhid-gdk.c, src/hid/gtk/gtkhid-main.c,
4425 src/hid/gtk/gui.h: hid/gtk: Move set_layer function into GDK
4426 specific code. Not that this is particularly GDK specific, just that the GL
4427 renderer hopefully coming soon needs to do some extra work.
4429 2011-03-27 Peter Clifton * pcjc2 AT cam dot ac dot uk *
4431 * src/hid/gtk/gtkhid-gdk.c, src/hid/gtk/gui-output-events.c,
4432 src/hid/gtk/gui.h: hid/gtk: Add hooks to tell the render when we
4433 start/stop drawing This is necessary if the renderer requires certain state to be
4434 configured before its drawing calls can be operated.
4436 2011-03-27 Peter Clifton * pcjc2 AT cam dot ac dot uk *
4438 * src/hid/gtk/gtkhid-gdk.c, src/hid/gtk/gui-pinout-preview.c,
4439 src/hid/gtk/gui-top-window.c, src/hid/gtk/gui.h: hid/gtk: Add hooks
4440 for the renderer to initalise drawing widgets
4442 2011-03-26 Peter Clifton * pcjc2 AT cam dot ac dot uk *
4444 * src/hid/gtk/gui-top-window.c: hid/gtk: Remove some unnecessary
4445 gtk_widget_realize() calls.
4447 2011-03-26 Peter Clifton * pcjc2 AT cam dot ac dot uk *
4449 * src/hid/gerber/gerber.c: hid/gerber: Remove unused variables
4450 outline_trace_size and absolute Left over accidentally from commit
4451 35b137c3e193471e07f0873dfb149cebd059dca2
4453 2011-03-26 Peter Clifton * pcjc2 AT cam dot ac dot uk *
4455 * src/hid/gtk/gtkhid-gdk.c, src/hid/gtk/gui-output-events.c,
4456 src/hid/gtk/gui-top-window.c, src/hid/gtk/gui.h: hid/gtk: Create a
4457 private structure for the gdk render backend This is in an effort to isolate some of its internals from the rest
4458 of the GTK hid. Also create a hook for configure events on the main drawing area to
4459 allow the renderer to reconfigure its-self as necessary as the area
4462 2011-03-26 Peter Clifton * pcjc2 AT cam dot ac dot uk *
4464 * src/Makefile.am, src/hid/gtk/gtkhid-gdk.c,
4465 src/hid/gtk/gui-output-events.c, src/hid/gtk/gui-pinout-preview.c,
4466 src/hid/gtk/gui-render-pixmap.c, src/hid/gtk/gui-top-window.c,
4467 src/hid/gtk/gui.h: hid/gtk: Move more GDK specific routines to
4470 2011-03-26 Peter Clifton * pcjc2 AT cam dot ac dot uk *
4472 * src/hid/gerber/gerber.c: hid/gerber: Remove option for thickness
4473 of auto-generated outline layer We don't mess with the thickness of the user's hand-drawn outline,
4474 and this option implies that we do. I cannot think of a sensible way
4475 to present the option without confusing the user, so lets remove it. Whilst the previous default of 10 mil was fine, 8 mil matches the
4476 width used on the fab drawing, so I have changed to that value.
4478 2011-03-26 Peter Clifton * pcjc2 AT cam dot ac dot uk *
4480 * src/print.c: src/print.c: Fix fab drawing width text annotation. The text hard-coded that the outline is 10mil, in fact it is not,
4481 the current #define sets it at 8 mil. Report the actual value used.
4483 2011-03-23 Ineiev * ineiev AT users dot berlios dot de *
4485 * src/hid/gtk/gui-misc.c: suppress annoying decimals in relative
4486 coordinates The threshold for non-aligned object is increased because in case of
4487 relative coordinates the round-off error may double. Closes-bug: lp-699452 (sf-2117383) Closes-bug: lp-699169
4490 2011-03-22 DJ Delorie * dj AT delorie dot com *
4492 * src/file.c, src/global.h: Save footprints as footprints. If the user loads a footprint as a PCB (i.e. File->Load) and tries
4493 to save it, save only the elements in the pcb, not the whole pcb.
4495 2011-03-22 DJ Delorie * dj AT delorie dot com *
4497 * src/misc.c, src/misc.h: Fix mkdir() in plugins. Plugins include misc.h without having a valid config.h, which meant
4498 they'd get a build error. This patch moves the error check into
4499 pcb's misc.c, which always has a config.h, and lets plugins have a
4500 MKDIR() macro that uses pcb's detected values.
4502 2011-03-22 DJ Delorie * dj AT delorie dot com *
4504 * src/hid/gerber/gerber.c: Add copy-outline mode New gerber export options to copy the outline layer onto one or more
4505 other layers. Some fabs want the outline separate; others want it
4506 on a "working" layer.
4508 2011-03-22 DJ Delorie * dj AT delorie dot com *
4510 * src/misc.c: Allow space between value and units in GetValue().
4512 2011-03-22 Ineiev * ineiev AT users dot berlios dot de *
4514 * src/polygon.c: simplify an expression return to the form written in d5d894d977e610 (lost in
4517 2011-03-06 Ineiev * ineiev AT users dot berlios dot de *
4519 * src/action.c, src/const.h, src/crosshair.c, src/gpcb-menu.res,
4520 src/hid/gtk/gui-misc.c, src/misc.c, src/misc.h, src/pcb-menu.res,
4521 src/set.c, src/set.h: (GTK HID) fix annoying decimals When in metric grid mode, the coordinates are displayed with
4522 irregular tails of nines, e.g. "116.9998 43.9999" when the grid is
4523 set to 1mm. The fix includes using more precise metric-to-imperial and crosshair
4524 calculations and fitting crosshair values into metric grids. To address the issue in a really reliable way we need at least one
4525 more separate variable, to explicitly mark the grid as metric (as
4526 opposed to the displayed units); this flag should also be saved in
4527 PCB files. First reported by Kai-Martin Knaak. Closes-bug: lp-699452 (sf-2117383) Closes-bug: lp-699169
4530 2009-11-27 Ineiev * ineiev AT users dot berlios dot de *
4532 * doc/pcb.texi: fix sections hierarhy
4534 2010-12-07 Felix Ruoff * Felix AT posaunenmission dot de *
4536 * src/action.c, src/buffer.c, src/djopt.c, src/fontmode.c,
4537 src/hid/gtk/gui-top-window.c, src/move.c: Cleanup action
4538 documentation Add missing documentation * Display(ToggleLockNames) * Display(ToggleOnlyNames) * Select(Object) Remove invalid documentation * Connection(Measure) * Display(Scroll, Direction) * Display(Step, direction, amount, units) Cosmetic modifications: * dots at end of sentences * capital letter at start of sentences * remove some curious signs at the beginning of some lines. * fix a couple of typos Closes-bug: lp-699506
4540 2011-03-12 DJ Delorie * dj AT delorie dot com *
4542 * src/misc.h: Make io.h inclusion conditional on the mingw case.
4544 2011-01-23 Bob Paddock * bobpspam AT gmail dot com *
4546 * configure.ac, m4/m4_ax_func_mkdir.m4, src/hid/common/hidinit.c,
4547 src/hid/gtk/gui-config.c, src/misc.h: mkdir() takes only one
4548 argument under WIN32. Add check whether mkdir() is mkdir or _mkdir, and whether it takes
4549 one or two arguments. WIN32 mkdir takes one argument and POSIX
4550 takes two. Use MKDIR() macro from misc.h everyplace to get correct behavior
4551 depending on platform.
4553 2011-01-23 Bob Paddock * bobpspam AT gmail dot com *
4555 * configure.ac, src/action.c, src/hid/png/png.c, src/main.c: Use
4556 rand() in place of random(). The 'random', 'srandom', functions are those from BSD derived
4557 UNIX's, and may not be available under WIN32. The 'rand' and
4558 'srand' functions are required by the ANSI standard. rand(): Return a random integer between 0 and RAND_MAX inclusive.
4559 random(): Return a random long integer between 0 and RAND_MAX
4560 inclusive. Standard MinGW stdlib.h only supports rand() and RAND_MAX is limited
4561 to the 32 bit value of 32767, which is significantly smaller than
4562 that returned by random(). This turncation of range should not
4563 effect usage in our application. Added srand( time(NULL) ) to main.c to set the seed.
4565 2010-12-31 Bert Timmerman * bert dot timmerman AT xs4all dot nl *
4567 * po/LINGUAS: Added an entry for the Dutch translation in LINGUAS.
4569 2010-12-31 Bert Timmerman * bert dot timmerman AT xs4all dot nl *
4571 * po/nl.po: First issue of the Dutch translation.
4573 2011-02-14 Krzysztof Kosciuszkiewicz * k dot kosciuszkiewicz AT gmail dot com *
4575 * src/hid/gtk/gui-library-window.c: hid/gtk: handle CTRL-C in
4576 library window Handle CTRL-C keypress in library window and copy name of the
4577 selected component into the default GTK clipboard. The change facilitates workflow where one browses footprints in pcb
4578 and copies component names into gattrib or gschem.
4580 2011-03-10 Felix Ruoff * Felix AT posaunenmission dot de *
4582 * doc/pcb.texi: Describe layer groupings in GTK+ GUI Add information to the documentation where the 'Edit Layer Grouping'
4583 option can be found in the GTK+ GUI. Closes-bug: lp-699175
4585 2011-03-07 Kai-Martin Knaak * kmk AT lilalaser dot de *
4587 * doc/pcb.texi: expand the regexp appendix in pcb manual * Add special character "|" to concatenate * Add special character $" to denote the end of a string * Mention the special meaning of brackets. * Make the table of examples conform to "example -> description" rather than the other way round. * Add examples for the use of "|", "[]" and "{}". Closes-bug: lp-723931
4589 2011-01-31 Markus Hitter * mah AT jump-ing dot de *
4591 * gts/.gitignore, tests/.gitignore: Clean up "git status" output. Closes-bug: lp-710719
4593 2011-02-25 Stephen Ecob * silicon dot on dot inspiration AT gmail dot com *
4595 * src/draw.c: better heuristics for paste openings Prohibit paste windows wider than mask ones (suggested by Kai-Martin
4596 Knaak). Suppress zero width paste windows (suggested by DJ Delorie). Discussed on
4597 http://www.seul.org/pipermail/geda-user/2011-February/052413.html Closes-bug: lp-718342
4599 2011-02-25 Peter Clifton * pcjc2 AT cam dot ac dot uk *
4601 * src/autoroute.c: Fix auto-router - we need to actually increment
4602 the dir variable! Was broken accidentally in commit
4603 5f0f788dc12a10a3c01ade7cf00d5ed63922ca47 (Initial C++ compatibility patch)
4605 2011-02-21 Ineiev * ineiev AT users dot berlios dot de *
4607 * src/polygon.c: fix polygon regression Introduced by 2d8dc8a3a3a55158b4e6278dd9f40588e4111c2d Reported by Kai-Martin Knaak
4609 2011-02-19 Peter Clifton * pcjc2 AT cam dot ac dot uk *
4611 * src/draw.c: Fix solder mask drawing glitch in pcb Applied patch from lp-699498 by rdrehmel Closes-bug: lp-699498
4613 2011-02-10 DJ Delorie * dj AT delorie dot com *
4615 * src/strflags.c: Use onsolder for text, not auto. The flags table wasn't using onsolder for text, which meant the
4616 default "auto" was used for it, which doesn't make sense. This
4617 makes text on the solder side use the "onsolder" name instead.
4619 2011-01-27 DJ Delorie * dj AT delorie dot com *
4621 * src/hid/lesstif/main.c: Conditionally use "class" or "c_class"
4622 depending on the compiler language. The X11 headers define some classes differently based on whether
4623 they're being used for C or C++, so we have to make our access to
4624 them conditional also.
4626 2011-01-27 DJ Delorie * dj AT delorie dot com *
4628 * src/hid/batch/batch.c: C++ compatibility for the batch HID. Just a keyword rename (xor).
4630 2011-01-27 DJ Delorie * dj AT delorie dot com *
4632 * src/hid/lesstif/dialogs.c, src/hid/lesstif/lesstif.h,
4633 src/hid/lesstif/main.c, src/hid/lesstif/menu.c,
4634 src/hid/lesstif/styles.c: C++ compatibility for the lesstif HID. Minor changes - casts, consts, keyword renames, so that the lesstif
4635 HID can be compiled as C or C++.
4637 2011-01-27 Peter Clifton * pcjc2 AT cam dot ac dot uk *
4639 * src/change.c: change.c: Restore and clear to polygons when
4640 changing hole sizes This is more consistent with other code-paths and is useful if the
4641 thermal gemoetry were to depend in on the hole size (which it
4642 doesn't currently, but used to do before the clipper branch).
4644 2011-01-24 Markus Hitter * mah AT jump-ing dot de *
4646 * configure.ac: configure.ac: remove the now obsolete test for
4647 gethostname(). No longer required since commit
4648 00c556b02dfa0113eab62b894eff4cf5d55b8e5f Reviewed-by: Peter Clifton * pcjc2 AT cam dot ac dot uk *
4649 Affects-bug: lp-703914
4651 2011-01-23 Markus Hitter * mah AT jump-ing dot de *
4653 * doc/gs/fb-blinker.pcb, doc/gs/fb-led-5.pcb, doc/gs/fb-led.pcb,
4654 doc/gs/fb-smt.pcb, doc/gs/term-annulus-1.pcb,
4655 doc/gs/term-clearance-1.pcb, doc/gs/term-element-1.pcb,
4656 doc/gs/term-pad-1.pcb, doc/gs/term-pin-1.pcb,
4657 doc/gs/term-platedhole-1.pcb, doc/gs/term-tented-1.pcb,
4658 doc/gs/term-thermal-1.pcb, doc/gs/term-thickness-1.pcb,
4659 doc/pad.pcb, doc/puller.pcb, doc/thermal.pcb, example/LED.pcb,
4660 example/LED2.pcb, tests/inputs/bom_general.pcb,
4661 tests/inputs/gcode_oneline.pcb, tests/inputs/gerber_oneline.pcb,
4662 tutorial/tut1.pcb: Remove all date, user and host comments on all
4663 test and sample files. These items are no longer written, so sample files shouldn't contain
4664 them either. Usually, this was line 2...4. Reviewed-by: Peter Clifton * pcjc2 AT cam dot ac dot uk *
4665 Affects-bug: lp-703914
4667 2011-01-23 Markus Hitter * mah AT jump-ing dot de *
4669 * src/file.c: src/file.c: don't write user name or date to the
4670 stored layout file. Notes from Peter Clifton: The consensus from bug lp-703914 was that that recording the
4671 username, data and host which produced the file is unnecessary and
4672 causes version control clashes which are otherwise unnecessary. Reviewed-by: Peter Clifton * pcjc2 AT cam dot ac dot uk *
4673 Closes-bug: lp-703914
4675 2011-01-22 Bob Paddock * bobpspam AT gmail dot com *
4677 * src/action.c: Compiling with MinGW requires cast to const for
4678 _spawnvp to compile without warning.
4680 2011-01-22 Bob Paddock * bobpspam AT gmail dot com *
4682 * src/hid/gcode/gcode.c, src/hid/nelma/nelma.c: Add missing
4683 Message() prototype to remove warning about same.
4685 2011-01-22 Bob Paddock * bobpspam AT gmail dot com *
4687 * src/polygon1.c: Initialize min_dist to zero before using in if().
4689 2011-01-23 Newell Jensen * pillar2012 AT gmail dot com *
4691 * configure.ac, src/action.c, src/autoplace.c, src/autoroute.c,
4692 src/change.c, src/create.c, src/dbus-pcbmain.c, src/draw.c,
4693 src/drill.c, src/edif.y, src/file.c, src/find.c, src/free_atexit.c,
4694 src/global.h, src/heap.c, src/hid.h, src/hid/bom/bom.c,
4695 src/hid/common/actions.c, src/hid/common/draw_helpers.c,
4696 src/hid/common/extents.c, src/hid/common/flags.c,
4697 src/hid/common/hid_resource.c, src/hid/common/hidinit.c,
4698 src/hid/common/hidnogui.c, src/hid/gcode/gcode.c,
4699 src/hid/gerber/gerber.c, src/hid/gtk/gtkhid-gdk.c,
4700 src/hid/gtk/gtkhid-main.c, src/hid/gtk/gui-command-window.c,
4701 src/hid/gtk/gui-config.c, src/hid/gtk/gui-dialog-print.c,
4702 src/hid/gtk/gui-dialog-size.c, src/hid/gtk/gui-dialog.c,
4703 src/hid/gtk/gui-drc-window.c, src/hid/gtk/gui-library-window.c,
4704 src/hid/gtk/gui-log-window.c, src/hid/gtk/gui-misc.c,
4705 src/hid/gtk/gui-netlist-window.c, src/hid/gtk/gui-output-events.c,
4706 src/hid/gtk/gui-pinout-preview.c, src/hid/gtk/gui-top-window.c,
4707 src/hid/gtk/gui-utils.c, src/hid/gtk/gui.h, src/hid/nelma/nelma.c,
4708 src/hid/png/png.c, src/hid/ps/eps.c, src/hid/ps/ps.c, src/insert.c,
4709 src/intersect.c, src/main.c, src/misc.c, src/move.c, src/mtspace.c,
4710 src/mymem.c, src/netlist.c, src/parse_l.l, src/parse_y.y,
4711 src/polygon.c, src/polygon1.c, src/puller.c, src/rats.c,
4712 src/rats.h, src/report.c, src/rtree.c, src/toporouter.c,
4713 src/undo.c, src/vector.c, src/vendor.c: Initial C++ compatibility
4714 patch Doesn't cover lesstif or batch hids. Makes source code build
4715 without warnings on C, and build with warnings on C++.
4717 2011-01-23 DJ Delorie * dj AT delorie dot com *
4719 * src/hid/lesstif/netlist.c: Add header for Draw() prototype. Silences a warning building the lesstif hid.
4721 2011-01-23 DJ Delorie * dj AT delorie dot com *
4723 * src/edif.y: FindContext() takes an int, not a pointer.
4725 2011-01-14 Markus Hitter * mah AT jump-ing dot de *
4727 * INSTALL: INSTALL: add instructions on how to create configure. Closes-bug: lp-702484
4729 2011-01-07 Jared Casper * jaredcasper AT gmail dot com *
4731 * configure.ac: Heed and remove warning issued by autoconf 2.68. Starting in autoconf 2.68, "the macros AC_PREPROC_IFELSE,
4732 AC_COMPILE_IFELSE, AC_LINK_IFELSE, and AC_RUN_IFELSE now warn if the
4733 first argument failed to use AC_LANG_SOURCE or AC_LANG_PROGRAM to
4734 generate the conftest file contents." Closes-bug: lp-700180 Reviewed-by: Peter Clifton * pcjc2 AT cam dot ac *
4736 2009-02-20 Ineiev * ineiev AT users dot sourceforge dot net *
4738 * src/hid/gtk/gui-output-events.c: hid/gtk: Fix disappearing
4739 reference mark Fixes the following symptoms (Bug sf-1882970 reported by Steven
4740 Michalske): (0) when the cursor leaves the window, the mark disappears (with attached objects); when the cursor enters again, the mark is redrawn only if there are any attached objects; (1) When there are no attached objects, the mark disappears on button press, but is not redrawn again when button press and release form a click. (Commit message edited by Peter Clifton * pcjc2 AT cam dot ac dot
4741 uk *) Reviewed-by: Peter Clifton * pcjc2 AT cam dot ac dot uk * Closes-bug: lp-699244 Closes-bug: lp-699453
4743 2011-01-11 DJ Delorie * dj AT delorie dot com *
4745 * src/hid/lpr/lpr.c, src/hid/ps/ps.c: Fix postscript page scaling Calculate page sizes *after* selecting the page, not before.
4747 2011-01-10 DJ Delorie * dj AT delorie dot com *
4749 * src/misc.c: Calculate text bounding boxes based on that actual
4750 drawn glyphs. Previously, a text's bounding box was calculated based on overall
4751 font metrics, not the actual glyphs. This meant that text clearing
4752 a polygon would have far more space around it than called for.
4754 2011-01-10 DJ Delorie * dj AT delorie dot com *
4756 * src/file.c: Make new PCB active during parsing Set the global PCB pointer to the "new" pcb while it's being loaded.
4757 Some of the creation functions use the DRC values in PCB to compute,
4758 for example, bounding boxes. Before, it used whatever was hanging
4759 around in the previous PCB (or the default values).
4761 2011-01-09 DJ Delorie * dj AT delorie dot com *
4763 * Makefile.am, configure.ac, gts/.gitignore, gts/Makefile.am,
4764 gts/NOTES, gts/bbtree.c, gts/boolean.c, gts/cdt.c, gts/container.c,
4765 gts/curvature.c, gts/edge.c, gts/eheap.c, gts/face.c, gts/fifo.c,
4766 gts/graph.c, gts/gts-private.h, gts/gts.h, gts/heap.c,
4767 gts/hsurface.c, gts/iso.c, gts/isotetra.c, gts/kdtree.c,
4768 gts/matrix.c, gts/misc.c, gts/named.c, gts/object.c, gts/oocs.c,
4769 gts/partition.c, gts/pgraph.c, gts/point.c, gts/predicates.c,
4770 gts/predicates.h, gts/psurface.c, gts/refine.c, gts/rounding.h,
4771 gts/segment.c, gts/split.c, gts/stripe.c, gts/surface.c,
4772 gts/triangle.c, gts/tribox3.c, gts/vertex.c, gts/vopt.c,
4773 src/Makefile.am, src/gts/.gitignore, src/gts/NOTES,
4774 src/gts/bbtree.c, src/gts/boolean.c, src/gts/cdt.c,
4775 src/gts/container.c, src/gts/curvature.c, src/gts/edge.c,
4776 src/gts/eheap.c, src/gts/face.c, src/gts/fifo.c, src/gts/graph.c,
4777 src/gts/gts-private.h, src/gts/gts.h, src/gts/heap.c,
4778 src/gts/hsurface.c, src/gts/iso.c, src/gts/isotetra.c,
4779 src/gts/kdtree.c, src/gts/matrix.c, src/gts/misc.c,
4780 src/gts/named.c, src/gts/object.c, src/gts/oocs.c,
4781 src/gts/partition.c, src/gts/pgraph.c, src/gts/point.c,
4782 src/gts/predicates.c, src/gts/predicates.h, src/gts/psurface.c,
4783 src/gts/refine.c, src/gts/rounding.h, src/gts/segment.c,
4784 src/gts/split.c, src/gts/stripe.c, src/gts/surface.c,
4785 src/gts/triangle.c, src/gts/tribox3.c, src/gts/vertex.c,
4786 src/gts/vopt.c: Add top-level build changes to enable C++
4787 compilation This patch moves GTS (gts.sourceforce.net) out of the src/ tree and
4788 gives it its own Makefile, and changes src/Makefile.am so that C++
4789 compilation is used if configure requests it. ./configure --enable-build-with-cxx ./configure
4790 --disable-build-with-cxx (the default is disable at the moment) Makefiles with these lines will use C++ if the user requests it: CC = @CC_OR_CXX@ CFLAGS = @CC_OR_CXX_FLAGS@
4792 2011-01-07 DJ Delorie * dj AT delorie dot com *
4794 * src/buffer.c: Support far-side polygons when converting buffer to
4797 2011-01-07 DJ Delorie * dj AT delorie dot com *
4799 * src/action.c: Fix command-injection bug in Import() Use "--" before the list of schematics, to prevent the src list from
4800 containing other gnetlist options (or arbitrary guile code)
4802 2011-01-07 Peter Clifton * pcjc2 AT cam dot ac dot uk *
4804 * src/hid/gtk/gui-top-window.c: hid/gtk: Fix prelight state for
4805 layer button to show current status One of the ways we identify whether a layer is switched on or off is
4806 by changing the background colour of the GtkToggleButton
4807 representing that layer. Fix the prelight (mouse-over) background style to match the current
4808 button state, so as to give immediate feed-back when the user
4809 presses the button, and make the interface less confusing. Closes-bug: lp-699150
4811 2010-12-28 Felix Ruoff * Felix AT posaunenmission dot de *
4813 * src/hid/gtk/gui-command-window.c, src/hid/gtk/gui-dialog-size.c,
4814 src/hid/gtk/gui-misc.c, src/hid/gtk/gui-output-events.c,
4815 src/hid/gtk/gui-top-window.c: hid/gtk: Modify window title to match
4816 the GNOME Human Interface Guidelines Modifies the title of the main window as suggested in the GNOME HIG:
4818 (http://library.gnome.org/devel/hig-book/nightly/windows-primary.html)The following will be shown there: - A star (*) if the layout has unsaved changes (this patch also removes this sign from the statusbar, where it currently is) - The name of the layout, if set in the config-dialog ('Put layout name on the window title bar') - The filename (in braces, if layout name is shown) - The string " - PCB" Closes-bug: lp-699509 Acked-by: Peter Clifton * pcjc2 AT cam dot ac
4819 dot uk * (Also modified commit message)
4821 2011-01-05 DJ Delorie * dj AT delorie dot com *
4823 * src/select.c: Fix "select pads on hidden far side" If an SMT pad is on the far side of the board, and the far side
4824 layer is not visible, do not select that pad. Exception: if that
4825 pad is part of an element which *is* on the visible side, the pad is
4826 selected as part of selecting the whole element. But, elements on
4827 the far side (the common case) won't have their pads selected when
4828 those pads aren't visible.
4830 2011-01-04 DJ Delorie * dj AT delorie dot com *
4832 * src/hid/lesstif/main.c: Allow zoom-out-past-board for Lesstif The lesstif GUI has been modified two ways: 1. You may zoom out "past" the board, making the board smaller than
4833 the window. Note that the crosshair is still limited to the board's
4834 extents. 2. You may pan the board so that edges need not be on the edge of
4835 the window, such as centering an edge for inspection. Note that the smallest the board can be is 1/10th the window size.
4836 While this is arbitrary, it's easily changed if needed, and avoids
4837 problems with miniscule boards (and thus maxiscule coordinate
4838 systems). The 'v' key still zooms the board to fit, but now centers the board
4839 in the window rather than placing it at the upper left.
4841 2011-01-04 DJ Delorie * dj AT delorie dot com *
4843 * src/hid/lesstif/netlist.c: ResetConncetions -> ResetConnections Typo.
4845 2011-01-04 DJ Delorie * dj AT delorie dot com *
4847 * src/hid/lesstif/menu.c: Fix lesstif segfault in key handling. When a key handler calls an action, the key table might change
4848 before the action returns (via nested key handlers), so save a
4849 pointer to the table we're parsing to ensure it will be around when
4852 2011-01-04 DJ Delorie * dj AT delorie dot com *
4854 * lib/geda.inc: Add 80-pin headers. Add 80 pin DIP and Ribbon 0.1" header macros to the usual list.
4856 2010-12-28 Peter Clifton * pcjc2 AT cam dot ac dot uk *
4858 * src/hid/gtk/gtkhid-main.c, src/hid/gtk/gui-netlist-window.c,
4859 src/hid/gtk/gui.h: hid/gtk: Fix warping pointer to correct location
4860 from netlist window We weren't updating the pointer location after having panned the
4861 connection into the center of the screen. Also fixes the open-coded panning code to work for flipped views.
4862 The patch is pretty horrible at best, but appears to fix the issue. Unfortunately the locical call to use (the "Center" action) cannot
4863 be made through the generic action code as we need to specify the
4864 location explicitly. We could perhaps export the Centre action
4865 function, or refactor it as a wrapper around a helper function which
4866 we would then export and call. I aim to eventually rework the GTK HID's coordinate transforms
4867 (including flipped views), event handling, view panning and pointer
4868 warping in order to give greater sepeatation between the renderer
4869 agnostic parts of the HID and the renderer. This will be needed for
4870 the 3D portions of the PCB+GL branch. It seems most sensible to start refactoring from a state where the
4871 existing code at least functions correctly (even if it isn't
4872 pretty), rather than work in fixes as I refactor.
4874 2010-12-27 Peter Clifton * pcjc2 AT cam dot ac dot uk *
4876 * src/hid/gtk/gtkhid-gdk.c, src/hid/gtk/gtkhid-main.c: hid/gtk:
4877 Remove unused Vx2 and Vy2 functions from gtkhid-{main,gdk}.c
4879 2010-12-26 Peter Clifton * pcjc2 AT cam dot ac dot uk *
4881 * src/hid/gtk/gui-output-events.c: hid/gtk: Remove unused file scope
4882 variables event_x and event_y
4884 2010-12-27 Peter Clifton * pcjc2 AT cam dot ac dot uk *
4886 * src/hid/gtk/gtkhid-main.c: hid/gtk: Compute warp pointer offset
4887 without reading current position This is closer to the way the old code which used the an
4888 XWarpPointer call worked, and makes the two code-paths where we warp
4889 the pointer consistent. Also, remove some unnecessary comments which
4890 were more relevant to explain why we previously had too
4893 2010-12-27 Peter Clifton * pcjc2 AT cam dot ac dot uk *
4895 * src/hid/gtk/gtkhid-main.c: hid/gtk: Fix "Center" action in a
4896 couple of ways We need to update the adjustments together otherwise the center
4897 action will only work on one axis at a time. Fix typo for out-of bounds check which mixed width and height.
4899 2010-12-27 Peter Clifton * pcjc2 AT cam dot ac dot uk *
4901 * configure.ac, src/hid/gtk/gtkhid-main.c: hid/gtk: Clean up mouse
4902 warping code now we require a later GTK version Remove the X11 specific implementation and remove some comments in
4903 the GDK one which were more relevant to explain why we previously
4904 had two implementations.
4906 2010-12-27 Peter Clifton * pcjc2 AT cam dot ac dot uk *
4908 * src/hid/gtk/gui-dialog.c: Cleanup conditional code now we require
4911 2010-12-27 Peter Clifton * pcjc2 AT cam dot ac dot uk *
4913 * configure.ac: Bump required GTK version in configure.ac test to
4914 2.12 This is required, as we utilise some of the newer APIs. NB: GTK+ 2.12.0 was released in September 2007
4916 2010-12-26 Peter Clifton * pcjc2 AT cam dot ac dot uk *
4918 * src/hid/gtk/gui.h: hid/gtk: Remove unused DRAW_Z, VIEW_Z macros
4920 2010-12-25 Peter Clifton * pcjc2 AT cam dot ac dot uk *
4922 * src/hid/gtk/gui-output-events.c: hid/gtk: Don't avoid panning when
4923 further X11 events are pending Since we are using motion hints, we should not get bogged down with
4924 motion events, so we should probably just act upon them.
4926 2010-12-25 Peter Clifton * pcjc2 AT cam dot ac dot uk *
4928 * src/hid/gtk/gui-output-events.c, src/hid/gtk/gui-top-window.c,
4929 src/hid/gtk/gui.h: hid/gtk: Use motion notify events to avoid too
4930 rapid pointer events Not fixing a specific problem - just a backport from the GL branch.
4932 2010-12-25 Peter Clifton * pcjc2 AT cam dot ac dot uk *
4934 * src/find.c, src/find.h, src/hid/gtk/gui-netlist-window.c,
4935 src/hid/lesstif/netlist.c, src/rats.c, src/select.c: Revert undo
4936 changes relating to RatFindHook calls This reverts commit 1aac06b665330507ca42f380e38f32875a979cd9 and commit d3b508ca272b7d89aa27f552ab78943f9bed27f9. I made a mistake by assuming the undo data saved by the RatFindHook
4937 (when looking up nets to select) was redundant. I had presumed this
4938 since the flags being set are reset again before we finish
4939 processing. What actually happens, is that further processing sets the SELECTED
4940 flag on the FOUND objects. Undo data is saved for the SELECTED flag
4941 addition, which stores the previous flags of the object. When an
4942 undo is performed, it also restores the FOUND flag we wanted to keep
4943 unset. In order to get back to our original state, we need the RatFindHook
4944 to store undo information for when the FOUND flag was initially set. The ResetConnections() call after the RatFindHook should still be ok
4945 not saving undo information, as it only touches object flags which
4946 will be restored anyway by the undo data now saved by the
4947 RatFindHook. NB: Revert was manually modified to retain an indenting change in
4948 find.c and to add the required changes to select.c, which had
4949 additions using the RatFindHook API since the above reverted commits
4952 2010-12-23 Peter Clifton * pcjc2 AT cam dot ac dot uk *
4954 * src/action.c, src/find.c, src/report.c, src/set.c: Remove Draw()
4955 call from ResetFound*() Let the caller do it This allows multiple changes to be grouped into one repaint
4956 operation. Use this where appropriate, such as the Netlist lookup
4959 2010-12-23 Martin Kupec * martin dot kupec AT kupson dot cz *
4961 * src/action.c, src/const.h, src/select.c: Add NetByName to the
4962 select action options v2: Check Net name appropriately v3: Ensure we set the changed flag Reviewed-by: Peter Clifton * pcjc2 AT cam dot ac dot uk *
4964 2010-12-24 Peter Clifton * pcjc2 AT cam dot ac dot uk *
4966 * src/find.c, src/find.h, src/hid/gtk/gui-netlist-window.c,
4967 src/hid/lesstif/netlist.c, src/rats.c: find.c: Remove "undo"
4968 parameter to RatFindHook Since all callers pass false for the "undo" parameter since the last
4969 commit, remove it from the function prototype. NB: The file-global variable "User", which it previously set can be
4970 assumed to be false, as it defaults to false - and is restored after
4971 any code which temporarily sets it to true.
4973 2010-12-24 Peter Clifton * pcjc2 AT cam dot ac dot uk *
4975 * src/hid/gtk/gui-netlist-window.c, src/hid/lesstif/netlist.c: We
4976 don't need the RatFindHook to save undo state when doing netlist
4977 lookup We already save undo information to get to a known state when
4978 resetting the FOUND flags. Since we later reset back to this state,
4979 we don't need to save undo data.
4981 2010-12-23 Peter Clifton * pcjc2 AT cam dot ac dot uk *
4983 * src/hid/gtk/gui-netlist-window.c, src/hid/lesstif/netlist.c: Fix
4984 netlist selection to save undo information for wiped "FOUND" flags When we wipe the found flags on objects, we should also queue them
4985 for redraw - this fixes that too, as the ResetConnections() argument
4986 controls both redraw AND saving undo data.
4988 2010-12-24 Peter Clifton * pcjc2 AT cam dot ac dot uk *
4990 * src/hid/gtk/gui-netlist-window.c, src/hid/lesstif/netlist.c:
4991 Remove unneeded Undo serial number save / restore in netlist lookup The RatFindHook function does not call anything which will increment
4992 the Undo serial number, so the save / restore calls are not
4995 2010-12-24 Peter Clifton * pcjc2 AT cam dot ac dot uk *
4997 * src/action.c, src/autoroute.c, src/find.c, src/find.h,
4998 src/hid/gtk/gui-netlist-window.c, src/hid/lesstif/netlist.c,
4999 src/rats.c, src/report.c, src/set.c, src/toporouter.c: Fix broken
5000 undo handling for ResetFound*() and ResetConnections() Many callers have this idiom: SaveUndoSerialNumber (); ResetFoundPinsViasAndPads (AndDraw); RestoreUndoSerialNumber (); ResetFoundLinesAndPolygons (AndDraw); The intent is to squash the two operations into one undo operation.
5001 The ResetFound* functions DO increment the Undo serial number but
5002 ONLY if that particular function makes a change. Assume for the example that the first ResetFound* call makes some
5003 change and increments the serial number. This is then reset by the
5004 caller. If the second ResetFound* call doesn't find anything, there
5005 is no overall increment to the serial number. Move the undo serial number handling out of the ResetFound* calls,
5006 and let the callers increment the serial number if desired. To
5007 facilitate this, return a boolean value from these functions to
5008 indicate whether any changes were made which could be undone. For convenience, expose previously static find.c function
5009 ResetConnections() in order to avoid repeating Undo handling in each
5010 caller to the two ResetFound* functions which are often called
5013 2010-12-23 Peter Clifton * pcjc2 AT cam dot ac dot uk *
5015 * src/action.c, src/hid/gtk/gui-netlist-window.c,
5016 src/hid/lesstif/netlist.c, src/select.c: select.c: Remove Draw()
5017 call from SelectConnection Make callers responsible for calling the final Draw(), to avoid
5018 multiple redraws if other operations are to occur, such as changing
5019 "FOUND" flags on objects after making the selection.
5021 2010-12-23 Patrick Bernaud * patrickb AT chez dot com *
5023 * src/free_atexit.h: Fix substitutions for leaky_*alloc functions
5025 2010-12-22 Tibor Palinkas * geda AT igor2 dot repo dot hu *
5027 * src/hid/gtk/gui-top-window.c: hid/gtk: Use leaky_* functions for
5028 deliberate leaks in ghid_ui_info_append Allocate cached temporary memory with the leak_* memory allocation
5029 wrapers which allow these to be freed at exit.
5031 2010-12-22 Tibor Palinkas * geda AT igor2 dot repo dot hu *
5033 * src/free_atexit.c, src/free_atexit.h: free_atexit.c: Add
5034 leaky_calloc() function for deliberately leaked calloc's Stores a pointer to the calloc'd memory to be free'd at exit of the
5035 program. Returned memory must not be free'd manually.
5037 2010-12-22 Peter Clifton * pcjc2 AT cam dot ac dot uk *
5039 * src/report.c: report.c: Fix missing return value
5041 2010-12-22 Peter Clifton * pcjc2 AT cam dot ac dot uk *
5043 * src/toporouter.c: toporouter.c: Make inline functions "static
5044 inline" gcc builds break for CFLAGS="-g" only builds (no -O2). Inlineing is
5045 only performed when optimisation is enabled, and unless we make all
5046 local inlined functions "static inline", it does not emit the
5047 non-inlined assembly for them, resulting in undefined symbols at
5050 2010-12-22 Peter Clifton * pcjc2 AT cam dot ac dot uk *
5052 * src/hid/gtk/gtkhid-gdk.c, src/hid/gtk/gtkhid-main.c,
5053 src/hid/gtk/gui-output-events.c, src/hid/gtk/gui.h: hid/gtk: Move
5054 more gdk specific drawing routines to gtkhid-gdk.c
5056 2010-12-22 Tibor Palinkas * geda AT igor2 dot repo dot hu *
5058 * src/Makefile.am, src/free_atexit.c, src/free_atexit.h, src/main.c:
5059 Add leaky_{malloc,realloc} functions for deliberate non-free'd
5060 allocations These are to be used for local allocations made and cached for the
5061 lifetime of the program (never free'd). Typically, these are stored
5062 in a static char * variable (or similar) within a function. The leaky_*() functions store the addresses of all memory they
5063 allocate, and for debugging builds, free it upon exit of the
5064 program, thus allowing leak detectors such as valgrind to ignore our
5065 deliberate "leaks". The memory returned by leaky_*() must not be free'd. Build system and PCB integration, and leaky_atexit.c reindenting by
5066 Peter Clifton * pcjc2 AT cam dot ac dot uk *
5068 2010-12-21 Peter Clifton * pcjc2 AT cam dot ac dot uk *
5070 * src/parse_l.l: parse_l.l: Fix warning implicit definition of
5071 function ‘CreateBeLenient’ Warning was introduced in commit
5072 e8dd18a2f7b83c6108d2c9398903d4be92e22d4c The required prototype was
5073 added to create.h, but create.h was not included in parse_l.l Note to developers: Please "make clean" and build with "make -s" before pushing changes.
5074 This kind of bug is really easy to catch, and I just recently spent
5075 a log of effort cleaning up PCB's compile so we can catch real bugs! Pretty please?
5077 2010-12-20 Martin Kupec * martin dot kupec AT kupson dot cz *
5079 * src/action.c: action.c: Change macro ARG, to return NULL instead
5080 of 0 When the argument number requested does not exist, return NULL, not
5081 0, as this is more in keeping with the type (char *) normally
5082 returned. Commit message modified by Peter Clifton * pcjc2 AT cam dot ac dot
5085 2010-12-20 Peter Clifton * pcjc2 AT cam dot ac dot uk *
5087 * : commit 7392b020deca9ef155f3b1449f1ad8fac6d6083b Author: Peter
5088 Clifton * pcjc2 AT cam dot ac dot uk * Date: Mon Dec 20 13:54:41
5091 2010-12-20 Peter Clifton * pcjc2 AT cam dot ac dot uk *
5093 * src/crosshair.c, src/search.c, src/search.h: Improve grid snapping
5096 2010-12-19 DJ Delorie * dj AT delorie dot com *
5098 * src/create.c, src/create.h, src/parse_l.l: Allow via copper to
5099 overlap; preserve illegal vias from file. Reduce "overlapping via" tests to check for overlapping drills, not
5100 overlapping copper. If a file being loaded has "illegal" vias, load
5101 them anyway - the check only happens at create time, if the user
5102 figures out a way around it, preserve it.
5104 2010-12-16 DJ Delorie * dj AT delorie dot com *
5106 * src/rats.c: Further work on rats patch. Add a lot of comments to clarify what's happening in that function
5107 (the previous patch was bogus because the function re-uses a
5108 structure in an unintended way). Fixed the logic to be mew
5111 2010-12-16 DJ Delorie * dj AT delorie dot com *
5113 * src/rats.c: Fix rats bug (SF 3137324) When adding rats from a netlist, we want to skip nets with too few
5114 connections, not netlists with too few nets.
5116 2009-02-20 Ineiev * ineiev AT users dot sourceforge dot net *
5118 * src/report.c: report object coordinates in selected units SF patch 1621915 HOW TO TEST load a pcb; Ctrl-R on objects of different types; the
5119 reported units should be either mm or mils according to selected
5120 units 04 Oct 2010: merged with Joerg Wunsch's patch 2995918 "Add
5121 human-readable info to polygon report"
5123 2010-12-12 Ineiev * ineiev AT users dot berlios dot de *
5125 * src/polygon.c: [PATCH] fix bug 2793480 (vias/arcs-to-polygon
5126 clearances) frac_circle(): introduce radius_adjustment factor to make the
5127 polygon outline the arc rather than connet points on the arc ArcPolyNoIntersect(): compute number of segments so that polygon
5128 diverges from the arc no more than 0.02 of required thickness;
5129 adjust outer "arc" radius like in frac_circle()
5131 2010-12-11 DJ Delorie * dj AT delorie dot com *
5133 * src/file.c: Check for special name "(local)" to mean "." When expanding a tree of footprints, we want the symbolic name
5134 "(local)" to mean the "." subdir. Now that we check for chdir()
5135 failures, we can no longer "just work" because the chdir didn't
5138 2010-12-11 David Dandar * ddandar AT users dot sourceforge dot net *
5140 * src/action.c: Let RealignGrid align grid to a pin or pad snap. SF patch 2476262: Realign grid has been broken for a while. Darn mm and mil mix
5141 components were killing me. I got desperate and fixed it, but I'm
5142 not sure if it's the right fix. It does work though. Hope this
5145 2010-12-11 Seb James * seb AT esfnet dot co dot uk *
5147 * src/rats.c: SF patch 1674895: This crash occurs in rats.c, around line 610 in the function
5148 DrawShortestRats() where CreateNewRat() is called with some
5149 arguments which don't exist. It occurred for me when I tried to "optimize rats nest" on an
5150 invalid design. There's no check in DrawShortestRats() that the firstposition and
5151 secondposition pointers are not NULL. firstposition->X (and Y) and
5152 secondposition->X (and Y) are passed as arguments to CreateNewRat().
5153 It is possible in some cases that firstposition and secondposition
5154 are not reset from 0 in the code preceding the call to
5155 CreateNewRat(). In these cases a segfault will occur.
5157 2010-10-09 Cesar Strauss * cstrauss AT not2005 dot cea dot inpe dot br *
5159 * configure.ac, src/action.c: Check for the _spawnvp function and
5162 2010-10-09 Cesar Strauss * cstrauss AT not2005 dot cea dot inpe dot br *
5164 * src/.gitignore: Ignore generated files on Windows.
5166 2010-12-07 Peter Clifton * pcjc2 AT cam dot ac dot uk *
5168 * src/action.c, src/buffer.c, src/command.c, src/create.c,
5169 src/drill.c, src/file.c, src/find.c, src/hid/common/flags.c,
5170 src/hid/gerber/gerber.c, src/hid/gtk/gtkhid-gdk.c,
5171 src/hid/gtk/gui-dialog-size.c, src/hid/gtk/gui-top-window.c,
5172 src/hid/lesstif/main.c, src/hid/lesstif/menu.c,
5173 src/hid/lesstif/styles.c, src/intersect.c, src/main.c, src/misc.c,
5174 src/mymem.c, src/mymem.h, src/netlist.c, src/parse_l.l,
5175 src/parse_y.y, src/rats.c, src/remove.c, src/report.c, src/undo.c:
5176 Remove My* memory allocation routines. Just use the standard APIs
5177 directly This means the following changes: 1. Replace all calls to MyCalloc() with calls to calloc() 2. Replace all calls to MyMalloc() with calls to malloc() 3. Replace all calls to MyRealloc() with calls to realloc() 4. Replace all calls to SaveFree() with calls to free() 5a. Where the MYFREE(x) macro is used and its pointer clearing
5178 side- effect is required, call free (x); and (x) = NULL; directly. 5b. Where the MYFREE(x) macro is used, and (x) is immediately re- assigned, or its location free'd or zero'd, skip the (x) =
5179 NULL; 6. Replace all calls to MyStrdup() with calls to the STRDUP(x)
5180 macro, which expands to (((x) != NULL) ? strdup (x) : NULL). NB: The previous commit already replaced various known "safe" calls
5181 of MyStrdup() with strdup(), when the argument is known to be
5182 non-NULL. 1,2,3 and 6. mean that we discard the following features of the mymem.c allocators: 7. Logging messages when MEM_DEBUF defined 8. Logic to assign 1 unit of memory if 0 is requested 9. Allocation failure handling via MyFatal() -> EmergencySave() With feedback from Stephen Ecob * silicon dot on dot inspiration AT
5183 gmail dot com * 7. Is old debug code which is rarely (if ever) used. Current debug
5184 tools such as Valgrind can do a much better job of memory debugging
5185 now. 8. This is really papering over the possibility of a caller bug, and should never have been included in the first place. 9. This is unlikely to actually ever save someone from loosing their
5186 PCB. Patch created with the assistance and testing of Stephen Ecob *
5187 silicon dot on dot inspiration AT gmail dot com *
5189 2010-12-07 Peter Clifton * pcjc2 AT cam dot ac dot uk *
5191 * src/action.c, src/buffer.c, src/copy.c, src/create.c, src/file.c,
5192 src/fontmode.c, src/main.c, src/misc.c, src/move.c, src/netlist.c,
5193 src/rats.c: Convet some "safe" usage of MyStrdup to plain strdup These cases are ones where we know the caller will not risk passing
5194 a NULL string to duplicate. Patch created with the assistance and testing of Stephen Ecob *
5195 silicon dot on dot inspiration AT gmail dot com *
5197 2010-12-09 Peter Clifton * pcjc2 AT cam dot ac dot uk *
5199 * src/create.c: Ensure CreateNewText() returns NULL if called with
5200 NULL text. Ensuring that text will not be NULL allows us to replace the
5201 MyStrdup call with a simple strdup.
5203 2010-12-10 Peter Clifton * pcjc2 AT cam dot ac dot uk *
5205 * src/file.c: file.c: c Attempt to handle failure of
5206 GetWorkingDirectory() and chdir() Report the error to the user if any GetWorkingDirectory or chdir
5207 call fails. Add attempts to change back to the original working
5208 directory on error paths. Ideally, these functions would be re-implemented to operate without
5209 changing the current working directory at all.
5211 2010-12-10 Peter Clifton * pcjc2 AT cam dot ac dot uk *
5213 * src/action.c, src/change.c: Plug some memory leaks of strings
5214 returned from gui->prompt_for()
5216 2010-12-10 Peter Clifton * pcjc2 AT cam dot ac dot uk *
5218 * src/vendor.c: vendor.c: Fix memory leak and unused variable in
5219 ActionLoadVendorFrom() Also, don't bother testing x != NULL before calling free (x).
5221 2010-12-10 Peter Clifton * pcjc2 AT cam dot ac dot uk *
5223 * src/hid/common/hidnogui.c: hid/common: Fix / re-write
5224 nogui_{prompt_for,fileselect,confirm_dialog}() Fixes some pretty nasty bugs in these functions: 1. These functions must return allocated memory, strdup will do
5225 nicely. 2. fgets will insert the newline character into the buffer, so we
5226 need to check if we just got a '\r' or '\n' as our first character,
5227 not just '\0' when deciding whether to return the default string or
5228 not. 3. DO NOT strcpy a the default string... we don't know if it will overflow our buffer 4. For the "fileselect" case, return NULL if the user didn't give us
5229 a filename, and the caller didn't specify a default string. Prompt
5230 for will return strdup (""), equivalent to what it previously did.
5232 2010-12-10 Peter Clifton * pcjc2 AT cam dot ac dot uk *
5234 * src/hid/batch/batch.c: hid/batch: Use hidnogui as a default base
5235 hid to avoid code duplication
5237 2010-12-09 Peter Clifton * pcjc2 AT cam dot ac dot uk *
5239 * src/action.c: action.c: Mark some strings as translateable in
5242 2010-12-09 Peter Clifton * pcjc2 AT cam dot ac dot uk *
5244 * src/misc.c, src/misc.h, src/mymem.c, src/mymem.h: Make the strings
5245 passed to AttributePutToList and MyStrdup (const char *) Silences some compiler warnings when using const char * strings.
5247 2010-12-09 Peter Clifton * pcjc2 AT cam dot ac dot uk *
5249 * src/hid/lesstif/dialogs.c, src/hid/lesstif/main.c,
5250 src/hid/lesstif/menu.c, src/hid/lesstif/netlist.c,
5251 src/hid/lesstif/styles.c: hid/lesstif: Revert some Boolean->bool
5252 type changes as required by Xt* APIs This is a partial revert of commit
5253 ad5eb5a165442be38624aa622beeb57dc1d2afbd For consistency, I have also reverted the changes of True->true and
5254 False->false when calling X11 APIs.
5256 2010-12-09 Peter Clifton * pcjc2 AT cam dot ac dot uk *
5258 * src/hid/lesstif/dialogs.c: hid/lesstif: Use an intervening size_t
5259 casts to aovid compiler warnings This is to avoid the compiler warning us what we already know.. that
5260 we are passing an integer value cast into what might be a different
5261 sized pointer. (On 64 bit builds).
5263 2010-12-09 Peter Clifton * pcjc2 AT cam dot ac dot uk *
5265 * src/hid/batch/batch.c: hid/batch: Add some missing header files
5268 2010-12-09 Peter Clifton * pcjc2 AT cam dot ac dot uk *
5270 * src/Makefile.am, src/hid/batch/batch.c, src/hid/common/hidinit.h,
5271 src/hid/gcode/gcode.c, src/hid/gerber/gerber.c, src/hid/lpr/lpr.c,
5272 src/hid/nelma/nelma.c, src/hid/png/png.c, src/hid/ps/eps.c,
5273 src/hid/ps/ps.c: hid/common: Provide a header to define
5274 hid_parse_command_line() Avoids having each caller having to pull it in with an extern
5277 2010-12-09 Peter Clifton * pcjc2 AT cam dot ac dot uk *
5279 * src/Makefile.am, src/hid/batch/batch.c, src/hid/common/actions.h,
5280 src/main.c: hid/common: Provide a header file to define
5281 print_actions() Avoids having each caller having to pull it in with an extern
5284 2010-12-09 Peter Clifton * pcjc2 AT cam dot ac dot uk *
5286 * src/hid/batch/batch.c: Fix function prototypes and dummy return
5287 values for batch HID Most of these are dummy functions, but we should get the prototypes
5288 right! Also, return 0 from dummy functions which are supposed to
5289 return an integer. Fixes various compiler warnings.
5291 2010-12-09 Peter Clifton * pcjc2 AT cam dot ac dot uk *
5293 * src/hid.h, src/hid/batch/batch.c, src/hid/common/hidnogui.c,
5294 src/hid/gtk/gtkhid-main.c, src/hid/gtk/gui-dialog.c,
5295 src/hid/gtk/gui.h, src/hid/lesstif/dialogs.c,
5296 src/hid/lesstif/lesstif.h: HID: Make arguments to the prompt_for
5297 method const char *, not char * Avoids compiler warnings calling gui->prompt_for() with a const char
5300 2010-12-09 Peter Clifton * pcjc2 AT cam dot ac dot uk *
5302 * src/action.c: Rename "r" variables used in calls to GetValue() to
5303 be more descriptive A purely cosmetic change.
5305 2010-12-09 Peter Clifton * pcjc2 AT cam dot ac dot uk *
5307 * src/action.c: action.c: Fix data types in GetValue calls We passed an (int *) rather than a (bool *) in ActionImport() and
5308 parse_layout_attribute_units()
5310 2010-12-09 Peter Clifton * pcjc2 AT cam dot ac dot uk *
5312 * src/misc.c, src/misc.h: Change unmodifed parameters to GetValue to
5313 const char * Silences some compiler warnings in action.c
5315 2010-12-09 Peter Clifton * pcjc2 AT cam dot ac dot uk *
5317 * src/autoroute.c: autoroute.c: #if 0 out an unused static function
5318 add_clearance() Silences compiler warning.
5320 2010-12-09 Peter Clifton * pcjc2 AT cam dot ac dot uk *
5322 * src/djopt.c: djopt.c: #if 0 out an unused static function
5323 nudge_corner() Silences a compiler warning.
5325 2010-12-09 Peter Clifton * pcjc2 AT cam dot ac dot uk *
5327 * src/buffer.c: buffer.c: Declare variables before code in
5328 ActionFreeRotateBuffer() Avoids compiler warning "ISO C90 forbids mixed declarations and
5331 2010-12-09 Peter Clifton * pcjc2 AT cam dot ac dot uk *
5333 * src/change.c: change.c: Remove unused variable in
5336 2010-12-09 Peter Clifton * pcjc2 AT cam dot ac dot uk *
5338 * src/action.c: Remove unused variables in ActionElementList() and
5341 2010-12-09 Peter Clifton * pcjc2 AT cam dot ac dot uk *
5343 * src/action.c: Add missing return value in ActionImport()
5345 2010-12-09 Peter Clifton * pcjc2 AT cam dot ac dot uk *
5347 * src/rtree.c: Silence used function warning for __r_tree_is_good()
5348 (Non-debug builds) __r_tree_is_good() and its helper functions are only used when
5349 debugging, and are called from assert() macros. If "NDEBUG" is
5350 defined, these expand to nothing, and the function is not called. Wrap __r_tree_is_good() and its helper, __r_tree_node_is_good() with
5353 2010-12-09 Peter Clifton * pcjc2 AT cam dot ac dot uk *
5355 * src/file.c: file.c: The "elapsed" variable in LoadPCB is debugging
5356 only Silence compiler warning by moving it inside the #ifdef DEBUG
5358 2010-12-09 Peter Clifton * pcjc2 AT cam dot ac dot uk *
5360 * src/flags.c: flags.c: Avoid compiler warning when casting our
5361 OffsetOf value Strictly, our OffsetOf calculation "could" return a number as large
5362 as the pointer size on the system - so the compiler will complain
5363 when we squash it directly into an int. Casting via a size_t will
5364 avoid the warning. Our structure offsets are small, so this is safe - if somewhat ugly.
5366 2010-12-09 Peter Clifton * pcjc2 AT cam dot ac dot uk *
5368 * src/toporouter.c: Toporouter: Comment unused debug variable Silences compiler warning
5370 2010-12-09 Peter Clifton * pcjc2 AT cam dot ac dot uk *
5372 * src/gts/pgraph.c: gts: Comment some unused variables left as
5373 placeholders Silences compiler warnings
5375 2010-12-09 Peter Clifton * pcjc2 AT cam dot ac dot uk *
5377 * src/gts/edge.c: gts: Add cast to silence compiler warning
5379 2010-12-09 Peter Clifton * pcjc2 AT cam dot ac dot uk *
5381 * src/parse_l.l, src/res_lex.l: *.l: Add #define YY_NO_INPUT to
5382 avoid defining unused "input()" function Silences compiler warnings
5384 2010-12-09 Stephen Ecob * silicon dot on dot inspiration AT gmail dot com *
5386 * src/buffer.c: Fix SmashBufferElement(), broken by fixing a memory
5387 leak in FreeDataMemory() Commit 466b0183758ef3ca44623c43de60a233b175d2ad broke
5388 SmashBufferElement() by changing FreeDataMemory() (which
5389 SmashBufferElement() calls via ClearBuffer()). SmashBufferElement()
5390 depended on the memory leak of Data->Element in FreeDataMemory(). This patch removes the dependence on the leak. Commit-message-reformatted-by: Peter Clifton * pcjc2 AT cam dot ac
5393 2010-12-07 Stephen Ecob * silicon dot on dot inspiration AT gmail dot com *
5395 * src/misc.c, src/mymem.c: Fixed some memory leaks associated with
5396 the global PCB structure.
5398 2010-11-28 DJ Delorie * dj AT delorie dot com *
5400 * src/djopt.c: Store is_pad flag for each line rather than trying to
5401 deduce if a line is a pad or not.
5403 2010-11-26 Peter Clifton * pcjc2 AT cam dot ac dot uk *
5405 * : commit 093a606b182229c8e28118ace1be7d6b6ad5cf7f Author: Peter
5406 Clifton * pcjc2 AT cam dot ac dot uk * Date: Fri Nov 26 03:26:08
5409 2010-11-26 Peter Clifton * pcjc2 AT cam dot ac dot uk *
5411 * src/polygon1.c: Various speedups to the polygon code. Attempt to fix polygon slowness by avoiding the need to create a
5412 completely new polygon for each boolean operation. This mostly
5413 relies upon r-tree searches to find contours to operate on - rather
5414 than searching each in turn. We avoid labelling all of the "A" polygon's contours, use the
5415 contour r-trees to dynamically search the required data. Added code to reparent holes which end up in the wrong polygon piece
5416 after inserting a new hole in InsertHoles. This means we don't have
5417 to dump every potental hole we encounter in the holes insersion
5418 queue, hopefully leading to better dynamic update performance. At this point, polygon performance has finally seen a net gain. HOWEVER: Due to differences in the order of polygon operations, the data-structures resulting from a boolean polygon operation may be sorted differently. In certain contrived cases, where a polygon is clipped into identically sized pieces, the resulting piece of polygon which PCB will keep and use on the board is different after this commit.
5420 2010-11-26 Peter Clifton * pcjc2 AT cam dot ac dot uk *
5422 * src/polygon1.c: Use heap structure to insert holes quicker in
5425 2010-11-26 Peter Clifton * pcjc2 AT cam dot ac dot uk *
5427 * src/polyarea.h, src/polygon.c, src/polygon1.c: Optimise polygon
5428 operations by keeping an rtree of POLYAREA contours Attempt to speed up the intersect() routine using this rtree rather
5429 than generating a new one at each call. Due to the increased overheads of keeping an r-tree up to date,
5430 there is a significant overall slow-down at this point in the patch
5433 2010-11-26 Peter Clifton * pcjc2 AT cam dot ac dot uk *
5435 * src/polygon1.c: Use rtree of countours when computing an
5436 intersection NOTE: This is more complex than the existing code, and on its own, actually slows things down a little. The intention is that the r-tree should be maintained
5437 continually, so it doesn't need to be recreated with each call
5440 2010-11-26 Peter Clifton * pcjc2 AT cam dot ac dot uk *
5442 * src/polygon.c: polygon.c: Accumulate vias and lines into batches
5443 before subtracting them Accumulate polygons to clear from lines and pins in batches, then
5444 clear from the polygon. Not quite sure why, but this _really_ seems
5445 to speed up loading very complex boards. (e.g. 50sec -> 10sec for
5446 one example). Possibly this is because withing the assembled batches, it is
5447 cheaper to produce a more unified contour (touching lines), and the
5448 complex contours of the main polygon are broken less frequently. It isn't quite clear why this helps so much for pins / vias (which
5449 won't usually touch each-other), however it changes a 50sec load
5450 time to 10 sec. This could perhaps be because any contours which
5451 are smashed by clearance of closely spaced vias / pins now only
5452 incurr the penalty of breaking the main contour once every batch
5453 (100 vias / pins). Batch sizes (20 for lines, 100 for pins / vias) aren't necessarily
5454 optimal! Also, clear pins and vias last... There is a chance these objects are simpler, and just end up as
5455 holes in the main polygon, rather than causing a contour
5456 intersection. This means it is cheaper to add them last. If we add them first, and make the polygon complex, objects (usually
5457 lines) which pierce the polygon's outer contour cause all the holes
5458 to be removed and queued for re-insersion after the new contour is
5461 2010-11-07 DJ Delorie * dj AT delorie dot com *
5463 * lib/geda.inc: Add more ACY, ACPY, ALF, RCY, RCYP, JUMPER, and
5464 HEADER macros to fill in the gaps.
5466 2010-11-07 DJ Delorie * dj AT delorie dot com *
5468 * src/toporouter.c: Comment out code to dump toporouter surfaces.
5470 2010-09-29 DJ Delorie * dj AT delorie dot com *
5472 * NEWS: Update NEWS from ChangeLog
5474 2010-09-29 DJ Delorie * dj AT delorie dot com *
5476 * ChangeLog: Update ChangeLog from git logs.
5478 2010-09-29 DJ Delorie * dj AT delorie dot com *
5480 * po/POTFILES.in: Fix for distcheck errors.
5482 2010-09-29 DJ Delorie * dj AT delorie dot com *
5484 * src/action.c: Make new text clear polygons
5486 2010-09-20 DJ Delorie * dj AT delorie dot com *
5488 * src/parse_l.l: Don't print "can't open ./default_font for reading"
5491 2010-09-19 DJ Delorie * dj AT delorie dot com *
5493 * src/file.c, src/parse_l.l: Wrap more messages in debug Messages about where fonts were found, or how many milliseconds it
5494 takes to load a file, are not normally needed. Wrap them in DEBUG
5497 2010-09-14 DJ Delorie * dj AT delorie dot com *
5499 * src/hid/png/png.c: If we don't use the outline to clip, don't draw
5502 2010-09-14 DJ Delorie * dj AT delorie dot com *
5504 * src/hid/png/png.c: Fix bug tracker # 3064887 PNG exported all black in photo mode if the "outline" was exactly
5505 the board size, because the left/bottom edges were clipped leaving a
5506 big hole. With this patch, we do two things: 1. Detect a non-trivial outline, and only do outline processing if
5507 found. Thus, a rectangular outline exactly the size of the board is
5508 just ignored - no black border on the output image. 2. Any outline line that's drawn exactly on the bottom/right edge is
5509 brought in by half a pixel to ensure it's drawn in the resulting
5512 2010-09-13 DJ Delorie * dj AT delorie dot com *
5514 * src/action.c: Avoid divide-by-zero Check for a zero dispersion before computing it.
5516 2010-09-11 Peter Clifton * pcjc2 AT cam dot ac dot uk *
5518 * src/thermal.c: thermal.c: Initialise flags of the LineType object
5519 in square_therm() Keeps valgrind quiet about conditionals based upon uninitialised
5520 variables.. must be a good thing.
5522 2010-09-10 Peter Clifton * pcjc2 AT cam dot ac dot uk *
5524 * src/action.c, src/autoplace.c, src/autoroute.c, src/buffer.c,
5525 src/copy.c, src/create.c, src/crosshair.c, src/data.h, src/djopt.c,
5526 src/draw.c, src/file.c, src/find.c, src/flags.c,
5527 src/hid/batch/batch.c, src/hid/common/extents.c,
5528 src/hid/common/flags.c, src/hid/gcode/gcode.c,
5529 src/hid/gerber/gerber.c, src/hid/gtk/gtkhid-main.c,
5530 src/hid/gtk/gui-config.c, src/hid/gtk/gui-output-events.c,
5531 src/hid/gtk/gui-top-window.c, src/hid/lesstif/dialogs.c,
5532 src/hid/lesstif/main.c, src/hid/lesstif/menu.c,
5533 src/hid/nelma/nelma.c, src/hid/png/png.c, src/hid/ps/eps.c,
5534 src/hid/ps/ps.c, src/line.c, src/macro.h, src/misc.c, src/move.c,
5535 src/polygon.c, src/print.c, src/puller.c, src/rats.c, src/rtree.c,
5536 src/rubberband.c, src/search.c, src/select.c, src/toporouter.c:
5537 Split usage of "max_layer" into max_copper_layer and max_group PCB has an equal number of layer groups as copper layers, so the
5538 "max_layer" #define'd variable has been used throught the codebase
5539 to delimit iteration over both layer groups, and layers. This makes it hard for people reading the codebase to identify
5540 whether a given loop is over layers or layer groups (since the
5541 counter variable is often fairly terse or indescript). Confusingly,
5542 in some of the code, layer groups indexes are stored in a variable
5543 called "layer". To aid understanding of the code, this commit removes the max_layer
5544 variable (#define'd to (PCB->Data->LayerN)), and replaces it with
5545 two similarly #define'd variables, "max_copper_layer" and
5546 "max_group". This commit also introduces convenience macros: #define solder_silk_layer (max_copper_layer + SOLDER_LAYER) #define component_silk_layer (max_copper_layer + COMPONENT_LAYER) Which make the code intention much clearer for a common case of the
5547 old max_layer variable usage.
5549 2010-09-10 DJ Delorie * dj AT delorie dot com *
5551 * src/hid/lesstif/main.c: Fix lesstif SwapSides magic layer option. If the first layer in the layer group is silk, the swap sides key
5552 won't auto-toggle the solder and component groups, nor properly
5553 activate them if it does. Add code to find a visible *copper* layer
5554 in the layer group and use that.
5556 2010-09-09 Ineiev * ineiev AT gmail dot com *
5558 * src/find.c: find.c: Add RATLINE_TYPE to switch statement in
5559 BuildObjectList Part of Ineiev's patch from:
5560 http://archives.seul.org/geda/user/Nov-2009/msg00456.html Modified-by: Peter Clifton * pcjc2 AT cam dot ac dot uk *
5562 2010-09-09 Peter Clifton * pcjc2 AT cam dot ac dot uk *
5564 * src/find.c: Fix crash due to uninitalised variable in DRC check
5565 Bug #3033772 Andrew Armenia noted that the second pointer returned from
5566 BuildObjectList(), "object_type_list" would be left uninitialised if
5567 the object type was not encountered. A subsequent call to free() in
5568 DRCFind() would then cause memory corruption. The issue was originally reported by Ineiev:
5569 http://archives.seul.org/geda/user/Nov-2009/msg00456.html That patch addresses the lack of a RATLINE_TYPE in the
5570 BuildObjectType function, but does not prevent a segfault for other
5573 2010-09-08 DJ Delorie * dj AT delorie dot com *
5575 * src/misc.c: Fix arc bounding box math. Calculations for Arc bounding boxes weren't taking into account the
5576 wide range of possible starting arcs. This patch uses modulus to
5577 force angles into canonical forms and iterates through quadrants to
5578 capture the full extents of each arc.
5580 2010-09-08 DJ Delorie * dj AT delorie dot com *
5582 * src/parse_y.y: Fix typo in parse_y.y A typo in parse_y.y was causing the documentation to be corrupted.
5584 2010-09-07 DJ Delorie * dj AT delorie dot com *
5586 * src/hid/gtk/gtkhid-main.c, src/hid/lesstif/main.c: Fix layer
5587 visibility logic for some boards. If the Groups() line listed the c/s layer before the copper layer,
5588 disabling silk would also disable the copper. This change searches
5589 the entire layer group looking for any layer that might need to be
5590 drawn, and uses that as the exemplar instead of blindly choosing the
5591 first layer in the list.
5593 2010-09-01 DJ Delorie * dj AT delorie dot com *
5595 * src/gpcb-menu.res, src/pcb-menu.res: Add import settings to menus At the bottom of the Settings menu, add a submenu for import
5596 settings for placing new elements.
5598 2010-09-01 DJ Delorie * dj AT delorie dot com *
5600 * src/action.c: Store units for import::disperse If the user specified the dispersement as "123mm" for example, store
5601 that string as-is for convenience.
5603 2010-09-01 DJ Delorie * dj AT delorie dot com *
5605 * src/misc.c: Enhance GetValue Allow cm and in as units. Allow the units to be part of the value
5608 2010-09-01 DJ Delorie * dj AT delorie dot com *
5610 * src/action.c: Add new-part-location to import Adds import::newX, import::newY, and import::disperse attributes.
5611 These determine where new parts are located when they're added to
5612 the layout, including some random variation to keep them from being
5613 all on exactly the same spot. Parameters were added to Import() to
5614 set these: In @code{Import()} is called with @code{setnewpoint} then the
5615 location of new components can be specified. This is where parts
5616 show up when they're added to the board. The default is the center
5617 of the board. @table @code @item Import(setnewpoint) Prompts the user to click on the board somewhere, uses that point.
5618 If called by a hotkey, uses the current location of the crosshair. @item Import(setnewpoint,mark) Uses the location of the mark. If no mark is present, the point is
5619 not changed. @item Import(setnewpoint,center) Resets the point to the center of the board. @item Import(setnewpoint,X,Y,units) Sets the point to the specific coordinates given. Example:
5620 @code{Import(setnewpoint,50,25,mm)} @end table Note that the X and Y locations are stored in attributes named
5621 @code{import::newX} and @code{import::newY} so you could change
5622 them manually if you wished. Calling @code{Import(setdisperse,D,units)} sets how much the newly
5623 placed elements are dispersed relative to the set point. For
5624 example, @code{Import(setdisperse,10,mm)} will offset each part
5625 randomly up to 10mm away from the point. The default dispersion is
5626 1/10th of the smallest board dimension. Dispersion is saved in the
5627 @code{import::disperse} attribute.
5629 2010-09-01 DJ Delorie * dj AT delorie dot com *
5631 * src/misc.c, src/misc.h: Add AttributeRemove functions Add AttributeRemoveFromList() and the wrapper AttributeRemove()
5633 2010-08-28 Peter Clifton * pcjc2 AT cam dot ac dot uk *
5635 * src/hid/gtk/gui-top-window.c: hid/gtk: Remove unused colour
5636 allocation for "BlackPixel"
5638 2010-08-28 Peter Clifton * pcjc2 AT cam dot ac dot uk *
5640 * src/hid/gtk/gui-top-window.c: hid/gtk: Remove unused extern HID
5641 ghid_hid from gui-top-window.c
5643 2010-08-25 Peter Clifton * pcjc2 AT cam dot ac dot uk *
5645 * src/draw.c: draw.c: Remove the unused "Erasing" flag / counter This variable tracks whether the object being drawn is to be erased.
5646 It is never actually tested, so remove it.
5648 2010-08-25 Peter Clifton * pcjc2 AT cam dot ac dot uk *
5650 * src/draw.c: draw.c: Initialise integer counters with 0, not
5651 "false". For the "doing_assy" flag, fix its type to "bool" rather than "int".
5653 2010-08-25 Peter Clifton * pcjc2 AT cam dot ac dot uk *
5655 * src/draw.c: draw.c: Remove "HaveGathered" parameter from
5656 DrawLineLowLevel() This is superflous, as it is only passed as TRUE when the Gathering
5657 variable it overrides is known to be FALSE anyway.
5659 2010-08-25 Peter Clifton * pcjc2 AT cam dot ac dot uk *
5661 * src/data.c, src/data.h, src/draw.c: Remove unused global variable
5662 "render", and "extern bool RedrawOnEnter" The "render" variable was set and reset, but was not used anywhere.
5664 2010-08-24 Peter Clifton * pcjc2 AT cam dot ac dot uk *
5666 * src/hid/gtk/gui-output-events.c: hid/gtk: Track previous state of
5667 crosshair attachements when undrawing For correctness - this doesn't necessarily fix any rendering bugs.
5669 2010-08-24 Peter Clifton * pcjc2 AT cam dot ac dot uk *
5671 * src/hid/gtk/gui-utils.c: hid/gtk: Simplify ghid_draw_area_update() If the rect passed is NULL, we can simply pass that on to
5672 gdk_window_invalidate_rect() which will invalidate the whole area.
5674 2010-08-24 Peter Clifton * pcjc2 AT cam dot ac dot uk *
5676 * src/hid/gtk/gui-utils.c, src/hid/gtk/gui.h: hid/gtk: Remove unused
5677 functions relating to string display Removes ghid_string_markup_extents() and ghid_string_markup()
5679 2010-08-24 Peter Clifton * pcjc2 AT cam dot ac dot uk *
5681 * src/hid/gtk/gui-utils.c: hid/gtk: Remove unused
5682 ghid_draw_area_clear() function
5684 2010-08-15 DJ Delorie * dj AT delorie dot com *
5686 * src/hid/gtk/gui-top-window.c: Merge GTK attributes. Since the new help system only allows one attribute (i.e. command
5687 line) list per HID, combine the two GTK lists into one.
5689 2010-08-15 DJ Delorie * dj AT delorie dot com *
5691 * src/hid/lesstif/main.c, src/hid/lesstif/menu.c: Merge lesstif
5692 attributes. Since the new help system only allows one attribute (i.e. command
5693 line) list per HID, combine the two Lesstif lists into one.
5695 2010-08-15 DJ Delorie * dj AT delorie dot com *
5697 * src/main.c: Print all command line options with help. Keep track of which attributes we've printed as part of the HID
5698 help. After that, print any remaining attributes we know about that
5699 we haven't already printed.
5701 2010-08-15 DJ Delorie * dj AT delorie dot com *
5703 * src/hid/gtk/gtkhid-main.c, src/hid/gtk/gui-top-window.c: Export
5704 GTK attributes. The new help system uses export attribute lists for help, so the
5705 Lesstif HID needs to export them.
5707 2010-08-15 DJ Delorie * dj AT delorie dot com *
5709 * src/hid/lesstif/main.c: Export lesstif attributes. The new help system uses export attribute lists for help, so the
5710 Lesstif HID needs to export them.
5712 2010-08-15 DJ Delorie * dj AT delorie dot com *
5714 * src/action.c: Check for NULL element name when adding attributes. When setting element attributes, if the element is as yet unnamed,
5715 use an "unnamed element" title instead of segfaulting.
5717 2010-08-15 Robert Spanton * rspanton AT zepler dot net *
5719 * po/ru.po, src/hid/gtk/gui-dialog.c: Add a keyboard shortcut to
5720 pcb's "close without saving" option This patch adds a keyboard mnemonic to the "close without saving"
5721 option in the close confirmation dialog box.
5723 2010-08-15 DJ Delorie * dj AT delorie dot com *
5725 * src/action.c: Update Import() docs Fix capitalization. Mention that elements that should be removed
5726 are left, but selected, after an Import.
5728 2010-08-15 DJ Delorie * dj AT delorie dot com *
5730 * src/buffer.c, src/gpcb-menu.res, src/pcb-menu.res: Add
5731 FreeRotateBuffer to the Menu Modify FreeRotateBuffer() to prompt the user if no angle is passed.
5732 Add an entry to the menus to call it that way.
5734 2010-08-10 kai-martin * kmk AT bibo dot iqo dot uni-hannover dot de *
5736 * src/action.c: modified: action.c (fix element name position on
5739 2010-08-14 DJ Delorie * dj AT delorie dot com *
5741 * tools/gnet-pcbfwd.scm: Quote strings Quote all strings that might contains commas or close parens, to
5742 avoid syntax errors when those names are passed to actions.
5744 2010-08-03 DJ Delorie * dj AT delorie dot com *
5746 * src/select.c: Don't select silk on the far side if the far side is
5747 not shown The logic for determining if a layer was "on" didn't take into
5748 account that the two silkscreen layers are handled differently.
5749 Thus, if you tried to select shown silk, you would select hidden
5750 silk on the other side too, unknowingly moving that around. With this patch, silk on the far side is only selected if the far
5751 side ("invisible" side) is shown.
5753 2010-06-06 Peter Clifton * pcjc2 AT cam dot ac dot uk *
5755 * src/action.c, src/const.h, src/crosshair.c, src/flags.c,
5756 src/gpcb-menu.res, src/hid/gtk/gui-icons-mode-buttons.data,
5757 src/hid/gtk/gui-misc.c, src/hid/gtk/gui-output-events.c,
5758 src/hid/gtk/gui-top-window.c, src/hid/lesstif/main.c,
5759 src/pcb-menu.res, src/set.c: Introduce POLYGONHOLE_MODE for creating
5760 holes in polygons Having selected polygon hole mode, the first click selects which
5761 polygon to cut a hole in. A second click defines the start point of
5762 the hole contour. The tool then behaves in a similar way to the
5763 polygon drawing tool, with the hole ending when the start point is
5764 re-clicked. To avoid creating illegal polygons, the hole drawn is subtracted
5765 from a representation of the original polygon with the
5766 poly_Boolean_free(). This consolidates any contours it intersects
5767 with and prevents the user defining contours which intersect each
5768 other. (Although we don't currently prevent the the user drawing
5769 self-intersecting contours). The resulting POLYAREA is re-processed into PolygonType objects,
5770 potentially more than one - if the hole drawn bisects the original
5771 polygon. To keep undo operations simple, these are added as
5772 completely new objects and the original polygon is deleted - along
5775 2010-06-06 Peter Clifton * pcjc2 AT cam dot ac dot uk *
5777 * src/polygon.c, src/polygon.h: Expose APIs for creating POLYAREA
5778 from PolygonType objects and back The PolygonPoly() API wraps polygon.c's original_poly() function,
5779 whilst PolyToPolygonsOnLayer() converts the passed POLYAREA and all
5780 those linked to it into discrete PolygonType objects on the board.
5782 2010-06-06 Peter Clifton * pcjc2 AT cam dot ac dot uk *
5784 * src/action.c, src/autoroute.c, src/buffer.c, src/copy.c,
5785 src/create.c, src/create.h, src/crosshair.c, src/file.c,
5786 src/file.h, src/global.h, src/insert.c, src/insert.h, src/mymem.c,
5787 src/mymem.h, src/parse_l.l, src/parse_y.y, src/polygon.c,
5788 src/polygon.h, src/remove.c, src/report.c, src/undo.c, src/undo.h:
5789 Support holes in input polygons (incl. file-format addition) PCB file-format date is now 20100606, and files saved with this or
5790 greater PCB version will not load with older versions of PCB. If a
5791 particular board doesn't make use of the polygon hole feature, the
5792 PCB revision date in the file can be manually reset to 20070407. The file-format addition is as follows. Previously, a polygon would
5793 be specified as a series of coordinates, such as: Layer(1 "component") ( Polygon("clearpoly") ( [6000 6000] [81000 6000] [81000 59000] [6000 59000] ) ) This commit introduces the ability to specify negative contours
5794 which form holes in the polygon shape, e.g.: Layer(1 "component") ( Polygon("") ( [6000 6000] [81000 6000] [81000 59000] [6000 59000] Hole ( [76000 55000] [76000 38000] [58000 38000] [58000 55000] ) Hole ( [10000 10000] [10000 28000] [27000 28000] [27000 10000] ) ) ) The winding order of the contours specified in the file does not
5795 matter, since PCB will automatically invert the order of the points
5796 as necessary (as it always did with the outer contour). Hole contours should not intersect or self-intersect (although this
5797 isn't checked for at load time). Hole contours must not intersect
5798 the polygon's outer contour. Technical details: The PolygonType structure has a number of new fields, the critical
5799 ones being an array of indices defining the start of hole contours. (PolygonType *)->HoleIndex[n] The number of hole contours is stored in (PolygonType
5800 *)->HoleIndexN, and the maximum allocated memory for indices in
5801 (...)->HoleIndexMax. The first hole contour starts at the point
5802 given by (...)->Points[(...)->HoleIndex[0]], and continues until the start of
5803 the next contour, or the last point defined. By storing all polygon points (including holes) in the existing
5804 array (...)->Points[], existing code which operates on the polygon as a
5805 whole, e.g. translation and rotation, can operate without change. For other operations, determining wrap-around to operate within the
5806 same contour requires more computation. Some helper functions have
5807 been introduced in polygon.c to aid this, next_contour_point() and
5808 prev_contour_point(). Where applicable, these have been used to
5809 simplify existing code which used ad-hoc wrap-around code. polygon_point_idx() computes the array index of a point in a polygon
5810 from its PointTypePtr address. This is used to replace a search
5811 idiom used in a number of places. polygon_point_contour() returns
5812 the number of the contour a given point index belongs in, 0 for the
5813 outer contour, 1 for the first hole etc.. Undo: Undo with holes has become a little more complex. The undo for a
5814 point removal must now record which contour the point came from.
5815 This is determined by the index of the removed point, and a new
5816 boolean flag "last_in_contour", indicating if the point was at the
5817 end of its contour. This flag is passed to InsertPointIntoObject(),
5818 which uses it to disambiguate inserting a point at an index on the
5819 boundary of two contours. Undo operations for removing hole contours "cheat" by saving a copy
5820 of the whole polygon into the undo buffer rather than attempting to
5821 describe the operation as a delta change to an existing polygon.
5822 When undoing, the object IDs are swapped to keep them consistent.
5824 2010-06-05 Jared Casper * jaredcasper AT gmail dot com *
5826 * src/hid/gtk/gui-log-window.c: Add missing return statement.
5828 2010-06-05 Jared Casper * jaredcasper AT gmail dot com *
5830 * src/gpcb-menu.res, src/pcb-menu.res: Fix Bug #2717258, Lock mode
5831 with F12. Binds F12 to lock mode in the default gcpb-menu.res and pcb-menu.res
5832 files, bringing them inline with existing documentation.
5834 2010-06-05 Peter Clifton * pcjc2 AT cam dot ac dot uk *
5836 * src/crosshair.c, src/hid/lesstif/main.c: Revert some "True" ->
5837 "true" string changes These were inadvertently changed by the mechanised Boolean -> bool
5838 replacement in commit ad5eb5a165442be38624aa622beeb57dc1d2afbd
5840 2010-06-05 Robert Spanton * rspanton AT zepler dot net *
5842 * src/action.c, src/action.h, src/autoplace.c, src/autoplace.h,
5843 src/autoroute.c, src/autoroute.h, src/box.h, src/buffer.c,
5844 src/buffer.h, src/change.c, src/change.h, src/clip.c, src/clip.h,
5845 src/command.c, src/copy.c, src/copy.h, src/create.c, src/create.h,
5846 src/crosshair.c, src/crosshair.h, src/data.c, src/data.h,
5847 src/djopt.c, src/draw.c, src/draw.h, src/drill.c, src/file.c,
5848 src/file.h, src/find.c, src/find.h, src/flags.c, src/global.h,
5849 src/gts/gts.h, src/hid/gerber/gerber.c,
5850 src/hid/gtk/gui-command-window.c, src/hid/gtk/gui-dialog-size.c,
5851 src/hid/gtk/gui-drc-window.c, src/hid/gtk/gui-library-window.c,
5852 src/hid/gtk/gui-misc.c, src/hid/gtk/gui-netlist-window.c,
5853 src/hid/gtk/gui-output-events.c, src/hid/gtk/gui-top-window.c,
5854 src/hid/lesstif/dialogs.c, src/hid/lesstif/library.c,
5855 src/hid/lesstif/main.c, src/hid/lesstif/menu.c,
5856 src/hid/lesstif/netlist.c, src/hid/lesstif/styles.c,
5857 src/hid/nelma/nelma.c, src/insert.c, src/insert.h, src/line.c,
5858 src/main.c, src/misc.c, src/misc.h, src/move.c, src/move.h,
5859 src/mtspace.c, src/mtspace.h, src/mymem.c, src/netlist.c,
5860 src/parse_l.l, src/parse_y.y, src/polygon.c, src/polygon.h,
5861 src/polygon1.c, src/rats.c, src/rats.h, src/remove.c, src/remove.h,
5862 src/report.c, src/rotate.c, src/rtree.c, src/rtree.h,
5863 src/rubberband.c, src/search.c, src/search.h, src/select.c,
5864 src/select.h, src/set.c, src/set.h, src/thermal.c,
5865 src/toporouter.c, src/undo.c, src/undo.h, src/vendor.c,
5866 src/vendor.h: Change all Booleans to bool. c99 provides bool. Declaring Boolean adds some obscurity to the
5867 code, and could also miss out on some machine-specific
5868 optimisations. This patch removes the definition of Boolean, and changes all
5869 instances of it to bool. If you've come across this commit because it's causing you issues
5870 when rebasing on mainline pcb, then you should find the following
5871 script useful. You can use it to rewrite all of your local commits
5872 to use bool instead of Boolean like so: git filter-branch --tree-filter rename-bool.sh HEAD...${HASH} Replacing ${HASH} with the latest commit that's in mainline. if [ ! -f src/autoplace.c ] then echo "This doesn't look like the PCB source directory." echo "Cowardly exiting to avoid causing misery!" exit fi chg_bool () { FNAME=$1 ADDR=$2 sed -i -e "${ADDR}s/\bBoolean\b/bool/g" "$FNAME" sed -i -e "${ADDR}s/\bTrue\b/true/g" "$FNAME" sed -i -e "${ADDR}s/\bFalse\b/false/g" "$FNAME" } find -name '*.[ch]' | while read f do chg_bool "$f" done find -name '*.[yl]' | while read f do # Replace first '%%' line with __TMP_MARKER_ sed -i -e '0,/^%%/s/^%%/__TMP_MARKER_/' "$f" # Replace in section before the first '%%' chg_bool "$f" "0,/^__TMP_MARKER_/" # Replace in section after the last '%%' chg_bool "$f" "/^%%/,$" # Remove the temporary marker: sed -i -e 's/^__TMP_MARKER_/%%/' "$f" done
5874 2010-06-03 Peter Clifton * pcjc2 AT cam dot ac dot uk *
5876 * src/file.c, src/parse_y.y: Refer to git, not cvs when reading a
5877 file from newer PCB.
5879 2010-06-02 Sergey Alyoshin * alyoshin dot s AT gmail dot com *
5881 * po/LINGUAS, po/ru.po: Add Russian translation
5883 2010-06-02 Sergey Alyoshin * alyoshin dot s AT gmail dot com *
5885 * po/POTFILES.in: Add source files with localized strings to .po
5888 2010-06-02 Sergey Alyoshin * alyoshin dot s AT gmail dot com *
5890 * src/hid/gtk/gui-keyref-window.c, src/rats.c: Adjust punctuation
5891 and capitalisation of some messages
5893 2010-06-02 Sergey Alyoshin * alyoshin dot s AT gmail dot com *
5895 * src/gpcb-menu.res: Add top level menu to localization
5897 2010-06-02 Sergey Alyoshin * alyoshin dot s AT gmail dot com *
5899 * src/gpcb-menu.res, src/pcb-menu.res: String unification and white
5900 space cleanup String Rip up selected auto-routed tracks unified, so it can be
5901 translated as one string. Also some white spaces at end of line
5904 2010-06-02 Sergey Alyoshin * alyoshin dot s AT gmail dot com *
5906 * src/hid/common/actions.c: Localize need coord message before
5909 2010-06-02 Sergey Alyoshin * alyoshin dot s AT gmail dot com *
5911 * src/action.c, src/change.c, src/create.c,
5912 src/hid/gtk/gtkhid-main.c, src/hid/gtk/gui-command-window.c,
5913 src/hid/gtk/gui-config.c, src/hid/gtk/gui-top-window.c,
5914 src/hid/ps/ps.c: Add strings to localization
5916 2010-06-02 Sergey Alyoshin * alyoshin dot s AT gmail dot com *
5918 * src/global.h, src/hid/gtk/gui.h: Move internationalization macros
5921 2010-06-02 Sergey Alyoshin * alyoshin dot s AT gmail dot com *
5923 * autogen.sh: Add rule to extract localized stings from .res files
5925 2010-06-02 Peter Clifton * pcjc2 AT cam dot ac dot uk *
5927 * src/hid/gtk/gtkhid-gdk.c: hid/gtk: Don't call gdk_draw_points()
5928 when we have no grid points to draw Fixes this warning seen when zooming close in on a course grid
5929 setting: Gdk-CRITICAL **: gdk_draw_points: assertion `(points != NULL) &&
5930 (n_points > 0)' failed
5932 2010-06-02 Peter Clifton * pcjc2 AT cam dot ac dot uk *
5934 * src/polygon1.c: Fix node_label() function to work with
5935 self-intersection Rather than just giving up if we encounter our own edges in the CVC
5936 list at first, skip them until we either run out of edges, or find
5937 one belonging to the other polygon. I'm not 100% sure this is the correct fix, but it "seems to work". Test-case: Layer(1 "component") ( Line[60000 70000 60000 90000 4000 2000 "clearline"] Line[80000 60000 80000 90000 4000 2000 "clearline"] Line[90000 90000 90000 50000 4000 6000 "clearline"] Line[60000 40000 80000 60000 4000 6000 "clearline"] Polygon("clearpoly") ( [10000 10000] [140000 10000] [140000 140000] [10000 140000] ) )
5939 2010-06-02 Peter Clifton * pcjc2 AT cam dot ac dot uk *
5941 * src/polygon1.c: Fix the polygon touching contour test in
5942 poly_ChkContour The following test-cases were used to help verify the changes: This polygon forms a self-touching shape like this: \| However, the right-hand edge does NOT have a node at the
5943 junction. /| This previously caused it to fail the
5944 self-intersection test. It should be reported as good. Polygon("") ( [85000 50000] [85000 90000] [83000 90000] [83536 63535] [85000 59999] [83535 56464] ) This polygon forms a self-intersecting shape like this: |/ (The vertical section is a straight line with no node in the
5945 middle) /| It must be reported as bad. Polygon("") ( [85000 50000] [85000 90000] [83000 90000] [83536 63535] [85000 59999] [89535 56464] ) This polygon self-intersects, and must be reported as bad: Polygon("") ( [160000 50000] [160000 90000] [170000 100000] [180000 120000] [180000 150000] [160000 150000] [160000 120000] [170000 100000] [180000 90000] [180000 50000] ) This polygon self-touches, and should be reported as good: Polygon("clearpoly") ( [120000 50000] [120000 90000] [130000 100000] [120000 120000] [120000 150000] [140000 150000] [140000 120000] [130000 100000] [140000 90000] [140000 50000] )
5947 2010-06-02 Peter Clifton * pcjc2 AT cam dot ac dot uk *
5949 * src/polygon1.c: Fix poly_ComputeInteriorPoint() to work correctly
5950 for holes The step where the algorithm finds a convex node to start from must
5951 take into account whether the polygon vertices are ordered as a hole
5952 or an outer contour. We now correctly compute a point inside the
5953 hole, rather than possibly outside it. This fixes an assertion on the following test-case. Prior to this
5954 commit, the incorrect "interior" point tested for the concave hole
5955 happens to lie inside the polygon's other hole, causing it to fail
5956 an assert during processing. Layer(2 "solder") ( Line[340000 160000 183700 108000 1500 3000 "clearline"] Line[92000 121000 120000 90000 1500 3000 "clearline"] Line[270000 90000 120000 90000 1500 3000 "clearline"] Polygon("clearpoly") ( [40000 40000] [320000 40000] [320000 200000] [40000 200000] ) ) The bug was created in my attempt to speed up poly_ContourInContour:
5957 commit 3d0a8bd1dae0816d364a774bf9b958faf2983ec7
5959 2010-05-11 Peter Clifton * pcjc2 AT cam dot ac dot uk *
5961 * src/polygon1.c: Speed up poly_ContourInContour() test by computing
5962 interior point NB: This introduces a behaviour change in the boundary case, that
5963 two identical contours will now be considered to be inside each
5964 other. First perform a test on an arbitrary boundary node (proving that the
5965 contour being testing for "insideness" is not outside the other
5966 contour. (This cannot not conclusively prove the contour is inside). In many cases, this simple node test gives enough evidence to return
5967 0 for the ContourInContour test computing and testing an interior
5968 point. Rather than checking each exterior point, compute a strictly
5969 interior point (not on the boundary), and test that against the
5970 second contour. Benchmarked to improve performance over other fixes for the buggy
5971 test. Example board load (CPU) times for a complex board: 21.50 (buggy contour_in_contour - single node point test) 24.43 (brute-force node point tests) 21.79 (single node test, then internal point test)
5973 2010-05-10 Peter Clifton * pcjc2 AT cam dot ac dot uk *
5975 * src/polygon1.c: Fix poly_ContourInContour() test not to return
5976 TRUE for touching contours This test could previously return true for touching contours, such
5977 as: __________.... |_________ | : :........ || : :: /\ : || :
5978 Note that the bounding box of A is inside that of B, :: / \ :/ \ :
5979 such that initial bounding box checks won't reject the ::/ A \/ B
5980 \: possibility of A being inside B. ::\ /\ /: :: \ / :\ /
5981 : ::..\/..:.\/..: When testing for insideness, the first point on A's contour is
5982 picked. In this case, unfortunately being the touching X point
5983 between the two contours. This point (correctly) returns as being
5984 inside B - and the false presumption is that the whole A contour is
5985 inside B. This commit introduces an unfortunately slow, but more robust test,
5986 where we check each node in A for whether it is inside B. We return
5987 as soon as we find an A node outside B, however this means the test
5988 is VERY much slower for the case where A _is_ inside B.
5990 2010-05-11 Peter Clifton * pcjc2 AT cam dot ac dot uk *
5992 * src/polygon1.c: Add comment explaining assumptions for
5993 poly_ContourInContour function Also, document its buggy boundary condition where the arbitrary
5994 point chosen to test happens to be a common node shared between two
5995 separate contours (which the test should return FALSE for).
5997 2010-05-10 Peter Clifton * pcjc2 AT cam dot ac dot uk *
5999 * configure.ac: Make --enable-dbus default for the GTK and Lesstif
6002 2010-05-10 Peter Clifton * pcjc2 AT cam dot ac dot uk *
6004 * src/main.c: Allow running of action scripts when running PCB as an
6007 2010-05-10 Peter Clifton * pcjc2 AT cam dot ac dot uk *
6009 * src/polygon1.c: Improve dump_poly() output Make it print each contour of a POLYAREA, and move the NEXT PLINE
6010 and NEXT POLY messages inside the loops interating over these
6013 2010-05-10 Peter Clifton * pcjc2 AT cam dot ac dot uk *
6015 * src/hid/gtk/gui-output-events.c: hid/gtk: Add tool-tip to identify
6016 element, pin and net when hovering
6018 2010-05-09 DJ Delorie * dj AT delorie dot com *
6020 * src/gpcb-menu.res, src/pcb-menu.res: Clarify the meaning of keys
6021 bound to SetValue() Clarifies that keys which are bound to SetValue change the styles,
6022 not the existing objects, so they really affect *new* objects.
6024 2010-05-04 DJ Delorie * dj AT delorie dot com *
6026 * src/hid/png/png.c: Fix PNG bloat for drills. Keep track of when the GC is doing an erase or drill, and invert the
6029 2010-04-23 DJ Delorie * dj AT delorie dot com *
6031 * src/hid/gtk/gtkhid-main.c: Allow for only one confirm button. The GTK confirm_dialog() hook now supports the user passing only one
6032 button. Before, if you passed just "ok" it would create two OK
6035 2010-04-23 DJ Delorie * dj AT delorie dot com *
6037 * src/change.c: Add hint about :MinClearGap(Selected,=10,mil) Add a hint to the user about how to change the clearance of a group
6040 2010-04-23 DJ Delorie * dj AT delorie dot com *
6042 * src/change.c, src/change.h: Handle attempts to change clearance on
6043 polygons. If the user attempts to change the clearance between polygons and
6044 objects within the polygon by pressing 'k' over the *polygon*,
6045 notice that attemp and tell the user how to accomplish what they
6048 2010-04-12 Kai-Martin Knaak * kmk AT lilalaser dot de *
6050 * doc/extract-docs: expand the syntax of documentating comments This is part of the effort to derive the command line option entries
6051 in the manual dynamically from the source. The expanded syntax
6052 allows for more control on the actual headings rendered in the
6053 manual. 1) accept keys enclosed in quotation marks ("). This allows for
6054 multiple word nodes in the documentation. 2) strip leading digits of the key after sort. This allows to
6055 control the order of nodes from the source.
6057 2010-04-16 Jared Casper * jaredcasper AT gmail dot com *
6059 * doc/pcb.texi, doc/thermal.pcb: Fix pr2136131. Clarify image of
6060 thermal in doc. Also added some text about changing the style of thermal using
6061 shift-click in the sections that talk about it.
6063 2010-03-18 Jared Casper * jaredcasper AT gmail dot com *
6065 * src/hid/common/actions.c: Check action name at registration. Prevent actions with spaces and '(' in their names from being
6066 registered; these will cause ambiguity and problems in
6067 hid_parse_actionstring.
6069 2010-03-18 Jared Casper * jaredcasper AT gmail dot com *
6071 * doc/pcb.texi, src/action.c, src/hid.h, src/hid/batch/batch.c,
6072 src/hid/common/actions.c, src/hid/common/hid_resource.c,
6073 src/hid/gtk/gui-command-window.c, src/hid/gtk/gui-top-window.c,
6074 src/hid/lesstif/main.c, src/hid/lesstif/menu.c, src/main.c:
6075 Consolidate hid action parsing. - Create a common routine hid_parse_command, which handles both
6076 action script style "action(arg1, arg2);" and command entry style
6077 "action arg1 arg2". This is done by making a static
6078 hid_parse_actionstring function, which takes a boolean to determine
6079 whether or not it should accept command entry style strings.
6080 hid_parse_actions functions as it currently does, only accepting
6081 action script style, but does so by calling hid_parse_actionstring
6082 with TRUE. - Use hid_parse_command across all hids for user command entry,
6083 removing command_parse in lesstif/main.c and batch/batch.c. - Added extra error handling to common hid_actionv to match
6084 lesstif_call_action and remove lesstif_call_action.
6086 2010-04-05 Dan McMahill * dan AT mcmahill dot net *
6088 * src/toporouter.c: Fix some "mixed declarations and code" issues.
6090 2010-04-04 Ineiev * ineiev AT gmail dot com *
6092 * src/misc.c: Fix "Request for bounding box of unsupported type
6093 1024" Tracker bug # 2893717
6095 https://sourceforge.net/tracker/?func=detail&atid=538811&aid=2893717&group_id=73743
6097 2010-04-03 DJ Delorie * dj AT duopoly dot delorie dot com *
6099 * src/hid/lesstif/dialogs.c: Fix doc typo
6101 2010-04-03 Stuart Brorson * sdb AT cloud9 dot net *
6103 * src/hid/gtk/gtkhid-main.c, src/hid/gtk/gui-dialog.c: Open
6104 schematic file chooser dialog if PCB name is not set. (cherry picked from commit 209e1031656f58ffe40189d93893457975c4042f)
6106 2010-04-03 DJ Delorie * dj AT duopoly dot delorie dot com *
6108 * src/hid/lesstif/dialogs.c: Implement lesstif ImportGUI()
6110 2010-04-03 DJ Delorie * dj AT duopoly dot delorie dot com *
6112 * src/action.c: Add missing newline.
6114 2010-04-03 DJ Delorie * dj AT duopoly dot delorie dot com *
6116 * src/action.c: Let the GUI deal with choosing schematics. If the PCB is as yet unnamed, or if the pcb name doesn't correspond
6117 to a schematic file, have Import() call ImportGUI() to let the user
6118 tell PCB what to do. Note: corresponding HID changes are separate commits.
6120 2010-04-03 DJ Delorie * dj AT duopoly dot delorie dot com *
6122 * src/misc.c, src/misc.h: Add AttributePut functionality. Add the logic to put arbitrary attributes into a PCB.
6124 2010-04-03 Stuart Brorson * sdb AT cloud9 dot net *
6126 * src/file.h: Remove conflicting declaration of ParseLibraryTree. This is a static function declared in file.c. Therefore I took it
6129 2010-04-03 Stuart Brorson * sdb AT cloud9 dot net *
6131 * src/action.c: Place components in middle of board instead of at
6134 2010-03-01 Stuart Brorson * sdb AT cloud9 dot net *
6136 * src/action.c, src/buffer.c, src/change.c, src/copy.c,
6137 src/create.c, src/file.c, src/file.h, src/global.h, src/main.c:
6138 Support for footprints not in subdirectories Added tons of debug spew to various files to aid in program tracing
6139 Also, modify library loading stuff in file.c to allow footprints to
6140 live directly in library directory (rather than only one level
6143 2010-04-02 Dan McMahill * dan AT mcmahill dot net *
6145 * src/hid/png/png.c: When built with less than all of the graphic
6146 formats that the png exporter supports, don't segfault anymore. The
6147 problem is an array is defined differently at compile time but the
6148 default value for the format was constant and a ways into the array.
6149 Problem reported by jean on irc.
6151 2010-04-01 Dan McMahill * dan AT mcmahill dot net *
6153 * src/hid/gtk/gui-top-window.c: Inform the user where (what file or
6154 compiled in defaults) the menu config came from. Should help with
6155 some of the gpcb-menu.res versus pcb-menu.res and the
6156 ./gpcb-menu.res versus ~/.pcb/gpcb-menu.res confusion which comes up
6159 2010-04-01 DJ Delorie * dj AT delorie dot com *
6161 * src/report.c: Return non-fail for ReportAllNetLengths()
6163 2010-04-01 DJ Delorie * dj AT delorie dot com *
6165 * src/report.c: Record the calculated length in Report(NetLength)
6167 2010-03-24 Dan McMahill * dan AT mcmahill dot net *
6169 * : commit d9e4279e4c0af142bc776bdd4a3b905388ce6b5a Author: Dan
6170 McMahill * dan AT mcmahill dot net * Date: Wed Mar 24 17:38:17
6173 2010-03-22 anthonix * anthonix AT anthonix-desktop dot (none) *
6175 * : commit 6081daa8966c8c83bb734789c38dd5c42dd97443 Author:
6176 anthonix * anthonix AT anthonix-desktop dot (none) * Date: Mon Mar
6177 22 12:38:01 2010 +1300
6179 2010-03-21 DJ Delorie * dj AT delorie dot com *
6181 * src/hid/lesstif/menu.c: Fix Typo
6183 2010-03-20 anthonix * anthonix AT anthonix-desktop dot (none) *
6185 * src/toporouter.c: Toporouter: Speccut bug fix
6187 2010-03-20 anthonix * anthonix AT anthonix-desktop dot (none) *
6189 * : commit 1ee723379413c20973bdad27b1e1cf1d722cf3d1 Author:
6190 anthonix * anthonix AT anthonix-desktop dot (none) * Date: Sat Mar
6191 20 19:45:05 2010 +1300
6193 2010-03-19 Anthony M. Blake * anthonix AT anthonix dot resnet dot scms dot waikato dot ac dot nz *
6195 * : commit e45f4e8d15f2c30f8ccb37de5b0bfa801fca572c Author: Anthony
6196 M. Blake * anthonix AT anthonix dot resnet dot scms dot waikato dot
6197 ac dot nz * Date: Fri Mar 19 16:25:38 2010 +1300
6199 2010-03-18 Dan McMahill * dan AT mcmahill dot net *
6201 * tests/run_tests.sh: Missed the copyright bump when adding the
6202 gcode compare routines a few weeks back.
6204 2010-03-18 Dan McMahill * dan AT mcmahill dot net *
6206 * configure.ac, tests/golden/Makefile.am,
6207 tests/golden/hid_png2/Makefile.am,
6208 tests/golden/hid_png3/Makefile.am, tests/tests.list: Add tests for
6209 --outfile and --dpi arguments to the PNG exporter
6211 2010-03-13 Kai-Martin Knaak * kmk AT lilalaser dot de *
6213 * README, doc/pcb.texi, src/main.c, win32/Readme.txt: replaces
6214 "pcb.sourceforge.net" with "pcb.gpleda.org"
6216 2010-03-14 Stuart Brorson * sdb AT cloud9 dot net *
6218 * src/hid.h, src/hid/common/actions.c: Apply patch from Patrick
6219 Bernaud: Add function to register single action. The possibility to register a single action has been introduced with
6220 commit 337fa8ba8094cee1ed291cec7bf29895ac7c9d72 but then reverted
6221 later when changing way of passing context to action callback.
6223 2010-03-14 Stuart Brorson * sdb AT cloud9 dot net *
6225 * src/hid/common/actions.c: Apply patch from Patrick Bernaud: Modify
6226 HID actions storage. It removes the HID_ActionNode structure and directly store
6227 registered actions in an array of HID_Action*. It also provides a nicer way of making sure the array is sorted and
6228 the code for binary search within the array has been removed in
6229 favor of a call to bsearch().
6231 2010-03-14 Stuart Brorson * sdb AT cloud9 dot net *
6233 * src/main.c: Apply patch from Patrick Bernaud: Set 'exporter'
6234 global variable before printing defaults. In print_defaults(), when the HID to print defaults is not a gui,
6235 set 'exporter' global variable prior to calling HID's
6236 get_export_options() callback.
6238 2010-03-14 Stuart Brorson * sdb AT cloud9 dot net *
6240 * src/main.c: Apply patch from Patrick Bernaud: Rewrite function
6241 that print HID options. The previous version of usage_hid() had a strange search for gui HID
6242 attributes through 'hid_attr_node' rather than requesting them
6243 directly from the HID. As a result it was calling the get_export_options() callback on
6244 exporter without prior setting of the exporter global variable.
6246 2010-03-14 Stuart Brorson * sdb AT cloud9 dot net *
6248 * src/hid/gtk/gui-dialog-print.c: Apply patch from Patrick Bernaud:
6249 gtkhid: Avoid use of 'exporter' when testing for exporter
6252 2010-03-14 Stuart Brorson * sdb AT cloud9 dot net *
6254 * src/hid/gtk/gui-dialog-print.c: Apply patch from Patrick Bernaud:
6255 gtkhid: Set and unset global variable 'exporter' when printing. The GTK hid was not setting the global variable 'exporter' before
6256 exporting the layout in ghid_dialog_print(): exporter HID relying on
6257 this variable being set were lost.
6259 2010-03-14 Stuart Brorson * sdb AT cloud9 dot net *
6261 * src/hid.h, src/hid/common/actions.c, src/hid/lesstif/menu.c: Apply
6262 patch from Patrick Bernaud: Provide context to callbacks of actions
6263 through global variable. Providing a context to action is necessary for scripting languages
6264 (for example). To do so, a global variable ('current_action') is
6265 being defined: it is saved, set and restored when running the
6266 callback of an action in a way similar to what PCB already does with
6267 HIDs. The callback function may access the action it belongs to and cast
6268 it the way it wants to extract information from a potentially
6269 extended HID_Action structure.
6271 2010-03-14 Stuart Brorson * sdb AT cloud9 dot net *
6273 * src/hid/common/actions.c: Apply patch from Patrick Bernaud: Sort
6274 actions by references in 'all_actions'. Previously, when building 'all_actions', a copy of every HID_Action
6275 was performed for each action. Now it builds 'all_actions' with
6276 pointers to the actual HID_Action structures (without reallocating).
6278 2010-03-14 Stuart Brorson * sdb AT cloud9 dot net *
6280 * src/hid.h, src/hid/common/actions.c, src/hid/hidint.h,
6281 src/hid/lesstif/menu.c: Apply patch from Patrick Bernaud: Revert
6282 "single-action register/deregister". This reverts commits 337fa8ba8094cee1ed291cec7bf29895ac7c9d72 and
6283 b274cf8fe9c8caf5bcd4edc28935c88cf5bab7f4 before the introduction of
6284 a new context passing scheme for actions.
6286 2010-03-14 Stuart Brorson * sdb AT cloud9 dot net *
6288 * src/hid.h: Apply patch from Patrick Bernaud: Fix comment for
6289 global variable 'gui' in hid.h. hid_start_gui() does not exist. The variable is instead set in
6290 main() and hid_expose_callback().
6292 2010-03-14 Stuart Brorson * sdb AT cloud9 dot net *
6294 * src/draw.c: Apply patch from Patrick Bernaud: Modify
6295 DrawSpecialPolygon() prototype to not take a pointer on HID. DrawSpecialPolygon() was the only function to take a HID as
6296 parameter. Every other draw function works on the current HID
6297 through global variable 'gui'.
6299 2010-03-14 Stuart Brorson * sdb AT cloud9 dot net *
6301 * src/hid/gtk/gui-dialog-print.c: Apply patch from Patrick Bernaud:
6302 Support HID_Mixed options in attribute dialog Since an HID_Mixed attribute is the combination of a real and an
6303 enum, reuse the code for HID_Enum to provide a combo box next to the
6304 spin button for the real part.
6306 2010-03-14 Stuart Brorson * sdb AT cloud9 dot net *
6308 * src/hid/common/hidinit.c, src/hid/gtk/gui-config.c, src/main.c:
6309 Apply patch from Patrick Bernaud. Modified code to not abort on HID_Mixed attributes. Th gtk HID is
6310 modified to understand such an attribute (though the attribute
6311 dialog has still no support for them), the lesstif HID is unchanged.
6313 2010-03-14 Stuart Brorson * sdb AT cloud9 dot net *
6315 * src/main.c: Applying patch from Patrick Bernaud. HIDs with a name too long were breaking alignement in usage() as the
6316 code requested insertion of a tab after the name even for HID names
6317 already exceeding the length of the tabulation. This is similar to how usage_attr() already does alignment of name
6320 2010-03-13 Dan McMahill * dan AT mcmahill dot net *
6322 * : commit b75d1fe8d42c138ae499898db5b926948b73f767 Author: Dan
6323 McMahill * dan AT mcmahill dot net * Date: Sat Mar 13 09:08:06
6326 2010-03-12 Peter Clifton * pcjc2 AT cam dot ac dot uk *
6328 * src/hid/gcode/gcode.c: Remove invalidate_wh from the new gcode HID
6331 2010-03-11 Peter Clifton * pcjc2 AT cam dot ac dot uk *
6333 * src/global.h, src/main.c, src/misc.c: Remove Settings.init_done
6334 variable and its usage This variable was previously used to allow action scripts run prior
6335 to loading the GUI to avoid GUI startup if they executed a "Quit"
6336 action. The requirement dates back prior to the HID split, where the "Quit"
6337 action would cause PCB to call gtk_main_quit(), an operation which
6338 is illegal if the GUI main loop was not yet started. The init_done
6339 flag was used in QuitApplication(), both to determine whether the
6340 GUI had started, and if not - to note that the GUI should not be
6341 initialised later. (Instead of calling gtk_main_quit()). With the HID split, the QuitApplication() function was changed to
6342 call exit(0) rather than gtk_main_quit(), so this dance isn't
6343 necessary at all now.. in either case, we can just exit the
6344 application immediately.
6346 2010-03-11 Peter Clifton * pcjc2 AT cam dot ac dot uk *
6348 * src/global.h: Remove unused HistorySize field from the settings
6351 2010-03-11 Peter Clifton * pcjc2 AT cam dot ac dot uk *
6353 * src/draw.c, src/hid.h, src/hid/batch/batch.c,
6354 src/hid/common/hidnogui.c, src/hid/gtk/gtkhid-main.c,
6355 src/hid/lesstif/main.c: Remove unused "last" parameter from HID
6356 "invalidate_lr" method
6358 2010-03-11 Peter Clifton * pcjc2 AT cam dot ac dot uk *
6360 * src/hid.h, src/hid/batch/batch.c, src/hid/bom/bom.c,
6361 src/hid/common/extents.c, src/hid/common/hidnogui.c,
6362 src/hid/gerber/gerber.c, src/hid/gtk/gtkhid-main.c,
6363 src/hid/lesstif/main.c, src/hid/lpr/lpr.c, src/hid/nelma/nelma.c,
6364 src/hid/png/png.c, src/hid/ps/eps.c, src/hid/ps/ps.c: Remove unused
6365 HID method invalidate_wh() invalidate_lr and invalidate_all are sufficient APIs for our needs.
6367 2010-03-11 Dan McMahill * dan AT mcmahill dot net *
6369 * data/pcb.desktop.in: Revert "As silly as it seems to group any
6370 sort of scientific or EDA" I've pushed really hard to sort this nonsense out, and this patch is
6371 not in my opinion suitable for applcation. gEDA, gerbv and PCB all
6372 deliberately omit the Education category.. this is not where we need
6373 to fix this issue. I strongly object to putting bogus categories into our apps. If
6374 Debian want to patch these in, let them. This reverts commit b402a144e19225f0648189bca6fbfad95d046047.
6376 2010-03-11 Dan McMahill * dan AT mcmahill dot net *
6378 * src/hid/ps/ps.c: Fix an obvious bug in the previous commit.
6381 2010-03-11 Dan McMahill * dan AT mcmahill dot net *
6383 * data/pcb.desktop.in: As silly as it seems to group any sort of
6384 scientific or EDA software under "Education", this appears to be the
6385 standard documented by
6386 http://standards.freedesktop.org/menu-spec/1.0/apa.html Noted in
6387 patch #2889228 by Ahmed El-Mahmoudy.
6389 2010-03-11 Dan McMahill * dan AT mcmahill dot net *
6391 * data/pcb.desktop.in: "Encoding" is deprecated.
6392 http://standards.freedesktop.org/desktop-entry-spec/1.0/apc.html
6393 Noted in patch #2889228
6395 2010-03-10 Dan McMahill * dan AT mcmahill dot net *
6397 * src/Makefile.am: It is gcode/hid.conf not gcode/gcode.conf that
6398 needs to be distributed. Also put this file in the correct sorted
6401 2010-03-10 Dan McMahill * dan AT mcmahill dot net *
6403 * configure.ac: Add missing AC_PROG_MKDIR_P check.
6405 2010-03-10 Dan McMahill * dan AT mcmahill dot net *
6407 * src/Makefile.am: Fix building outside of the source tree with
6408 dependency tracking disabled. In that case some directories need to
6409 be manually created. Fixes bug #2889226.
6411 2010-03-10 Dan McMahill * dan AT mcmahill dot net *
6413 * src/hid/ps/ps.c: In the rectangle fill code fix a bug in swapping
6414 of the coordinates. It doesn't appear that this code path is
6417 2010-03-10 Dan McMahill * dan AT mcmahill dot net *
6419 * src/hid/ps/ps.c: Add DSC to the postscript outputs to keep certain
6420 windows based postscript viewers a little happier. Patch supplied
6421 in patch #2700352 by Bob Paddock.
6423 2010-03-10 Dan McMahill * dan AT mcmahill dot net *
6425 * INSTALL, configure.ac: The gcode exporter used libgd so make sure
6426 we check for it and document that we need it. Noted by Patrick
6427 Bernaud in bug #2967313
6429 2010-03-10 Dan McMahill * dan AT mcmahill dot net *
6431 * tests/inputs/Makefile.am: Make sure the simple gcode test layout
6432 makes it into the distfile.
6434 2010-03-10 Dan McMahill * dan AT mcmahill dot net *
6436 * : commit 802576013b5d780cd87caafa31c694279ee2dc4f Author: Dan
6437 McMahill * dan AT mcmahill dot net * Date: Wed Mar 10 13:15:26
6440 2010-03-09 Stephen Ecob * silicon dot on dot inspiration AT gmail dot com *
6442 * src/djopt.c: Fix Freckles The autorouter sometimes ends a trace just past a pad. The
6443 optimizer cuts this trace at the pad center, leaving a tiny trace
6444 left over. This tiny trace is a "freckle" and it inhibits mitering.
6445 Check for such freckles and remove them.
6447 2010-03-09 Dan McMahill * dan AT mcmahill dot net *
6449 * tests/run_tests.sh: Make the xy file check actually do something.
6451 2010-03-09 Dan McMahill * dan AT mcmahill dot net *
6453 * configure.ac, tests/golden/Makefile.am,
6454 tests/golden/hid_gcode1/Makefile.am,
6455 tests/golden/hid_gcode1/gcode_oneline.gcode.back.cnc,
6456 tests/golden/hid_gcode1/gcode_oneline.gcode.drill.cnc,
6457 tests/golden/hid_gcode1/gcode_oneline.gcode.front.cnc,
6458 tests/golden/hid_gcode10/Makefile.am,
6459 tests/golden/hid_gcode10/gcode_oneline.gcode.back.cnc,
6460 tests/golden/hid_gcode10/gcode_oneline.gcode.drill.cnc,
6461 tests/golden/hid_gcode10/gcode_oneline.gcode.front.cnc,
6462 tests/golden/hid_gcode11/Makefile.am,
6463 tests/golden/hid_gcode11/gcode_oneline.gcode.back.cnc,
6464 tests/golden/hid_gcode11/gcode_oneline.gcode.drill.cnc,
6465 tests/golden/hid_gcode11/gcode_oneline.gcode.front.cnc,
6466 tests/golden/hid_gcode2/Makefile.am,
6467 tests/golden/hid_gcode2/out.back.cnc,
6468 tests/golden/hid_gcode2/out.drill.cnc,
6469 tests/golden/hid_gcode2/out.front.cnc,
6470 tests/golden/hid_gcode3/Makefile.am,
6471 tests/golden/hid_gcode3/gcode_oneline.gcode.back.cnc,
6472 tests/golden/hid_gcode3/gcode_oneline.gcode.drill.cnc,
6473 tests/golden/hid_gcode3/gcode_oneline.gcode.front.cnc,
6474 tests/golden/hid_gcode4/Makefile.am,
6475 tests/golden/hid_gcode4/gcode_oneline.gcode.back.cnc,
6476 tests/golden/hid_gcode4/gcode_oneline.gcode.drill.cnc,
6477 tests/golden/hid_gcode4/gcode_oneline.gcode.front.cnc,
6478 tests/golden/hid_gcode5/Makefile.am,
6479 tests/golden/hid_gcode5/gcode_oneline.gcode.back.cnc,
6480 tests/golden/hid_gcode5/gcode_oneline.gcode.drill.cnc,
6481 tests/golden/hid_gcode5/gcode_oneline.gcode.front.cnc,
6482 tests/golden/hid_gcode6/Makefile.am,
6483 tests/golden/hid_gcode6/gcode_oneline.gcode.back.cnc,
6484 tests/golden/hid_gcode6/gcode_oneline.gcode.drill.cnc,
6485 tests/golden/hid_gcode6/gcode_oneline.gcode.front.cnc,
6486 tests/golden/hid_gcode7/Makefile.am,
6487 tests/golden/hid_gcode7/gcode_oneline.gcode.back.cnc,
6488 tests/golden/hid_gcode7/gcode_oneline.gcode.drill.cnc,
6489 tests/golden/hid_gcode7/gcode_oneline.gcode.front.cnc,
6490 tests/golden/hid_gcode8/Makefile.am,
6491 tests/golden/hid_gcode8/gcode_oneline.gcode.back.cnc,
6492 tests/golden/hid_gcode8/gcode_oneline.gcode.drill.cnc,
6493 tests/golden/hid_gcode8/gcode_oneline.gcode.front.cnc,
6494 tests/golden/hid_gcode9/Makefile.am,
6495 tests/golden/hid_gcode9/gcode_oneline.gcode.back.cnc,
6496 tests/golden/hid_gcode9/gcode_oneline.gcode.drill.cnc,
6497 tests/golden/hid_gcode9/gcode_oneline.gcode.front.cnc,
6498 tests/inputs/gcode_oneline.pcb, tests/run_tests.sh,
6499 tests/tests.list: Add testsuite entries to test the gcode export HID
6500 and all of its command line options.
6502 2010-03-09 Dan McMahill * dan AT mcmahill dot net *
6504 * src/hid/gcode/gcode.c: Remove RCSID. We don't use those anymore.
6506 2010-03-09 Dan McMahill * dan AT mcmahill dot net *
6508 * src/hid/gcode/gcode.c: Change options like 'drill depth' to
6509 'drill-depth' as a space in a command line option is non-standard.
6510 Also be consistent with having or not having a "." at the end of the
6511 option help strings.
6513 2010-03-09 Dan McMahill * dan AT mcmahill dot net *
6515 * src/hid/gcode/gcode.c: Remove unix2dos system() call. It was not
6518 2010-03-09 Dan McMahill * dan AT mcmahill dot net *
6520 * src/hid/gcode/trace.c: Get rid of compiler warnings.
6522 2010-03-09 Dan McMahill * dan AT mcmahill dot net *
6524 * src/hid/gcode/gcode.c: Get rid of some gcc warnings.
6526 2010-03-09 Dan McMahill * dan AT mcmahill dot net *
6528 * src/hid/gcode/gcode.c: C++ style comments -> C style comments
6530 2010-03-09 Dan McMahill * dan AT mcmahill dot net *
6532 * doc/pcb.1: Fix nroff error. Noted in sf patch #2889227 by Ahmed
6535 2010-03-09 Dan McMahill * dan AT mcmahill dot net *
6537 * configure.ac: add the gcode exporter to the export hid list
6539 2010-03-09 Dan McMahill * dan AT mcmahill dot net *
6541 * INSTALL: add notes about what libs may be needed (none) for the
6544 2010-03-09 Dan McMahill * dan AT mcmahill dot net *
6546 * src/hid/gcode/auxiliary.h, src/hid/gcode/bitmap.h,
6547 src/hid/gcode/curve.c, src/hid/gcode/curve.h,
6548 src/hid/gcode/decompose.c, src/hid/gcode/decompose.h,
6549 src/hid/gcode/gcode.c, src/hid/gcode/gcode.h,
6550 src/hid/gcode/lists.h, src/hid/gcode/potracelib.h,
6551 src/hid/gcode/trace.c, src/hid/gcode/trace.h: indent to conform to
6552 the coding style used by pcb.
6554 2010-03-09 Dan McMahill * dan AT mcmahill dot net *
6556 * src/Makefile.am: gcode_lists.h should depend on gcode sources, not
6559 2010-03-09 Dan McMahill * dan AT mcmahill dot net *
6561 * src/hid/gcode/auxiliary.h, src/hid/gcode/bitmap.h,
6562 src/hid/gcode/curve.c, src/hid/gcode/curve.h,
6563 src/hid/gcode/decompose.c, src/hid/gcode/decompose.h,
6564 src/hid/gcode/gcode.c, src/hid/gcode/gcode.h,
6565 src/hid/gcode/hid.conf, src/hid/gcode/lists.h,
6566 src/hid/gcode/potracelib.h, src/hid/gcode/trace.c,
6567 src/hid/gcode/trace.h: Apply sf patch 2948711 from Alberto Maccioni
6568 which adds a g-code exporter.
6570 2010-03-08 Dan McMahill * dan AT mcmahill dot net *
6572 * configure.ac: When building the docs have configure check for
6573 epsf.tex being in the TeX installation. Problem noted by Kai-Martin
6574 Knaak and the method for checking suggested by Peter Clifton.
6576 2010-03-02 Peter Clifton * pcjc2 AT cam dot ac dot uk *
6578 * configure.ac: Fix test for whether to rebuild the shipped
6579 pcblib-newlib library ${top_srcdir} is a Makefile variable, we need $srcdir in
6582 2010-03-02 Peter Clifton * pcjc2 AT cam dot ac dot uk *
6584 * lib/Makefile.am: Fix make distcheck by removing regenerated newlib
6585 footprints The generated newlib files need to be removed by make distclean if
6586 they are being updated by the build process. If the files aren't
6587 being updated, we should not delete them as they were originally
6588 distributed with the source tarball.
6590 2010-03-02 Peter Clifton * pcjc2 AT cam dot ac dot uk *
6592 * tools/Makefile.am: Fix distribution of gnet-pcbfwd.scm in the dist
6593 tarball Use the dist_ prefix to make this simple, so our installed targets
6594 are now listed in dist_..._DATA, rather than ..._DATA and
6597 2010-03-01 DJ Delorie * dj AT delorie dot com *
6599 * src/parse_y.y: Allow empty attribute values. The STRING token is NULL when an empty string is indicated, but
6600 empty attributes are different than missing attributes, so if a
6601 STRING is NULL, store an empty string instead.
6603 2010-02-28 DJ Delorie * dj AT delorie dot com *
6605 * src/change.c: Fix bogus cast to BoxType Instead of casting, which hides real bugs, pass the address of the
6606 bounding box itself.
6608 2010-02-24 DJ Delorie * dj AT delorie dot com *
6610 * src/action.c: Add more flexibility to the import::make option. New attributes: make::outfile - the intermediate action file make::target - the
6611 makefile target to call (defaults to outfile or pcb_import)
6612 make::makefile - adds -f to make Added more documentation too.
6614 2010-02-24 DJ Delorie * dj AT delorie dot com *
6616 * src/buffer.c: Check both FOO and FOO.fp for footprints.
6618 2010-02-24 DJ Delorie * dj AT delorie dot com *
6620 * src/action.c: Check for NULL names.
6622 2010-02-24 Peter Clifton * pcjc2 AT cam dot ac dot uk *
6624 * src/main.c: Use strdup to copy environment strings into our
6625 settings structure. getenv returns a const char * which is part of the environment and
6628 2010-02-23 Peter Clifton * pcjc2 AT cam dot ac dot uk *
6630 * src/main.c: Fix default gnetlist executable name to be "gnetlist" The old value "defgnetlist" appears to have been a mistake.
6632 2010-02-22 Jared Casper * jaredcasper AT gmail dot com *
6634 * src/hid/gtk/gtkhid-main.c, src/hid/gtk/gui-library-window.c,
6635 src/hid/gtk/gui-log-window.c, src/hid/gtk/gui-netlist-window.c,
6636 src/hid/gtk/gui.h: hid/gtk: Prevent extra windows from showing
6637 unnecessarily Prevent the library, log, and netlist windows in the GTK HID from
6638 being shown unless explicitely requested. This is done by splitting
6639 ghid_*_window_show into ghid_*_window_create, which creates all the
6640 resources for the window, and ghid_*_window_show, which actually
6641 shows the window (and optionally "presents" it, which pulls it to
6642 the foreground and gives it focus). Since the NetlistShow action no longer actually shows the netlist
6643 window, but sets the node/net that is shown in the window (if and
6644 when it is visible), this patch also adds NetlistPresent which
6645 presents the netlist window. This can be added to the
6646 FindConnections menu item to restore the behavior of bringing up the
6647 netlist window on a find. Added an action LogShowOnAppend() which can restore the old behavior
6648 that the log window is shown whenever something is appended to it
6649 (currently off by default).
6651 2010-02-22 Dan McMahill * dan AT mcmahill dot net *
6653 * doc/pcb.texi: Document that it is pcb-menu.res for the lesstif HID
6654 and gpcb-menu.res for the GTK+ HID.
6656 2010-02-19 Dan McMahill * dan AT mcmahill dot net *
6658 * lib/m4lib_to_newlib.sh: Add some quoting to handle the case where
6659 there are spaces in some of the directory names. As noted by peque on irc, this script failed when the build
6660 directory was located somewhere that had a space in a directory
6661 name. Adding the extra quotes fixes that.
6663 2010-02-16 DJ Delorie * dj AT delorie dot com *
6665 * src/hid/lesstif/main.c: Revert an unintended change.
6667 2010-02-16 Ineiev * ineiev AT gmail dot com *
6669 * src/global.h: Fix broken build due to missing struct members Looks like a part of commit ef2efdd2a18a744eb715ffc1278aace1a2cded46
6670 was omitted by mistake.
6672 2010-02-07 Ineiev * ineiev AT gmail dot com *
6674 * src/find.c, src/search.c: Fix bugs in the arc intersection
6675 routine. Bug #2942582 This bug resulted in various false identificaton of connectivity
6676 between arcs and other object. Notes from Ineiev's emails: So I built a montecarlo; fixed some ugly unrealistic cases like thin
6677 arc merged in bloat and arc->Delta<-360; ran the test program
6678 (aat.c) several hours on different machins; that discovered no
6679 errors, though the number of points was not very high (a thousand or
6680 slightly more): the reference functions are really slow. That resulted in arc.bis.patch. I tested it also with already
6681 mentioned teardropped OSDCU.pcb and t1.pcb. Then, eliminate two
6682 precision losses. I feel I ought to stop here: the patch fixes many more bugs than
6683 originally reported.
6685 2010-02-13 Dan McMahill * dan AT mcmahill dot net *
6687 * : commit ef2efdd2a18a744eb715ffc1278aace1a2cded46 Author: Dan
6688 McMahill * dan AT mcmahill dot net * Date: Sat Feb 13 12:41:35
6691 2010-02-11 DJ Delorie * dj AT delorie dot com *
6693 * src/action.c, tools/gnet-pcbfwd.scm: Fix pcb forward annotation
6694 bugs Finish rename of pcblf -> pcbfwd, handle pcb-has-no-name case.
6696 2010-02-09 Dan McMahill * dan AT mcmahill dot net *
6698 * configure.ac, src/action.c: When mkdtemp() is available use it
6699 instead of tmpnam() for creating temp file names to be used by
6702 2010-02-06 Dan McMahill * dan AT mcmahill dot net *
6704 * src/misc.c: Remove some gcc warnings about unitialized variables. Remove some gcc warnings about uninitialized variables. The logic
6705 was such that if the variables weren't ever assigned to somethign
6706 then they also would not have been accessed but by getting rid of
6707 this warning, we increase the chances of paying attention to other
6708 warnings which may indicate real bugs.
6710 2010-02-06 Dan McMahill * dan AT mcmahill dot net *
6712 * src/misc.c: Add missing return on an action function which is
6713 supposed to return an int.
6715 2010-02-06 Dan McMahill * dan AT mcmahill dot net *
6717 * src/hid/gtk/gtkhid-main.c: Remove some gcc warnings. Use GPOINTER_TO_INT(), GINT_TO_POINTER() and remove a couple of
6718 unused variables to eliminate some gcc warnings.
6720 2010-02-06 Dan McMahill * dan AT mcmahill dot net *
6722 * src/netlist.c: In functions returning non-void, give a return
6725 2010-02-06 Dan McMahill * dan AT mcmahill dot net *
6727 * src/file.h: Add missing prototype for sort_netlist() which is
6728 called in netlist.c.
6730 2010-02-06 Dan McMahill * dan AT mcmahill dot net *
6732 * configure.ac, src/action.c: Remove some gcc warnings. Add missing headers for fork(), execvp(), wait(). Also remove a
6733 couple of unused variables.
6735 2010-02-01 DJ Delorie * dj AT delorie dot com *
6737 * src/hid/gtk/gui-netlist-window.c, src/hid/lesstif/netlist.c:
6738 Rename NetlistChanged() to avoid conflicts Rename the existing static NetlistChanged() functions in the Gtk and
6739 Lesstif HIDs to avoid conflicts with the core global
6740 NetlistChanged() function.
6742 2010-02-01 DJ Delorie * dj AT delorie dot com *
6744 * src/hid/png/png.c: swap png bloat too When computing the bloat offsets for filled rectangles, apply the
6745 bloat after sorting the Y coordinates but before swapping them if
6746 we're printing the solder side.
6748 2010-02-01 DJ Delorie * dj AT delorie dot com *
6750 * src/hid/png/png.c: Fix drawn circles When drawing a "line" that's zero length, check for rounded ends
6751 (circle) vs square ends (square).
6753 2010-01-31 DJ Delorie * dj AT delorie dot com *
6755 * src/action.c, src/data.h, src/hid.h, src/misc.h, src/netlist.c,
6756 src/rats.c, src/undo.c, tools/Makefile.am, tools/gnet-pcbfwd.scm,
6757 tools/gnet-pcblf.scm: Changed element/netlist syntax as follows: ElementList(start) ElementList(need,...) ElementList(done) Netlist(freeze) Netlist(add,...) Netlist(thaw) Hooked all NetlistChanged() actions into a wrapper that checks for
6760 2010-01-29 DJ Delorie * dj AT delorie dot com *
6762 * src/gpcb-menu.res, src/pcb-menu.res: Add import to gtk menu,
6763 change lesstif menu to match.
6765 2010-01-29 DJ Delorie * dj AT delorie dot com *
6767 * tools/Makefile.am, tools/gnet-pcblf.scm: Add the new netlister. Adds the new script-based netlister and the install rules. Note
6768 that this installs PCB's netlister in gEDA's data directory.
6769 Unusual, but it's the best way to keep pcb in sync with its own
6772 2010-01-01 DJ Delorie * dj AT delorie dot com *
6774 * src/action.c, src/global.h, src/gpcb-menu.res, src/hid.h,
6775 src/hid/batch/batch.c, src/hid/bom/bom.c,
6776 src/hid/common/hidnogui.c, src/hid/gtk/gtkhid-main.c,
6777 src/hid/lesstif/dialogs.c, src/hid/lesstif/lesstif.h,
6778 src/hid/lesstif/main.c, src/hid/lesstif/xincludes.h,
6779 src/hid/lpr/lpr.c, src/hid/nelma/nelma.c, src/hid/png/png.c,
6780 src/hid/ps/eps.c, src/hid/ps/ps.c, src/pcb-menu.res: Add attribute
6781 editor GUI to gtk and lesstif. Attributes(Layout|Layer|Element) Attributes(Layer,layername) Let the user edit the attributes of the layout, current or given
6782 layer, or selected element.
6784 2009-12-27 DJ Delorie * dj AT delorie dot com *
6786 * src/action.c, src/misc.c, src/misc.h, src/pcb-menu.res: Add
6787 Import() action Add an action to import schematics into the pcb. It allows for a
6788 list of schematics to be specified in the action or in the pcb, as
6789 well as supporting using a Makfile instead of gnetlist.
6791 2009-12-27 DJ Delorie * dj AT delorie dot com *
6793 * src/draw.c: Undo an accidental change.
6795 2009-04-21 DJ Delorie * dj AT delorie dot com *
6797 * src/action.c, src/buffer.c, src/buffer.h, src/change.c,
6798 src/change.h, src/create.c, src/draw.c, src/file.c,
6799 src/hid/lesstif/main.c, src/misc.c, src/misc.h, src/netlist.c:
6800 Work-in-progress for LF: netlist importing
6802 2010-01-01 DJ Delorie * dj AT delorie dot com *
6804 * src/hid/png/png.c: Check for empty layers. If you have a four-layer board but the inner layers are empty, photo
6805 mode dies. This checks for at least the more common case, but
6806 further work to protect against *any* empty layer is warranted.
6808 2010-01-01 DJ Delorie * dj AT delorie dot com *
6810 * src/hid/png/png.c: Fix photo-mode mask layer. The addition of mask support to PNG export broke photo mode; this
6811 patch undoes the mask support when photo mode is enabled.
6813 2009-12-27 DJ Delorie * dj AT delorie dot com *
6815 * src/hid/png/png.c, src/misc.c: Add support for specifying
6816 soldermask and solderside from the command line Added "solderside" and "mask" as valid layers for --layer-stack.
6817 Also added "silk" as an alias for "elements". Added mask support to
6818 the PNG exporter so that it draws soldermask properly. Also added
6819 support to PNG for showing the board from the solder side, and
6820 removed some leftover cruft from when it was copied from the PS hid.
6822 2009-12-22 anthonix * anthonix AT anthonix-desktop dot (none) *
6824 * src/toporouter.c: Toporouter: Removed superfluous debug function
6826 2009-12-22 anthonix * anthonix AT anthonix-desktop dot (none) *
6828 * src/toporouter.c, src/toporouter.h: Toporouter: A few fixes The main fix is in the 'special cut' code, which had a tricky corner
6829 case to deal with. The special cut code has also been commented in
6830 the critical spots. There are a few other minor fixes, and a couple of heuristic
6833 2009-12-13 DJ Delorie * dj AT delorie dot com *
6835 * src/action.c: Handle NULL strings when replacing elements. Sometimes, when you're building a board from the library, elements
6836 won't have values for their strings. When replacing those elements,
6837 replicate the NULL pointer rather than trying to strup it.
6839 2009-12-07 Chitlesh GOORAH * chitlesh dot goorah AT gmail dot com *
6841 * doc/refcard.tex: Update the quick reference From: Chitlesh GOORAH * chitlesh dot goorah AT gmail dot com * To:
6842 gEDA user mailing list Hello there, The current layout of the PCB command reference PDF document (the
6843 one currently being shipped) is broken. It looks like it on life
6844 support. http://chitlesh.fedorapeople.org/pcb/refcard_old.pdf I've updated only the layout of refcard.tex
6845 http://chitlesh.fedorapeople.org/pcb/refcard.tex to give
6846 http://chitlesh.fedorapeople.org/pcb/refcard.pdf . Unfortunately, I
6847 don't have enough time currently to update it to the latest key
6848 shortcuts. Can you guys please apply it to the next release ? I hope
6849 someone will update it in the meantime, else I'll dig into it next
6852 2009-11-25 Dan McMahill * dan AT mcmahill dot net *
6854 * src/main.c: In the -h (help) output, mention which gui the gui
6857 2009-11-25 Dan McMahill * dan AT mcmahill dot net *
6859 * doc/pcb.texi: Rather than having @code{Pcb} all over, refer to
6860 the program name with @pcb{}. To help keep how we refer to and mark up the name of the program,
6861 define a macro at the start and use it all over. Also change some of the "for X11" text since pcb really runs on what
6862 ever windowing system gtk (X11 or windows) or lesstif (X11 for this
6865 2009-11-23 Dan McMahill * dan AT mcmahill dot net *
6867 * : commit c81b2d09b281a357910759a373bd8e8bdc4b3cd1 Author: Dan
6868 McMahill * dan AT mcmahill dot net * Date: Mon Nov 23 21:16:36
6871 2009-11-15 Peter Clifton * pcjc2 AT cam dot ac dot uk *
6873 * src/hid/gtk/gtkhid-gdk.c: hid/gtk: Add a guard against GC's being
6874 passed from another HID Various other HIDs have this check.
6876 2009-11-15 Peter Clifton * pcjc2 AT cam dot ac dot uk *
6878 * src/hid/gtk/gtkhid-gdk.c, src/hid/gtk/gui.h: hid/gtk: Move
6879 definition of the device context inside gtkhid-gdk.c Keep it private to the drawing routines.
6881 2009-11-15 Peter Clifton * pcjc2 AT cam dot ac dot uk *
6883 * src/hid/gtk/gtkhid-main.c: hid/gtk: Remove unused HID
6886 2009-11-15 Peter Clifton * pcjc2 AT cam dot ac dot uk *
6888 * src/Makefile.am, src/hid/gtk/gtkhid-gdk.c,
6889 src/hid/gtk/gtkhid-main.c, src/hid/gtk/gui-top-window.c,
6890 src/hid/gtk/gui.h: hid/gtk: Move various gdk drawing routines into a
6891 new file gtkhid-gdk.c This separates some of the drawing code so it could be replaced more
6892 easily. Pretty much a straight move at this point, but renamed the static
6893 function "draw_grid()" to ghid_draw_grid() now it is no longer local
6894 to gtkhid-main. Removed all #include not required to build in gtkhid-main.c and
6897 2009-11-15 Peter Clifton * pcjc2 AT cam dot ac dot uk *
6899 * src/draw.c, src/hid.h, src/hid/gtk/gtkhid-main.c,
6900 src/hid/lesstif/main.c: Add SL_RATS layer ID to tell the GUI we're
6901 drawing rats Also, let the GUI decide whether it wants to draw rats or not,
6902 rather than have the core test PCB->RatsOn directly.
6904 2009-11-15 Peter Clifton * pcjc2 AT cam dot ac dot uk *
6906 * src/draw.c, src/draw.h: draw.c: Apply const qualifier to DrawLayer
6907 and DrawSilk bounds This keeps the compiler happier.
6909 2009-11-15 Peter Clifton * pcjc2 AT cam dot ac dot uk *
6911 * src/crosshair.c: By popular(*) request, Make the cross-hair snap
6912 to the center of pads * Popular.. or vocal?, I'm not sure. If more people don't like the new behaviour, there is always git
6913 revert. There was of course, a third possibility - adding support to snap to
6914 pad end-points _and_ their centers. I rejected this because of
6915 "nearly" square pads - it becomes difficult to know if you've picked
6916 up the center of the pad, and many of those asking for
6917 snap-to-center wanted it in order to pick up and align components by
6918 their pads. NB: Optimised rat-lines still go to the edge of pads, as this can
6919 often look less cluttered. Rat-lines drawn to the center of a pad
6920 will work correctly, and remain on the pad center until the next
6921 time "optimise" is run on the rats-nest.
6923 2009-11-15 Peter Clifton * pcjc2 AT cam dot ac dot uk *
6925 * src/find.c, src/rubberband.c: Add support for rat-lines ending at
6926 the center of pads Optimised rats are still located at the edges of pads, but the rat
6927 connection checking code will now also accept rats ending at the
6930 2009-11-14 Peter Clifton * pcjc2 AT cam dot ac dot uk *
6932 * src/draw.h: draw.h: Remove ClearPin prototype missed in last
6935 2009-11-14 Peter Clifton * pcjc2 AT cam dot ac dot uk *
6937 * src/draw.c: draw.c: Don't clear pins / vias from polygons... it is
6938 already done! Our polygons already the required holes for pins, vias, pads etc..
6939 so don't waste drawing clearances twice. This looks to be a legacy
6940 from the way PCB used to draw polygons.
6942 2009-11-14 Peter Clifton * pcjc2 AT cam dot ac dot uk *
6944 * src/hid/common/draw_helpers.c, src/polyarea.h, src/polygon.c,
6945 src/polygon1.c: polygons: Tag circular contours so they can be
6946 special-cased when drawing. Tagging circular contours allows GUIs (if they wish) to draw
6947 circular holes in polygons more accurately, and potentially faster -
6948 depending on whether they use mask based rendering or rely on the
6949 dicer. When zoomed far out (and using a mask based scheme), the drawing
6950 routine can use a lower vertex count approximation to the contour -
6951 leading to rendering speed improvements. This is used to reasonable
6952 effect in the experimental OpenGL branch. Modify hid/common/draw_helpers.c to use these tags when thin-drawing
6953 polygon contours with common_thindraw_pcb_polygon(). This allows the
6954 GUI to change the level of detail rendered with zoom, and serves to
6955 test this feature. DRC checking and output are still done using the fixed resolution
6956 approximation present in the polygon contour, so in this respect -
6957 it makes rendering somewhat unfaithful to the final output.
6959 2009-11-13 Peter Clifton * pcjc2 AT cam dot ac dot uk *
6961 * src/draw.c: draw.c: Draw all vias, pins and pads under the mask
6962 layer This fixes an issue where the rendering of a partially masked via is
6963 inaccurate. The down-side is that partially, or completely masked
6964 vias become obscured by the mask drawn above them. If the user is previewing the mask rendering, it is probably best
6965 that they see an accurate representation - even if this means hiding
6968 2009-11-13 Peter Clifton * pcjc2 AT cam dot ac dot uk *
6970 * src/draw.c: Fix thindraw mask drawing for pins, including
6971 octagonal ones We need to set the line-width for round pins when in thin-draw and
6972 clearing the mask. We need to tell DrawSpecialPolygon() whether we need thin-draw or
6973 not depending on whether we're clearing the mask or not. We don't
6974 need to set the line-width outside of DrawSpecialPolygon(), since it
6975 sets it its-self. Fix DrawSpecialPolygon() to set the line width and cap style on the
6978 2009-11-13 Peter Clifton * pcjc2 AT cam dot ac dot uk *
6980 * src/hid/common/draw_helpers.c: hid/common: Control update of
6981 NoHoles cache based on clip region If at least 50% of the bounding box of a polygon is within the clip
6982 region, compute the whole NoHoles polygon and cache it for later
6983 rendering. If less of the polygon is within the clip region, just compute what
6984 we need to draw the piece we've been asked for.
6986 2009-11-13 Peter Clifton * pcjc2 AT cam dot ac dot uk *
6988 * src/hid/common/draw_helpers.c: hid/common: Fix memory leak in
6989 polygon NoHoles clipping routine poly_CopyContour creates the edge tree, as does ContourToPoly(),
6990 which overwrite the one created in poly_CopyContour(). Replace call to ContourToPoly() with a discrete alternative without
6991 the poly_PreContour() call. Also, don't try to poly_Free() the output of poly_Boolean_free() in
6992 an error condition. poly_Boolean_free() re-uses the A input polygon
6993 for its output, so attempting to free that might be dangerous. poly_Boolean_free() should free its inputs (and any partial output)
6994 if it encounters an error.
6996 2009-11-12 Peter Clifton * pcjc2 AT cam dot ac dot uk *
6998 * src/hid/common/draw_helpers.c: hid/common: Clip no-holes polygon
6999 pieces before calling fill_contour This avoids integer overflow in some HIDs (GTK, Lesstif?) when
7000 drawing at high zoom level. Such overflow would lead to incorrectly
7001 drawn polygons. It is possible that a similar bug could effect thin-drawn polygons,
7002 but that has not manifested its-self so far. If we were to clip
7003 these in the future, we need to be careful to extend the clip region
7004 slightly off-screen, so the outlines are not drawn. Ideally we would clip these vertices using a Sutherland-Hodgman
7005 clipping algorithm, then we could simply discard edges which are
7008 2009-11-12 Peter Clifton * pcjc2 AT cam dot ac dot uk *
7010 * src/draw.c, src/hid/common/flags.c, src/hid/gerber/gerber.c,
7011 src/hid/png/png.c, src/hid/ps/ps.c, src/print.c: Use strcmp() for
7012 special layer names, rather than strcasecmp() Before commit 086aa491fae18f1ec72da047b772fa3510f72d0b, we were
7013 using strcmp() and strcasecmp() in different places. That commit
7014 changed to strcasecmp(). Lets choose to keep the more restrictive
7015 option for now, which reduces the number of "magic" layer names PCB
7018 2009-11-12 Patrick Bernaud * b-patrick AT wanadoo dot fr *
7020 * src/hid/gtk/gui-top-window.c: hid/gtk: Fix strncat length when
7021 building accelerator string. (CODE!) (Oops, I pushed an empty patch last time - Peter Clifton) Commit d6b396c4a34bb619c8e91da1e9cd9bd27ff54657 was not enough:
7022 strncat() must be given the remaining length of buffer to ensure it
7023 does not overflow. Plus it now emits a message in the unlikely case
7024 of a too small buffer for an accelerator.
7026 2009-11-12 Patrick Bernaud * b-patrick AT wanadoo dot fr *
7028 * : hid/gtk: Fix strncat length when building accelerator string. Commit d6b396c4a34bb619c8e91da1e9cd9bd27ff54657 was not enough:
7029 strncat() must be given the remaining length of buffer to ensure it
7030 does not overflow. Plus it now emits a message in the unlikely case
7031 of a too small buffer for an accelerator.
7033 2009-11-12 Peter Clifton * pcjc2 AT cam dot ac dot uk *
7035 * src/draw.c, src/find.c, src/polygon.c: Correct rendering and
7036 connectivity checks for zero clearance pads and pins NB: These areren't technically allowed by PCB, but it is nice that
7037 when a user hacks zero clearance in their PCB file, that we: a) Draw polygons without any cleared gaps in the output b) Correctly determine that these objects will be connected to the
7040 2009-11-12 Peter Clifton * pcjc2 AT cam dot ac dot uk *
7042 * src/draw.c, src/hid/gerber/gerber.c, src/hid/ps/ps.c: Use
7043 strcasecmp when looking for the "outline" or "route" layer A some cases previously used strcmp, leading to inconsistencies in
7044 our handling of these "special" layers.
7046 2009-11-12 Peter Clifton * pcjc2 AT cam dot ac dot uk *
7048 * src/polygon.c: polygon.c: Remove unused #define COARSE_CIRCLE 0
7050 2009-11-12 Peter Clifton * pcjc2 AT cam dot ac dot uk *
7052 * src/polygon.c: Speed up unsubtraction from polygons when objects
7053 are deleted This process worked by adding a new "blob" of polygon to cover in
7054 the hole made by the object being deleted. If this "blob"
7055 intersected the contour of the original polygon, it would cause the
7056 polygon's contour to be damaged. To avoid this, the unsubract code
7057 would always clip the resulting polygon against the original
7058 (pristine) polygon contour. Unfortunately.. this clipping operation is gauranteed to intersect
7059 the contour of the polygon - a very expensive operation, since all
7060 holes inside the polygon (many on a complex board) have to be
7061 re-processed. This speed-up is achieved by reversing the order of operation. The
7062 "blob" to be added to the polygon is first clipped against the
7063 pristine contour (a relatively cheap operation). This then allows us
7064 to add the new clipped blob to the more complex polygon on the board
7065 without worry that the contour may be compromised.
7067 2009-11-12 Peter Clifton * pcjc2 AT cam dot ac dot uk *
7069 * src/file.c: file.c: Add profiling of CPU seconds consumed during
7070 file load This information is useful to benchmark the load of complex boards
7071 which consume a lot of CPU cycles clipping polygons during loading. Adding this upstream will allow me to gain information from users
7072 describing load slowness, without having a copy their design.
7074 2009-11-11 Peter Clifton * pcjc2 AT cam dot ac dot uk *
7076 * src/hid/ps/ps.c: hid/ps: Don't use diced polygons for postscript
7077 output This speeds up postscript output on boards with complex polygons. It has the added advantage for some postscript and pdf readers that
7078 there are no accidental gaps rendered between pieces of the diced
7079 polygon due to non-global anti-aliasing in their renderer.
7081 2009-11-11 Peter Clifton * pcjc2 AT cam dot ac dot uk *
7083 * src/polygon.c: Play with number of line segments in line caps By changing from 36 lines-segments per circle to 40, we create a
7084 symmetry at 45 degrees - a common angle for lines on a circuit board
7085 to intersect at. This avoids building additional complexity in the
7086 polygons which are cut by these intersections.
7088 2009-11-11 Peter Clifton * pcjc2 AT cam dot ac dot uk *
7090 * src/polygon.c: Fixup frac_circle to avoid repeating a vertex the
7091 caller will add Before we were getting self-intersecting polygons in some cases, a
7092 big no-no. One less vertex should be added than the expected
7093 (CIRC_SEGS / range), since the caller adds the last vertex.
7095 2009-11-11 Peter Clifton * pcjc2 AT cam dot ac dot uk *
7097 * src/polygon1.c: polygon1.c: #ifdef DEBUG_ALL_LABELS build
7098 print_labels() Avoids warnings when building with DEBUG defined, but without
7101 2009-11-11 Peter Clifton * pcjc2 AT cam dot ac dot uk *
7103 * src/polygon1.c: polygon1.c: Tidy up poly_Valid debug print
7104 routines to match pline_dump Avoids a superfluous line: %d %d 10 10 ""] at the beginning of each output block.
7106 2009-11-11 Peter Clifton * pcjc2 AT cam dot ac dot uk *
7108 * src/polygon1.c: polygon1.c: Fixup pline_dump() (debug code) to
7109 match correct edge state The old code would mistakenly annotate with the edge state for the
7110 next edge. From polygon1.c: /* note that a vertex v's Flags.status represents the edge defined
7111 by * v to v->next (i.e. the edge is forward of v) */
7113 2009-11-11 Harry Eaton * haceaton AT users dot sourceforge dot net *
7115 * src/polygon1.c: Re-write node_label() to only label the edge being
7116 passed as its argument. Breifly, the old code tried to walk the entire CVCList labeling
7117 multiple edges. The new code tries only to label the argument vertex
7118 i.e. the forward ('N') edge from this vertex. It tries to look
7119 counter-clockwise just one edge which will give the answer in most
7120 cases. If that fails it looks further into the CVCList until it can
7121 find the answer, then stops. The code is much simpler because we
7122 know that the edge we are labeling is always departing the
7123 cross-vertex point. (Futher comments and original bug diagnosis by Peter Clifton) This prevents "double labeling", where the old routine could label
7124 any edges which intersect at the vertex passed to node_label(). This fixes a bug discovered by Stefan Salewski, where certain boards
7125 could trigger an assert failure when PCB was built with debugging. The bug, it would seem - is relating to the way (and order) we were
7126 labeling edges of polygon contours: 2 |/\ In this diagram, x is on the outer contour of our polygon,
7127 x | and is in fact two vertices at the same point, lets denote
7128 |\/ these as |\ and |/ 1 The labelling algorithm works up from point 1, gets to |\, whereupon
7129 it gets the CVCList for the spatial point x - which contains |\ AND
7130 |/ along with the (shared) edges from the clipping contour. node_label is called with the |\ vertex, but in the process of
7131 scanning the CVCList at this point, it also checks for SHARED edges.
7132 It _only_ checks shared edges against the |\ vertex, NOT the |/ one. During this pass, the | edge coming from the |/ vertex gets
7133 mis-labelled as "OUTSIDE", where is should eventually get labelled
7134 "SHARED" BUG: We then skip over calling node_label with the |/ vertex, since | has
7135 already been labelled. We next get to point 2. Point 2 looks at the | edge, and declares it to be "INSIDE". (It
7136 should already have been labelled "SHARED" by this point, so
7137 node_label doesn't know any better. The | edge is already labelled "OUTSIDE" when we go to label it
7138 "INSIDE".. assertion fail. This commit avoids missing the correct labelling of shared edges, by
7139 ensuring we never label any edges in advance of calling node_label
7142 2009-11-11 Peter Clifton * pcjc2 AT cam dot ac dot uk *
7144 * src/polygon1.c: Reindent polygon1.c with "indent" This is a painful one for me to push, as it will certainly cause
7145 rebase misery against all my local branches. Oh well... got to be done!
7147 2009-11-09 Peter Clifton * pcjc2 AT cam dot ac dot uk *
7149 * src/file.c: file.c: Don't walk off the end of a string in
7150 string_cmp() We need to check that we don't advance past the terminating \0 in
7153 2009-11-09 Peter Clifton * pcjc2 AT cam dot ac dot uk *
7155 * src/polygon1.c: polygon1.c: Fix some printf format arguments in
7156 DEBUG sections %ld is for long int, and we are passing int, so use %d
7158 2009-11-09 Peter Clifton * pcjc2 AT cam dot ac dot uk *
7160 * src/hid/gtk/gui-dialog.c, src/hid/gtk/gui-top-window.c: hid/gtk:
7161 Don't pass non-literat format argument to printf style functions.
7163 2009-11-09 Peter Clifton * pcjc2 AT cam dot ac dot uk *
7165 * src/hid/gtk/gui-top-window.c: Pass correct length to strncat We need to pass "sizeof (string) - 1", due to the NULL pointer.
7167 2009-11-08 Peter Clifton * pcjc2 AT cam dot ac dot uk *
7169 * win32/Makefile.am, win32/build_pcb, win32/pcb.nsi.in: win32:
7170 Install Readme.txt in @docdir@ Also removes unnecessary fiddling with pkgdatadir which was
7171 responsible for creating an empty directory $datadir/pcb-$VERSION/ Adjusted pcb.nsi.in to match new location of Readme.txt, but have
7172 not test-built the Win32 package due to non-availablility. Adjusted build_pcb to put @docdir@ at ${pcb_inst}/doc, as this fits
7173 the rest of the win32 build better.
7175 2009-11-07 Peter Clifton * pcjc2 AT cam dot ac dot uk *
7177 * example/Makefile.am, example/libraries/Makefile.am,
7178 tutorial/Makefile.am: Install examples under @docdir@ This is what distro packaging scripts have been doing anyway, so
7179 save them the work by moving our defaults. Suggested by Chitlesh GOORAH * chitlesh dot goorah AT gmail dot com
7182 2009-11-07 Peter Clifton * pcjc2 AT cam dot ac dot uk *
7184 * example/LED, example/LED.NET, example/LED.net, example/LED.pcb,
7185 example/LED2, example/LED2.pcb, example/Makefile.am: examples: Add
7186 ".pcb" extension to "PCB(2)", move "LED.NET" to "LED.net" ".pcb" change suggested by Chitlesh GOORAH * chitlesh dot goorah AT
7187 gmail dot com * ".net" change was my doing, to match our registered
7190 2009-11-06 Peter Clifton * pcjc2 AT cam dot ac dot uk *
7192 * src/hid/lesstif/main.c: lesstif: Remove errornous & operator in
7193 free () call GCC spotted this one.
7195 2009-11-05 Dan McMahill * dan AT mcmahill dot net *
7197 * README.snapshots: Fix some details on branching and pushing a
7200 2009-11-03 Dan McMahill * dan AT mcmahill dot net *
7202 * README.snapshots: Update how to release files on sourceforge since
7205 2009-11-03 Dan McMahill * dan AT mcmahill dot net *
7207 * configure.ac: Welcome to pcb-1.99z (decision time is looming)
7209 2009-11-03 Dan McMahill * dan AT mcmahill dot net *
7211 * : commit 7f38f164addcbfc0a9873d2e0782f921f2d005c9 Author: Dan
7212 McMahill * dan AT mcmahill dot net * Date: Tue Nov 3 17:56:38 2009
7215 2009-11-03 Dan McMahill * dan AT mcmahill dot net *
7217 * utils/git2cl: Be more agressive about obfuscating email addresses.
7219 2009-11-03 Peter Clifton * pcjc2 AT cam dot ac dot uk *
7221 * src/hid/batch/batch.c, src/move.c: Fix mistaken use of MAX_LAYER
7222 instead of max_layer. (Why this wasn't obvious, I can't possibly imagine ;)) Bug relates to batch HID, and move of text items onto the solder
7225 2009-11-02 Dan McMahill * dan AT mcmahill dot net *
7227 * NEWS: Add a few more news item for the upcoming release.
7229 2009-11-02 Dan McMahill * dan AT mcmahill dot net *
7231 * : commit ccd37c7db665e3b0f15bc5377a54f89ba997296d Author: Dan
7232 McMahill * dan AT mcmahill dot net * Date: Mon Nov 2 22:24:29 2009
7235 2009-09-22 Ineiev * ineiev AT users dot berlios dot de *
7237 * src/file.c, src/global.h, src/mymem.c, src/parse_y.y: add
7238 attributes to layers Fix memory leaks of attributes
7240 2009-10-30 Dan McMahill * dan AT mcmahill dot net *
7242 * configure.ac, doc/Makefile.am, lib/Makefile.am: Provide better
7243 support for building from anoncvs sources. There were a few conditionals which turned on additional portions of
7244 the makefiles if it was determined that the build was from sources
7245 obtained via git. Expand this to also detect if sources were from
7246 CVS since we still support anonymous cvs for tracking sources.
7248 2009-10-29 Dan McMahill * dan AT mcmahill dot net *
7250 * README.snapshots: Add some missing 'git push' to the instructions.
7252 2009-10-29 Dan McMahill * dan AT mcmahill dot net *
7254 * NEWS: Add some last minute news items for 20091101
7256 2009-10-29 Dan McMahill * dan AT mcmahill dot net *
7258 * README.snapshots: Recommend using the -O (obfuscate email
7259 addresses) option to git2cl
7261 2009-10-29 Dan McMahill * dan AT mcmahill dot net *
7263 * utils/git2cl: Teach git2cl how to obfuscate email addresses. Also
7266 2009-10-29 Dan McMahill * dan AT mcmahill dot net *
7268 * : commit dc0cdd25a1e490e7288622e9bcb5efd1f253c9cb Author: Dan
7269 McMahill * dan AT mcmahill dot net * Date: Wed Oct 28 22:58:43
7272 2009-10-28 Dan McMahill * dan AT mcmahill dot net *
7274 * README.snapshots: Take a first pass at updating the release
7275 documentation for git instead of cvs.
7277 2009-10-28 Dan McMahill * dan AT mcmahill dot net *
7279 * NEWS: Update the target release date for the next snapshot
7281 2009-10-22 Peter Clifton * pcjc2 AT cam dot ac dot uk *
7283 * src/polygon.c: Pass r_NoHolesPolygonDicer a POLYAREA *, not a
7284 PLINE * No functional changes to callers of NoHolesPolygonDicer() The allows state in the POLYAREA to be passed into the recursive
7285 dicer. This is needed in order to maintain an up to date r-tree of
7286 contours in the POLYAREA.
7288 2009-10-22 Peter Clifton * pcjc2 AT cam dot ac dot uk *
7290 * src/polygon1.c: Fix bug with polygon boolean operation PBO_XOR (I
7291 think!) If the contour in A is outside of B, it should be kept. It seems
7292 this case may have been missed. PCB does not use the PBO_XOR operation, so it is difficult to test
7293 whether this is correct or not.
7295 2009-10-21 Peter Clifton * pcjc2 AT cam dot ac dot uk *
7297 * src/global.h, src/polyarea.h, src/polygon1.c: Make rtree_t type
7298 available to polygon1.c This saves a load of casting, and helps the compiler doing its job
7299 catching programming errors.
7301 2009-10-21 Jared Casper * jaredcasper AT gmail dot com *
7303 * src/hid/gtk/gui-top-window.c: Fix a bug in gtk hid which caused
7304 layer buttons to get confused (sourceforge bug 1988951) In ghid_layer_enable_buttons_update, the layer_buttons array was
7305 being indexed using a counter which stoped at the current max_layer,
7306 which was wrong. Changed this to use the constants LAYER_BUTTON_*. Also made the handling of the silk and rats buttons match the
7307 (slightly more correct) handling of the other buttons in
7308 layer_enable_button_cb.
7310 2009-10-21 Peter Clifton * pcjc2 AT cam dot ac dot uk *
7312 * src/create.c, src/global.h, src/hid/common/draw_helpers.c,
7313 src/mymem.c, src/polygon.c, src/polygon.h: Add cache for "noholes",
7314 diced versions of polygons
7316 2009-10-21 Peter Clifton * pcjc2 AT cam dot ac dot uk *
7318 * src/hid/common/draw_helpers.c, src/polygon.c: Give callback from
7319 NoHolesPolygonDicer ownership of the returned contour This means callers of NoHolesPolygonDicer() should call
7320 poly_FreeContours on the contour they are passed (if they do not
7323 2009-10-21 Peter Clifton * pcjc2 AT cam dot ac dot uk *
7325 * src/polyarea.h, src/polygon1.c: Replace poly_Clear(POLYAREA *)
7326 function with poly_FreeContours(PLINE **) The poly_Clear function only clears the contours of the polygon
7327 anyway, so make a more explicitly named function to do this work,
7328 and pass the contours directly. This will be useful should we want to deal with a series of contours
7329 separately from a POLYAREA object.
7331 2009-10-21 Peter Clifton * pcjc2 AT cam dot ac dot uk *
7333 * src/action.c, src/create.c, src/strflags.c: Fix "newfullpoly" flag
7334 test and save its state into the .pcb file. The flag controlling this behaviour is kept up to date as a PCB
7335 flag, not something which is updated in Settings.FullPoly. Change
7336 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
7337 code always treats broken up pieces of the polygon as being
7338 connected. It _might_ have been better to leave this support broken - so users don't inadvertently create polygons with the "fullpoly"
7339 flag. TODO: Consider removing, hiding or adding warnings to this feature.
7341 2009-10-20 Peter Clifton * pcjc2 AT cam dot ac dot uk *
7343 * src/hid/gtk/gui-output-events.c: hid/gtk: Remove unused function
7346 2009-10-19 Peter Clifton * pcjc2 AT cam dot ac dot uk *
7348 * src/hid/common/actions.c: hid/common: Fix dereference bug in
7349 hid_find_action(). We want to check context for being NULL, not *context.
7351 2009-10-19 Peter Clifton * pcjc2 AT cam dot ac dot uk *
7353 * src/hid/common/actions.c: hid/common: Don't walk off end of string
7354 whilst parsing. Fixed a bug where the action parser would walk off the end of a
7355 string when given an action without a "(" in it, e.g. "benchmark".
7357 2009-10-17 Peter Clifton * pcjc2 AT cam dot ac dot uk *
7359 * src/find.c: Tidy up IsPolygonInPolygon No functional changes
7361 2009-10-17 Peter Clifton * pcjc2 AT cam dot ac dot uk *
7363 * src/global.h, src/polygon1.c, src/rtree.c: Add some annotations to
7364 help optimise branch prediction. Macros G_LIKELY and G_UNLIKELY were taken from GLib (LGPL 2), and
7365 renamed without the G_ prefix. This hasn't had much discernable effect
7367 2009-10-17 Peter Clifton * pcjc2 AT cam dot ac dot uk *
7369 * src/polygon1.c: Rework iteration over contours in "intersect" to
7370 improve performance We don't need to be using an r_tree search to determine if a
7371 contour's bounding box hits anything in another contour. Just
7372 compare the bounding boxes directly, then continue to the more
7373 expensive testing. Rather than counting the vertices of each POLYAREA then swapping to
7374 ensure we loop over the the small one, wait until we've worked out
7375 which contours we're comparing. Rather than swapping, we just choose
7376 which to loop over. This saves us time in the case where the larger
7377 intersecting contour belongs to the polygon with fewer vertices. In one case, this change reduced a complex board's load time from
7378 ~140 seconds to ~70.
7380 2009-10-14 Peter Clifton * pcjc2 AT cam dot ac dot uk *
7382 * src/.gitignore: Add dbus-introspect.h to src/.gitignore dbus-introspect.h is a generated file.
7384 2009-09-14 Dan McMahill * dan AT mcmahill dot net *
7386 * : commit 7ae3210e58b682577bbae1ff4d8ffc89a6666ad9 Author: Dan
7387 McMahill * dan AT mcmahill dot net * Date: Mon Sep 14 07:20:50
7390 2009-09-11 DJ Delorie * dj AT delorie dot com *
7392 * src/misc.c: Fix "Design Rule Checker moves elements and traces off
7393 grid" Patch from Ineiev * ineiev AT gmail dot com * to keep the grid from
7394 changing just because DRC ran.
7396 2009-08-29 Bert Timmerman * bert dot timmerman AT xs4all dot nl *
7398 * src/hid/batch/batch.c: gEDA-dev: [pcb patch] Correction of the pcb
7399 homepage url in the batch HID Hi, Subject says it all. Kind regards, Bert Timmerman. >From 54b7d8e1d7704c1f467e0711f94dc564cc0a2c6d Mon Sep 17 00:00:00
7400 2001 From: Bert Timmerman * bert dot timmerman AT xs4all dot nl *
7401 Date: Sat, 29 Aug 2009 21:57:22 +0200 Subject: [PATCH] Correction of
7402 the pcb homepage url in the batch HID.
7404 2009-08-14 Bert Timmerman * bert dot timmerman AT xs4all dot nl *
7406 * src/misc.c: gEDA-dev: pcb [PATCH] Correction of the geda homepage
7407 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
7408 2001 From: Bert Timmerman * bert dot timmerman AT xs4all dot nl *
7409 Date: Fri, 14 Aug 2009 00:33:26 +0200 Subject: [PATCH] Correction of
7410 the geda homepage url and wiki url in the about dialog window.
7412 2009-08-13 Bert Timmerman * bert dot timmerman AT xs4all dot nl *
7414 * src/misc.c: Correction of the pcb homepage url in the about dialog
7417 2009-03-31 Bert Timmerman * bert dot timmerman AT xs4all dot nl *
7419 * src/hid/gtk/gui-dialog.c: Apply filters to load filechooser
7420 dialogs. [1988982] [2686963] Applies filters to the filechooser dialogs when loading layouts,
7421 layouts (to buffer), elements (to buffer) and netlists. Default behaviour is to not filter in the filechooser dialog.
7422 Choosing a predefined filefilter in the filechooser dialog filters
7423 on registered mime types, lowercase and uppercase file extensions.
7424 Predefined filters are selected upon the action chosen in the "File"
7427 2009-08-04 Peter TB Brett * peter AT peter-b dot co dot uk *
7429 * README.cvs, README.git: Replace 'README.cvs' with 'README.git'.
7430 [2810417] Provide information on how to use git to access the PCB repository.
7433 2009-08-04 Peter TB Brett * peter AT peter-b dot co dot uk *
7435 * doc/.gitignore: Add some generated .texi files to doc/.gitignore.
7437 2009-08-01 Uwe Hermann * uwe AT hermann-uwe dot de *
7439 * doc/gs/fb-blinker.texi, doc/gs/fb-smt.texi: gEDA-user: [PATCH]
7440 s/pj-102.fp/pj102.fp/ in PCB tutorial Replace pj-102.fp filename with pj102.fp to make the PCB example
7443 2009-07-30 Dan McMahill * dan AT mcmahill dot net *
7445 * src/hid/png/png.c: Do not try to call gdImageCreate() on a 0x0
7446 sized image. This hopefully addresses some of the segfaults seen recently with
7447 the latest version of gd. If a brush size scales to give a size of
7448 0 then bump it up to a single pixel.
7450 2009-07-29 Dan McMahill * dan AT mcmahill dot net *
7452 * src/hid/png/png.c: Check return codes from the various gd
7453 allocation functions. Check returns codes for gdImageCreate(), gdImageColorAllocate(), and
7454 gdImageColorAllocateAlpha() calls to check for problems.
7456 2009-07-27 Dan McMahill * dan AT mcmahill dot net *
7458 * src/action.c: Don't disperse locked elements. When dispersing elements do not disperse locked elements. Locked
7459 elements often times are mechanical and really should not be moved.
7460 Noted by Levente Kovacs on gEDA-user.
7462 2009-07-07 anthonix * anthonix AT anthonix-desktop dot (none) *
7464 * : commit 2f80c6fc0c4aa1b7b5bb85d0d45f8415564dbe68 Author:
7465 anthonix * anthonix AT anthonix-desktop dot (none) * Date: Tue Jul
7466 7 02:21:33 2009 +1200
7468 2009-07-02 Dan McMahill * dan AT mcmahill dot net *
7470 * po/POTFILES.in: add src/toporoute.c add src/toporoute.c which lets this pass 'make distcheck' again.
7472 2009-07-03 anthonix * anthonix AT anthonix-desktop dot (none) *
7474 * src/toporouter.c, src/toporouter.h: Toporouter: ROAR
7476 2009-06-27 anthonix * anthonix AT anthonix-desktop dot (none) *
7478 * : commit ffb17f87f0d5c4e06574750f36a15e51f4ff89d3 Author:
7479 anthonix * anthonix AT anthonix-desktop dot (none) * Date: Sat Jun
7480 27 11:27:55 2009 +1200
7482 2009-06-25 Dan McMahill * dan AT mcmahill dot net *
7484 * : commit b17582ba2e192f42cd87d8466f16ea48fbde0d5b Author: Dan
7485 McMahill * dan AT mcmahill dot net * Date: Thu Jun 25 22:58:29
7488 2009-06-26 anthonix * anthonix AT anthonix-desktop dot (none) *
7490 * : commit 889ee4f3a223c90d376c68524bce75423ef776bc Author:
7491 anthonix * anthonix AT anthonix-desktop dot (none) * Date: Fri Jun
7492 26 13:56:48 2009 +1200
7494 2009-06-26 anthonix * anthonix AT anthonix-desktop dot (none) *
7496 * src/toporouter.c, src/toporouter.h: Toporouter: One pass
7499 2009-06-25 Dan McMahill * dan AT mcmahill dot net *
7501 * tests/run_tests.sh: When using the gerber HID, always use
7502 --fab-author to make the resuls repeatable. Always use the --fab-author flag to the gerber HID to avoid many
7503 false failures which would occur when different users try to run the
7504 testsuite. Also fix a minor glitch when building from a read-only
7505 source tree while here.
7507 2009-06-24 Dan McMahill * dan AT mcmahill dot net *
7509 * Makefile.am, configure.ac: Top level configure stuff for the
7510 testsuite. Add top level configure stuff missed in the previous few commits for
7513 2009-06-24 Dan McMahill * dan AT mcmahill dot net *
7515 * tests/golden/Makefile.am, tests/golden/hid_png1/Makefile.am,
7516 tests/run_tests.sh, tests/tests.list: Teach the testsuite how to
7517 compare image files. Teach testsuite how to compare image files and add a very basic test
7520 2009-06-24 Dan McMahill * dan AT mcmahill dot net *
7522 * : commit 81fdd6f7753046121b268cc562faab2d4bcb69f6 Author: Dan
7523 McMahill * dan AT mcmahill dot net * Date: Wed Jun 24 22:16:17
7526 2009-06-23 Dan McMahill * dan AT mcmahill dot net *
7528 * src/buffer.c: Document the FreeRotateBuffer() action. Add syntax and help strings as well as the manual documentation for
7529 the FreeRotateBuffer() action.
7531 2009-06-23 Dan McMahill * dan AT mcmahill dot net *
7533 * doc/pcb.texi: Add a comment about breakouts for fine pitch power
7534 pins and the autorouter. Add a comment about breakouts for fine pitch power pins and the
7535 autorouter. Suggested by harry on geda-user.
7537 2009-06-22 Dan McMahill * dan AT mcmahill dot net *
7539 * doc/pcb.texi: Add a short chapter on using the autorouter. Add a short chapter on using the autorouter based on email
7540 instructions from harry on geda-user.
7542 2009-06-22 DJ Delorie * dj AT delorie dot com *
7544 * src/hid/png/png.c: Add bloat to PNG hid Add a --png-bloat option that takes a bloat setting, much like the
7545 postscript HID. Optionally, a units suffix is allowed: --png-bloat
7546 10px or --png-bloat 1.2mil.
7548 2009-06-21 harry * harry AT harry-laptop dot (none) *
7550 * src/autoroute.c: calculate total wire length for result
7552 2009-06-21 harry * harry AT harry-laptop dot (none) *
7554 * src/buffer.c, src/create.c, src/polygon1.c, src/rats.c,
7555 src/remove.c, src/search.c: Fix several errors, some more
7556 point-boxes that weren't half open and several found with valgrind.
7557 valgrind is your friend!
7559 2009-06-21 harry * harry AT harry-laptop dot (none) *
7561 * src/misc.c: fix single-point rectangles to correctly have
7564 2009-06-21 harry * harry AT harry-laptop dot (none) *
7566 * src/action.c: don't count one rat line twice when deleting them
7568 2009-06-21 Dan McMahill * dan AT mcmahill dot net *
7570 * src/pcbtest.sh.in: Improve the pre-install pcb wrapper script. The pcbtest.sh wrapper script is used to run pcb for testing before
7571 pcb is installed. Improve the robustness of this script to allow it
7572 to be run from a different directory from where it is created as
7573 well as allowing the export HID's to be called with it.
7575 2009-06-21 harry * harry AT harry-laptop dot (none) *
7577 * : commit dfc097708cf04983767be89b4e29a551cc0b3bc3 Author: harry *
7578 harry AT harry-laptop dot (none) * Date: Sun Jun 21 14:33:59 2009
7581 2009-06-21 harry * harry AT harry-laptop dot (none) *
7583 * src/autoroute.c, src/box.h, src/heap.c, src/heap.h, src/hid.h,
7584 src/hid/gtk/gtkhid-main.c, src/hid/lesstif/main.c, src/mtspace.c,
7585 src/mtspace.h, src/rtree.c, src/vector.c, src/vector.h: Major
7586 updates to the autorouter. Fixes bug created from prior changes
7587 elsewhere and changes significantly the way that expansion searching
7590 2009-06-20 DJ Delorie * dj AT delorie dot com *
7592 * src/hid/common/actions.c: Oops, re-comment-out a debug statement. Re-comment out a debug statement that was accidentally left
7593 uncommented in the last commit.
7595 2009-06-19 Jared Casper * jaredcasper AT gmail dot com *
7597 * src/hid/common/actions.c: Allow quoted strings and escaped
7598 characters in action arguments. Quoting works similar to bash quoting: A backslash (\) is the escape character. It preserves the literal
7599 value of the next character that follows. To get a literal '\' use
7600 "\\". Enclosing characters in single quotes preseves the literal value of
7601 each character within the quotes. A single quote may not occur
7602 between single quotes, even when preceded by a blackslash. Enclosing characters in double quotes preserves the literal value of
7603 all characters within the quotes, with the exception of '\' which
7604 maintains its special meaning as an escape character.
7606 2009-06-16 Dan McMahill * dan AT mcmahill dot net *
7608 * : commit 8039b7114c038b05688f0e7c2a527a187cda242e Author: Dan
7609 McMahill * dan AT mcmahill dot net * Date: Tue Jun 16 21:03:51
7612 2009-06-17 anthonix * anthonix AT anthonix-desktop dot (none) *
7614 * src/toporouter.c: Toporouter: Fix for routing_edge_insert() with
7617 2009-06-14 anthonix * anthonix AT anthonix-desktop dot (none) *
7619 * src/toporouter.c: Toporouter: Fix for TCS candidate vertices leak
7621 2009-06-14 anthonix * anthonix AT anthonix-desktop dot (none) *
7623 * src/toporouter.c: Toporouter: Fix for arc orientation in export
7626 2009-06-14 anthonix * anthonix AT anthonix-desktop dot (none) *
7628 * src/toporouter.c: Toporouter: Fix for arc orientation in export
7631 2009-06-14 anthonix * anthonix AT anthonix-desktop dot (none) *
7633 * src/toporouter.h: Toporouter: Wiring score calculation
7635 2009-06-14 anthonix * anthonix AT anthonix-desktop dot (none) *
7637 * src/toporouter.c: Toporouter: Better cleanup of routing edges
7639 2009-06-14 anthonix * anthonix AT anthonix-desktop dot (none) *
7641 * src/toporouter.c: Toporouter: Fix for arc removal not updating
7644 2009-06-14 anthonix * anthonix AT anthonix-desktop dot (none) *
7646 * src/toporouter.c, src/toporouter.h: Toporouter: Work on traces
7647 arcing back around vertices
7649 2009-06-10 Dan McMahill * dan AT mcmahill dot net *
7651 * lib/geda.inc: RESC3216M was defined twice. The first was supposed
7652 to be INDC3216M. Noted by John Luciana on the gEDA user list.
7654 2009-06-11 anthonix * anthonix AT anthonix-desktop dot (none) *
7656 * src/Makefile.am, src/gts/gts.h, src/gts/predicates.c,
7657 src/gts/predicates_init.c, src/toporouter.c, src/toporouter.h:
7658 Toporouter: Dynamic computation of GTS predicates
7660 2009-06-10 anthonix * anthonix AT anthonix-desktop dot (none) *
7662 * src/toporouter.c: Toporouter: Workaround for older GLib
7664 2009-06-10 anthonix * anthonix AT anthonix-desktop dot (none) *
7666 * src/toporouter.c: Toporouter: Workaround for older GLib
7668 2009-06-10 anthonix * anthonix AT anthonix-desktop dot (none) *
7670 * src/toporouter.c: Toporouter: Workaround for older GLib
7672 2009-06-10 anthonix * anthonix AT anthonix-desktop dot (none) *
7674 * src/toporouter.c: Toporouter: Workaround for older GLib
7676 2009-06-10 anthonix * anthonix AT anthonix-desktop dot (none) *
7678 * : commit 9653a6371aa41f873932062ef6d6b838bf98a987 Author:
7679 anthonix * anthonix AT anthonix-desktop dot (none) * Date: Wed Jun
7680 10 13:28:10 2009 +1200
7682 2009-06-09 Dan McMahill * dan AT mcmahill dot net *
7684 * : commit 6878692f1e13a09a7191c8f9cf09e05c403fbe33 Author:
7685 anthonix * anthonix AT anthonix-desktop dot (none) * Date: Wed Jun
7686 10 13:23:27 2009 +1200
7688 2009-06-10 anthonix * anthonix AT anthonix-desktop dot (none) *
7690 * src/toporouter.c: Toporouter: disabled some experimental stuff
7692 2009-06-10 anthonix * anthonix AT anthonix-desktop dot (none) *
7694 * src/toporouter.c, src/toporouter.h: Misc Toporouter Changes
7696 2009-06-09 Dan McMahill * dan AT mcmahill dot net *
7698 * src/gts/boolean.c, src/gts/split.c, src/gts/surface.c,
7699 src/report.c: Remove some unused variables Remove some unused variables. On some others which are only
7700 conditionally used, then only conditionally declare them. Same for
7701 some functions. This clears out some of the compiler warning
7704 2009-06-09 Dan McMahill * dan AT mcmahill dot net *
7706 * src/hid/gtk/gui-pinout-preview.c: Revert "avoid trying to use the
7707 background graphics context before it is created." This reverts commit 1138b9419b56c6c4a5861dce79ed058ee4e513ba. As
7708 noted by Peter Clifton, there is a visible artifact that results
7709 from this. We'll look for a better way to make sure the GC is
7710 created when it is needed.
7712 2009-06-08 Dan McMahill * dan AT mcmahill dot net *
7714 * src/hid/gtk/gui-pinout-preview.c: avoid trying to use the
7715 background graphics context before it is created. On startup, some code was trying to access the background graphics
7716 context before it was created. Check to make sure the context has
7717 been created before we do anything with it.
7719 2009-06-08 Jared A. Casper * jcasper AT youngmc dot Stanford dot EDU *
7721 * src/hid/common/actions.c, src/hid/gtk/gtkhid-main.c,
7722 src/hid/lesstif/main.c: Fix command line exporting. Previously, hid_actionv was changed to always call gui->get_coords
7723 wether or not the action had a need_coord_msg, in an attempt to
7724 always get the latest coords for things like zoom or pan that didn't
7725 have a need_coord_msg. However, this broke command line exporting
7726 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
7727 has a need_coord_msg and added need_coord_msg's to actions that need
7730 2009-06-08 Jared Casper * jaredcasper AT gmail dot com *
7732 * src/gpcb-menu.res, src/hid/gtk/gtkhid-main.c,
7733 src/hid/gtk/gui-output-events.c: Adding ability to customize mouse
7734 scroll action in GTK. Changed the mouse_scroll gtk event handler to use do_mouse_action
7735 instead of manually handling the event. gtk treats scrolling
7736 differently as a mouse button event, and doesn't give a mouse button
7737 number, so this patch just hard codes up/down/left/right to buttons
7738 4 through 7. This corresponds to the default names used in the
7739 resource file, and, for X11, gtk hardcodes mouse buttons 4 - 7 to
7740 the scrolling events anyway. This may cause problems in quartz or
7741 windows if some mouse has a bunch of buttons and quartz/windows maps
7742 those buttons to numbers 4 - 7, but I don't have a system to test
7743 that (and in that case the names in the resource file would be wrong
7744 as well). Added a Scroll action to the gtk hid to be able to mimic the
7745 existing scroll wheel behavior with an action script.
7747 2009-06-08 Steven Michalske * smichalske AT gmail dot com *
7749 * src/line.c: Allow mod1(alt)(option) to bypass AUTO enforce DRC For Apples, which use ctrl-click to simulate right-click.
7751 2009-06-08 Steven Michalske * smichalske AT gmail dot com *
7753 * src/hid.h, src/hid/batch/batch.c, src/hid/bom/bom.c,
7754 src/hid/common/extents.c, src/hid/common/hidnogui.c,
7755 src/hid/gerber/gerber.c, src/hid/gtk/gtkhid-main.c,
7756 src/hid/gtk/gui.h, src/hid/lesstif/main.c, src/hid/lpr/lpr.c,
7757 src/hid/nelma/nelma.c, src/hid/png/png.c, src/hid/ps/eps.c,
7758 src/hid/ps/ps.c: Adding the ability to use mod1 (alt)(option) in
7759 HIDs This is useful for OSX installs as crtl-click, is mapped to right
7760 click. so when drawing a line that you want to force a DRC
7761 "Violation" and you need to use the control key, it will cancel the
7762 line being drawn, and start a new point. This is tested in the lesstif and GTK hids, under OSX wher ehte
7763 option key is the "alt" key. I leave it to the patch integrator th
7764 verify on linux for GTK and lesstif. This is a bit hackish on detecting the alt key/option key, I
7765 #ifdefed it to __APPLE__ because the option key returns 1<<13 not
7766 GDK_MOD1_MASK Under lesstif I might guess that the alt/mod1 is not
7767 quite the same as option.
7769 2009-06-07 Jared Casper * jaredcasper AT gmail dot com *
7771 * src/Makefile.am, src/action.c, src/gpcb-menu.res,
7772 src/hid/common/actions.c, src/hid/common/hid_resource.c,
7773 src/hid/common/hid_resource.h, src/hid/gtk/gtkhid-main.c,
7774 src/hid/gtk/gui-output-events.c, src/hid/gtk/gui-top-window.c,
7775 src/hid/gtk/gui.h, src/hid/lesstif/lesstif.h,
7776 src/hid/lesstif/main.c, src/hid/lesstif/menu.c: Teaching GTK hid to
7777 use mouse resources I had some free time over the weekend and have been wanting to get
7778 my hands dirty in the PCB code so I took a crack at this and wanted
7779 to get some feedback. Attached is a patch with a detailed commit message of what I did,
7780 but the general idea was to move the lesstif hid's handling of the
7781 mouse resources into a common hid file (which I called hid_resource)
7782 and have the gtk hid use that instead of being hardcoded. This way
7783 the hid's are only responsible for catching the button press,
7784 determining which modifier keys were active, then calling the common
7785 code to handle it. The common code does what the lesstif hid does,
7786 calls the actions defined in the resource file. In theory more
7787 common stuff could be moved to hid_resource, the code to find and
7788 load the resource file, for example, is nearly identical in both
7789 hids. I changed up the Mouse resource in gpcb-menu.res to match the
7790 hardcoded behavior of the gtk hid as closely as possible (see the
7791 commit message for details). I've played around with it a bit and it seems to be working, but as
7792 this my first time meddling with the code, I'm sure I missed some
7793 stuff. If anybody has time to look it over and/or try it out that
7794 would be great. Comments regarding the approach, formatting, style,
7795 etc. are all appreciated (I did my best to match the style of the
7796 surrounding code). Jared
7798 2009-06-05 Dan McMahill * dan AT mcmahill dot net *
7800 * src/edif.y: Use the appropriate header files instead of providing
7801 extern foo() prototypes. Use the correct headers for a handful of function prototypes. This
7802 should fix some build issues reported on geda-uers.
7804 2009-06-03 Dan McMahill * dan AT mcmahill dot net *
7806 * configure.ac: When building from git sources and building docs,
7807 force maintainer-mode. When building from git sources, maintainer mode is required to build
7808 the manual. So, unless the user has specified --disable-doc then
7809 force maintainer mode. When building from a tarball, the
7810 preformatted manual is already contained and we do not impose
7811 maintainer-mode. Hopefully this puts to rest the documentation
7812 building issues once and for all!
7814 2009-06-01 Dan McMahill * dan AT mcmahill dot net *
7816 * po/pcb.pot: Remove generated file that cause continual git churn. This file is generated and also removed by the clean target.
7817 Removing a file from the source tree via 'make clean' that is under
7818 version control just causes headaches.
7820 2009-06-01 Dan McMahill * dan AT mcmahill dot net *
7822 * doc/fractional_size.texi, doc/letter_size.texi,
7823 doc/metric_size.texi, doc/wire_size.texi: Remove additional
7824 generated files. Remove the .texi files that are generated from the ASCII .tab files
7825 from git to avoid gratitous storage of and changing of generated
7828 2009-05-29 Dan McMahill * dan AT mcmahill dot net *
7830 * doc/.gitignore, doc/gs/.gitignore: Add a few more missing
7833 2009-05-29 Dan McMahill * dan AT mcmahill dot net *
7835 * doc/.gitignore: Expand out the list of files since git didn't like
7836 the patterns I used.
7838 2009-05-29 Dan McMahill * dan AT mcmahill dot net *
7840 * doc/.gitignore: Add gitignore file for the manual
7842 2009-05-29 Dan McMahill * dan AT mcmahill dot net *
7844 * src/.gitignore, src/gts/.gitignore: Add some missing .gitignore
7845 entries for the new gts code
7847 2009-05-29 Dan McMahill * dan AT mcmahill dot net *
7849 * README.cvs: update this a bit to reflect the new repository home
7850 and also remove references to needing maintainer-mode
7852 2009-05-29 Dan McMahill * dan AT mcmahill dot net *
7854 * utils/git2cl: add git2cl utility to help update ChangeLog's for
7857 2009-05-29 Dan McMahill * dan AT mcmahill dot net *
7859 * doc/actions.texi, doc/pcbfile.texi, doc/version.texi: remove some
7860 generated files from git. These are only needed if you are building
7861 the documentation in which case you have all the tools and makefile
7862 rules for them to be regenrated anyway. Eliminates all the
7863 headaches associated with generated files in version control.
7865 2009-05-29 Dan McMahill * dan AT mcmahill dot net *
7867 * doc/gs/gafrc, doc/gs/gschemrc: these are generated at configure
7870 2009-05-29 Dan McMahill * dan AT mcmahill dot net *
7872 * doc/gs/gafrc.in, doc/gs/gschemrc.in: to handle the case where we
7873 may be building outside the source directory, generate gafrc and
7874 gschemrc at configure time.
7876 2009-05-29 Dan McMahill * dan AT mcmahill dot net *
7878 * doc/gs/print-eps.scm: comment out a color theme that relied on a
7879 path only present on DJ's machine. It isn't really needed anyway.
7881 2009-05-29 Dan McMahill * dan AT mcmahill dot net *
7883 * po/POTFILES.in: add a missing file.
7885 2009-05-29 Dan McMahill * dan AT mcmahill dot net *
7887 * configure.ac, doc/Makefile.am, doc/gs/Makefile.inc,
7888 lib/Makefile.am: Remove the use of maintainer mode to gate on/off
7889 rules for building the documentation. Instead look for the
7890 existance of $(top_srcdir)/.git and decide based on that if this is
7891 a tarball build (in which case the documentation ships already
7892 built) or a git build. If it is a git build, then simply require
7893 all the needed tools for building the docs. If the tools are not
7894 found then configure will exit with an explicit message saying why
7895 it has failed and that either tools need to be installed or
7896 --disable-doc needs to be given. Hopefully this will eliminate the
7897 previous strange behavior of needing --maintainer-mode when building
7900 2009-05-29 Dan McMahill * dan AT mcmahill dot net *
7902 * src/Makefile.am: add gts/predicates_init.h to DISTCLEANFILES.
7903 Also comment out the section that extracts REGISTER lines from the
7904 gts code. We currently don't have any REGISTER lines in the gts
7905 code and so make was exiting because a grep failed.
7907 2009-05-23 Dan McMahill * dan AT mcmahill dot net *
7909 * 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
7910 that the pinout used is the one from the JEDEC drawings and it may
7911 or may not match a particular vendors pin numbering. I have in fact
7912 seen different vendors number the pins differently on these
7913 packages. It is entirely up to the user to make sure that their CAD
7914 symbols have the correct mapping from E, B, C (for a bipolar) to
7915 pins 1, 2, 3 and that the JEDEC numbering is used. While here correct the TO92 pinout. It now also matches the JEDEC
7916 drawing and is more consistent with the most common vendor
7917 numberings. How on earth has this not caused problems before?
7919 2009-05-17 Jared Casper * jaredcasper AT gmail dot com *
7921 * ChangeLog, configure.ac, src/hid/lpr/hid.conf: Some cleanup of
7922 configure script Added top level check for pkg-config with PKG_PROG_PKG_CONFIG and
7923 removed AC_PATH_PROG call for pkg-config from inside a block
7924 conditional on enable_dbus. Added a PKG_CHECK_MODULE for cairo if the toporouter output is
7925 enabled. Added a check for HID dependencies. A hid's hid.conf can set a
7926 variable "deps" which is a list of other HIDs that must be included
7927 with that hid. Added ps the lpr's deps.
7929 2009-05-14 Dan McMahill * dan AT mcmahill dot net *
7931 * lib/m4lib_to_newlib.sh: Remove an extra '' quote in a comment
7932 which caused confusion on some systems.
7934 2009-05-05 Ineiev * ineiev AT gmail dot com *
7936 * ChangeLog, configure.ac, src/Makefile.am, src/gts/cdt.c,
7937 src/toporouter.c, src/toporouter.h: Toporouter: portability fixes 1) add #include <assert.h> 2) add configure options for toporouter --disable-toporouter
7938 switches off toporouter --disable-toporouter-output switches off
7939 toporouter cairo output 3) make toporouter compatible with glib < 2.10.0 provide
7940 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
7941 version combined with toporouter produced segfault on tut1.pcb (on
7942 top of glib-2.0.1 and glib-2.6.4); furthermore, it accessed to
7943 undocumented glib structures.
7945 2009-04-30 Anthony Blake * tonyb33 AT gmail dot com *
7947 * src/gts/gts.h: gts.h fix Fixes the include of gtsconfig.h
7949 2009-04-24 Anthony Blake * tonyb33 AT gmail dot com *
7951 * gts/Makefile.am, gts/NOTES, gts/bbtree.c, gts/boolean.c,
7952 gts/cdt.c, gts/config.h.win32, gts/container.c, gts/curvature.c,
7953 gts/edge.c, gts/eheap.c, gts/face.c, gts/fifo.c, gts/graph.c,
7954 gts/gts-config.in, gts/gts-private.h, gts/gts.def, gts/gts.h,
7955 gts/gts.m4, gts/gtsconfig.h, gts/heap.c, gts/hsurface.c, gts/iso.c,
7956 gts/isotetra.c, gts/kdtree.c, gts/makefile.msc, gts/matrix.c,
7957 gts/misc.c, gts/named.c, gts/object.c, gts/oocs.c, gts/partition.c,
7958 gts/pgraph.c, gts/point.c, gts/predicates.c, gts/predicates.h,
7959 gts/predicates_init.c, gts/psurface.c, gts/refine.c,
7960 gts/rounding.h, gts/segment.c, gts/split.c, gts/stripe.c,
7961 gts/surface.c, gts/triangle.c, gts/tribox3.c, gts/vertex.c,
7962 gts/vopt.c, src/Makefile.am, src/gts/NOTES, src/gts/bbtree.c,
7963 src/gts/boolean.c, src/gts/cdt.c, src/gts/container.c,
7964 src/gts/curvature.c, src/gts/edge.c, src/gts/eheap.c,
7965 src/gts/face.c, src/gts/fifo.c, src/gts/graph.c,
7966 src/gts/gts-private.h, src/gts/gts.h, src/gts/heap.c,
7967 src/gts/hsurface.c, src/gts/iso.c, src/gts/isotetra.c,
7968 src/gts/kdtree.c, src/gts/matrix.c, src/gts/misc.c,
7969 src/gts/named.c, src/gts/object.c, src/gts/oocs.c,
7970 src/gts/partition.c, src/gts/pgraph.c, src/gts/point.c,
7971 src/gts/predicates.c, src/gts/predicates.h,
7972 src/gts/predicates_init.c, src/gts/psurface.c, src/gts/refine.c,
7973 src/gts/rounding.h, src/gts/segment.c, src/gts/split.c,
7974 src/gts/stripe.c, src/gts/surface.c, src/gts/triangle.c,
7975 src/gts/tribox3.c, src/gts/vertex.c, src/gts/vopt.c,
7976 src/toporouter.c, src/toporouter.h: GTS build script changes Changed build scripts to include GTS.
7978 2009-04-22 Anthony Blake * tonyb33 AT gmail dot com *
7980 * gts/Makefile.am, gts/NOTES, gts/bbtree.c, gts/boolean.c,
7981 gts/cdt.c, gts/config.h.win32, gts/container.c, gts/curvature.c,
7982 gts/edge.c, gts/eheap.c, gts/face.c, gts/fifo.c, gts/graph.c,
7983 gts/gts-config.in, gts/gts-private.h, gts/gts.def, gts/gts.h,
7984 gts/gts.m4, gts/gtsconfig.h, gts/heap.c, gts/hsurface.c, gts/iso.c,
7985 gts/isotetra.c, gts/kdtree.c, gts/makefile.msc, gts/matrix.c,
7986 gts/misc.c, gts/named.c, gts/object.c, gts/oocs.c, gts/partition.c,
7987 gts/pgraph.c, gts/point.c, gts/predicates.c, gts/predicates.h,
7988 gts/predicates_init.c, gts/psurface.c, gts/refine.c,
7989 gts/rounding.h, gts/segment.c, gts/split.c, gts/stripe.c,
7990 gts/surface.c, gts/triangle.c, gts/tribox3.c, gts/vertex.c,
7991 gts/vopt.c, src/Makefile.am, src/toporouter.c, src/toporouter.h:
7992 Added topological autorouter Topological autorouter (not yet exporting geometry) GTS with small
7993 but crucial bug fixes
7995 2009-04-19 Ben Jackson * ben AT ben dot com *
7997 * .gitignore: Add *.backup to gitignore (in case you test run PCB in
8000 2009-04-19 Ben Jackson * ben AT ben dot com *
8002 * src/hid/gtk/gui-config.c: GTK HID: Background color can be set
8003 live from config dialog Background, off-limit and grid color changes require a special
8004 update that was missing when colors were edited in the config
8007 2009-04-17 DJ Delorie * dj AT delorie dot com *
8009 * src/report.c: Add "report all net lengths" option Usage: Report (AllNetLengths[,(mm|in|mil|pcb)])
8011 2009-04-09 Ben Jackson * ben AT ben dot com *
8013 * .gitignore, data/.gitignore, lib/.gitignore, po/.gitignore,
8014 src/.gitignore, src/hid/.gitignore: Add initial gitignore files
8015 covering autogen files and GTK HID build
8017 2009-04-06 Peter Clifton * pcjc2 AT cam dot ac dot uk *
8019 * src/hid/gtk/gui-render-pixmap.c: GTK HID: Use clipping region when
8020 drawing DRC violation previews Should speed up rendering quite a bit for non-trivial boards.
8022 2009-04-06 Peter Clifton * pcjc2 AT cam dot ac dot uk *
8024 * src/hid/gtk/gtkhid-main.c, src/hid/gtk/gui.h: GTK HID: Move inline
8025 coordinate conversions from gtkhid-main.c to gui.h This allows other source files easy access to the routines Vx(),
8026 Vy(), Vz() and Px(), Py, Pz().
8028 2009-04-05 Peter Clifton * pcjc2 AT cam dot ac dot uk *
8030 * src/polygon.c: Allow PolygonHoles() to be passed a NULL region Passing a NULL region implies we wish to be called back for all
8031 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
8032 viewed with either thindraw, or thindraw polygons.
8034 2009-04-05 Peter Clifton * pcjc2 AT cam dot ac dot uk *
8036 * src/hid/gtk/gui-drc-window.c: GTK HID: Add "Refresh" button to DRC
8037 window to re-run the DRC. Allows the user to more quickly get an updated view of their
8038 progress fixing design rule violations.
8040 2009-04-05 Peter Clifton * pcjc2 AT cam dot ac dot uk *
8042 * src/hid/gtk/gui-drc-window.c: GTK HID: Fix pango markup in DRC
8043 window to be more compatible Avoid using the attribute alias "font_size" in the markup. Older
8044 pango versions only support "size", which is functionally identical.
8046 2009-04-03 Peter Clifton * pcjc2 AT cam dot ac dot uk *
8048 * src/hid/gtk/gtkhid-main.c: GTK HID: Fix cursor warping on flipped
8051 2009-04-03 Peter Clifton * pcjc2 AT cam dot ac dot uk *
8053 * src/Makefile.am, src/hid/gtk/gui-drc-window.c,
8054 src/hid/gtk/gui-drc-window.h, src/hid/gtk/gui-render-pixmap.c,
8055 src/hid/gtk/gui.h: GTK HID: Add preview images in the drc violations
8058 2009-04-03 Peter Clifton * pcjc2 AT cam dot ac dot uk *
8060 * src/Makefile.am, src/hid/gtk/gtkhid-main.c,
8061 src/hid/gtk/gui-config.c, src/hid/gtk/gui-drc-window.c,
8062 src/hid/gtk/gui-drc-window.h, src/hid/gtk/gui.h: GTK HID: Add DRC
8063 list window using the new DRC_GUI hooks.
8065 2009-04-02 Peter Clifton * pcjc2 AT cam dot ac dot uk *
8067 * src/action.c, src/find.c, src/global.h, src/gpcb-menu.res,
8068 src/hid.h, src/hid/batch/batch.c, src/hid/bom/bom.c,
8069 src/hid/common/hidnogui.c, src/hid/gerber/gerber.c,
8070 src/hid/gtk/gtkhid-main.c, src/hid/lesstif/main.c,
8071 src/hid/lpr/lpr.c, src/hid/nelma/nelma.c, src/hid/png/png.c,
8072 src/hid/ps/eps.c, src/hid/ps/ps.c: Refactor DRC reporting to work
8073 around a DrcViolationType structure. Add hooks to the HID structure allowing a GUI to consume this data
8074 directly (if it wants), rather than being called to display ordinary
8075 message dialog boxes. No HID yet utilises this interface. Remove log messages for individual design rule violations, instead
8076 writing log entries based on the title in the DrcViolationType. This
8077 modifies some of the logged messages slightly. All now prefix:
8078 "WARNING! Design Rule error - ", as was present on some of the old
8081 2009-04-01 Peter Clifton * pcjc2 AT cam dot ac dot uk *
8083 * src/polygon1.c: Fix leak of input objects for certain short-cut
8084 cases in poly_Boolean_free When either a or b input object is NULL, depending on the boolean
8085 operation selected, either a, b or NULL is returned as the result.
8086 Make sure we free any non NULL, and non-returned inputs when taking
8087 these shortcut paths.
8089 2009-04-01 Peter Clifton * pcjc2 AT cam dot ac dot uk *
8091 * src/polygon1.c: Fix leak of cross vertex connectivity lists when
8092 deleting contours Free these lists as we free the contour's nodes in poly_DelContour()
8094 2009-03-25 Tibor Palinkas * igor2 AT inno dot bme dot hu *
8096 * src/hid/lesstif/menu.c: pass context in lesstif Minor patch to get the action context properly passed to actions
8097 with lesstif, which doesn't use hid_actionv() for some reason.
8099 2009-03-25 DJ Delorie * dj AT delorie dot com *
8101 * src/hid.h, src/hid/common/actions.c, src/hid/hidint.h,
8102 src/hid/lesstif/menu.c: single-action register/deregister New API to support registering individual actions with a context for
8103 them, for example for scripting languages to register a hub
8104 dispatcher. From Igor2 AT inno dot bme dot hu (Tibor Palinkas)
8106 2009-03-08 DJ Delorie * dj AT delorie dot com *
8108 * src/report.c: bugfix: avoid NULL pin names with Report(NetLength) There was an assumption that all pins and pads have non-NULL names,
8109 but if you create a .pcb with a script you could end up with
8110 anything. Make sure the names we get are non-NULL before using
8113 2009-03-06 Peter Clifton * pcjc2 AT cam dot ac dot uk *
8115 * src/hid/gerber/gerber.c, src/hid/png/png.c: Fix exporters to cope
8116 with hairlines now they are passed as width 0, not 1 This fixes breakage introduced in commit
8117 8dd739f9bd72dc3c8beb6e4e5e32c124cac0d13b png exporter: - Needs a minimum 1x1 pixel brush for drawing hairlines - Report and patch by Levente Kovacs * leventelist AT gmail dot
8118 com * gerber exporter: - The hairline drawn around holes must be ignored - Report and diagnosis by Ineiev * ineiev AT gmail dot com *
8120 2009-03-05 Dan McMahill * dan AT mcmahill dot net *
8122 * README.snapshots: Add a note for next time about some increased
8123 test coverage. We need to do a distcheck build with a wider variety of requested
8124 HID's to catch things like the missing src/hid/batch/hid.conf
8126 2009-03-05 Dan McMahill * dan AT mcmahill dot net *
8128 * src/Makefile.am: add missing hid/batch/hid.conf to EXTRA_DIST.
8129 Noted by Stefan Salewski.
8131 2009-02-27 Dan McMahill * dan AT mcmahill dot net *
8133 * configure.ac: Bump the required autoconf version to 2.60. pdfdir, psdir, and friends appeared in version 2.60 of autoconf.
8134 Since we use those, we need 2.60 or higher. Problem noted by Bert
8137 2009-02-27 Dan McMahill * dan AT mcmahill dot net *
8139 * src/hid/png/png.c: Remove some now unused RCS ID's
8141 2009-02-21 Peter Clifton * pcjc2 AT cam dot ac dot uk *
8143 * src/Makefile.am, src/dbus.c, src/draw.c, src/global.h, src/hid.h,
8144 src/hid/batch/batch.c, src/hid/bom/bom.c,
8145 src/hid/common/draw_helpers.c, src/hid/common/draw_helpers.h,
8146 src/hid/common/extents.c, src/hid/common/hidinit.c,
8147 src/hid/common/hidnogui.c, src/hid/gerber/gerber.c,
8148 src/hid/gtk/gtkhid-main.c, src/hid/gtk/gui-config.c,
8149 src/hid/gtk/gui.h, src/hid/lesstif/main.c, src/hid/lpr/lpr.c,
8150 src/hid/nelma/nelma.c, src/hid/png/png.c, src/hid/ps/eps.c,
8151 src/hid/ps/ps.c, src/polygon.c, src/polygon.h: Add support for
8152 filling / thindrawing raw polygons to the HID interface Refactor core polygon drawing to use these member functions, and
8153 split the old code which used the HID's fill_polygon and draw_line
8154 functions into a helper function which the guis now use to convert
8155 the polygon into the primitives it knows how to draw. Alter the NoHoles dicer to pass back PLINE contours, rather than
8156 wrapping them in a POLYAREA and PolygonType.
8158 2009-02-21 Peter Clifton * pcjc2 AT cam dot ac dot uk *
8160 * src/draw.c, src/polygon.c, src/polygon.h: Add user_data parameter
8161 to NoHolesPolygonDicer Also switch the clip_box parameter before the ones defining the
8162 callback and its user_data.
8164 2009-02-21 Peter Clifton * pcjc2 AT cam dot ac dot uk *
8166 * src/draw.c: Thindraw with 0 width, not 1 PCB unit width. This allows the gui to differentiate between when the core wants
8167 hairline drawing, and when the core is drawing primitives which are
8168 actually 1 PCB unit wide.
8170 2009-02-21 Peter Clifton * pcjc2 AT cam dot ac dot uk *
8172 * src/draw.c: Thindraw polygons with circular line-caps. Set an explicit cap style for consistency with other "special"
8173 polygon drawing code.
8175 2009-02-17 Peter Clifton * pcjc2 AT cam dot ac dot uk *
8177 * src/polygon.c: Bisect and union self-intersecting arcs in
8178 ArcPoly() Avoids creating a self-intersecting contour which produces incorrect
8179 result. Bug noted when clearing a 360 degree arc from a polygon. For self-intersecting arcs, we now bisect, produce two polygons
8180 (with non-self-intersecting contours), then compute their union.
8182 2009-02-10 Peter Clifton * pcjc2 AT cam dot ac dot uk *
8184 * src/hid/bom/bom.c, src/hid/gerber/gerber.c, src/hid/lpr/lpr.c,
8185 src/hid/nelma/nelma.c, src/hid/png/png.c, src/hid/ps/eps.c,
8186 src/hid/ps/ps.c: Various HIDs: Add missing pointers for the watch
8187 and block hander methods These were missed when adding DBus support, since the initialisation
8188 of the HID structure assumes that unspecified members are zero, and
8189 all subsequent function pointers were explicitly 0, so as not to
8190 cause a type mismatch. Hids fixed: bom gerber lpr nelma png eps ps
8192 2009-02-10 Peter Clifton * pcjc2 AT cam dot ac dot uk *
8194 * src/hid/nelma/nelma.c: nelma: Fix prototype on set_layer() method
8195 to take the "empty" flag. Fixes warning about incompatible types when intialising the HID
8198 2009-02-10 Peter Clifton * pcjc2 AT cam dot ac dot uk *
8200 * src/polygon1.c: polygon1.c: Implement poly_Boolean() by calling
8201 poly_Boolean_free() Reduces duplicated code. The poly_Boolean() implemetation already
8202 copied the original contours, then duplicated the processing steps
8203 taken in poly_Boolean_free().
8205 2009-02-08 Peter Clifton * pcjc2 AT cam dot ac dot uk *
8207 * src/hid/gtk/gui-netlist-window.c: gtkhid: Return NULL from
8208 ghid_get_net_from_node_name() Fixes calling return; from function returning non-void type.
8210 2009-02-08 Peter Clifton * pcjc2 AT cam dot ac dot uk *
8212 * src/crosshair.c: crosshair.c: When drawing via DRC clearence, pass
8213 correct angle. 360 * 64 was a hold-over from before the HID split. The passed angle
8216 2009-01-24 Peter Clifton * pcjc2 AT cam dot ac dot uk *
8218 * src/polygon.c, src/polygon.h, src/rats.c: Make rats to polygons
8219 work for arbitrary clipped shapes The rat will still be drawn to the first point on the polygon, which
8220 might not necessarily be the closest.
8222 2009-01-14 DJ Delorie * dj AT delorie dot com *
8224 * src/hid/lesstif/dialogs.c: Skip undocumented options.
8226 2009-01-14 DJ Delorie * dj AT delorie dot com *
8228 * src/hid/gtk/gui-dialog-print.c: Don't show undocumented options.
8230 2009-01-11 Peter Clifton * pcjc2 AT cam dot ac dot uk *
8232 * src/hid/gtk/gui-netlist-window.c: GTK HID: Avoid critical warning
8233 looking up connectivity without netlist
8235 2009-01-10 DJ Delorie * dj AT delorie dot com *
8237 * src/hid/png/png.c: Add only-visible support to photo-mode, check
8238 for more outline fill spots.
8240 2009-01-10 DJ Delorie * dj AT delorie dot com *
8242 * src/hid/png/png.c: Add outline mode for photo-mode, from Mark
8245 2009-01-10 DJ Delorie * dj AT delorie dot com *
8247 * src/action.c: Handle wrap-around when searching the string hash
8250 2009-01-08 Dan McMahill * dan AT mcmahill dot net *
8252 * lib/misc.inc: for the axial footprints, put the mark on pin 1
8253 instead of on the body of the footprint. This gives you a much
8254 better chance of the pins being on-grid when working with the
8255 coarser grids typically found in a thru-hole design.
8257 2008-12-30 DJ Delorie * dj AT delorie dot com *
8259 * src/polygon.c: Add description of how polygon data works from Ben,
8260 and debug routines for dumping polygon structures within gdb.
8262 2008-12-27 DJ Delorie * dj AT delorie dot com *
8264 * src/action.c, src/const.h, src/draw.c, src/flags.c,
8265 src/gpcb-menu.res, src/pcb-menu.res, src/search.c, src/strflags.c:
8266 Add "hide names" option to hide all refdes on the board temporarily.
8268 2008-12-27 DJ Delorie * dj AT delorie dot com *
8270 * src/hid/gtk/gtkhid-main.c, src/hid/lesstif/main.c: Fix flipping of
8273 2008-12-27 DJ Delorie * dj AT delorie dot com *
8275 * src/parse_y.y: fix parsing of old-syntax arcs.
8277 2008-12-27 DJ Delorie * dj AT delorie dot com *
8279 * src/draw.c: Include explicit text/lines/etc on silk layers in
8282 2008-12-27 DJ Delorie * dj AT delorie dot com *
8284 * src/action.c: Make sure the user has specified an element for the
8287 2008-12-27 DJ Delorie * dj AT delorie dot com *
8289 * src/hid/gtk/gui-config.c: Add min-drill and min-ring to the saved
8290 config list, and save the config file *after* updating it, not
8293 2008-12-27 DJ Delorie * dj AT delorie dot com *
8295 * src/hid/gerber/gerber.c: sf patch 2162834 from d.ineiev - count
8296 apertures for diagonal pads
8298 2008-12-27 DJ Delorie * dj AT delorie dot com *
8300 * src/draw.c, src/hid.h, src/hid/batch/batch.c,
8301 src/hid/common/extents.c, src/hid/common/hidnogui.c,
8302 src/hid/gerber/gerber.c, src/hid/gtk/gtkhid-main.c,
8303 src/hid/lesstif/main.c, src/hid/png/png.c, src/hid/ps/eps.c,
8304 src/hid/ps/ps.c: Add "empty layer" hint to HID. Add option
8305 --all-layers to gerber export which causes it to export all layers,
8308 2008-12-27 DJ Delorie * dj AT delorie dot com *
8310 * src/hid/png/png.c: Rename ben-mode to photo-mode.
8312 2008-12-27 DJ Delorie * dj AT delorie dot com *
8314 * src/hid.h, src/main.c: Add an option for undocumented attributes.
8316 2008-12-27 Dan McMahill * dan AT mcmahill dot net *
8318 * configure.ac, newlib/Makefile.am: deprecate the analog-devices and
8319 burr-brown newlib libraries
8321 2008-12-27 Dan McMahill * dan AT mcmahill dot net *
8323 * newlib/analog-devices/ADC12138CIMSA,
8324 newlib/analog-devices/Makefile.am, newlib/burr-brown/Makefile.am,
8325 newlib/burr-brown/OPA340_SOT23-5: remove some footprints of
8328 2008-12-24 Peter Clifton * pcjc2 AT cam dot ac dot uk *
8330 * src/mymem.c: Regenerate rats r-tree when re-allocating a bigger
8331 rats array. Shuould fix crashes observed on a board with a large number of rats.
8333 2008-12-24 DJ Delorie * dj AT delorie dot com *
8335 * src/hid/common/hidinit.c: Typo.
8337 2008-12-24 DJ Delorie * dj AT delorie dot com *
8339 * src/hid/common/hidinit.c: Make sure we clean up if dlopen fails.
8341 2008-12-24 DJ Delorie * dj AT delorie dot com *
8343 * src/hid/common/hidinit.c: Avoid checking memory before short-named
8346 2008-12-24 Peter Clifton * pcjc2 AT cam dot ac dot uk *
8348 * src/hid/gtk/gui-netlist-window.c: Fix off-by one error in the GTK
8349 HID's netlist window model generation Broken when I added support for a hierarchical view of nets. The bug
8350 caused invalid memory to be read, possibly leading to a crash, as
8351 the last (and missing) element from g_new0 was supposed to be a
8354 2008-12-21 DJ Delorie * dj AT delorie dot com *
8356 * src/find.c: Fix via annulus calculations, from Jasper
8358 2008-12-21 DJ Delorie * dj AT delorie dot com *
8360 * src/hid/lesstif/menu.c: Set home from homedir.
8362 2008-12-20 DJ Delorie * dj AT delorie dot com *
8364 * doc/gs/gs.css: More missing files
8366 2008-12-20 DJ Delorie * dj AT delorie dot com *
8368 * doc/gs/gafrc, doc/gs/gschemrc: missed files
8370 2008-12-20 DJ Delorie * dj AT delorie dot com *
8372 * configure.ac: add texi2dvi check and doc/gs subdir
8374 2008-12-20 DJ Delorie * dj AT delorie dot com *
8376 * doc/eps2png, doc/gs/555.sym, doc/gs/555.symdef,
8377 doc/gs/Makefile.am, doc/gs/Makefile.inc, doc/gs/fb-blinker-sch.sch,
8378 doc/gs/fb-blinker.net, doc/gs/fb-blinker.pcb,
8379 doc/gs/fb-blinker.prj, doc/gs/fb-blinker.texi, doc/gs/fb-led-5.pcb,
8380 doc/gs/fb-led.pcb, doc/gs/fb-led.texi, doc/gs/fb-smt-sch.sch,
8381 doc/gs/fb-smt.net, doc/gs/fb-smt.pcb, doc/gs/fb-smt.prj,
8382 doc/gs/fb-smt.texi, doc/gs/firstboard.texi, doc/gs/gs.texi,
8383 doc/gs/installation.texi, doc/gs/introduction.texi,
8384 doc/gs/pj102.fp, doc/gs/powerjack.sym, doc/gs/print-eps.scm,
8385 doc/gs/term-annulus-1.pcb, doc/gs/term-clearance-1.pcb,
8386 doc/gs/term-element-1.pcb, doc/gs/term-pad-1.pcb,
8387 doc/gs/term-pin-1.pcb, doc/gs/term-platedhole-1.pcb,
8388 doc/gs/term-tented-1.pcb, doc/gs/term-thermal-1.pcb,
8389 doc/gs/term-thickness-1.pcb, doc/gs/terminology.texi,
8390 doc/gs/texinfo.tex: Add initial "getting started" guide.
8392 2008-12-20 DJ Delorie * dj AT delorie dot com *
8394 * src/hid.h: append '-' on all parameter names to prevent
8395 mis-interpretation of such. Example: "xor" is a C++ reserved name.
8397 2008-12-20 DJ Delorie * dj AT delorie dot com *
8399 * src/hid/gerber/gerber.c: Increase resolution of gerbers to 0.01
8400 mil; drills remain at 0.1 mil
8402 2008-12-20 DJ Delorie * dj AT delorie dot com *
8404 * src/parse_l.l: Add support for suffixes on numbers, like "mm",
8405 "um", "in", or "mil". No suffix defaults to "pcb units" as before.
8407 2008-12-20 DJ Delorie * dj AT delorie dot com *
8409 * src/flags.c: Add flags for whether various layers are shown.
8411 2008-12-20 DJ Delorie * dj AT delorie dot com *
8413 * src/action.c: Add MinClearGap() action.
8415 2008-12-12 Dan McMahill * dan AT mcmahill dot net *
8417 * configure.ac: try to clean up the logic around cross compiling and
8418 an executible pcb. Hopefully addresses some corner cases when cross
8421 2008-12-12 Dan McMahill * dan AT mcmahill dot net *
8423 * doc/Makefile.am, doc/version.texi, lib/Makefile.am,
8424 lib/m4lib_to_newlib.sh.in: use if FOO stuff endif instead of @FOOTRUE@ stuff as the latter prevents automake from properly understanding some
8427 2008-12-05 Dan McMahill * dan AT mcmahill dot net *
8429 * doc/actions.texi: regen
8431 2008-12-05 Dan McMahill * dan AT mcmahill dot net *
8433 * configure.ac, doc/Makefile.am, lib/Makefile.am,
8434 lib/m4lib_to_newlib.sh: Correctly deal with the case where one wants
8435 to do a maintainer cross compile which requires an installed pcb
8436 that can be executed on the build host. As part of this, also do
8437 not build the png previews of the pcblib-newlib library by default.
8438 They were not really used for anything and it really slows the
8439 build. They can be built with --enable-m4lib-png.
8441 2008-12-03 Dan McMahill * dan AT mcmahill dot net *
8443 * configure.ac, src/Makefile.am: check for windres as a build tool
8444 instead of hard coding 'windres'. Should help with cross-compiling
8445 with windows as the target. Noted as a patch for gerbv by Cesar
8448 2008-12-03 DJ Delorie * dj AT delorie dot com *
8450 * src/misc.c: Merge thermals from old flags, not overwrite them.
8452 2008-11-30 Dan McMahill * dan AT mcmahill dot net *
8454 * win32/pcb.nsi.in: fix some shortcut removal issues on Vista.
8456 2008-11-30 Dan McMahill * dan AT mcmahill dot net *
8458 * win32/build_pcb: add a --nsis-only option that only creates the
8461 2008-11-30 Dan McMahill * dan AT mcmahill dot net *
8463 * win32/build_pcb: fix up the PATH used during the build so pcb can
8464 run when generating the pcblib-newlib previews
8466 2008-11-30 Dan McMahill * dan AT mcmahill dot net *
8468 * win32/build_pcb, win32/pcb.nsi.in: try to fix the pdf and html
8469 manual links. Noted by Bob Paddock.
8471 2008-11-29 Dan McMahill * dan AT mcmahill dot net *
8473 * src/hid/gtk/gui-output-events.c: Fix bug 2011285 auto-pan on
8474 solder side not working properly. Patch provided in the bug report.
8476 2008-11-29 Dan McMahill * dan AT mcmahill dot net *
8478 * src/action.c, src/crosshair.c, src/global.h, src/gpcb-menu.res,
8479 src/hid/gtk/gui-output-events.c, src/hid/lesstif/main.c,
8480 src/pcb-menu.res: Add additional crosshair shapes. ctrl-right click
8481 cycles through. Patch 2170634 from D. Ineiev.
8483 2008-11-29 Dan McMahill * dan AT mcmahill dot net *
8485 * src/hid/gtk/gui-dialog.c: teach ghid_confirm_dialog to remember
8486 its last position and to come up at the same place the next time. Patch 1900832 from Tomaz Solc.
8488 2008-11-28 Dan McMahill * dan AT mcmahill dot net *
8490 * README.snapshots: Minor formatting updates for some long lines and
8491 also minor updates to reflect some sourceforge changes.
8493 2008-11-28 Dan McMahill * dan AT mcmahill dot net *
8495 * src/hid/gtk/gui-config.c: fix up the library path dialog for
8498 2008-11-28 Dan McMahill * dan AT mcmahill dot net *
8500 * src/hid/gtk/gui-config.c: Use PCB_PATH_DELIMETER instead of ":" in
8503 2008-11-28 Dan McMahill * dan AT mcmahill dot net *
8505 * configure.ac: bump rev after 20081128 branch
8507 2008-11-28 Dan McMahill * dan AT mcmahill dot net *
8509 * README.snapshots: update dates for 20081128 snapshot
8511 2008-11-28 Dan McMahill * dan AT mcmahill dot net *
8513 * NEWS: update for 20081128 snapshot
8515 2008-11-28 Dan McMahill * dan AT mcmahill dot net *
8517 * ChangeLog: update for 20081128 snapshot
8519 2008-11-28 Dan McMahill * dan AT mcmahill dot net *
8521 * doc/actions.texi: regen.
8523 2008-11-28 Dan McMahill * dan AT mcmahill dot net *
8525 * Makefile.am: Make DISTCHECK_CONFIGURE_FLAGS actually work again so
8526 we can check that 'make distcheck' passes for lesstif.
8528 2008-11-27 Dan McMahill * dan AT mcmahill dot net *
8530 * doc/Makefile.am: honor psdir, pdfdir, docdir, htmldir, dvidir.
8531 Noted in sf bug #1916057.
8533 2008-11-27 DJ Delorie * dj AT delorie dot com *
8535 * src/create.c: Test the two lines, not the line vs the current pcb,
8536 for compatible poly-join flags.
8538 2008-11-27 Dan McMahill * dan AT mcmahill dot net *
8540 * src/pcbtest.sh.in: get rid of an insecure usage of a temp file
8542 2008-11-25 Dan McMahill * dan AT mcmahill dot net *
8544 * src/main.c: do not free() the result of getenv(). Noted by Peter
8547 2008-11-25 Dan McMahill * dan AT mcmahill dot net *
8549 * src/global.h, src/hid/common/hidinit.c,
8550 src/hid/gtk/gui-top-window.c, src/hid/lesstif/menu.c, src/main.c:
8551 Determine the users home directory on program startup and remember
8552 it for use in other places later. This avoids repeated use of
8553 getenv("HOME") which may have issues especially under windows.
8555 2008-11-25 Dan McMahill * dan AT mcmahill dot net *
8557 * win32/build_pcb: create a DOS batch file wrapper for the installer
8558 to make it easier to run the installer immediately after building it
8559 from the cygwin shell. Without this, vista doesn't seem to like to
8560 run it for some reason.
8562 2008-11-25 Dan McMahill * dan AT mcmahill dot net *
8564 * doc/actions.texi, doc/version.texi: regen
8566 2008-11-25 Dan McMahill * dan AT mcmahill dot net *
8568 * win32/Makefile.am, win32/build_pcb, win32/extract_gtk_win32,
8569 win32/pcb.nsi.in, win32/registerExtension.nsh: - various minor updates for a more recent download of gtk and
8570 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.
8572 2008-11-24 Dan McMahill * dan AT mcmahill dot net *
8574 * po/POTFILES.in: add 2 missing files that have translations
8576 2008-11-23 DJ Delorie * dj AT delorie dot com *
8578 * src/hid/ps/ps.c: Fix the foo.ps.type.ps bug
8580 2008-11-19 DJ Delorie * dj AT delorie dot com *
8582 * src/djopt.c: Move splitlines even earlier, to avoid unwanted
8585 2008-11-11 DJ Delorie * dj AT delorie dot com *
8587 * src/create.c: Don't merge two lines if the join flag differs.
8589 2008-10-21 Peter Clifton * pcjc2 AT cam dot ac dot uk *
8591 * src/hid/gtk/gui-pinout-preview.c: Fix preview drawing broken by
8592 resetting "Gathering" mode after painting. Seems that the pinout preview widget relied on the bug fixed in
8593 commit 0647d028e6c755715d2fcdbd0b4f2be73d36ae7f. In the expose
8594 handler of the preview, We should be calling the
8595 hid_expose_callback() function rather than DrawElement() directly.
8597 2008-10-21 Peter Clifton * pcjc2 AT cam dot ac dot uk *
8599 * src/hid/gtk/gui-output-events.c: Remove logged warning when
8600 pressing a key with no defined binding Poping up the log window in these cases is very intrusive, and it
8601 triggered for keys such as capslock, Mod4/Windows etc. There is no
8602 real need to log errant key-presses, so remove this feature.
8604 2008-10-13 Peter Clifton * pcjc2 AT cam dot ac dot uk *
8606 * src/autoroute.c, src/mtspace.c: Fix two assertion test to allow
8607 compiling a debug build. Due to code-restructures, a couple of assert tests (not normally
8608 compiled) had bit-rotted. Remove one, rejig the other.
8610 2008-10-13 Peter Clifton * pcjc2 AT cam dot ac dot uk *
8612 * src/rtree.c: rtree.c: Fix typo in assertion test inside __r_search Caused false assertion failures when running a debugging build.
8614 2008-10-13 Peter Clifton * pcjc2 AT cam dot ac dot uk *
8616 * src/search.c: Fix IsPointInBox to work with wide as well as tall
8617 boxes Actually implement the test, rather than trying to construct a pad
8618 to test which has the right geometry.
8620 2008-10-13 Peter Clifton * pcjc2 AT cam dot ac dot uk *
8622 * src/rtree.c: Change rtree penalty function in rtree.c to use
8623 doubles, not long long. Since the exact integer result doesn't matter, this is ok.
8624 Marginally faster on Core Duo machine.
8626 2008-10-13 Peter Clifton * pcjc2 AT cam dot ac dot uk *
8628 * src/rtree.c: Check all r-tree node children for fit before working
8629 out penalties Working out the penalty involves multiplications which produce a
8630 "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
8631 node containing the desired box, before working out size penalties
8632 to expanding each child.
8634 2008-10-13 Peter Clifton * pcjc2 AT cam dot ac dot uk *
8636 * src/heap.c: Increase initial heap size from 32 to 256 In complex boards with lots of polygons, we were realloc'ing up to
8637 this kind of number anyway, in x2 size steps. Save all the
8638 memcpy'ing by making the heap larger to start with. My test board still has some requirement for heaps >256, <512, but
8639 the frequency is low.
8641 2008-10-13 Peter Clifton * pcjc2 AT cam dot ac dot uk *
8643 * src/hid/gtk/gtkhid-main.c: GTK HID: Raise already open command
8644 window to top with ":" key Previously, ":" only opened the window, but would not raise it if
8647 2008-10-02 Peter Clifton * pcjc2 AT cam dot ac dot uk *
8649 * 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
8650 being better at spotting this kind of bug. The effects (if any) this
8651 bug caused are unknown.
8653 2008-10-01 Peter Clifton * pcjc2 AT cam dot ac dot uk *
8655 * src/hid/gtk/gui-netlist-window.c: GTK HID: Fix crash when
8656 highlighting connectivity caused by net tree. Seems I caused a crash in the connectivity highlighting code which
8657 assumed the net model of in the netlist window is a list structure
8658 where each element represents a net. Adapted the code to hunt out
8659 the right net / node with a tree model of nets.
8661 2008-10-01 Dan McMahill * dan AT mcmahill dot net *
8663 * README.snapshots, utils/cvs2cl.pl: add a local coyp of cvs2cl.pl
8665 2008-09-30 Peter Clifton * pcjc2 AT cam dot ac dot uk *
8667 * src/polygon.c, src/polygon.h: Don't bother unsubtracting complex
8668 polygons when doing incremental updates Since the polygon is re-cleared against any objects existing within
8669 the bounding box of the update region, there is no point wasting CPU
8670 cycles intersecting a more complex polygon than necessary. Just take
8671 the UNION of the polygon being unsubtracted, and the bounding box of
8672 the hole to be filed in.
8674 2008-09-30 Peter Clifton * pcjc2 AT cam dot ac dot uk *
8676 * src/misc.c, src/polygon.c: Fix text bounds to include the area
8677 cleared into a polygon Fixes re-clearing the polygon when a closely touching object is
8678 incrementally updated.
8680 2008-09-30 Peter Clifton * pcjc2 AT cam dot ac dot uk *
8682 * src/draw.c: Ensure "Gathering" mode is set after painting the
8683 screen. In between repaints initiated from the GUI, with this flag set, all
8684 Draw{object_type} operations just update a dirtied bounds. A final
8685 Draw() call then calls the HID to invalidate the bounds gathered. Setting "Gathering = True" after an expose event callback ensures
8686 subsequent drawing is batched up for the next screen update.
8688 2008-09-30 Peter Clifton * pcjc2 AT cam dot ac dot uk *
8690 * src/draw.c: Add debugging code to visually check a pad's bounding
8691 box Proved useful in fixing the pad bounding box update routine.
8692 Disabled with #if 0 block.
8694 2008-09-30 Peter Clifton * pcjc2 AT cam dot ac dot uk *
8696 * src/misc.c, src/move.h: Fix bounding boxes for rotated square
8697 ended pads. Bounding box compution only worked for round ended pads before. In
8698 addition, the "move" code previously called SetLineBoundingBox for
8699 pads, which computes the wrong result.
8701 2008-09-30 Peter Clifton * pcjc2 AT cam dot ac dot uk *
8703 * src/hid/gtk/gui-library-window.c: GTK HID: Make double clicking on
8704 a footprint library expand / contract it Usability improvement.
8706 2008-09-30 DJ Delorie * dj AT delorie dot com *
8708 * src/buffer.c: Put exploded pads on the correct layer
8710 2008-09-23 Peter Clifton * pcjc2 AT cam dot ac dot uk *
8712 * src/hid/gtk/gui-netlist-window.c: Display nets as a hierarchical
8713 tree in the netlist window. The view splits netnames at "/" characters, and builds the netlist
8714 view as a tree accordingly. Allows more strutured viewing of nets
8715 coming from hierarchical designs.
8717 2008-09-23 Peter Clifton * pcjc2 AT cam dot ac dot uk *
8719 * src/hid/common/hidinit.c: Improve hashing algorithm for storing
8720 color data Curosry testing showed the old algorithm encountered a lot of hash
8721 collisions. Swap to a more sensible hashing algorithm.
8723 2008-09-23 Peter Clifton * pcjc2 AT cam dot ac dot uk *
8725 * src/hid/common/hidinit.c: Fix lru heuristic to shortcut color
8726 cache lookup Heuristic didn't work before as the lru element wasn't saved.
8728 2008-09-23 Peter Clifton * pcjc2 AT cam dot ac dot uk *
8730 * src/hid/batch/batch.c: Fix batch HID by adding stub functions for
8731 file watches and block hooks This was broken when these features were added to the HID interface.
8733 2008-09-11 DJ Delorie * dj AT delorie dot com *
8735 * src/polygon.c: Fix poly clearance around rotated pads - Robert
8736 Fitzsimons and Ineiev
8738 2008-09-11 DJ Delorie * dj AT delorie dot com *
8740 * src/hid/lesstif/main.c: Fix lesstif crosshair color - joel
8743 2008-08-22 Dan McMahill * dan AT mcmahill dot net *
8745 * README.cvs: update the anoncvs server name
8747 2008-08-19 Dan McMahill * dan AT mcmahill dot net *
8749 * configure.ac, src/Makefile.am: add a --enable-debug mode that does
8750 not disable assert()
8752 2008-08-16 DJ Delorie * dj AT delorie dot com *
8754 * src/hid/batch/batch.c: Add missing parameter name
8756 2008-08-06 DJ Delorie * dj AT delorie dot com *
8758 * globalconst.h: Bump up font size and aperture count.
8760 2008-08-03 DJ Delorie * dj AT delorie dot com *
8762 * src/hid/png/png.c: Add --ben-flip-x and --ben-flip-y options to
8763 produce "ben mode" images of the other side of the board.
8765 2008-07-10 Ben Jackson * ben AT ben dot com *
8767 * src/hid/png/png.c: Fix crash with 'ben-mode' if your layer stack
8768 is the reverse of DJ's.
8770 2008-07-08 DJ Delorie * dj AT delorie dot com *
8772 * src/hid/png/png.c: Add "Ben Mode". Fix export of thindrawn
8775 2008-07-05 DJ Delorie * dj AT delorie dot com *
8777 * src/action.c: Oops, fix bug from previous patch.
8779 2008-07-05 DJ Delorie * dj AT delorie dot com *
8781 * src/action.c: Do not require a second paramter for SaveTo(Layout)
8783 2008-06-02 DJ Delorie * dj AT delorie dot com *
8785 * src/print.c: Allow outline layers that have nothing but arcs.
8787 2008-05-28 DJ Delorie * dj AT delorie dot com *
8789 * src/macro.h: Add ELEMENTARC_LOOP
8791 2008-05-20 Peter Clifton * pcjc2 AT cam dot ac dot uk *
8793 * data/pcb.xml.in, doc/actions.texi, doc/pcbfile.texi: Add mime
8794 magic "M48" for detection of excellon drill files.
8796 2008-05-07 DJ Delorie * dj AT delorie dot com *
8798 * src/hid/gerber/gerber.c: Don't say ,TZ as we're not omitting
8801 2008-04-28 Dan McMahill * dan AT mcmahill dot net *
8803 * src/mtspace.c, src/report.c: fix a few more code before
8804 declarations bugs. Patch by der Mouse.
8806 2008-04-28 Dan McMahill * dan AT mcmahill dot net *
8808 * configure.ac: if the compiler takes it, turn on code before
8809 declarations warnings
8811 2008-04-28 Dan McMahill * dan AT mcmahill dot net *
8813 * src/edif.y, src/puller.c: Fix some code before declarations bugs
8816 2008-04-13 Peter Clifton * pcjc2 AT cam dot ac dot uk *
8818 * src/action.c: Applied patch from Tomaz Solc fixing crosshair
8819 issues with ActionNew() ActionNew() function didn't call a RestoreCrosshair() after a
8820 HideCrosshair() in most cases. This causes symptoms similar to those described in #1900255 when
8821 "Start new layout" is selected in the File menu in GTK HID (most
8822 probably also in Lesstiff, but I haven't checked). This patch adds two missing RestoreCrosshair() calls and fixes that
8823 issue. Minor re-indentation by Peter Clifton during application.
8825 2008-04-13 Peter Clifton * pcjc2 AT cam dot ac dot uk *
8827 * src/misc.c: Applied patch from Tomaz Solc fixing a bug in the
8828 CenterDisplay function. This patch fixes a bug in the CenterDisplay function that doesn't do
8829 a RestoreCrosshair() after HideCrosshair(). This causes the crosshair stack overflow when using the DRC checker
8830 (which calls CenterDisplay a lot). Minor re-indentation by Peter Clifton during application.
8832 2008-04-13 Peter Clifton * pcjc2 AT cam dot ac dot uk *
8834 * src/crosshair.c, src/hid/gtk/gui-output-events.c: Applied patch
8835 from Tomaz Solc fixing bug #1882970. This patch fixes a bug where objects attached to the cursor (line
8836 segments during drawing, etc.) permanently disappear if mouse cursor
8837 leaves a window during dragging. Minor re-indentation by Peter Clifton during application.
8839 2008-04-13 Peter Clifton * pcjc2 AT cam dot ac dot uk *
8841 * src/hid/gtk/gtkhid-main.c: Apply patch from Igor to ensure when
8842 flipping the board, the cursor remains on the same point on the
8845 2008-04-13 Peter Clifton * pcjc2 AT cam dot ac dot uk *
8847 * doc/actions.texi, src/action.c, src/command.c, src/hid.h,
8848 src/hid/batch/batch.c, src/hid/bom/bom.c, src/hid/common/extents.c,
8849 src/hid/common/hidnogui.c, src/hid/gerber/gerber.c,
8850 src/hid/gtk/gtkhid-main.c, src/hid/gtk/gui-dialog.c,
8851 src/hid/gtk/gui.h, src/hid/lesstif/dialogs.c,
8852 src/hid/lesstif/main.c, src/hid/lpr/lpr.c, src/hid/nelma/nelma.c,
8853 src/hid/png/png.c, src/hid/ps/eps.c, src/hid/ps/ps.c: Add HID hook,
8854 close_confirm_dialog() for closing modified layouts. This allows GUI HIDs to present a more native looking "save before
8855 closing" dialog. The HID is responsible for any save which the user
8856 requests and the subsequent return codes from the HID are as before,
8857 0 for cancel and 1 for close. This checkin also fixes the GTK HID's Save() action to return 1 for
8858 cancel if the user cancels from the "Save As" dialog.
8860 2008-04-02 DJ Delorie * dj AT delorie dot com *
8862 * src/hid/png/png.c: Fix off-by-one bug drawing pads.
8864 2008-03-31 DJ Delorie * dj AT delorie dot com *
8866 * src/hid/ps/ps.c: When drawing zero-length lines, draw a square or
8867 circle according to the end cap value.
8869 2008-03-30 DJ Delorie * dj AT delorie dot com *
8871 * src/misc.c: If a layer selected through --layer-stack isn't found,
8872 let the user know and print a list of available layers.
8874 2008-03-24 DJ Delorie * dj AT delorie dot com *
8876 * src/hid/gerber/gerber.c: Ignore zero-radius filled circles.
8878 2008-03-16 Dan McMahill * dan AT mcmahill dot net *
8880 * src/find.c, src/parse_y.y: Only use the min annular ring parameter
8881 for checking the annular rings on pins and vias. Previously the
8882 minimum copper width setting was also used. Changed after a
8883 discussion on geda-user. Also make sure we use the minimum copper
8884 width as the default if the .pcb file doesn't specify the minimum
8887 2008-03-15 Dan McMahill * dan AT mcmahill dot net *
8889 * src/hid/gerber/gerber.c: Add a missing terminating '*' on the
8890 first G04 line of the output files. Noted on #geda.
8892 2008-02-27 Dan McMahill * dan AT mcmahill dot net *
8894 * src/Makefile.am: revert most of the previous commit which
8895 accidentally added some stuff that was not meant to be checked in.
8897 2008-02-26 Dan McMahill * dan AT mcmahill dot net *
8899 * src/Makefile.am, src/pcbtest.sh.in: use absolute paths (set at
8900 configure time) so this script may be called from other directories
8901 as part of a test suite.
8903 2008-02-22 Dan McMahill * dan AT mcmahill dot net *
8905 * lib/geda.inc: add 128 pin 14x14 mm LQFP with exposed padded. Add
8906 128 pin 14x14 mm TQFP with and without exposed paddle
8908 2008-02-10 DJ Delorie * dj AT delorie dot com *
8910 * src/hid/ps/ps.c: Allow negative bloats
8912 2008-02-01 Dan McMahill * dan AT mcmahill dot net *
8914 * README.snapshots: add file size to checksum file
8916 2008-02-01 Dan McMahill * dan AT mcmahill dot net *
8918 * po/LINGUAS, po/fr.po, po/fr_FR.po: move fr_FR to fr as the latter
8919 seems to be recommended these days
8921 2008-02-01 Dan McMahill * dan AT mcmahill dot net *
8923 * configure.ac: bump to 1.99x after branching 20080202
8925 2008-02-01 Dan McMahill * dan AT mcmahill dot net *
8927 * ChangeLog: update for 20080202
8929 2008-02-01 Dan McMahill * dan AT mcmahill dot net *
8931 * README.snapshots: update to deal with the desktop integration and
8934 2008-02-01 Dan McMahill * dan AT mcmahill dot net *
8936 * NEWS: add some news items for 20080202
8938 2008-02-01 Dan McMahill * dan AT mcmahill dot net *
8940 * src/misc.c: add 2008 to copyright year
8942 2008-02-01 Dan McMahill * dan AT mcmahill dot net *
8944 * doc/actions.texi: regen
8946 2008-02-01 Dan McMahill * dan AT mcmahill dot net *
8948 * src/hid/gtk/gui-utils.c: fix mark up rendering on status line
8950 2008-01-31 Dan McMahill * dan AT mcmahill dot net *
8952 * win32/build_pcb: add a --with-tex and --with-etex to work around
8953 some cygwin/tex bugs
8955 2008-01-31 Dan McMahill * dan AT mcmahill dot net *
8957 * win32/pcb.nsi.in: fix the start menu shortcut icon
8959 2008-01-31 Dan McMahill * dan AT mcmahill dot net *
8961 * win32/build_pcb: use tr to kill the extra \r that end up in the
8962 Makefiles courtesy of pkg-config. This builds all but the docs on
8965 2008-01-31 Dan McMahill * dan AT mcmahill dot net *
8967 * src/hid/gtk/gtkhid-main.c, src/hid/gtk/gtkhid.h,
8968 src/hid/gtk/gui-top-window.c: avoid segfaults on loading certain
8969 boards from the command line. This patch introduces a flag that
8970 indicates when the gui is up and calls to ghid_shift_is_pressed()
8971 and ghid_control_is_pressed() can proceed as normal.
8973 2008-01-30 Dan McMahill * dan AT mcmahill dot net *
8975 * win32/extract_gtk_win32: clean up a comment
8977 2008-01-30 Dan McMahill * dan AT mcmahill dot net *
8979 * win32/build_pcb, win32/extract_gtk_win32, win32/pcb.nsi.in: copy
8980 over build_pcb improvements from gerbv. Add gdwin32 to the extract
8983 2008-01-30 Dan McMahill * dan AT mcmahill dot net *
8985 * win32/Makefile.am, win32/extract_gtk_win32, win32/pcb.nsi.in: add
8986 script to help setup build environmnet. Also add all the various
8987 licenses to the installer.
8989 2008-01-29 Peter Clifton * pcjc2 AT cam dot ac dot uk *
8991 * icon-theme-installer: Fix bug in icon-theme-installer where the
8992 -?? size was not stripped from the installed icon name.
8994 2008-01-28 Dan McMahill * dan AT mcmahill dot net *
8996 * src/flags.c, src/gpcb-menu.res, src/pcb-menu.res: Repair the
8997 buffer # menus by changing CheckedWhen() to checked=. As part of
8998 this, added a buffer flag.
9000 2008-01-22 Dan McMahill * dan AT mcmahill dot net *
9002 * src/hid/gtk/gui-misc.c, src/hid/gtk/gui-utils.c,
9003 src/hid/gtk/gui.h: add a bunch of const fixups from Larry Doolittle.
9005 2008-01-22 Dan McMahill * dan AT mcmahill dot net *
9007 * src/find.c: After we run DRC, force a redraw since we've possibly
9008 turned on and off layers (like silk). Should address SF bug
9011 2008-01-16 Dan McMahill * dan AT mcmahill dot net *
9013 * autogen.sh: drop the intltool required version to 0.35 as that
9016 2008-01-16 Dan McMahill * dan AT mcmahill dot net *
9018 * Makefile.am, configure.ac, data/Makefile.am, icon-theme-installer:
9019 check for gtk-update-icon-cache and use it. For distcheck, disable
9020 that via setting the GTK_UPDATE_ICON_CACHE_BIN to 'true' to avoid
9021 creating a cache file which then is not removed. A better way would
9022 probably be a uninstall hook which noticed that it was a distcheck
9023 uninstall and simply removed the file.
9025 2008-01-16 Dan McMahill * dan AT mcmahill dot net *
9027 * doc/actions.texi: regen
9029 2008-01-16 Dan McMahill * dan AT mcmahill dot net *
9031 * win32/Makefile.am: remove deprecated icon generation code
9033 2008-01-15 Dan McMahill * dan AT mcmahill dot net *
9037 2008-01-15 Dan McMahill * dan AT mcmahill dot net *
9039 * data/regen_files: add some help output, add options to only do the
9040 .png's or the .ico, check for imagemagick and netpbm.
9042 2008-01-15 Dan McMahill * dan AT mcmahill dot net *
9044 * configure.ac, src/Makefile.am, win32/Xdefaults.tgif,
9045 win32/pcb_icon_big.obj, win32/pcb_icon_med.obj,
9046 win32/pcb_icon_sml.obj: Use the same icons for windows as in the
9047 kde/gnome desktop. Remove the old windows icons which were really
9048 placeholders anyway. Remove the rules for regenerating these
9051 2008-01-15 Dan McMahill * dan AT mcmahill dot net *
9053 * doc/Xdefaults.tgif: this file is no longer used. The drawings for
9054 the documentation are drawn with pcb.
9056 2008-01-15 Dan McMahill * dan AT mcmahill dot net *
9058 * doc/pcb.man.in, doc/pcb.man.raw: remove some old and very obsolete
9061 2008-01-15 Dan McMahill * dan AT mcmahill dot net *
9063 * data/Makefile.am, icon-theme-installer: Remove the use of
9064 #!/bin/bash for the benefit of systems which don't install bash in
9065 /bin. In the Makefile, call out the name of the shell to help
9066 systems like solaris where it is more likely that SHELL will be
9067 /bin/ksh instead of the broken solaris /bin/sh
9069 2008-01-15 Dan McMahill * dan AT mcmahill dot net *
9071 * autogen.sh: Check for the version of intltool. Also apply some
9072 fixups to the po/Makefile.in.in file created by intltoolize.
9074 2008-01-15 Dan McMahill * dan AT mcmahill dot net *
9076 * src/autoroute.c: fix an unitialized variable
9078 2008-01-15 Dan McMahill * dan AT mcmahill dot net *
9080 * src/edif.y, src/hid/lesstif/menu.c: fix a few gcc4 warnings
9082 2008-01-15 Dan McMahill * dan AT mcmahill dot net *
9084 * Makefile.am: skip adding m4/ChangeLog to the distfile. It seems
9085 to be installation dependent
9087 2008-01-14 Dan McMahill * dan AT mcmahill dot net *
9089 * Makefile.am: it helps if we build libintl before using it...
9091 2008-01-14 Dan McMahill * dan AT mcmahill dot net *
9093 * configure.ac: add missing $INTLLIBS to LIBS. Fixes building with
9096 2008-01-13 Dan McMahill * dan AT mcmahill dot net *
9098 * configure.ac, src/hid/gtk/gui-top-window.c: check for and include
9099 locale.h. Should fix solaris build problems.
9101 2008-01-13 Dan McMahill * dan AT mcmahill dot net *
9103 * mkinstalldirs: remove generated file. This comes from the
9104 ./autogen.sh bootstrap
9106 2008-01-12 Peter Clifton * pcjc2 AT cam dot ac dot uk *
9108 * data/regen_files: Fix script to regenerate icon files, including
9109 mask channel for windows icons.
9111 2008-01-12 Dan McMahill * dan AT mcmahill dot net *
9113 * autogen.sh: put in a check for autopoint version
9115 2008-01-11 Dan McMahill * dan AT mcmahill dot net *
9117 * data/README: note the regen_files script
9119 2008-01-11 Dan McMahill * dan AT mcmahill dot net *
9121 * data/regen_files: hopefully fix a few minor bugs in inkscape
9124 2008-01-11 Dan McMahill * dan AT mcmahill dot net *
9126 * data/Makefile.am, data/regen_files: add windows icon and script to
9129 2008-01-11 DJ Delorie * dj AT delorie dot com *
9131 * src/polygon1.c: Strict aliasing patch from Larry Doolittle.
9133 2008-01-11 Dan McMahill * dan AT mcmahill dot net *
9135 * lib/geda.inc: fix pincount for MSOP10
9137 2008-01-11 Dan McMahill * dan AT mcmahill dot net *
9139 * src/hid/batch/.cvsignore, src/hid/bom/.cvsignore,
9140 src/hid/common/.cvsignore, src/hid/gerber/.cvsignore,
9141 src/hid/gtk/.cvsignore, src/hid/lesstif/.cvsignore,
9142 src/hid/lpr/.cvsignore, src/hid/nelma/.cvsignore,
9143 src/hid/png/.cvsignore, src/hid/ps/.cvsignore: add .dirstamp
9145 2008-01-11 Peter Clifton * pcjc2 AT cam dot ac dot uk *
9147 * lib/gtag.m4: Fix typo in gtag.m4 file
9149 2008-01-10 Peter Clifton * pcjc2 AT cam dot ac dot uk *
9151 * configure.ac, src/Makefile.am, src/hid/gtk/gui.h, src/main.c:
9152 Activate gettext support in PCB by setting up the domain and locale
9155 2008-01-10 Peter Clifton * pcjc2 AT cam dot ac dot uk *
9157 * data/pcb.desktop.in: Add application/x-pcb-footprint to the
9158 mime-types PCB will be launched for
9160 2008-01-10 Peter Clifton * pcjc2 AT cam dot ac dot uk *
9162 * data/pcb.xml.in: Add an attempt at a glob pattern to match PCB
9163 footprints Searches for the string "Element[" starting between and offset of 0
9164 and 20 bytes into the file.
9166 2008-01-10 Peter Clifton * pcjc2 AT cam dot ac dot uk *
9168 * data/pcb.desktop.in: Fix mime type registered to open PCB to
9169 application/x-pcb-layout
9171 2008-01-10 Peter Clifton * pcjc2 AT cam dot ac dot uk *
9173 * data/Makefile.am: Fix data/Makefile.am where xdgdir was used
9174 instead of xdgdatadir
9176 2008-01-10 Peter Clifton * pcjc2 AT cam dot ac dot uk *
9178 * Makefile.am: Add intltool-XXX.in to EXTRA_DIST and add appropriate
9181 2008-01-10 Peter Clifton * pcjc2 AT cam dot ac dot uk *
9183 * Makefile.am, icon-theme-installer: Add missed icon-theme-installer
9184 script required for installing icons
9186 2008-01-10 Peter Clifton * pcjc2 AT cam dot ac dot uk *
9188 * Makefile.am: Add make distcheck ./configure flag
9189 --disable-desktop-database Ensures cache files won't be left during make distcheck which could
9190 break the distcheck.
9192 2008-01-10 Dan McMahill * dan AT mcmahill dot net *
9194 * win32/.cvsignore: add missing cvsignore
9196 2008-01-10 Dan McMahill * dan AT mcmahill dot net *
9198 * src/hid/common/.cvsignore: add hidlist.h
9200 2008-01-10 Dan McMahill * dan AT mcmahill dot net *
9202 * .cvsignore, src/.cvsignore, src/hid/.cvsignore,
9203 src/hid/batch/.cvsignore, src/hid/bom/.cvsignore,
9204 src/hid/common/.cvsignore, src/hid/gerber/.cvsignore,
9205 src/hid/gtk/.cvsignore, src/hid/lesstif/.cvsignore,
9206 src/hid/lpr/.cvsignore, src/hid/nelma/.cvsignore,
9207 src/hid/png/.cvsignore, src/hid/ps/.cvsignore, src/icons/.cvsignore:
9208 add a cvsignore file
9210 2008-01-10 Dan McMahill * dan AT mcmahill dot net *
9212 * data/README: fix a typo
9214 2008-01-10 Dan McMahill * dan AT mcmahill dot net *
9216 * Makefile.am, configure.ac: wire in the desktop stuff
9218 2008-01-10 Peter Clifton * pcjc2 AT cam dot ac dot uk *
9220 * src/Makefile.am, src/gpcb-menu.res, src/hid/gtk/gui-config.c,
9221 src/hid/gtk/gui-library-window.c, src/hid/gtk/gui-library-window.h,
9222 src/hid/gtk/gui.h: Change library window to give a preview and
9223 filterable list of components. Code for the libarary window is based on x_compselect.c from
9224 gEDA/gaf's gschem schematic editor, and the libray window code
9225 pre-existing in PCB. Also added a shortcut "i" to the library window, matching gschem's
9226 insert component shortcut.
9228 2008-01-10 Peter Clifton * pcjc2 AT cam dot ac dot uk *
9230 * configure.ac, po/LINGUAS, po/POTFILES.in: Ensure GETTEXT_PACKAGE
9231 is set, and add missing LINGUAS and POTFILES.in files.
9233 2008-01-10 Dan McMahill * dan AT mcmahill dot net *
9235 * Makefile.am, README.cvs, autogen.sh, configure.ac: add i18n
9238 2008-01-10 Peter Clifton * pcjc2 AT cam dot ac dot uk *
9240 * data/Makefile.am: Add Makefile.am for data dir, with rules to
9241 install icons and desktop data
9243 2008-01-10 Peter Clifton * pcjc2 AT cam dot ac dot uk *
9245 * data/pcb.desktop.in: Commit pcb.desktop.in template menu file for
9248 2008-01-10 Peter Clifton * pcjc2 AT cam dot ac dot uk *
9250 * data/pcb.xml.in, data/x-excellon.desktop.in,
9251 data/x-gerber.desktop.in, data/x-pcb-footprint.desktop.in,
9252 data/x-pcb-layout.desktop.in, data/x-pcb-netlist.desktop.in: Check
9253 in KDE mimelnk .desktop.in and XDG pcb.xml.in MIME registrations Files are annotated suitably for translation with intltool
9255 2008-01-10 Peter Clifton * pcjc2 AT cam dot ac dot uk *
9257 * data/README, data/application-x-excellon-16.svg,
9258 data/application-x-excellon-22.svg,
9259 data/application-x-excellon-32.svg,
9260 data/application-x-excellon-48.svg,
9261 data/application-x-excellon.svg, data/application-x-gerber-16.svg,
9262 data/application-x-gerber-22.svg, data/application-x-gerber-32.svg,
9263 data/application-x-gerber-48.svg, data/application-x-gerber.svg,
9264 data/application-x-pcb-footprint-16.svg,
9265 data/application-x-pcb-footprint-22.svg,
9266 data/application-x-pcb-footprint-32.svg,
9267 data/application-x-pcb-footprint-48.svg,
9268 data/application-x-pcb-footprint.svg,
9269 data/application-x-pcb-layout-16.svg,
9270 data/application-x-pcb-layout-22.svg,
9271 data/application-x-pcb-layout-32.svg,
9272 data/application-x-pcb-layout-48.svg,
9273 data/application-x-pcb-layout.svg,
9274 data/application-x-pcb-netlist-16.svg,
9275 data/application-x-pcb-netlist-22.svg,
9276 data/application-x-pcb-netlist-32.svg,
9277 data/application-x-pcb-netlist-48.svg,
9278 data/application-x-pcb-netlist.svg, data/pcb.svg: Check in MIME and
9279 app icons along with a README with origins and copyright
9281 2008-01-08 Peter Clifton * pcjc2 AT cam dot ac dot uk *
9283 * configure.ac, src/dbus-pcbmain.c: Avoid using deprecated
9284 dbus_watch_get_fd() in newer dbus versions. Use a configure test (copied from PulseAudio) for the newer API,
9285 dbus_watch_get_unix_fd(), and use that if available.
9287 2008-01-08 Dan McMahill * dan AT mcmahill dot net *
9289 * src/polygon1.c: add a FIXME comment
9291 2008-01-08 Peter Clifton * pcjc2 AT cam dot ac dot uk *
9293 * src/Makefile.am, src/hid/gtk/gtkhid-main.c,
9294 src/hid/gtk/gui-pinout-preview.c, src/hid/gtk/gui-pinout-preview.h,
9295 src/hid/gtk/gui-pinout-window.c, src/hid/gtk/gui.h: Refactored
9296 pinout preview code into a new widget, GhidPinoutPreview In the refactoring, fix a bug where if the pinout window was larger
9297 than the PCB window's viewport, elements in the preview were clipped
9298 to the viewport size. In a break from the old behaviour, the previewed element is centered
9299 in the preview area.
9301 2008-01-07 Dan McMahill * dan AT mcmahill dot net *
9303 * src/hid/gtk/gui-misc.c, src/hid/gtk/gui-output-events.c: remove a
9304 handful of strict aliasing rule violation warnings generate by gcc4
9306 2008-01-07 Dan McMahill * dan AT mcmahill dot net *
9308 * src/parse_l.l, src/res_lex.l: avoid some 'defined but not used'
9311 2008-01-07 Dan McMahill * dan AT mcmahill dot net *
9313 * src/autoroute.c, src/hid/nelma/nelma.c, src/misc.c: clear out a
9314 few more compiler warnings
9316 2008-01-07 Dan McMahill * dan AT mcmahill dot net *
9318 * src/gpcb-menu.res: remove some duplicated entries and remove some
9319 conflicting hot keys.
9321 2008-01-07 Dan McMahill * dan AT mcmahill dot net *
9323 * src/hid/gtk/gui-top-window.c: be a little smarter about parsing
9324 the hotkey parts of the menu resource file. Now give a sane message
9325 instead of segfaulting on a malformed input. Also check for
9326 duplicate hot keys and drop the duplicates with a message.
9328 2008-01-06 Dan McMahill * dan AT mcmahill dot net *
9330 * src/hid/gtk/gui-output-events.c: correctly scale the step sizes
9331 for scroll bar scrolling of the main drawing area. This addresses
9332 the "scoll bars scroll by tiny tiny steps" part of sf bug [ 1796016
9333 ] Cursor/scrolling madness
9335 2008-01-06 Dan McMahill * dan AT mcmahill dot net *
9337 * doc/Makefile.am: add some extra dependencies to get this working
9338 with parallel make jobs.
9340 2008-01-06 Dan McMahill * dan AT mcmahill dot net *
9342 * configure.ac: add min version for automake
9344 2008-01-06 Dan McMahill * dan AT mcmahill dot net *
9346 * configure.ac: specify the minimum autoconf version
9348 2008-01-06 Dan McMahill * dan AT mcmahill dot net *
9350 * Makefile.in, README.cvs, README_FILES/Makefile.in, aclocal.m4,
9351 config.h.in, configure, doc/Makefile.in, doc/actions.texi,
9352 doc/pcbfile.texi, doc/version.texi, example/Makefile.in,
9353 example/libraries/Makefile.in, lib/Makefile.in,
9354 newlib/2_pin_thru-hole_packages/Makefile.in, newlib/Makefile.in,
9355 newlib/analog-devices/Makefile.in, newlib/burr-brown/Makefile.in,
9356 newlib/connectors/Makefile.in, newlib/crystal/Makefile.in,
9357 newlib/electro-optics/Makefile.in, newlib/headers/Makefile.in,
9358 newlib/keystone/Makefile.in, newlib/msp430/Makefile.in,
9359 newlib/not_vetted_ingo/Makefile.in, newlib/sockets/Makefile.in,
9360 newlib/tests/Makefile.in, src/Makefile.in, src/icons/Makefile.in,
9361 tools/Makefile.in, tutorial/Makefile.in, win32/Makefile.in: remove a
9362 bunch of autotools generated files and update the instructions for
9363 building from cvs accordingly.
9365 2008-01-06 Dan McMahill * dan AT mcmahill dot net *
9367 * src/hid/png/png.c: before exporting png, clear out any existing
9368 color or brush cache. They are stale. Should fix sf bug [ 1807726 ] png HID exports transparent copper
9371 2008-01-06 Dan McMahill * dan AT mcmahill dot net *
9373 * src/hid/png/png.c: apply the patch provided in sf bug [ 1792119 ]
9374 Slanted squared pads: png output which corrects the drawing of non
9375 90-deg square cap lines in the png output.
9377 2008-01-05 Dan McMahill * dan AT mcmahill dot net *
9379 * src/Makefile.am, src/action.c, src/edif.y, src/edif_parse.h,
9380 src/file.c, src/file.h: add the ability to load edif netlists
9381 provided in sf patch [ 1516885 ] added edif netlist import by Jeff
9384 2008-01-05 Dan McMahill * dan AT mcmahill dot net *
9386 * src/hid/gtk/gtkhid-main.c, src/hid/gtk/gui-dialog.c: remove some
9389 2008-01-05 Dan McMahill * dan AT mcmahill dot net *
9391 * src/hid/gtk/gtkhid-main.c, src/hid/gtk/gui-dialog.c,
9392 src/hid/gtk/gui.h: fix a bug where sometimes the confirm dialog had
9393 corrupt button names.
9395 2008-01-05 Dan McMahill * dan AT mcmahill dot net *
9397 * src/action.c: apply the patch provided in sf bug [ 1850097 ] Grid
9398 off by 1 after setting to 1
9400 2008-01-05 Dan McMahill * dan AT mcmahill dot net *
9402 * src/hid/gtk/gtkhid-main.c: apply a patch provided in sf bug [
9403 1840422 ] GTK HID panning bug. Keeps the scroll bars in sync when
9404 the display is panned.
9406 2008-01-05 DJ Delorie * dj AT delorie dot com *
9408 * src/hid/common/actions.c: Re-initialize num so that multiple
9409 actions will be parsed properly.
9411 2008-01-05 Dan McMahill * dan AT mcmahill dot net *
9413 * src/hid/gtk/gtkhid-main.c: remove some code from set_cursor() that
9414 tries to limit the cursor position in a way which seems to cause
9415 spurious scrolling in a number of situations. Should hopefully fix sf bug [ 1796016 ] Cursor/scrolling madness
9417 2008-01-05 Dan McMahill * dan AT mcmahill dot net *
9419 * src/hid/gtk/gui-top-window.c: update a comment
9421 2008-01-04 Dan McMahill * dan AT mcmahill dot net *
9423 * src/buffer.c: Allow the conversion of a selection which contains
9424 only silk to an element instead of requiring a pad or pin. Useful
9425 for logos. Requested in sf bug [ 1820380 ] convert-to-element requires at least
9428 2008-01-04 Dan McMahill * dan AT mcmahill dot net *
9430 * configure.ac: add missing check for texi2dvi. sf bug [ 1840645 ] texi2dvi: Missing configure check
9432 2008-01-04 Dan McMahill * dan AT mcmahill dot net *
9434 * src/hid/ps/ps.c: Add an option that turns off the scale and file
9435 name in the postscript output. This is useful when trying to do a
9436 toner transfer or print transparencies that use the whole page. Requested in sf bug [ 1858547 ] unwanted text lines in printouts
9439 2008-01-04 Dan McMahill * dan AT mcmahill dot net *
9441 * src/find.c, src/hid/gtk/gtkhid-main.c, src/hid/gtk/gui-dialog.c,
9442 src/hid/gtk/gui.h: Apply sf patch [ 1848465 ] brief error info in
9443 "DRC continue" dialog While here, add some missing bits of code in the dialog_confirm
9444 function for the gtk hid that lets you specify the ok and cancel
9447 2008-01-04 Dan McMahill * dan AT mcmahill dot net *
9449 * src/hid/gtk/gui-top-window.c: fix a printf format string compiler
9452 2008-01-04 Dan McMahill * dan AT mcmahill dot net *
9454 * src/action.c, src/file.c, src/hid/gerber/gerber.c, src/misc.c: add
9455 some casts to silence some gcc4 warnings
9457 2008-01-04 Dan McMahill * dan AT mcmahill dot net *
9459 * lib/geda.inc, lib/qfpdj.inc: apply sf patch 1784721 to move the
9460 QFP footprints to 0.01 mil resolution. Also the remaining SO
9461 packages have been moved to the hi-res format. Minor corrections to the patch by me.
9463 2008-01-03 Dan McMahill * dan AT mcmahill dot net *
9465 * lib/Makefile.am, lib/Makefile.in, lib/png_diff.sh: add a utility
9466 script for comparing .png's of an entire footprint library.
9468 2008-01-03 Dan McMahill * dan AT mcmahill dot net *
9470 * lib/m4lib_to_newlib.sh.in: add a -d|--dpi flag to use a fixed
9471 scale factor for the exported png files
9473 2008-01-03 Ben Jackson * ben AT ben dot com *
9475 * src/parse_y.y: Temporarily change PCB=yyPCB while InitClip after
9476 load (similar hacks exist in other load code)
9478 2008-01-03 Dan McMahill * dan AT mcmahill dot net *
9480 * lib/qfpdj.inc: add missing PKG_QFP_40
9482 2008-01-03 Dan McMahill * dan AT mcmahill dot net *
9484 * src/hid/gtk/gui-config.c, src/hid/gtk/gui-top-window.c: apply
9485 patch 1852864 GTK HID: scrolled layer preferences To enable a
9486 scroll window for the layers. This is needed if the user uses more
9487 than 8 or so layers.
9489 2008-01-02 Dan McMahill * dan AT mcmahill dot net *
9491 * src/hid/bom/bom.c: Fix a problem with the X-Y output file where
9492 the y values were mirrored and offset with respect to the RS274-X
9493 output. Given that this bug has been here since the code was
9494 written 3 years ago, I conclude that in fact no one has used this
9497 2007-12-26 Dan McMahill * dan AT mcmahill dot net *
9499 * src/lrealpath.c: change the preprocessor logic a bit to avoid
9500 #ifdef-ing in code that will never be reached.
9502 2007-12-26 Dan McMahill * dan AT mcmahill dot net *
9504 * src/puller.c: add a couple of casts to make pointer compares work
9505 on identical pointer types.
9507 2007-12-26 DJ Delorie * dj AT delorie dot com *
9509 * src/hid/png/png.c: Fix some off-by-one bugs.
9511 2007-12-26 Dan McMahill * dan AT mcmahill dot net *
9513 * src/puller.c: get rid of a handful of compiler warnings (printf
9514 format strings, and unused variables).
9516 2007-12-22 DJ Delorie * dj AT delorie dot com *
9518 * src/hid/lesstif/netlist.c: Cast parameters to right type.
9520 2007-12-21 Dan McMahill * dan AT mcmahill dot net *
9522 * lib/geda.inc: add 10x10mm TQFP64, 12x12mm TQFP80, and 12x12mm
9525 2007-12-19 Dan McMahill * dan AT mcmahill dot net *
9527 * lib/connector.inc: make sure both rows of CONNECTOR_DIL use 38 mil
9528 pins. Noted on geda-user by Michael Stovenour
9530 2007-12-19 DJ Delorie * dj AT delorie dot com *
9532 * src/hid/lesstif/dialogs.c: Resolve some const-cast issues.
9534 2007-12-18 DJ Delorie * dj AT delorie dot com *
9536 * lib/geda.inc: Add TSSOP14 and TSSOP16
9538 2007-12-13 Dan McMahill * dan AT mcmahill dot net *
9540 * lib/plcc.inc: fix a few more cases of = being used where == was
9543 2007-12-13 Dan McMahill * dan AT mcmahill dot net *
9545 * lib/plcc.inc: use == instead of = for testing equality. Gets rid
9546 of a bunch of warnings. Verified that pcblib-newlib contents did
9547 not change with this commit.
9549 2007-12-11 DJ Delorie * dj AT delorie dot com *
9551 * src/gpcb-menu.res, src/pcb-menu.res: Various changes from Kai;
9552 cut-copy swap for lesstif.
9554 2007-12-11 Peter Clifton * pcjc2 AT cam dot ac dot uk *
9556 * : Forced checkin with no changes due to missed log entry from in
9557 commit Initialise static variables x_prev and y_prev in
9558 ghid_port_window_motion_cb() to -1, to avoid the (unlikely) case
9559 they are used initialised.
9561 2007-12-10 DJ Delorie * dj AT delorie dot com *
9563 * src/hid/gtk/gui-output-events.c: Fix enter/leave logic to avoid
9564 leaving obsolete crosshair-attached elements on the screen when the
9565 cursor leaves the working area.
9567 2007-12-10 Ben Jackson * ben AT ben dot com *
9569 * src/hid/lesstif/main.c, src/pcb-menu.res: Add Zoom(Toggle) and
9570 bind it to ` (backtick). Fix all warnings in hid/lesstif/main.c
9572 2007-12-10 Ben Jackson * ben AT ben dot com *
9574 * src/draw.c: Make 'outline' layer test case-insensitive to match
9577 2007-12-10 Ben Jackson * ben AT ben dot com *
9579 * src/draw.c: Add gross hack to avoid using mask in DrawRats() for
9580 othet than lesstif HID, as lesstif and gtk provide different
9581 capabilities in CLEAR mode.
9583 2007-12-10 Ben Jackson * ben AT ben dot com *
9585 * src/draw.c, src/hid/lesstif/main.c, src/hid/lesstif/xincludes.h:
9586 Add XRENDER support to the Lesstif HID. Rat lines and soldermasks
9587 are now displayed at 50% intensity on top of other drawn elements.
9589 2007-12-09 Ben Jackson * ben AT ben dot com *
9591 * configure: Rebuild with 2.61
9593 2007-12-09 DJ Delorie * dj AT delorie dot com *
9595 * config.h.in, configure, configure.ac: Check for Xrender library.
9597 2007-12-08 Harry Eaton * haceaton AT users dot sourceforge dot net *
9599 * src/polygon1.c: Sometimes single-point touching will leave no
9600 starting point on the 'A' pline for an ISECTED contour. Check for
9601 starting points on the 'B' pline (only at the point of intersection)
9602 just in case it has a valid starting point.
9604 2007-12-04 Ben Jackson * ben AT ben dot com *
9606 * src/hid/png/png.c: ignore paste layers when exporting 'as shown':
9607 Correct logic for silk display; Add logic for mask display ignore
9608 soldermask layers for normal output add option to make
9609 background/erasures transparent
9611 2007-12-03 Ben Jackson * ben AT ben dot com *
9613 * src/crosshair.c: Avoid moving elements snapping to their own pins
9614 or pads. Don't snap moving vias to any kind of pins (they can't
9617 2007-12-03 Ben Jackson * ben AT ben dot com *
9619 * src/action.c: Don't create empty text objects.
9621 2007-12-02 Ben Jackson * ben AT ben dot com *
9623 * src/misc.c, src/polygon.c: Data->LayerN should generally be
9624 avoided. It's not initialized for buffers. All buffers should have
9625 max_layer available (which is a macro for PCB->Data->LayerN, the
9626 number of layers in the current board).
9628 2007-12-02 Ben Jackson * ben AT ben dot com *
9630 * src/action.c: Partial fix? [ 1775101 ] Undo with the line tool
9631 sometimes switches to wrong node If you auto-drc and you extend a
9632 line (causing a delete and re-add of a longer line), then undo, this
9633 patch ensures the restored short segment has FOUNDFLAG so you can
9636 2007-12-02 Ben Jackson * ben AT ben dot com *
9638 * src/macro.h, src/move.c: Fix [ 1820398 ] Inconsistant vias with
9639 move-to-layer Add explicit check for silk layer when making vias due
9642 2007-12-02 Ben Jackson * ben AT ben dot com *
9644 * src/action.c: Fix [ 1836169 ] undo of shift-paste element
9645 replacement broken Code was "stealing" the original name memory
9646 before removing it, so the element went into the undo buffer
9647 nameless. Copy string instead.
9649 2007-12-02 Ben Jackson * ben AT ben dot com *
9651 * src/action.c: Fix [ 1836172 ] shift-create two vias, undo twice,
9652 internal error Caused by my addition of shift-click vias -- the new
9653 via undo was happening before the new flag undo.
9655 2007-12-02 Ben Jackson * ben AT ben dot com *
9657 * src/buffer.c: Missed a spot when adding 'clearlineflag' support to
9658 Text. Also Fixed a bug in movearctobuffer
9660 2007-11-30 DJ Delorie * dj AT delorie dot com *
9662 * src/hid/gtk/gtkhid-main.c, src/hid/lesstif/dialogs.c,
9663 src/hid/ps/ps.c: Fix printer calibration.
9665 2007-11-30 DJ Delorie * dj AT delorie dot com *
9667 * src/gpcb-menu.res, src/pcb-menu.res: Add 50 mil grid setting. Add
9668 global puller submenu.
9670 2007-11-30 Ben Jackson * ben AT ben dot com *
9672 * src/action.c: Fix a typo. Do not use grid size for
9673 Connection(Find) search radius
9675 2007-11-30 DJ Delorie * dj AT delorie dot com *
9677 * src/hid/lesstif/menu.c: Attach the show soldermask layer button to
9680 2007-11-30 Ben Jackson * ben AT ben dot com *
9682 * src/polygon.c: In case 'biggest()' polygon is 0 area, init size =
9685 2007-11-27 Ben Jackson * ben AT ben dot com *
9687 * src/rats.c: Fix two bugs in my via-rats patch: 1) Certain combinations of objects (presumably rare!) could lead to
9688 a crash. 2) Fix a cut/paste error where the wrong coordinate was tested.
9689 Add explanatory comment.
9691 2007-11-25 DJ Delorie * dj AT delorie dot com *
9693 * src/puller.c: Add global puller.
9695 2007-11-25 DJ Delorie * dj AT delorie dot com *
9697 * src/hid/lesstif/main.c: Draw arc start/end radii in separate
9698 colors, and dotted, if enabled.
9700 2007-11-25 DJ Delorie * dj AT delorie dot com *
9702 * src/draw.c, src/draw.h: Export DrawLayer() for the ps exporter.
9704 2007-11-25 DJ Delorie * dj AT delorie dot com *
9706 * src/hid/ps/ps.c: Draw outline layer on all other copper layers
9707 when "draw outline" is selected. Make alignment marks less
9708 obtrusive. Make drill helpers half the board's minimum drill size,
9709 not twice PCB's minimum drill size. Include commented out helpers
9710 for brass paste stencil etching.
9712 2007-11-25 DJ Delorie * dj AT delorie dot com *
9714 * src/undo.c: Don't just clean out RemoveList, free it, so it's
9715 created properly later.
9717 2007-11-25 Ben Jackson * ben AT ben dot com *
9719 * src/polyarea.h: Add some prototypes for global functions returning
9720 double that will confuse the heck out of you if treated as returning
9723 2007-11-24 DJ Delorie * dj AT delorie dot com *
9725 * src/hid/lesstif/netlist.c: Don't crash if a scanned element has no
9728 2007-11-24 DJ Delorie * dj AT delorie dot com *
9730 * src/hid/lesstif/library.c: lesstif_show_library: Don't reset the
9731 dialog when we're just re-displaying it.
9733 2007-11-24 Ben Jackson * ben AT ben dot com *
9735 * src/action.c: Apply [ 1726201 ] SaveTo(PasteBuffer.file) for
9736 footprint creation with cleanups (original patch from Christian
9737 Riggenbach - gizmotron)
9739 2007-11-23 Ben Jackson * ben AT ben dot com *
9741 * src/actionlist.c: Remove obsolete (generated, even!) file
9743 2007-11-23 Ben Jackson * ben AT ben dot com *
9745 * src/gpcb-menu.res, src/pcb-menu.res: Change all the GetXY prompts
9746 for greater clarity.
9748 2007-11-23 Ben Jackson * ben AT ben dot com *
9750 * src/hid/gtk/gui-config.c: Apply patch [ 1835365 ] Fix for [
9751 1820385 ] Can't close the preference dialog from denis77
9753 2007-11-23 Ben Jackson * ben AT ben dot com *
9755 * src/autoroute.c: LIST_LOOP works on circular lists, but at least
9756 some code will produce a head pointer of NULL for an empty list,
9757 causing LIST_LOOP to crash. Since I'm not sure which is the bug, I
9758 changed LIST_LOOP to assert() on a NULL list head and skip the loop.
9759 With assert disabled, the loop becomes a no-op, which seems
9762 2007-11-23 DJ Delorie * dj AT delorie dot com *
9764 * src/search.c, src/search.h: Additional slanted-pad patch for
9767 2007-11-22 DJ Delorie * dj AT delorie dot com *
9769 * src/hid/lesstif/styles.c: Update the status line even when we
9770 don't have a styles dialog.
9772 2007-11-19 DJ Delorie * dj AT delorie dot com *
9774 * src/report.c: Add annulus and mask gap to pin/via report.
9776 2007-11-19 Dan McMahill * dan AT mcmahill dot net *
9778 * configure, configure.ac: add a missing AC_MSG_RESULT in the
9779 makeinfo version test. Patch from Peter Brett. While here, remove
9780 a bashism (== vs =).
9782 2007-11-18 DJ Delorie * dj AT delorie dot com *
9784 * globalconst.h: Expand min/max values.
9786 2007-11-14 DJ Delorie * dj AT delorie dot com *
9788 * src/misc.c, src/parse_y.y: Fix pin bound calculations based on new
9789 thermal calculations.
9791 2007-11-12 DJ Delorie * dj AT delorie dot com *
9793 * src/crosshair.c: Snap to pin/pads whenever we're within the
9794 pin/pad copper, unless shift is pressed, then snap to the nearest
9795 grid point if it's closer.
9797 2007-11-12 DJ Delorie * dj AT delorie dot com *
9799 * src/hid/common/hidnogui.c: Don't complain about checking the shift
9800 key when exporting pngs from the command line.
9802 2007-11-12 Ben Jackson * ben AT ben dot com *
9804 * src/buffer.c: Fix bugs intoduced by revision 1.41 while preserving
9807 2007-11-10 DJ Delorie * dj AT delorie dot com *
9809 * lib/connector.inc: Reduce silk width of connector/header/jumpers
9810 (some fabs clip it to the pads) to be similar to other elements.
9812 2007-11-10 DJ Delorie * dj AT delorie dot com *
9814 * lib/qfpdj.inc, lib/smt.inc: Move silk away from pads. Fix notch
9817 2007-11-05 Dan McMahill * dan AT mcmahill dot net *
9819 * lib/geda.inc: fix DIN41651_20 and DIN41651_20S. Those are 20 pin
9820 footprints not 10 pin footprints. Reported by Marshall Jose.
9822 2007-11-04 Ben Jackson * ben AT ben dot com *
9824 * src/change.c, src/change.h, src/move.c, src/polygon.c,
9825 src/rotate.c, src/strflags.c: Add support for clearing text from
9826 polygons. Text with the clearline flag (set with the J key by
9827 default, just like lines and arcs) will have a rounded rectangle
9828 hole cut in any overlapping polygons.
9830 2007-11-04 Ben Jackson * ben AT ben dot com *
9832 * src/action.c: Shift-click with the via tool to connect it to the
9833 current layer as you place it.
9835 2007-11-04 Ben Jackson * ben AT ben dot com *
9837 * src/hid/lesstif/netlist.c, src/netlist.c, src/rats.h: Plumb the
9838 NetlistShow() hid action in lesstif. Takes a pin name or a net name
9839 and sets the current selection in the netlist window. Does not pop
9842 2007-11-02 Dan McMahill * dan AT mcmahill dot net *
9844 * configure, doc/actions.texi, doc/version.texi: regen
9846 2007-11-02 DJ Delorie * dj AT delorie dot com *
9848 * src/draw.c: Properly thin-draw slanted pads.
9850 2007-11-02 DJ Delorie * dj AT delorie dot com *
9852 * src/find.c, src/polygon.c, src/search.c, src/search.h: Fixes for
9853 DRC of slanted pads. Tracker bug 1791388 and patch 1791392.
9855 2007-11-02 DJ Delorie * dj AT delorie dot com *
9857 * src/draw.c: Don't draw pins/holes on the outline layer. Include
9858 commented-out code to put board outline on mask layers, for fabs
9861 2007-11-02 Dan McMahill * dan AT mcmahill dot net *
9863 * src/action.c, src/buffer.c, src/hid/gtk/gui-output-events.c,
9864 src/hid/gtk/gui-top-window.c, src/select.c: fix some compiler
9867 2007-11-02 Dan McMahill * dan AT mcmahill dot net *
9869 * configure.ac: Improve the robustness of the makeinfo version test.
9870 Patch provided by Peter Brett.
9872 2007-11-02 Dan McMahill * dan AT mcmahill dot net *
9874 * src/hid/gtk/gui-top-window.c: Don't segfault when clicking the top
9875 right button which toggles units. Problem noted by and solution
9876 provided by Christian Riggenbach.
9878 2007-10-24 Ben Jackson * ben AT ben dot com *
9880 * src/search.c: Treat VIAFLAG rats (displayed as donuts) as round
9881 targets, not as the invisible lines they are internally.
9883 2007-10-23 DJ Delorie * dj AT delorie dot com *
9885 * src/hid/lesstif/dialogs.c: Make sure the leftmost end of the line
9886 is visible in the log window.
9888 2007-10-21 Ben Jackson * ben AT ben dot com *
9890 * src/action.c: Fix printf format warnings.
9892 2007-10-21 Ben Jackson * ben AT ben dot com *
9894 * src/crosshair.c, src/draw.c, src/rats.c: Ratlist generation is
9895 changed to favor connecting to polygons when they are available and
9896 surround the pin needing a connection. Such rats are still
9897 internally lines to the corner of the polygon, but have the VIAFLAG
9898 set. The drawing code is modified to show them as little donuts
9899 (suggesting the via that would be used to connect the pin, vs a
9900 line). The crosshair rubberband code is modified to NOT draw these
9901 lines while dragging. These changes are forward and backward
9904 2007-10-21 Ben Jackson * ben AT ben dot com *
9906 * src/action.c, src/find.c, src/find.h: Make DRC dialog
9907 next/continue to clarify its function. When DRC is over, message
9908 now indicates if it was cancelled (so log can distinguish lack of
9909 DRC errors from aborted DRC).
9911 2007-10-20 Ben Jackson * ben AT ben dot com *
9913 * src/rubberband.c: The correct point on a line now moves with a
9914 polygon (fix cut'n'paste typo) When you move a line endpoint, only
9915 *exactly* connected lines go with you. When you move a line, if
9916 another segment fully overlaps the end of the moving line, the
9917 entire segment (not an arbitrary end of it) will move. When you
9918 move an element, any segments completely covered by a pad move with
9919 the pad. (there are still some bugs in the drawing code as you
9922 2007-10-06 Dan McMahill * dan AT mcmahill dot net *
9924 * src/hid/gtk/gtkhid-main.c: Fix some really broken spurious panning
9925 of the drawing area which happens when the board is viewed from the
9926 back. Reported by Peter Clifton who also helped getting this patch
9929 2007-10-04 Peter Clifton * pcjc2 AT cam dot ac dot uk *
9931 * src/hid/gtk/gui-output-events.c: Reject double and triple clicks
9932 in ghid_port_button_press_cb() Fixes a bug where a component would be rotated by more steps than
9933 desired if clicking quickly with the rotate tool.
9935 2007-09-24 Ben Jackson * ben AT ben dot com *
9937 * src/polygon.c: Change rendering of rounded corners used when
9938 clearing polygons. This fixes a slight rotation in rounded
9939 rectangles and asymmetry of all rounded clearances besides complete
9940 circles (which were not affected by the bug). For an illustration,
9941 see: http://ad7gd.net/geda/roundrectanim.gif (include error code
9942 print in returns from the polygon code -- not much use)
9944 2007-09-24 Ben Jackson * ben AT ben dot com *
9946 * src/autoroute.c: Add (under ifdef) code I used to debug a report
9947 of "The rats nest is stale! Aborting autoroute...". It leaves the
9948 rat in question selected after the error.
9950 2007-09-19 Dan McMahill * dan AT mcmahill dot net *
9952 * src/misc.c: add missing 2007 in copyright year (for all the gtk
9955 2007-09-17 Dan McMahill * dan AT mcmahill dot net *
9957 * src/hid/gtk/gui-top-window.c: avoid free()-ing some memory a bit
9958 too soon. Patch from Ineiev.
9960 2007-09-14 Dan McMahill * dan AT mcmahill dot net *
9962 * src/gpcb-menu.res, src/pcb-menu.res: use mil and mm instead of
9963 mils and mms for grid units
9965 2007-09-13 Dan McMahill * dan AT mcmahill dot net *
9967 * README.snapshots: a few minor corrections
9969 2007-09-12 Dan McMahill * dan AT mcmahill dot net *
9971 * configure, configure.ac: welcome to 1.99w
9973 2007-09-12 Dan McMahill * dan AT mcmahill dot net *
9975 * NEWS: news for 20070912
9977 2007-09-12 Dan McMahill * dan AT mcmahill dot net *
9979 * ChangeLog: update for 20070912 snapshot
9981 2007-09-12 Dan McMahill * dan AT mcmahill dot net *
9983 * README.snapshots: set date for 20070912
9985 2007-09-12 Dan McMahill * dan AT mcmahill dot net *
9987 * Makefile.in, README_FILES/Makefile.in, aclocal.m4, configure,
9988 doc/Makefile.in, doc/actions.texi, doc/pcbfile.texi,
9989 doc/version.texi, example/Makefile.in,
9990 example/libraries/Makefile.in, lib/Makefile.in,
9991 newlib/2_pin_thru-hole_packages/Makefile.in, newlib/Makefile.in,
9992 newlib/analog-devices/Makefile.in, newlib/burr-brown/Makefile.in,
9993 newlib/connectors/Makefile.in, newlib/crystal/Makefile.in,
9994 newlib/electro-optics/Makefile.in, newlib/headers/Makefile.in,
9995 newlib/keystone/Makefile.in, newlib/msp430/Makefile.in,
9996 newlib/not_vetted_ingo/Makefile.in, newlib/sockets/Makefile.in,
9997 newlib/tests/Makefile.in, src/Makefile.in, src/icons/Makefile.in,
9998 tools/Makefile.in, tutorial/Makefile.in, win32/Makefile.in: regen
10000 2007-09-12 Dan McMahill * dan AT mcmahill dot net *
10002 * src/hid/gtk/gtkhid-main.c: fill in the missing code to get the gtk
10003 HID set_crosshair() function working as well as the Cursor() action
10005 2007-09-12 Dan McMahill * dan AT mcmahill dot net *
10007 * src/hid/lesstif/main.c: fix a typo in a help string
10009 2007-09-12 Dan McMahill * dan AT mcmahill dot net *
10011 * src/hid/gtk/gui-output-events.c: remove unused variable
10013 2007-09-11 DJ Delorie * dj AT delorie dot com *
10015 * src/hid/lesstif/main.c: Add missing else.
10017 2007-09-08 Ben Jackson * ben AT ben dot com *
10019 * src/buffer.c: Fix bugs with undoing "group" moves of objects over
10020 a polygon. The group code uses the buffer code (sort of an
10021 automatic cut/paste) so it applies to inserting elements and using
10022 the buffers as well.
10024 2007-09-08 Ben Jackson * ben AT ben dot com *
10026 * src/action.c: Fix [ 1751568 ] shorted nets stay orange after
10027 fixing and re-opt netlist
10029 2007-09-08 Ben Jackson * ben AT ben dot com *
10031 * src/rotate.c: Fix [ 1751574 ] undoing rotation that put an elt
10032 inside a poly didn't fix plow Properly restores/clears rubber band
10033 lines during rotate and undo. Still shockingly slow if you try this
10034 on an even moderately full board!
10036 2007-09-08 Ben Jackson * ben AT ben dot com *
10038 * src/find.c, src/rtree.h: Search for rat-end connections using 3x3
10039 "fat" ends to avoid having rat-to-polygon-corner connections missed.
10041 2007-09-08 Ben Jackson * ben AT ben dot com *
10043 * src/select.c: Fix [ 1751566 ] When 'far side' hidden, hidden
10044 elements don't deselect Change the SelectBlock to ignore visibility
10045 for deselect while looping over all elements. The diffs are large
10046 because the original code used VISIBLE_*_LOOP so all of the looping
10049 2007-09-08 Ben Jackson * ben AT ben dot com *
10051 * src/search.c: Apply [ 1751580 ] polys should not be
10052 selectable/considered when thin-drawn
10054 2007-09-08 Ben Jackson * ben AT ben dot com *
10056 * src/search.c: Fix the crash from [ 1724453 ] PCB Crashes with bad
10057 footprint (in its library) Does not fix whatever bug in the input
10058 allowed a bogus element in (see bug for description of the problem
10059 with the element and the source of the bad element).
10061 2007-09-08 Ben Jackson * ben AT ben dot com *
10063 * src/remove.c: Fix bugs 1751572 and 1743534 by allowing a remove on
10064 an endpoint to delete the segment if it's not just deleting a kink
10065 from a longer line.
10067 2007-09-08 Ben Jackson * ben AT ben dot com *
10069 * src/move.c: Fix [ 1751578 ] 'move to current layer' doesn't
10070 re-plow polygon correctly by clearing the NEW line pointer instead
10071 of the old (destroyed) one.
10073 2007-09-06 Dan McMahill * dan AT mcmahill dot net *
10075 * lib/dil.inc: Patch [ 1784693 ] Fix Mark position for SDIP packages
10077 2007-09-06 Dan McMahill * dan AT mcmahill dot net *
10079 * configure, configure.ac: Add newlib/keystone/Makefile. Forgot to
10080 check this in earlier.
10082 2007-09-05 Dan McMahill * dan AT mcmahill dot net *
10084 * newlib/Makefile.am, newlib/Makefile.in,
10085 newlib/keystone/KEYSTONE_1062.fp, newlib/keystone/Makefile.am,
10086 newlib/keystone/Makefile.in: add Keystone SMT battery holder for
10089 2007-09-05 Dan McMahill * dan AT mcmahill dot net *
10091 * lib/Makefile.am, lib/Makefile.in, lib/candk.inc, lib/common.m4,
10092 lib/nichicon.inc, lib/optek.inc: Add C&K ES series switches, Optek
10093 white LED, and Nichicon WT series of SMT electrolytics.
10095 2007-09-04 Dan McMahill * dan AT mcmahill dot net *
10097 * src/hid/gtk/gui-dialog-print.c, src/hid/gtk/gui.h: gut
10098 ghid_print_dialog() and use the attribute editor to do all of the
10099 dialog box work. Removes a bunch of duplicated code.
10101 2007-09-04 Dan McMahill * dan AT mcmahill dot net *
10103 * src/action.c, src/file.c, src/gpcb-menu.res, src/hid.h,
10104 src/hid/batch/batch.c, src/hid/bom/bom.c,
10105 src/hid/common/hidnogui.c, src/hid/gerber/gerber.c,
10106 src/hid/gtk/gtkhid-main.c, src/hid/gtk/gui-dialog-print.c,
10107 src/hid/gtk/gui-dialog.c, src/hid/gtk/gui.h,
10108 src/hid/lesstif/dialogs.c, src/hid/lesstif/lesstif.h,
10109 src/hid/lesstif/main.c, src/hid/lpr/lpr.c, src/hid/nelma/nelma.c,
10110 src/hid/png/png.c, src/hid/ps/ps.c, src/vendor.c: Add a
10111 ->fileselect() function to the HID interface. Now actions can use
10112 gui->fileselect() instead of gui->prompt_for() when they are
10113 specifically looking for a file. Currently the gtk HID implements
10114 this and the lesstif one has the old behaviour. While messing around with dialogs, add a "descr" argument to the
10115 attribute editor. That can be used as a tooltip, help string, or
10118 2007-08-26 Peter Clifton * pcjc2 AT cam dot ac dot uk *
10120 * src/hid/ps/ps.c: Fixed .ps output with "drill-copper" and
10121 "drill-helper" options. Holes in the soldermask (and other non-copper layers) are now drawn
10122 correctly when the "drill-copper" option is set to false. With the
10123 "drill-helper" option on, only holes on copper layers are affected.
10125 2007-08-22 Dan McMahill * dan AT mcmahill dot net *
10127 * src/hid.h, src/hid/batch/batch.c, src/hid/common/hidnogui.c,
10128 src/hid/gtk/gtkhid-main.c, src/hid/gtk/gui-dialog-print.c,
10129 src/hid/gtk/gui.h, src/hid/lesstif/dialogs.c,
10130 src/hid/lesstif/main.c, src/hid/ps/ps.c: add a title argument to the
10131 HID attribute_dialog function so the dialogs can have appropriate
10134 2007-08-22 Dan McMahill * dan AT mcmahill dot net *
10136 * src/hid/gtk/gtkhid-main.c, src/hid/gtk/gui-dialog-print.c,
10137 src/hid/gtk/gui.h: Implement the missing attribute editor dialog for
10138 the GTK HID and now that it is available, add the PrintCalibrate()
10139 action to match the lesstif one.
10141 2007-08-22 Dan McMahill * dan AT mcmahill dot net *
10143 * src/hid/ps/ps.c: indent
10145 2007-08-19 Dan McMahill * dan AT mcmahill dot net *
10147 * src/draw.c: when drawing the mark for an element also put an "L"
10148 on it if the element is locked. Patch from Bert Timmerman
10150 2007-08-17 Dan McMahill * dan AT mcmahill dot net *
10152 * doc/pcb.texi: clean up the regexp appendix a bit
10154 2007-08-17 Dan McMahill * dan AT mcmahill dot net *
10156 * lib/qfn.inc: use a default pad clearance of 20 mils instead of
10157 zero. Bug [ 1742394 ] Zero clearance QFN footprints.
10159 2007-08-17 Dan McMahill * dan AT mcmahill dot net *
10161 * src/gpcb-menu.res, src/hid/gtk/gui-top-window.c: Teach the GTK HID
10162 about active=<flag> in the menu resource file. Now that this works,
10163 sync up the active=have_regex menus with the lesstif menu resource
10166 2007-08-06 DJ Delorie * dj AT delorie dot com *
10168 * src/global.h: Give data->pcb a real type.
10170 2007-08-06 DJ Delorie * dj AT delorie dot com *
10172 * src/buffer.c: Make sure loaded buffers have a proper pcb
10175 2007-08-06 DJ Delorie * dj AT delorie dot com *
10177 * src/draw.c: [ 1751567 ] with thin-draw-poly on, soldermask display
10180 2007-08-06 DJ Delorie * dj AT delorie dot com *
10182 * src/select.c: Match whole names with regex's, when possible.
10185 2007-08-06 DJ Delorie * dj AT delorie dot com *
10187 * src/flags.c, src/pcb-menu.res: Fix the have_regex flag in
10188 pcb-menu.res [1751564]
10190 2007-08-06 DJ Delorie * dj AT delorie dot com *
10192 * src/hid/common/actions.c, src/hid/lesstif/menu.c: More empty
10193 :command checks [1751582]
10195 2007-08-06 DJ Delorie * dj AT delorie dot com *
10197 * src/polygon.c: Ben: Avoid duplicate passes through pad clearances.
10199 2007-08-05 DJ Delorie * dj AT delorie dot com *
10201 * src/action.c, src/const.h, src/draw.c, src/flags.c, src/global.h,
10202 src/gpcb-menu.res, src/main.c, src/pcb-menu.res, src/polygon.c,
10203 src/strflags.c: patch 1738364: flag for non-clipped polygons.
10205 2007-08-05 DJ Delorie * dj AT delorie dot com *
10207 * src/hid/bom/bom.c: Adds an export in mm to the BOM export dialog
10210 2007-08-05 DJ Delorie * dj AT delorie dot com *
10212 * src/set.c: Don't limit keepaway size to minimum *line* size.
10214 2007-08-04 DJ Delorie * dj AT delorie dot com *
10216 * src/hid/ps/ps.c: Apply bloat to drawn rectangles.
10218 2007-08-04 DJ Delorie * dj AT delorie dot com *
10220 * src/draw.c: Tracker 1753084 - fixes 1751589, merged soldermask has
10221 larger than expected outline.
10223 2007-08-03 DJ Delorie * dj AT delorie dot com *
10225 * src/hid/gtk/gui-top-window.c: More paranoid check for "gui is up"
10227 2007-08-02 DJ Delorie * dj AT delorie dot com *
10229 * src/hid/gtk/gui-top-window.c: Don't allow LayersChanged if there's
10232 2007-08-01 DJ Delorie * dj AT delorie dot com *
10234 * src/hid/lesstif/main.c: Protect against empty :command string.
10236 2007-08-01 DJ Delorie * dj AT delorie dot com *
10238 * src/strflags.c: Fixed a bug in flags_to_string where the LOCALREF
10239 pcb flag would be discarded.
10241 2007-08-01 DJ Delorie * dj AT delorie dot com *
10243 * src/action.c: Fix references to RouteStyleChanged (should be
10244 RouteStylesChanged). Call it when :RouteStyle is called.
10246 2007-08-01 DJ Delorie * dj AT delorie dot com *
10248 * src/file.c: When a board is loaded, the first route style is
10249 automatically selected if the old style doesn't happen to match any
10252 2007-08-01 DJ Delorie * dj AT delorie dot com *
10254 * src/misc.c: Add missing variable.
10256 2007-08-01 DJ Delorie * dj AT delorie dot com *
10258 * src/misc.c: When the layer stack is reset, bring the component
10259 layer to the front and make it active.
10261 2007-08-01 DJ Delorie * dj AT delorie dot com *
10263 * src/hid/lesstif/main.c: When swapping board sides, swap top/bot
10264 layers even if both layers are visible.
10266 2007-08-01 DJ Delorie * dj AT delorie dot com *
10268 * src/hid/lesstif/main.c: Swap the direction of scroll bars when the
10271 2007-08-01 DJ Delorie * dj AT delorie dot com *
10273 * src/hid/gerber/gerber.c, src/hid/ps/eps.c, src/hid/ps/ps.c:
10274 Gerber, PS, and EPS ignore the thindraw settings. Fix bug in PS
10275 when first item on the board is an arc. PS "drill helper" changed
10276 to a simple hole reduction so that copper extends to drilled hole
10277 even when hole is off-center.
10279 2007-08-01 DJ Delorie * dj AT delorie dot com *
10281 * src/hid/lesstif/menu.c: Don't free home_pcbmenu until after it's
10284 2007-06-28 Dan McMahill * dan AT mcmahill dot net *
10286 * src/hid/gtk/gui-config.c: Don't forget to fclose() the config file
10287 after we're done reading it. CID 27, scan #1.
10289 2007-06-28 Dan McMahill * dan AT mcmahill dot net *
10291 * src/hid/bom/bom.c: Fix a few memory leaks. Coverity ID 22, 23,
10294 2007-06-13 Dan McMahill * dan AT mcmahill dot net *
10296 * src/hid/gtk/gtkhid-main.c: add missing save_syntax and save_help.
10297 Also allow Save(PasteBuffer) so we have more compatibility with the
10298 lesstif HID. This also fixes the regression about saving buffer
10299 elements which appeared after the user menu branch was merged.
10301 2007-06-13 Dan McMahill * dan AT mcmahill dot net *
10303 * src/hid/lesstif/dialogs.c: add Save(PasteBuffer) to save_syntax.
10305 2007-06-09 DJ Delorie * dj AT delorie dot com *
10307 * src/action.c, src/pcb-menu.res: Add Delete() action. No
10308 arguments: delete selected ELSE object, but options for selected
10309 only, object only, selected rats, all rats.
10311 2007-05-29 Peter Clifton * pcjc2 AT cam dot ac dot uk *
10313 * src/draw.c: Revert patch to hide far-side (invisible) pads when
10314 near-side pins / pads are switched off. Old behaviour was
10317 2007-05-25 Peter Clifton * pcjc2 AT cam dot ac dot uk *
10319 * src/hid/ps/ps.c: Add option "drill-copper" to draw / not draw
10320 drill holes in the copper layers of the ps exporter. This is useful
10321 for plated through processes which require the etch mask to protect
10322 the vias / pins during etching.
10324 2007-05-25 Peter Clifton * pcjc2 AT cam dot ac dot uk *
10326 * src/draw.c: Change drawing code for square pads to use
10327 gui->fill_rect (...) as on Win32, the current method of drawing a
10328 zero length line doesn't work.
10330 2007-05-25 Peter Clifton * pcjc2 AT cam dot ac dot uk *
10332 * src/draw.c: Stop far side 'invisible' pads being drawn when pins /
10333 pads are switched off.
10335 2007-05-25 Peter Clifton * pcjc2 AT cam dot ac dot uk *
10337 * src/hid/gtk/gtkhid-main.c: Fix drawing of filled rectangles when
10338 the board is flipped. Makes soldermask view on the back of the
10341 2007-05-24 Dan McMahill * dan AT mcmahill dot net *
10345 2007-05-24 Dan McMahill * dan AT mcmahill dot net *
10347 * configure.ac: check for buggy versions of m4 which seem to think
10348 eval(-2/2) should be 2147483647. Noted by Peter Clifton.
10350 2007-05-23 Dan McMahill * dan AT mcmahill dot net *
10352 * src/hid/gtk/gui-top-window.c: Avoid a stack corruption. Noted by
10353 Peter Clifton. Should probably replace all instances of sprintf in
10354 pcb with snprintf, but that will take some work.
10356 2007-05-17 Dan McMahill * dan AT mcmahill dot net *
10358 * src/hid/gtk/gui-top-window.c, src/hid/lesstif/menu.c, src/main.c:
10359 check for getenv() return codes everywhere and deal if getenv
10360 returns NULL. Noted by Peter Clifton.
10362 2007-05-16 Dan McMahill * dan AT mcmahill dot net *
10364 * src/file.c: if the popen fails for the ListLibraryContents.sh
10365 shell script, continue on with the newlib processing instead of
10366 failing. This helps on systems where either the user has disabled
10367 m4 libraries or on systems like windows where the popen will not
10370 2007-05-04 Dan McMahill * dan AT mcmahill dot net *
10372 * src/todo: remove a few fixed things
10374 2007-05-04 Dan McMahill * dan AT mcmahill dot net *
10376 * lib/connector.inc: Increase the hole size on the DIN* connectors
10377 (are these named wrong btw?) from 28 mils to 40 mils. This is more
10378 in line with what is recommended for Tyco *-1634689-* box headers in
10379 Tyco drawing 1634689. Noted by Seb James.
10381 2007-05-02 Dan McMahill * dan AT mcmahill dot net *
10383 * src/create.c: When refusing to create overlapping vias spit out a
10384 warning. We should probably allow overlapping vias but turn it into
10385 a DRC violation. But until then, at least give a warning instead of
10386 silently dropping them. More details are in bug reports: [ 1687692
10387 ] Large Pads (150 mils) silently dropped [ 1266154 ] lost vias
10389 2007-05-02 Dan McMahill * dan AT mcmahill dot net *
10391 * src/file.c, src/file.h, src/misc.c: avoid triggering an emergency
10392 save on normal exit. Reported and patch provided in bug [ 1705607 ]
10393 Emergency save on normal exit.
10395 2007-05-01 Dan McMahill * dan AT mcmahill dot net *
10397 * 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
10398 with the same rotation as in the layout. Besides being more useful
10399 this avoid a segfault in some cases.
10401 2007-05-01 Dan McMahill * dan AT mcmahill dot net *
10403 * src/gpcb-menu.res: remove the menu mneumonics as some conflict
10406 2007-05-01 Dan McMahill * dan AT mcmahill dot net *
10408 * src/gpcb-menu.res, src/hid/gtk/gtkhid-main.c,
10409 src/hid/gtk/gui-output-events.c, src/hid/gtk/gui-top-window.c,
10410 src/hid/gtk/gui.h: Teach the GTK HID how to trap certain hotkeys
10411 which gtk usually captures for its own use. This lets PCB use the
10412 arrow keys and the tab key again. So restore the hotkey for
10413 flipping sides in the menu resource file. Start on the Cursor()
10414 action which is needed for the arrow keys. That part is not done
10417 2007-04-28 Harry Eaton * haceaton AT users dot sourceforge dot net *
10419 * src/polygon.c: Don't double the pad thickness when restoring to
10420 the polygon. For speedup, just add back a simple rectangle since it
10421 only has 4 points. Should do that for lines too, but didn't.
10423 ----------------------------------------------------------------------
10425 2007-04-27 Harry Eaton * haceaton AT users dot sourceforge dot net *
10427 * src/polygon.c: fix bloating of region to search for re-clearance
10428 after a portion of polyogn is restored.
10430 ----------------------------------------------------------------------
10432 2007-04-22 DJ Delorie * dj AT delorie dot com *
10434 * src/hid/gerber/gerber.c: Draw non-circular arcs manually.
10436 2007-04-21 DJ Delorie * dj AT delorie dot com *
10438 * src/action.c, src/buffer.c, src/copy.c, src/create.c,
10439 src/create.h, src/parse_y.y: Preserve width *and* height when
10442 2007-04-21 DJ Delorie * dj AT delorie dot com *
10444 * src/buffer.c: Add FreeRotatebuffer(Angle) (angle can be any angle)
10446 2007-04-21 DJ Delorie * dj AT delorie dot com *
10448 * src/crosshair.c, src/search.c: Allow for diagonal pads.
10450 2007-04-21 DJ Delorie * dj AT delorie dot com *
10452 * src/hid/lesstif/dialogs.c: Use ".fp" when loading element data.
10454 2007-04-21 DJ Delorie * dj AT delorie dot com *
10456 * src/buffer.c, src/create.c: Permit the existence of diagonal pads.
10458 2007-04-21 DJ Delorie * dj AT delorie dot com *
10460 * src/hid/gerber/gerber.c: Use polygons to draw square ended
10463 2007-04-21 Dan McMahill * dan AT mcmahill dot net *
10465 * src/autoplace.c: add a check to make sure malloc() succeeds.
10466 Noted in bug [ 1657886 ] Check return codes everywhere
10468 2007-04-21 Dan McMahill * dan AT mcmahill dot net *
10470 * src/gpcb-menu.res, src/pcb-menu.res: Change "Select all" to
10471 "Select all visible" to match up with what actually happens.
10472 Reported in bug [ 1013719 ] Select all objects: misleading name?
10474 2007-04-20 Dan McMahill * dan AT mcmahill dot net *
10476 * src/hid/gtk/gui-output-events.c, src/hid/gtk/gui-top-window.c,
10477 src/hid/lesstif/main.c, src/hid/ps/ps.c, src/hid/ps/ps.h: fix a
10478 handful of compiler warnings
10480 2007-04-20 Dan McMahill * dan AT mcmahill dot net *
10482 * doc/actions.texi: regen after usermenu merge
10484 2007-04-20 Dan McMahill * dan AT mcmahill dot net *
10486 * config.h.in, configure, configure.ac, src/Makefile.am,
10487 src/Makefile.in, src/action.c, src/gpcb-menu.res,
10488 src/hid/gtk/gtkhid-main.c, src/hid/gtk/gui-config.c,
10489 src/hid/gtk/gui-output-events.c, src/hid/gtk/gui-top-window.c,
10490 src/hid/gtk/gui.h, src/misc.c, src/pcbtest.sh.in, src/set.c,
10491 src/todo: Merge the usermenu branch. This reworks how the menus
10492 and hotkeys are defined and handled for the gtk HID. In particular,
10493 instead of being hard coded, the menus are loaded from a menu
10494 resource file like in the lesstif gui. All hotkeys are defined via
10495 the menu hotkeys and thus are visually presented in the menus. The
10496 gtk HID looks for "gpcb-menu.res" instead of "pcb-menu.res" so that
10497 the menu organization may be different between the lesstif and gtk
10500 2007-04-19 Dan McMahill * dan AT mcmahill dot net *
10502 * src/action.c, src/change.c, src/hid/gtk/gui-output-events.c,
10503 src/hid/gtk/gui-pinout-window.c, src/hid/gtk/gui-top-window.c,
10504 src/misc.c, src/output.c, src/output.h, src/set.c, src/thermal.c:
10505 Remove references to the now unused output.h. To help keep it that
10506 way, go ahead and remove the unused output.c and output.h files.
10508 2007-04-12 DJ Delorie * dj AT delorie dot com *
10510 * src/command.c: Allow :s without filename to use current filename.
10512 2007-04-11 Dan McMahill * dan AT mcmahill dot net *
10514 * configure, configure.ac, src/Makefile.am, src/Makefile.in,
10515 src/hid/nelma/hid.conf, src/hid/nelma/nelma.c,
10516 src/hid/nelma/nelma.h: add the nelma export HID provided in patch: [
10517 1601099 ] Nelma export HID by Tomaz Solc with a few minor updates by
10520 2007-04-11 Dan McMahill * dan AT mcmahill dot net *
10522 * src/hid/gtk/gui-output-events.c: Apply patch supplied in patch [
10523 1692014 ] Patch for "click on focus for zoom" bug from Tomaz Solc.
10525 2007-04-10 Dan McMahill * dan AT mcmahill dot net *
10527 * doc/actions.texi, doc/pcbfile.texi, doc/version.texi,
10528 src/Makefile.in: regen
10530 2007-04-08 Dan McMahill * dan AT mcmahill dot net *
10532 * src/hid/gtk/gui-config.c: Initialize command history size to 5 if
10533 no config setting is given. Patch [ 1608559 ] Patch for command
10536 2007-04-08 Dan McMahill * dan AT mcmahill dot net *
10538 * src/hid/gtk/gui-misc.c: add distance and angle to the relative
10539 readout. Mostly provided in patch submission [ 1621913 ] Euclidian
10540 distance from mark. Minor update (fix the fact that in PCB units,
10541 positive Y is down) from me.
10543 2007-04-08 Dan McMahill * dan AT mcmahill dot net *
10545 * src/file.c, src/file.h, src/parse_y.y: turn on the code which
10546 marks the file format version in the file. pcb has had the code in
10547 place for a bit now that parses that and gives a warning if the
10548 version of pcb is not new enough to read the current file version.
10550 2007-04-07 Dan McMahill * dan AT mcmahill dot net *
10552 * src/hid/gtk/gui-misc.c, src/hid/gtk/gui-top-window.c: prevent the
10553 cursor position labels from growing/shrinking as you move the cursor
10556 2007-04-06 Dan McMahill * dan AT mcmahill dot net *
10558 * src/flags.c: Change the stringflag in the settings from showdrc to
10559 showdrcmode since we already used showdrc for the flag. This fixes
10560 the menu choice for "crosshairs show drc clearance".
10562 2007-04-06 Dan McMahill * dan AT mcmahill dot net *
10564 * src/rats.c: avoid using an unitialized variable (even though we
10565 ignore the result of that access)
10567 2007-04-06 Dan McMahill * dan AT mcmahill dot net *
10569 * src/move.c: document MoveLayer() action
10571 2007-04-06 Dan McMahill * dan AT mcmahill dot net *
10573 * src/file.h: add missing prototypes
10575 2007-04-06 Dan McMahill * dan AT mcmahill dot net *
10577 * src/file.c: add missing header, remove unused variable
10579 2007-04-06 Dan McMahill * dan AT mcmahill dot net *
10581 * src/create.c, src/find.c: remove unused variable
10583 2007-04-06 Dan McMahill * dan AT mcmahill dot net *
10585 * src/action.c: format string fix
10587 2007-03-10 Harry Eaton * haceaton AT users dot sourceforge dot net *
10589 * src/rats.c: find rats regardless of how far the coordinates are
10592 ----------------------------------------------------------------------
10594 2007-03-10 Harry Eaton * haceaton AT users dot sourceforge dot net *
10596 * src/rats.c: Handle case for connections are close to or beyond
10599 ----------------------------------------------------------------------
10601 2007-03-09 DJ Delorie * dj AT delorie dot com *
10603 * src/Makefile.am, src/Makefile.in, src/clip.c, src/clip.h,
10604 src/hid/gtk/gtkhid-main.c, src/hid/lesstif/main.c: Add basic line
10605 clipping to both GUIs.
10607 2007-03-04 Dan McMahill * dan AT mcmahill dot net *
10609 * src/find.c: Fix a bug when looking for square pad to square pad
10610 clearance. The old way simply grew one of the pads by Bloat on all
10611 4 sides and looked for overlap. This is not the correct test in the
10612 case where the closest line between the two pads is a unique line
10613 from two of the corners. The new way should correctly handle all
10616 2007-03-04 DJ Delorie * dj AT delorie dot com *
10618 * src/Makefile.am, src/Makefile.in, src/action.c, src/action.h,
10619 src/autoroute.c, src/change.c, src/const.h, src/crosshair.c,
10620 src/data.c, src/data.h, src/djopt.c, src/draw.c, src/file.c,
10621 src/find.c, src/flags.c, src/global.h, src/hid.h,
10622 src/hid/batch/batch.c, src/hid/common/hidinit.c,
10623 src/hid/common/hidnogui.c, src/hid/gerber/gerber.c,
10624 src/hid/gtk/gtkhid-main.c, src/hid/lesstif/main.c,
10625 src/hid/lesstif/menu.c, src/hid/lesstif/netlist.c,
10626 src/hid/png/png.c, src/hid/ps/eps.c, src/hid/ps/ps.c, src/macro.h,
10627 src/main.c, src/misc.c, src/misc.h, src/parse_y.y,
10628 src/pcb-menu.res, src/report.c, src/search.c, src/set.c,
10629 src/strflags.c, src/strflags.h, src/todo: Made flags type big enough
10630 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
10631 names and text objects, so you can select the elements or objects
10632 beneath them. Added "only names" setting: When set, the arrow tool can only select
10633 element names and text objects; you won't accidentally move an
10634 element. Made the crosshair-move code draw the outline of pads, not the
10635 centerline. It does still draw round-end pads as rectangles,
10636 though. Allow "--no-foo" to shut off boolean "--foo" options that default to
10637 on. Added "--layer-stack" option that takes a string and sets the layer
10638 stack to it (for eps/png export, mostly). Layers are numbers
10639 0..N-1, the names of the layers from the loaded PCB file, or the
10640 special names "rats", "invisible", "pins", "vias", or "elements".
10641 Layers may be separated by spaces, commas, semicolons, or colons. Added Display(Step,[1..9]) to move the cursor in steps. Implemented
10642 in lesstif HID, attached to arrow keys. Added "what to do with the
10643 pointer" parameter - warp pointer to match crosshair, or pan window
10644 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
10645 it in their own attribute list? Added Report(NetLength) which reports on the total length of
10646 segments (lines and arcs) for the net under the cursor. It will
10647 also tell you the name of the net. Remove obsolete UseLogWindow and RaiseLogWindow.
10649 2007-03-02 Dan McMahill * dan AT mcmahill dot net *
10651 * win32/pcb.nsi.in: remove some left over links on uninstall
10653 2007-02-27 DJ Delorie * dj AT delorie dot com *
10655 * src/file.c: Avoid segfaults when loading elements, fixes bug in
10656 load-element-as-pcb patch.
10658 2007-02-27 DJ Delorie * dj AT delorie dot com *
10660 * src/hid/ps/ps.c: Add calibration values to the attribute list so
10661 they can be stored in the settings file, or given on the command
10664 2007-02-24 DJ Delorie * dj AT delorie dot com *
10666 * src/file.c, src/parse_y.y: Allow the user to load a footprint as a
10667 pcb; create a suitably-sized pcb around it.
10669 2007-02-23 DJ Delorie * dj AT delorie dot com *
10671 * src/report.c: Report on pads as rectangles, not lines, so we get
10672 width and height for the pad and mask. Also, report the gap between
10673 the pad and the mask.
10675 2007-02-23 DJ Delorie * dj AT delorie dot com *
10677 * src/hid/ps/ps.c: Silence some compiler warnings.
10679 2007-02-23 DJ Delorie * dj AT delorie dot com *
10681 * src/hid/ps/ps.c: Don't print the scale if we're filling the page.
10682 Don't print (null) if there's no board name.
10684 2007-02-15 DJ Delorie * dj AT delorie dot com *
10686 * src/hid/lesstif/main.c: Attach status bar widgets to the correct
10689 2007-02-15 DJ Delorie * dj AT delorie dot com *
10691 * src/hid/lesstif/main.c: Don't use the crosshair's position to keep
10692 track of whether it's in the window or not; have a separate variable
10693 so we can avoid panning when we're just resetting the crosshair
10694 after a tool change.
10696 2007-02-15 DJ Delorie * dj AT delorie dot com *
10698 * src/autoroute.c, src/hid/ps/ps.c, src/parse_l.l, src/polygon.c:
10699 Move declarations before statements (patch by Ben Jackson * ben AT
10702 2007-02-13 DJ Delorie * dj AT delorie dot com *
10704 * src/action.c, src/change.c, src/draw.c, src/draw.h, src/move.c,
10705 src/print.c, src/remove.c, src/rotate.c, src/undo.c: Keep track of
10706 the minimum line size for text depending on which layer the text is
10707 on (copper, silk, pin numbers).
10709 2007-02-12 Dan McMahill * dan AT mcmahill dot net *
10711 * src/Makefile.am, src/Makefile.in, src/Pcb.ad.in, src/Pcb.ad.raw,
10712 src/Pcb.ad.small: Remove the appdefaults files. These were leftover
10713 from Xaw days and weren't really doing anything other than providing
10714 a filename conflict on case insensitive file systems (pcb vs Pcb).
10716 2007-02-12 DJ Delorie * dj AT delorie dot com *
10718 * src/hid/ps/ps.c: Compensate for rotated boards. Allow the print
10719 step to be skipped.
10721 2007-02-10 DJ Delorie * dj AT delorie dot com *
10723 * src/action.c, src/hid/lesstif/dialogs.c, src/hid/lpr/lpr.c,
10724 src/hid/ps/ps.c, src/pcb-menu.res: Add printer calibration code for
10727 2007-02-10 DJ Delorie * dj AT delorie dot com *
10729 * src/vendor.c: Cache vendor lookups. Use binary search instead of
10732 2007-02-10 DJ Delorie * dj AT delorie dot com *
10734 * src/file.c, src/parse_l.l: Properly deal with quoted characters in
10735 both string reading and string writing.
10737 2007-02-10 DJ Delorie * dj AT delorie dot com *
10739 * src/vendor.c: Call busy before applying the vendor map.
10741 2007-02-10 DJ Delorie * dj AT delorie dot com *
10743 * src/action.c, src/djopt.c, src/hid.h, src/hid/batch/batch.c,
10744 src/hid/gtk/gtkhid-main.c, src/hid/lesstif/main.c: Change the way
10745 the busy cursor is done. Called for autoplace, autoroute, and
10748 2007-02-10 DJ Delorie * dj AT delorie dot com *
10750 * src/hid/lesstif/main.c, src/pcb-menu.res: Add "C" for Center()
10751 action. Provide examples for zooming-with-centering in
10754 2007-02-10 Dan McMahill * dan AT mcmahill dot net *
10756 * README.cvs_branches: note the usermenu branch
10758 2007-02-09 DJ Delorie * dj AT delorie dot com *
10760 * src/create.c: Always initialize default layer names.
10762 2007-02-09 Dan McMahill * dan AT mcmahill dot net *
10764 * src/create.c: use MAX_LAYER in a spot instead of max_layer.
10765 Prevents a segfault with the lesstif hid.
10767 2007-02-09 Dan McMahill * dan AT mcmahill dot net *
10769 * configure, configure.ac: bump rev after 20070208 branch
10771 2007-02-09 Dan McMahill * dan AT mcmahill dot net *
10773 * ChangeLog, NEWS: update for 20070208 snapshot
10775 2007-02-08 Dan McMahill * dan AT mcmahill dot net *
10777 * configure, configure.ac, src/main.c: if we somehow fail to find
10778 the install path from lrealpath(argv[0]) or by searching through the
10779 PATH environment variable, fall back to the configure time path
10780 which is compiled into the binary.
10782 2007-02-08 Dan McMahill * dan AT mcmahill dot net *
10784 * doc/actions.texi, doc/version.texi: regen
10786 2007-02-08 Dan McMahill * dan AT mcmahill dot net *
10788 * lib/Makefile.am, lib/Makefile.in: Modify how the dependencies work
10789 a bit for the newlib library that is generated from the m4
10790 libraries. In particular, make sure that a normal user building
10791 from a tarball doesn't have to build the libraries since they take
10792 quite a bit of time. Also make sure things work with a read-only
10795 2007-02-08 Dan McMahill * dan AT mcmahill dot net *
10797 * src/main.c: When pcb is called with no path, i.e. "pcb" instead of
10798 "../src/pcb" or /usr/local/bin/pcb, then we can't just look at
10799 argv[0] to figure out the installation path. In this situation,
10800 search through PATH to find which pcb was called. Should fix
10801 problems noted on geda-dev by Tomaz Solc.
10803 2007-02-08 Harry Eaton * haceaton AT users dot sourceforge dot net *
10805 * src/pcbtest.sh.in: fix pcbtest script to use the new binary name
10806 ('pcb') even when not using gdb
10808 ----------------------------------------------------------------------
10810 2007-02-08 Harry Eaton * haceaton AT users dot sourceforge dot net *
10812 * src/polygon1.c: Prevent degenrate holes with no points from being
10813 added to polygon. This is a stop-gap measure until I figure out why
10814 coincident edges in opposite directions are being created in some
10817 ----------------------------------------------------------------------
10819 2007-02-08 Dan McMahill * dan AT mcmahill dot net *
10821 * Makefile.in, README_FILES/Makefile.in, aclocal.m4, configure,
10822 doc/Makefile.in, example/Makefile.in,
10823 example/libraries/Makefile.in, lib/Makefile.in,
10824 newlib/2_pin_thru-hole_packages/Makefile.in, newlib/Makefile.in,
10825 newlib/analog-devices/Makefile.in, newlib/burr-brown/Makefile.in,
10826 newlib/connectors/Makefile.in, newlib/crystal/Makefile.in,
10827 newlib/electro-optics/Makefile.in, newlib/headers/Makefile.in,
10828 newlib/msp430/Makefile.in, newlib/not_vetted_ingo/Makefile.in,
10829 newlib/sockets/Makefile.in, newlib/tests/Makefile.in,
10830 src/Makefile.in, src/icons/Makefile.in, tools/Makefile.in,
10831 tutorial/Makefile.in, win32/Makefile.in: regen
10833 2007-02-08 Dan McMahill * dan AT mcmahill dot net *
10835 * : remove these generated files
10837 2007-02-08 Dan McMahill * dan AT mcmahill dot net *
10839 * README.snapshots: update for 20070208 snapshot
10841 2007-02-08 Dan McMahill * dan AT mcmahill dot net *
10843 * configure.ac: add a GIF AM_CONDITIONAL to go along with the PNG
10846 2007-02-06 Dan McMahill * dan AT mcmahill dot net *
10848 * doc/Makefile.am, doc/Makefile.in: s/pcb-bin/pcb
10850 2007-02-06 Dan McMahill * dan AT mcmahill dot net *
10852 * win32/build_pcb: fix botched commit
10854 2007-02-06 Dan McMahill * dan AT mcmahill dot net *
10856 * win32/build_pcb: add a --enable-maintainer-mode flag
10858 2007-02-06 Dan McMahill * dan AT mcmahill dot net *
10860 * win32/pcb.nsi.in: Include in the installer the licenses for the
10861 included libraries (gd, png, jpeg, freetype, zlib).
10863 2007-02-06 Dan McMahill * dan AT mcmahill dot net *
10865 * win32/build_pcb, win32/pcb.nsi.in: Add in the png HID to the
10866 non-cygwin windows build.
10868 2007-02-06 Dan McMahill * dan AT mcmahill dot net *
10870 * lib/m4lib_to_newlib.sh.in: When generating the previews of the
10871 footprints, run pcb on an input and output file in the current
10872 directory instead of a different directory. This becomes important
10873 on filesystems that use \ instead of / for the directory separator.
10875 2007-02-06 Dan McMahill * dan AT mcmahill dot net *
10877 * config.h.in, configure, configure.ac: On non-cygwin windows, look
10878 for -lbgd instead of -lgd since the former is what is available as a
10881 2007-02-06 Dan McMahill * dan AT mcmahill dot net *
10883 * src/file.c: remove some illegal casts to unions.
10885 2007-02-06 Dan McMahill * dan AT mcmahill dot net *
10887 * lib/m4lib_to_newlib.sh.in: the executible is now pcb not pcb-bin
10889 2007-02-05 Dan McMahill * dan AT mcmahill dot net *
10891 * src/parse_l.l: If the passed path to Parse is "" then don't use
10894 2007-02-05 Dan McMahill * dan AT mcmahill dot net *
10896 * src/parse_l.l: make sure r is always initialized
10898 2007-02-04 Dan McMahill * dan AT mcmahill dot net *
10900 * Makefile.in, README_FILES/Makefile.in, acinclude.m4, aclocal.m4,
10901 config.h.in, configure, configure.ac, doc/Makefile.in,
10902 example/Makefile.in, example/libraries/Makefile.in,
10903 lib/Makefile.in, newlib/2_pin_thru-hole_packages/Makefile.in,
10904 newlib/Makefile.in, newlib/analog-devices/Makefile.in,
10905 newlib/burr-brown/Makefile.in, newlib/connectors/Makefile.in,
10906 newlib/crystal/Makefile.in, newlib/electro-optics/Makefile.in,
10907 newlib/headers/Makefile.in, newlib/msp430/Makefile.in,
10908 newlib/not_vetted_ingo/Makefile.in, newlib/sockets/Makefile.in,
10909 newlib/tests/Makefile.in, src/Makefile.in, src/file.c,
10910 src/icons/Makefile.in, src/main.c, src/parse_l.l,
10911 tools/Makefile.in, tutorial/Makefile.in, win32/Makefile.in: More
10912 work on the relocatability stuff to handle the annoying "\" instead
10913 of "/" for directory separators in windows. Use ";" instead of ":"
10914 for path seperators under windows since it is common to have
10915 "c:\some\path". With this change things seem to work under
10916 non-cygwin windows.
10918 2007-02-04 Dan McMahill * dan AT mcmahill dot net *
10920 * win32/pcb.nsi.in: install pcb.exe instead of pcb-bin.exe
10922 2007-02-04 Dan McMahill * dan AT mcmahill dot net *
10924 * configure, configure.ac, lib/Makefile.am, lib/Makefile.in,
10925 newlib/Makefile.am, newlib/Makefile.in, newlib/cypress/Makefile.am,
10926 newlib/cypress/Makefile.in,
10927 newlib/generic_SMD_packages/0805_reflow_solder,
10928 newlib/generic_SMD_packages/0805_wave_solder,
10929 newlib/generic_SMD_packages/1206_reflow_solder,
10930 newlib/generic_SMD_packages/Makefile.am,
10931 newlib/generic_SMD_packages/Makefile.in,
10932 newlib/generic_SMD_packages/SOT-23_Transistor,
10933 newlib/toko/Makefile.am, newlib/toko/Makefile.in: Remove some empty
10934 newlib directories, some poorly maintained footprints, and some
10935 "heavy" footprints. There is still much more to be done but this is
10938 2007-02-04 Dan McMahill * dan AT mcmahill dot net *
10940 * config.h.in, configure, configure.ac, doc/actions.texi,
10941 doc/pcb.texi, doc/version.texi, src/Makefile.am, src/Makefile.in,
10942 src/file.c, src/global.h, src/hid/common/hidinit.c,
10943 src/hid/gtk/gui-config.c, src/main.c, src/pcbtest.sh.in,
10944 src/script/Makefile.am, src/script/Makefile.in, src/script/pcb.in:
10945 Take a stab at making pcb installations be relocatable. By this I
10946 mean you can configure and install with ./configure --prefix=/original/path make make install mv
10947 /original/path /new/path and still have pcb work. To make this work, the binary path is determined at runtime and all
10948 of the other paths are computed relative to this. As part of this, go ahead and kill off the pcb wrapper script around
10949 pcb-bin. That was leftover from Xaw days and wasn't really needed
10950 anymore. As a side effect, the --program-prefix and
10951 --program-suffix configure options will probably work now.
10953 2007-02-03 Dan McMahill * dan AT mcmahill dot net *
10955 * acinclude.m4, config.h.in, configure, configure.ac: add autoconf
10957 http://autoconf-archive.cryp.to/adl_compute_relative_paths.html and
10958 http://autoconf-archive.cryp.to/adl_normalize_path.html and use them
10959 to find relative paths from $bindir (where the pcb binary gets
10960 installed) to the directories with the default font and the
10961 footprints. This is the first step in making an installation be
10964 2007-02-03 Dan McMahill * dan AT mcmahill dot net *
10966 * 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
10967 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.
10968 Now autosave should work on all gui's instead of just the gtk one.
10970 2007-02-03 Dan McMahill * dan AT mcmahill dot net *
10972 * src/hid/gtk/gui-netlist-window.c: Add a "find" and "rip-up" button
10973 to the netlist window. Patch from Hans Nieuwenhuis on the geda-user
10976 2007-02-03 Dan McMahill * dan AT mcmahill dot net *
10978 * globalconst.h, src/file.c: Instead of writing the backup file
10979 always to /tmp/something derive a backup name from the pcb file name
10980 (if the pcb file name exists, otherwise use PCB.%i.save in the
10981 current directory). This should make it easier to find the backup
10982 file for a particular layout and also helps in cases where /tmp is
10983 not appropriate (windows).
10985 2007-02-02 DJ Delorie * dj AT delorie dot com *
10987 * src/main.c: Add command line option for setting DrawGrid
10989 2007-02-02 DJ Delorie * dj AT delorie dot com *
10991 * src/report.c: Round drill sizes before reporting them.
10993 2007-02-02 DJ Delorie * dj AT delorie dot com *
10995 * src/netlist.c, src/rats.c, src/rats.h: Fix logic for adding new
10996 rat lines to the netlist.
10998 2007-02-02 DJ Delorie * dj AT delorie dot com *
11000 * src/hid/gtk/gtkhid-main.c: Fix gtk grid when board flipped.
11002 2007-02-02 Dan McMahill * dan AT mcmahill dot net *
11004 * Makefile.in, README_FILES/Makefile.in, configure,
11005 doc/Makefile.in, example/Makefile.in,
11006 example/libraries/Makefile.in,
11007 newlib/2_pin_thru-hole_packages/Makefile.in, newlib/Makefile.in,
11008 newlib/analog-devices/Makefile.in, newlib/burr-brown/Makefile.in,
11009 newlib/connectors/Makefile.in, newlib/crystal/Makefile.in,
11010 newlib/cypress/Makefile.in, newlib/electro-optics/Makefile.in,
11011 newlib/generic_SMD_packages/Makefile.in,
11012 newlib/headers/Makefile.in, newlib/msp430/Makefile.in,
11013 newlib/not_vetted_ingo/Makefile.in, newlib/sockets/Makefile.in,
11014 newlib/tests/Makefile.in, newlib/toko/Makefile.in, src/Makefile.in,
11015 src/icons/Makefile.in, src/script/Makefile.in, tools/Makefile.in,
11016 tutorial/Makefile.in, win32/Makefile.in: regen
11018 2007-02-01 DJ Delorie * dj AT delorie dot com *
11020 * src/draw.c: Draw plated holes when exporting.
11022 2007-01-29 DJ Delorie * dj AT delorie dot com *
11024 * src/hid/lesstif/main.c, src/hid/lesstif/netlist.c: Add more
11025 functionality to netlist dialog.
11027 2007-01-27 DJ Delorie * dj AT delorie dot com *
11029 * src/action.c: Make sure we have a current mark when we convert
11030 selection to an element.
11032 2007-01-22 Dan McMahill * dan AT mcmahill dot net *
11034 * lib/Makefile.am, lib/Makefile.in: Fix a problem where we ended up
11035 with "//" in a full path name. This caused problems on cygwin.
11037 2007-01-20 Dan McMahill * dan AT mcmahill dot net *
11039 * src/hid/gtk/gtkhid-main.c: add some code showing how to get the
11040 installation path on windows. Right now, just print out the
11041 directory to show it works until I figure out how to get it to the
11042 rest of the program.
11044 2007-01-20 Dan McMahill * dan AT mcmahill dot net *
11046 * win32/build_pcb: clean out the old install directory prior to
11047 installing to avoid leftover cruft showing up in the installer.
11049 2007-01-20 Dan McMahill * dan AT mcmahill dot net *
11051 * win32/build_pcb: add a number of flags to this script to help when
11052 using it with cvs sources or in debug mode. See "build_pcb --help"
11053 for details on the flags.
11055 2007-01-20 Dan McMahill * dan AT mcmahill dot net *
11057 * configure, configure.ac, src/main.c: Break apart PCBTREEDIR into
11058 the original plus PCBTREEPATH where the latter is a : seperated path
11059 and the former is just the base installation directory for newlib.
11061 2007-01-19 Dan McMahill * dan AT mcmahill dot net *
11063 * src/compat.c, src/compat.h, src/hid/common/hidinit.c: Add
11064 replacement wrappers for dlopen() and friends on windows. Update
11065 the hid initialization code to pull in the compat header. Also work
11066 around windows limitations with stat(). No change on real operating
11069 2007-01-19 Dan McMahill * dan AT mcmahill dot net *
11071 * 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
11073 2007-01-17 Dan McMahill * dan AT mcmahill dot net *
11075 * src/file.c: exclude .html and .png files from newlib directories
11077 2007-01-17 Dan McMahill * dan AT mcmahill dot net *
11079 * configure, configure.ac, src/pcbtest.sh.in: add the generated
11080 (from m4lib) newlib to the library search path
11082 2007-01-16 Dan McMahill * dan AT mcmahill dot net *
11084 * lib/Makefile.am, lib/Makefile.in, lib/footprint.pcb: - Add missing template .pcb file for generating previews of all the
11085 footprints. Building the previews also verifies that there are no
11086 syntax errors in the m4lib footprints. - fix the logic for rebuilding the newlib library from m4 libs.
11088 2007-01-16 DJ Delorie * dj AT delorie dot com *
11090 * src/hid/gerber/gerber.c: Use a global aperture list instead of
11093 2007-01-16 DJ Delorie * dj AT delorie dot com *
11095 * src/file.c, src/macro.h, src/main.c, src/parse_l.l: Don't call
11096 popen() if we don't need to.
11098 2007-01-15 Dan McMahill * dan AT mcmahill dot net *
11100 * lib/Makefile.am, lib/Makefile.in: Build and install a newlib
11101 library from the m4lib library. Currently nothing else has changed,
11102 the default for pcb is still the old behaviour. This is just the
11105 2007-01-15 Dan McMahill * dan AT mcmahill dot net *
11107 * lib/m4lib_to_newlib.sh.in: Make building the png preview optional.
11108 Other minor cleanups.
11110 2007-01-15 Dan McMahill * dan AT mcmahill dot net *
11112 * configure, configure.ac: add an AM_CONDITIONAL indicating if the
11113 png HID was compiled in
11115 2007-01-15 DJ Delorie * dj AT delorie dot com *
11117 * doc/actions.texi, doc/pcbfile.texi, doc/version.texi: Update from
11120 2007-01-15 DJ Delorie * dj AT delorie dot com *
11122 * src/djopt.c: Keep canonicalizing lines until they're all
11123 canonicalized. Don't delete vias that aren't tented (assume they're
11124 test points). Add an option to just canonicalize lines.
11126 2007-01-14 Harry Eaton * haceaton AT users dot sourceforge dot net *
11128 * src/autoroute.c, src/mtspace.c, src/mtspace.h: More thurough via
11129 site searching, cost function changes and some better handling of
11130 certain search conditions. Much improved smoothing pass
11131 implementation. Doesn't gratuitously pack traces at minimum
11132 clearance during smoothing pass. Overall much better routing is
11135 ----------------------------------------------------------------------
11137 2007-01-11 DJ Delorie * dj AT delorie dot com *
11139 * src/hid/ps/ps.c: From: Hans Nieuwenhuis * vzzbx AT xs4all dot nl
11140 * Check for failed opens.
11142 2007-01-09 DJ Delorie * dj AT delorie dot com *
11144 * src/draw.c, src/hid/gerber/gerber.c: Don't draw plated holes on
11147 2007-01-09 Harry Eaton * haceaton AT users dot sourceforge dot net *
11149 * src/move.c: fix segfault when moving polygon to layer. Also user
11150 r_search to find the pin/via thermals.
11152 ----------------------------------------------------------------------
11154 2006-12-23 DJ Delorie * dj AT delorie dot com *
11156 * src/hid/lesstif/dialogs.c: Cast away const-ness.
11158 2006-12-22 Harry Eaton * haceaton AT users dot sourceforge dot net *
11160 * src/crosshair.c: don't indicate line end-point if the line is
11161 selected since move will move the whole selection.
11163 ----------------------------------------------------------------------
11165 2006-12-22 Harry Eaton * haceaton AT users dot sourceforge dot net *
11167 * src/crosshair.c, src/hid/gtk/gtkhid-main.c,
11168 src/hid/gtk/gui-misc.c, src/hid/gtk/gui.h, src/hid/lesstif/main.c,
11169 src/search.h, src/todo: provide a cursor shape change when the arrow
11170 mode crosshair is over a line end-point.
11172 ----------------------------------------------------------------------
11174 2006-12-22 DJ Delorie * dj AT delorie dot com *
11176 * src/todo: Take "enums" off the lesstif list.
11178 2006-12-22 DJ Delorie * dj AT delorie dot com *
11180 * src/hid/lesstif/dialogs.c: Add support for HID_Enum in attribute
11183 2006-12-22 DJ Delorie * dj AT delorie dot com *
11185 * src/hid/lesstif/main.c: Increase default size of main window.
11187 2006-12-21 Dan McMahill * dan AT mcmahill dot net *
11189 * win32/build_pcb: if the configure or build fails, then abort the
11192 2006-12-21 Dan McMahill * dan AT mcmahill dot net *
11194 * win32/pcb.nsi.in: the link should be to pcb-bin.exe not pcb
11196 2006-12-21 DJ Delorie * dj AT delorie dot com *
11198 * src/todo: Remove completed projects, add some new ones.
11200 2006-12-18 DJ Delorie * dj AT delorie dot com *
11202 * src/hid/common/hidnogui.c, src/hid/gtk/gtkhid-main.c,
11203 src/hid/lesstif/main.c: ... and return 0 for progress hooks.
11205 2006-12-18 DJ Delorie * dj AT delorie dot com *
11207 * src/hid/common/hidnogui.c, src/hid/gtk/gtkhid-main.c,
11208 src/hid/lesstif/main.c: Fix progress prototypes.
11210 2006-12-17 DJ Delorie * dj AT delorie dot com *
11212 * src/hid.h, src/hid/batch/batch.c, src/hid/bom/bom.c,
11213 src/hid/common/hidnogui.c, src/hid/gtk/gtkhid-main.c,
11214 src/hid/lesstif/main.c, src/hid/lpr/lpr.c, src/hid/png/png.c,
11215 src/hid/ps/ps.c: Add progress() hook to HID structure. No actual
11216 implementation yet.
11218 2006-12-17 DJ Delorie * dj AT delorie dot com *
11220 * src/hid/lesstif/main.c: Add automatic busy cursor. Add (disabled)
11221 debug code for arc thindraw.
11223 2006-12-17 DJ Delorie * dj AT delorie dot com *
11225 * lib/geda.inc: Add SDIP20. Fix comment.
11227 2006-12-15 DJ Delorie * dj AT delorie dot com *
11229 * src/parse_y.y: Allow attributes in old-style elements too.
11231 2006-12-14 Dan McMahill * dan AT mcmahill dot net *
11233 * src/hid/gtk/gui-output-events.c, src/hid/gtk/gui.h: Fix a bug in
11234 GTK hid that causes the view port to scroll in a random direction on
11235 a mouse click inside the view port (for example when drawing a
11236 line). This bug only shows itself when an X application that steals window
11237 focus is running together with PCB on the same X server. At least
11238 GNOME and XFCE window managers are known to do that. See the following and related GNOME bugs for some discussion about
11239 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
11240 bug by Tomaz Solc. This should also address bug report [ 1593578 ] Display sometimes
11241 auto-scrolls when drawing lines by Garth Webb.
11243 2006-12-14 Dan McMahill * dan AT mcmahill dot net *
11245 * src/Makefile.in: regen
11247 2006-12-14 Harry Eaton * haceaton AT users dot sourceforge dot net *
11249 * src/polygon1.c: avoid duplicate removal of duplicate points
11251 ----------------------------------------------------------------------
11253 2006-12-14 Harry Eaton * haceaton AT users dot sourceforge dot net *
11255 * src/hid/gtk/gui-config.c: beginnings of support for isleArea as a
11256 dialog changeable item
11258 ----------------------------------------------------------------------
11260 2006-12-14 Harry Eaton * haceaton AT users dot sourceforge dot net *
11262 * src/draw.c: fix arc drawing on the flipped board
11264 ----------------------------------------------------------------------
11266 2006-12-14 Dan McMahill * dan AT mcmahill dot net *
11268 * src/Makefile.am, src/Makefile.in: add missing lrealpath.h
11270 2006-12-14 Dan McMahill * dan AT mcmahill dot net *
11272 * src/dbus.c: change a libiberty.h include to lrealpath.h since
11273 thats what we have now
11275 2006-12-13 Dan McMahill * dan AT mcmahill dot net *
11277 * src/buffer.c, src/mymem.c, src/undo.c: Avoid some null pointer
11278 dereferences. Also make sure UndoList and RemoveList are
11279 initialized at startup to avoid any strange behavior there. This
11280 fixes a bug reported on geda-user where starting pcb with an empty
11281 board and then doing 'load layout to buffer' and pasting and then
11282 doing it again causes a segfault. Thanks to Peter Clifton for
11285 2006-12-13 Dan McMahill * dan AT mcmahill dot net *
11287 * src/dbus-pcbmain.c, src/dbus-pcbmain.h, src/dbus.c, src/dbus.h:
11288 indent new code -- no other changes
11290 2006-12-13 Dan McMahill * dan AT mcmahill dot net *
11292 * config.h.in, configure, src/Makefile.in: regen
11294 2006-12-13 Dan McMahill * dan AT mcmahill dot net *
11296 * acinclude.m4: fix underquoting of libiberty_NEED_DECLARATION
11298 2006-12-13 Dan McMahill * dan AT mcmahill dot net *
11300 * src/Makefile.am: when building dbus, compile in lrealpath.c
11302 2006-12-13 Dan McMahill * dan AT mcmahill dot net *
11304 * acinclude.m4, configure.ac: add configure checks needed for
11307 2006-12-13 Dan McMahill * dan AT mcmahill dot net *
11309 * src/lrealpath.c: remove ansidecls.h
11311 2006-12-13 Dan McMahill * dan AT mcmahill dot net *
11313 * src/lrealpath.c, src/lrealpath.h: add a header with the lrealpath
11314 prototype and point to that instead of libiberty.h
11316 2006-12-13 Dan McMahill * dan AT mcmahill dot net *
11318 * src/lrealpath.c: Add lrealpath.c from gcc's libiberty. For now
11319 lets just add this one libiberty function. This is the unmodified
11320 version from gcc current as of 2006-12-12. Last modified on
11323 2006-12-10 Harry Eaton * haceaton AT users dot sourceforge dot net *
11325 * src/misc.c: scan all layers for match because buffers don't always
11326 have LayerN set properly
11328 ----------------------------------------------------------------------
11330 2006-12-09 Harry Eaton * haceaton AT users dot sourceforge dot net *
11332 * src/autoroute.c: break loops when exploring new paths, plus some
11333 other enhancements.
11335 ----------------------------------------------------------------------
11337 2006-12-07 Dan McMahill * dan AT mcmahill dot net *
11339 * src/dbus.c: put back the unused variable but protect it with
11340 #ifdef DEBUG. From Peter Clifton
11342 2006-12-07 Dan McMahill * dan AT mcmahill dot net *
11344 * src/hid/gtk/gtkhid-main.c: fix broken dereference from last commit
11346 2006-12-07 Dan McMahill * dan AT mcmahill dot net *
11348 * src/dbus.c: remove an unused variable
11350 2006-12-07 Dan McMahill * dan AT mcmahill dot net *
11352 * src/hid/gtk/gtkhid-main.c, src/hid/lesstif/main.c: Don't try to
11353 cast to a union. This practice does not work with all compilers.
11354 Fixes compilation with sun compilers.
11356 2006-12-07 Dan McMahill * dan AT mcmahill dot net *
11358 * src/hid/ps/ps.c: add --scale for postscript scaling. Patch from
11359 Hans Nieuwenhuis on geda-user.
11361 2006-12-07 Dan McMahill * dan AT mcmahill dot net *
11363 * Makefile.in, README_FILES/Makefile.in, config.h.in, configure,
11364 configure.ac, doc/Makefile.in, doc/pcbfile.texi,
11365 example/Makefile.in, example/libraries/Makefile.in,
11366 lib/Makefile.in, newlib/2_pin_thru-hole_packages/Makefile.in,
11367 newlib/Makefile.in, newlib/analog-devices/Makefile.in,
11368 newlib/burr-brown/Makefile.in, newlib/connectors/Makefile.in,
11369 newlib/crystal/Makefile.in, newlib/cypress/Makefile.in,
11370 newlib/electro-optics/Makefile.in,
11371 newlib/generic_SMD_packages/Makefile.in,
11372 newlib/headers/Makefile.in, newlib/msp430/Makefile.in,
11373 newlib/not_vetted_ingo/Makefile.in, newlib/sockets/Makefile.in,
11374 newlib/tests/Makefile.in, newlib/toko/Makefile.in, src/Makefile.am,
11375 src/Makefile.in, src/dbus-pcbmain.c, src/dbus-pcbmain.h,
11376 src/dbus.c, src/dbus.h, src/dbus.xml, src/hid.h,
11377 src/hid/common/extents.c, src/hid/common/hidnogui.c,
11378 src/hid/gtk/gtkhid-main.c, src/hid/lesstif/main.c,
11379 src/icons/Makefile.in, src/main.c, src/script/Makefile.in,
11380 tools/Makefile.in, tutorial/Makefile.in, win32/Makefile.in: Initial
11381 checkin of Peter Cliftons DBus work. Currently dbus is disabled by
11382 default but can be enabled with --enable-dbus
11384 2006-12-06 Dan McMahill * dan AT mcmahill dot net *
11386 * src/hid/gtk/gui-top-window.c: Intercept window manager delete
11387 events. This prevents data loss when the window manager closes or
11388 deletes a window. Reported as [ 1458340 ] data loss with closing
11389 main PCB windows and also on geda-dev by Peter Clifton.
11391 2006-12-06 Dan McMahill * dan AT mcmahill dot net *
11393 * src/hid/gtk/gui-library-window.c, src/hid/gtk/gui-log-window.c,
11394 src/hid/gtk/gui-netlist-window.c, src/hid/gtk/gui-pinout-window.c:
11395 Stop preventing the library, log, netlist, and pinout windows from
11396 accepting focus. Preventing them from accepting focus had the side
11397 effect of breaking those dialogs on some systems with certain window
11400 2006-12-05 Harry Eaton * haceaton AT users dot sourceforge dot net *
11402 * src/autoroute.c: allow searching across expansion boxes in each
11403 direction which can find lower cost routes.
11405 ----------------------------------------------------------------------
11407 2006-12-05 Harry Eaton * haceaton AT users dot sourceforge dot net *
11409 * src/autoroute.c: Various changes to improve the ability to find
11410 routes and make better looking, more efficient routes.
11412 2006-12-03 Harry Eaton * haceaton AT users dot sourceforge dot net *
11414 * src/misc.c, src/polygon.c: use Data->LayerN instead of max_layer
11415 where Data may not be PCB->Data
11417 ----------------------------------------------------------------------
11419 2006-12-02 DJ Delorie * dj AT delorie dot com *
11421 * src/move.c: Handle edge conditions when adding/removing layers wrt
11424 2006-12-02 DJ Delorie * dj AT delorie dot com *
11426 * src/move.c: Move thermals when we move layers.
11428 2006-12-02 DJ Delorie * dj AT delorie dot com *
11430 * src/hid/ps/ps.c: Move layer ID text outside of the "board" area.
11431 Print board name, layer name, and mirror flag in lower left near
11432 margin. When both mirror and auto-mirror are checked, xor them.
11434 2006-12-01 Dan McMahill * dan AT mcmahill dot net *
11436 * src/hid/lpr/lpr.c, src/hid/ps/ps.c, src/hid/ps/ps.h: make sure the
11437 postscript header line makes it in the lpr HID. Should fix problems
11438 where the postscript text was being printed instead of executed.
11440 2006-11-16 Harry Eaton * haceaton AT users dot sourceforge dot net *
11442 * src/polygon.c, src/polygon.h, src/thermal.c: make clearances
11443 around rectangular pins and pads have rounded rectangle features
11445 ----------------------------------------------------------------------
11447 2006-11-15 Harry Eaton * haceaton AT users dot sourceforge dot net *
11449 * src/draw.c: remove dead code accidentally left behind
11451 ----------------------------------------------------------------------
11453 2006-11-14 Harry Eaton * haceaton AT users dot sourceforge dot net *
11455 * src/draw.c, src/polygon.c, src/polygon.h: always draw with dicing
11456 so that polygons can reside in holes of other polygons
11458 ----------------------------------------------------------------------
11460 2006-11-14 Harry Eaton * haceaton AT users dot sourceforge dot net *
11462 * src/hid/gtk/gtkhid-main.c, src/hid/gtk/gui.h: Make the invalidate
11463 rectangle only include the drawn region. This vastly speeds up
11464 drawing when zoomed in on a complex deisgn.
11466 ----------------------------------------------------------------------
11468 2006-11-13 Harry Eaton * haceaton AT users dot sourceforge dot net *
11470 * src/buffer.c: Warn if non-manhattan lines are trying to become
11473 2006-11-13 Harry Eaton * haceaton AT users dot sourceforge dot net *
11475 * src/polygon.c: preven silk clipping copper polygons and copper
11476 clipping silk polygons
11478 2006-11-11 Dan McMahill * dan AT mcmahill dot net *
11480 * src/parse_y.y: minor fix to the FileVersion documentation
11482 2006-11-10 Dan McMahill * dan AT mcmahill dot net *
11484 * src/hid/ps/ps.c: add us and international business card media
11486 2006-11-10 Dan McMahill * dan AT mcmahill dot net *
11488 * src/file.c, src/file.h, src/parse_l.l, src/parse_y.y: Add code to
11489 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
11490 version which is too new for this version of pcb then issue a
11491 complaint and explain why. This should help out when the file
11492 format changes and someone tries to load a new design with an older
11493 version of pcb. Of course the real benefit won't happen until
11494 versions of pcb prior to this check all go away... For now, the actual output file from pcb hasn't changed. There is a
11495 two line change to include the FileVersion[] line that can be
11496 included the next time the file format is changed. However, there
11497 is no reason to not have the program start watching for it.
11499 2006-11-10 Harry Eaton * haceaton AT users dot sourceforge dot net *
11501 * src/buffer.c, src/undo.c: fix some segfaults due to clearing pcb
11502 pointer in data structure.
11504 2006-11-09 Dan McMahill * dan AT mcmahill dot net *
11506 * src/hid/ps/ps.c: Add several more media types and for the existing
11507 metric ones, recompute the bounding box size since pcb has more
11508 internal resolution that the old values.
11510 2006-11-08 Harry Eaton * haceaton AT users dot sourceforge dot net *
11512 * src/remove.c: prevent segfault when removing polyogn points
11513 resulting in fewer than 3 points in the poly
11515 ----------------------------------------------------------------------
11517 2006-11-06 Harry Eaton * haceaton AT users dot sourceforge dot net *
11519 * src/polygon.c, src/polygon1.c: fix some bugs for unusual clipping
11520 conditions. Specifically holes touching at one point (or edge) as an
11521 acceptable self-intersection and snap-rounding expanding the
11524 ----------------------------------------------------------------------
11526 2006-11-05 Dan McMahill * dan AT mcmahill dot net *
11528 * doc/actions.texi, doc/pcbfile.texi: regen
11530 2006-11-05 Dan McMahill * dan AT mcmahill dot net *
11532 * src/action.c, src/change.c, src/change.h, src/const.h,
11533 src/draw.c, src/find.c, src/strflags.c: Add a 'nopaste' flag for
11534 pads. This lets you produce fiducial marks that should not have
11535 solder paste. In addition you can use it for things like card edge
11536 connectors where you may not want solder paste. Since this is
11537 moderately dangerous (how do you make sure you don't set this flag
11538 somewhere where you _need_ solder paste), the drc check reports a
11539 count of how many times this flag is used.
11541 2006-11-04 Harry Eaton * haceaton AT users dot sourceforge dot net *
11543 * src/intersect.c: fix crash due to not checking for no overlaps.
11544 Thanks to Anread Kemnade for the patch.
11546 ----------------------------------------------------------------------
11548 2006-11-03 Dan McMahill * dan AT mcmahill dot net *
11550 * src/action.c: use *FILEVERSION* instead of *VERSION* for the
11551 annotation file to help avoid possible confusion between file
11552 version and program version.
11554 2006-10-29 DJ Delorie * dj AT delorie dot com *
11556 * src/report.c: Report units in mm or mils as selected by user.
11558 2006-10-29 Harry Eaton * haceaton AT users dot sourceforge dot net *
11560 * src/parse_y.y: fix polyarea ordering to correspond to file saving
11562 ----------------------------------------------------------------------
11564 2006-10-25 Harry Eaton * haceaton AT users dot sourceforge dot net *
11566 * src/action.c: fix setsame layer changing
11568 ----------------------------------------------------------------------
11570 2006-10-21 Harry Eaton * haceaton AT users dot sourceforge dot net *
11572 * src/find.c: allow pins/vias with zero clearance to touch polygons
11574 ----------------------------------------------------------------------
11576 2006-10-21 Harry Eaton * haceaton AT users dot sourceforge dot net *
11578 * src/polygon1.c: speed improvement by avoiding r_search call
11579 overhead when there is no overlap
11581 ----------------------------------------------------------------------
11583 2006-10-21 Harry Eaton * haceaton AT users dot sourceforge dot net *
11585 * src/file.c, src/global.h, src/main.c, src/parse_l.l: support for
11586 polygon island size in the pcb file
11588 ----------------------------------------------------------------------
11590 2006-10-21 Harry Eaton * haceaton AT users dot sourceforge dot net *
11592 * src/parse_y.y, src/polygon.c: Avoid use of 'max_layer' macro - it
11593 assumes the Data is the loaded PCB which doesn't work during file
11596 ----------------------------------------------------------------------
11598 2006-10-21 Harry Eaton * haceaton AT users dot sourceforge dot net *
11600 * src/polygon.c, src/thermal.c, src/thermal.h: use the saved thermal
11601 scale when loading a design
11603 ----------------------------------------------------------------------
11605 2006-10-20 Dan McMahill * dan AT mcmahill dot net *
11607 * src/hid/common/hidinit.c, src/hid/gerber/gerber.c: Cast the char's
11608 which are being fed to isspace() and friends to ints which is what
11611 2006-10-20 Harry Eaton * haceaton AT users dot sourceforge dot net *
11613 * src/rtree.c: check the coming regions, not the one we're at over
11616 ----------------------------------------------------------------------
11618 2006-10-20 Dan McMahill * dan AT mcmahill dot net *
11620 * src/hid/gtk/gui-misc.c, src/hid/gtk/gui-output-events.c: add a
11621 couple of casts and kill the rest of the remaining gcc and SunPRO
11624 2006-10-19 Dan McMahill * dan AT mcmahill dot net *
11626 * src/hid/lesstif/dialogs.c, src/hid/lesstif/menu.c,
11627 src/hid/lesstif/styles.c: cast to a size_t before converting
11628 callback data between ints and pointers
11630 2006-10-19 Dan McMahill * dan AT mcmahill dot net *
11632 * src/hid/gtk/gui-icons-misc.data, src/hid/gtk/gui-top-window.c:
11633 remove some SunPRO compiler complaints about initilizers being out
11636 2006-10-19 Dan McMahill * dan AT mcmahill dot net *
11638 * src/hid/common/hidinit.c: catch HID_Mixed in a switch
11640 2006-10-19 Dan McMahill * dan AT mcmahill dot net *
11642 * src/hid/bom/bom.c, src/hid/gerber/gerber.c, src/print.c: avoid gcc
11643 warnings when using %c with strftime
11645 2006-10-19 Dan McMahill * dan AT mcmahill dot net *
11647 * src/polygon1.c: #ifdef DEBUG out a couple of things which are
11648 defined but not used unless DEBUG is defined
11650 2006-10-19 Dan McMahill * dan AT mcmahill dot net *
11652 * src/draw.c: cast to a size_t before an int when passing an int to
11653 a callback function.
11655 2006-10-19 Harry Eaton * haceaton AT users dot sourceforge dot net *
11657 * src/rtree.c: even faster tree searching and insertion
11659 ----------------------------------------------------------------------
11661 2006-10-19 Dan McMahill * dan AT mcmahill dot net *
11663 * src/polygon1.c: modify the DEBUGP macro slightly so it can be
11664 legally called with only one argument like DEBUGP("\n");
11666 2006-10-19 Harry Eaton * haceaton AT users dot sourceforge dot net *
11668 * src/polygon1.c: oops, don't manage the contour bounding boxes in
11671 ----------------------------------------------------------------------
11673 2006-10-18 Dan McMahill * dan AT mcmahill dot net *
11675 * lib/geda.inc: {T,}QFN16_3{,_EP} needs to use PKG_QFN_50S not
11676 PKG_QFN_50. Noted by Matthias Wenzel.
11678 2006-10-18 Harry Eaton * haceaton AT users dot sourceforge dot net *
11680 * src/polygon1.c: speed up hole insertion further. Trees everywhere!
11682 ----------------------------------------------------------------------
11684 2006-10-18 Dan McMahill * dan AT mcmahill dot net *
11686 * configure, configure.ac: Only apply the -rdynamic check if we're
11687 using gcc. This probably isn't the correct long term fix but for
11688 now it lets users with SunPRO build again. The problem is -rdynamic
11689 with SunPRO's cc doesn't have the same behaviour as with gcc but it
11690 returns 0 so configure thinks it is ok to add -rdynamic.
11692 2006-10-17 Dan McMahill * dan AT mcmahill dot net *
11694 * src/hid/ps/ps.c: Use the media option to set the page size and
11695 margins. Selecting different paper size should work now.
11697 2006-10-17 Harry Eaton * haceaton AT users dot sourceforge dot net *
11699 * src/create.c, src/polyarea.h, src/polygon.c, src/polygon1.c,
11700 src/rtree.c: bug fixes for hole insertion and fast point inside
11703 ----------------------------------------------------------------------
11705 2006-10-17 Dan McMahill * dan AT mcmahill dot net *
11707 * config.h.in, configure, configure.ac: check for dlopen in -ldl.
11708 Needed on solaris 9
11710 2006-10-17 Dan McMahill * dan AT mcmahill dot net *
11712 * configure, configure.ac: be verbose about the rdynamic test
11714 2006-10-16 Dan McMahill * dan AT mcmahill dot net *
11716 * lib/geda.inc: add some 16 pin 3x3 mm QFN packages
11718 2006-10-15 DJ Delorie * dj AT delorie dot com *
11720 * src/buffer.c: If we're converting a buffer to an element and the
11721 buffer has no associated PCB; assign the current one so we have *a*
11722 group table to use.
11724 2006-10-15 DJ Delorie * dj AT delorie dot com *
11726 * src/hid/gtk/gui-top-window.c, src/hid/lesstif/menu.c: Keep
11727 ElemenOn and *SILK->On in sync.
11729 2006-10-14 Harry Eaton * haceaton AT users dot sourceforge dot net *
11731 * src/change.c: handle polygon clearance for unplated holes
11733 ----------------------------------------------------------------------
11735 2006-10-14 Harry Eaton * haceaton AT users dot sourceforge dot net *
11737 * src/find.c: fix rat<->polygon connection test
11739 ----------------------------------------------------------------------
11741 2006-10-14 Harry Eaton * haceaton AT users dot sourceforge dot net *
11743 * src/change.c, src/polygon.c: fix undo handling for all change
11744 operations that affect polygon clip
11746 ----------------------------------------------------------------------
11748 2006-10-13 Harry Eaton * haceaton AT users dot sourceforge dot net *
11750 * src/find.c: fix rat to polygon connection test
11752 ----------------------------------------------------------------------
11754 2006-10-13 Harry Eaton * haceaton AT users dot sourceforge dot net *
11756 * src/change.c: fix the sense of set/clear for line join
11758 ----------------------------------------------------------------------
11760 2006-10-12 Harry Eaton * haceaton AT users dot sourceforge dot net *
11762 * src/macro.h: Fix GROUP_LOOP macro
11764 2006-10-12 Harry Eaton * haceaton AT users dot sourceforge dot net *
11766 * src/create.c, src/global.h, src/heap.h, src/polygon.c,
11767 src/polygon1.c: fix GROUP_LOOP macro, optimize hole insertion and
11768 fix some small bugs
11770 ----------------------------------------------------------------------
11772 2006-10-12 Harry Eaton * haceaton AT users dot sourceforge dot net *
11774 * src/action.c: Morph selections
11776 ----------------------------------------------------------------------
11778 2006-10-11 Dan McMahill * dan AT mcmahill dot net *
11780 * src/hid/lesstif/dialogs.c, src/hid/lesstif/menu.c: fix a few
11783 2006-10-10 Dan McMahill * dan AT mcmahill dot net *
11785 * src/hid/lesstif/dialogs.c: remove some unused variables
11787 2006-10-10 Dan McMahill * dan AT mcmahill dot net *
11789 * src/hid/lesstif/menu.c: - include resource.h before lesstif.h to make sure we get a
11790 prototype for lesstif_note_mouse_resource(). - remove some unused variables.
11792 2006-10-10 Dan McMahill * dan AT mcmahill dot net *
11794 * src/hid/lesstif/main.c: remove some unused variables and add a
11795 missing return value
11797 2006-10-10 Dan McMahill * dan AT mcmahill dot net *
11799 * src/hid/lesstif/lesstif.h: - Be consistent with underscores in __RESOURCE_INCLUDED__. Now this
11800 file matches what resource.h has! - Add a couple of missing prototypes.
11802 2006-10-10 Dan McMahill * dan AT mcmahill dot net *
11804 * src/resource.h: be consistent with underscores in
11805 __RESOURCE_INCLUDED__
11807 2006-10-10 Harry Eaton * haceaton AT users dot sourceforge dot net *
11809 * src/draw.c, src/polyarea.h, src/polygon.c, src/polygon.h,
11810 src/polygon1.c: fix polygon search bug introduced with
11811 optimizations. fix a layer group bug in polygon clearing. speed up
11812 gerber generation a little
11814 ----------------------------------------------------------------------
11816 2006-10-09 Dan McMahill * dan AT mcmahill dot net *
11818 * doc/version.texi: regen
11820 2006-10-09 Dan McMahill * dan AT mcmahill dot net *
11822 * configure, configure.ac: bump rev to 1.99u in light of the clipper
11825 2006-10-09 Dan McMahill * dan AT mcmahill dot net *
11827 * doc/actions.texi, doc/ideas/database.txt, doc/pcbfile.texi,
11828 src/Makefile.am, src/Makefile.in, src/action.c, src/autoplace.c,
11829 src/autoroute.c, src/buffer.c, src/buffer.h, src/change.c,
11830 src/change.h, src/command.c, src/compat.c, src/const.h, src/copy.c,
11831 src/copy.h, src/create.c, src/crosshair.c, src/dev_ps.c,
11832 src/dev_ps.h, src/dev_rs274x.c, src/dev_rs274x.h, src/djopt.c,
11833 src/draw.c, src/drill.c, src/file.c, src/find.c, src/fontmode.c,
11834 src/global.h, src/hid.h, src/hid/batch/batch.c, src/hid/bom/bom.c,
11835 src/hid/common/extents.c, src/hid/common/hidnogui.c,
11836 src/hid/gerber/gerber.c, src/hid/gtk/gtkhid-main.c,
11837 src/hid/gtk/gui-pinout-window.c, src/hid/lesstif/main.c,
11838 src/hid/lpr/lpr.c, src/hid/png/png.c, src/hid/ps/eps.c,
11839 src/hid/ps/ps.c, src/insert.c, src/line.c, src/macro.h, src/main.c,
11840 src/mirror.c, src/misc.c, src/misc.h, src/move.c, src/mtspace.c,
11841 src/mymem.c, src/netlist.c, src/parse_y.y, src/polyarea.h,
11842 src/polygon.c, src/polygon.h, src/polygon1.c, src/print.c,
11843 src/puller.c, src/rats.c, src/remove.c, src/report.c, src/rotate.c,
11844 src/rtree.c, src/rubberband.c, src/search.c, src/search.h,
11845 src/select.c, src/strflags.c, src/thermal.c, src/thermal.h,
11846 src/undo.c, src/undo.h, src/vendor.c: Merge clipper branch back to
11849 2006-10-08 DJ Delorie * dj AT delorie dot com *
11851 * src/hid/common/hidinit.c: Add RTLD_GLOBAL.
11853 2006-10-07 Dan McMahill * dan AT mcmahill dot net *
11855 * src/hid/common/hidinit.c: add missing header for Message()
11856 prototype and remove an unused variable
11858 2006-10-07 Dan McMahill * dan AT mcmahill dot net *
11860 * src/hid.h: add missing hid_{load,save}_settings prototypes
11862 2006-10-06 DJ Delorie * dj AT delorie dot com *
11864 * src/hid/gtk/gui-dialog-print.c: Minor bug fix for exporter.
11866 2006-10-05 DJ Delorie * dj AT delorie dot com *
11868 * src/hid.h, src/hid/common/hidinit.c,
11869 src/hid/gtk/gui-dialog-print.c, src/hid/lesstif/dialogs.c,
11870 src/main.c: Add global "exporter" option.
11872 2006-10-02 DJ Delorie * dj AT delorie dot com *
11874 * doc/actions.texi, src/action.c, src/hid.h,
11875 src/hid/common/hidinit.c, src/main.c: Load settings from
11876 ./pcb.settings and ~/.pcb/settings. Add :savesettings action.
11878 2006-10-02 DJ Delorie * dj AT delorie dot com *
11880 * src/hid/common/hidinit.c: Remove debugging printf.
11882 2006-10-02 DJ Delorie * dj AT delorie dot com *
11884 * src/hid/common/hidinit.c: Fix plugin init function logic.
11886 2006-10-02 DJ Delorie * dj AT delorie dot com *
11888 * configure, configure.ac, src/hid.h, src/hid/batch/batch.c,
11889 src/hid/bom/bom.c, src/hid/common/extents.c,
11890 src/hid/common/hidinit.c, src/hid/common/hidnogui.c,
11891 src/hid/gerber/gerber.c, src/hid/gtk/gtkhid-main.c,
11892 src/hid/lesstif/main.c, src/hid/lpr/lpr.c, src/hid/png/png.c,
11893 src/hid/ps/eps.c, src/hid/ps/ps.c: Dynamically load plug-ins (hids,
11894 actions, etc) at runtime.
11896 2006-10-01 Dan McMahill * dan AT mcmahill dot net *
11898 * win32/build_pcb: extract the version from configure.ac instead of
11901 2006-10-01 DJ Delorie * dj AT delorie dot com *
11903 * src/hid/lesstif/menu.c: Fix off-by-one error.
11905 2006-10-01 Dan McMahill * dan AT mcmahill dot net *
11907 * config.h.in, configure, configure.ac: Check for popen(). So far
11908 nothing is done as a result of this.
11910 2006-10-01 Dan McMahill * dan AT mcmahill dot net *
11912 * win32/build_pcb: It should be "-mms-bitfields" instead of
11913 "--mms-bitfields". Noted by Cesar Strauss.
11915 2006-09-30 DJ Delorie * dj AT delorie dot com *
11917 * configure, configure.ac: Add -rdynamic when it's available.
11919 2006-09-30 DJ Delorie * dj AT delorie dot com *
11921 * src/todo: I did the one about separate ps files.
11923 2006-09-29 Dan McMahill * dan AT mcmahill dot net *
11925 * configure, configure.ac, win32/build_pcb: Move the gcc flags that
11926 cause builds under cygwin to produce non-cygwin binaries out of the
11927 configure script and into the script which is used to build a
11928 non-cygwin binary under cygwin. The end result should be the same for users who use
11929 ./win32/build_pcb but users who wish to compile a cygwin binary
11930 should be able to now. Adapated from patch #1567401 "Re-enabling the Cygwin port" by Cesar
11933 2006-09-27 Dan McMahill * dan AT mcmahill dot net *
11935 * doc/extract-docs: make this script more robust with respect to the
11936 formatting of the help and syntax strings. In particular, variable
11937 whitespace is now allowed in the "static const char" declaration and
11938 the string may not begin on the same line as the declaration. This
11939 allows the source code to run through indent(1) and still have the
11940 docs extracted properly.
11942 2006-09-26 Dan McMahill * dan AT mcmahill dot net *
11944 * configure, configure.ac: We don't directly need X stuff anymore
11945 unless we're using the lesstif HID so don't look for X except in
11946 that case. This avoids some issues seen on some systems which have
11947 older libraries in /usr/X11R6/lib (like freetype or fontconfig).
11949 2006-09-25 Dan McMahill * dan AT mcmahill dot net *
11951 * src/hid/lesstif/dialogs.c: use the unified "about" string.
11953 2006-09-25 Dan McMahill * dan AT mcmahill dot net *
11955 * src/mymem.c, src/mymem.h: const-ify DSAddString
11957 2006-09-25 Dan McMahill * dan AT mcmahill dot net *
11959 * src/hid/gtk/gui-dialog.c, src/misc.c, src/misc.h: Improve the gtk
11960 "about" dialog box output to explicitly list the HID's which have
11961 been compiled in. As part of this, pull out the code which
11962 generates the text of the dialog box into its own function so that
11963 it can be used by other HID's.
11965 2006-09-25 DJ Delorie * dj AT delorie dot com *
11967 * src/draw.c: A layer group that only contains a layer named
11968 "outline" or "route" will not have pins, pads, or vias drawn.
11970 2006-09-25 DJ Delorie * dj AT delorie dot com *
11972 * src/hid/common/flags.c: A layer group containing only an "outline"
11973 or "route" layer will be named "outline" when exported.
11975 2006-09-25 DJ Delorie * dj AT delorie dot com *
11977 * src/hid/gerber/gerber.c: Add a --verbose option to list gerber
11978 files as they're printed.
11980 2006-09-24 Dan McMahill * dan AT mcmahill dot net *
11982 * src/rats.c: When optimizing rats, if there are > 0 of them,
11983 display a message indicating how many. This way when the layout is
11984 not complete you see how far you have to go and also you see that
11985 the operation has done something.
11987 2006-09-24 DJ Delorie * dj AT delorie dot com *
11989 * src/draw.c: If Settings.RatThickness is less than 20, it's a pixel
11990 size, not a pcb size.
11992 2006-09-24 DJ Delorie * dj AT delorie dot com *
11994 * src/hid/lesstif/main.c: Display remaining rats in status bar.
11996 2006-09-24 DJ Delorie * dj AT delorie dot com *
11998 * src/hid/gtk/gui-output-events.c, src/hid/gtk/gui-top-window.c,
11999 src/search.h: Note pixel slop in gtk hid. Increase slop to 10
12002 2006-09-22 Dan McMahill * dan AT mcmahill dot net *
12004 * src/fontmode.c: add missing return value
12006 2006-09-22 Dan McMahill * dan AT mcmahill dot net *
12008 * src/create.c, src/file.c: remove some unused variables
12010 2006-09-22 DJ Delorie * dj AT delorie dot com *
12012 * src/buffer.c: Fix bug in poly point sorting for element
12015 2006-09-22 DJ Delorie * dj AT delorie dot com *
12017 * src/buffer.c: Allow rectangular polygons when converting a buffer
12020 2006-09-21 DJ Delorie * dj AT delorie dot com *
12022 * src/drill.c, src/mymem.c: Avoid attempts to realloc to zero bytes.
12024 2006-09-21 DJ Delorie * dj AT delorie dot com *
12026 * src/action.c: Fix undo for MinMaskGap()
12028 2006-09-21 DJ Delorie * dj AT delorie dot com *
12030 * doc/actions.texi, src/action.c: Add MinMaskGap() action.
12032 2006-09-20 DJ Delorie * dj AT delorie dot com *
12034 * src/hid/ps/ps.c: Add multi-file output option.
12036 2006-09-20 DJ Delorie * dj AT delorie dot com *
12038 * src/hid/common/flags.c, src/hid/gerber/gerber.c, src/hid/hidint.h:
12039 Break out layer->filename code. Fix bug in top/bottom detection.
12041 2006-09-14 Dan McMahill * dan AT mcmahill dot net *
12043 * src/hid/gerber/gerber.c: If the output file(s) can't be opened for
12044 writing then spit out an error message instead of segfaulting. The
12045 segfaults were noted in bug [ 1556894 ] "segfault when exporting to
12046 non-existing directory" reported by Stephan Boettcher.
12048 2006-09-13 DJ Delorie * dj AT delorie dot com *
12050 * src/draw.c: Draw the elements' marks.
12052 2006-09-13 Dan McMahill * dan AT mcmahill dot net *
12054 * lib/amp.inc, lib/amphenol.inc, lib/bga.inc, lib/bourns.inc,
12055 lib/connector.inc, lib/dil.inc, lib/gtag.m4, lib/johnstech.inc,
12056 lib/lsi.m4, lib/misc.inc, lib/pci.inc, lib/plcc.inc, lib/qfn.inc,
12057 lib/qfp.inc, lib/qfp2.inc, lib/qfpdj.inc, lib/resistor_adjust.inc,
12058 lib/to.inc, lib/zif.inc: quote the refdes parameter (name on board
12059 parameter) on the PKG_* macros. This prevents problems when a
12060 refdes matches the name of a macro and m4 expands it. Patch
12061 provided by Peter Clifton.
12063 2006-09-13 Dan McMahill * dan AT mcmahill dot net *
12065 * lib/to.inc: remove a ' in an output comment line which threw off a
12066 closing ) that broke the TO3_90 element.
12068 2006-09-13 DJ Delorie * dj AT delorie dot com *
12070 * src/hid/common/actions.c: * pcjc2 AT cam dot ac dot uk * Patch to
12071 fix bug #1553558, Stack corruption PCB bug in hid_parse_actions
12073 2006-09-04 Dan McMahill * dan AT mcmahill dot net *
12075 * configure, configure.ac, lib/Makefile.am, lib/Makefile.in,
12076 lib/m4lib_to_newlib.sh.in: Go ahead and let configure process the
12077 m4lib_to_newlib script. Also remove a couple of hardcoded paths in
12080 2006-09-03 Dan McMahill * dan AT mcmahill dot net *
12082 * lib/to.inc: Fix up the pads and drill sizes on the TO* packages.
12083 Based on patch [ 1108881 ] "Fix to m4 library hole sizes" by Walter
12084 Fetter Lages. I added comments containing the actual dimensions
12085 from the JEDEC drawings and comments about how the pad size and
12086 drill size were selected. Based on the JEDEC drawings I adjusted
12087 some of the drill and pad sizes. I did not change or examine pin
12088 locations, numbering, or silk.
12090 2006-09-03 Dan McMahill * dan AT mcmahill dot net *
12092 * lib/misc.inc: improve the drill sizes for several footprints.
12093 Changes provided by patch [ 1108881 ] "Fix to m4 library hole sizes"
12094 by Walter Fetter Lages.
12096 2006-09-02 Dan McMahill * dan AT mcmahill dot net *
12098 * src/hid/common/hidinit.c: ensure that derive_default_filename()
12099 always comes back with a valid string even when we don't have a name
12100 for the pcbfile. This fixes bug [ 1548756 ] "Segfault when
12101 exporting png files" reported by Werner Hoch.
12103 2006-09-01 Dan McMahill * dan AT mcmahill dot net *
12105 * lib/connector.inc: increase PKG_CONNECTOR and PKG_CONNECTOR_DIL
12106 hole size to something more reasonable.
12108 2006-09-01 Dan McMahill * dan AT mcmahill dot net *
12110 * lib/geda.inc: - remove the BRE* footprints. The required PKG_RECTANGULAR macro
12111 doesn't exist anywhere and I can't figure out what the correct
12112 behaviour should be anyway so rather than propagate a very
12113 questionable footprint name, kill it right here. - Fix the problem where the ACY*P and RCY*P packages called
12114 non-existant macros. They now produce the same footprints as the
12115 ACY* and RCY* packages but with a polarity marking. The suitability
12116 for any particular part number should be still verified before using
12119 2006-09-01 Dan McMahill * dan AT mcmahill dot net *
12121 * lib/misc.inc: expand the PKG_AXIAL_LAY and PKG_RADIAL_CAN macros
12122 to take an extra optional argument. When set to 1, this optional
12123 argument causes the part to have a "+" by pin 1 and "-" by pin 2.
12124 This was done instead of implementing the missing
12125 PKG_AXIAL_LAY_POLAR and PKG_RADIAL_CAN_POLAR macros.
12127 2006-09-01 Dan McMahill * dan AT mcmahill dot net *
12129 * lib/m4lib_to_newlib.sh.in: Rather than putting a huge list of
12130 footprints into one index file, break it out by library.
12132 2006-09-01 Dan McMahill * dan AT mcmahill dot net *
12134 * lib/geda.inc: remove unused PKG_DUMMY which did not do anything
12137 2006-09-01 Dan McMahill * dan AT mcmahill dot net *
12139 * lib/m4lib_to_newlib.sh.in: - put both the index.html file and the broken.html file in the
12140 output directory. - run pcb-bin from the src build directory to avoid complaints about
12141 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
12143 2006-09-01 DJ Delorie * dj AT delorie dot com *
12145 * src/action.c: Shift-click replaces element on pcb with element in
12148 2006-08-30 DJ Delorie * dj AT delorie dot com *
12150 * doc/actions.texi, doc/pcbfile.texi, doc/version.texi: Regenerate
12153 2006-08-30 DJ Delorie * dj AT delorie dot com *
12155 * src/parse_y.y: Doc typo.
12157 2006-08-30 DJ Delorie * dj AT delorie dot com *
12159 * src/copy.c: Copy attributes when copying element data.
12161 2006-08-30 DJ Delorie * dj AT delorie dot com *
12163 * src/create.c, src/create.h, src/file.c, src/global.h,
12164 src/parse_l.l, src/parse_y.y: Add arbitrary attributes to PCB and
12165 Element types. Ignore optional flags on Layer types.
12167 2006-08-30 DJ Delorie * dj AT delorie dot com *
12169 * src/draw.c: Remove obsolete comment.
12171 2006-08-29 Dan McMahill * dan AT mcmahill dot net *
12173 * lib/m4lib_to_newlib.sh.in: add the start of a m4lib to newlib
12176 2006-08-28 Dan McMahill * dan AT mcmahill dot net *
12178 * Makefile.in, README_FILES/Makefile.in, doc/Makefile.in,
12179 example/Makefile.in, example/libraries/Makefile.in,
12180 lib/Makefile.in, newlib/2_pin_thru-hole_packages/Makefile.in,
12181 newlib/Makefile.in, newlib/analog-devices/Makefile.in,
12182 newlib/burr-brown/Makefile.in, newlib/connectors/Makefile.in,
12183 newlib/crystal/Makefile.in, newlib/cypress/Makefile.in,
12184 newlib/electro-optics/Makefile.in,
12185 newlib/generic_SMD_packages/Makefile.in,
12186 newlib/headers/Makefile.in, newlib/msp430/Makefile.in,
12187 newlib/not_vetted_ingo/Makefile.in, newlib/sockets/Makefile.in,
12188 newlib/tests/Makefile.in, newlib/toko/Makefile.in, src/Makefile.in,
12189 src/icons/Makefile.in, src/script/Makefile.in, tools/Makefile.in,
12190 tutorial/Makefile.in, win32/Makefile.in: regen after the lex/yacc
12191 configure.ac change
12193 2006-08-27 DJ Delorie * dj AT delorie dot com *
12195 * src/hid/lesstif/main.c: Constrain arc start angles to -180..180
12198 2006-08-24 DJ Delorie * dj AT delorie dot com *
12200 * src/netlist.c: Fix rats enable/disable code.
12202 2006-08-23 Dan McMahill * dan AT mcmahill dot net *
12204 * configure, configure.ac: error out if yacc or lex could not be
12207 2006-08-23 Dan McMahill * dan AT mcmahill dot net *
12209 * doc/version.texi: bump rev after 20060822 branch
12211 2006-08-23 Dan McMahill * dan AT mcmahill dot net *
12213 * configure, configure.ac: bump rev after 20060822 branch
12215 2006-08-23 DJ Delorie * dj AT delorie dot com *
12217 * src/hid/ps/eps.c: When printing as-shown, mirror the image if
12218 we're viewing the solder side.
12220 2006-08-23 DJ Delorie * dj AT delorie dot com *
12222 * src/hid/ps/eps.c: Don't consider off layers for fast mask. Don't
12225 2006-08-22 DJ Delorie * dj AT delorie dot com *
12227 * src/hid/ps/eps.c: Don't print invisible silk.
12229 2006-08-22 Dan McMahill * dan AT mcmahill dot net *
12231 * README.snapshots: add a note about how I test the distcheck target
12232 for the lesstif HID
12234 2006-08-22 DJ Delorie * dj AT delorie dot com *
12236 * src/find.c: Special case: allow vias with exactly zero clearance.
12238 2006-08-22 Dan McMahill * dan AT mcmahill dot net *
12240 * ChangeLog, NEWS, README.snapshots: update for 20060822 snapshot
12242 2006-08-22 DJ Delorie * dj AT delorie dot com *
12244 * src/hid/lesstif/main.c: fill_rect needs the same point-ordering as
12247 2006-08-22 DJ Delorie * dj AT delorie dot com *
12249 * src/change.c: Allow via clearance to be reduced to zero.
12251 2006-08-22 DJ Delorie * dj AT delorie dot com *
12253 * src/draw.c: If a pad/via's clearance is zero, don't attempt to
12254 draw a zero-width clear.
12256 2006-08-21 DJ Delorie * dj AT delorie dot com *
12258 * src/main.c: Add default colors for layers 9..16
12260 2006-08-21 DJ Delorie * dj AT delorie dot com *
12262 * src/file.c: post-initialize PCBs loaded from files.
12264 2006-08-21 DJ Delorie * dj AT delorie dot com *
12266 * src/pcb-menu.res: Let right-mouse do "rotate" for now.
12268 2006-08-21 DJ Delorie * dj AT delorie dot com *
12270 * src/search.c, src/todo: Don't let search find backsilk if
12271 invisible objects are off.
12273 2006-08-21 DJ Delorie * dj AT delorie dot com *
12275 * src/draw.c: Draw via annulii on assembly drawings.
12277 2006-08-18 Dan McMahill * dan AT mcmahill dot net *
12279 * configure, doc/actions.texi, doc/pcbfile.texi: regen
12281 2006-08-18 Dan McMahill * dan AT mcmahill dot net *
12283 * src/action.c, src/global.h, src/undo.c, src/undo.h: add a
12284 Renumber() action which renumbers reference designators and outputs
12285 a "was/is" sort of file which can be used for back annotation if
12286 someone writes a utility to apply those changes to a schematic. For now Renumber() is still considered somewhat experimental and
12287 hence is not hooked up to the menus yet.
12289 2006-08-15 DJ Delorie * dj AT delorie dot com *
12291 * configure, configure.ac: Add X_CFLAGS to CFLAGS so that Xm/Xm.h
12294 2006-08-15 Dan McMahill * dan AT mcmahill dot net *
12296 * src/hid/ps/ps.c: add header for a missing prototype
12298 2006-08-15 Dan McMahill * dan AT mcmahill dot net *
12300 * src/action.c: Apply patch from patch [ 1496742 ] Make 'a' key
12301 (SetSame) work again submitted by Wim Lewis.
12303 2006-08-14 Dan McMahill * dan AT mcmahill dot net *
12305 * configure, configure.ac: when pkg-config fails to find the desired
12306 version of gtk or glib, then print the pkg-config output as part of
12307 the error message. Suggested in bug # 1507555 by Mark Whitis.
12309 2006-08-14 Dan McMahill * dan AT mcmahill dot net *
12311 * lib/geda.inc: use 0.01 mm instead of 0.05 mm for the roundoff for
12312 01005 footprints because they are so small. This bumps the gap
12313 between pads just over 6 mils instead of just under 6 mils.
12315 2006-08-11 Dan McMahill * dan AT mcmahill dot net *
12317 * src/hid/lpr/lpr.c: Fix bug [ 1534098 ] Segmentation fault in GTK
12318 print dialog reported by Mark Rages. Symptom was changing the lpr
12319 command in the gtk dialog box gave an instant crash.
12321 2006-08-10 Dan McMahill * dan AT mcmahill dot net *
12323 * src/Makefile.am, src/Makefile.in: add hid/batch/batch_lists.h to
12326 2006-08-10 Dan McMahill * dan AT mcmahill dot net *
12328 * lib/geda.inc: Add 01005 footprints.
12330 2006-08-04 Dan McMahill * dan AT mcmahill dot net *
12332 * src/copy.c: Remove extra calls to Draw(). This greatly speeds up
12333 copy operations. This is especially true when pasting large blocks
12334 of layout. Patch supplied by Tibor Palinkas as patch #1532922.
12336 2006-08-03 DJ Delorie * dj AT delorie dot com *
12338 * src/Makefile.am, src/Makefile.in, src/fontmode.c: Add font editing
12339 mode (FontEdit() and FontSave())
12341 2006-08-03 DJ Delorie * dj AT delorie dot com *
12343 * src/file.c: Use the old style (mil) syntax when saving font info,
12344 if the values permit it, for readability and to save file space.
12346 2006-08-03 DJ Delorie * dj AT delorie dot com *
12348 * src/action.c: Allow New() to take a name, so that the user need
12349 not be prompted during scripts and such.
12351 2006-08-03 DJ Delorie * dj AT delorie dot com *
12353 * src/move.c: When deleting a layer, make sure to zero out the
12354 now-unused slot at the end.
12356 2006-08-02 Dan McMahill * dan AT mcmahill dot net *
12358 * configure, configure.ac: After running PATH_XTRA and checking for
12359 various X libs (Xpm, etc), we need to use $X_LIBS as part of LIBS in
12360 subsequent library tests or we'll have a failure. This should
12361 address some issues noted recently on one of the gEDA lists and
12362 configuring with lesstif and the png HID's.
12364 2006-08-02 DJ Delorie * dj AT delorie dot com *
12366 * src/Pcb.ad.in, src/Pcb.ad.raw, src/Pcb.ad.small, src/action.c,
12367 src/autoroute.c, src/buffer.c, src/create.c, src/crosshair.c,
12368 src/data.c, src/dev_rs274x.c, src/djopt.c, src/draw.c, src/error.c,
12369 src/file.c, src/find.c, src/hid/gtk/gtkhid-main.c,
12370 src/hid/lesstif/main.c, src/line.c, src/misc.c, src/mtspace.h,
12371 src/mymem.c, src/netlist.c, src/output.c, src/parse_l.l,
12372 src/parse_y.y, src/polygon.c, src/puller.c, src/rats.c,
12373 src/rtree.c, src/rubberband.c, src/search.c, src/select.c,
12374 src/undo.c: spelling fixes from Larry.
12376 2006-08-02 DJ Delorie * dj AT delorie dot com *
12378 * src/hid/ps/ps.c, src/print.c, src/print.h: When the drill list
12379 fits "naturally", no offset is added, which makes me happy. When
12380 the drill list would otherwise fall off the left edge of the paper,
12381 just enough offset is added to keep that from happening.
12383 2006-08-02 DJ Delorie * dj AT delorie dot com *
12385 * src/hid/lesstif/netlist.c: Allow extended selections.
12387 2006-08-01 Dan McMahill * dan AT mcmahill dot net *
12389 * README.cvs: - Note that automake-1.7 and older are too old. - Add a pointer to the README.snapshot document
12391 2006-07-26 DJ Delorie * dj AT delorie dot com *
12393 * src/file.c: Enable loaded netlists by default.
12395 2006-07-26 DJ Delorie * dj AT delorie dot com *
12397 * src/hid/lesstif/lesstif.h, src/hid/lesstif/main.c,
12398 src/hid/lesstif/menu.c, src/pcb-menu.res: Add the ability to
12399 user-configure mouse actions.
12401 2006-07-24 DJ Delorie * dj AT delorie dot com *
12403 * src/hid/lesstif/lesstif.h, src/hid/lesstif/main.c,
12404 src/hid/lesstif/menu.c: Add support for multi-key hotkeys, via
12405 <Keys>abc syntax for a/b/c sequence.
12407 2006-07-23 DJ Delorie * dj AT delorie dot com *
12409 * src/hid/lesstif/dialogs.c: use "top" and "bottom" to describe the
12410 side flags, instead of using "solder" and "component", which are
12411 common layer names.
12413 2006-07-20 Harry Eaton * haceaton AT users dot sourceforge dot net *
12415 * src/autoroute.c, src/mtspace.c, src/rtree.c: Various improvements
12416 to speed up auto-routing. Mainly optimizing the r-tree searching
12419 ----------------------------------------------------------------------
12421 2006-07-14 DJ Delorie * dj AT delorie dot com *
12423 * src/crosshair.c, src/hid/gtk/gtkhid-main.c,
12424 src/hid/lesstif/main.c: Fix draw_rect vs board flipping bug.
12426 2006-07-14 DJ Delorie * dj AT delorie dot com *
12428 * src/autoplace.c, src/djopt.c, src/main.c, src/move.c, src/mymem.c:
12429 Minor patches from Larry.
12431 2006-07-13 Harry Eaton * haceaton AT users dot sourceforge dot net *
12433 * src/autoroute.c, src/rats.c: fix some autorouter bugs and improve
12434 ability to round around non-manhattan lines
12436 ----------------------------------------------------------------------
12438 2006-07-10 Dan McMahill * dan AT mcmahill dot net *
12440 * src/Makefile.am, src/Makefile.in: remove circular dependency which
12441 breaks non-GNU make programs.
12443 2006-07-08 Dan McMahill * dan AT mcmahill dot net *
12445 * INSTALL: summarize the dependencies for building pcb
12447 2006-07-08 Dan McMahill * dan AT mcmahill dot net *
12449 * INSTALL: fix a typo
12451 2006-07-08 Dan McMahill * dan AT mcmahill dot net *
12453 * README: remove some redundant and out of date notes
12455 2006-07-07 DJ Delorie * dj AT delorie dot com *
12457 * src/misc.c: Fix minor rounding bug in c_dtostr().
12459 2006-07-07 DJ Delorie * dj AT delorie dot com *
12461 * src/misc.c: Fix layer group parsing code. Avoid trailing colon in
12464 2006-07-04 Dan McMahill * dan AT mcmahill dot net *
12466 * src/hid/bom/bom.c, src/hid/common/hidinit.c,
12467 src/hid/gerber/gerber.c, src/hid/gtk/gui-top-window.c,
12468 src/hid/hidint.h, src/hid/png/png.c, src/hid/ps/eps.c,
12469 src/hid/ps/ps.c: Apply a patch from Larry Doolittle. Refactors filename handling code common to the file export HIDs
12470 (bom, gerber, png, eps, ps). The png code had one feature (last_made_filename) that was missing
12471 in the others. This refactoring brings all the HIDs to feature
12472 parity, which lets pcb -x bom --bomfile=foo.txt bar.pcb work as expected. The old code ignores the command line flag, and
12473 writes the bom to bar.bom. Likewise for .xy, .gbr, .eps, and .ps
12474 files. Also fixes a couple of spelling errors.
12476 2006-07-04 Dan McMahill * dan AT mcmahill dot net *
12478 * doc/actions.texi, doc/pcbfile.texi, src/Makefile.in,
12479 src/action.c, src/create.c, src/dev_rs274x.c, src/drill.c,
12480 src/file.c, src/find.c, src/mymem.c, src/mymem.h, src/parse_l.l,
12481 src/rats.c, src/remove.c, src/undo.c: Apply a patch from Larry
12482 Doolittle that switches from the MyFree() function to the new
12483 MYFREE() macro to avoid strict aliasing violations.
12485 2006-06-26 DJ Delorie * dj AT delorie dot com *
12487 * src/djopt.c: Don't delete vias with thermals. Try to split
12488 diagonal lines at pins and vias.
12490 2006-06-25 DJ Delorie * dj AT delorie dot com *
12492 * src/todo: MoveLayers cleanup tasks - thermals, pips, undo
12494 2006-06-22 Dan McMahill * dan AT mcmahill dot net *
12496 * README.cvs: add a comment about needing the png HID for building
12499 2006-06-21 DJ Delorie * dj AT delorie dot com *
12501 * src/hid/lesstif/main.c: Account for board flipping when zooming.
12503 2006-06-11 DJ Delorie * dj AT delorie dot com *
12505 * src/action.c: Remove obsolete ActionSwapSides()
12507 2006-06-11 DJ Delorie * dj AT delorie dot com *
12509 * src/hid/lesstif/main.c, src/pcb-menu.res: Merge lesstif's Flip()
12510 action into SwapSides to avoid conflict with core Flip().
12512 2006-06-11 DJ Delorie * dj AT delorie dot com *
12514 * src/hid/lesstif/menu.c: Print actions called when verbose.
12516 2006-06-10 DJ Delorie * dj AT delorie dot com *
12518 * globalconst.h, src/action.c, src/autoplace.c, src/autoroute.c,
12519 src/buffer.c, src/copy.c, src/create.c, src/create.h,
12520 src/crosshair.c, src/data.h, src/djopt.c, src/draw.c, src/file.c,
12521 src/find.c, src/global.h, src/hid/common/extents.c,
12522 src/hid/common/flags.c, src/hid/gerber/gerber.c,
12523 src/hid/gtk/gtkhid-main.c, src/hid/gtk/gui-config.c,
12524 src/hid/gtk/gui-top-window.c, src/hid/gtk/gui.h,
12525 src/hid/lesstif/dialogs.c, src/hid/lesstif/main.c,
12526 src/hid/lesstif/menu.c, src/hid/png/png.c, src/hid/ps/eps.c,
12527 src/hid/ps/ps.c, src/line.c, src/macro.h, src/main.c, src/misc.c,
12528 src/misc.h, src/move.c, src/move.h, src/parse_y.y,
12529 src/pcb-menu.res, src/polygon.c, src/print.c, src/rats.c,
12530 src/rtree.c, src/rubberband.c, src/search.c, src/undo.c, src/undo.h:
12531 flexible max_layers
12533 2006-06-09 DJ Delorie * dj AT delorie dot com *
12535 * src/hid/lesstif/main.c: Compensate for board flipping in the
12538 2006-06-06 DJ Delorie * dj AT delorie dot com *
12540 * src/hid/gerber/gerber.c: Fix rounding bug when collecting drill
12543 2006-06-03 DJ Delorie * dj AT delorie dot com *
12545 * src/djopt.c: Fix logic a bit, don't try to move pins.
12547 2006-06-03 DJ Delorie * dj AT delorie dot com *
12549 * src/pcb-menu.res: Syntax fix for DisperseElements()
12551 2006-05-29 DJ Delorie * dj AT delorie dot com *
12553 * src/todo: Remove lesstif board flipping item.
12555 2006-05-29 DJ Delorie * dj AT delorie dot com *
12557 * src/hid/lesstif/main.c, src/pcb-menu.res: Add Flip action, both
12558 vertical and horizontal.
12560 2006-05-29 DJ Delorie * dj AT delorie dot com *
12562 * src/djopt.c: Adjust endpoints of lines that don't quite reach
12565 2006-05-21 DJ Delorie * dj AT delorie dot com *
12567 * src/hid/lesstif/menu.c, src/report.c: Report on locked objects if
12568 there are no unlocked objects under the cursor. Save the cursor
12569 position even if we don't initially need it, in case we call an
12572 2006-05-21 DJ Delorie * dj AT delorie dot com *
12574 * src/hid/gerber/gerber.c: Reset layer value cache before we
12575 shortcut for counting apertures.
12577 2006-05-20 DJ Delorie * dj AT delorie dot com *
12579 * src/draw.c, src/hid.h, src/hid/common/extents.c,
12580 src/hid/gerber/gerber.c, src/hid/gtk/gtkhid-main.c,
12581 src/hid/lesstif/main.c, src/hid/png/png.c, src/hid/ps/eps.c,
12582 src/hid/ps/ps.c: Split plated and unplated drills in gerber output.
12584 2006-05-20 DJ Delorie * dj AT delorie dot com *
12586 * src/hid/gerber/gerber.c: Name internal gerber layers sanely.
12588 2006-05-20 DJ Delorie * dj AT delorie dot com *
12590 * src/hid/gerber/gerber.c: Change gerber names to be compatible with
12593 2006-05-20 DJ Delorie * dj AT delorie dot com *
12595 * src/const.h, src/search.c: Ignore locked objects unless
12596 LOCKED_TYPE is passed (lock tool).
12598 2006-05-16 Dan McMahill * dan AT mcmahill dot net *
12600 * configure, configure.ac: add the batch HID to the list of gui HIDs
12603 2006-05-15 DJ Delorie * dj AT delorie dot com *
12605 * src/hid/gtk/gui-top-window.c: Fig typo in ChangeDrillSize menu.
12607 2006-05-15 DJ Delorie * dj AT delorie dot com *
12609 * src/hid/batch/batch.c: Fix test for interactiveness.
12611 2006-05-15 DJ Delorie * dj AT delorie dot com *
12613 * src/Makefile.am, src/Makefile.in, src/hid/batch/batch.c,
12614 src/hid/batch/hid.conf: Add batch-mode HID.
12616 2006-05-14 DJ Delorie * dj AT delorie dot com *
12618 * src/crosshair.c: Fix drawing of box around text items in buffer.
12620 2006-05-14 DJ Delorie * dj AT delorie dot com *
12622 * src/draw.c: Add support for drawing/exporting paste layers.
12624 2006-05-01 Dan McMahill * dan AT mcmahill dot net *
12626 * doc/actions.texi, doc/version.texi, src/action.c: add Message()
12629 2006-04-30 Dan McMahill * dan AT mcmahill dot net *
12631 * src/buffer.c: fix a bug where mirroring a buffer with only traces
12632 triggered the "can't mirror a buffer with text" if there was text
12633 anywhere in the layout. Patch provided as part of bug #1467446.
12635 2006-04-29 Bill Wilson * billw2 AT users dot sourceforge dot net *
12637 * src/hid/gtk/gtkhid-main.c, src/hid/gtk/gui-dialog.c,
12638 src/hid/gtk/gui-top-window.c: Update status line after menu Save
12639 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
12642 2006-04-29 Bill Wilson * billw2 AT users dot sourceforge dot net *
12644 * src/hid/gtk/gui-output-events.c, src/hid/gtk/gui-utils.c: Couple
12645 of small typo bugs: a missing "break" and needed -1 arg to size
12648 2006-04-28 Dan McMahill * dan AT mcmahill dot net *
12650 * src/action.c: prevent segfaults when trying to undo in the middle
12651 of drawing ratlines. Problem noted by Daniel Wisehart, fixed by me.
12653 2006-04-28 DJ Delorie * dj AT delorie dot com *
12655 * src/file.c, src/misc.c, src/misc.h, src/parse_l.l: Use
12656 locale-independent strtod and dtostr functions.
12658 2006-04-27 Dan McMahill * dan AT mcmahill dot net *
12660 * config.h.in: regen
12662 2006-04-27 Dan McMahill * dan AT mcmahill dot net *
12664 * INSTALL: minor updates, mention gd-2.0.23 as having been used
12666 2006-04-27 Dan McMahill * dan AT mcmahill dot net *
12668 * configure, configure.ac: if gdlib-config is not found, try and
12669 just check for -lgd on the off chance that it works. The user in
12670 this case may have to add things like -lpng to their LDFLAGS
12671 variable in the environment or just update to a newer version of
12672 gdlib. gdlib-config has been around for at least a few years
12675 2006-04-26 Dan McMahill * dan AT mcmahill dot net *
12677 * README_FILES/Makefile.in: remove obsolete README file
12679 2006-04-26 Dan McMahill * dan AT mcmahill dot net *
12681 * INSTALL: bring the install docs up to date
12683 2006-04-26 Dan McMahill * dan AT mcmahill dot net *
12685 * README-GTK_PORT, README_FILES/INSTALL, README_FILES/Makefile.am,
12686 README_FILES/Makefile.in: remove obsolete README file
12688 2006-04-25 Dan McMahill * dan AT mcmahill dot net *
12690 * configure, configure.ac: complain if the png HID has been
12691 requested but all formats disabled
12693 2006-04-24 Dan McMahill * dan AT mcmahill dot net *
12695 * src/hid/gtk/gui-top-window.c: do not crash if the input pipe
12696 terminates when using --listen
12698 2006-04-24 Dan McMahill * dan AT mcmahill dot net *
12700 * src/hid/lesstif/main.c: remove a debugging printf
12702 2006-04-24 DJ Delorie * dj AT delorie dot com *
12704 * src/global.h: Comment tweak.
12706 2006-04-24 DJ Delorie * dj AT delorie dot com *
12708 * src/global.h: Define on-board objects in terms of base types.
12710 2006-04-23 Dan McMahill * dan AT mcmahill dot net *
12712 * src/buffer.c: when smashing the pastebuffer, don't set the pure
12713 hole flag on the vias unless is was set on the original pin.
12714 Reported by Levente Kovacs on geda-user.
12716 2006-04-23 Dan McMahill * dan AT mcmahill dot net *
12718 * doc/pcb.texi: update newlib creation section for the latest GTK
12719 HID. Addresses bug 1473640.
12721 2006-04-22 Dan McMahill * dan AT mcmahill dot net *
12723 * NEWS: add 20060422 release notes
12725 2006-04-22 Dan McMahill * dan AT mcmahill dot net *
12727 * README.snapshots: update for 20060422
12729 2006-04-22 Dan McMahill * dan AT mcmahill dot net *
12731 * ChangeLog: update for 20060422 snapshot
12733 2006-04-21 Dan McMahill * dan AT mcmahill dot net *
12735 * src/hid/gtk/gui-config.c: Comment out locale.h since the code
12736 which needed that was also commented out. Fixes builds on solaris
12737 with sunpro and the gtk HID.
12739 2006-04-21 Dan McMahill * dan AT mcmahill dot net *
12741 * src/macro.h: protect some GNU C specific stuff with #ifdef
12744 2006-04-21 Dan McMahill * dan AT mcmahill dot net *
12746 * src/hid/gtk/gui-utils.c: change from NONE_PRESSED to
12747 NO_BUTTON_PRESSED since the former is not part of the ButtonState
12748 enum while the latter is.
12750 2006-04-21 Dan McMahill * dan AT mcmahill dot net *
12752 * src/hid/lesstif/main.c: comment out with #if 0 the code related to
12753 lesstif_options and lesstif_resources since those were both empty.
12754 With this change pcb should build correctly on 64-bit Irix-6.5 with
12755 version 7.41 of the MIPSpro compilers. There are still a handful of
12756 compiler warnings to investigate.
12758 2006-04-20 DJ Delorie * dj AT delorie dot com *
12760 * doc/actions.texi, src/hid.h, src/hid/common/actions.c,
12761 src/hid/lesstif/dialogs.c, src/hid/lesstif/library.c,
12762 src/hid/lesstif/main.c, src/hid/lesstif/menu.c,
12763 src/hid/lesstif/netlist.c, src/hid/lesstif/styles.c: Document
12764 lesstif hid actions.
12766 2006-04-20 Dan McMahill * dan AT mcmahill dot net *
12768 * src/box.h, src/find.c: rely on the autoconf test for inline
12769 instead of using our own based on __GNUC__. This will let other
12770 non-gcc C99 compilers take advantage of inline.
12772 2006-04-19 Dan McMahill * dan AT mcmahill dot net *
12774 * config.h.in, configure, configure.ac, doc/actions.texi,
12775 doc/version.texi, src/Makefile.am, src/Makefile.in, src/djopt.c,
12776 src/draw.c, src/file.c, src/flags.c, src/hid/lesstif/dialogs.c,
12777 src/hid/lesstif/library.c, src/hid/lesstif/main.c,
12778 src/hid/lesstif/menu.c, src/hid/lesstif/netlist.c,
12779 src/hid/lesstif/styles.c, src/hid/lesstif/xincludes.h, src/misc.c,
12780 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
12781 compiler. - move the X11 includes into a header where they can be included in
12782 a way which keeps them from messing up the namespace of the rest of pcb. Fixes some obscure warnings from sunpro.
12784 2006-04-19 Dan McMahill * dan AT mcmahill dot net *
12786 * src/hid/png/png.c: get this to properly link when --disable-gif is
12787 used and the installed libgd does not have gif support.
12789 2006-04-19 DJ Delorie * dj AT delorie dot com *
12791 * src/hid/ps/ps.c: Add --psfade option.
12793 2006-04-18 Bill Wilson * billw2 AT users dot sourceforge dot net *
12795 * src/command.c, src/data.c: Clean out Gtk HID related FIXMEs
12797 2006-04-18 Bill Wilson * billw2 AT users dot sourceforge dot net *
12799 * src/draw.c: Clean out Gtk HID related FIXMEs. Also old background
12800 image code which is now done in the Gtk and Lesstif HIDs.
12802 2006-04-18 Bill Wilson * billw2 AT users dot sourceforge dot net *
12804 * src/main.c, src/set.c: Clean out FIXMEs specific to the Gtk HID.
12806 2006-04-18 Bill Wilson * billw2 AT users dot sourceforge dot net *
12808 * src/misc.c, src/misc.h: Remove Gtk HID specific
12809 build_route_string() function.
12811 2006-04-18 Bill Wilson * billw2 AT users dot sourceforge dot net *
12813 * src/hid/gtk/gui-config.c, src/hid/gtk/gui-dialog-size.c,
12814 src/hid/gtk/gui-top-window.c: Fix route style "Save as default" bug. Update status line when new route style selected.
12816 2006-04-17 DJ Delorie * dj AT delorie dot com *
12818 * doc/actions.texi, doc/extract-docs, doc/pcb.texi,
12819 doc/pcbfile.texi, doc/version.texi, src/const.h, src/hid.h,
12820 src/hid/common/actions.c, src/hid/lesstif/main.c, src/parse_y.y:
12821 Remove all the prev-next-up links, reformat all the texi files to
12822 allow for automatic structure generation. Add helper hooks in the
12823 extractor to let the source files control what types of nodes and
12824 document structure is used for each category. Auto-create nodes and
12825 document substructure for each key within each category.
12827 2006-04-17 Bill Wilson * billw2 AT users dot sourceforge dot net *
12829 * src/hid/gtk/gui-config.c, src/hid/gtk/gui-top-window.c,
12830 src/hid/gtk/gui-utils.c, src/hid/gtk/gui.h: For the Gtk HID, add an
12831 alternate vertical window layout mode to help on lower vertical
12832 resolution displays.
12834 2006-04-17 DJ Delorie * dj AT delorie dot com *
12836 * src/netlist.c: Include sys/types.h so that regex compiles on more
12839 2006-04-16 Bill Wilson * billw2 AT users dot sourceforge dot net *
12841 * src/hid/gtk/gtkhid-main.c, src/hid/gtk/gui-command-window.c,
12842 src/hid/gtk/gui-keyref-window.c, src/hid/gtk/gui-library-window.c,
12843 src/hid/gtk/gui-log-window.c, src/hid/gtk/gui-netlist-window.c,
12844 src/hid/gtk/gui-top-window.c, src/hid/gtk/gui.h: Fix soldermask draw
12845 while TAB view from solder side. Don't raise windows if already shown so library & netlist window
12846 won't grab focus. Focus can still be grabbed if an already shown
12847 window is reshown via the top menu bar. Not sure yet how to handle
12850 2006-04-16 Dan McMahill * dan AT mcmahill dot net *
12852 * src/hid/png/png.c: switch the output scaling to default to 100 dpi
12853 instead of fixing the max dimension at 800 pixels. This at makes
12854 the default be a sort of to scale (for 100 dpi monitors it will be
12857 2006-04-15 DJ Delorie * dj AT delorie dot com *
12859 * doc/actions.texi, src/report.c: Document actions in report.c.
12861 2006-04-15 DJ Delorie * dj AT delorie dot com *
12863 * doc/Makefile.am, doc/Makefile.in, doc/actions.texi,
12864 doc/puller.pcb, doc/version.texi, src/puller.c: Document the puller
12867 2006-04-15 Bill Wilson * billw2 AT users dot sourceforge dot net *
12869 * src/hid/gtk/gui-output-events.c: Make ghid_get_coords() x value
12870 account for side viewed (when using TAB).
12872 2006-04-14 Bill Wilson * billw2 AT users dot sourceforge dot net *
12874 * src/hid/gtk/gtkhid-main.c, src/hid/gtk/gui-top-window.c,
12875 src/hid/gtk/gui.h: Support --bg-image in the Gtk HID. Images can be
12876 jpg, png, gif, etc. as supported by the Gdk installation. Zooming gets slow at higher zoom levels, but I can address that
12877 later when I have more time.
12879 2006-04-14 DJ Delorie * dj AT delorie dot com *
12881 * src/global.h: Make sure the Message and return are in the same
12884 2006-04-14 Dan McMahill * dan AT mcmahill dot net *
12886 * src/hid/gtk/gui-top-window.c: make sure we set the default icon
12887 _before_ any windows are created
12889 2006-04-14 Dan McMahill * dan AT mcmahill dot net *
12891 * configure, configure.ac: bump rev after 20060414 branch
12893 2006-04-14 Dan McMahill * dan AT mcmahill dot net *
12895 * NEWS: 20060414 release notes
12897 2006-04-14 Dan McMahill * dan AT mcmahill dot net *
12899 * ChangeLog: update for 20060414 snapshot
12901 2006-04-14 Dan McMahill * dan AT mcmahill dot net *
12903 * README.snapshots: update the instructions a bit
12905 2006-04-14 Dan McMahill * dan AT mcmahill dot net *
12907 * doc/actions.texi: regen
12909 2006-04-14 Dan McMahill * dan AT mcmahill dot net *
12911 * Makefile.am, Makefile.in: fix a distcheck problem
12913 2006-04-14 DJ Delorie * dj AT delorie dot com *
12915 * src/hid/lesstif/main.c: Add --bg-image option to lesstif hid to
12916 load a background image.
12918 2006-04-13 Dan McMahill * dan AT mcmahill dot net *
12920 * src/hid/gtk/gui-top-window.c: on win32, figure out the path to the
12921 installed package so we can set the newlib directory.
12923 2006-04-13 Dan McMahill * dan AT mcmahill dot net *
12925 * src/hid/gtk/gtkhid-main.c: add missing return value
12927 2006-04-13 Dan McMahill * dan AT mcmahill dot net *
12929 * src/compat.c: add a (lame) random() replacement
12931 2006-04-13 Dan McMahill * dan AT mcmahill dot net *
12933 * src/autoplace.c, src/strflags.c: add compat.h header for missing
12936 2006-04-13 Dan McMahill * dan AT mcmahill dot net *
12938 * Makefile.am, Makefile.in, README.win32: add a win32 README file
12940 2006-04-13 Dan McMahill * dan AT mcmahill dot net *
12942 * src/Makefile.am, src/Makefile.in: add a dependency on the icon
12943 resource object if this is win32
12945 2006-04-13 Dan McMahill * dan AT mcmahill dot net *
12947 * win32/Makefile.in: add missing file
12949 2006-04-13 Dan McMahill * dan AT mcmahill dot net *
12951 * : add generated icon file
12953 2006-04-13 Dan McMahill * dan AT mcmahill dot net *
12955 * Makefile.am, Makefile.in: add win32 to SUBDIRS
12957 2006-04-13 Dan McMahill * dan AT mcmahill dot net *
12959 * win32/Makefile.am, win32/Xdefaults.tgif: add a tgif Xdefaults file
12960 needed for generating the correct XPM version
12962 2006-04-13 Dan McMahill * dan AT mcmahill dot net *
12964 * win32/pcb_icon_big.obj, win32/pcb_icon_med.obj,
12965 win32/pcb_icon_sml.obj: replace wcalc icons with placeholder pcb
12968 2006-04-13 Dan McMahill * dan AT mcmahill dot net *
12970 * Makefile.in, README_FILES/Makefile.in, configure, configure.ac,
12971 doc/Makefile.in, example/Makefile.in,
12972 example/libraries/Makefile.in, lib/Makefile.in,
12973 newlib/2_pin_thru-hole_packages/Makefile.in, newlib/Makefile.in,
12974 newlib/analog-devices/Makefile.in, newlib/burr-brown/Makefile.in,
12975 newlib/connectors/Makefile.in, newlib/crystal/Makefile.in,
12976 newlib/cypress/Makefile.in, newlib/electro-optics/Makefile.in,
12977 newlib/generic_SMD_packages/Makefile.in,
12978 newlib/headers/Makefile.in, newlib/msp430/Makefile.in,
12979 newlib/not_vetted_ingo/Makefile.in, newlib/sockets/Makefile.in,
12980 newlib/tests/Makefile.in, newlib/toko/Makefile.in, src/Makefile.am,
12981 src/Makefile.in, src/icons/Makefile.in, src/script/Makefile.in,
12982 tools/Makefile.in, tutorial/Makefile.in: check for a few tools used
12983 to regenerate windows icons
12985 2006-04-13 Dan McMahill * dan AT mcmahill dot net *
12987 * src/error.c, src/file.c, src/find.c, src/main.c, src/misc.c,
12988 win32/build_pcb: add a few more checks to let this build under
12991 2006-04-13 Dan McMahill * dan AT mcmahill dot net *
12993 * config.h.in, configure, configure.ac: check for getcwd()
12995 2006-04-13 Dan McMahill * dan AT mcmahill dot net *
12997 * src/hid/gtk/pcb.rc: add windres file for win32 icons
12999 2006-04-13 Dan McMahill * dan AT mcmahill dot net *
13001 * config.h.in, configure, configure.ac: one more header check
13003 2006-04-13 Dan McMahill * dan AT mcmahill dot net *
13005 * config.guess, config.sub: add some new configure related files
13007 2006-04-13 Dan McMahill * dan AT mcmahill dot net *
13009 * src/Makefile.am, src/Makefile.in: add stuff to compile in icons
13012 2006-04-13 Dan McMahill * dan AT mcmahill dot net *
13014 * Makefile.in, README_FILES/Makefile.in, config.h.in, configure,
13015 configure.ac, doc/Makefile.in, example/Makefile.in,
13016 example/libraries/Makefile.in, lib/Makefile.in,
13017 newlib/2_pin_thru-hole_packages/Makefile.in, newlib/Makefile.in,
13018 newlib/analog-devices/Makefile.in, newlib/burr-brown/Makefile.in,
13019 newlib/connectors/Makefile.in, newlib/crystal/Makefile.in,
13020 newlib/cypress/Makefile.in, newlib/electro-optics/Makefile.in,
13021 newlib/generic_SMD_packages/Makefile.in,
13022 newlib/headers/Makefile.in, newlib/msp430/Makefile.in,
13023 newlib/not_vetted_ingo/Makefile.in, newlib/sockets/Makefile.in,
13024 newlib/tests/Makefile.in, newlib/toko/Makefile.in, src/Makefile.in,
13025 src/compat.c, src/compat.h, src/file.c, src/hid/gerber/gerber.c,
13026 src/icons/Makefile.in, src/misc.c, src/print.c,
13027 src/script/Makefile.in, tools/Makefile.in, tutorial/Makefile.in: Add
13028 a couple more configure checks for functions (gethostname and
13029 password related functions) and headers which may not be present on
13030 win32. This should be enough to get things to compile under cygwin
13031 although there are still runtime issues.
13033 2006-04-12 Dan McMahill * dan AT mcmahill dot net *
13035 * win32/Makefile.am, win32/Readme.txt, win32/build_pcb,
13036 win32/pcb.nsi.in, win32/pcb_icon_big.obj, win32/pcb_icon_med.obj,
13037 win32/pcb_icon_sml.obj: Add some stuff to help build under win32.
13038 Note: win32 support is not finished and PCB does not yet work
13039 correctly under win32, but this is some progress.
13041 2006-04-12 Dan McMahill * dan AT mcmahill dot net *
13043 * src/error.c, src/error.h, src/hid.h, src/hid/common/hidnogui.c,
13044 src/hid/gtk/gui-log-window.c, src/hid/gtk/gui.h,
13045 src/hid/lesstif/dialogs.c, src/hid/lesstif/main.c: const-ify the log
13048 2006-04-12 Dan McMahill * dan AT mcmahill dot net *
13050 * src/hid/gtk/gtkhid-main.c: add the About action
13052 2006-04-12 Dan McMahill * dan AT mcmahill dot net *
13054 * src/action.c, src/global.h, src/vendor.c: use AFAIL() when an
13055 action fails due to a syntax error
13057 2006-04-12 DJ Delorie * dj AT delorie dot com *
13059 * src/hid/ps/eps.c: Determine when we need to use the complex erase
13060 logic, and when we can just paint white. Painting white is a LOT
13061 faster, and avoids rasterization in ps2pdf.
13063 2006-04-12 Dan McMahill * dan AT mcmahill dot net *
13065 * doc/version.texi: add thermals to glossary
13067 2006-04-12 Dan McMahill * dan AT mcmahill dot net *
13069 * doc/pcb.texi: add thermal to the glossary
13071 2006-04-12 Dan McMahill * dan AT mcmahill dot net *
13073 * doc/Makefile.am, doc/Makefile.in: increase resolution of PDFs of
13074 drawings. 72dpi looked pretty bad on the thermal drawing
13076 2006-04-12 Dan McMahill * dan AT mcmahill dot net *
13078 * doc/Makefile.am, doc/Makefile.in: add thermal drawing
13080 2006-04-12 Dan McMahill * dan AT mcmahill dot net *
13082 * doc/thermal.pcb: change name of board
13084 2006-04-12 Dan McMahill * dan AT mcmahill dot net *
13086 * doc/thermal.pcb: add a drawing showing what a thermal relief looks
13089 2006-04-12 Dan McMahill * dan AT mcmahill dot net *
13091 * doc/database.txt, doc/ideas/database.txt, doc/ideas/keepouts.txt,
13092 doc/keepouts.txt: move these to an ideas subdirectory to hopefully
13093 more clearly indicate that not only are these not implemented yet
13094 but that they are not even certain to ever be implemented.
13096 2006-04-12 DJ Delorie * dj AT delorie dot com *
13098 * doc/actions.texi, doc/version.texi, src/netlist.c: Document
13099 actions in netlist.c
13101 2006-04-12 Dan McMahill * dan AT mcmahill dot net *
13103 * doc/actions.texi, src/action.c: add support for units and relative
13104 coordinates in PasteBuffer(ToLayout)
13106 2006-04-12 Dan McMahill * dan AT mcmahill dot net *
13108 * doc/database.txt, doc/keepouts.txt: add two documents in progress
13109 describing a plan for future work
13111 2006-04-11 Dan McMahill * dan AT mcmahill dot net *
13113 * doc/actions.texi, src/action.c, src/global.h: Add a "ToLayout"
13114 option for the PasteBuffer() action. You can now do things like
13115 PasteBuffer(ToLayout, 10000, 200000) to paste from the current
13116 buffer Also add a DumpLibrary() action.
13118 2006-04-11 DJ Delorie * dj AT delorie dot com *
13120 * doc/actions.texi, doc/extract-docs, src/action.c, src/command.c:
13121 Document actions in command.c.
13123 2006-04-11 Dan McMahill * dan AT mcmahill dot net *
13125 * lib/crystal.list, lib/crystal.m4, lib/generic.list,
13126 lib/generic.m4, lib/resistor_0.25W.list, lib/resistor_array.list,
13127 lib/texas_inst_voltage_reg.m4, lib/transistor.m4: - add a missing description and move some footprints from the wrong
13128 .list file to the correct .list file to be able to pick up the
13129 descriptions and parameters from the corresponding .m4 file. - all of the m4 libs should at least be correct in the sense that
13130 the pieces are all there and they all run through m4 correctly.
13131 They have not been verified any more for correctness, but this is
13134 2006-04-11 DJ Delorie * dj AT delorie dot com *
13136 * src/print.c, src/report.c: Print correct symbol counts for drills
13139 2006-04-11 Dan McMahill * dan AT mcmahill dot net *
13141 * Makefile.in, README_FILES/Makefile.in, example/Makefile.in,
13142 example/libraries/Makefile.in, lib/Makefile.in,
13143 newlib/2_pin_thru-hole_packages/Makefile.in, newlib/Makefile.in,
13144 newlib/analog-devices/Makefile.in, newlib/burr-brown/Makefile.in,
13145 newlib/connectors/Makefile.in, newlib/crystal/Makefile.in,
13146 newlib/cypress/Makefile.in, newlib/electro-optics/Makefile.in,
13147 newlib/generic_SMD_packages/Makefile.in,
13148 newlib/headers/Makefile.in, newlib/msp430/Makefile.in,
13149 newlib/not_vetted_ingo/Makefile.in, newlib/sockets/Makefile.in,
13150 newlib/tests/Makefile.in, newlib/toko/Makefile.in, src/Makefile.in,
13151 src/icons/Makefile.in, src/script/Makefile.in, tools/Makefile.in,
13152 tutorial/Makefile.in: regen (after checking for perl)
13154 2006-04-11 Dan McMahill * dan AT mcmahill dot net *
13156 * doc/actions.texi, doc/version.texi, src/action.c, src/select.c,
13157 src/select.h: - for the Select(*ByName) action, allow a 2nd argument to specify
13158 the name and only use the gui dialog box if the 2nd argument is not
13159 specified. - Add *ByName options for the Unselect() action.
13161 2006-04-11 Dan McMahill * dan AT mcmahill dot net *
13163 * src/hid/gtk/gtkhid-main.c: garbage collect some printf output
13165 2006-04-11 Dan McMahill * dan AT mcmahill dot net *
13167 * src/hid/gtk/gui-top-window.c: Fix bug [ 1462380 ] saving buffer
13168 elemnts to file does nothing.
13170 2006-04-11 Dan McMahill * dan AT mcmahill dot net *
13172 * configure, configure.ac, doc/Makefile.am, doc/Makefile.in: When
13173 building docs, look for a perl to use. This will let the user set
13174 PERL in their environment and have configure pick it up.
13176 2006-04-11 Harry Eaton * haceaton AT users dot sourceforge dot net *
13178 * src/find.c: turn off debugging by default
13180 ----------------------------------------------------------------------
13182 2006-04-11 Harry Eaton * haceaton AT users dot sourceforge dot net *
13184 * src/find.c: fixed list overflow with element connection listing
13186 ----------------------------------------------------------------------
13188 2006-04-11 Harry Eaton * haceaton AT users dot sourceforge dot net *
13190 * src/find.c: added overflow error reporting to the ADD* routines
13192 ----------------------------------------------------------------------
13194 2006-04-10 Harry Eaton * haceaton AT users dot sourceforge dot net *
13196 * src/find.c: fixed bug using in LookupLOConnectionsToPVList where
13197 the wrong variable was used.
13199 ----------------------------------------------------------------------
13201 2006-04-10 DJ Delorie * dj AT delorie dot com *
13203 * doc/actions.texi, doc/version.texi, src/action.c: Document the
13204 rest of the registered actions in action.c.
13206 2006-04-06 Dan McMahill * dan AT mcmahill dot net *
13208 * src/find.c: move some initializations inside a loop so they don't
13211 2006-04-06 Dan McMahill * dan AT mcmahill dot net *
13213 * src/main.c: declare dump_actions() right before using it
13215 2006-04-06 Dan McMahill * dan AT mcmahill dot net *
13217 * src/hid/png/png.c: add some missing const-s
13219 2006-04-06 Bill Wilson * billw2 AT users dot sourceforge dot net *
13221 * src/hid/gtk/gui-top-window.c: mode_button_toggled_cb() didn't sync
13222 ghidgui->settings_mode with current mode button state.
13224 2006-04-06 Dan McMahill * dan AT mcmahill dot net *
13226 * src/hid/gtk/gui-top-window.c: revert the previous, this part
13227 wasn't quite right.
13229 2006-04-05 Dan McMahill * dan AT mcmahill dot net *
13231 * src/mymem.c, src/mymem.h: add a MyMalloc to go along with MyCalloc
13233 2006-04-05 Bill Wilson * billw2 AT users dot sourceforge dot net *
13235 * src/hid/gtk/gui-netlist-window.c, src/hid/gtk/gui.h: Fix netlist
13236 window to scroll to net/node when user lookups connection.
13238 2006-04-05 Dan McMahill * dan AT mcmahill dot net *
13240 * 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,
13241 thermal, lock, etc modes. - in line, poly, arc, etc. modes, the first ESC press returns you to
13242 "tool neutral" and the 2nd ESC press returns you to the arrow tool.
13244 2006-04-05 Dan McMahill * dan AT mcmahill dot net *
13246 * src/hid/gtk/gui-dialog.c, src/hid/lesstif/dialogs.c: add pointer
13247 to the geda homepage and wiki as well as the pcb home page in the
13250 2006-04-05 Dan McMahill * dan AT mcmahill dot net *
13252 * src/hid/gtk/gui-dialog-print.c: fix a bug which prevented the
13253 File->Export menu from working more than once in a pcb session.
13255 2006-04-05 DJ Delorie * dj AT delorie dot com *
13257 * src/action.c, src/djopt.c, src/hid.h, src/hid/common/actions.c,
13258 src/hid/gtk/gtkhid-main.c, src/hid/lesstif/dialogs.c,
13259 src/hid/lesstif/main.c, src/main.c, src/vendor.c: Initial chunk of
13260 inline action docs.
13262 2006-04-05 DJ Delorie * dj AT delorie dot com *
13264 * doc/Makefile.am, doc/Makefile.in, doc/actions.texi,
13265 doc/extract-docs, doc/pcb.texi, doc/version.texi: Fix eps->pdf rule
13266 to set size and resolution right. Limit pcb->* to visible areas.
13267 Add support for action extraction from sources.
13269 2006-04-05 Dan McMahill * dan AT mcmahill dot net *
13271 * src/script/Makefile.am, src/script/Makefile.in,
13272 src/script/pcb-print: remove the pcb-print script. It is obsolete
13273 now that the HID version directly supports command line export/print
13274 through the export HID's.
13276 2006-04-05 Harry Eaton * haceaton AT users dot sourceforge dot net *
13278 * src/find.c: Expand search box during bloat in case the box overlap
13279 would otherwise prevent checking. This repairs a really bad bug
13280 introduced when the rtrees were used to speed the find tracing.
13282 ----------------------------------------------------------------------
13284 2006-04-05 Harry Eaton * haceaton AT users dot sourceforge dot net *
13286 * src/misc.c: fixed pin/via bounding box to include thermal tails;
13289 ----------------------------------------------------------------------
13291 2006-04-05 Dan McMahill * dan AT mcmahill dot net *
13293 * src/hid/gtk/gui.h: Be a bit more careful with rouding issues when
13294 converting to pcb units. Hopefully this will help with the issue
13295 reported on the geda lists about 23.99 mil vias when the user
13296 thought they picked 24 mil ones. Patch posted on geda-user by DJ.
13298 2006-04-05 Dan McMahill * dan AT mcmahill dot net *
13300 * config.h.in, configure, configure.ac, src/hid/png/png.c: check to
13301 see which graphic file formats are supported by the installed GD.
13302 If the desired list is not found, abort and tell the user they can
13303 explicitly disable certain file types. Should deal with installed
13304 versions of gd which do not support GIF output.
13306 2006-04-05 Dan McMahill * dan AT mcmahill dot net *
13308 * src/hid/lesstif/styles.c: fix a prototype
13310 2006-03-28 Dan McMahill * dan AT mcmahill dot net *
13312 * src/dolists.h, src/hid/lesstif/dialogs.c, src/hid/lesstif/main.c,
13313 src/hid/lesstif/menu.c, src/hid/lesstif/styles.c: move variable
13314 declarations to the beginning of blocks to make gcc-2.95 and
13315 probably other non-gcc compilers happy.
13317 2006-03-28 Dan McMahill * dan AT mcmahill dot net *
13319 * src/find.c: Check to make sure a pointer is not NULL before
13320 dereferencing it. This seems to be the place where the segfault was
13321 happening sometimes when saving connection data. For now, spit out
13322 a warning message because I think there may be some other underlying
13323 bug which causes the NULL pointer in the first place.
13325 2006-03-28 Dan McMahill * dan AT mcmahill dot net *
13327 * src/mymem.h: do not redefine malloc if we are using dmalloc
13329 2006-03-28 Dan McMahill * dan AT mcmahill dot net *
13331 * src/action.c, src/autoplace.c, src/autoroute.c, src/buffer.c,
13332 src/change.c, src/command.c, src/crosshair.c, src/djopt.c,
13333 src/draw.c, src/error.c, src/file.c, src/insert.c, src/intersect.c,
13334 src/line.c, src/main.c, src/misc.c, src/mtspace.c, src/netlist.c,
13335 src/output.c, src/print.c, src/puller.c, src/report.c,
13336 src/res_parse.y, src/rtree.c, src/select.c, src/set.c,
13337 src/strflags.c, src/vector.c, src/vendor.c: put back dmalloc support
13339 2006-03-28 DJ Delorie * dj AT delorie dot com *
13341 * src/action.c, src/find.c, src/hid/gtk/gtkhid-main.c,
13342 src/hid/gtk/gui-misc.c, src/hid/gtk/gui-output-events.c,
13343 src/hid/gtk/gui-top-window.c, src/hid/lesstif/dialogs.c,
13344 src/hid/lesstif/library.c, src/hid/lesstif/main.c,
13345 src/hid/lesstif/netlist.c, src/main.c, src/set.c: hid_actionl must
13346 be terminated with NULL, not a plain 0, in case integers and
13347 pointers are different sizes.
13349 2006-03-28 Dan McMahill * dan AT mcmahill dot net *
13351 * src/hid/gtk/gui-top-window.c: access djopt_set_auto_only() via the
13352 associated action instead of directly
13354 2006-03-28 Dan McMahill * dan AT mcmahill dot net *
13356 * src/djopt.c, src/djopt.h: fix prototype for an action. kills one
13357 more compiler warning
13359 2006-03-28 Dan McMahill * dan AT mcmahill dot net *
13361 * src/hid/lesstif/main.c: add a missing typecase
13363 2006-03-27 Dan McMahill * dan AT mcmahill dot net *
13365 * 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
13366 selected arcs to. - Add a SelectedArcs option to the ChangeSize action.
13368 2006-03-27 Dan McMahill * dan AT mcmahill dot net *
13370 * src/select.c: Fix a bug where actions using SelectedPads did
13371 nothing and SelectedPins picked up both pins and pads. Noted by bug
13374 2006-03-27 Dan McMahill * dan AT mcmahill dot net *
13376 * src/strflags.c: avoid allocating 0 bytes
13378 2006-03-27 Dan McMahill * dan AT mcmahill dot net *
13380 * src/misc.c: fix a typo in a comment
13382 2006-03-27 Dan McMahill * dan AT mcmahill dot net *
13384 * src/main.c: No need to use strdup(Concat()) as Concat already
13385 gives us allocated memory that is not referenced anywhere else.
13387 2006-03-27 Dan McMahill * dan AT mcmahill dot net *
13389 * src/file.c: Fix an off by one overflow of a malloc'ed buffer.
13390 Found with ElectricFence.
13392 2006-03-27 Dan McMahill * dan AT mcmahill dot net *
13394 * src/misc.c: in a function which is supposed to return a string but
13395 is commented out with #ifdef FIXME, return a big warning string
13396 rather than no return value until I/we figure out how to fix it.
13397 Hopefully if this triggers bugs it will be easier to locate.
13399 2006-03-27 Dan McMahill * dan AT mcmahill dot net *
13401 * configure, configure.ac: add back in the --enable-efence and
13402 --enable-dmalloc configure flags to turn on ElectricFence and
13403 dmalloc debugging respectively.
13405 2006-03-27 DJ Delorie * dj AT delorie dot com *
13407 * src/action.c, src/command.c, src/djopt.c, src/hid.h,
13408 src/hid/common/actions.c, src/hid/gtk/gtkhid-main.c,
13409 src/hid/gtk/gui-netlist-window.c, src/hid/gtk/gui-top-window.c,
13410 src/hid/lesstif/dialogs.c, src/hid/lesstif/library.c,
13411 src/hid/lesstif/main.c, src/hid/lesstif/menu.c,
13412 src/hid/lesstif/netlist.c, src/hid/lesstif/styles.c, src/netlist.c,
13413 src/puller.c, src/report.c, src/vendor.c: hid actions: remove
13414 needs_coords, use need_coord_msg to determine when to get coords.
13416 2006-03-27 Dan McMahill * dan AT mcmahill dot net *
13418 * src/hid/gtk/gui-top-window.c, src/hid/gtk/gui-utils.c: Make sure
13419 we initialize some variables before using them. Fixes a segfault on
13420 startup problem noted on NetBSD/alpha when displaying to an 8-bit
13423 2006-03-27 Bill Wilson * billw2 AT users dot sourceforge dot net *
13425 * src/hid/gtk/gtkhid-main.c: I wrapped too much into the verbose
13426 option so the file load stopped working - fixed.
13428 2006-03-26 Dan McMahill * dan AT mcmahill dot net *
13430 * configure, configure.ac: bump the rev letter to help identify this
13431 as the HID version if someone pulls up the "about" dialog box.
13433 2006-03-26 Dan McMahill * dan AT mcmahill dot net *
13435 * src/hid/gtk/gtkhid-main.c: - Remove a debug printf which tried to print a NULL string. Avoids
13436 a segfault bug. - When chosing "Save Layout" on a new layout (that hadn't already
13437 been given a name or filename), correctly use the new file name that
13438 is selected with the dialog box.
13440 2006-03-26 Dan McMahill * dan AT mcmahill dot net *
13442 * src/hid/lesstif/dialogs.c: - remove a debug printf which was trying to print a NULL string.
13443 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.
13445 2006-03-26 Dan McMahill * dan AT mcmahill dot net *
13447 * src/hid/lesstif/main.c: add a --listen option for the lesstif HID
13448 too (works the same as the gtk one -- listens on stdin for actions).
13450 2006-03-26 Bill Wilson * billw2 AT users dot sourceforge dot net *
13452 * src/hid/gtk/gui-netlist-window.c, src/hid/gtk/gui-output-events.c:
13453 Pan to a netlist window selected node if it's not visible. Fix a pan bug.
13455 2006-03-25 Dan McMahill * dan AT mcmahill dot net *
13457 * src/hid/gtk/gui-netlist-window.c: add cast to avoid compiler
13460 2006-03-25 DJ Delorie * dj AT delorie dot com *
13462 * src/action.c, src/hid/gtk/gui-top-window.c, src/pcb-menu.res: Add
13465 2006-03-25 Bill Wilson * billw2 AT users dot sourceforge dot net *
13467 * src/hid/gtk/gtkhid-main.c, src/hid/gtk/gui-netlist-window.c: Turn
13468 of Disable all nets button when NetlistChanged. Make some diagnostic output only if verbose.
13470 2006-03-25 Bill Wilson * billw2 AT users dot sourceforge dot net *
13472 * src/hid/gtk/gui-netlist-window.c: Set netlist nodes enabled by
13473 default when NetlistChanged.
13475 2006-03-25 Bill Wilson * billw2 AT users dot sourceforge dot net *
13477 * src/hid/gtk/gtkhid-main.c: Fix draw arc when flipped.
13479 2006-03-25 Dan McMahill * dan AT mcmahill dot net *
13481 * doc/actions.texi, doc/fractional_size.texi, doc/letter_size.texi,
13482 doc/metric_size.texi, doc/overview.texi, doc/pcbfile.texi,
13483 doc/wire_size.texi: add some of the generated files to see if that
13484 will help with those who don't read the README.cvs file...
13486 2006-03-25 Dan McMahill * dan AT mcmahill dot net *
13488 * src/hid/gtk/gui-top-window.c: use fileno(stdin) instead of 1 to
13489 get the stdin file descriptor.
13491 2006-03-25 Dan McMahill * dan AT mcmahill dot net *
13493 * src/drill.c: fix a segfault when printing a board with no drill
13496 2006-03-25 Dan McMahill * dan AT mcmahill dot net *
13498 * src/hid/gtk/gui-top-window.c: add a --listen option which causes
13499 pcb to listen on the standard input for actions. This should open
13500 the door to experimenting with having gschem interact directly with
13503 2006-03-25 Dan McMahill * dan AT mcmahill dot net *
13505 * src/hid/gtk/gui-config.c: Fix a bug in options parsing where the
13506 loop looking for matches continued after a match had already been
13509 2006-03-25 Dan McMahill * dan AT mcmahill dot net *
13511 * src/main.c: add a help string for --lib-newlib
13513 2006-03-25 Dan McMahill * dan AT mcmahill dot net *
13515 * doc/Makefile.am, doc/Makefile.in: minor cleanup of status output
13517 2006-03-24 DJ Delorie * dj AT delorie dot com *
13519 * src/hid/lesstif/menu.c: Also look for ~/.pcb/pcb-menu.res.
13520 Actually use the path we found ;-)
13522 2006-03-24 Dan McMahill * dan AT mcmahill dot net *
13524 * configure, configure.ac: List the available HID's in the
13525 ./configure --help output. Ideally, we'd have the help text be
13526 automatic, but until we figure out how, just statically list the HID
13529 2006-03-24 Dan McMahill * dan AT mcmahill dot net *
13531 * Makefile.in, README_FILES/Makefile.in, config.h.in, configure,
13532 doc/Makefile.in, example/Makefile.in,
13533 example/libraries/Makefile.in, lib/Makefile.in,
13534 newlib/2_pin_thru-hole_packages/Makefile.in, newlib/Makefile.in,
13535 newlib/analog-devices/Makefile.in, newlib/burr-brown/Makefile.in,
13536 newlib/connectors/Makefile.in, newlib/crystal/Makefile.in,
13537 newlib/cypress/Makefile.in, newlib/electro-optics/Makefile.in,
13538 newlib/generic_SMD_packages/Makefile.in,
13539 newlib/headers/Makefile.in, newlib/msp430/Makefile.in,
13540 newlib/not_vetted_ingo/Makefile.in, newlib/sockets/Makefile.in,
13541 newlib/tests/Makefile.in, newlib/toko/Makefile.in, src/Makefile.in,
13542 src/icons/Makefile.in, src/script/Makefile.in, tools/Makefile.in,
13543 tutorial/Makefile.in: regen
13545 2006-03-24 Dan McMahill * dan AT mcmahill dot net *
13547 * Makefile.am, README.cvs, configure.ac, doc/Makefile.am: - when not in maintainer mode, do not list all the dependencies for
13548 the manual. This allows regular users who are building from a
13549 tarball to avoid having to rebuild the manual and lets them simply
13550 take the preformatted one. This avoids recently noted issues with
13551 incompatibility with older versions of texinfo which seem somewhat
13552 common. It also removes the requirement for having latex installed
13553 and for building the png HID for pcb. - add a --disable-doc flag which allows users who are building from
13554 CVS to skip the doc directory and thus avoid the need for the
13555 documentation formatting tools.
13557 2006-03-24 Dan McMahill * dan AT mcmahill dot net *
13559 * README.snapshots: note the DISTCHECK_CONFIGURE_FLAGS variable
13561 2006-03-24 Bill Wilson * billw2 AT users dot sourceforge dot net *
13563 * src/hid/gtk/gui-top-window.c: Fix gtk magenta color messages ->
13564 initialize all new hidGC colornames to Settings.BackgroundColor
13565 because bgGC color outside of ghid_expose_callback() is never
13566 initialized and it's used to draw outside of the callback when an
13567 object is selected.
13569 2006-03-24 Dan McMahill * dan AT mcmahill dot net *
13571 * doc/Makefile.am, doc/Makefile.in: Fix the calculation of the names
13572 of the generated .texi tables for the drill sizes.
13574 2006-03-24 Dan McMahill * dan AT mcmahill dot net *
13576 * Makefile.in, README_FILES/Makefile.in, aclocal.m4,
13577 doc/Makefile.in, doc/pad.eps, example/Makefile.in,
13578 example/libraries/Makefile.in, lib/Makefile.in,
13579 newlib/2_pin_thru-hole_packages/Makefile.in, newlib/Makefile.in,
13580 newlib/analog-devices/Makefile.in, newlib/burr-brown/Makefile.in,
13581 newlib/connectors/Makefile.in, newlib/crystal/Makefile.in,
13582 newlib/cypress/Makefile.in, newlib/electro-optics/Makefile.in,
13583 newlib/generic_SMD_packages/Makefile.in,
13584 newlib/headers/Makefile.in, newlib/msp430/Makefile.in,
13585 newlib/not_vetted_ingo/Makefile.in, newlib/sockets/Makefile.in,
13586 newlib/tests/Makefile.in, newlib/toko/Makefile.in,
13587 src/icons/Makefile.in, src/script/Makefile.in, tools/Makefile.in,
13588 tutorial/Makefile.in: regen after configure.ac changes
13590 2006-03-24 Dan McMahill * dan AT mcmahill dot net *
13592 * autogen.sh: don't automatically run ./configure. Simplifies
13593 things a bit when trying to have several different builds share the
13596 2006-03-24 Dan McMahill * dan AT mcmahill dot net *
13598 * doc/extract-docs: put the generated files in the build directory
13599 instead of the source directory (in case they are not the same)
13601 2006-03-24 Dan McMahill * dan AT mcmahill dot net *
13603 * doc/Makefile.am, doc/Makefile.in: Rework the dependencies on the
13604 various generated files a bit to hopefully correctly include all
13605 dependencies. Also allow this to continue and just use the shipped
13606 preformatted docs in the case where latex and friends are not
13609 2006-03-24 Dan McMahill * dan AT mcmahill dot net *
13611 * src/pcbtest.sh.in: correctly find the font file correctly find the
13612 m4lib stuff when building outside the source tree.
13614 2006-03-24 Dan McMahill * dan AT mcmahill dot net *
13616 * configure, configure.ac, lib/ListLibraryContents.sh,
13617 lib/ListLibraryContents.sh.in: move ListLibraryContents.sh to being
13618 something created at configure time like the rest of the m4lib
13619 stuff. This puts it in the build directory and allows you to run
13620 pcb out of the build directory prior to installation even in the
13621 case of a read only source tree. While here add some
13622 AM_CONDITIONALS to indicate when latex and friends are not available
13623 for formating the reference card.
13625 2006-03-24 Dan McMahill * dan AT mcmahill dot net *
13627 * src/Makefile.am, src/Makefile.in: add missing lesstif header to
13628 get it in the distfile
13630 2006-03-23 Dan McMahill * dan AT mcmahill dot net *
13632 * src/hid/png/png.c: fix a bug when specifying the output file name
13634 2006-03-23 Dan McMahill * dan AT mcmahill dot net *
13636 * src/pcbtest.sh.in: also set the font path
13638 2006-03-23 Dan McMahill * dan AT mcmahill dot net *
13640 * src/pcbtest.sh.in: fix a couple of paths when building outside the
13643 2006-03-23 Dan McMahill * dan AT mcmahill dot net *
13645 * src/hid/lesstif/main.c, src/hid/lesstif/menu.c: avoid some
13646 compiler warnings on solaris-2.9/sparc (gcc-3.3.5)
13648 2006-03-23 Dan McMahill * dan AT mcmahill dot net *
13650 * src/hid/lesstif/main.c: check the result of the --install options
13651 _after_ the options have been processed. Thanks to DJ for finding
13654 2006-03-23 DJ Delorie * dj AT delorie dot com *
13656 * src/Makefile.am, src/Makefile.in: Change the way we handle built
13659 2006-03-23 Dan McMahill * dan AT mcmahill dot net *
13661 * src/strflags.c: avoid some compiler warnings on solaris-2.9/sparc
13664 2006-03-23 Bill Wilson * billw2 AT users dot sourceforge dot net *
13666 * src/hid/gtk/gui-config.c, src/hid/gtk/gui-top-window.c:
13667 ghid_invalidate_all() when colors change.
13669 2006-03-23 Dan McMahill * dan AT mcmahill dot net *
13671 * src/hid/common/actions.c, src/misc.c, src/mymem.c: avoid some
13672 compiler warnings on solaris-2.9/sparc (gcc-3.3.5)
13674 2006-03-23 Bill Wilson * billw2 AT users dot sourceforge dot net *
13676 * src/hid/gtk/gtkhid-main.c, src/hid/gtk/gui-output-events.c: Fix a
13679 2006-03-23 Dan McMahill * dan AT mcmahill dot net *
13681 * src/file.c: avoid some complier warnings on solaris-2.9/sparc
13684 2006-03-23 DJ Delorie * dj AT delorie dot com *
13686 * src/drill.c, src/drill.h, src/hid/gerber/gerber.c, src/print.c:
13687 Round drill sizes to nearest mil for fab drawings and gerber drill
13690 2006-03-23 DJ Delorie * dj AT delorie dot com *
13692 * src/mtspace.c: Avoid aliasing problems.
13694 2006-03-23 Dan McMahill * dan AT mcmahill dot net *
13696 * src/pcbtest.sh.in: add some missing arguments when running in gdb
13698 2006-03-23 Dan McMahill * dan AT mcmahill dot net *
13700 * src/main.c: don't include the full path for the default value of
13701 the LibraryCommand and LibraryContentsCommand. That prevented
13702 --lib-command-dir from working.
13704 2006-03-23 DJ Delorie * dj AT delorie dot com *
13706 * src/undo.c: Use void * pointers to avoid aliasing problems.
13708 2006-03-23 DJ Delorie * dj AT delorie dot com *
13710 * src/search.c: Use explicit void** pointers to avoid aliasing
13713 2006-03-23 DJ Delorie * dj AT delorie dot com *
13715 * src/hid/gerber/gerber.c, src/hid/lesstif/dialogs.c,
13716 src/hid/lesstif/lesstif.h, src/hid/lesstif/main.c,
13717 src/hid/lesstif/menu.c, src/hid/lesstif/netlist.c,
13718 src/hid/lesstif/styles.c: Misc bugfixes and changes, to silence
13721 2006-03-23 DJ Delorie * dj AT delorie dot com *
13723 * src/mymem.c, src/mymem.h: MyCalloc, MyRealloc, MyStrdup: make
13724 final parameter (tag string) const, to avoid compiler warnings.
13726 2006-03-23 Dan McMahill * dan AT mcmahill dot net *
13728 * src/action.c: fix the ChangeFlag action (compiler warning pointed
13731 2006-03-23 Dan McMahill * dan AT mcmahill dot net *
13733 * src/Makefile.am, src/Makefile.in: quote the regexp passed to grep
13734 to keep solaris-2.9 happy
13736 2006-03-23 DJ Delorie * dj AT delorie dot com *
13738 * src/hid/lesstif/main.c: Don't try to run the idle proc until the
13741 2006-03-23 Dan McMahill * dan AT mcmahill dot net *
13743 * src/action.c, src/command.c, src/djopt.c, src/dolists.h,
13744 src/flags.c, src/hid.h, src/hid/gtk/gtkhid-main.c,
13745 src/hid/gtk/gui-netlist-window.c, src/hid/gtk/gui-top-window.c,
13746 src/hid/lesstif/dialogs.c, src/hid/lesstif/library.c,
13747 src/hid/lesstif/main.c, src/hid/lesstif/netlist.c,
13748 src/hid/lesstif/styles.c, src/hid/png/png.c, src/hid/ps/eps.c,
13749 src/hid/ps/ps.c, src/main.c, src/netlist.c, src/puller.c,
13750 src/report.c, src/vendor.c: Revert the ";" thing. The REGISTER_*
13751 macros now contain ";" where needed and a ";" should not be used
13752 when the macros are called. This is because the REGISTER_* macros
13753 in hid.h expand to a function like int foo(){/* code here */} where
13754 no ";" should be used at the end. gcc ignores the resulting empty
13755 declaration but the sunpro c compiler doesn't like it.
13757 2006-03-22 Dan McMahill * dan AT mcmahill dot net *
13759 * src/action.c, src/action.h, src/actionlist.c, src/autoplace.c,
13760 src/autoplace.h, src/autoroute.c, src/autoroute.h, src/box.h,
13761 src/buffer.c, src/buffer.h, src/change.c, src/change.h, src/clip.c,
13762 src/clip.h, src/command.c, src/command.h, src/compat.c,
13763 src/compat.h, src/const.h, src/copy.c, src/copy.h, src/create.c,
13764 src/create.h, src/crosshair.c, src/crosshair.h, src/data.c,
13765 src/data.h, src/dev_ps.c, src/dev_ps.h, src/dev_rs274x.c,
13766 src/dev_rs274x.h, src/djopt.c, src/djopt.h, src/dolists.h,
13767 src/draw.c, src/draw.h, src/drill.c, src/drill.h, src/error.c,
13768 src/error.h, src/file.c, src/file.h, src/find.c, src/find.h,
13769 src/flags.c, src/global.h, src/heap.c, src/heap.h, src/hid.h,
13770 src/hid/hidint.h, src/hid/lesstif/dialogs.c,
13771 src/hid/lesstif/lesstif.h, src/hid/lesstif/library.c,
13772 src/hid/lesstif/main.c, src/hid/lesstif/menu.c,
13773 src/hid/lesstif/netlist.c, src/hid/lesstif/styles.c,
13774 src/hid/lpr/lpr.c, src/hid/png/png.c, src/hid/png/png.h,
13775 src/hid/ps/eps.c, src/hid/ps/ps.c, src/hid/ps/ps.h,
13776 src/icons/Makefile.in, src/insert.c, src/insert.h, src/intersect.c,
13777 src/intersect.h, src/line.c, src/macro.h, src/main.c, src/mirror.c,
13778 src/mirror.h, src/misc.c, src/misc.h, src/move.c, src/move.h,
13779 src/mtspace.c, src/mtspace.h, src/mymem.c, src/mymem.h,
13780 src/netlist.c, src/output.c, src/output.h, src/parse_l.h,
13781 src/polygon.c, src/polygon.h, src/print.c, src/print.h,
13782 src/puller.c, src/rats.c, src/rats.h, src/remove.h, src/report.c,
13783 src/resource.h, src/rotate.c, src/rotate.h, src/rtree.c,
13784 src/rtree.h, src/rubberband.c, src/rubberband.h,
13785 src/script/Makefile.in, src/search.c, src/search.h, src/select.c,
13786 src/select.h, src/set.c, src/set.h, src/strflags.c, src/strflags.h,
13787 src/undo.c, src/undo.h, src/vector.c, src/vector.h, src/vendor.c,
13788 src/vendor.h: indent
13790 2006-03-22 Dan McMahill * dan AT mcmahill dot net *
13792 * src/hid/bom/bom.c, src/hid/common/actions.c,
13793 src/hid/common/extents.c, src/hid/common/flags.c,
13794 src/hid/common/hidinit.c, src/hid/common/hidnogui.c,
13795 src/hid/gerber/gerber.c, src/hid/gtk/gtkhid-main.c,
13796 src/hid/gtk/gtkhid.h, src/hid/gtk/gui-command-window.c,
13797 src/hid/gtk/gui-config.c, src/hid/gtk/gui-dialog-print.c,
13798 src/hid/gtk/gui-dialog-size.c, src/hid/gtk/gui-dialog.c,
13799 src/hid/gtk/gui-keyref-window.c, src/hid/gtk/gui-library-window.c,
13800 src/hid/gtk/gui-log-window.c, src/hid/gtk/gui-misc.c,
13801 src/hid/gtk/gui-netlist-window.c, src/hid/gtk/gui-output-events.c,
13802 src/hid/gtk/gui-pinout-window.c, src/hid/gtk/gui-top-window.c,
13803 src/hid/gtk/gui-utils.c, src/hid/gtk/gui.h: indent
13805 2006-03-22 Dan McMahill * dan AT mcmahill dot net *
13807 * src/action.c, src/command.c, src/djopt.c, src/dolists.h,
13808 src/flags.c, src/hid.h, src/hid/gtk/gtkhid-main.c,
13809 src/hid/gtk/gui-netlist-window.c, src/hid/gtk/gui-top-window.c,
13810 src/hid/lesstif/dialogs.c, src/hid/lesstif/library.c,
13811 src/hid/lesstif/main.c, src/hid/lesstif/menu.c,
13812 src/hid/lesstif/netlist.c, src/hid/lesstif/styles.c,
13813 src/hid/png/png.c, src/hid/ps/eps.c, src/hid/ps/ps.c, src/main.c,
13814 src/netlist.c, src/puller.c, src/report.c, src/vendor.c: Take the
13815 ";" out of the REGISTER_* defines and put them in the invocations.
13816 This will let indent work correctly.
13818 2006-03-22 Dan McMahill * dan AT mcmahill dot net *
13820 * src/action.c, src/command.c, src/crosshair.c, src/draw.c,
13821 src/main.c, src/misc.c, src/polygon.c, src/polygon.h, src/puller.c,
13822 src/rats.c: fix several more compiler warnings by removing some
13823 unused variables and adding/removing return values where
13826 2006-03-22 Dan McMahill * dan AT mcmahill dot net *
13828 * src/hid/gtk/gui-icons-mode-buttons.data,
13829 src/hid/gtk/gui-top-window.c, src/hid/ps/eps.c: remove more compiler
13832 2006-03-22 Dan McMahill * dan AT mcmahill dot net *
13834 * src/hid/lpr/lpr.c: add missing member to the lpr_hid
13837 2006-03-22 Dan McMahill * dan AT mcmahill dot net *
13839 * src/file.c: remove unused variable
13841 2006-03-22 Dan McMahill * dan AT mcmahill dot net *
13843 * src/misc.c: add missing header
13845 2006-03-22 Dan McMahill * dan AT mcmahill dot net *
13847 * src/hid/common/flags.c: remove an unused variable
13849 2006-03-22 Dan McMahill * dan AT mcmahill dot net *
13851 * src/hid/common/hidnogui.c: remove compiler warning
13853 2006-03-22 Dan McMahill * dan AT mcmahill dot net *
13855 * src/vendor.c: remove unused variable
13857 2006-03-22 Dan McMahill * dan AT mcmahill dot net *
13859 * src/report.c: format string fix
13861 2006-03-22 Dan McMahill * dan AT mcmahill dot net *
13863 * src/puller.c: add a couple of missing headers
13865 2006-03-22 Dan McMahill * dan AT mcmahill dot net *
13867 * src/print.c: add missing draw.h header
13869 2006-03-22 Dan McMahill * dan AT mcmahill dot net *
13871 * src/flags.c: add RCSID and dmalloc.h
13873 2006-03-22 Dan McMahill * dan AT mcmahill dot net *
13875 * src/flags.c: remove a spurious ";"
13877 2006-03-22 Dan McMahill * dan AT mcmahill dot net *
13879 * src/hid/gerber/gerber.c: remove unused variable
13881 2006-03-22 Dan McMahill * dan AT mcmahill dot net *
13883 * src/hid/gtk/gui-misc.c: remove a duplicate header and Id
13885 2006-03-22 Dan McMahill * dan AT mcmahill dot net *
13887 * src/hid/lesstif/lesstif.h: add RCS Id
13889 2006-03-22 Dan McMahill * dan AT mcmahill dot net *
13891 * src/hid/lesstif/dialogs.c, src/hid/lesstif/library.c,
13892 src/hid/lesstif/main.c, src/hid/lesstif/menu.c,
13893 src/hid/lesstif/netlist.c, src/hid/lesstif/styles.c: add config.h,
13894 dmalloc.h, and RCS Id
13896 2006-03-22 Dan McMahill * dan AT mcmahill dot net *
13898 * src/hid/gtk/gui-misc.c: add dmalloc.h
13900 2006-03-22 Dan McMahill * dan AT mcmahill dot net *
13902 * src/hid/hidint.h: add RCS Id
13904 2006-03-22 Dan McMahill * dan AT mcmahill dot net *
13906 * src/hid/common/actions.c, src/hid/common/extents.c,
13907 src/hid/common/flags.c, src/hid/common/hidinit.c,
13908 src/hid/common/hidnogui.c, src/hid/gerber/gerber.c,
13909 src/hid/lpr/lpr.c: add config.h, dmalloc.h, and RCS Id
13911 2006-03-22 Dan McMahill * dan AT mcmahill dot net *
13913 * src/hid/ps/eps.c, src/hid/ps/ps.c, src/hid/ps/ps.h: remove
13914 compiler warning and add config.h, dmalloc.h, and RCS Id
13916 2006-03-22 Dan McMahill * dan AT mcmahill dot net *
13918 * src/hid/png/png.c: remove a compiler warning
13920 2006-03-22 Dan McMahill * dan AT mcmahill dot net *
13922 * src/hid/bom/bom.c: add missing header
13924 2006-03-22 Dan McMahill * dan AT mcmahill dot net *
13926 * src/Makefile.am, src/Makefile.in: add the generated headers to
13927 DISTCLEANFILES and add a bunch of missing headers to the various
13928 *_SOURCES. With this change, the 'distcheck' target works again.
13930 2006-03-22 Dan McMahill * dan AT mcmahill dot net *
13934 2006-03-22 Dan McMahill * dan AT mcmahill dot net *
13936 * configure.ac: add $srcdir in a couple of places for configuring
13937 outside of the source directory.
13939 2006-03-22 Dan McMahill * dan AT mcmahill dot net *
13941 * src/dolists.h: add missing RCS Id
13943 2006-03-22 Dan McMahill * dan AT mcmahill dot net *
13945 * configure, configure.ac, doc/Makefile.am, doc/Makefile.in,
13946 doc/pad.eps, doc/pad.obj: Replace the tgif drawing with a pcb
13947 drawing. The suffix rules are now in place to use .pcb files as
13948 part of the manual.
13950 2006-03-21 DJ Delorie * dj AT delorie dot com *
13952 * src/hid/lpr/lpr.c: Call lpr, don't just save the file.
13954 2006-03-21 DJ Delorie * dj AT delorie dot com *
13956 * src/hid/lesstif/library.c: Remove a debug printf.
13958 2006-03-21 DJ Delorie * dj AT delorie dot com *
13960 * src/action.c, src/file.c, src/main.c, src/misc.h, src/set.c,
13961 src/set.h: Remove UpdateSettingsOnScreen. Call InitCrosshair only
13964 2006-03-21 Dan McMahill * dan AT mcmahill dot net *
13966 * doc/pad.pcb: correctly identify the poly clearance
13968 2006-03-21 Dan McMahill * dan AT mcmahill dot net *
13970 * configure, doc/Makefile.in: regen
13972 2006-03-21 Dan McMahill * dan AT mcmahill dot net *
13974 * configure.ac, doc/Makefile.am: detect when tgif is not found and
13975 give a warning instead of crashing the build
13977 2006-03-21 Dan McMahill * dan AT mcmahill dot net *
13979 * doc/pad.eps: include the tgif output here until I replace the
13980 drawings with pcb drawings
13982 2006-03-21 Dan McMahill * dan AT mcmahill dot net *
13984 * doc/pad.pcb: improve this drawing a bit
13986 2006-03-21 Dan McMahill * dan AT mcmahill dot net *
13988 * src/hid/bom/bom.c: Use log() instead of logv(). Fixes compilation
13989 on NetBSD/alpha, gcc-3.3.3
13991 2006-03-21 DJ Delorie * dj AT delorie dot com *
13993 * compile: New file, from automake 1.9.
13995 2006-03-21 DJ Delorie * dj AT delorie dot com *
13997 * depcomp, doc/mdate-sh, doc/texinfo.tex, install-sh, missing,
13998 mkinstalldirs, ylwrap: Update to automake 1.9 files.
14000 2006-03-21 DJ Delorie * dj AT delorie dot com *
14002 * Makefile.in, README_FILES/Makefile.in, aclocal.m4, config.h.in,
14003 configure, doc/Makefile.in, example/Makefile.in,
14004 example/libraries/Makefile.in, lib/Makefile.in,
14005 newlib/2_pin_thru-hole_packages/Makefile.in, newlib/Makefile.in,
14006 newlib/analog-devices/Makefile.in, newlib/burr-brown/Makefile.in,
14007 newlib/connectors/Makefile.in, newlib/crystal/Makefile.in,
14008 newlib/cypress/Makefile.in, newlib/electro-optics/Makefile.in,
14009 newlib/generic_SMD_packages/Makefile.in,
14010 newlib/headers/Makefile.in, newlib/msp430/Makefile.in,
14011 newlib/not_vetted_ingo/Makefile.in, newlib/sockets/Makefile.in,
14012 newlib/tests/Makefile.in, newlib/toko/Makefile.in, src/Makefile.in,
14013 src/icons/Makefile.in, src/script/Makefile.in, tools/Makefile.in,
14014 tutorial/Makefile.in: regenerate everything with FC4.
14016 2006-03-21 DJ Delorie * dj AT delorie dot com *
14018 * config.h.in, configure, configure.ac, src/Makefile.am,
14019 src/Makefile.in, src/Pcb.ad.in, src/action.c, src/action.h,
14020 src/autoplace.c, src/autoroute.c, src/buffer.c, src/change.c,
14021 src/command.c, src/command.h, src/const.h, src/control.c,
14022 src/control.h, src/copy.c, src/create.c, src/create.h,
14023 src/crosshair.c, src/data.c, src/data.h, src/dialog.c,
14024 src/dialog.h, src/djopt.c, src/djopt.h, src/dolists.h, src/draw.c,
14025 src/draw.h, src/error.c, src/file.c, src/fileselect.c,
14026 src/fileselect.h, src/find.c, src/find.h, src/flags.c,
14027 src/global.h, src/gui-command-window.c, src/gui-config.c,
14028 src/gui-dialog-print.c, src/gui-dialog-size.c, src/gui-dialog.c,
14029 src/gui-icons-misc.data, src/gui-icons-mode-buttons.data,
14030 src/gui-keyref-window.c, src/gui-library-window.c,
14031 src/gui-log-window.c, src/gui-misc.c, src/gui-netlist-window.c,
14032 src/gui-output-events.c, src/gui-pinout-window.c,
14033 src/gui-top-window.c, src/gui-utils.c, src/gui.c, src/gui.h,
14034 src/heap.c, src/hid.h, src/hid/bom/bom.c, src/hid/bom/hid.conf,
14035 src/hid/common/actions.c, src/hid/common/extents.c,
14036 src/hid/common/flags.c, src/hid/common/hidinit.c,
14037 src/hid/common/hidnogui.c, src/hid/gerber/gerber.c,
14038 src/hid/gerber/hid.conf, src/hid/gtk/gtkhid-main.c,
14039 src/hid/gtk/gtkhid.h, src/hid/gtk/gui-command-window.c,
14040 src/hid/gtk/gui-config.c, src/hid/gtk/gui-dialog-print.c,
14041 src/hid/gtk/gui-dialog-size.c, src/hid/gtk/gui-dialog.c,
14042 src/hid/gtk/gui-icons-misc.data,
14043 src/hid/gtk/gui-icons-mode-buttons.data,
14044 src/hid/gtk/gui-keyref-window.c, src/hid/gtk/gui-library-window.c,
14045 src/hid/gtk/gui-log-window.c, src/hid/gtk/gui-misc.c,
14046 src/hid/gtk/gui-netlist-window.c, src/hid/gtk/gui-output-events.c,
14047 src/hid/gtk/gui-pinout-window.c, src/hid/gtk/gui-top-window.c,
14048 src/hid/gtk/gui-utils.c, src/hid/gtk/gui.h, src/hid/gtk/hid.conf,
14049 src/hid/hidint.h, src/hid/lesstif/dialogs.c,
14050 src/hid/lesstif/hid.conf, src/hid/lesstif/lesstif.h,
14051 src/hid/lesstif/library.c, src/hid/lesstif/main.c,
14052 src/hid/lesstif/menu.c, src/hid/lesstif/netlist.c,
14053 src/hid/lesstif/styles.c, src/hid/lpr/hid.conf, src/hid/lpr/lpr.c,
14054 src/hid/png/hid.conf, src/hid/png/png.c, src/hid/png/png.h,
14055 src/hid/ps/eps.c, src/hid/ps/hid.conf, src/hid/ps/ps.c,
14056 src/hid/ps/ps.h, src/insert.c, src/intersect.c, src/lgdialog.c,
14057 src/lgdialog.h, src/library.c, src/library.h, src/line.c,
14058 src/log.c, src/log.h, src/macro.h, src/main.c, src/menu.c,
14059 src/menu.h, src/misc.c, src/misc.h, src/move.c, src/mtspace.c,
14060 src/mymem.c, src/mymem.h, src/netlist.c, src/netlist.h,
14061 src/output.c, src/output.h, src/parse_l.l, src/parse_y.y,
14062 src/pcb-menu.res, src/pcbtest.sh.in, src/pinout.c, src/pinout.h,
14063 src/polygon.c, src/print.c, src/print.h, src/printdialog.c,
14064 src/printdialog.h, src/printpanner.c, src/printpanner.h,
14065 src/puller.c, src/rats.c, src/report.c, src/report.h,
14066 src/res_lex.l, src/res_parse.y, src/resmenu.c, src/resmenu.h,
14067 src/rotate.c, src/rtree.c, src/search.c, src/select.c,
14068 src/selector.c, src/selector.h, src/set.c, src/set.h,
14069 src/sizedialog.c, src/sizedialog.h, src/strflags.c, src/todo,
14070 src/undo.c, src/undo.h, src/vector.c, src/vendor.c, src/vendor.h:
14073 2006-03-21 Dan McMahill * dan AT mcmahill dot net *
14075 * README.cvs_branches: note what some of the branches are
14077 2006-03-21 Dan McMahill * dan AT mcmahill dot net *
14079 * README.snapshots: add a few more notes about the snapshot process
14081 2006-03-21 Dan McMahill * dan AT mcmahill dot net *
14083 * README_FILES/Makefile.in, aclocal.m4, example/Makefile.in,
14084 example/libraries/Makefile.in,
14085 newlib/2_pin_thru-hole_packages/Makefile.in, newlib/Makefile.in,
14086 newlib/analog-devices/Makefile.in, newlib/burr-brown/Makefile.in,
14087 newlib/connectors/Makefile.in, newlib/crystal/Makefile.in,
14088 newlib/cypress/Makefile.in, newlib/electro-optics/Makefile.in,
14089 newlib/generic_SMD_packages/Makefile.in,
14090 newlib/headers/Makefile.in, newlib/msp430/Makefile.in,
14091 newlib/not_vetted_ingo/Makefile.in, newlib/sockets/Makefile.in,
14092 newlib/tests/Makefile.in, newlib/toko/Makefile.in,
14093 src/icons/Makefile.in, src/script/Makefile.in, tools/Makefile.in:
14096 2006-03-21 Dan McMahill * dan AT mcmahill dot net *
14098 * NEWS: add news for the 20060321 snapshot
14100 2006-03-21 Dan McMahill * dan AT mcmahill dot net *
14102 * AUTHORS: update authors a bit
14104 2006-03-21 Dan McMahill * dan AT mcmahill dot net *
14106 * ChangeLog: update with changes for 20060321 snapshot.
14108 2006-03-21 Dan McMahill * dan AT mcmahill dot net *
14110 * Makefile.in, tutorial/Makefile.in: regen
14112 2006-03-21 Dan McMahill * dan AT mcmahill dot net *
14114 * doc/version.texi: bump updated date
14116 2006-03-21 Dan McMahill * dan AT mcmahill dot net *
14118 * doc/Makefile.in: regen
14120 2006-03-21 Dan McMahill * dan AT mcmahill dot net *
14122 * doc/Makefile.am: Minor updates to fix the 'distcheck' target.
14123 Adds a missing file (extract-docs) to the list of distributed files, uses $(srcdir) in a
14124 couple of spots, etc.
14126 2006-03-20 Dan McMahill * dan AT mcmahill dot net *
14130 2006-03-20 Dan McMahill * dan AT mcmahill dot net *
14132 * configure.ac: - replace obsolete AC_ERROR with AC_MSG_ERROR - store the path to the m4 executible
14134 2006-03-16 DJ Delorie * dj AT delorie dot com *
14136 * src/parse_y.y: Document ElementArc, ElementLine, and Mark.
14138 2006-03-14 Dan McMahill * dan AT mcmahill dot net *
14140 * doc/pad.pcb: add drawing of soldermask opening around a pad
14142 2006-03-14 Dan McMahill * dan AT mcmahill dot net *
14144 * lib/QueryLibrary.sh.in, lib/common.m4: add an optional -fp
14145 argument which will display the correct footprint= attribute for
14146 gschem. Generally useful for debugging.
14148 2006-03-14 Dan McMahill * dan AT mcmahill dot net *
14150 * lib/pci.inc, lib/pci.list, lib/pci.m4: Remove the abuse of the
14151 value field as a way of passing in multiple extra parameters. While
14152 here fix the pinlists. These footprints still have diagonal pads
14153 which are not allowed.
14155 2006-03-14 Dan McMahill * dan AT mcmahill dot net *
14157 * lib/Makefile.in, src/Makefile.in: regen
14159 2006-03-14 Dan McMahill * dan AT mcmahill dot net *
14161 * lib/Makefile.am, lib/genericsmt.inc, lib/genericsmt.list,
14162 lib/genericsmt.m4: garbage collect some footprints that were not at
14163 all conforming to the correct usage of the m4 library system. In
14164 addition, they were rather redundant.
14166 2006-03-13 Dan McMahill * dan AT mcmahill dot net *
14168 * lib/CreateLibraryContents.sh.in: put the correct gschem footprint=
14169 attribute in [] at the end of each description
14171 2006-03-12 DJ Delorie * dj AT delorie dot com *
14173 * doc/extract-docs: New file, for extracting inline documentation.
14175 2006-03-12 Dan McMahill * dan AT mcmahill dot net *
14177 * lib/QueryLibrary.sh.in: eat blank lines of which there can be many
14178 in the element output
14180 2006-03-11 DJ Delorie * dj AT delorie dot com *
14182 * doc/Makefile.am, doc/Makefile.in, doc/pcb.css, doc/pcb.texi,
14183 src/const.h, src/parse_y.y: Inline documentation.
14185 2006-03-11 DJ Delorie * dj AT delorie dot com *
14187 * src/action.c, src/change.c, src/change.h: Add "join" to SetFlag,
14188 ClrFlag, and ChangeFlag actions.
14190 2006-03-08 Harry Eaton * haceaton AT users dot sourceforge dot net *
14192 * src/autoroute.c: Fixed bug where pads were assumed to be on the
14193 same side as the element
14195 ----------------------------------------------------------------------
14197 2006-03-08 Harry Eaton * haceaton AT users dot sourceforge dot net *
14199 * src/crosshair.c: Crosshair snap to pad ends instead of center -
14200 necessary for rat drawing because rats only connect at pad end
14203 ----------------------------------------------------------------------
14205 2006-03-06 DJ Delorie * dj AT delorie dot com *
14207 * src/print.c: Fab author fixes from Karel.
14209 2006-03-06 Dan McMahill * dan AT mcmahill dot net *
14211 * src/parse_y.y: Fix reduce-reduce conflicts (patch from DJ).
14213 2006-03-03 Dan McMahill * dan AT mcmahill dot net *
14215 * doc/pcb.texi: - clarify that the manual does not currently document the very
14216 latest pcb output file format. - add a (sparsely populated) glossary appendix - add a note about how to change layers
14218 2006-03-03 Dan McMahill * dan AT mcmahill dot net *
14220 * globalconst.h, src/action.c, src/create.c, src/file.c,
14221 src/find.c, src/global.h, src/gui-config.c, src/parse_y.y,
14222 src/rotate.c, src/sizedialog.c, src/vendor.c: add DRC checks for
14223 minimum drill diameter and minimum annular ring.
14225 2006-03-02 Dan McMahill * dan AT mcmahill dot net *
14227 * src/rats.c: When manually adding nets, make sure we actually pick
14228 a unique name when a new net is created. Fixes a bug noted by
14229 Vanessa Dannenberg.
14231 2006-02-28 Dan McMahill * dan AT mcmahill dot net *
14233 * doc/pad.pcb: Add a pad drawing showing how a pad is drawn with a
14234 rectangular aperture. Not used yet, but this will replace the tgif
14235 drawing at some point.
14237 2006-01-29 Dan McMahill * dan AT mcmahill dot net *
14239 * src/error.c: apply some fixes for DragonFly BSD
14241 2006-01-18 Dan McMahill * dan AT mcmahill dot net *
14243 * src/action.c: format cleanup of ActionChangePinName() to bring
14244 more in line with GNU coding standards for C code formatting.
14246 2006-01-17 Dan McMahill * dan AT mcmahill dot net *
14248 * doc/pcb.texi: document ChangePinName action
14250 2006-01-17 Dan McMahill * dan AT mcmahill dot net *
14252 * src/action.c, src/action.h, src/command.c: add a ChangePinName()
14253 action which lets you change the name of a pin/pad on an element.
14254 For example, ChangePinName(U1, 7, VCC) changes the name of pin #7 on
14255 U1 to "VCC". This makes it simple to propagate pin names from a
14256 schematic capture tool to the layout without requiring the layout
14257 library to know the pin names for every component.
14259 2006-01-16 Harry Eaton * haceaton AT users dot sourceforge dot net *
14261 * src/buffer.c, src/copy.c, src/create.c, src/draw.c, src/find.c,
14262 src/insert.c, src/move.c, src/mymem.c, src/parse_y.y,
14263 src/polygon.c, src/print.c, src/remove.c, src/report.c,
14264 src/search.c, src/select.c: Updated to use rtrees for polygon
14267 2006-01-15 Harry Eaton * haceaton AT users dot sourceforge dot net *
14269 * src/polygon.c: Fixed bugs in GetClosestPolygonPoint where (a) the
14270 passed point was not used, and (b) projection of the segment past
14271 the end was being used when it shouldn't.
14273 ----------------------------------------------------------------------
14275 2006-01-02 Harry Eaton * haceaton AT users dot sourceforge dot net *
14277 * src/autoroute.c: Speed computation of route costs, it uses about
14278 13% of the CPU time during routing.
14280 ----------------------------------------------------------------------
14282 2006-01-02 Harry Eaton * haceaton AT users dot sourceforge dot net *
14284 * src/rtree.c: Speed up the rtree searches by establishing better
14285 balance of the cluster size during a node split. This reduces the
14286 tree depth resulting in faster searching.
14288 ----------------------------------------------------------------------
14290 2006-01-02 Harry Eaton * haceaton AT users dot sourceforge dot net *
14292 * src/strflags.c: Fixed clearline flag so that arcs also have this
14295 ----------------------------------------------------------------------
14297 2006-01-02 Harry Eaton * haceaton AT users dot sourceforge dot net *
14299 * src/change.c: Fixed bug where clearances could be set 1 below the
14302 ----------------------------------------------------------------------
14304 2005-12-09 Dan McMahill * dan AT mcmahill dot net *
14306 * doc/Makefile.in: regen [put the html manual in 1 file]
14308 2005-12-09 Dan McMahill * dan AT mcmahill dot net *
14310 * doc/Makefile.am: put the html manual in 1 file. Its a bit easier
14313 2005-12-09 Dan McMahill * dan AT mcmahill dot net *
14315 * doc/version.texi: bump date last touched
14317 2005-12-07 Dan McMahill * dan AT mcmahill dot net *
14319 * lib/smt.inc: cause the missing ) in PKG_SMT_2PAD_MM100 to appear
14321 2005-12-06 Dan McMahill * dan AT mcmahill dot net *
14323 * 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
14326 2005-12-02 Dan McMahill * dan AT mcmahill dot net *
14328 * src/create.c, src/global.h, src/gui-netlist-window.c, src/rats.c:
14329 fix a bug which prevented disabling nets from the ratsnest
14331 2005-12-02 Dan McMahill * dan AT mcmahill dot net *
14333 * lib/geda.inc: fix duplicate PKG_SME4 which should have been called
14334 SME5. Reported by Wojciech Kazubski in bug #1353304
14336 2005-12-02 Dan McMahill * dan AT mcmahill dot net *
14338 * src/pcbtest.sh.in: Be sure to set the library path to the source
14339 tree. Patch supplied by Wim Lewis in patch #1362564
14341 2005-10-11 Dan McMahill * dan AT mcmahill dot net *
14343 * lib/geda.inc: redo the 0201, 0402, etc passives to bring them in
14344 line with the IPC recommendations. The pads on, for example 0603,
14345 were too small before. They worked, were really not adequate.
14347 2005-10-11 Dan McMahill * dan AT mcmahill dot net *
14349 * lib/smt.inc: add a PKG_SMT_2PAD_MM100 which directly takes
14350 dimensions for the pads, silk, and placement courtyard from IPC-7351
14351 for things like 0402 capacitor and resistor footprints.
14353 2005-09-06 Dan McMahill * dan AT mcmahill dot net *
14355 * autogen.sh: make this script a bit more verbose and also abort on
14358 2005-09-06 Dan McMahill * dan AT mcmahill dot net *
14362 2005-09-06 Dan McMahill * dan AT mcmahill dot net *
14364 * configure.ac: make sure to check for -lX11 even when we're using
14365 the gtk gui. action.c still has a direct call to an X function
14366 (XWarpPointer) so on some systems (Solaris) you need to explicitly
14367 link -lX11 instead of getting it through the gtk dependencies
14369 2005-08-05 Dan McMahill * dan AT mcmahill dot net *
14373 2005-08-05 Dan McMahill * dan AT mcmahill dot net *
14375 * configure.ac: check for gtk+ >= 2.4.0 instead of 2.2.0 since we
14378 2005-08-05 Dan McMahill * dan AT mcmahill dot net *
14380 * src/script/Makefile.am, src/script/Makefile.in: add pcb-print to
14381 the list of distributed files
14383 2005-08-05 Dan McMahill * dan AT mcmahill dot net *
14385 * src/script/pcb-print: fix a bug in the --add-alignment option.
14386 Noted by David Baird
14388 2005-08-04 Dan McMahill * dan AT mcmahill dot net *
14390 * src/gui-library-window.c: fix -auto-place for the library window
14392 2005-08-04 Dan McMahill * dan AT mcmahill dot net *
14394 * src/script/pcb-print: add script to make it easier to print from
14397 2005-08-04 Dan McMahill * dan AT mcmahill dot net *
14399 * src/action.c, src/action.h, src/command.c, src/global.h,
14400 src/gui-library-window.c, src/gui-log-window.c,
14401 src/gui-netlist-window.c, src/gui-pinout-window.c,
14402 src/gui-top-window.c, src/main.c, src/misc.c,
14403 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
14404 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
14405 be automatically placed rather than letting the window manager do
14406 it. This is useful when printing via the command line. - add a command line shell script for printing. This is a wrapper
14407 which takes a whole bunch of flags relating to the print parameters
14408 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.
14410 2005-07-31 Dan McMahill * dan AT mcmahill dot net *
14412 * lib/geda.inc: add 1008 package
14414 2005-07-27 Dan McMahill * dan AT mcmahill dot net *
14416 * lib/bourns.inc: fix the pin order.
14418 2005-07-24 Harry Eaton * haceaton AT users dot sourceforge dot net *
14420 * src/gui-config.c: Fix initial layer groups so that layer named
14421 'component' is actually on the component side and layer named
14422 'solder' is actually on the solder side. Unfortunately the GTK
14423 version saves the old bug in the .pcb/preferences file so no
14424 patching will fix existing installations. They must manually edit
14425 the layer groups and check the "use as default" to fix their
14428 ----------------------------------------------------------------------
14430 2005-07-23 Dan McMahill * dan AT mcmahill dot net *
14432 * aclocal.m4, configure: regen (fix botched commit which was missing
14435 2005-07-22 Dan McMahill * dan AT mcmahill dot net *
14437 * doc/pcb.texi, doc/version.texi: add appendix describing the
14438 centroid file format along with the algorithm for finding the
14439 centroid and rotation.
14441 2005-07-22 Dan McMahill * dan AT mcmahill dot net *
14443 * src/print.c: remove some redundant code to make things more clear
14445 2005-07-18 Dan McMahill * dan AT mcmahill dot net *
14447 * lib/genericsmt.m4: fix typo
14449 2005-07-18 Dan McMahill * dan AT mcmahill dot net *
14451 * aclocal.m4, configure: regen
14453 2005-07-18 Dan McMahill * dan AT mcmahill dot net *
14455 * configure.ac, src/vendor.c: add a check for sys/types.h and then
14456 if found, include in vendor.c. Needed to build on FreeBSD. Problem
14457 and fix reported in bug #1220963.
14459 2005-07-18 Dan McMahill * dan AT mcmahill dot net *
14461 * lib/qfn.inc: hires-ify the QFN packages. While here make sure we
14462 use an appropriate soldermask relief for this style of package.
14464 2005-07-18 Dan McMahill * dan AT mcmahill dot net *
14466 * src/gui-dialog-print.c, src/gui-dialog-size.c, src/set.c: remove
14467 the inclusion of menu.h. We don't use that file anymore and the
14468 only reason we could still build on some systems is we'd find the
14469 /usr/include/menu.h from curses! Problem noted in bug #1226924 by
14472 2005-07-18 Dan McMahill * dan AT mcmahill dot net *
14474 * doc/refcard.tex, src/gui-keyref-window.c, src/gui-output-events.c:
14475 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.
14477 2005-07-18 Dan McMahill * dan AT mcmahill dot net *
14479 * INSTALL, NEWS, README-GTK_PORT: apply patches provided by Bill
14480 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.
14482 2005-07-18 Dan McMahill * dan AT mcmahill dot net *
14484 * src/global.h, src/gui-config.c, src/gui-top-window.c, src/gui.h:
14485 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.
14487 2005-07-18 Dan McMahill * dan AT mcmahill dot net *
14489 * src/file.c, src/gui-config.c, src/gui-top-window.c: apply patches
14490 provided by Bill Wilson in patch #1227205 When loading layouts using
14491 alternating mil/mm units, the PCB units displaying can get out of
14492 sync. This patch fixes it.
14494 2005-07-18 Dan McMahill * dan AT mcmahill dot net *
14496 * src/find.c, src/gui-utils.c: apply patches provided by Bill Wilson
14497 in patch #1215935 1) The DRC user interface issue has been reported on the gEDA
14498 mailing list and is listed on the PCB bugs page as request id
14499 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
14500 during the final Gtk port cleanup. 4) Adjust the DRC draw centering to be 1/4 screen offset since the
14501 continue dialog is centered (under window manager control) and that
14502 was covering up the DRC highlighted portion of the draw which was
14503 previously also centered. 2) The log window was not scrolling to keep most recent log items
14504 added in view and this patch fixes that.
14506 2005-07-18 Dan McMahill * dan AT mcmahill dot net *
14508 * src/const.h, src/global.h, src/gui-netlist-window.c: apply the
14509 patches provided by Wim Lewis in patch #1189989 to allow pcb to
14510 compile more cleanly on OpenBSD.
14512 2005-06-11 DJ Delorie * dj AT delorie dot com *
14514 * src/action.c, src/autoroute.c, src/buffer.c, src/change.c,
14515 src/const.h, src/copy.c, src/create.c, src/create.h,
14516 src/crosshair.c, src/data.h, src/dev_rs274x.c, src/djopt.c,
14517 src/draw.c, src/file.c, src/find.c, src/global.h,
14518 src/gui-top-window.c, src/insert.c, src/line.c, src/macro.h,
14519 src/misc.c, src/misc.h, src/move.c, src/mymem.c, src/parse_l.l,
14520 src/parse_y.y, src/polygon.c, src/print.c, src/rats.c,
14521 src/report.c, src/rotate.c, src/search.c, src/strflags.c,
14522 src/strflags.h, src/undo.c, src/undo.h: Update sources to support
14523 more than 8 layers.
14525 2005-06-08 Dan McMahill * dan AT mcmahill dot net *
14527 * NEWS: add news for 20050609
14529 2005-06-08 Dan McMahill * dan AT mcmahill dot net *
14531 * ChangeLog: add changes for 20050609
14533 2005-06-08 Dan McMahill * dan AT mcmahill dot net *
14535 * globalconst.h: reduce minimum board size from 1.2 to 0.6 inches
14537 2005-06-08 Dan McMahill * dan AT mcmahill dot net *
14539 * src/Makefile.in: regen [add missing strflags.h]
14541 2005-06-08 Dan McMahill * dan AT mcmahill dot net *
14543 * src/Makefile.am: add missing strflags.h
14545 2005-06-08 Dan McMahill * dan AT mcmahill dot net *
14549 2005-06-08 Dan McMahill * dan AT mcmahill dot net *
14551 * configure.ac: make sure we still set the X library rpath (yes, it
14552 is still possible to use --disable-rpath debian folks).
14554 2005-06-08 Dan McMahill * dan AT mcmahill dot net *
14556 * src/draw.c, src/global.h, src/gui-config.c,
14557 src/gui-output-events.c, src/gui-top-window.c, src/gui-utils.c,
14558 src/main.c: convert several c++ style comments to c comments. not
14559 all compilers like //
14561 2005-06-03 DJ Delorie * dj AT delorie dot com *
14563 * src/djopt.c: Avoid name conflict with abs/min/max
14565 2005-05-26 Dan McMahill * dan AT mcmahill dot net *
14567 * configure: regen [error out if m4 not found]
14569 2005-05-26 Dan McMahill * dan AT mcmahill dot net *
14571 * configure.ac: error out if m4 is not found
14573 2005-03-28 DJ Delorie * dj AT delorie dot com *
14575 * src/strflags.c: Fix the "all pads are ovals" bug.
14577 2005-03-21 DJ Delorie * dj AT delorie dot com *
14579 * src/strflags.c: Minor bugfixes related to error handling
14581 2005-03-21 DJ Delorie * dj AT delorie dot com *
14583 * src/Makefile.am, src/Makefile.in, src/file.c, src/parse_y.y,
14584 src/strflags.c, src/strflags.h: When saving files, convert flags to
14585 symbolic format instead of storing the actual internal bitfield.
14587 2005-03-21 DJ Delorie * dj AT delorie dot com *
14589 * src/const.h: Put parens around computed macros. Use ~0 instead of
14592 2005-03-14 Dan McMahill * dan AT mcmahill dot net *
14594 * src/gui-icons-misc.data, src/gui-icons-mode-buttons.data: add some
14595 files missed in the gtk-pcb checkin
14597 2005-03-13 Dan McMahill * dan AT mcmahill dot net *
14599 * doc/pcbrc-sample, src/file.c, src/global.h, src/gui-config.c,
14600 src/gui-top-window.c, src/gui.h, src/main.c, src/misc.c,
14601 src/misc.h, src/pcbtest.sh.in: add some config file patches from
14604 2005-03-12 Dan McMahill * dan AT mcmahill dot net *
14606 * README-GTK_PORT, configure, configure.ac, doc/version.texi,
14607 globalconst.h, po/fr_FR.po, po/pcb.pot, src/Makefile.am,
14608 src/Makefile.in, src/Pcb.ad.in, src/action.c, src/action.h,
14609 src/autoplace.c, src/autoroute.c, src/buffer.c, src/change.c,
14610 src/clip.c, src/clip.h, src/command.c, src/command.h, src/const.h,
14611 src/create.c, src/crosshair.c, src/data.c, src/data.h,
14612 src/dev_ps.c, src/dev_rs274x.c, src/djopt.c, src/djopt.h,
14613 src/draw.c, src/draw.h, src/drill.c, src/error.c, src/error.h,
14614 src/file.c, src/file.h, src/find.c, src/global.h,
14615 src/gui-command-window.c, src/gui-config.c, src/gui-dialog-print.c,
14616 src/gui-dialog-size.c, src/gui-dialog.c, src/gui-keyref-window.c,
14617 src/gui-library-window.c, src/gui-log-window.c, src/gui-misc.c,
14618 src/gui-netlist-window.c, src/gui-output-events.c,
14619 src/gui-pinout-window.c, src/gui-top-window.c, src/gui-utils.c,
14620 src/gui.h, src/heap.c, src/insert.c, src/intersect.c, src/line.c,
14621 src/macro.h, src/main.c, src/menu.h, src/misc.c, src/misc.h,
14622 src/move.c, src/mtspace.c, src/mymem.c, src/output.c, src/output.h,
14623 src/parse_l.l, src/parse_y.y, src/pcb-menu.res, src/pcbtest.sh.in,
14624 src/polygon.c, src/print.c, src/rats.c, src/rats.h, src/report.c,
14625 src/res_parse.y, src/rotate.c, src/rtree.c, src/script/pcb.in,
14626 src/select.c, src/select.h, src/set.c, src/set.h, src/undo.c,
14627 src/vector.c, src/vendor.c, src/vendor.h: Import Bill Wilson's port
14628 of pcb to gtk. Things seem to compile and run but this should be
14629 considered a work in progress at the moment.
14631 2005-03-12 Dan McMahill * dan AT mcmahill dot net *
14633 * doc/Makefile.in: regen
14635 2005-03-12 Dan McMahill * dan AT mcmahill dot net *
14637 * doc/Makefile.am: add a few missing files to EXTRA_DIST
14639 2005-03-10 Dan McMahill * dan AT mcmahill dot net *
14641 * ChangeLog: update with latest changes
14643 2005-03-10 Dan McMahill * dan AT mcmahill dot net *
14645 * Makefile.in, README_FILES/Makefile.in, doc/Makefile.in,
14646 doc/version.texi, example/Makefile.in,
14647 example/libraries/Makefile.in, lib/Makefile.in,
14648 newlib/2_pin_thru-hole_packages/Makefile.in, newlib/Makefile.in,
14649 newlib/analog-devices/Makefile.in, newlib/burr-brown/Makefile.in,
14650 newlib/connectors/Makefile.in, newlib/crystal/Makefile.in,
14651 newlib/cypress/Makefile.in, newlib/electro-optics/Makefile.in,
14652 newlib/generic_SMD_packages/Makefile.in,
14653 newlib/headers/Makefile.in, newlib/msp430/Makefile.in,
14654 newlib/not_vetted_ingo/Makefile.in, newlib/sockets/Makefile.in,
14655 newlib/tests/Makefile.in, newlib/toko/Makefile.in, src/Makefile.in,
14656 src/icons/Makefile.in, src/script/Makefile.in, tools/Makefile.in,
14657 tutorial/Makefile.in: regen after adding gtk configure.ac stuff
14659 2005-03-10 Dan McMahill * dan AT mcmahill dot net *
14661 * autogen.sh: use ACLOCAL_FLAGS if set
14663 2005-03-10 Dan McMahill * dan AT mcmahill dot net *
14665 * lib/geda.inc, lib/misc.inc, lib/to.inc: add MULTIWATT and friends.
14666 Fix drill size for several versions of the TO-220 package, fix some
14667 bugs which caused several TO-220 packages and others to generate
14668 syntax errors, and fix the drill size on several TO-* packages. You
14669 can't fit a 40 mil pin in a 20 mil hole!
14671 2005-02-23 DJ Delorie * dj AT delorie dot com *
14673 * src/global.h, src/main.c, src/print.c: Allow FAB author name to be
14676 2005-02-10 Dan McMahill * dan AT mcmahill dot net *
14678 * src/action.h: add a few missing prototypes
14680 2005-02-09 Dan McMahill * dan AT mcmahill dot net *
14682 * aclocal.m4: regen
14684 2005-02-09 Dan McMahill * dan AT mcmahill dot net *
14686 * configure: regen after adding --enable-gtk and --disable-xaw
14688 2005-02-09 Dan McMahill * dan AT mcmahill dot net *
14690 * configure.ac: add --enable-gtk and --disable-xaw configure flags
14691 which will turn on the configuring of gtk+ and turn off the
14692 configuring of Athena widgets respectively. At this time the effect
14693 is that you will not be able to compile if you use these options.
14694 They are added to help support some gtk+ development work.
14696 2005-02-02 Dan McMahill * dan AT mcmahill dot net *
14698 * src/data.c, src/dialog.c, src/printdialog.c: fix a segfault bug
14699 when using <Key>Up and <Key>Down to try and adjust the scale slider
14700 in the print dialog box. While here fix up the print dialog box so
14701 that you can use the arrow keys to fine adjust the scale slider.
14702 Noted in bug #1111847 filed by Bob Paddock.
14704 2005-02-02 Dan McMahill * dan AT mcmahill dot net *
14706 * src/rotate.c: fix a segfault bug on the pinout window (no null
14707 pointer dereference)
14709 2005-02-02 Dan McMahill * dan AT mcmahill dot net *
14711 * src/Pcb.ad.in: change units to 1/100 mil for pinout window offset
14713 2005-01-30 Dan McMahill * dan AT mcmahill dot net *
14715 * lib/geda.inc: Add DIP44. Provided by Walter Fetter Lages in patch
14718 2005-01-30 Dan McMahill * dan AT mcmahill dot net *
14720 * lib/misc.inc: fix drill size for ZIP packages. Noted by Walter
14721 Fetter Lages in patch #1108881
14723 2005-01-30 Dan McMahill * dan AT mcmahill dot net *
14725 * lib/connector.inc: fix drill size for PKG_BNC_LAY. Provided by
14726 Walter Fetter Lages in patch #1108881
14728 2005-01-30 Dan McMahill * dan AT mcmahill dot net *
14730 * lib/geda.inc: add TQFP packages provided by Walter Fetter Lages in
14731 patch #1108881. More to come from that patch...
14733 2005-01-29 Dan McMahill * dan AT mcmahill dot net *
14735 * doc/Makefile.in: regen
14737 2005-01-29 Dan McMahill * dan AT mcmahill dot net *
14739 * doc/Makefile.am: add flag to keep building the html manual as a
14740 single page. Having multiple pages seems to do strange things to
14743 2005-01-29 Dan McMahill * dan AT mcmahill dot net *
14745 * doc/Makefile.in: regen
14747 2005-01-29 Dan McMahill * dan AT mcmahill dot net *
14749 * doc/Makefile.am: fix typo in target for creating texi files from
14750 the ascii list of drills
14752 2005-01-29 Dan McMahill * dan AT mcmahill dot net *
14754 * doc/Makefile.in: regen
14756 2005-01-29 Dan McMahill * dan AT mcmahill dot net *
14758 * doc/Makefile.am, doc/ascii2texi.awk, doc/fractional_size.tab,
14759 doc/letter_size.tab, doc/metric_size.tab, doc/pcb.texi,
14760 doc/wire_size.tab: add an appendix with a big list of drill sizes.
14761 Included are American Standard wire size, letter size, fractional
14764 2005-01-27 Dan McMahill * dan AT mcmahill dot net *
14766 * NEWS: add news for snapshot 20050127
14768 2005-01-27 Dan McMahill * dan AT mcmahill dot net *
14770 * ChangeLog: update to get ready for next snapshot
14772 2005-01-27 Dan McMahill * dan AT mcmahill dot net *
14774 * Makefile.in, README_FILES/Makefile.in, aclocal.m4,
14775 doc/Makefile.in, example/Makefile.in,
14776 example/libraries/Makefile.in, lib/Makefile.in,
14777 newlib/2_pin_thru-hole_packages/Makefile.in, newlib/Makefile.in,
14778 newlib/analog-devices/Makefile.in, newlib/burr-brown/Makefile.in,
14779 newlib/connectors/Makefile.in, newlib/crystal/Makefile.in,
14780 newlib/cypress/Makefile.in, newlib/electro-optics/Makefile.in,
14781 newlib/generic_SMD_packages/Makefile.in,
14782 newlib/headers/Makefile.in, newlib/msp430/Makefile.in,
14783 newlib/not_vetted_ingo/Makefile.in, newlib/sockets/Makefile.in,
14784 newlib/tests/Makefile.in, newlib/toko/Makefile.in, src/Makefile.in,
14785 src/icons/Makefile.in, src/script/Makefile.in, tools/Makefile.in,
14786 tutorial/Makefile.in: update to latest automake
14788 2005-01-27 Dan McMahill * dan AT mcmahill dot net *
14790 * src/Pcb.ad.in, src/main.c: change pcb to Pcb in a commented out
14793 2005-01-27 Dan McMahill * dan AT mcmahill dot net *
14795 * lib/geda.inc, lib/misc.inc: fix the LED3 and LED5 footprints for
14796 T-1 and T-1 3/4 (3mm and 5mm) standard LED's. The old footprint had
14797 drill holes which were too small and also there was silk on the pad.
14799 2005-01-26 Dan McMahill * dan AT mcmahill dot net *
14801 * lib/plcc.inc: increase the padsize and drill size for through-hole
14804 2005-01-25 DJ Delorie * dj AT delorie dot com *
14806 * src/pcb-menu.res: Oops, take out test entry
14808 2005-01-25 DJ Delorie * dj AT delorie dot com *
14810 * src/menu.c, src/pcb-menu.res, src/resmenu.c, src/resmenu.h: Move
14811 right-click popup menu to pcb-menu.res also.
14813 2005-01-21 Dan McMahill * dan AT mcmahill dot net *
14815 * doc/version.texi: bump date
14817 2005-01-21 Dan McMahill * dan AT mcmahill dot net *
14819 * src/create.c: do not complain about MIN_PINORVIACOPPER on a
14822 2005-01-21 Dan McMahill * dan AT mcmahill dot net *
14824 * 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,
14825 it seems to avoid some of the strange Xaw issues seen in bug
14826 #1099862 and patch #1042731 where the porthole for the main drawing
14827 area is not properly sized and where the status line is sometimes
14828 covered by the porthole.
14830 2005-01-21 Dan McMahill * dan AT mcmahill dot net *
14832 * src/Makefile.in: regen
14834 2005-01-21 Dan McMahill * dan AT mcmahill dot net *
14836 * src/Makefile.am: for the .test/Pcb apps-default file (the one used
14837 when running before installation), use the pcb-menu.res file in the
14840 2005-01-21 Dan McMahill * dan AT mcmahill dot net *
14842 * doc/pcb.texi, src/action.c, src/pcb-menu.res: Add "Selected" and
14843 "All" arguments to DisperseElements so you have the option to not
14844 disperse all of them. Add corresponding menu choices.
14846 2005-01-18 Dan McMahill * dan AT mcmahill dot net *
14848 * src/print.c: avoid having text overlaying text in the fab drawing
14849 when a very small number of drill sizes are used. Problem reported
14850 in bug #1100163. Patch provided by Mick.
14852 2005-01-18 Dan McMahill * dan AT mcmahill dot net *
14856 2005-01-18 Dan McMahill * dan AT mcmahill dot net *
14858 * configure.ac: add a --disable-rpath flag to disable hardcoding of
14859 the X11 library path. Default behaviour is unchanged.
14861 2005-01-17 Dan McMahill * dan AT mcmahill dot net *
14863 * src/main.c: use LAYOUT_BOTTOM to always put the status line at the
14864 bottom of the main window. Gets rid of some annoying bugs on
14865 solaris and some other systems where the status line would sometimes
14866 get covered up when the window was resized.
14868 2005-01-17 Dan McMahill * dan AT mcmahill dot net *
14870 * src/create.c: in the message log produced when a via size has to
14871 be increased to meet the minimum copper, add a location to make it
14872 easier to locate the via.
14874 2005-01-17 Dan McMahill * dan AT mcmahill dot net *
14876 * src/Pcb.ad.in, src/main.c: Increase
14877 Pcb.masterForm*cursorPosition.width to make room for metric display.
14878 Provided by Mark Whitis in patch #1042731
14880 2005-01-17 Dan McMahill * dan AT mcmahill dot net *
14882 * doc/pcb.texi: add docs for ChangeClearSize() action. Also apply
14883 some other fixes provided in patch #1068842
14885 2005-01-14 Dan McMahill * dan AT mcmahill dot net *
14887 * lib/misc.inc: increase quoting of $2 in PKG_CRYSTAL to avoid the
14888 refdes from being expanded by m4. Lets you use "X1" as the refdes
14889 in gschem and gsch2pcb
14891 2005-01-13 Dan McMahill * dan AT mcmahill dot net *
14893 * README_FILES/Makefile.in: regen
14895 2005-01-13 Dan McMahill * dan AT mcmahill dot net *
14897 * doc/version.texi: udate data
14899 2005-01-13 Dan McMahill * dan AT mcmahill dot net *
14901 * src/pcb-menu.res: add DisperseElements() to menu
14903 2005-01-13 Dan McMahill * dan AT mcmahill dot net *
14905 * src/control.c, src/main.c, src/resmenu.c: remove some more
14908 2005-01-13 Dan McMahill * dan AT mcmahill dot net *
14910 * doc/pcb.texi, src/action.c, src/action.h, src/main.c: add a
14911 DisperseElements() action which will disperse all elemnents in a
14912 layout. The purpose is to spread out elements which are all on top
14913 of each other at the very beginning of a design.
14915 2005-01-06 Dan McMahill * dan AT mcmahill dot net *
14917 * README, README_FILES/LICENSE, README_FILES/MAILING,
14918 README_FILES/Makefile.am, README_FILES/README: remove duplicated
14919 files and fix some out of date info
14921 2005-01-06 Dan McMahill * dan AT mcmahill dot net *
14923 * src/djopt.c, src/rtree.c: cast some pointers to (void *) when
14924 printing debug output. reduces the # of compiler warnings
14926 2005-01-03 Dan McMahill * dan AT mcmahill dot net *
14928 * src/action.c, src/autoplace.c, src/autoroute.c, src/box.h,
14929 src/buffer.c, src/buffer.h, src/change.c, src/change.h, src/clip.c,
14930 src/clip.h, src/copy.c, src/copy.h, src/create.c, src/create.h,
14931 src/crosshair.c, src/crosshair.h, src/data.c, src/data.h,
14932 src/dev_ps.c, src/dev_rs274x.c, src/draw.c, src/file.c, src/find.c,
14933 src/find.h, src/global.h, src/insert.c, src/insert.h,
14934 src/intersect.c, src/line.c, src/macro.h, src/mirror.c,
14935 src/mirror.h, src/misc.c, src/misc.h, src/move.c, src/move.h,
14936 src/mtspace.c, src/output.c, src/output.h, src/pinout.c,
14937 src/polygon.c, src/polygon.h, src/print.c, src/print.h,
14938 src/printdialog.c, src/rotate.c, src/rotate.h, src/rubberband.c,
14939 src/search.c, src/search.h, src/set.c, src/set.h, src/undo.c,
14940 src/undo.h: change "Location" to "LocationType". Avoids some
14941 confusion with some compilers (SunPRO in particular) when "Location"
14942 is also used as part of a struct.
14944 2004-12-31 Dan McMahill * dan AT mcmahill dot net *
14946 * src/vendor.c: move the regfree() call _before_ the return from the
14947 function that calls it so that it actually happens.
14949 2004-12-12 Dan McMahill * dan AT mcmahill dot net *
14951 * src/vendor.c: remove a compiler warning
14953 2004-11-20 Dan McMahill * dan AT mcmahill dot net *
14955 * src/set.c: add metric output to the location display. Based on
14956 patches provided in patch #1042731 by Mark Whitis
14958 2004-11-20 Dan McMahill * dan AT mcmahill dot net *
14960 * src/main.c: adjust Pcb.masterForm*cursorPosition.width to match
14961 the app-defaults file value
14963 2004-11-20 Dan McMahill * dan AT mcmahill dot net *
14965 * src/actionlist.c: revert previous. Seems to have snuck in by
14966 mistake in the strcmp() cleanup.
14968 2004-11-20 Dan McMahill * dan AT mcmahill dot net *
14970 * src/pcb-menu.res: add <Key>. as the hotkey for toggling 45 degree
14971 line mode. addressed bug #1069665 filed by Mark Whitis.
14973 2004-11-19 Harry Eaton * haceaton AT users dot sourceforge dot net *
14975 * src/crosshair.c: Snap to pads go to pad centers and allow snapping
14976 to element mark too.
14978 ----------------------------------------------------------------------
14980 2004-11-19 Harry Eaton * haceaton AT users dot sourceforge dot net *
14982 * src/action.c, src/actionlist.c, src/autoplace.c, src/create.c,
14983 src/dev_rs274x.c, src/dialog.c, src/djopt.c, src/draw.c,
14984 src/file.c, src/fileselect.c, src/macro.h, src/main.c, src/misc.c,
14985 src/netlist.c, src/print.c, src/rats.c, src/res_parse.y,
14986 src/search.c, src/selector.c, src/set.c, src/vendor.c: Replace all
14987 strcmp with a macro that tests for NULL pointers
14989 ----------------------------------------------------------------------
14991 2004-11-08 Dan McMahill * dan AT mcmahill dot net *
14993 * src/control.c: Restore translation table for the mode buttons.
14994 This seems to fix the "mode buttons are not responsive" bug reported
14995 in bug #716517 Patch provided by Daniel Nilsson in patch #1023078.
14997 2004-11-07 Harry Eaton * haceaton AT users dot sourceforge dot net *
14999 * src/change.c, src/change.h: Allow element names to be edited over
15002 ----------------------------------------------------------------------
15004 2004-11-02 Dan McMahill * dan AT mcmahill dot net *
15006 * src/Pcb.ad.in: Fix the <Key>. binding to toggle 45 degree mode.
15007 Addresses bug #1022800
15009 2004-11-01 Dan McMahill * dan AT mcmahill dot net *
15011 * config.h.in, configure: regen [add support for ElectricFence
15012 debugging. --enable-efence]
15014 2004-11-01 Dan McMahill * dan AT mcmahill dot net *
15016 * configure.ac: add support for ElectricFence debugging.
15019 2004-11-01 Dan McMahill * dan AT mcmahill dot net *
15021 * doc/pcb.texi, doc/version.texi: clarify the units used by PCB a
15024 2004-10-31 Dan McMahill * dan AT mcmahill dot net *
15026 * doc/pcb.texi, src/vendor.c: Allow the use of regular expressions
15027 in the resources which specify elements which should not have their
15028 drill holes mapped to the vendor table.
15030 2004-10-30 Dan McMahill * dan AT mcmahill dot net *
15032 * src/pcb-menu.res, src/vendor.c: Modify the LoadVendor() action so
15033 if the file name is not give, the user is presented with a file
15034 selection dialog box to choose a file. Also add a menu choice for
15037 2004-10-30 Dan McMahill * dan AT mcmahill dot net *
15039 * src/script/pcb.in: Quote "$@" to keep args whole
15041 2004-10-29 Dan McMahill * dan AT mcmahill dot net *
15043 * src/Makefile.am, src/Makefile.in: add missing vendor.h
15045 2004-10-29 Dan McMahill * dan AT mcmahill dot net *
15047 * doc/pcb.texi: document vendor drill mapping
15049 2004-10-29 Dan McMahill * dan AT mcmahill dot net *
15051 * src/Makefile.in, src/actionlist.c: regen after adding vendor
15052 resource/mapping code
15054 2004-10-29 Dan McMahill * dan AT mcmahill dot net *
15056 * src/Makefile.am, src/action.c, src/change.c, src/change.h,
15057 src/create.c, src/pcb-menu.res, src/vendor.c, src/vendor.h: Add
15058 support for a loadable vendor resource. The primary purpose is to
15059 import a list of vendor supported or prefered drill sizes. The
15060 design is then modified to change drills to sizes in the drill list.
15061 Additionally, the vendor resource file may include DRC settings.
15063 2004-10-27 DJ Delorie * dj AT delorie dot com *
15065 * src/resmenu.c: Support multiple actions per line for -action and
15068 2004-10-27 DJ Delorie * dj AT delorie dot com *
15070 * src/pcbtest.sh.in: Quote "$@" to keep args whole
15072 2004-10-27 DJ Delorie * dj AT delorie dot com *
15074 * src/actionlist.c, src/global.h, src/main.c, src/resmenu.c: Add
15075 -action command line, to execute one action string at startup
15077 2004-10-27 DJ Delorie * dj AT delorie dot com *
15079 * src/pcb-menu.res, src/res_lex.l: Add support for comments.
15080 Comments begin with '#' and extend to the end of the line.
15082 2004-10-27 DJ Delorie * dj AT delorie dot com *
15084 * doc/pcb.texi, doc/version.texi: Document resource file comments
15086 2004-10-26 Dan McMahill * dan AT mcmahill dot net *
15088 * src/dialog.c: remove unused variable, make sure return returns a
15089 value on a non-void fn
15091 2004-10-25 Dan McMahill * dan AT mcmahill dot net *
15093 * src/dialog.c: Add date and compile time to the About dialog.
15094 Patch provided as patch #1053444 by Bob Paddock.
15096 2004-10-25 Dan McMahill * dan AT mcmahill dot net *
15098 * src/buffer.c: Fix one more (last one maybe?) hires bug where when
15099 converting a selection or buffer to element, the soldermask relief
15100 is 100x smaller than the default. Address bug report #1049033.
15102 2004-10-25 Dan McMahill * dan AT mcmahill dot net *
15104 * Makefile.in, README_FILES/Makefile.in, example/Makefile.in,
15105 example/libraries/Makefile.in, lib/Makefile.in,
15106 newlib/2_pin_thru-hole_packages/Makefile.in, newlib/Makefile.in,
15107 newlib/analog-devices/Makefile.in, newlib/burr-brown/Makefile.in,
15108 newlib/connectors/Makefile.in, newlib/crystal/Makefile.in,
15109 newlib/cypress/Makefile.in, newlib/electro-optics/Makefile.in,
15110 newlib/generic_SMD_packages/Makefile.in,
15111 newlib/headers/Makefile.in, newlib/msp430/Makefile.in,
15112 newlib/not_vetted_ingo/Makefile.in, newlib/sockets/Makefile.in,
15113 newlib/tests/Makefile.in, newlib/toko/Makefile.in, src/Makefile.in,
15114 src/icons/Makefile.in, src/script/Makefile.in, tools/Makefile.in,
15115 tutorial/Makefile.in: regen so that all Makefile.in files came from
15116 the same version of automake
15118 2004-10-25 Dan McMahill * dan AT mcmahill dot net *
15120 * doc/version.texi: update date on manual since there have been
15123 2004-10-23 Dan McMahill * dan AT mcmahill dot net *
15125 * doc/pcb.texi: minor fixups to make this happy again with the new
15128 2004-10-23 Dan McMahill * dan AT mcmahill dot net *
15130 * doc/texinfo.tex: update to texinfoversion 2004-09-06.16
15132 2004-10-21 Harry Eaton * haceaton AT users dot sourceforge dot net *
15134 * src/change.c: Fix borking of name_tree when changing an element
15137 ----------------------------------------------------------------------
15139 2004-10-21 Dan McMahill * dan AT mcmahill dot net *
15141 * doc/Makefile.in: regen
15143 2004-10-21 Dan McMahill * dan AT mcmahill dot net *
15145 * doc/Makefile.am: - override the mostlyclean-aminfo target to avoid deleting the .dvi,
15146 .html, .pdf, and .ps versions of the manual with 'make clean'.
15147 Since these files already go in the distfile, we don't want a 'make
15148 clean' to remove them as that would force a dependency on TeX. This
15149 issue was noted by Stuart Brorson. - while here let automake handle the html and pdf conversions
15150 automatically. This ends up defaulting to texi2pdf for PDF which
15151 seems to do a better job than ps2pdf anyway.
15153 2004-10-21 Dan McMahill * dan AT mcmahill dot net *
15155 * aclocal.m4, configure: regen
15157 2004-10-21 Dan McMahill * dan AT mcmahill dot net *
15159 * configure.ac: check for ps2pdf which is used for building the
15162 2004-10-21 Dan McMahill * dan AT mcmahill dot net *
15164 * acinclude.m4: improve the quoting so that aclocal-1.9.2 is happier
15166 2004-10-20 Dan McMahill * dan AT mcmahill dot net *
15168 * doc/pcb.texi: minor fixup in the newlib element creation guide.
15170 2004-10-20 Dan McMahill * dan AT mcmahill dot net *
15172 * doc/pcb.texi: Apply several improvements from Bob Paddock
15173 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.
15175 2004-10-17 DJ Delorie * dj AT delorie dot com *
15177 * src/resmenu.c: Sort actions by modifier so that both Ctrl<Key>x
15180 2004-10-17 DJ Delorie * dj AT delorie dot com *
15182 * src/actionlist.c: Regenerated
15184 2004-10-17 DJ Delorie * dj AT delorie dot com *
15186 * src/action.c: Add FlagHaveRegex (have_regex) so that the
15187 SelectByName menu entries work.
15189 2004-10-12 DJ Delorie * dj AT delorie dot com *
15191 * src/global.h: Oops, overzealous patching ;-)
15193 2004-10-12 DJ Delorie * dj AT delorie dot com *
15195 * src/global.h: add non-gcc definition of ATTRIBUTE_UNUSED
15197 2004-10-12 Dan McMahill * dan AT mcmahill dot net *
15199 * src/global.h: add missing #else clause in defining
15200 ATTRIBUTE_UNUSED on non-gcc or older gcc version. Problem noted by
15203 2004-10-08 DJ Delorie * dj AT delorie dot com *
15205 * src/rats.c: Check for numberless pins.
15207 2004-10-08 DJ Delorie * dj AT delorie dot com *
15209 * src/print.c: Print plated and unplated hole counts on separate
15212 2004-10-06 DJ Delorie * dj AT delorie dot com *
15214 * src/print.c: Avoid checking pin numbers for unnumbered pins.
15216 2004-09-24 DJ Delorie * dj AT delorie dot com *
15218 * src/actionlist.c, src/data.c, src/dialog.c, src/global.h,
15219 src/main.c: Add command history to : widget.
15221 2004-09-24 Dan McMahill * dan AT mcmahill dot net *
15223 * README.snapshots: minor tweaks to instructions
15225 2004-09-21 Harry Eaton * haceaton AT users dot sourceforge dot net *
15227 * src/draw.c, src/move.c, src/pinout.c: Fixes for pinout window
15228 crash. Still need to fix pinout scroll range at high zoom
15230 2004-09-21 Harry Eaton * haceaton AT users dot sourceforge dot net *
15232 * src/misc.c: Fix error on non-quarter circle arc bounding box
15235 2004-09-21 Harry Eaton * haceaton AT users dot sourceforge dot net *
15237 * src/menu.c: Don't ask for X,Y coordinates in third-button pop-up
15238 menu; the coordinate is where the cursor was when the menu was
15241 2004-09-21 Harry Eaton * haceaton AT users dot sourceforge dot net *
15243 * src/draw.c: Fixed return value of Emark_callback. (Didn't really
15244 matter, we weren't count number of marks drawn).
15246 2004-09-21 Harry Eaton * haceaton AT users dot sourceforge dot net *
15248 * src/action.c: Allow Ctrl-drag to copy objects in arrow mode.
15250 2004-09-21 Harry Eaton * haceaton AT users dot sourceforge dot net *
15252 * src/polygon.c: Fix bug with polygon clearances from other layers
15255 2004-09-08 Dan McMahill * dan AT mcmahill dot net *
15257 * src/set.c: add an extra digit to the display of metric
15258 measurements. Patch from Gabriel Paubert.
15260 2004-09-04 Dan McMahill * dan AT mcmahill dot net *
15262 * NEWS: mention the background image in 20040903
15264 2004-09-03 Dan McMahill * dan AT mcmahill dot net *
15266 * NEWS: update with pcb-20040903 news items
15268 2004-09-03 Dan McMahill * dan AT mcmahill dot net *
15270 * ChangeLog: update to get ready for next snapshot
15272 2004-09-03 Dan McMahill * dan AT mcmahill dot net *
15274 * README.snapshots: add more detailed snapshot instructions
15276 2004-08-30 Dan McMahill * dan AT mcmahill dot net *
15278 * src/main.c, src/resmenu.h: add missing headers
15280 2004-08-30 Dan McMahill * dan AT mcmahill dot net *
15282 * src/parse_y.y: add missing prototype
15284 2004-08-30 Dan McMahill * dan AT mcmahill dot net *
15286 * src/find.c: remove unused variable
15288 2004-08-30 Dan McMahill * dan AT mcmahill dot net *
15290 * src/res_lex.l: add missing prototype
15292 2004-08-30 Dan McMahill * dan AT mcmahill dot net *
15294 * src/res_parse.y: clean up a few more compiler warnings
15296 2004-08-30 Dan McMahill * dan AT mcmahill dot net *
15298 * src/djopt.c: get rid of a bunch of format string compiler warnings
15299 along with some unused variable warnings
15301 2004-08-30 Dan McMahill * dan AT mcmahill dot net *
15303 * src/action.c, src/autoplace.c, src/autoroute.c, src/buffer.c,
15304 src/change.c, src/clip.c, src/command.c, src/compat.c,
15305 src/control.c, src/copy.c, src/create.c, src/crosshair.c,
15306 src/data.c, src/dev_ps.c, src/dev_rs274x.c, src/dialog.c,
15307 src/djopt.c, src/draw.c, src/drill.c, src/error.c, src/file.c,
15308 src/fileselect.c, src/find.c, src/global.h, src/gui.c, src/heap.c,
15309 src/insert.c, src/intersect.c, src/lgdialog.c, src/library.c,
15310 src/line.c, src/log.c, src/main.c, src/menu.c, src/mirror.c,
15311 src/misc.c, src/move.c, src/mtspace.c, src/mymem.c, src/netlist.c,
15312 src/output.c, src/parse_l.l, src/parse_y.y, src/pinout.c,
15313 src/polygon.c, src/print.c, src/printdialog.c, src/printpanner.c,
15314 src/rats.c, src/remove.c, src/report.c, src/res_lex.l,
15315 src/res_parse.y, src/resmenu.c, src/rotate.c, src/rtree.c,
15316 src/rubberband.c, src/search.c, src/select.c, src/selector.c,
15317 src/set.c, src/sizedialog.c, src/undo.c, src/vector.c: rework the
15318 lines which have static char *rcsid=.... to include an unused
15319 attribute on gcc. This gets rid of a bunch of gcc -Wall warnings
15320 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
15321 dmalloc debugging has been requested.
15323 2004-08-29 Dan McMahill * dan AT mcmahill dot net *
15325 * src/draw.c: fix a "=" instead of "==" bug
15327 2004-08-28 Dan McMahill * dan AT mcmahill dot net *
15329 * README.cvs: update this to more closely match the current reality
15331 2004-08-28 Dan McMahill * dan AT mcmahill dot net *
15333 * src/actionlist.c: add actionlist.c for non-maintainers
15335 2004-08-28 Dan McMahill * dan AT mcmahill dot net *
15337 * configure: regen (if we are using gcc then add -Wall)
15339 2004-08-28 Dan McMahill * dan AT mcmahill dot net *
15341 * configure.ac: if we are using gcc then add -Wall
15343 2004-08-27 Dan McMahill * dan AT mcmahill dot net *
15345 * src/draw.c: add missing header (for isdigit)
15347 2004-08-27 Dan McMahill * dan AT mcmahill dot net *
15349 * src/dev_rs274x.c: use long int in some places to avoid assigning a
15352 2004-08-27 Dan McMahill * dan AT mcmahill dot net *
15354 * src/action.c, src/rtree.c: remove some unused variables
15356 2004-08-27 Dan McMahill * dan AT mcmahill dot net *
15358 * src/output.c, src/resmenu.c: add a missing header
15360 2004-08-27 Dan McMahill * dan AT mcmahill dot net *
15362 * src/main.c: remove an unused variable
15364 2004-08-27 Dan McMahill * dan AT mcmahill dot net *
15366 * doc/version.texi: bump updated date
15368 2004-08-27 Dan McMahill * dan AT mcmahill dot net *
15370 * doc/Makefile.in: regen (add pcb.1 to EXTRA_DIST)
15372 2004-08-27 Dan McMahill * dan AT mcmahill dot net *
15374 * doc/Makefile.am: add pcb.1 to EXTRA_DIST
15376 2004-08-27 Dan McMahill * dan AT mcmahill dot net *
15378 * doc/pcb.texi: document the ExecuteFile() action and the -script
15379 command line option
15381 2004-08-27 Dan McMahill * dan AT mcmahill dot net *
15383 * src/global.h, src/main.c, src/misc.c, src/resmenu.c: add an
15384 ExecuteFile(file) action which executes the actions contained in the
15385 specified file. In addition, add a "-script <filename>" option
15386 which will invoke ExecuteFile(<filename>) upon startup. Eventually
15387 (but not yet) this will be able to be used for things like
15388 generating postscript and RS-274-X output from the command line.
15390 2004-08-26 Dan McMahill * dan AT mcmahill dot net *
15392 * src/resmenu.c: Fix a minor memory leak bug which allocated space
15393 for 10 more pointers everytime invoke_action() was called. While here add a few comments about whats going on in this function.
15395 2004-08-25 Dan McMahill * dan AT mcmahill dot net *
15397 * doc/pcb.texi: update the table of the output files generated by
15400 2004-08-25 Dan McMahill * dan AT mcmahill dot net *
15402 * src/pcb-menu.res: use "Reference Designator" instead of "Name on
15403 PCB" as the former is more standard
15405 2004-08-25 Dan McMahill * dan AT mcmahill dot net *
15407 * src/file.c: exclude Makefile, Makefile.am, and Makefile.in as
15408 valid element names as these may reside in a lib directory
15410 2004-08-25 Dan McMahill * dan AT mcmahill dot net *
15412 * doc/pcb.texi: add a brief comment about what M4 is and where to
15415 2004-08-25 Dan McMahill * dan AT mcmahill dot net *
15417 * src/action.c: add one more Usage message. this time for the
15418 RemoveSelected() action
15420 2004-08-25 Dan McMahill * dan AT mcmahill dot net *
15422 * src/main.c, src/misc.c: allow --version, --help, and --copyright
15423 to also work since those are typically supported by GNU programs.
15425 2004-08-25 Dan McMahill * dan AT mcmahill dot net *
15427 * src/misc.c: In the Usage() function be sure to restore stderr at
15428 the beginning since this function calls exit(). This will ensure
15429 that the Usage() message can actually be seen in all cases. Fixes
15430 the following: clock AT oberon:~$ pcb --version clock AT oberon:~$ noted by Karel Kulhav on the gEDA mailing
15433 2004-08-24 Dan McMahill * dan AT mcmahill dot net *
15435 * doc/Makefile.in: regen after adding pcb.1
15437 2004-08-24 Dan McMahill * dan AT mcmahill dot net *
15439 * doc/Makefile.am, doc/pcb.1: add a man page which says where to
15440 look for the manual
15442 2004-07-31 Dan McMahill * dan AT mcmahill dot net *
15444 * src/find.c: avoid 'inline' unless we're using gcc.
15446 2004-07-31 Dan McMahill * dan AT mcmahill dot net *
15448 * src/res_parse.y: use foo?foo:bar instead of foo?:bar as the latter
15449 is a gcc extension. Makes the irix c compiler happy.
15451 2004-07-29 Dan McMahill * dan AT mcmahill dot net *
15453 * lib/geda.inc: update the 150 and 300 mil width SOIC packages per
15454 the IPC recommendations at footprint.ipc.org. Partially addresses
15455 the "silk on pad" bug noted in bug report #995401.
15457 2004-07-29 Dan McMahill * dan AT mcmahill dot net *
15459 * lib/smt.inc: improve the decision on adding or not adding a silk
15460 arc on the COMMON_SMT_DIL_MIL macro
15462 2004-07-17 Harry Eaton * haceaton AT users dot sourceforge dot net *
15464 * src/print.c: Only clear silk on same side as pad. Patch
15465 contributed by burto
15467 2004-07-10 DJ Delorie * dj AT delorie dot com *
15469 * doc/pcb.texi, src/draw.c, src/draw.h, src/global.h, src/main.c,
15470 src/misc.c: Add limited support for a behind-the-board background
15473 2004-07-08 Dan McMahill * dan AT mcmahill dot net *
15475 * src/rubberband.c: Fix a bug related to checking for the
15476 intersection of a circular region defined by an line end point and
15477 its radius and a rectangular pin/pad. The old code looked for the
15478 intersection of the smallest square which encloses the circular
15479 region and the rectangular pin/pad region. However this method
15480 claims that there are intersections when in fact there are not. For
15481 example a very wide trace has a significant area enclosed by the
15482 square which encloses the circular region defined by the line end
15483 and radius that is not enclosed by the circular region. The new code actually looks for intersection of the circular region
15484 and the square region.
15486 2004-07-07 Dan McMahill * dan AT mcmahill dot net *
15488 * src/rubberband.c: fix some errors where the diameter was used
15489 where the radius should have been used when looking for circular
15490 regions which intersect. Fixes bug report #978412. Partial patch
15491 provided in the bug report, additional bugs fixed by me. Note: a bug still exists when calculating line -> rectangular pad
15492 intersection. A fix will be coming.
15494 2004-07-02 Harry Eaton * haceaton AT users dot sourceforge dot net *
15496 * src/undo.c: Fix UndoChangeMaskSize assuming LINESTRUCT has the
15499 2004-06-30 Dan McMahill * dan AT mcmahill dot net *
15501 * src/pcbtest.sh.in, src/script/pcb.in: when running under gdb set
15502 XAPPLRESDIR and unset XUSERFILESEARCHPATH
15504 2004-06-30 Dan McMahill * dan AT mcmahill dot net *
15506 * src/resmenu.c: make 'str' static so that the memory allocated by
15507 MyStrdup() can properly be freed on the next call of invoke_action.
15509 2004-06-25 DJ Delorie * dj AT delorie dot com *
15511 * src/pcb-menu.res: Change size of selected objects, fix enlarge
15512 options to actually enlarge (bug 978408)
15514 2004-06-25 DJ Delorie * dj AT delorie dot com *
15516 * src/menu.c: Cut and Copy from the popup menu now wait for a click
15517 before acting (bug 978406)
15519 2004-06-24 DJ Delorie * dj AT delorie dot com *
15521 * src/Pcb.ad.in, src/main.c, src/menu.c, src/pcb-menu.res,
15522 src/resmenu.c, src/resmenu.h: Add support for menu accelerators.
15523 Replace hotkey translations with menu accelerators where
15526 2004-06-20 DJ Delorie * dj AT delorie dot com *
15528 * src/Makefile.am, src/Makefile.in: Run gather-actions only if
15531 2004-06-15 Harry Eaton * haceaton AT users dot sourceforge dot net *
15533 * src/action.c, src/autoroute.c, src/const.h, src/menu.c,
15534 src/pcb-menu.res: Fix live routing menu handling; patch segfault on
15535 breaking element with no element specified. Autorouter tweaks.
15537 2004-06-10 Dan McMahill * dan AT mcmahill dot net *
15539 * lib/geda.inc: add a few more 400mil width DIP packages (DIPxM)
15541 2004-06-10 Dan McMahill * dan AT mcmahill dot net *
15543 * src/dev_rs274x.c: make sure we define all aperture codes used by
15544 arcs. Fixes the bug reported in bug #969903 by Werner Hoch where an
15545 arc of a width not used by anything else in the layout does not have
15546 its aperture defined.
15548 2004-06-09 Dan McMahill * dan AT mcmahill dot net *
15550 * src/find.c: fix the function name strings passed to MyCalloc().
15552 2004-06-09 Dan McMahill * dan AT mcmahill dot net *
15554 * src/pcb-menu.res: Do not arbitrarily change the zoom setting
15555 whenever running DRC. Especially if there are no DRC errors, we
15556 don't want/need to change the zoom. Noted by Mark Becker.
15558 2004-06-09 Dan McMahill * dan AT mcmahill dot net *
15560 * src/pcb-menu.res: Add 0.5 and 0.1 mil grid selections. Requested
15561 in RFE #876549 by John Griessen.
15563 2004-06-09 Dan McMahill * dan AT mcmahill dot net *
15565 * src/find.c, src/misc.c, src/misc.h: Save layerstack settings prior
15566 to running DRC and restore them afterwards so that things like
15567 current input layer are not changed by DRC. Noted by Mark Becker.
15569 2004-06-05 Dan McMahill * dan AT mcmahill dot net *
15571 * configure: regen after rpath flag order change
15573 2004-06-05 Dan McMahill * dan AT mcmahill dot net *
15575 * configure.ac: change the order in the list of rpath flags which
15576 are tried out. This is because when -R was tried first, it was
15577 accepted on linux systems because even though gcc didn't like it, it
15578 still exited with 0. The new order seems to do the right thing on
15579 solaris, linux, and netbsd as the compiler now actually gives an
15580 error code for the flags it does not like.
15582 2004-06-05 DJ Delorie * dj AT delorie dot com *
15584 * src/djopt.c: Be even more picky about which line is chosen as an
15587 2004-06-04 Dan McMahill * dan AT mcmahill dot net *
15589 * configure: regen (If --enable-dmalloc is given but dmalloc is not
15590 found then error out instead of disabling dmalloc
15592 2004-06-04 Dan McMahill * dan AT mcmahill dot net *
15594 * configure.ac: If --enable-dmalloc is given but dmalloc is not
15595 found then error out instead of disabling dmalloc
15597 2004-06-03 Dan McMahill * dan AT mcmahill dot net *
15599 * src/action.c: add usage output for several more actions
15601 2004-06-03 Dan McMahill * dan AT mcmahill dot net *
15603 * src/action.c: Add usage output if the input arguments are not
15604 quite right for several actions. Still have more to add, but this
15607 2004-06-02 Dan McMahill * dan AT mcmahill dot net *
15609 * src/default_font: add @ character. Absence noted by Dave
15612 2004-06-01 Dan McMahill * dan AT mcmahill dot net *
15614 * src/pcb-menu.res: add a GetXY() to the 'copy selection to buffer'
15615 menu. Needed to have a resonable reference point for the copy.
15616 Noted by Mark Becker.
15618 2004-06-01 Dan McMahill * dan AT mcmahill dot net *
15620 * configure: regen (fail configuration if Xaw is not found)
15622 2004-06-01 Dan McMahill * dan AT mcmahill dot net *
15624 * configure.ac: fail configuration if Xaw is not found
15626 2004-05-31 Dan McMahill * dan AT mcmahill dot net *
15628 * README.snapshots: add a note to remember to do something better
15629 with versions on the next snapshot
15631 2004-05-31 Dan McMahill * dan AT mcmahill dot net *
15633 * NEWS: remove duplicated line
15635 2004-05-31 Dan McMahill * dan AT mcmahill dot net *
15637 * ChangeLog: update changelog with cvs2cl.pl. This file previously
15640 2004-05-31 Dan McMahill * dan AT mcmahill dot net *
15642 * doc/version.texi: bump updated date to match snapshot date
15644 2004-05-31 Dan McMahill * dan AT mcmahill dot net *
15646 * NEWS: add some release notes for the upcoming 20040530 snapshot
15648 2004-05-29 Dan McMahill * dan AT mcmahill dot net *
15650 * src/change.c: add missing prototype
15652 2004-05-29 Dan McMahill * dan AT mcmahill dot net *
15654 * globalconst.h: set MASKFRAME to be 3 (mils) instead of 0. This
15655 way the soldermask opening will be larger than the pads for
15656 components defined using the older style format which did not
15657 explicitly give soldermask relief size.
15659 2004-05-29 Dan McMahill * dan AT mcmahill dot net *
15661 * doc/pcb.texi: document the SetFlag(), ClrFlag(), and ChangeFlag()
15664 2004-05-29 Dan McMahill * dan AT mcmahill dot net *
15666 * doc/pcb.texi: correct location for Pcb appdefaults file
15668 2004-05-29 Dan McMahill * dan AT mcmahill dot net *
15670 * src/pcbtest.sh.in, src/script/pcb.in: For the pcb wrapper script,
15671 if the first argument is "-gdb", pick off that flag and run pcb
15672 inside of the gdb debugger. Should simplify debugging a bit.
15674 2004-05-29 Dan McMahill * dan AT mcmahill dot net *
15676 * src/action.c, src/action.h, src/change.c, src/change.h,
15677 src/main.c: Add SetFlag, ClrFlag, and ChangeFlag actions. These
15678 currently let you set, clear, or change the square, octagon, or
15679 thermal pads. For example :SetFlag(SelectedVias,thermal)
15680 :ClrFlag(SelectedObjects,square) :ChangeFlag(SelectedPads,octagon,1)
15682 2004-05-28 Dan McMahill * dan AT mcmahill dot net *
15684 * src/djopt.c: Fix the segfault bug noted in bug report #959073 by
15685 Bob Paddock. While here, also fix a bug which can potentially cause
15686 a floating point exception.
15688 2004-05-28 Dan McMahill * dan AT mcmahill dot net *
15690 * config.h.in, configure: regen after adding rint() test
15692 2004-05-28 Dan McMahill * dan AT mcmahill dot net *
15694 * configure.ac: add test for rint()
15696 2004-05-27 Dan McMahill * dan AT mcmahill dot net *
15698 * doc/version.texi: bump date
15700 2004-05-27 Dan McMahill * dan AT mcmahill dot net *
15702 * doc/pcb.texi: add INFO-DIR-SECTION Miscellaneous per bug #957369
15703 submitted by Mike Frysinger
15705 2004-05-23 Dan McMahill * dan AT mcmahill dot net *
15707 * lib/smt.inc: update the COMMON_SMT_2PAD_MIL macro to the newer
15708 element format. With this change, the soldermask relief and
15709 clearance can now be specified for the pads. This fixes the issue
15710 noted recently on the geda mailing list about 0805 footprints from
15711 the ~geda library having soldermask openings which are the same size
15714 2004-05-14 Dan McMahill * dan AT mcmahill dot net *
15716 * src/dev_ps.c: make sure we get the preamble in all EPS output
15717 files. Bug noted by David Koski
15719 2004-05-14 Dan McMahill * dan AT mcmahill dot net *
15721 * lib/geda.inc: add SOJ packages (lots of them)
15723 2004-05-14 Dan McMahill * dan AT mcmahill dot net *
15725 * lib/smt.inc: fix a hi-res bug in the polarity arc silk for some
15728 2004-05-14 Dan McMahill * dan AT mcmahill dot net *
15730 * src/res_parse.y: add missing string.h (for strcmp). Noted by Dave
15733 2004-05-14 Dan McMahill * dan AT mcmahill dot net *
15735 * src/pcbtest.sh.in, src/script/pcb.in: unset XUSERFILESEARCHPATH
15736 which causes a conflict with XAPPLRESDIR
15738 2004-05-14 Dan McMahill * dan AT mcmahill dot net *
15740 * src/resource.h: add a comment
15742 2004-05-13 Dan McMahill * dan AT mcmahill dot net *
15744 * src/misc.c: correct the pin/pad bounding box calculation. Bug
15745 noted by David Koski.
15747 2004-05-05 Dan McMahill * dan AT mcmahill dot net *
15749 * src/macro.h: fix typo in comment
15751 2004-05-02 DJ Delorie * dj AT delorie dot com *
15753 * src/djopt.c, src/pcb-menu.res: Add flag to default to optimizing
15754 only autorouted nets, plus menu option to control it.
15756 2004-05-02 DJ Delorie * dj AT delorie dot com *
15758 * src/resmenu.c: Don't use local var for widget name.
15760 2004-05-02 DJ Delorie * dj AT delorie dot com *
15762 * src/djopt.c: Fix bug wrt intersecting layer groups in miter
15764 2004-05-02 DJ Delorie * dj AT delorie dot com *
15766 * src/menu.c, src/resmenu.c: Remove gcc-isms
15768 2004-05-01 Dan McMahill * dan AT mcmahill dot net *
15770 * doc/pcb.texi: fix typo
15772 2004-05-01 Dan McMahill * dan AT mcmahill dot net *
15774 * src/resmenu.c: protect the inclusion of string.h with
15777 2004-04-30 Dan McMahill * dan AT mcmahill dot net *
15779 * lib/minicircuits.inc: adjust spacing between the 2 rows of pins to
15780 better match the datasheet
15782 2004-04-30 Dan McMahill * dan AT mcmahill dot net *
15784 * lib/smt.inc: clarify a comment
15786 2004-04-30 Dan McMahill * dan AT mcmahill dot net *
15788 * src/Pcb.ad.in, src/action.c, src/file.c, src/find.c,
15789 src/global.h, src/macro.h, src/main.c, src/parse_y.y,
15790 src/sizedialog.c: Add some DRC checking of silkscreen layers.
15791 Currently this check looks for minimum widths of silk lines.
15792 Currently not checked are: - silk polygons - silk text - wide silk lines made by overlapping several narrow silk lines
15794 2004-04-30 Dan McMahill * dan AT mcmahill dot net *
15796 * src/find.c: put a string which is repeated several times into a
15797 #define and use that macro instead.
15799 2004-04-29 Dan McMahill * dan AT mcmahill dot net *
15801 * src/autoplace.h, src/autoroute.h, src/djopt.h, src/drill.h,
15802 src/heap.h, src/intersect.h, src/netlist.h, src/output.c,
15803 src/rats.c, src/resmenu.h, src/rtree.h, src/selector.c,
15804 src/vector.h: RCS Id police
15806 2004-04-29 Dan McMahill * dan AT mcmahill dot net *
15808 * src/Makefile.in: regen
15810 2004-04-29 Dan McMahill * dan AT mcmahill dot net *
15812 * src/Makefile.am: minor fixes to get the distcheck target working
15815 2004-04-29 Dan McMahill * dan AT mcmahill dot net *
15817 * doc/pcb.texi: add a note about the centroid and bill of materials
15818 output. While here add a feature list near the top of the document
15819 to help a new user quickly answer the question "what is pcb and what
15822 2004-04-29 Dan McMahill * dan AT mcmahill dot net *
15824 * src/resmenu.c: RCS Id and config.h police
15826 2004-04-29 Dan McMahill * dan AT mcmahill dot net *
15828 * src/print.c: When printing to RS-274-X also generate a centroid
15829 data file (X-Y data) with the required data to drive a pick and
15830 place machine. The centroid of each part is calculated from the
15831 center of each pin/pad. The rotation is determined by looking at
15832 the angle of pin1 relative to the centroid. In addition, generate a bill of materials file. This lists the
15833 part, quantity, and list of reference designators.
15835 2004-04-29 Dan McMahill * dan AT mcmahill dot net *
15837 * src/res_lex.l, src/res_parse.y, src/resmenu.c: fix some 64-bit
15838 bugs to get this working on my alpha. Of prime importance, an int
15839 isn't big enough to hold a pointer.
15841 2004-04-29 Dan McMahill * dan AT mcmahill dot net *
15843 * src/resource.h: RCS Id police
15845 2004-04-28 Dan McMahill * dan AT mcmahill dot net *
15847 * src/res_lex.l, src/res_parse.y: RCS Id police
15849 2004-04-28 Dan McMahill * dan AT mcmahill dot net *
15851 * src/misc.c: put variable declarations at the beginning of
15852 functions. Avoids syntax error on gcc-2.95
15854 2004-04-28 Dan McMahill * dan AT mcmahill dot net *
15856 * lib/amp.inc, lib/bourns.inc, lib/johnstech.inc,
15857 lib/minicircuits.inc, lib/panasonic.inc: fix the EXTRACT_END flag
15859 2004-04-28 Dan McMahill * dan AT mcmahill dot net *
15861 * lib/Makefile.am, lib/Makefile.in, lib/common.m4, lib/cts.inc: add
15862 cts library containing CTS series 742/3/4/5/6 resistor packs
15864 2004-04-28 Dan McMahill * dan AT mcmahill dot net *
15866 * lib/johnstech.inc, lib/smt.inc: fix refdes silk size
15868 2004-04-28 Dan McMahill * dan AT mcmahill dot net *
15870 * lib/dil.inc, lib/geda.inc: Fix SDIP (shrink DIP) footprints.
15871 Patch from Wojciech Kazubski in RFE #929697 slightly modified by me.
15873 2004-04-28 Dan McMahill * dan AT mcmahill dot net *
15875 * lib/panasonic.inc: Correct the spacing between the rows of pads.
15876 Also fix one of the pad widths on a footprint which was obviously
15879 2004-04-28 Dan McMahill * dan AT mcmahill dot net *
15881 * lib/smt.inc: hires-ify the COMMON_SMT_DIL_MIL macro. The macro
15882 already took input arguments in 1/1000 mil so now we simple only
15883 reduce the resolution to 1/100 mil in the output instead of to 1
15884 mil. This also helps the COMMON_SMT_DIL_MM which calls the
15885 COMMON_SMT_DIL_MIL macro.
15887 2004-04-27 Dan McMahill * dan AT mcmahill dot net *
15889 * src/tmp.txt: test commit #3
15891 2004-04-27 Dan McMahill * dan AT mcmahill dot net *
15893 * src/tmp.txt: test commit #2
15895 2004-04-27 Dan McMahill * dan AT mcmahill dot net *
15897 * src/tmp.txt: test commit
15899 2004-04-27 DJ Delorie * dj AT delorie dot com *
15901 * doc/version.texi: add version.texi for non-maintainers
15903 2004-04-27 DJ Delorie * dj AT delorie dot com *
15905 * doc/pcb.texi, src/Makefile.am, src/Makefile.in, src/Pcb.ad.in,
15906 src/Pcb.ad.raw, src/Pcb.ad.small, src/action.h, src/dialog.c,
15907 src/gather-actions, src/global.h, src/gui.c, src/main.c,
15908 src/menu.c, src/menu.h, src/misc.c, src/misc.h, src/pcb-menu.res,
15909 src/res_lex.l, src/res_parse.y, src/resmenu.c, src/resmenu.h,
15910 src/resource.h, src/set.c, src/sizedialog.c: add file-driven menus
15912 2004-04-27 DJ Delorie * dj AT delorie dot com *
15914 * Makefile.in, ylwrap: add ylwrap
15916 2004-04-27 Harry Eaton * haceaton AT users dot sourceforge dot net *
15918 * src/autoroute.c: More autorouter improvements, some bug fixes
15920 2004-04-26 Harry Eaton * haceaton AT users dot sourceforge dot net *
15922 * src/autoroute.c, src/mtspace.c: Significant improvements to
15923 autorouting of congested designs
15925 2004-04-25 Harry Eaton * haceaton AT users dot sourceforge dot net *
15927 * src/global.h, src/rtree.c: Fix rtree memory management bugs
15929 2004-04-19 Harry Eaton * haceaton AT users dot sourceforge dot net *
15931 * src/rtree.c: Fix a bug that allocates too much memory to store
15934 2004-04-19 Harry Eaton * haceaton AT users dot sourceforge dot net *
15936 * src/buffer.c, src/move.c: Fix some bugs with rtree based name
15939 2004-04-19 Harry Eaton * haceaton AT users dot sourceforge dot net *
15941 * src/autoroute.c, src/find.c, src/rats.c: More autorouter
15942 improvements. Improve trace appearance, slightly speed up and allow
15943 it to use power planes
15945 2004-04-18 Harry Eaton * haceaton AT users dot sourceforge dot net *
15947 * src/action.c, src/change.c, src/copy.c, src/file.c, src/insert.c,
15948 src/move.c, src/polygon.c, src/polygon.h, src/remove.c,
15949 src/rotate.c: Fix pin-in-poly bug; because polys can overlap can
15950 never check one single polygon.
15952 2004-04-12 Harry Eaton * haceaton AT users dot sourceforge dot net *
15954 * src/autoroute.c, src/djopt.c: Restore mistakenly lost lines in
15955 djopt, and various improvements to auto-router
15957 2004-04-11 Harry Eaton * haceaton AT users dot sourceforge dot net *
15959 * src/move.c: Argh, another attempt to properly fix the bug
15961 2004-04-11 Harry Eaton * haceaton AT users dot sourceforge dot net *
15963 * src/djopt.c, src/move.c: Fixup some errors introduced in last
15966 2004-04-09 Harry Eaton * haceaton AT users dot sourceforge dot net *
15968 * src/djopt.c: Fix segfault with edge-connector elements (pads on
15971 2004-04-09 Harry Eaton * haceaton AT users dot sourceforge dot net *
15973 * src/draw.c, src/insert.c, src/move.c, src/output.c: Various bug
15976 2004-03-28 Harry Eaton * haceaton AT users dot sourceforge dot net *
15978 * src/action.c, src/autoroute.c, src/global.h, src/menu.c: Still
15979 more improvements to the router, plus can show it's action on
15982 2004-03-28 Harry Eaton * haceaton AT users dot sourceforge dot net *
15984 * src/autoroute.c, src/box.h, src/mtspace.c, src/mtspace.h: More
15985 improvements to the autorouter
15987 2004-03-26 Harry Eaton * haceaton AT users dot sourceforge dot net *
15989 * src/create.c: Forbid diagonal pads when created externally with an
15992 2004-03-25 Harry Eaton * haceaton AT users dot sourceforge dot net *
15994 * src/autoroute.c: Some improvements to autorouter - still need to
15995 better handle mtspace structures so there is not so much duplicate
15996 effort with multiple route styles
15998 2004-03-23 DJ Delorie * dj AT delorie dot com *
16000 * src/parse_y.y: Provide our own yywrap(), just in case.
16002 2004-03-22 Harry Eaton * haceaton AT users dot sourceforge dot net *
16004 * src/Pcb.ad.in: Fix a couple of key binding bugs
16006 2004-03-22 Harry Eaton * haceaton AT users dot sourceforge dot net *
16008 * src/find.c: Fix some re-drawing issues after finding connections
16010 2004-03-22 Harry Eaton * haceaton AT users dot sourceforge dot net *
16012 * src/autoroute.c: Fix some autoroute bugs; add proper style
16013 handling to autorouter
16015 2004-03-20 Harry Eaton * haceaton AT users dot sourceforge dot net *
16017 * src/report.c, src/rtree.c: Provide better rtree visualization
16020 2004-03-20 Harry Eaton * haceaton AT users dot sourceforge dot net *
16022 * src/buffer.c, src/change.c, src/create.c, src/dev_ps.c,
16023 src/draw.c, src/global.h, src/misc.c, src/move.c, src/move.h,
16024 src/mymem.c, src/print.c, src/printpanner.c, src/remove.c,
16025 src/rotate.c, src/search.c: Use rtree to search element names; fix
16026 postscript paper handling; fix silk names clipped over pins/pads
16028 2004-03-20 Harry Eaton * haceaton AT users dot sourceforge dot net *
16030 * src/rtree.c, src/rtree.h: Slight optimization of tree
16031 construction, plus add means to visualize tree
16033 2004-03-20 Harry Eaton * haceaton AT users dot sourceforge dot net *
16035 * src/file.c: Don't use _LOOP macros for writing files in order to
16036 preserver ordering so that diff can be effectively used on pcb files
16038 2004-03-19 Dan McMahill * dan AT mcmahill dot net *
16040 * lib/johnstech.inc: increase soldermask relief on mounting pads
16042 2004-03-18 Harry Eaton * haceaton AT users dot sourceforge dot net *
16044 * src/const.h, src/draw.c, src/polygon.c: Use sqrt(2)/2 defined in
16045 math library when available
16047 2004-03-18 Harry Eaton * haceaton AT users dot sourceforge dot net *
16049 * src/rats.c: Handle shorts to unnamed elements and pins
16051 2004-03-18 Harry Eaton * haceaton AT users dot sourceforge dot net *
16053 * src/line.c: Forgot to check this in with the _LOOP macro changes
16055 2004-03-18 Harry Eaton * haceaton AT users dot sourceforge dot net *
16057 * src/dev_ps.c, src/print.c: Add assembly drawing output for
16060 2004-03-17 Harry Eaton * haceaton AT users dot sourceforge dot net *
16062 * src/action.c, src/autoplace.c, src/autoroute.c, src/buffer.c,
16063 src/change.c, src/copy.c, src/create.c, src/crosshair.c,
16064 src/dev_ps.c, src/dev_rs274x.c, src/djopt.c, src/draw.c,
16065 src/drill.c, src/file.c, src/find.c, src/global.h, src/library.c,
16066 src/macro.h, src/menu.c, src/mirror.c, src/misc.c, src/move.c,
16067 src/mymem.c, src/netlist.c, src/pinout.c, src/polygon.c,
16068 src/print.c, src/rats.c, src/remove.c, src/report.c, src/rotate.c,
16069 src/rtree.c, src/rubberband.c, src/search.c, src/select.c,
16070 src/set.c, src/undo.c: Change _LOOP macros so that gdb can break
16073 2004-03-17 Dan McMahill * dan AT mcmahill dot net *
16075 * src/rtree.c: revert last change. Some compilers including
16076 gcc-2.95.3 do not like it. ok'ed by harry.
16078 2004-03-14 Harry Eaton * haceaton AT users dot sourceforge dot net *
16080 * src/autoplace.c, src/intersect.c: Various fixes to autoplacement
16083 2004-03-14 Harry Eaton * haceaton AT users dot sourceforge dot net *
16085 * src/set.c: auto drc bug fix
16087 2004-03-14 Harry Eaton * haceaton AT users dot sourceforge dot net *
16089 * src/action.c: Acknowledge placement
16091 2004-03-14 Harry Eaton * haceaton AT users dot sourceforge dot net *
16093 * src/netlist.c, src/rats.c: Fix memory leaks
16095 2004-03-13 Harry Eaton * haceaton AT users dot sourceforge dot net *
16097 * src/rotate.c: corrctly distinguish rubberand rat lines
16099 2004-03-11 Harry Eaton * haceaton AT users dot sourceforge dot net *
16101 * src/rtree.c: Remove unnecessary union identifier to clarify code
16103 2004-03-10 Harry Eaton * haceaton AT users dot sourceforge dot net *
16105 * src/action.c: Fix polygon insert point bug introduced when
16108 2004-03-10 Dan McMahill * dan AT mcmahill dot net *
16110 * lib/geda.inc: 100 pin QFP packages have 100 pins not 72
16112 2004-03-10 Harry Eaton * haceaton AT users dot sourceforge dot net *
16114 * src/error.c: Fix for bad pipe handling under cygwin
16116 2004-03-09 Harry Eaton * haceaton AT users dot sourceforge dot net *
16118 * src/draw.c: Minimize rectangle fills
16120 2004-03-09 Harry Eaton * haceaton AT users dot sourceforge dot net *
16122 * src/polygon.c: Oops - this fixes the error introduced moving to
16125 2004-03-09 Harry Eaton * haceaton AT users dot sourceforge dot net *
16127 * src/crosshair.c: Use SQUARE macro
16129 2004-03-09 Harry Eaton * haceaton AT users dot sourceforge dot net *
16131 * src/action.c, src/change.c, src/create.c, src/rats.c: clean up
16132 code to use SQUARE macro and fix via mask update bug
16134 2004-03-09 Harry Eaton * haceaton AT users dot sourceforge dot net *
16136 * src/draw.c, src/find.c, src/find.h, src/polygon.c, src/print.c,
16137 src/search.c, src/search.h: Erase silk over solder regions when they
16138 cross and display that way on screen
16140 2004-03-08 Harry Eaton * haceaton AT users dot sourceforge dot net *
16142 * src/rtree.c: Streamline code for clustering
16144 2004-03-08 Harry Eaton * haceaton AT users dot sourceforge dot net *
16146 * src/Pcb.ad.in, src/action.c: Added a function { AddRats(Close)
16147 bound to shift-n } that selects the shortest unselected ratline and
16148 centers the screen view on it.
16150 2004-03-08 Harry Eaton * haceaton AT users dot sourceforge dot net *
16152 * src/crosshair.c, src/crosshair.h, src/line.c, src/line.h: New
16153 Auto-DRC line drawing mode implemented.
16155 2004-03-07 Harry Eaton * haceaton AT users dot sourceforge dot net *
16157 * src/draw.c, src/draw.h: Forgot to checkin draw.h; fix some bugs
16158 with really high zoom
16160 2004-03-07 Harry Eaton * haceaton AT users dot sourceforge dot net *
16162 * src/find.c: Avoid doubling DRC clearance between non-clearing
16163 polygons and square pins/pads
16165 2004-03-07 Harry Eaton * haceaton AT users dot sourceforge dot net *
16167 * src/action.c, src/buffer.c, src/change.c, src/create.c,
16168 src/dialog.c, src/draw.c, src/find.c, src/global.h, src/move.c,
16169 src/move.h, src/mymem.c, src/output.c, src/printpanner.c,
16170 src/remove.c, src/rotate.c, src/rtree.c, src/search.c, src/select.c:
16171 Fixes for various bugs introduced with the rtree database
16174 2004-03-07 Harry Eaton * haceaton AT users dot sourceforge dot net *
16176 * src/menu.c, src/misc.c: A couple of bug fixes: absolute negative
16177 value entries (e.g. =-4) also check the correct zoom level in the
16180 2004-03-06 Harry Eaton * haceaton AT users dot sourceforge dot net *
16182 * src/select.h: Fix conditional compile variable name
16184 2004-03-05 Harry Eaton * haceaton AT users dot sourceforge dot net *
16186 * src/library.c, src/mymem.c, src/output.c, src/polygon.c: Fixes for
16187 several memory leaks and some uninitialized varibable bugs
16189 2004-03-05 Harry Eaton * haceaton AT users dot sourceforge dot net *
16191 * src/file.c, src/parse_l.l, src/parse_y.y: Save the DRC settings in
16194 2004-03-04 Harry Eaton * haceaton AT users dot sourceforge dot net *
16196 * src/Pcb.ad.in, src/dev_ps.c, src/global.h, src/printdialog.c,
16197 src/printpanner.c: Fix the postscript print panner bugs introduced
16198 with hi-res; also fix the long-standing bug where the default media
16199 selection wasn't used
16201 2004-03-04 Dan McMahill * dan AT mcmahill dot net *
16203 * src/select.h: one more regex bug fix noted by Matt Ettus
16205 2004-03-04 Dan McMahill * dan AT mcmahill dot net *
16207 * doc/pcb.texi: document the ToggleVisibility action
16209 2004-03-04 Dan McMahill * dan AT mcmahill dot net *
16211 * src/action.c, src/action.h, src/main.c: Added a new action which
16212 will toggle the visibility of layers without clicking on them.
16213 Intended to be bound to keys. Patch provided by Matt Ettus in patch
16216 2004-03-04 Dan McMahill * dan AT mcmahill dot net *
16218 * src/action.c, src/menu.c, src/select.c: enable the regex select
16219 stuff. A trial of a regex select of some components seems to work.
16220 Prompted by patches provided by Matt Ettus in patch submission
16223 2004-03-03 Dan McMahill * dan AT mcmahill dot net *
16225 * lib/geda.inc: a HEADER60_2 should have 60 pins not 50 as noted in
16228 2004-03-03 Harry Eaton * haceaton AT users dot sourceforge dot net *
16230 * globalconst.h, src/action.c, src/draw.c, src/misc.c, src/move.c,
16231 src/report.c: Fixes for element line boundry handling
16233 2004-03-01 Harry Eaton * haceaton AT users dot sourceforge dot net *
16235 * src/move.c: Fix for search element bounding box error
16237 2004-03-01 Harry Eaton * haceaton AT users dot sourceforge dot net *
16239 * src/crosshair.c, src/crosshair.h: These were updated too for the
16240 auto-DRC infrastructure
16242 2004-03-01 Harry Eaton * haceaton AT users dot sourceforge dot net *
16244 * src/action.c, src/change.c, src/control.c, src/control.h,
16245 src/find.c, src/find.h, src/global.h, src/misc.c, src/misc.h,
16246 src/move.c, src/output.c, src/search.c, src/set.c: Some intersection
16247 bug fixes and more rtree infrastructure change Also more ground work
16248 for auto drc line mode
16250 2004-02-29 DJ Delorie * dj AT delorie dot com *
16252 * src/Makefile.in: Regenerate.
16254 2004-02-28 Harry Eaton * haceaton AT users dot sourceforge dot net *
16256 * src/action.c, src/buffer.c, src/change.c, src/const.h,
16257 src/create.c, src/draw.c, src/find.c, src/global.h, src/insert.c,
16258 src/menu.c, src/misc.c, src/misc.h, src/move.c, src/remove.c,
16259 src/search.c, src/set.c, src/undo.c: More usage of rtrees for rats,
16260 pins and pads. Some foundation work for a new auto-drc line drawing
16261 mode, and some bug fixes.
16263 2004-02-27 Harry Eaton * haceaton AT users dot sourceforge dot net *
16265 * src/buffer.c, src/create.c, src/find.c, src/global.h, src/menu.c,
16266 src/misc.c, src/move.c, src/mymem.c, src/remove.c, src/rtree.c,
16267 src/rtree.h: Store pins/pads in rtree
16269 2004-02-27 Harry Eaton * haceaton AT users dot sourceforge dot net *
16271 * src/rtree.c: Fixes for some compiler warnings
16273 2004-02-27 Harry Eaton * haceaton AT users dot sourceforge dot net *
16275 * src/clip.c, src/clip.h: Oh Yeah, the drawing clipping won't work
16276 without these files!
16278 2004-02-27 Harry Eaton * haceaton AT users dot sourceforge dot net *
16280 * src/Makefile.am, src/Makefile.in, src/action.c, src/create.c,
16281 src/data.c, src/data.h, src/draw.c, src/global.h, src/insert.c,
16282 src/insert.h, src/line.c, src/line.h, src/macro.h, src/misc.c,
16283 src/output.c, src/parse_y.y, src/polygon.c, src/report.c: Fixes for
16284 clipping the drawing. Simple saturation could change the geometry
16285 when zoomed way in. Also some organizational changes to make the
16286 code easier to maintain.
16288 2004-02-27 Dan McMahill * dan AT mcmahill dot net *
16290 * doc/pcb.texi: clarify the pad creation a little
16292 2004-02-27 Harry Eaton * haceaton AT users dot sourceforge dot net *
16294 * src/misc.c: Fix for text bounding box error
16296 2004-02-25 Harry Eaton * haceaton AT users dot sourceforge dot net *
16298 * src/action.c, src/const.h, src/crosshair.c, src/menu.c: Add a
16299 feature to display design-rule clearance arround prospective
16302 2004-02-25 Harry Eaton * haceaton AT users dot sourceforge dot net *
16304 * src/find.c, src/search.c: Fix some DRC bugs with square pins
16306 2004-02-20 Dan McMahill * dan AT mcmahill dot net *
16308 * lib/misc.inc: whitespace fix
16310 2004-02-19 Dan McMahill * dan AT mcmahill dot net *
16312 * lib/connector.inc: add a PKG_CONNECTOR_DIL for 2 column headers
16313 with DIL pin numbering. This fixes the HEADER*_1 entries in the
16314 geda footprint library.
16316 2004-02-17 Harry Eaton * haceaton AT users dot sourceforge dot net *
16318 * src/buffer.c: Fix typo that caused bug in via tree handling.
16320 2004-02-17 Dan McMahill * dan AT mcmahill dot net *
16322 * lib/generic.list: remove extra whitespace in generic208_lqfp
16324 2004-02-17 Harry Eaton * haceaton AT users dot sourceforge dot net *
16326 * src/action.c, src/draw.c, src/find.c, src/polygon.c,
16327 src/polygon.h, src/print.c, src/report.c, src/rtree.c: Bug fixes for
16328 design rule checking
16330 2004-02-17 Harry Eaton * haceaton AT users dot sourceforge dot net *
16332 * src/rtree.c: Make rtree routines reentrant since now they are used
16333 that way when drawing during DRC.
16335 2004-02-15 Harry Eaton * haceaton AT users dot sourceforge dot net *
16337 * src/action.c, src/autoplace.c, src/autoroute.c, src/buffer.c,
16338 src/change.c, src/copy.c, src/create.c, src/dev_ps.c, src/draw.c,
16339 src/file.c, src/find.c, src/find.h, src/global.h, src/insert.c,
16340 src/macro.h, src/main.c, src/mirror.c, src/mirror.h, src/misc.c,
16341 src/misc.h, src/move.c, src/move.h, src/mtspace.c, src/mymem.c,
16342 src/mymem.h, src/parse_y.y, src/pinout.c, src/polygon.c,
16343 src/polygon.h, src/print.c, src/rats.c, src/remove.c, src/report.c,
16344 src/rotate.c, src/rotate.h, src/rtree.c, src/rtree.h,
16345 src/rubberband.c, src/search.c, src/search.h, src/select.c,
16346 src/undo.c: Large number of changes to keep most of the database in
16347 rtrees and avoid linear searches
16349 2004-02-15 Harry Eaton * haceaton AT users dot sourceforge dot net *
16351 * src/change.c: Fix minor bug in pad clearance adjustment
16353 2004-02-15 Dan McMahill * dan AT mcmahill dot net *
16355 * src/Makefile.in: regen after adding compat.c/h
16357 2004-02-15 Dan McMahill * dan AT mcmahill dot net *
16359 * src/Makefile.am, src/compat.c, src/compat.h, src/draw.c,
16360 src/set.c: add a place for putting our own implementation of
16361 missing/broken functions. For now add a logf and expf to help
16364 2004-02-15 Dan McMahill * dan AT mcmahill dot net *
16366 * tools/Makefile.am, tools/Makefile.in: install MergePCBPS and
16369 2004-02-15 Dan McMahill * dan AT mcmahill dot net *
16371 * config.h.in, configure: regen after adding logf and expf checks
16373 2004-02-15 Dan McMahill * dan AT mcmahill dot net *
16375 * configure.ac: add checks for logf and expf
16377 2004-02-15 Dan McMahill * dan AT mcmahill dot net *
16379 * src/create.c, src/dev_ps.c, src/dev_rs274x.c, src/draw.c,
16380 src/file.c, src/global.h, src/parse_l.l, src/parse_y.y: add a way to
16381 control the scale factor associated with thermals. This is a global
16382 value stored in the .pcb file. The default gives the same behaviour
16383 as previous version. By increasing the scale factor, the width of
16384 the spokes increases. Eventually it would be nice to make this be
16387 2004-02-15 Dan McMahill * dan AT mcmahill dot net *
16389 * src/report.c: correct the drill diameter in the drill report after
16392 2004-02-14 Harry Eaton * haceaton AT users dot sourceforge dot net *
16394 * src/polygon.c: Fixed syntax error and potential bug
16396 2004-02-14 Harry Eaton * haceaton AT users dot sourceforge dot net *
16398 * src/draw.c: Elliminate pre-computing of octagons - there are too
16399 many with .01 mil resolution
16401 2004-02-14 Harry Eaton * haceaton AT users dot sourceforge dot net *
16403 * src/find.c, src/polygon.c: More non-clearing polygon fixes
16405 2004-02-14 Harry Eaton * haceaton AT users dot sourceforge dot net *
16407 * src/buffer.c, src/dev_rs274x.c, src/draw.c, src/macro.h,
16408 src/menu.c, src/polygon.c, src/print.c, src/rubberband.c: Fixed some
16409 bugs with non-clearing polygons and made GROUP_LOOP macro
16411 2004-02-14 Harry Eaton * haceaton AT users dot sourceforge dot net *
16413 * src/action.c, src/crosshair.c, src/macro.h: Fix arc creation tool
16414 when crosshair is on-axis with start point
16416 2004-02-14 Harry Eaton * haceaton AT users dot sourceforge dot net *
16418 * src/report.c, src/report.h: Report on points and fix some
16421 2004-02-14 Harry Eaton * haceaton AT users dot sourceforge dot net *
16423 * src/set.c: Fix formatting mismatch
16425 2004-02-14 Harry Eaton * haceaton AT users dot sourceforge dot net *
16427 * src/polygon.c: Fixup includes and trivial bug
16429 2004-02-14 Harry Eaton * haceaton AT users dot sourceforge dot net *
16431 * src/move.c: fix includes for Message()
16433 2004-02-14 Harry Eaton * haceaton AT users dot sourceforge dot net *
16435 * src/menu.c: add left/right buffer mirror menu entry
16437 2004-02-13 Harry Eaton * haceaton AT users dot sourceforge dot net *
16439 * src/Pcb.ad.in, src/action.c, src/find.c, src/global.h,
16440 src/insert.c, src/main.c, src/polygon.c, src/polygon.h,
16441 src/print.c, src/report.c, src/set.c, src/sizedialog.c: More
16442 complete and sensible DRC checking
16444 2004-02-13 Harry Eaton * haceaton AT users dot sourceforge dot net *
16446 * src/move.c, src/search.c: Prevent changing layers of locked
16447 objects, find ratlines before other layer objects
16449 2004-02-13 Harry Eaton * haceaton AT users dot sourceforge dot net *
16451 * src/action.c, src/buffer.c, src/buffer.h, src/menu.c: Added
16452 function to mirror the buffer
16454 2004-02-13 Harry Eaton * haceaton AT users dot sourceforge dot net *
16456 * src/buffer.c: Recalculate arc bounding box when swaping the side
16458 2004-02-13 Harry Eaton * haceaton AT users dot sourceforge dot net *
16460 * src/dialog.c: Updated about dialog
16462 2004-02-13 Harry Eaton * haceaton AT users dot sourceforge dot net *
16464 * src/rats.c: Use warn color on pins/pads even when netname is known
16466 2004-02-13 Harry Eaton * haceaton AT users dot sourceforge dot net *
16468 * src/change.c: Only change masks with size change when they're
16469 non-zero to begin with
16471 2004-02-13 Harry Eaton * haceaton AT users dot sourceforge dot net *
16473 * src/change.c: Allow +0 change to mask size to make it equal the
16476 2004-02-13 Harry Eaton * haceaton AT users dot sourceforge dot net *
16478 * src/action.c, src/change.c, src/select.c: Proper handling of all
16481 2004-02-13 Harry Eaton * haceaton AT users dot sourceforge dot net *
16483 * src/action.c, src/select.c: Handle element name size changing
16486 2004-02-12 Harry Eaton * haceaton AT users dot sourceforge dot net *
16488 * src/change.c: Automatically adjust mask size when copper size is
16491 2004-02-10 Harry Eaton * haceaton AT users dot sourceforge dot net *
16493 * src/print.c: Fixed output bug with persistant thermal changes
16495 2004-02-09 Dan McMahill * dan AT mcmahill dot net *
16497 * tools/Makefile.in: regen after adding Merge_dimPCBPS
16499 2004-02-09 Dan McMahill * dan AT mcmahill dot net *
16501 * tools/Makefile.am: add Merge_dimPCBPS
16503 2004-02-09 Dan McMahill * dan AT mcmahill dot net *
16505 * tools/MergePCBPS, tools/Merge_dimPCBPS: #/bin/sh -> #!/bin/sh to
16506 make these execute correctly. While here, add RCS Id's.
16508 2004-02-07 Harry Eaton * haceaton AT users dot sourceforge dot net *
16510 * src/find.c: Find more errors when skipping through DRCs
16512 2004-02-06 Harry Eaton * haceaton AT users dot sourceforge dot net *
16514 * src/action.c, src/find.c, src/find.h: Added feature to continue
16515 checking drc after first error is found
16517 2004-02-06 Harry Eaton * haceaton AT users dot sourceforge dot net *
16519 * src/change.c: Prevent clearance size adjustment from changing
16520 joined lines to unjoined
16522 2004-02-06 Harry Eaton * haceaton AT users dot sourceforge dot net *
16524 * src/set.c: Fix bug where local reference mark was not erased
16527 2004-02-06 Harry Eaton * haceaton AT users dot sourceforge dot net *
16529 * src/file.c: Fix bug where loading pcb didn't restore saved view
16532 2004-02-06 Harry Eaton * haceaton AT users dot sourceforge dot net *
16534 * src/global.h, src/undo.c: Fixed undo change text size bug
16535 introduced with hi-res changes
16537 2004-02-06 Harry Eaton * haceaton AT users dot sourceforge dot net *
16539 * src/draw.c: Special drawing mode to examine planes for break-up
16540 due to tracks routing through them.
16542 2004-02-06 Harry Eaton * haceaton AT users dot sourceforge dot net *
16544 * tools/Merge_dimPCBPS: Add a tool to merge to PCB postscript files
16545 where the first one is printed in a light gray color. This is useful
16546 for making an assembly drawing where the front tracks are shown in
16547 light gray while the silkscreen is solid black.
16549 2004-02-06 Harry Eaton * haceaton AT users dot sourceforge dot net *
16551 * src/draw.c, src/macro.h, src/polygon.c, src/print.c: Make
16552 persistant thermal flags for easier changes to polygons
16554 2004-02-05 Harry Eaton * haceaton AT users dot sourceforge dot net *
16556 * src/action.c, src/const.h, src/menu.c: Add mode for poly viewing
16557 to help spot broken planes
16559 2004-02-05 Harry Eaton * haceaton AT users dot sourceforge dot net *
16561 * src/main.c: Fix text scaling intialization
16563 2004-02-05 Harry Eaton * haceaton AT users dot sourceforge dot net *
16565 * src/dev_rs274x.c: Fix a couple of gerber bugs introduced with
16568 2004-02-05 Harry Eaton * haceaton AT users dot sourceforge dot net *
16570 * src/polygon.c: Warn on unplated holes piercing polygons
16572 2004-02-05 Harry Eaton * haceaton AT users dot sourceforge dot net *
16574 * src/print.c: Don't clear pure-holes in polygons
16576 2004-02-05 Harry Eaton * haceaton AT users dot sourceforge dot net *
16578 * src/polygon.c: Fix bug in PIP flags
16580 2004-02-05 Harry Eaton * haceaton AT users dot sourceforge dot net *
16582 * src/dev_rs274x.c, src/find.c, src/find.h, src/print.c: Fixed some
16583 gerber hi-res bugs and some complex ground-plane print issues
16585 2004-02-04 DJ Delorie * dj AT delorie dot com *
16587 * example/libraries/Makefile.in: * Detect re_comp(), regcomp(), and <regex.h> (select.c doesn't use
16588 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
16589 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.
16591 2004-02-04 DJ Delorie * dj AT delorie dot com *
16593 * Makefile.in, README_FILES/Makefile.in, aclocal.m4, config.h.in,
16594 configure, configure.ac, doc/Makefile.am, doc/Makefile.in,
16595 example/Makefile.in, lib/Makefile.in,
16596 newlib/2_pin_thru-hole_packages/Makefile.in, newlib/Makefile.in,
16597 newlib/analog-devices/Makefile.in, newlib/burr-brown/Makefile.in,
16598 newlib/connectors/Makefile.in, newlib/crystal/Makefile.in,
16599 newlib/cypress/Makefile.in, newlib/electro-optics/Makefile.in,
16600 newlib/generic_SMD_packages/Makefile.in,
16601 newlib/headers/Makefile.in, newlib/msp430/Makefile.in,
16602 newlib/not_vetted_ingo/Makefile.in, newlib/sockets/Makefile.in,
16603 newlib/tests/Makefile.in, newlib/toko/Makefile.in, src/Makefile.am,
16604 src/Makefile.in, src/icons/Makefile.in, src/script/Makefile.in,
16605 tools/Makefile.in, tutorial/Makefile.in: * Detect re_comp(), regcomp(), and <regex.h> (select.c doesn't use
16606 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
16607 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.
16609 2004-02-04 DJ Delorie * dj AT delorie dot com *
16611 * src/draw.c: Don't assume that an all-ones pixel is white.
16613 2004-02-03 Harry Eaton * haceaton AT users dot sourceforge dot net *
16615 * src/menu.c: Fixes for hi-res bugs
16617 2004-02-03 Harry Eaton * haceaton AT users dot sourceforge dot net *
16619 * src/print.c: Changes to the fab drawing for improved clarity and
16620 allows for a an outline route by naming a layer "outline" or "route"
16622 2004-02-03 Harry Eaton * haceaton AT users dot sourceforge dot net *
16624 * src/error.c: Added a line count to Message mechanism
16626 2004-02-03 Dan McMahill * dan AT mcmahill dot net *
16628 * NEWS: note harry's hi-res changes.
16630 2004-02-02 Harry Eaton * haceaton AT users dot sourceforge dot net *
16632 * src/autoroute.c, src/heap.c, src/heap.h: More speed-ups for the
16635 2004-02-01 Harry Eaton * haceaton AT users dot sourceforge dot net *
16637 * src/print.c: Change gerber drill files to have .cnc suffix and
16638 name the component side output group "front", the solder-side output
16641 2004-02-01 Harry Eaton * haceaton AT users dot sourceforge dot net *
16643 * src/action.c, src/parse_y.y: A couple of bug fixes for arc
16646 2004-01-31 Harry Eaton * haceaton AT users dot sourceforge dot net *
16648 * src/autoroute.c: More speed-up changes. Limit the intial search in
16651 2004-01-31 Harry Eaton * haceaton AT users dot sourceforge dot net *
16653 * src/rtree.c: Minor comment changes and some tiny tweaks
16655 2004-01-31 Harry Eaton * haceaton AT users dot sourceforge dot net *
16657 * src/buffer.c: Fix bug in element name mirroring when elements are
16658 created on the solder side
16660 2004-01-30 Harry Eaton * haceaton AT users dot sourceforge dot net *
16662 * src/main.c: Fix initial screen/offscreen zoom
16664 2004-01-30 Harry Eaton * haceaton AT users dot sourceforge dot net *
16666 * src/polygon.c: Some Hi-res fixes plus elliminat too close to
16669 2004-01-30 Harry Eaton * haceaton AT users dot sourceforge dot net *
16671 * src/output.c: Fixed the auto-scroll broken when switched to hi-res
16673 2004-01-30 Harry Eaton * haceaton AT users dot sourceforge dot net *
16675 * src/rats.c: Fix bug introduced changing to hi-res
16677 2004-01-29 Harry Eaton * haceaton AT users dot sourceforge dot net *
16679 * src/autoroute.c, src/box.h: More speed ups to the auto-router
16680 code. This is only code streamlining, there is no algorithm change
16682 2004-01-28 Harry Eaton * haceaton AT users dot sourceforge dot net *
16684 * src/kdtree.c, src/kdtree.h: The kdtree has been replaced with
16685 rtree which is faster given the way it is used
16687 2004-01-28 Harry Eaton * haceaton AT users dot sourceforge dot net *
16689 * src/rtree.c, src/rtree.h: rtree for faster rectangle intersection
16692 2004-01-28 Harry Eaton * haceaton AT users dot sourceforge dot net *
16694 * src/Makefile.am, src/Makefile.in, src/autoplace.c,
16695 src/autoroute.c, src/mtspace.c: replaced kd-tree with r-tree for
16696 faster auto-routing
16698 2004-01-20 Harry Eaton * haceaton AT users dot sourceforge dot net *
16700 * src/action.c: Fix for smashing element in place
16702 2004-01-19 Harry Eaton * haceaton AT users dot sourceforge dot net *
16704 * src/autoroute.c, src/heap.h, src/kdtree.c, src/kdtree.h: Fixes for
16705 auto-router with hi-res and some speed-ups of its operation
16707 2004-01-19 Harry Eaton * haceaton AT users dot sourceforge dot net *
16709 * src/find.c: Speed up polygon/polygon intersection testing. The
16710 special case is *all* points inside polygon, not just some points so
16711 only one point need be tested
16713 2004-01-19 Harry Eaton * haceaton AT users dot sourceforge dot net *
16715 * src/const.h, src/data.c, src/data.h, src/draw.c, src/draw.h,
16716 src/file.c, src/global.h, src/macro.h, src/main.c, src/menu.c,
16717 src/parse_y.y, src/pinout.c, src/set.c, src/set.h: Modifications to
16718 support arbitrary zoom ratios
16720 2004-01-18 Harry Eaton * haceaton AT users dot sourceforge dot net *
16722 * src/menu.c: Fix for intermediate zoom levels
16724 2004-01-18 Harry Eaton * haceaton AT users dot sourceforge dot net *
16726 * globalconst.h, src/Pcb.ad.in, src/data.c, src/draw.c,
16727 src/macro.h, src/output.c, src/parse_y.y, src/set.c: Added some
16728 intermediate zooms, so now it goes by sqrt(2)
16730 2004-01-17 Harry Eaton * haceaton AT users dot sourceforge dot net *
16732 * src/menu.c: Add menu item to auto-route only selected rats
16734 2004-01-17 Harry Eaton * haceaton AT users dot sourceforge dot net *
16736 * src/output.c: Increase the minimum size of the panner control
16738 2004-01-17 Harry Eaton * haceaton AT users dot sourceforge dot net *
16740 * src/main.c: Fix some default sizes for hi-res when no resource
16743 2004-01-15 Harry Eaton * haceaton AT users dot sourceforge dot net *
16745 * src/action.c, src/action.h, src/menu.c: Added support to smash an
16748 2004-01-15 Harry Eaton * haceaton AT users dot sourceforge dot net *
16750 * src/action.c, src/const.h, src/menu.c, src/misc.c, src/set.c:
16751 Added Local reference measurement for line drawing and allow
16752 not-overriding the mark position for moves and line-drawing
16754 2004-01-15 Harry Eaton * haceaton AT users dot sourceforge dot net *
16756 * src/Pcb.ad.in, src/action.c, src/main.c, src/set.c, src/set.h: Fix
16757 to keep mode setting and add a function for moving an object by/to
16758 numerical coordinates
16760 2004-01-14 Harry Eaton * haceaton AT users dot sourceforge dot net *
16762 * src/Pcb.ad.in, src/action.c, src/command.c, src/misc.c: Tweaks for
16763 case-insensitive command arguments, keyboard adjust of grid and
16764 fixed a couple of absolute/relative bugs.
16766 2004-01-14 Harry Eaton * haceaton AT users dot sourceforge dot net *
16768 * src/misc.c: Turned off debugging messages
16770 2004-01-14 Harry Eaton * haceaton AT users dot sourceforge dot net *
16772 * src/macro.h, src/misc.c, src/output.c: Fixes for several
16773 solder-side viewing bugs introduced with hi-res changes
16775 2004-01-13 Harry Eaton * haceaton AT users dot sourceforge dot net *
16777 * src/djopt.c: Fixed for new definition of mils for savings report
16779 2004-01-13 Harry Eaton * haceaton AT users dot sourceforge dot net *
16781 * src/box.h, src/mtspace.c: Fix for mtspace coalesce; hi-res
16782 requires floats for area computation
16784 2004-01-10 Harry Eaton * haceaton AT users dot sourceforge dot net *
16786 * src/action.c, src/draw.c, src/report.c: Fixes for text scaling
16788 2004-01-10 Dan McMahill * dan AT mcmahill dot net *
16790 * src/parse_y.y: One more hi-res buglet. Correct parsing of 'Arc'.
16791 Thanks to Bill Wilson for catching this one.
16793 2004-01-09 Dan McMahill * dan AT mcmahill dot net *
16795 * lib/smt.inc: partially undo the last change with respect to
16796 quoting. Only quote $2. This keeps the reference designator from
16797 being expanded as desired but lets the Description field get
16798 expanded as desired.
16800 2004-01-08 Harry Eaton * haceaton AT users dot sourceforge dot net *
16802 * Makefile.in, aclocal.m4, configure, doc/Makefile.in,
16803 lib/Makefile.in, newlib/2_pin_thru-hole_packages/Makefile.in,
16804 newlib/Makefile.in, newlib/analog-devices/Makefile.in,
16805 newlib/burr-brown/Makefile.in, newlib/connectors/Makefile.in,
16806 newlib/crystal/Makefile.in, newlib/cypress/Makefile.in,
16807 newlib/electro-optics/Makefile.in,
16808 newlib/generic_SMD_packages/Makefile.in,
16809 newlib/headers/Makefile.in, newlib/msp430/Makefile.in,
16810 newlib/not_vetted_ingo/Makefile.in, newlib/sockets/Makefile.in,
16811 newlib/tests/Makefile.in, newlib/toko/Makefile.in, src/Pcb.ad.in,
16812 src/action.c, src/icons/Makefile.in, src/main.c, src/misc.c,
16813 src/script/Makefile.in: Fixes for absolute/relative size change.
16814 Also added repeat last typed command and fixed a few hi-res bugs.
16816 2004-01-06 Harry Eaton * haceaton AT users dot sourceforge dot net *
16818 * src/set.c: Fixed sign display in fractional mil part of crosshair
16820 2004-01-06 Harry Eaton * haceaton AT users dot sourceforge dot net *
16822 * src/action.c: Fix for Display(Save|Restore)
16824 2004-01-05 Dan McMahill * dan AT mcmahill dot net *
16826 * src/print.c: fix generation of fab drawing with the high
16829 2004-01-05 Dan McMahill * dan AT mcmahill dot net *
16831 * src/dev_rs274x.c: fix a couple of other bugs related to the high
16832 res changes. In particular, correct the aperture for the fab
16833 drawing and for the outline. Also fix up text output.
16835 2004-01-05 Dan McMahill * dan AT mcmahill dot net *
16837 * lib/johnstech.inc: Convert to a high resolution footprint. Pads
16838 are a little more accurate now.
16840 2004-01-05 Dan McMahill * dan AT mcmahill dot net *
16842 * src/dev_rs274x.c: correct the aperture definition output lines and
16843 the drill tool definition output lines after the hi-res change.
16844 Gerber output should be ok again.
16846 2004-01-05 Harry Eaton * haceaton AT users dot sourceforge dot net *
16848 * src/Pcb.ad.in: fixed missing continuation in scroll commands
16850 2004-01-05 Harry Eaton * haceaton AT users dot sourceforge dot net *
16852 * configure, configure.ac, globalconst.h, src/Makefile.in,
16853 src/Pcb.ad.in, src/action.c, src/action.h, src/autoplace.c,
16854 src/autoplace.h, src/autoroute.c, src/autoroute.h, src/box.h,
16855 src/buffer.c, src/buffer.h, src/change.c, src/change.h,
16856 src/const.h, src/copy.c, src/copy.h, src/create.c, src/create.h,
16857 src/crosshair.c, src/crosshair.h, src/data.c, src/data.h,
16858 src/dev_ps.c, src/dev_rs274x.c, src/djopt.c, src/djopt.h,
16859 src/draw.c, src/drill.h, src/file.c, src/find.c, src/find.h,
16860 src/global.h, src/gui.c, src/gui.h, src/heap.h, src/insert.c,
16861 src/insert.h, src/intersect.c, src/intersect.h, src/kdtree.c,
16862 src/kdtree.h, src/macro.h, src/main.c, src/menu.c, src/mirror.c,
16863 src/mirror.h, src/misc.c, src/misc.h, src/move.c, src/move.h,
16864 src/mtspace.c, src/mtspace.h, src/netlist.c, src/netlist.h,
16865 src/output.c, src/output.h, src/parse_y.y, src/pinout.c,
16866 src/polygon.c, src/polygon.h, src/print.c, src/print.h, src/rats.c,
16867 src/report.c, src/rotate.c, src/rotate.h, src/rubberband.c,
16868 src/search.c, src/search.h, src/set.c, src/set.h, src/sizedialog.c,
16869 src/undo.c, src/undo.h, src/vector.h: Many changes to add 0.01 mil
16872 2004-01-02 Harry Eaton * haceaton AT users dot sourceforge dot net *
16874 * src/change.c: Display pin/pad number when prompting for name
16876 2004-01-02 Harry Eaton * haceaton AT users dot sourceforge dot net *
16878 * src/draw.c: Minor correction to not attempt to write vertical null
16881 2004-01-02 Dan McMahill * dan AT mcmahill dot net *
16883 * doc/refcard.tex: add missing RCS Id
16885 2004-01-02 Dan McMahill * dan AT mcmahill dot net *
16887 * src/autoplace.c, src/autoplace.h, src/autoroute.c,
16888 src/autoroute.h, src/box.h, src/djopt.c, src/djopt.h, src/drill.h,
16889 src/gui.c, src/gui.h, src/heap.c, src/heap.h, src/intersect.c,
16890 src/intersect.h, src/kdtree.c, src/kdtree.h, src/mtspace.c,
16891 src/mtspace.h, src/netlist.c, src/netlist.h, src/rats.c,
16892 src/vector.c, src/vector.h: add missing RCS Id
16894 2004-01-01 Dan McMahill * dan AT mcmahill dot net *
16896 * lib/smt.inc: - modify the 2 pad smt base definition to put the origin of the
16897 footprint at the common centroid. Useful both for driving pick and
16898 place as noted in bug report 716519 and for centering a part on a
16899 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.
16901 2004-01-01 Harry Eaton * haceaton AT users dot sourceforge dot net *
16903 * src/draw.c: Font metrics need to be outside TO_DRAW() macros
16905 2004-01-01 Dan McMahill * dan AT mcmahill dot net *
16907 * lib/smt.inc: fix some quoting
16909 2004-01-01 Dan McMahill * dan AT mcmahill dot net *
16911 * lib/amphenol.inc: bump copyright date
16913 2004-01-01 Dan McMahill * dan AT mcmahill dot net *
16915 * lib/amphenol.inc: properly pass down the arguments to the
16916 underlying macro for the PKG_AMPHENOL_ARFX123{0,1,2} packages
16918 2004-01-01 Dan McMahill * dan AT mcmahill dot net *
16920 * doc/wishlist.txt: add element versioning and database of good
16923 2004-01-01 Dan McMahill * dan AT mcmahill dot net *
16925 * doc/wishlist.txt: add a features wish list. not sure if this is
16926 the best place for such a thing, but for now it'll do.
16928 2003-12-31 Dan McMahill * dan AT mcmahill dot net *
16930 * lib/Makefile.in: regen after adding amp library
16932 2003-12-31 Dan McMahill * dan AT mcmahill dot net *
16934 * lib/Makefile.am, lib/amp.inc, lib/common.m4: add Amp connector
16935 library. Currently its populated with the 767054 series of Mictor
16938 2003-12-31 Harry Eaton * haceaton AT users dot sourceforge dot net *
16940 * src/menu.c: Fixed menu selection of metric grids: The
16941 C-preprocessor won't change string literals of course.
16943 2003-12-31 Harry Eaton * haceaton AT users dot sourceforge dot net *
16945 * src/Pcb.ad.in, src/const.h, src/draw.c, src/misc.c: Added vertical
16946 text support for pinout descriptions
16948 2003-12-31 Dan McMahill * dan AT mcmahill dot net *
16950 * lib/smt.inc: with reverse order numbering in COMMON_SMT_DIL_MIL
16951 and COMMON_SMT_DIL_MM, make sure the pin number matches the pin
16954 2003-12-31 Dan McMahill * dan AT mcmahill dot net *
16956 * lib/panasonic.inc: fix typo in a comment
16958 2003-12-31 Dan McMahill * dan AT mcmahill dot net *
16960 * lib/geda.inc, lib/smt.inc: add SC70_3, SC70_4, SC70_5, and SC70_6
16961 footprints (the 3,4,5, and 6 pin SC70 family).
16963 2003-12-31 Dan McMahill * dan AT mcmahill dot net *
16965 * lib/to.inc: rename the SOT23 and SOT323 footprints here to
16966 SOT23_CEL and SOT323_CEL to avoid a conflict with the ones defined
16967 in the geda library. The "CEL" part reflects that the pin numbering
16968 is the one used by CEL which is different from what others seem to
16971 2003-12-31 Dan McMahill * dan AT mcmahill dot net *
16973 * lib/Makefile.in: regen after adding panasonic library
16975 2003-12-31 Dan McMahill * dan AT mcmahill dot net *
16977 * lib/Makefile.am, lib/common.m4, lib/panasonic.inc: Add the
16978 panasonic EXB series of chip resistor arrays.
16980 2003-12-31 Dan McMahill * dan AT mcmahill dot net *
16982 * lib/smt.inc: deal with SMT DIL packages with an odd number of pads
16985 2003-12-31 Dan McMahill * dan AT mcmahill dot net *
16987 * lib/smt.inc: add an extra argument to COMMON_SMT_DIL_MIL and
16988 COMMON_SMT_DIL_MM to allow the pins to go in the reverse order to
16989 deal with some non-standard pinouts like the mini-circuits KK81
16992 2003-12-31 Dan McMahill * dan AT mcmahill dot net *
16994 * lib/Makefile.in: regen after adding minicircuits
16996 2003-12-31 Dan McMahill * dan AT mcmahill dot net *
16998 * lib/Makefile.am, lib/common.m4, lib/minicircuits.inc: add several
16999 minicircuits packages
17001 2003-12-30 Dan McMahill * dan AT mcmahill dot net *
17003 * lib/Makefile.in: regen after adding bourns library
17005 2003-12-30 Dan McMahill * dan AT mcmahill dot net *
17007 * lib/geda.inc, lib/smt.inc: - add a handful of 3 pin SMT EMI filter footprints - add US* family of SMT packages.
17009 2003-12-30 Dan McMahill * dan AT mcmahill dot net *
17011 * lib/connector.inc: add through hole test point footprint.
17013 2003-12-30 Dan McMahill * dan AT mcmahill dot net *
17015 * lib/common.m4: include the bourns library
17017 2003-12-30 Dan McMahill * dan AT mcmahill dot net *
17019 * lib/amphenol.inc, lib/amphenol.list, lib/amphenol.m4: add some
17020 more SMA connectors
17022 2003-12-30 Dan McMahill * dan AT mcmahill dot net *
17024 * lib/Makefile.am, lib/bourns.inc: add bourns 3224G, 3224J, 3224W,
17025 and 3224X trim pots
17027 2003-12-30 Dan McMahill * dan AT mcmahill dot net *
17029 * doc/pcb.texi: add note about the dangers of whitespace in .list
17032 2003-12-30 Dan McMahill * dan AT mcmahill dot net *
17034 * lib/amphenol.m4: correct capitalization for amphenol_ARFX1229
17036 2003-12-30 Dan McMahill * dan AT mcmahill dot net *
17038 * lib/amphenol.list: remove extra whitespace at end of ARFX1229 line
17040 2003-12-30 Dan McMahill * dan AT mcmahill dot net *
17042 * lib/Makefile.in: regen after adding amphenol library
17044 2003-12-30 Dan McMahill * dan AT mcmahill dot net *
17046 * lib/Makefile.am, lib/amphenol.inc, lib/amphenol.list,
17047 lib/amphenol.m4, lib/common.m4: Add amphenol connectors. Start out
17048 with the ARFX1229 SMA connector.
17050 2003-12-30 Dan McMahill * dan AT mcmahill dot net *
17052 * lib/connector.inc, lib/geda.inc: add MTA100 connectors
17054 2003-12-30 Harry Eaton * haceaton AT users dot sourceforge dot net *
17056 * src/action.c, src/autoplace.c, src/buffer.c, src/change.c,
17057 src/copy.c, src/create.c, src/crosshair.c, src/dev_ps.c,
17058 src/dev_rs274x.c, src/dialog.c, src/draw.c, src/drill.c,
17059 src/file.c, src/find.c, src/library.c, src/menu.c, src/mirror.c,
17060 src/misc.c, src/move.c, src/mymem.c, src/netlist.c, src/pinout.c,
17061 src/polygon.c, src/print.c, src/rats.c, src/remove.c, src/report.c,
17062 src/rotate.c, src/rubberband.c, src/search.c, src/select.c,
17063 src/set.c, src/undo.c: Ok, this complete the formating changes.
17066 2003-12-29 Harry Eaton * haceaton AT users dot sourceforge dot net *
17068 * src/file.c: Fixed another glitch during format change
17070 2003-12-29 Harry Eaton * haceaton AT users dot sourceforge dot net *
17072 * src/find.c: Fixed a polygon/polygon intersection bug where a wrong
17073 point index was used
17075 2003-12-29 Harry Eaton * haceaton AT users dot sourceforge dot net *
17077 * src/file.c: Restored accidentally deleted line during formating
17080 2003-12-29 Harry Eaton * haceaton AT users dot sourceforge dot net *
17082 * src/action.c, src/autoplace.c, src/buffer.c, src/change.c,
17083 src/command.c, src/control.c, src/copy.c, src/create.c,
17084 src/crosshair.c, src/dev_ps.c, src/dev_rs274x.c, src/dialog.c,
17085 src/draw.c, src/drill.c, src/error.c, src/file.c, src/fileselect.c,
17086 src/find.c, src/gui.c, src/insert.c, src/kdtree.c, src/lgdialog.c,
17087 src/library.c, src/log.c, src/main.c, src/menu.c, src/mirror.c,
17088 src/misc.c, src/move.c, src/mtspace.c, src/mymem.c, src/netlist.c,
17089 src/output.c, src/pinout.c, src/polygon.c, src/print.c,
17090 src/printdialog.c, src/printpanner.c, src/rats.c, src/remove.c,
17091 src/report.c, src/rotate.c, src/rubberband.c, src/search.c,
17092 src/select.c, src/set.c, src/sizedialog.c, src/undo.c, src/vector.c:
17093 Cleaned up coding formating from long-ago indent diaster with _LOOP
17094 macros. These should be formating changes only.
17096 2003-12-28 Harry Eaton * haceaton AT users dot sourceforge dot net *
17098 * src/insert.c, src/polygon.c, src/remove.c, src/search.c,
17099 src/search.h, src/undo.c: fixed polygon undo bugs; speed-up of undo
17102 2003-12-26 DJ Delorie * dj AT delorie dot com *
17104 * src/djopt.c: Use the layer groups to determine which layers are
17105 solder and component. Fix bugs in check2 and padcleaner where
17106 deleted lines weren't skipped.
17108 2003-12-26 Harry Eaton * haceaton AT users dot sourceforge dot net *
17110 * src/djopt.c: added undo capability for trace optimizations
17112 2003-12-25 Harry Eaton * haceaton AT users dot sourceforge dot net *
17114 * src/autoroute.c, src/copy.c, src/dev_rs274x.c, src/draw.c,
17115 src/find.c, src/macro.h, src/polygon.c, src/print.c,
17116 src/rubberband.c, src/undo.c: using macro LAYER_PTR(n) to go from
17117 layer number to pointer. this simplifies the code a little bit
17119 2003-12-25 Harry Eaton * haceaton AT users dot sourceforge dot net *
17121 * src/move.c, src/remove.c: simplified ObjectMove undo serial number
17124 2003-12-24 Harry Eaton * haceaton AT users dot sourceforge dot net *
17126 * src/select.c: fixed bug where null F->Pad could be called (e.g.
17129 2003-12-22 Harry Eaton * haceaton AT users dot sourceforge dot net *
17131 * src/netlist.c: Both ends of an added rat line must have named
17134 2003-12-22 Harry Eaton * haceaton AT users dot sourceforge dot net *
17136 * src/find.c, src/search.c: Fixed various DRC errors with arcs,
17137 square pads and square pins
17139 2003-12-21 Harry Eaton * haceaton AT users dot sourceforge dot net *
17141 * src/netlist.c: Disallow drawing rat-lines to unnamed elements;
17142 fixed a problem with netlist window being doubly disposed.
17144 2003-12-20 Dan McMahill * dan AT mcmahill dot net *
17146 * lib/smt.inc: add -*- m4 -*-
17148 2003-12-17 Dan McMahill * dan AT mcmahill dot net *
17150 * lib/Makefile.am, lib/Makefile.in, lib/common.m4,
17151 lib/gen_list.awk, lib/gen_m4.awk, lib/johnstech.inc: add footprints
17152 for Johnstech Evaluation Socket for QFN packages Johnstech Socket
17153 Part Numbers 724810 through 724839. Note, the footprint has been
17154 checked by hand but not yet verified through fabrication.
17156 2003-12-01 Dan McMahill * dan AT mcmahill dot net *
17158 * configure: regen after -R fix
17160 2003-12-01 Dan McMahill * dan AT mcmahill dot net *
17162 * configure.ac: When trying out the various -R, --rpath, etc.
17163 compiler flags, actually try them out instead of just claiming to.
17164 Addresses part of bug report 850369 filed by Tom Saunders.
17166 2003-11-29 Harry Eaton * haceaton AT users dot sourceforge dot net *
17168 * src/crosshair.c: Allow snap to line end-points and vias when
17171 2003-11-20 Harry Eaton * haceaton AT users dot sourceforge dot net *
17173 * src/dev_rs274x.c: restored bug fixes that got lost, fixed some
17174 bugs and cleaned the code a little
17176 2003-11-20 Harry Eaton * haceaton AT users dot sourceforge dot net *
17178 * src/dev_rs274x.c: removed #include <varargs> that accidentally got
17179 in on the last commit
17181 2003-11-19 Harry Eaton * haceaton AT users dot sourceforge dot net *
17183 * src/dev_rs274x.c, src/print.c: Changed print.c and dev_rs274x.c in
17184 order to provide negative image ground planes for gerber output when
17185 possible. Some fab vendors can't handle or charge extra for
17186 composite ground planes which is the motivation for this. Negative
17187 image planes are made when (1) There are no lines, arcs, text, or
17188 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
17189 assumed to consume all of the area and only the thermal reliefs and
17190 pin/via clearances are needed. haceaton 11/19/03
17192 2003-11-13 Dan McMahill * dan AT mcmahill dot net *
17194 * doc/Makefile.in: regen
17196 2003-11-13 Dan McMahill * dan AT mcmahill dot net *
17198 * doc/Makefile.am: add rules for creating postscript and png from a
17199 tgif drawing. Needed for improved docs.
17201 2003-11-13 Dan McMahill * dan AT mcmahill dot net *
17203 * config.h.in: regen after adding Xpm check
17205 2003-11-13 Dan McMahill * dan AT mcmahill dot net *
17207 * src/print.c: Change how the polarity of the soldermask relief
17208 layer is handled. The polarity is not changed but it now correctly
17209 works for postscript output as well as gerber output. Previously
17210 the postscript output produced white on a white background or black
17211 on a black background. This addresses PR 825680 filed by Russ Dill.
17213 2003-11-08 Dan McMahill * dan AT mcmahill dot net *
17215 * configure, configure.ac: use AC_PATH_PROGS to search through a
17216 list of candidates for wish
17218 2003-11-08 Dan McMahill * dan AT mcmahill dot net *
17220 * configure, src/Makefile.in, src/script/Makefile.in: regen after
17221 moving the pcb script to a subdirectory.
17223 2003-11-08 Dan McMahill * dan AT mcmahill dot net *
17225 * configure.ac, src/Makefile.am, src/pcb.in,
17226 src/script/Makefile.am, src/script/pcb.in: move the pcb script to a
17227 subdirectory to avoid name conflicts with the Pcb application
17228 default file on systems such as cygwin that are not case sensitive.
17230 2003-11-08 Dan McMahill * dan AT mcmahill dot net *
17232 * configure, configure.ac: search for libXpm which is needed on
17235 2003-11-08 Dan McMahill * dan AT mcmahill dot net *
17237 * configure, configure.ac: add a few more variants of wish (wish83,
17238 cygwish80, etc) to search for
17240 2003-10-15 Dan McMahill * dan AT mcmahill dot net *
17242 * src/dev_rs274x.c: fix two bugs related to gerber file generation.
17243 The first bug is triggered when the first aperture used in a file is
17244 the same as the last aperture used in the previous file. In this
17245 case the aperture selection code is missing from the output file. The second bug is when the first point drawn has its Y coordinate
17246 (in PCB coordinates) equal to zero. The output will be at gerber Y
17247 coordinate zero which is on the opposite side of the board. Thanks to Gabriel Paubert (paubert at iram dot es) for noting these
17248 bugs and supplying a patch.
17250 2003-10-13 Dan McMahill * dan AT mcmahill dot net *
17252 * src/report.c: correct the reporting of soldermask relief for pads
17253 and via's. Patch provided by Gabriel Paubert, paubert at iram dot
17254 es on the geda-dev mailing list.
17256 2003-10-11 Dan McMahill * dan AT mcmahill dot net *
17258 * src/report.c: show pad names in object report. patch supplied in
17259 bug report 787711 by Olof Tangrot.
17261 2003-10-11 Dan McMahill * dan AT mcmahill dot net *
17263 * src/cmask.grb, src/cpaste.grb, src/csilk.grb, src/pdrill.grb,
17264 src/smask.grb, src/spaste.grb, src/ssilk.grb, src/udrill.grb: remove
17265 some output files which should have never been in CVS.
17267 2003-10-03 Dan McMahill * dan AT mcmahill dot net *
17269 * lib/Makefile.in: regen after qfn.inc additions
17271 2003-10-03 Dan McMahill * dan AT mcmahill dot net *
17273 * lib/Makefile.am, lib/common.m4, lib/geda.inc, lib/qfn.inc: add 60
17274 members of the Quad Flat No-lead (QFN) package family. Based on
17275 package drawings downloaded from www.maxim-ic.com and Intersil
17276 technical brief TB389.1 "PCB Land Pattern Desugn and Surface Mount
17277 Guidelines for QFN (MLFP) Packages".
17279 2003-10-01 Dan McMahill * dan AT mcmahill dot net *
17281 * doc/Xdefaults.tgif, doc/pad.obj: add a figure to help with
17282 describing the pads. Also add an Xresources file needed to convert
17283 the tgif drawing to png
17285 2003-09-30 Dan McMahill * dan AT mcmahill dot net *
17287 * doc/pcb.texi: update copyright for last changes
17289 2003-09-30 Dan McMahill * dan AT mcmahill dot net *
17291 * configure, example/Makefile.in, example/libraries/Makefile.in:
17292 regen after example/libraries addition
17294 2003-09-30 Dan McMahill * dan AT mcmahill dot net *
17296 * configure.ac, example/Makefile.am: add example/libraries/Makefile
17298 2003-09-30 Dan McMahill * dan AT mcmahill dot net *
17300 * doc/pcb.texi, example/libraries/Makefile.am,
17301 example/libraries/example.inc, example/libraries/example.list,
17302 example/libraries/example.m4: Add two new chapters to the manual.
17303 The first attempts to provide some more documentation about library
17304 creation. It includes a complete example of adding footprints using
17305 M4 style libraries as well as giving instructions on creating newlib
17306 style footprints. The second added chapter shows how to take a
17307 design from start to finish using gEDA as the schematic capture and
17308 PCB as the layout tool. This chapter still needs work, but early
17309 feedback is good and its better than no documentation.
17311 2003-09-03 DJ Delorie * dj AT delorie dot com *
17313 * src/dev_ps.c, src/dev_rs274x.c, src/draw.c, src/drill.c,
17314 src/print.c, src/report.c: Add FAB drawing page. Use thinner traces
17317 2003-09-03 Dan McMahill * dan AT mcmahill dot net *
17319 * aclocal.m4, configure: regen
17321 2003-09-03 Dan McMahill * dan AT mcmahill dot net *
17323 * acinclude.m4, configure.ac: don't hardcode -lXaw in the FUNCPROTO
17326 2003-09-03 Dan McMahill * dan AT mcmahill dot net *
17330 2003-09-03 Dan McMahill * dan AT mcmahill dot net *
17332 * configure.ac: add a --with-xaw= option that lets you select an
17333 alternative to Xaw. For example, --with-xaw=Xaw3d will search for
17336 2003-09-03 Dan McMahill * dan AT mcmahill dot net *
17338 * doc/pcb.texi: add brief section about the trace optimizer.
17340 2003-08-31 Dan McMahill * dan AT mcmahill dot net *
17342 * lib/geda.inc: change 'Square' to 'Rectangular' to the comment for
17343 the rectangular QFP section.
17345 2003-08-30 Dan McMahill * dan AT mcmahill dot net *
17347 * lib/gen_geda_list.awk, lib/gen_geda_m4.awk: remove the lines which
17348 tried to copy the source file RCS Id to the generated files. CVS
17349 broke this feature by expanding keywords on me.
17351 2003-08-30 Dan McMahill * dan AT mcmahill dot net *
17353 * lib/geda.list, lib/geda.m4: these files are autogenerated now
17355 2003-08-30 Dan McMahill * dan AT mcmahill dot net *
17357 * lib/geda.inc, lib/qfpdj.inc: rework the QFP packages fixing
17358 several bugs and greatly expanding the footprint database. Patches
17359 supplied in bug report 785400 by Wojciech Kazubski. Many thanks for
17362 2003-08-30 Dan McMahill * dan AT mcmahill dot net *
17364 * lib/common.m4: add qfpdj.inc to the include list
17366 2003-08-30 Dan McMahill * dan AT mcmahill dot net *
17368 * lib/CreateLibraryContents.sh.in: when given a -I flag, look both
17369 there and the current directory for .list files. Needed for
17370 building outside the source tree directory.
17372 2003-08-30 Dan McMahill * dan AT mcmahill dot net *
17374 * lib/Makefile.am, lib/Makefile.in, lib/gen_geda_list.awk,
17375 lib/gen_geda_m4.awk: add scripts which autogenerate geda.m4 and
17376 geda.list from geda.inc.
17378 2003-08-26 Dan McMahill * dan AT mcmahill dot net *
17380 * lib/geda.inc, lib/geda.list, lib/geda.m4, lib/plcc.inc: Add
17381 20,28,32 pin PLCC footprints, both unsocketed and socketed (through
17382 hole). Provided in bug report 777539 by Troy Jacobson.
17384 2003-08-23 DJ Delorie * dj AT delorie dot com *
17386 * src/djopt.c: Support however many layers are configured.
17388 2003-08-16 Dan McMahill * dan AT mcmahill dot net *
17390 * doc/pcb.texi: add info-dir entry
17392 2003-08-16 Dan McMahill * dan AT mcmahill dot net *
17394 * newlib/2_pin_thru-hole_packages/Makefile.in: regen
17396 2003-08-16 Dan McMahill * dan AT mcmahill dot net *
17398 * newlib/2_pin_thru-hole_packages/Makefile.am: Makefile.am is not a
17399 library component so do not install it as one
17401 2003-08-15 Dan McMahill * dan AT mcmahill dot net *
17403 * README.snapshots: add a note on creating snapshots
17405 2003-08-15 Dan McMahill * dan AT mcmahill dot net *
17407 * doc/pcb.texi: add DJ and myself
17409 2003-08-14 Dan McMahill * dan AT mcmahill dot net *
17411 * lib/lsi.list, lib/lsi.m4: Remove extra space in one of the pin
17412 names in AT90S2313_dil and add missing AT90S4434_dil AT90S8535_dil
17413 AT90S8535_plcc. Patch provided in bug report 770829 by Daniel
17416 2003-08-06 Dan McMahill * dan AT mcmahill dot net *
17418 * lib/texas_inst_voltage_reg.m4: fix parse error on uA7952C. Patch
17419 provided in bug report 770829 by Daniel Mooney (dbmk).
17421 2003-08-05 Dan McMahill * dan AT mcmahill dot net *
17423 * lib/texas_inst_amplifier.m4: fix parse errors in TL083 and ua747.
17424 Patch provided in bug report 770829 by Daniel Mooney (dbmk).
17426 2003-08-05 Dan McMahill * dan AT mcmahill dot net *
17428 * lib/jerry.m4: fix parse errors on DS1225 and DS1230. Patch
17429 provided in bug report 770829 by Daniel Mooney (dbmk).
17431 2003-07-25 DJ Delorie * dj AT delorie dot com *
17433 * : second dummy commit
17435 2003-07-20 Dan McMahill * dan AT mcmahill dot net *
17437 * README.cvs: note that autoconf 2.13 is not new enough and mention
17438 how to get the version
17440 2003-07-20 DJ Delorie * dj AT delorie dot com *
17442 * src/dev_rs274x.c: polygon fills must have a defined aperture also
17444 2003-07-20 DJ Delorie * dj AT delorie dot com *
17446 * src/dev_rs274x.c, src/print.c: Solder mask layers are reliefs and
17447 normally are positive prints. Support inverted gerber plots.
17449 2003-07-07 DJ Delorie * dj AT delorie dot com *
17451 * src/dev_rs274x.c: Properly scale outline and alignment. Add
17452 segment to alignment to act as registration.
17454 2003-07-06 DJ Delorie * dj AT delorie dot com *
17456 * src/report.c: Sort drill report by hole size, list total hole
17459 2003-07-02 DJ Delorie * dj AT delorie dot com *
17461 * src/djopt.c: Fix off-by-one bug in handling bloat. Be more
17462 careful about cleaning up traces within pads.
17464 2003-07-01 DJ Delorie * dj AT delorie dot com *
17466 * src/sizedialog.c: The minimum size of a board should never be more
17467 than the current actual size of the board.
17469 2003-06-25 DJ Delorie * dj AT delorie dot com *
17471 * src/Pcb.ad.in, src/change.c: Automatically set CLEARLINEFLAG if
17472 the user modifies the clearance. Add keys for changing clearance by
17473 selection instead of pointer.
17475 2003-06-22 DJ Delorie * dj AT delorie dot com *
17477 * src/Makefile.in: Regenerate with djopt.c
17479 2003-06-22 DJ Delorie * dj AT delorie dot com *
17481 * src/action.c, src/const.h, src/crosshair.c, src/menu.c: Add
17482 orthogonal move feature
17484 2003-06-22 DJ Delorie * dj AT delorie dot com *
17486 * src/Pcb.ad.in, src/action.c, src/const.h, src/draw.c, src/menu.c:
17489 2003-06-22 DJ Delorie * dj AT delorie dot com *
17491 * src/Makefile.am, src/Pcb.ad.in, src/djopt.c, src/djopt.h,
17492 src/main.c, src/menu.c: Add trace optimizer.
17494 2003-06-13 Dan McMahill * dan AT mcmahill dot net *
17496 * Makefile.in, aclocal.m4, config.h.in, configure, depcomp: add
17497 automake/conf output to make it easier for users to build
17499 2003-06-13 Dan McMahill * dan AT mcmahill dot net *
17501 * README_FILES/Makefile.in, doc/Makefile.in, example/Makefile.in,
17502 lib/Makefile.in, newlib/2_pin_thru-hole_packages/Makefile.in,
17503 newlib/Makefile.in, newlib/analog-devices/Makefile.in,
17504 newlib/burr-brown/Makefile.in, newlib/connectors/Makefile.in,
17505 newlib/crystal/Makefile.in, newlib/cypress/Makefile.in,
17506 newlib/electro-optics/Makefile.in,
17507 newlib/generic_SMD_packages/Makefile.in,
17508 newlib/headers/Makefile.in, newlib/msp430/Makefile.in,
17509 newlib/not_vetted_ingo/Makefile.in, newlib/sockets/Makefile.in,
17510 newlib/tests/Makefile.in, newlib/toko/Makefile.in, src/Makefile.in,
17511 src/icons/Makefile.in, tools/Makefile.in, tutorial/Makefile.in: add
17512 the automake/conf generated files to make building from CVS sources
17515 2003-06-13 Dan McMahill * dan AT mcmahill dot net *
17517 * src/error.c: only declare sys_nerr if we're using the sys_errlist
17518 interface. This fixes compilation on NetBSD/alpha using gcc-3.3.
17520 2003-06-13 Dan McMahill * dan AT mcmahill dot net *
17522 * src/dev_rs274x.c: remove unused varargs.h header which breaks
17523 gcc-3.3 compilation
17525 2003-06-05 Dan McMahill * dan AT mcmahill dot net *
17527 * src/action.c, src/menu.c: Allow '=' at the beginning of the zoom
17528 exponent to indicate an absolute number rather than a relative
17529 number. This lets a value of "=-2" be used to indicate an absolute
17530 -2 while "-2" still indicates a relative -2. Also correct the
17531 position of the check mark on the zoom menu. Patch from DJ Delorie.
17533 2003-05-26 Dan McMahill * dan AT mcmahill dot net *
17535 * src/file.c, src/fileselect.c, src/misc.c, src/misc.h: Fix a bug in
17536 the way the current working directory is found. This caused the
17537 file dialog box to always start in the library tree directory. In addition add a loop in ParseLibraryTree() to allow multiple
17538 newlib style directory tree's to be specified in the Xresource.
17539 This provides an easy way to have per-user and per-project library
17540 directories. These directories may either be specified as an
17541 absolute or relative path. Patches provided by Tony (droghedra at users dot sourceforge dot
17542 net) in bug report 736010 with minor changes by me.
17544 2003-05-22 Dan McMahill * dan AT mcmahill dot net *
17546 * lib/Makefile.am: add missing rules.inc
17548 2003-05-22 Dan McMahill * dan AT mcmahill dot net *
17550 * src/menu.c: add 2 more levels of zooming to the menu. Inspired by
17551 an email from DJ Delorie on the gEDA mailing list.
17553 2003-05-21 Dan McMahill * dan AT mcmahill dot net *
17555 * src/parse_l.l: change yy_current_buffer to YY_CURRENT_BUFFER.
17556 This addresses the build \ problem reported in bug 734403 and also
17557 agrees with the man page for \ flex-2.5.4.\ \ In addition add a
17558 %option yylineno to address part of bug 736010\ where the line
17559 number associated with a parse error is incorrectly\ displayed as 1.
17562 2003-05-20 Dan McMahill * dan AT mcmahill dot net *
17564 * lib/common.m4: add missing bga.inc and resistor_adjust.inc
17565 included. The latter addresses part of bug report 734403.
17567 2003-03-17 Dan McMahill * dan AT mcmahill dot net *
17569 * : remove spurious file which should not have been imported. Noted
17572 2003-03-17 Dan McMahill * dan AT mcmahill dot net *
17574 * ...: remove spurious file which should not have been imported.
17575 Noted by Mark Becker.
17577 2003-03-05 Dan McMahill * dan AT mcmahill dot net *
17579 * src/error.c: if strerror() is present on our system then use it
17580 instead of trying to use sys_errlist. Patch from harry, with the
17581 check for strerror from me.
17583 2003-03-05 Dan McMahill * dan AT mcmahill dot net *
17585 * configure.ac: move the strerror test up in the configure process
17586 so we don't need to link to the X libraries for the test.
17588 2003-03-05 Dan McMahill * dan AT mcmahill dot net *
17590 * configure.ac: add check for strerror()
17592 2003-02-24 Dan McMahill * dan AT mcmahill dot net *
17594 * src/autoroute.c: when checking for a NULL pointer compare to NULL
17595 rather than 0 for enhanced portability.
17597 2003-02-21 Dan McMahill * dan AT mcmahill dot net *
17599 * configure.ac: bump to 1.99o since a 1.99n version was posted to
17600 the geda list. We should avoid further updates to this version
17601 number until a release. If users want snapshots, they can get them
17604 2003-02-21 Dan McMahill * dan AT mcmahill dot net *
17606 * src/kdtree.c: change c++ style comments to c style and remove the
17607 use of non-static initializers to allow the SunPRO c compiler to be
17608 able to compile this file.
17610 2003-02-21 Dan McMahill * dan AT mcmahill dot net *
17612 * src/autoroute.c: coding style fixes to allow this to be compiled
17613 with the SunPRO c compiler. Changes are moving from c++ style
17614 comments to c style comments and getting rid of non-static
17617 2003-02-21 Dan McMahill * dan AT mcmahill dot net *
17619 * README.cvs: - add section on checking out via anoncvs and updating via anoncvs. - point to INSTALL document for what to do afte bootstrapping the
17622 2003-02-20 Dan McMahill * dan AT mcmahill dot net *
17624 * doc/Imakefile, doc/pcb.texi.in, doc/pcb.texi.raw,
17625 doc/refcard.tex.in, doc/refcard.tex.raw: remove obsolete files
17627 2003-02-20 Dan McMahill * dan AT mcmahill dot net *
17629 * : these don't really belong in CVS. The sources are in the doc/
17630 directory and they do get generated and put into the distfile when a
17633 2003-02-20 Dan McMahill * dan AT mcmahill dot net *
17635 * : remove obsolete file (the contents live in pcb/newlib/ now
17637 2003-02-20 Dan McMahill * dan AT mcmahill dot net *
17639 * lib/CreateLibrary.sh.raw, lib/CreateLibraryContents.sh.raw,
17640 lib/Imakefile, lib/QueryLibrary.sh.raw: remove obsolete files
17642 2003-02-20 Dan McMahill * dan AT mcmahill dot net *
17644 * src/CreateSedScript.sh, src/Imakefile: remove obsolete files
17646 2003-02-20 Dan McMahill * dan AT mcmahill dot net *
17648 * src/1.grb, src/2.grb, src/3.grb, src/4.grb, src/5.grb: remove
17649 unneeded output files
17651 2003-02-20 Dan McMahill * dan AT mcmahill dot net *