============================================== 'gschem and Friends' Electronic Design Suite ============================================== Copyright (C) 1998-2015 gEDA Developers This file documents important user-visible changes in gEDA/gaf. For more information, please consult the `ChangeLog' file. Notable changes in gEDA/gaf 1.9.2 ================================= * Build system changes: - Guile 2.0 or newer is now required. - top-level control file allowing continuous integration using Travis CI has been added. * Nullor expansion has been fixed in the `spice' and `spice-sdb' backends. - Element name prefix "E_" has been substituted for "E-" to prevent errors output by some simulators (e.g. ngspice). - A default gain value has been added in the nullor expansion code. * Two obsolete scripts verilog2vhdl.sh and script.sed have been removed. * Undocumented and ambiguous feature of the `spice-sdb' backend for gnetlist consisting in the possibility of using the "value=" attribute instead of "file=" only for include blocks and only in embedding mode has been removed. * The following scripts and programs have been moved from the `utils' directory to a new `contrib' directory and are no longer installed by default: smash_megafile olib gmk_sym convert_sym sarlacc_schem sarlacc_sym pads_backannotate sw2asc gnet_hier_verilog.sh * `gpstoimage' has been removed from the distribution; equivalent functionality is provided by the `gaf' command. * `convert_sym.awk' has been removed from the distribution; equivalent functionality is provided by the `convert_sym' command. * gnetlist now supports output of netlists to the standard output. * New Scheme procedures and hooks have been added. Please see the "geda-scheme" info manual for more details. - `set-component-with-transform!' is a modified version of `set-component!', which applies all the specified transformations to a component and immediately updates it. - `auto-refdes-reset!' resets components' refdeses - `copy-objects-hook' is called whenever an object is copied, it can be used, for example, to reset component's refdes on copy. * The following gschem configuration items have been added: - `third-button-cancel' cancels draw actions by the third mouse button in mousepan mode. - `grid-mode' sets default grid mode. * Fixes/updates to the *BSD, Mac OS X, and MinGW builds. * Changes in the gschem UI event state machine: - New drawing modes apply immediately. - Indication of an action being in progress has been added. - Mirror action can now be used during an object placement. - Show/hide text function is now enabled during other actions. - RMB panning is now enabled during placing or drawing. * Some gschem dialog have been merged, made non-modal, and placed in sidebar: - Color, line, fill and pin type dialogs have been merged into one non-modal object properties dialog with widgets applying values immediately. - Text properties dialog. - Options to control the magnetic net mode and the net rubber band mode as well as grid mode and grid snap mode have been merged into one options dialog. * The following dialogs/windows have been converted into an info bar and are now placed in bottom notebook: - Log (status) window. - Find text dialog. * The following dialogs are now popup & docked the same way as the execute script dialog: - Show and hide text dialogs. - Translate dialog. * Other gschem GUI changes: - Hotkeys and menu items to show/hide the sidebar and status window have been added. - Swatch for fill types has been added. - Slot edit dialog now displays number of slots. - Library folder structure in gschem is now displayed as tree. - Indication of page change has been added in gschem main window's title. * Improved find text functionality: - When searching for text, gschem now descends all files specified in the comma separated list of the source attribute. - There is now a widget that lists all occurences of the text objects that contain the search string. - The find text operation does not switch the current schematic in the view or interfere with the most recent page up. - The find text operation also searches all open pages instead of the current one. - The behavior of the find text operation works with multiple toplevel windows open while running concurrent find text operations. - The find text operation can now use either a substring, pattern, or regex. The pattern style uses * and ?. The regex uses glib, which adheres to perl compatible regular expressions. * Several symbols have been fixed/improved. * gschemdoc has been enhanced to search in the user documentation directory. * Several translations have been added/updated. * Man pages for gsymcheck and gschlas have been updated. * Switches --help and -h have been added for most of gEDA utilities. * Fixed the following bugs: - 900122: Gschem crashes on ctrl-x. - 1258834: spice-sdb crashes on non-existing files. - 1463178: Gsch2pcb crashes when using `m4-pcbdir' option. - 1478760: Gschem segmentation fault during find text. - Gschem crashes on pressing the third mouse button. - SVG output bug in `gaf export'. - Several other bugs. Notable changes in gEDA/gaf 1.9.1 ================================= * Unbalanced overbar markers are now rendered correctly. * Most tools now no longer set the GEDADATA or GEDADATARC environment variables (they still obey them though). * `gschem' now provides a path drawing tool, accessed using or the "Add Path" menu item. - Add a cusp node by left-clicking. - Add a Bezier curve node by left-dragging from the node point to the control point. - End the path by clicking on the same node point twice, or clicking on the start node to close the path. * On desktops that reparent menu bars (e.g. Ubuntu Unity) it is once again possible to paste the clipboard using the menus. * A number of `gschem' editing behaviour changes were made: - Double-clicking on an entry in the "In Use" tab of the component selector now behaves the same way as double-clicking in the "Libraries" tab. - When new attributes are attached to a net, they are placed at a 50 unit offset. - The text color is now used as the default color for `pinlabel=' attributes. - Pin attributes are no longer automatically replaced when rotating or mirroring pins. - It is possible to edit a text object even when other non-text objects are selected. - Control grips are now always drawn at the same on-screen size. * The multi-attribute editor dialog in `gschem' has been extended to support more cases: - It now supports editing attributes of multiple selected objects. These are aggregated into the dialog's attribute list. Multiple attributes with the same name attached to any given object are still shown in separate rows, but identically named attributes from multiple selected objects will share a row. If a row has differing values between objects, its value shows the text "" in a muted colour. - Where an attribute is present in some, but not all selected objects its name in the list is shown in red. A new popup menu option allows copying such attributes to all selected objects. - If no complex, placeholder, pin, net or bus objects are selected, the dialog now falls back to editing any selected attribute text. This allows editing of unattached or floating attributes in symbols, or any attributes seleccted independantly of their owning object. In this fallback mode, all attributes with the same name shown in separate rows, and the "add attribute" functionality is disabled. * `gschem' has new icons for many editing commands. * Several bugs were fixed in `gnetlist': - Invalid attributes are ignored. - Correct detection of graphical symbols. - Components with no `refdes=' attribute are reported. - Crash fixes for `drc' and `switcap' backends. * `gaf export' now accepts a `--scale' option. * The `--size', `--margins' and `--align' options to `gaf export' can now accept their multiple arguments separated with a space ` ', a colon `:' or a semicolon `;'. * `gaf config' now handles the `-p' option properly. * `gnetlist', `gsymcheck' and `gaf' now output internationalised messages. * New Scheme procedures were added. Please see the "geda-scheme" info manual for more details. - The (gschem action) module contains procedures for working with user editing actions (i.e. commands accessed via the menus or keybindings). - Two new hooks were added: `bind-keys-hook' is called whenever keymap bindings are changed; `action-property-hook' is called when action properties are changed. Notable changes in gEDA/gaf 1.9.0 ================================= * A new schematic renderer library, `libgedacairo' has been added, and all tools have been updated to use it. Related changes: - The following configuration functions have been removed: output-capstyle paper-sizes output-color postscript-prolog output-orientation print-command output-type setpagedevice-orientation paper-size setpagedevice-pagesize - The following `gschem' configuration items have been added: print-paper print-color print-orientation - `gschem' now generates PDF files rather than PostScript or EPS files. - `gschem' now uses a standard GTK print dialog (with printer selection, print preview, etc.) * A new `gaf' command-line utility has been added. It provides a number of subcommands: - `gaf export' can be used to convert schematic files to PNG, SVG, PDF, PS and EPS, with detailed control of paper size and margins. It supports multi-page PDF and PS output. - `gaf config' can be used to manipulate the project, user, and system configuration stores (see below). - `gaf shell' provides a Scheme REPL for batch manipulation of schematic and symbol files. * New project, user and system configuration stores have been added, using a format similar to .desktop files. They can be manipulated using the `gaf config' tool. Configuration parameters for most tools will be converted to use this mechanism in future releases. * The changes to highlighting of dangling net ends in gEDA/gaf 1.8.0 have been reverted. All dangling ends are once again flagged with a brightly-coloured square. * When editing a component with the `gschem' multi-attribute editor, the dialog will now show the symbol name in its title. * When using "Down Schematic" command in `gschem', an error message will now be displayed if the subcircuit schematic cannot be loaded. * Printing now uses a light background color map by default. * Objects can now have the line end "cap style" adjusted in `gschem'. * `gnetlist' now accepts the `-i' and `-g' command-line arguments together. If you specify both `-i' and `-g', `gnetlist' will enter the Scheme REPL after loading the requested backend but before executing it. * `gattrib' now has translations for the user interface and various messages. Notable changes in gEDA/gaf 1.8.2 ================================= Bugfix release. * [994361] Fixed a libgeda crash bug involving nets inside symbols. * [1226246] Fixed a gnetlist data corruption bug when using refdes containing the string "POWER". * Updates to build system to allow compilation from git on systems with Automake >= 1.13.0. Notable changes in gEDA/gaf 1.8.1 ================================= Bugfix release with correct dynamic version information for libgeda. Notable changes in gEDA/gaf 1.8.0 ================================= * `gschem' and `gnetlist' have updated and rewritten user guides. * All tools now give more informative error messages if they are unable to load schematic or symbol files due to syntax errors. * All tools now correctly handle schematic and symbol files with `\r', `\n', or `\r\n` line endings, or a mixture. * Unconnected pin ends and net ends are now all drawn with the same box marker in `gschem' and printed output. * Net segments with at least two connections (including indirect connections via `netname=' attributes) are now drawn with arrowheads rather than box markers on dangling ends in `gschem' and printed output. Notable changes in gEDA/gaf 1.7.2 ================================= * `geda-gaf' now requires GTK+ 2.16.0 or later. * A greatly expanded Scheme API has been added to gEDA/gaf for use by extension authors. See the `geda-scheme' Info manual for more details. Existing extensions may need to be modified to load the `(geda deprecated)' or `(gschem deprecated)' modules. * The `component-library-search' function for `gafrc' files now skips directories without symbols, and searches for libraries recursively. * `gschem' keybinding improvements: - Keybindings are now unaffected by Caps Lock. - Keystrokes are displayed using the same characters as on keycaps (e.g. `:' instead of `colon'). - Keystrokes may use extended modifiers (Super, Hyper and Meta). - Key bindings can be modified in any rc file or interactively using the `global-set-key' function. See notes in `system-gschemrc' for examples. * `gschem' now displays help files and component documentation on all platforms, including Windows. The `locate' tool is no longer used to search for component documentation files. * The `schdiff' tool for generating visual diffs of schematics and symbols has been added. It can be used with most version control systems. See `man schdiff' for more details. * The `bom' and `bom2' backends to `gnetlist' now give error messages if no attribute file can be found. The `-O attrib_file=FILE' and `-O attribs=ATTRIB,ATTRIB...' options have also been added. * A new `ewnet' backend has been added to `gnetlist'. This outputs netlists for use with the National Instruments ULTIboard layout tool. * The `verilog' backend to `gnetlist' now supports concatenated net naming like "{a,b,c[3:0]}". * `gsch2pcb' no longer supports the `m4_command' parameter in project files. * The `--m4-pcbdir' and `--m4-file' arguments to `gsch2pcb' now work again. * `gsymfix.pl' has been renamed to `gsymfix'. * Man pages are now available for all programs installed as part of gEDA/gaf. * The undocumented programs `gnet_hier_verilog', `gsymupdate', `gschupdate' and `sch2eaglepos.sh' are no longer installed to ${prefix}/bin. Notable changes in gEDA/gaf 1.7.1 ================================= * gEDA is now compatible with Guile 2.0. * gEDA/gaf applications no longer complain when trying to load an rc file twice, or when an rc file doesn't exist. * `gschem' allows objects to be moved by dragging without having to select them first. * `gschem' now supports keybindings with more than one modifier key, and "Deselect" is bound to by default. * `gnetlist' correctly handles multiple renames of the same net. This resolves some long-standing bugs with multipage schematics. * The `spice-sdb' backend for `gnetlist' now has built-in support for `SUBCKT_NMOS' and `SUBCKT_PMOS' devices. * A new `makedepend' backend has been added to `gnetlist'. It generates Makefile code for SPICE simulation dependencies. * Visibility of embedded component attributes are now preserved by `gattrib'. * `gsch2pcb' correctly handles footprint names with hyphens (`-'). * `gsch2pcb' project files support quoting and escaping in `schematics' entries. * Considerable enhancements to Unicode support when printing schematics or exporting PostScript. Notable changes in gEDA/gaf 1.7.0 ================================= * All gEDA/gaf applications now handle configuration files much more strictly, and provide much more useful feedback when an error occurs. * Several changes to `gschem' command-line options: - The `-t' option is no longer supported. - Several command-line options now support a long-form alternative. - The `-s' option can now be used to run multiple Scheme scripts during `gschem' startup. - A new `-c' option is available, which runs a Scheme expression during `gschem' startup. - A new `-L' option is available, which adds a directory to the Scheme load path. - A new `-V' or `--version' option is available, which displays version information. * `gschem' now provides a "Select All" function, which is bound to by default, along with a corresponding "Deselect" function. * In the `gschem' "Add component" dialog, filtering the component library will expand matching libraries. If the filter is cancelled, all libraries are collapsed. Components can now be selected by double-clicking on them in the component list. * The `gschem' "Edit Text Properties" dialog now has an easier to use "Alignment" menu. * Printed text size now better matches on-screen text size in `gschem'. * Special characters, including commas, are now escaped or quoted appropriately in `gattrib' CSV output. * Several changes to `gnetlist' command-line options: - Four command-line options specific to the `spice-sdb' backend have been removed. They can be replaced with `-O