diff --git a/Changelog b/Changelog index 1fdd2608..d9b1a228 100644 --- a/Changelog +++ b/Changelog @@ -1,3 +1,48 @@ +3.4.7: +- Resolved_net(): resolve multiple levels of port-by-attribute propagation +- Make xschem build with configure option --CFLAGS="-std=c23" (prepare for gcc-15 issues) +- `/` command (show bindkeys) will use a toplevel window instead of fullscreen +- Reduce size of ps exports by avoiding redundant set_ps_colors() calls +- Honor `bus` attribute on lines / wires / polygons in svg and pdf exports +- `xschem raw clear` command: allow to specify a number `n`; delete the`n-th` raw file +- Add ngspice_verilog_cosim examples +- Add bindkeys_cheatsheet.sch, moved shift-J to Ctrl-p (xplot creation) +- Allow to change tcl flag `lvs_netlist` at runtime (just before netlist generation), + not only at xschem startup +- Add new_file_browser_* variables in xschemrc to allow new symbol browser to be used also to load files +- Add toolbar_icon_zoom and ctxmenu_icon_zoom xschemrc (integer) variables to enlarge icons on XUHD displays +- Add menu option Simulation->LVS->Upper case .SUBCKT and .ENDS +- Allow multi-selections when loading a file; limit max line width in change_linewidth() to + avoid strange artifacts at extreme zoom-ins +- Add command `xschem raw rename old_node new_node` +- New tcl variable grid_point_size to set size of grid points (for 4K+ displays) +- evaluate infix expressions with expr(...) in attributes +- Descend_schematic() return value indicates if descended into a valid schematic (1) or empty one (0) +- Proc editdata: added Copy (to Clipboard) button +- Differential scope2.sym, current mwasure scope_ammeter.sym +- Embed graph inside scope symbol +- Initial commit to add scope.sym symbol +- Lock attribute extended to all objects +- Floater objects: add command ctrl-u to unselect attached (so some instance with the attach=.. attribute) + objects, that is objects (not element instances) with a non empty name=... atttribute. + Extend upcate references of attached floaters to change instance name property and + `xschem setprop instance name` command +- Added attribute `attach="name1 name2 ..."` for components to designate other objects to be + selected with it. Designated objects must have a matching `name=name1` attribute. + This allows to create object groups +- Escape pressed while drawing polygon will cancel last segment instead of the whole poly +- Ellipses rendered in ps/pdf export. +- Lock graphs only if they have the same simulation type loaded. So zooming/panning a tran + plot will not affect dc or ac plots. +- `AUTO SET` button in graph edit dialog box to automatically assign increasing colors to displayed waves +- Added `d` to unselect object under the mouse, `Shift-D` to unselect by area, both work with or + without infix_interface, moved delete files to `Ctrl-d`, update keybinding docs +- Add eval_expr.y for evaluation of generic math expressions in infix notation (expr(...) in attributes) +- Added command `xschem set crosshair_layer` to change layer used for crosshair drawing +- If big_grid_points is not set draw always thin axes and mouse crosshairs; dashed axes +- `xschem go_back 0` allows to go up in hierarchy *NOT* saving a modified schematic +- Add new command `xschem get modified` (returns 1 if circuit needs to be saved) + 3.4.6: - Fix spurious change in tab name when netlisting if Trim Wires option enabled - Xschem raw values now returns full precision, no more 8 digit rounding, as this is diff --git a/scconfig/src/default/arg.c b/scconfig/src/default/arg.c index f41f01b7..e0907460 100644 --- a/scconfig/src/default/arg.c +++ b/scconfig/src/default/arg.c @@ -14,7 +14,7 @@ You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software - Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + Foundation, Inc., 31 Milk Street, # 960789 Boston, MA 02196 USA Project page: http://repo.hu/projects/scconfig Contact (email and IRC): http://igor2.repo.hu/contact.html diff --git a/scconfig/src/default/db.c b/scconfig/src/default/db.c index 24ba9554..c1600f74 100644 --- a/scconfig/src/default/db.c +++ b/scconfig/src/default/db.c @@ -14,7 +14,7 @@ You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software - Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + Foundation, Inc., 31 Milk Street, # 960789 Boston, MA 02196 USA Project page: http://repo.hu/projects/scconfig Contact (email and IRC): http://igor2.repo.hu/contact.html diff --git a/scconfig/src/default/dep.c b/scconfig/src/default/dep.c index f0fa1870..78fba49b 100644 --- a/scconfig/src/default/dep.c +++ b/scconfig/src/default/dep.c @@ -14,7 +14,7 @@ You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software - Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + Foundation, Inc., 31 Milk Street, # 960789 Boston, MA 02196 USA Project page: http://repo.hu/projects/scconfig Contact (email and IRC): http://igor2.repo.hu/contact.html diff --git a/scconfig/src/default/deps_default.c b/scconfig/src/default/deps_default.c index 730b2de9..e1ad4993 100644 --- a/scconfig/src/default/deps_default.c +++ b/scconfig/src/default/deps_default.c @@ -14,7 +14,7 @@ You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software - Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + Foundation, Inc., 31 Milk Street, # 960789 Boston, MA 02196 USA Project page: http://repo.hu/projects/scconfig Contact (email and IRC): http://igor2.repo.hu/contact.html diff --git a/scconfig/src/default/find_cc.c b/scconfig/src/default/find_cc.c index 1b6278f1..ebc65105 100644 --- a/scconfig/src/default/find_cc.c +++ b/scconfig/src/default/find_cc.c @@ -14,7 +14,7 @@ You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software - Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + Foundation, Inc., 31 Milk Street, # 960789 Boston, MA 02196 USA Project page: http://repo.hu/projects/scconfig Contact (email and IRC): http://igor2.repo.hu/contact.html diff --git a/scconfig/src/default/find_environ.c b/scconfig/src/default/find_environ.c index 52465a1e..7a113c81 100644 --- a/scconfig/src/default/find_environ.c +++ b/scconfig/src/default/find_environ.c @@ -14,7 +14,7 @@ You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software - Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + Foundation, Inc., 31 Milk Street, # 960789 Boston, MA 02196 USA Project page: http://repo.hu/projects/scconfig Contact (email and IRC): http://igor2.repo.hu/contact.html diff --git a/scconfig/src/default/find_fscalls.c b/scconfig/src/default/find_fscalls.c index caa26d08..cd9c9b35 100644 --- a/scconfig/src/default/find_fscalls.c +++ b/scconfig/src/default/find_fscalls.c @@ -15,7 +15,7 @@ You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software - Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + Foundation, Inc., 31 Milk Street, # 960789 Boston, MA 02196 USA Project page: http://repo.hu/projects/scconfig Contact (email and IRC): http://igor2.repo.hu/contact.html diff --git a/scconfig/src/default/find_fstools.c b/scconfig/src/default/find_fstools.c index 3d51641d..119c6af0 100644 --- a/scconfig/src/default/find_fstools.c +++ b/scconfig/src/default/find_fstools.c @@ -14,7 +14,7 @@ You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software - Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + Foundation, Inc., 31 Milk Street, # 960789 Boston, MA 02196 USA Project page: http://repo.hu/projects/scconfig Contact (email and IRC): http://igor2.repo.hu/contact.html diff --git a/scconfig/src/default/find_io.c b/scconfig/src/default/find_io.c index da4f19ca..b2b92103 100644 --- a/scconfig/src/default/find_io.c +++ b/scconfig/src/default/find_io.c @@ -14,7 +14,7 @@ You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software - Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + Foundation, Inc., 31 Milk Street, # 960789 Boston, MA 02196 USA Project page: http://repo.hu/projects/scconfig Contact (email and IRC): http://igor2.repo.hu/contact.html diff --git a/scconfig/src/default/find_libs.c b/scconfig/src/default/find_libs.c index 7c951cf5..c4aca715 100644 --- a/scconfig/src/default/find_libs.c +++ b/scconfig/src/default/find_libs.c @@ -14,7 +14,7 @@ You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software - Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + Foundation, Inc., 31 Milk Street, # 960789 Boston, MA 02196 USA Project page: http://repo.hu/projects/scconfig Contact (email and IRC): http://igor2.repo.hu/contact.html diff --git a/scconfig/src/default/find_printf.c b/scconfig/src/default/find_printf.c index 232b18f5..d5c6c6aa 100644 --- a/scconfig/src/default/find_printf.c +++ b/scconfig/src/default/find_printf.c @@ -14,7 +14,7 @@ You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software - Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + Foundation, Inc., 31 Milk Street, # 960789 Boston, MA 02196 USA Project page: http://repo.hu/projects/scconfig Contact (email and IRC): http://igor2.repo.hu/contact.html diff --git a/scconfig/src/default/find_proc.c b/scconfig/src/default/find_proc.c index a7959145..94876109 100644 --- a/scconfig/src/default/find_proc.c +++ b/scconfig/src/default/find_proc.c @@ -14,7 +14,7 @@ You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software - Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + Foundation, Inc., 31 Milk Street, # 960789 Boston, MA 02196 USA Project page: http://repo.hu/projects/scconfig Contact (email and IRC): http://igor2.repo.hu/contact.html diff --git a/scconfig/src/default/find_signal.c b/scconfig/src/default/find_signal.c index ef87eb02..67af5f17 100644 --- a/scconfig/src/default/find_signal.c +++ b/scconfig/src/default/find_signal.c @@ -14,7 +14,7 @@ You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software - Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + Foundation, Inc., 31 Milk Street, # 960789 Boston, MA 02196 USA Project page: http://repo.hu/projects/scconfig Contact (email and IRC): http://igor2.repo.hu/contact.html diff --git a/scconfig/src/default/find_str.c b/scconfig/src/default/find_str.c index 55c9537b..a8bf574b 100644 --- a/scconfig/src/default/find_str.c +++ b/scconfig/src/default/find_str.c @@ -14,7 +14,7 @@ You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software - Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + Foundation, Inc., 31 Milk Street, # 960789 Boston, MA 02196 USA Project page: http://repo.hu/projects/scconfig Contact (email and IRC): http://igor2.repo.hu/contact.html diff --git a/scconfig/src/default/find_sys.c b/scconfig/src/default/find_sys.c index 5286b957..ab0d1d9e 100644 --- a/scconfig/src/default/find_sys.c +++ b/scconfig/src/default/find_sys.c @@ -14,7 +14,7 @@ You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software - Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + Foundation, Inc., 31 Milk Street, # 960789 Boston, MA 02196 USA Project page: http://repo.hu/projects/scconfig Contact (email and IRC): http://igor2.repo.hu/contact.html diff --git a/scconfig/src/default/find_target.c b/scconfig/src/default/find_target.c index 8ef68127..83936b10 100644 --- a/scconfig/src/default/find_target.c +++ b/scconfig/src/default/find_target.c @@ -14,7 +14,7 @@ You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software - Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + Foundation, Inc., 31 Milk Street, # 960789 Boston, MA 02196 USA Project page: http://repo.hu/projects/scconfig Contact (email and IRC): http://igor2.repo.hu/contact.html diff --git a/scconfig/src/default/find_thread.c b/scconfig/src/default/find_thread.c index 93bd0f2b..cf154064 100644 --- a/scconfig/src/default/find_thread.c +++ b/scconfig/src/default/find_thread.c @@ -14,7 +14,7 @@ You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software - Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + Foundation, Inc., 31 Milk Street, # 960789 Boston, MA 02196 USA Project page: http://repo.hu/projects/scconfig Contact (email and IRC): http://igor2.repo.hu/contact.html diff --git a/scconfig/src/default/find_time.c b/scconfig/src/default/find_time.c index cfe41563..68f970d0 100644 --- a/scconfig/src/default/find_time.c +++ b/scconfig/src/default/find_time.c @@ -14,7 +14,7 @@ You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software - Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + Foundation, Inc., 31 Milk Street, # 960789 Boston, MA 02196 USA Project page: http://repo.hu/projects/scconfig Contact (email and IRC): http://igor2.repo.hu/contact.html diff --git a/scconfig/src/default/find_types.c b/scconfig/src/default/find_types.c index c9e87e06..5360438a 100644 --- a/scconfig/src/default/find_types.c +++ b/scconfig/src/default/find_types.c @@ -15,7 +15,7 @@ You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software - Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + Foundation, Inc., 31 Milk Street, # 960789 Boston, MA 02196 USA Project page: http://repo.hu/projects/scconfig Contact (email and IRC): http://igor2.repo.hu/contact.html diff --git a/scconfig/src/default/find_uname.c b/scconfig/src/default/find_uname.c index df53f90d..28e468ae 100644 --- a/scconfig/src/default/find_uname.c +++ b/scconfig/src/default/find_uname.c @@ -14,7 +14,7 @@ You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software - Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + Foundation, Inc., 31 Milk Street, # 960789 Boston, MA 02196 USA Project page: http://repo.hu/projects/scconfig Contact (email and IRC): http://igor2.repo.hu/contact.html diff --git a/scconfig/src/default/ht.c b/scconfig/src/default/ht.c index 5eaa13a1..090c2f95 100644 --- a/scconfig/src/default/ht.c +++ b/scconfig/src/default/ht.c @@ -14,7 +14,7 @@ You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software - Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + Foundation, Inc., 31 Milk Street, # 960789 Boston, MA 02196 USA Project page: http://repo.hu/projects/scconfig Contact (email and IRC): http://igor2.repo.hu/contact.html diff --git a/scconfig/src/default/lib_compile.c b/scconfig/src/default/lib_compile.c index 65557f68..88e219a5 100644 --- a/scconfig/src/default/lib_compile.c +++ b/scconfig/src/default/lib_compile.c @@ -14,7 +14,7 @@ You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software - Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + Foundation, Inc., 31 Milk Street, # 960789 Boston, MA 02196 USA Project page: http://repo.hu/projects/scconfig Contact (email and IRC): http://igor2.repo.hu/contact.html diff --git a/scconfig/src/default/lib_file.c b/scconfig/src/default/lib_file.c index 78e097a5..a9429706 100644 --- a/scconfig/src/default/lib_file.c +++ b/scconfig/src/default/lib_file.c @@ -14,7 +14,7 @@ You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software - Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + Foundation, Inc., 31 Milk Street, # 960789 Boston, MA 02196 USA Project page: http://repo.hu/projects/scconfig Contact (email and IRC): http://igor2.repo.hu/contact.html diff --git a/scconfig/src/default/lib_filelist.c b/scconfig/src/default/lib_filelist.c index 2d89f736..9ffb9f6c 100644 --- a/scconfig/src/default/lib_filelist.c +++ b/scconfig/src/default/lib_filelist.c @@ -14,7 +14,7 @@ You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software - Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + Foundation, Inc., 31 Milk Street, # 960789 Boston, MA 02196 USA Project page: http://repo.hu/projects/scconfig Contact (email and IRC): http://igor2.repo.hu/contact.html diff --git a/scconfig/src/default/lib_srctree.c b/scconfig/src/default/lib_srctree.c index 855ab982..8ff57d49 100644 --- a/scconfig/src/default/lib_srctree.c +++ b/scconfig/src/default/lib_srctree.c @@ -14,7 +14,7 @@ You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software - Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + Foundation, Inc., 31 Milk Street, # 960789 Boston, MA 02196 USA Project page: http://repo.hu/projects/scconfig Contact (email and IRC): http://igor2.repo.hu/contact.html diff --git a/scconfig/src/default/lib_uniqinc.c b/scconfig/src/default/lib_uniqinc.c index 3ae02b0c..30b18177 100644 --- a/scconfig/src/default/lib_uniqinc.c +++ b/scconfig/src/default/lib_uniqinc.c @@ -15,7 +15,7 @@ You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software - Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + Foundation, Inc., 31 Milk Street, # 960789 Boston, MA 02196 USA Project page: http://repo.hu/projects/scconfig Contact (email and IRC): http://igor2.repo.hu/contact.html diff --git a/scconfig/src/default/log.c b/scconfig/src/default/log.c index 16f67938..114ff2e9 100644 --- a/scconfig/src/default/log.c +++ b/scconfig/src/default/log.c @@ -14,7 +14,7 @@ You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software - Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + Foundation, Inc., 31 Milk Street, # 960789 Boston, MA 02196 USA Project page: http://repo.hu/projects/scconfig Contact (email and IRC): http://igor2.repo.hu/contact.html diff --git a/scconfig/src/default/main.c b/scconfig/src/default/main.c index 8b016ce1..eda7cea6 100644 --- a/scconfig/src/default/main.c +++ b/scconfig/src/default/main.c @@ -14,7 +14,7 @@ You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software - Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + Foundation, Inc., 31 Milk Street, # 960789 Boston, MA 02196 USA Project page: http://repo.hu/projects/scconfig Contact (email and IRC): http://igor2.repo.hu/contact.html diff --git a/scconfig/src/default/main_custom_args.c b/scconfig/src/default/main_custom_args.c index 870753bf..7978544c 100644 --- a/scconfig/src/default/main_custom_args.c +++ b/scconfig/src/default/main_custom_args.c @@ -14,7 +14,7 @@ You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software - Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + Foundation, Inc., 31 Milk Street, # 960789 Boston, MA 02196 USA Project page: http://repo.hu/projects/scconfig Contact (email and IRC): http://igor2.repo.hu/contact.html diff --git a/scconfig/src/default/main_lib.c b/scconfig/src/default/main_lib.c index fa9900ac..01585212 100644 --- a/scconfig/src/default/main_lib.c +++ b/scconfig/src/default/main_lib.c @@ -14,7 +14,7 @@ You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software - Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + Foundation, Inc., 31 Milk Street, # 960789 Boston, MA 02196 USA Project page: http://repo.hu/projects/scconfig Contact (email and IRC): http://igor2.repo.hu/contact.html diff --git a/scconfig/src/default/str.c b/scconfig/src/default/str.c index 28e79f11..32d6a9c9 100644 --- a/scconfig/src/default/str.c +++ b/scconfig/src/default/str.c @@ -14,7 +14,7 @@ You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software - Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + Foundation, Inc., 31 Milk Street, # 960789 Boston, MA 02196 USA Project page: http://repo.hu/projects/scconfig Contact (email and IRC): http://igor2.repo.hu/contact.html diff --git a/scconfig/src/gui/find_cairo.c b/scconfig/src/gui/find_cairo.c index 23ec9674..0b77ed44 100644 --- a/scconfig/src/gui/find_cairo.c +++ b/scconfig/src/gui/find_cairo.c @@ -14,7 +14,7 @@ You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software - Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + Foundation, Inc., 31 Milk Street, # 960789 Boston, MA 02196 USA Project page: http://repo.hu/projects/scconfig Contact (email and IRC): http://igor2.repo.hu/contact.html diff --git a/scconfig/src/gui/find_gd.c b/scconfig/src/gui/find_gd.c index 12c01957..8715f33d 100644 --- a/scconfig/src/gui/find_gd.c +++ b/scconfig/src/gui/find_gd.c @@ -14,7 +14,7 @@ You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software - Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + Foundation, Inc., 31 Milk Street, # 960789 Boston, MA 02196 USA Project page: http://repo.hu/projects/scconfig Contact (email and IRC): http://igor2.repo.hu/contact.html diff --git a/scconfig/src/gui/find_gl.c b/scconfig/src/gui/find_gl.c index dc041d44..ede1834a 100644 --- a/scconfig/src/gui/find_gl.c +++ b/scconfig/src/gui/find_gl.c @@ -15,7 +15,7 @@ You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software - Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + Foundation, Inc., 31 Milk Street, # 960789 Boston, MA 02196 USA Project page: http://repo.hu/projects/scconfig Contact (email and IRC): http://igor2.repo.hu/contact.html diff --git a/scconfig/src/gui/find_gtk2.c b/scconfig/src/gui/find_gtk2.c index e6d7bb1e..6c3b4349 100644 --- a/scconfig/src/gui/find_gtk2.c +++ b/scconfig/src/gui/find_gtk2.c @@ -14,7 +14,7 @@ You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software - Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + Foundation, Inc., 31 Milk Street, # 960789 Boston, MA 02196 USA Project page: http://repo.hu/projects/scconfig Contact (email and IRC): http://igor2.repo.hu/contact.html diff --git a/scconfig/src/gui/find_gtk3.c b/scconfig/src/gui/find_gtk3.c index 5d7004ca..25d31ec4 100644 --- a/scconfig/src/gui/find_gtk3.c +++ b/scconfig/src/gui/find_gtk3.c @@ -14,7 +14,7 @@ You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software - Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + Foundation, Inc., 31 Milk Street, # 960789 Boston, MA 02196 USA Project page: http://repo.hu/projects/scconfig Contact (email and IRC): http://igor2.repo.hu/contact.html diff --git a/scconfig/src/gui/find_gtk4.c b/scconfig/src/gui/find_gtk4.c index 6cbf5bd9..622cb27a 100644 --- a/scconfig/src/gui/find_gtk4.c +++ b/scconfig/src/gui/find_gtk4.c @@ -15,7 +15,7 @@ You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software - Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + Foundation, Inc., 31 Milk Street, # 960789 Boston, MA 02196 USA Project page: http://repo.hu/projects/scconfig Contact (email and IRC): http://igor2.repo.hu/contact.html diff --git a/scconfig/src/gui/find_lesstif2.c b/scconfig/src/gui/find_lesstif2.c index f16398bc..00906190 100644 --- a/scconfig/src/gui/find_lesstif2.c +++ b/scconfig/src/gui/find_lesstif2.c @@ -14,7 +14,7 @@ You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software - Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + Foundation, Inc., 31 Milk Street, # 960789 Boston, MA 02196 USA Project page: http://repo.hu/projects/scconfig Contact (email and IRC): http://igor2.repo.hu/contact.html diff --git a/scconfig/src/gui/find_misc.c b/scconfig/src/gui/find_misc.c index aedf1ab0..84800b44 100644 --- a/scconfig/src/gui/find_misc.c +++ b/scconfig/src/gui/find_misc.c @@ -14,7 +14,7 @@ You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software - Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + Foundation, Inc., 31 Milk Street, # 960789 Boston, MA 02196 USA Project page: http://repo.hu/projects/scconfig Contact (email and IRC): http://igor2.repo.hu/contact.html diff --git a/scconfig/src/gui/find_sdl2.c b/scconfig/src/gui/find_sdl2.c index 90d0e74b..76ac0858 100644 --- a/scconfig/src/gui/find_sdl2.c +++ b/scconfig/src/gui/find_sdl2.c @@ -14,7 +14,7 @@ You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software - Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + Foundation, Inc., 31 Milk Street, # 960789 Boston, MA 02196 USA Project page: http://repo.hu/projects/scconfig Contact (email and IRC): http://igor2.repo.hu/contact.html diff --git a/scconfig/src/gui/find_x.c b/scconfig/src/gui/find_x.c index acf0a565..44415f4d 100644 --- a/scconfig/src/gui/find_x.c +++ b/scconfig/src/gui/find_x.c @@ -14,7 +14,7 @@ You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software - Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + Foundation, Inc., 31 Milk Street, # 960789 Boston, MA 02196 USA Project page: http://repo.hu/projects/scconfig Contact (email and IRC): http://igor2.repo.hu/contact.html diff --git a/scconfig/src/parsgen/find_parsgen.c b/scconfig/src/parsgen/find_parsgen.c index cfd68c1d..097ceeaa 100644 --- a/scconfig/src/parsgen/find_parsgen.c +++ b/scconfig/src/parsgen/find_parsgen.c @@ -14,7 +14,7 @@ You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software - Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + Foundation, Inc., 31 Milk Street, # 960789 Boston, MA 02196 USA Project page: http://repo.hu/projects/scconfig Contact (email and IRC): http://igor2.repo.hu/contact.html diff --git a/scconfig/src/scripts/find_duktape.c b/scconfig/src/scripts/find_duktape.c index 1e7a7f7b..f3827513 100644 --- a/scconfig/src/scripts/find_duktape.c +++ b/scconfig/src/scripts/find_duktape.c @@ -14,7 +14,7 @@ You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software - Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + Foundation, Inc., 31 Milk Street, # 960789 Boston, MA 02196 USA Project page: http://repo.hu/projects/scconfig Contact (email and IRC): http://igor2.repo.hu/contact.html diff --git a/scconfig/src/scripts/find_fungw.c b/scconfig/src/scripts/find_fungw.c index 66982bd1..636d1997 100644 --- a/scconfig/src/scripts/find_fungw.c +++ b/scconfig/src/scripts/find_fungw.c @@ -14,7 +14,7 @@ You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software - Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + Foundation, Inc., 31 Milk Street, # 960789 Boston, MA 02196 USA Project page: http://repo.hu/projects/scconfig Contact (email and IRC): http://igor2.repo.hu/contact.html diff --git a/scconfig/src/scripts/find_funlisp.c b/scconfig/src/scripts/find_funlisp.c index 96ac765e..5133598a 100644 --- a/scconfig/src/scripts/find_funlisp.c +++ b/scconfig/src/scripts/find_funlisp.c @@ -14,7 +14,7 @@ You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software - Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + Foundation, Inc., 31 Milk Street, # 960789 Boston, MA 02196 USA Project page: http://repo.hu/projects/scconfig Contact (email and IRC): http://igor2.repo.hu/contact.html diff --git a/scconfig/src/scripts/find_gpmi.c b/scconfig/src/scripts/find_gpmi.c index 550283a3..b0346cf8 100644 --- a/scconfig/src/scripts/find_gpmi.c +++ b/scconfig/src/scripts/find_gpmi.c @@ -14,7 +14,7 @@ You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software - Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + Foundation, Inc., 31 Milk Street, # 960789 Boston, MA 02196 USA Project page: http://repo.hu/projects/scconfig Contact (email and IRC): http://igor2.repo.hu/contact.html diff --git a/scconfig/src/scripts/find_guile.c b/scconfig/src/scripts/find_guile.c index 0589e12a..a054fded 100644 --- a/scconfig/src/scripts/find_guile.c +++ b/scconfig/src/scripts/find_guile.c @@ -14,7 +14,7 @@ You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software - Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + Foundation, Inc., 31 Milk Street, # 960789 Boston, MA 02196 USA Project page: http://repo.hu/projects/scconfig Contact (email and IRC): http://igor2.repo.hu/contact.html diff --git a/scconfig/src/scripts/find_lua.c b/scconfig/src/scripts/find_lua.c index fcee3564..29d6400f 100644 --- a/scconfig/src/scripts/find_lua.c +++ b/scconfig/src/scripts/find_lua.c @@ -14,7 +14,7 @@ You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software - Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + Foundation, Inc., 31 Milk Street, # 960789 Boston, MA 02196 USA Project page: http://repo.hu/projects/scconfig Contact (email and IRC): http://igor2.repo.hu/contact.html diff --git a/scconfig/src/scripts/find_m4.c b/scconfig/src/scripts/find_m4.c index cf5f5427..686abbe5 100644 --- a/scconfig/src/scripts/find_m4.c +++ b/scconfig/src/scripts/find_m4.c @@ -14,7 +14,7 @@ You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software - Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + Foundation, Inc., 31 Milk Street, # 960789 Boston, MA 02196 USA Project page: http://repo.hu/projects/scconfig Contact (email and IRC): http://igor2.repo.hu/contact.html diff --git a/scconfig/src/scripts/find_mawk.c b/scconfig/src/scripts/find_mawk.c index d3f5f67a..44b3d3b6 100644 --- a/scconfig/src/scripts/find_mawk.c +++ b/scconfig/src/scripts/find_mawk.c @@ -14,7 +14,7 @@ You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software - Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + Foundation, Inc., 31 Milk Street, # 960789 Boston, MA 02196 USA Project page: http://repo.hu/projects/scconfig Contact (email and IRC): http://igor2.repo.hu/contact.html diff --git a/scconfig/src/scripts/find_mruby.c b/scconfig/src/scripts/find_mruby.c index ec53291d..02dad470 100644 --- a/scconfig/src/scripts/find_mruby.c +++ b/scconfig/src/scripts/find_mruby.c @@ -14,7 +14,7 @@ You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software - Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + Foundation, Inc., 31 Milk Street, # 960789 Boston, MA 02196 USA Project page: http://repo.hu/projects/scconfig Contact (email and IRC): http://igor2.repo.hu/contact.html diff --git a/scconfig/src/scripts/find_mujs.c b/scconfig/src/scripts/find_mujs.c index a3f4500a..40dbdf9b 100644 --- a/scconfig/src/scripts/find_mujs.c +++ b/scconfig/src/scripts/find_mujs.c @@ -14,7 +14,7 @@ You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software - Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + Foundation, Inc., 31 Milk Street, # 960789 Boston, MA 02196 USA Project page: http://repo.hu/projects/scconfig Contact (email and IRC): http://igor2.repo.hu/contact.html diff --git a/scconfig/src/scripts/find_perl.c b/scconfig/src/scripts/find_perl.c index 1caef417..3f0c7929 100644 --- a/scconfig/src/scripts/find_perl.c +++ b/scconfig/src/scripts/find_perl.c @@ -14,7 +14,7 @@ You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software - Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + Foundation, Inc., 31 Milk Street, # 960789 Boston, MA 02196 USA Project page: http://repo.hu/projects/scconfig Contact (email and IRC): http://igor2.repo.hu/contact.html diff --git a/scconfig/src/scripts/find_picol.c b/scconfig/src/scripts/find_picol.c index 0eca68ce..a8e23439 100644 --- a/scconfig/src/scripts/find_picol.c +++ b/scconfig/src/scripts/find_picol.c @@ -14,7 +14,7 @@ You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software - Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + Foundation, Inc., 31 Milk Street, # 960789 Boston, MA 02196 USA Project page: http://repo.hu/projects/scconfig Contact (email and IRC): http://igor2.repo.hu/contact.html diff --git a/scconfig/src/scripts/find_python.c b/scconfig/src/scripts/find_python.c index 90e2ca3c..a413adfc 100644 --- a/scconfig/src/scripts/find_python.c +++ b/scconfig/src/scripts/find_python.c @@ -14,7 +14,7 @@ You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software - Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + Foundation, Inc., 31 Milk Street, # 960789 Boston, MA 02196 USA Project page: http://repo.hu/projects/scconfig Contact (email and IRC): http://igor2.repo.hu/contact.html diff --git a/scconfig/src/scripts/find_ruby.c b/scconfig/src/scripts/find_ruby.c index 0382bb7a..06f4f94f 100644 --- a/scconfig/src/scripts/find_ruby.c +++ b/scconfig/src/scripts/find_ruby.c @@ -14,7 +14,7 @@ You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software - Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + Foundation, Inc., 31 Milk Street, # 960789 Boston, MA 02196 USA Project page: http://repo.hu/projects/scconfig Contact (email and IRC): http://igor2.repo.hu/contact.html diff --git a/scconfig/src/scripts/find_stutter.c b/scconfig/src/scripts/find_stutter.c index 0cb95b00..e050bd35 100644 --- a/scconfig/src/scripts/find_stutter.c +++ b/scconfig/src/scripts/find_stutter.c @@ -14,7 +14,7 @@ You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software - Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + Foundation, Inc., 31 Milk Street, # 960789 Boston, MA 02196 USA Project page: http://repo.hu/projects/scconfig Contact (email and IRC): http://igor2.repo.hu/contact.html diff --git a/scconfig/src/scripts/find_tcl.c b/scconfig/src/scripts/find_tcl.c index 584bab3d..4a70c264 100644 --- a/scconfig/src/scripts/find_tcl.c +++ b/scconfig/src/scripts/find_tcl.c @@ -14,7 +14,7 @@ You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software - Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + Foundation, Inc., 31 Milk Street, # 960789 Boston, MA 02196 USA Project page: http://repo.hu/projects/scconfig Contact (email and IRC): http://igor2.repo.hu/contact.html diff --git a/scconfig/src/scripts/find_welltype.c b/scconfig/src/scripts/find_welltype.c index cfea90dc..bc452aaa 100644 --- a/scconfig/src/scripts/find_welltype.c +++ b/scconfig/src/scripts/find_welltype.c @@ -14,7 +14,7 @@ You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software - Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + Foundation, Inc., 31 Milk Street, # 960789 Boston, MA 02196 USA Project page: http://repo.hu/projects/scconfig Contact (email and IRC): http://igor2.repo.hu/contact.html diff --git a/scconfig/src/scripts/scripts.c b/scconfig/src/scripts/scripts.c index d241558c..7e08aed5 100644 --- a/scconfig/src/scripts/scripts.c +++ b/scconfig/src/scripts/scripts.c @@ -14,7 +14,7 @@ You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software - Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + Foundation, Inc., 31 Milk Street, # 960789 Boston, MA 02196 USA Project page: http://repo.hu/projects/scconfig Contact (email and IRC): http://igor2.repo.hu/contact.html diff --git a/scconfig/src/tty/find_gpm.c b/scconfig/src/tty/find_gpm.c index 4e47b138..a8252183 100644 --- a/scconfig/src/tty/find_gpm.c +++ b/scconfig/src/tty/find_gpm.c @@ -14,7 +14,7 @@ You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software - Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + Foundation, Inc., 31 Milk Street, # 960789 Boston, MA 02196 USA Project page: http://repo.hu/projects/scconfig Contact (email and IRC): http://igor2.repo.hu/contact.html diff --git a/scconfig/src/tty/find_ioctl.c b/scconfig/src/tty/find_ioctl.c index 9097939e..fabac008 100644 --- a/scconfig/src/tty/find_ioctl.c +++ b/scconfig/src/tty/find_ioctl.c @@ -15,7 +15,7 @@ You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software - Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + Foundation, Inc., 31 Milk Street, # 960789 Boston, MA 02196 USA Project page: http://repo.hu/projects/scconfig Contact (email and IRC): http://igor2.repo.hu/contact.html diff --git a/scconfig/src/tty/find_ncurses.c b/scconfig/src/tty/find_ncurses.c index d3827147..a69e070e 100644 --- a/scconfig/src/tty/find_ncurses.c +++ b/scconfig/src/tty/find_ncurses.c @@ -14,7 +14,7 @@ You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software - Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + Foundation, Inc., 31 Milk Street, # 960789 Boston, MA 02196 USA Project page: http://repo.hu/projects/scconfig Contact (email and IRC): http://igor2.repo.hu/contact.html diff --git a/scconfig/src/tty/find_pty.c b/scconfig/src/tty/find_pty.c index 0908126d..81abd9e9 100644 --- a/scconfig/src/tty/find_pty.c +++ b/scconfig/src/tty/find_pty.c @@ -14,7 +14,7 @@ You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software - Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + Foundation, Inc., 31 Milk Street, # 960789 Boston, MA 02196 USA Project page: http://repo.hu/projects/scconfig Contact (email and IRC): http://igor2.repo.hu/contact.html diff --git a/scconfig/src/tty/find_readline.c b/scconfig/src/tty/find_readline.c index 0057594c..c6ca160f 100644 --- a/scconfig/src/tty/find_readline.c +++ b/scconfig/src/tty/find_readline.c @@ -15,7 +15,7 @@ You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software - Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + Foundation, Inc., 31 Milk Street, # 960789 Boston, MA 02196 USA Project page: http://repo.hu/projects/scconfig Contact (email and IRC): http://igor2.repo.hu/contact.html diff --git a/scconfig/src/tty/find_slang.c b/scconfig/src/tty/find_slang.c index e03f1936..b488b15c 100644 --- a/scconfig/src/tty/find_slang.c +++ b/scconfig/src/tty/find_slang.c @@ -14,7 +14,7 @@ You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software - Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + Foundation, Inc., 31 Milk Street, # 960789 Boston, MA 02196 USA Project page: http://repo.hu/projects/scconfig Contact (email and IRC): http://igor2.repo.hu/contact.html diff --git a/scconfig/src/tty/find_term.c b/scconfig/src/tty/find_term.c index 9a809691..4f07c30f 100644 --- a/scconfig/src/tty/find_term.c +++ b/scconfig/src/tty/find_term.c @@ -15,7 +15,7 @@ You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software - Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + Foundation, Inc., 31 Milk Street, # 960789 Boston, MA 02196 USA Project page: http://repo.hu/projects/scconfig Contact (email and IRC): http://igor2.repo.hu/contact.html diff --git a/scconfig/src/util/arg_auto_set.c b/scconfig/src/util/arg_auto_set.c index 2880d0f9..1b08c869 100644 --- a/scconfig/src/util/arg_auto_set.c +++ b/scconfig/src/util/arg_auto_set.c @@ -14,7 +14,7 @@ You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software - Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + Foundation, Inc., 31 Milk Street, # 960789 Boston, MA 02196 USA Project page: http://repo.hu/projects/scconfig Contact (email and IRC): http://igor2.repo.hu/contact.html diff --git a/scconfig/src/util/cquote.c b/scconfig/src/util/cquote.c index ec75ffa6..780ac255 100644 --- a/scconfig/src/util/cquote.c +++ b/scconfig/src/util/cquote.c @@ -14,7 +14,7 @@ You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software - Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + Foundation, Inc., 31 Milk Street, # 960789 Boston, MA 02196 USA Project page: http://repo.hu/projects/scconfig Contact (email and IRC): http://igor2.repo.hu/contact.html diff --git a/scconfig/src/util/ls.c b/scconfig/src/util/ls.c index 748e86e6..4bbb6a1d 100644 --- a/scconfig/src/util/ls.c +++ b/scconfig/src/util/ls.c @@ -14,7 +14,7 @@ You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software - Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + Foundation, Inc., 31 Milk Street, # 960789 Boston, MA 02196 USA Project page: http://repo.hu/projects/scconfig Contact (email and IRC): http://igor2.repo.hu/contact.html diff --git a/scconfig/src/util/sccbox.c b/scconfig/src/util/sccbox.c index 9706bf01..012b30cc 100644 --- a/scconfig/src/util/sccbox.c +++ b/scconfig/src/util/sccbox.c @@ -14,7 +14,7 @@ You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software - Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + Foundation, Inc., 31 Milk Street, # 960789 Boston, MA 02196 USA Project page: http://repo.hu/projects/scconfig Contact (email and IRC): http://igor2.repo.hu/contact.html diff --git a/src/gschemtoxschem.awk b/src/gschemtoxschem.awk index 6b561b62..e1209a81 100755 --- a/src/gschemtoxschem.awk +++ b/src/gschemtoxschem.awk @@ -461,7 +461,7 @@ function print_header() "device @name @device\n" \ "@comptag\"\n" } - print "v {xschem version=3.4.7RC file_version=1.2}" + print "v {xschem version=3.4.7 file_version=1.2}" template_attrs = "template=\"" template_attrs "\"\n" if(FILENAME ~/\.sym$/) { diff --git a/src/make_sch_from_spice.awk b/src/make_sch_from_spice.awk index ec30c8b5..8bbf0ad1 100755 --- a/src/make_sch_from_spice.awk +++ b/src/make_sch_from_spice.awk @@ -700,7 +700,7 @@ function print_sym(sym, template, format, subckt_name, sym_type, extra, dir, pin print "start print symbol: " sym - print "v {xschem version=3.4.7RC file_version=1.2}" > sym + print "v {xschem version=3.4.7 file_version=1.2}" > sym print "K {type=" sym_type > sym # print "format=\"@name @pinlist @symname " format_translate(template) "\"" > sym iii = format_translate(template, extra) diff --git a/src/make_sym.awk b/src/make_sym.awk index 96bc9da6..7dafca27 100755 --- a/src/make_sym.awk +++ b/src/make_sym.awk @@ -68,7 +68,7 @@ function beginfile(f) text_voffset=20 lab_voffset=4 ip=op=n_pin=0 - print "v {xschem version=3.4.7RC file_version=1.2}" > sym + print "v {xschem version=3.4.7 file_version=1.2}" > sym if(template !~/^{[ \t\n]*$/) { printf "%s", "K {type=subcircuit\nformat=\"@name @pinlist @symname\"\n" >sym printf "%s\n", "template=\"name=x1\"" >sym diff --git a/src/make_sym_from_spice.awk b/src/make_sym_from_spice.awk index 2aaabe15..4f1f0ce3 100755 --- a/src/make_sym_from_spice.awk +++ b/src/make_sym_from_spice.awk @@ -401,7 +401,7 @@ function print_sym(sym, template, format, subckt_name, sym_type, extra, dir, pin print "start print symbol: " sym - print "v {xschem version=3.4.7RC file_version=1.2}" > sym + print "v {xschem version=3.4.7 file_version=1.2}" > sym print "K {type=" sym_type > sym # print "format=\"@name @pinlist @symname " format_translate(template) "\"" > sym iii = format_translate(template, extra) diff --git a/src/make_sym_lcc.awk b/src/make_sym_lcc.awk index afe89098..fe3c171b 100644 --- a/src/make_sym_lcc.awk +++ b/src/make_sym_lcc.awk @@ -61,7 +61,7 @@ function beginfile(f) text_voffset=10 lab_voffset=4 ip=op=n_pin=n_p=n_l=0 - print "v {xschem version=3.4.7RC file_version=1.2}" > sym + print "v {xschem version=3.4.7 file_version=1.2}" > sym if(template=="") { printf "%s", "K {type=subcircuit\nformat=\"@name @pinlist @symname\"\n" >sym printf "%s\n", "template=\"name=x1\"" >sym diff --git a/src/symgen.awk b/src/symgen.awk index 9244b0b8..3180ecb9 100755 --- a/src/symgen.awk +++ b/src/symgen.awk @@ -393,7 +393,7 @@ function attrs(a) function header() { - print "v {xschem version=3.4.7RC file_version=1.2}" + print "v {xschem version=3.4.7 file_version=1.2}" } function round(n) diff --git a/src/systemlib/font.sch b/src/systemlib/font.sch index 05c0b182..eacd27b6 100644 --- a/src/systemlib/font.sch +++ b/src/systemlib/font.sch @@ -1,4 +1,4 @@ -v {xschem version=3.4.7RC file_version=1.2 +v {xschem version=3.4.7 file_version=1.2 } G {font file} K {} diff --git a/src/systemlib/iopin_lcc_top.sym b/src/systemlib/iopin_lcc_top.sym index d3dab12f..e9aaf393 100644 --- a/src/systemlib/iopin_lcc_top.sym +++ b/src/systemlib/iopin_lcc_top.sym @@ -1,4 +1,4 @@ -v {xschem version=3.4.7RC file_version=1.2} +v {xschem version=3.4.7 file_version=1.2} G {} K {type=lcc_iopin format="*.iopin @lab" diff --git a/src/systemlib/ipin_lcc_top.sym b/src/systemlib/ipin_lcc_top.sym index 730d63b4..55e1f89b 100644 --- a/src/systemlib/ipin_lcc_top.sym +++ b/src/systemlib/ipin_lcc_top.sym @@ -1,4 +1,4 @@ -v {xschem version=3.4.7RC file_version=1.2} +v {xschem version=3.4.7 file_version=1.2} G {} K {type=lcc_ipin format="*.ipin @lab" diff --git a/src/systemlib/opin_lcc_top.sym b/src/systemlib/opin_lcc_top.sym index 07304075..2c3e4f4e 100644 --- a/src/systemlib/opin_lcc_top.sym +++ b/src/systemlib/opin_lcc_top.sym @@ -1,4 +1,4 @@ -v {xschem version=3.4.7RC file_version=1.2} +v {xschem version=3.4.7 file_version=1.2} G {} K {type=lcc_opin format="*.opin @lab" diff --git a/src/xschem.h b/src/xschem.h index c9f14962..ea0e4db2 100644 --- a/src/xschem.h +++ b/src/xschem.h @@ -23,7 +23,7 @@ #ifndef CADGLOBALS #define CADGLOBALS -#define XSCHEM_VERSION "3.4.7RC" +#define XSCHEM_VERSION "3.4.7" #define XSCHEM_FILE_VERSION "1.2" #if HAS_PIPE == 1 diff --git a/src/xschem.tcl b/src/xschem.tcl index 5953d825..1605f7ba 100644 --- a/src/xschem.tcl +++ b/src/xschem.tcl @@ -5394,7 +5394,7 @@ proc create_symbol {name {in {}} {out {}} {inout {}}} { set symname [file rootname $name].sym set res [catch {open $symname {WRONLY CREAT EXCL}} fd] if {$res} {puts $fd; return 0} ;# Error. Print reason and exit. - puts $fd {v {xschem version=3.4.7RC file_version=1.2}} + puts $fd {v {xschem version=3.4.7 file_version=1.2}} puts $fd {K {type=subcircuit format="@name @pinlist @symname" template="name=X1"}} set x -150 set y 0