1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806
|
2006-10-20 Ales Hvezda <ahvezda@geda.seul.org>
* configure.ac: Bumped package version to 20061020.
2006-09-27 Carlos Nieves Onega <cnieves@iespana.es>
* configure.ac : Applied patch #1564796 by Cesar Strauss,
enabling Cygwin's compilation. Thanks.
* src/gmk_sym.c: Do not redefine stricmp. Work based on patch
#1564805 by Cesar Strauss and comments by Peter Brett. Thanks.
Use strcasecmp by default instead of stricmp.
If strcasecmp is not available, but stricmp is, then define
strcasecmp as stricmp.
* scripts/gschemdoc.sh: Applied (partially) patch #1511658 by
Cesar Strauss. The rest of the patch was already covered by
patches #1564796 and #1564805. Thanks.
Notes by Cesar:
" gschemdoc now uses the cygpath utility, if present, to
filter the file paths before calling the viewer.
Also, I added iexplore (Internet Explorer) to the
browser list.
As a bonus, I added some checks and error messages for
the "Browser not found" and "PDF Reader not found"
situations.
There must exist, however, symbolic links to the
browser and PDF reader in Cygwin's /usr/bin. This must
be done manually by the user, for the moment.
With this fix, gschem->Help->Manual and
gschem->Help->Component now work in Cygwin."
2006-09-06 Ales Hvezda <ahvezda@geda.seul.org>
* configure.ac: Updated program version to 20060906.
* src/g_rc.c, src/gschlas.c: Added CUSTOM_VERSION to all
printfs/output/dialog boxes where VERSION is used so that it is
easier to create custom version of gEDA/gaf.
2006-08-22 Ales Hvezda <ahvezda@geda.seul.org>
* scripts/config.sh.in: Removed unused environment variables that
were causing a warning from configure: config.status: WARNING:
scripts/config.sh contains a reference to the variable `datarootdir'
* scripts/Makefile.am: Added $(srcdir) to gschemdoc.sh to make
distcheck happy. Also misc cleanup.
2006-08-21 Ales Hvezda <ahvezda@geda.seul.org>
* README: Updated the README a little to be ready for the next
release.
2006-08-19 Ales Hvezda <ahvezda@geda.seul.org>
* configure.ac: Bumped version number to 20060821 in prep for the
next gEDA/gaf release.
2006-08-02 Mike Jarabek <mjarabek@istop.com>
* src/convert_sym.c: Added power pin handling patch from
Patrick Doyle.
2006-07-15 Ales Hvezda <ahvezda@geda.seul.org>
* src/gschlas.c: Added comment on free of cwd
2006-06-14 Ales Hvezda <ahvezda@geda.seul.org>
* man/grenum.1, src/grenum.c, src/grenum.h: Checked in latest
version from Levente Kovacs. Thanks!
2006-04-05 02:32 Dan McMahill <danmc>
* src/gsch2pcb.c: - look at the environment variable GNETLIST if
set to get the name of the gnetlist executible. Defaults to
gnetlist if GNETLIST is not set.
- add a pointer to the gEDA, PCB and gEDA wiki pages in the
--help output.
- run gnetlist -g pcbpins as part of the gnetlist runs to
generate a PCB actions file which propagates pin names (not
just the numbers) from schematic to layout.
2006-03-12 Ales Hvezda <ahvezda@geda.seul.org>
* lib/system-gschlasrc.in: Removed load for the system-gafrc file,
since it is loaded by libgeda first.
2006-01-16 Ales Hvezda <ahvezda@geda.seul.org>
* configure.ac: Bumped package version to 20060123
* README: Updated for the new year and release.
2005-11-27 Carlos Nieves Onega <cnieves@iespana.es>
* src/globals.c: Added setting of load_newer_backup_func to NULL.
It is needed now libgeda checks for autosave backup files when
opening a schematic.
2005-09-27 18:46 Dan McMahill <danmc>
* gschlas/g_rc.c, gschlas/gschlas.c, src/convert_sym.c,
src/gmk_sym.c, src/grenum.c, src/olib.l: remove various compiler
warnings
2005-09-11 Werner Hoch <werner.ho@gmx.de>
* ChangeLog.tragesym, examples/tragesym/4099.src,
examples/tragesym/AT90S8535_TQFP.src,
examples/tragesym/template.src, examples/tragesym/test1.src,
examples/tragesym/test2.src, examples/tragesym/test3.src:
ChangeLog entry copied, fixed typo
2005-08-20 Werner Hoch <werner.ho@gmx.de>
* scripts/gschemdoc.sh: added konqueror and firefox to the browser list
2005-08-19 Ales Hvezda <ahvezda@geda.seul.org>
* src/convert_sym.c: Integrated Jeff McLamb's greatly updated
ViewDraw converter. Thanks. Changes include:
- Updated to support gEDA file format version 1
- Added capability to import more graphic styles from ViewDraw
- Corrected bug associated with absense of library reference in local
ViewDraw symbols
- Removed command-line option -s; no longer necessary
- Mapped ViewDraw "SIGNAL" attribute to gEDA "net" attribute
- Mapped ViewDraw "HETERO" attribute to a new "split" attribute
(netlister to be later updated to support this)
- Mapped ViewDraw "PINTYPE" attributes to correct gEDA pintypes
* configure.ac: Bumped the package version to 20050820 which will be
a real snapshot.
2005-08-16 Stuart Brorson <sdb@cloud9.net>
* configure.ac, Makefile.am, src/grenum.[hc]
src/Makefile.am, doc/Makefile.am, man/*:
Incorporated grenum into geda-utils. Grenum is a
refdes generation utility by Levente Kovacs
2005-08-14 Ales Hvezda <ahvezda@geda.seul.org>
* configure.ac: Updated package version to 20050814. This is a
temporary version and not a real release number.
2005-08-02 Ales Hvezda <ahvezda@geda.seul.org>
* ChangeLog.gsch2pcb, src/gsch2pcb.c: Update to Bill Wilson's gsch2pcb
version 1.5.
2005-04-16 Carlos Nieves Onega <cnieves@iespana.es>
* scripts/tragesym: Changed the way it draws the symbol so
there is no need to translate it to the origin.
2005-03-13 Ales Hvezda <ahvezda@geda.seul.org>
* configure.ac: Removed all tests for gtk+ 1.2.x and fixed error
message if gtk+ 2.2.x is not found.
2005-03-08 Ales Hvezda <ahvezda@geda.seul.org>
* configure.ac: Bumped version to 20050313
2005-03-06 Ales Hvezda <ahvezda@geda.seul.org>
* gschlas/gschlas.c: Fixed code to allow user to specify absolute
filenames on the command line again.
2005-02-26 01:16 Dan McMahill <danmc>
* src/: Makefile.am, olib.l: portability fixes to allow AT&T lex
(yeck, but its what ships with solaris) to compile this. Also
#ifdef around some GCC-isms to let this build with non-gcc
compilers.
2005-02-24 01:21 Dan McMahill <danmc>
* src/gsch2pcb.c: when parsing the project file, remove trailing
whitespace. Otherwise strange things can happen. This is
especially true if the "output-name" has trailing whitespace.
2005-02-22 Carlos Nieves Onega <cnieves@iespana.es>
* configure.ac, gschlas/gschlas.c: Removed call to gtk_init().
GDK is now initialized in libgeda if it's a non-graphical app.
2005-02-22 22:13 Dan McMahill <danmc>
* configure.ac, src/Makefile.am: if we're using gcc then turn on
-Wall
2005-02-20 Patrick Bernaud <b-patrick@wanadoo.fr>
* gschlas/gschlas.c (main_prog): Adapted for new logging system.
2005-02-19 Carlos Nieves Onega <cnieves@iespana.es>
* gschlas/globals.c: Added definition of picture_draw_func after
adding picture support to libgeda.
* configure.ac, gschlas/gschlas.c: Added call to gtk_init()
since gdk-pixbuf needs it if called.
2005-02-11 Patrick Bernaud <b-patrick@wanadoo.fr>
* gschlas/gschlas.c (main_prog): Adapted for new toplevel and page
APIs in libgeda.
2005-02-08 12:15 danmc
* gschlas/g_register.c, gschlas/gschlas.c, include/prototype.h:
remove remaining gh_* functions.
2005-02-08 12:01 danmc
* gschlas/g_rc.c: fix a typo in the last commit. Now we check
gschlas-version instead of gschem-version.
2005-02-07 23:57 danmc
* configure.ac, gschlas/g_rc.c, gschlas/g_register.c,
gschlas/globals.c, gschlas/gschlas.c, gschlas/i_vars.c,
gschlas/parsecmd.c, src/char_width.c, src/convert_sym.c,
src/glib12-compat.c, src/gmk_sym.c, src/gsch2pcb.c,
src/sarlacc_schem.c, src/smash_megafile.c: add dmalloc and
Electric Fence debugging options
2005-02-07 23:18 danmc
* gschlas/g_rc.c: get rid of gh_* guile interface
2005-02-07 15:47 sdb
* src/gsch2pcb.c: Added additional printfs during directory search
in -v -v mode.
2005-02-04 Patrick Bernaud <b-patrick@wanadoo.fr>
* gschlas/gschlas.c: Made it use GLib's G_DIR_SEPARATOR* instead of
libgeda's *_SEPARATER_*.
Replaced u_basic_strdup() and u_basic_strdup_multiple() by GLib
functions.
2005-01-29 Patrick Bernaud <b-patrick@wanadoo.fr>
* gschlas/gschlas.c (gschlas_quit): Adapted for new component library
code.
2005-27-01 Stuart Brorson <sdb@cloud9.net>
* gschlas/gschlas.c: Changes made to enable correct opening
of schematics in foreign directories. Changes detailed in libgeda
ChangeLog.
2004-12-28 Ales Hvezda <ahvezda@geda.seul.org>
* scripts/gsymfix.pl: Added symbol cleanup script by Mike Skerritt.
Thanks!
2004-12-27 Ales Hvezda <ahvezda@geda.seul.org>
* configure.ac: Updated version to 20041228
2004-07-03 Ales Hvezda <ahvezda@geda.seul.org>
* include/i_vars.h, prototype.h, gschlas/g_rc.c, g_register.c,
gschlas.c, i_vars.c: Removed a whole bunch of rc related code.
The removed code was moved into libgeda.
* configure.ac: Updated version to 20040710
2004-01-17 Ales Hvezda <ahvezda@geda.seul.org>
* config.h.in: Remove machine generated file.
2004-01-12 Ales Hvezda <ahvezda@geda.seul.org>
* scripts/Makefile.am: Changed the sed command when building garchive
to work with more sed versions hopefully.
2004-01-11 Ales Hvezda <ahvezda@geda.seul.org>
* configure.ac: Updated version to 20040111
* src/gsch2pcb.c, examples/gsch2pcb/project.sample: Upgraded to
Bill Wilson's latest version (1.4) (1.3 skipped)
* Makefile.am: Oops forgot to remove references to the README.*
files when they were moved, so make dist broke. Fixed.
2004-01-06 Ales Hvezda <ahvezda@geda.seul.org>
* docs/Makefile.am: Changed doc install directory readme to readmes
2004-01-03 Ales Hvezda <ahvezda@geda.seul.org>
* src/gsch2pcb.c, examples/gsch2pcb/project.sample: Upgraded to
Bill Wilson's latest version (1.2)
* scripts/gsymupdate: Found a last minute critical bug which
caused gschem/gschlas to assert because a text field (the number
of lines) wasn't being set on split text lines. gsymupdate does
not really handle multi line text items. A bug needs to be
filed for this so it is not forgotten about.
2004-01-01 Ales Hvezda <ahvezda@geda.seul.org>
* configure.ac: Added --with-docdir command line flag as well all
the code to support installing documentation. Also added a prog
check for groff.
* docs/README.*: Moved all the readmes into the docs subdirectory.
* docs/Makefile.am: Added code to install all the readme files
into the documentation directory.
2003-12-31 Ales Hvezda <ahvezda@geda.seul.org>
* configure.ac: Bumped version to 20031231
2003-12-30 Ales Hvezda <ahvezda@geda.seul.org>
* scripts/garchive.py, Makefile.am: Included Stuart's garchive
script.
* ChangeLog.gsch2pcb, src/glib12-compat.c, src/gsch2pcb.c:
Included Bill Wilson's latest gsch2pcb (version 1.1)
2003-12-29 Ales Hvezda <ahvezda@geda.seul.org>
* configure.ac: Added checks for gtk+ 2.2.x and 1.2.x. This was
needed since the HAS_GTK22 will start to be used in libgeda includes.
2003-11-09 Ales Hvezda <ahvezda@geda.seul.org>
* autogen.sh: Added script to generate all the auto* generated files.
* config.guess config.sub depcomp install-sh mkinstalldirs missing
compile: Removed machine generated files from CVS.
* Makefile.am: Added the above files to be cleaned during
maintainer-clean
2003-10-19 Ales Hvezda <ahvezda@geda.seul.org>
* src/g_rc.nw: Added the words "optional" and "required" to the
*rc log find messages.
2003-10-18 Ales Hvezda <ahvezda@geda.seul.org>
* configure.ac: Updated version to something more recent, but this
version is not an official release.
2003-10-04 Ales Hvezda <ahvezda@geda.seul.org>
* configure.ac: Updated version to something more recent, but this
version is not an official release.
2003-10-02 Ales Hvezda <ahvezda@geda.seul.org>
* src/gsch2pcb.c, ChangeLog.gsch2pcb: Updated to Bill Wilson's
version 1.0.1
2003-09-27 Ales Hvezda <ahvezda@geda.seul.org>
* ChangeLog.gsch2pcb, README.gsch2pcb, examples/gsch2pcb/.cvsignore,
examples/gsch2pcb/Makefile.am, examples/gsch2pcb/project.sample,
examples/Makefile.am, src/glib12-compat.c, src/gsch2pcb.c,
configure.ac, README: Updated Bill Wilson's gsch2pcb to his 1.0
version.
2003-09-20 Ales Hvezda <ahvezda@geda.seul.org>
* configure.ac: Fixed MinGW cflags/ldflags
* auto* files: Updated to autoconf 2.57 and automake 1.7.6
2003-08-31 Ales Hvezda <ahvezda@geda.seul.org>
* configure.ac: Changed AC_CONFIG_HEADER to AM_CONFIG_HEADER
* scripts/pads_backannotate: Added script by Dan McMahill.
* src/gsch2pcb.c and friends: Integrated gsch2pcb written by
Bill Wilson. Thanks Bill!
2003-08-24 Ales Hvezda <ahvezda@geda.seul.org>
* configure.ac: Removed redundant tests (gtk+, guile) and improved
the configuration summary message.
2003-07-20 Ales Hvezda <ahvezda@geda.seul.org>
* configure.ac: Renamed from configure.in.
* configure.ac: Bunch of cleanup to start using pkg-config for all
libraries. Unfortunately, gnetlist now links against libgtk*. I
might fix that in the future.
* *.in, *.h, etc: Removed a bunch of old unneeded auto* files.
2003-07-14 Ales Hvezda <ahvezda@geda.seul.org>
* src/gmk_sym.c: Applied patch by Holger Dietze to fix Bug #63:
"utils/gmk_sym is outdated"
2003-07-06 Ales Hvezda <ahvezda@geda.seul.org>
* scripts/tragesym, README: Added tragesym 0.0.5 by Werner Hoch.
Ales renamed script from tragesym.py to tragesym (to be consistent
with the rest of the scripts in the utils package).
* README.tragesym, ChangeLog.tragesym: Added info files which are
part of tragesym. Minor updates here and there.
* examples/tragesym, examples/gmk_sym: Reoganized the examples
directory to include tragesym.
2003-05-25 Ales Hvezda <ahvezda@geda.seul.org>
* src/sarlacc_schem.c: Initalized some variables to make compiler
happy.
* configure.in: Applied Wojciech Kazubski's --with-docdir patch
2003-05-22 Ales Hvezda <ahvezda@geda.seul.org>
* configure.in: Updated version
2003-05-13 Ales Hvezda <ahvezda@geda.seul.org>
* src/sarlacc_schem.c: Applied patch by Charles Lepple to fix a
build problem on OSX.
2003-02-23 Ales Hvezda <ahvezda@geda.seul.org>
* configure.in: Added shell code to expand prefix and set the
GEDADOCDIR to the proper path ($prefix/share/doc/geda-doc
* scripts/config.sh.in: Changed variables to use the above
GEDADOCDIR
2003-02-20 Ales Hvezda <ahvezda@geda.seul.org>
* gschlas/gschlas.c: Applied patchlet from Steve Tell for disabling
the guile 1.6.3 deprecated warnings.
* scripts/refdes_renum: Added useful perl script by Dan McMahill.
Thanks.
2003-02-18 Ales Hvezda <ahvezda@geda.seul.org>
* configure.in: Bumped version to 20030223
2003-02-06 Ales Hvezda <ahvezda@geda.seul.org>
* configure.in: Applied Gabriel Paubert's warning reducing patch with
a few minor mods.
2003-01-26 Ales Hvezda <ahvezda@geda.seul.org>
* src/Makefile.am: Added liberty to all targets for mingw
2003-01-11 Ales Hvezda <ahvezda@geda.seul.org>
* Makefile.am: Fixed the distclean-local target.
2002-12-30 Chris Ellec <chris @ gtx.seul.org>
* utils/src/gmk_sym.c: updated file format to 20021103
for pins and boxes.
2002-11-30 Ales Hvezda <ahvezda@geda.seul.org>
* lib/system-gschlasrc.in: Changed the variable names which hold
the paths to the data and rc directories.
* scripts/Makefile.am: Added gschemdoc to distclean target
* aclocal.m4: Removed file from cvs.
* src/Makefile.am: Added -lm to olib LD_FLAGS
2002-11-23 Ales Hvezda <ahvezda@geda.seul.org>
* scripts/gschemdoc.sh: Added %20filetype:pdf to the google search
to increase the likelyhood of getting the datasheet. Suggested by
Antonio A Todo Bom.
* scripts/gschemdoc.sh: Applied the patch by Gabriel Paubert to
this file to fix the which problems reported on geda-dev. Thanks.
2002-11-04 Egil Kvaleberg <egil@kvaleberg.no>
* configure.in: Changed AC_PROG_LEX to AM_PROG_LEX to cater for
automake 1.6.3. Note that this also requires that autoreconf is
run.
2002-11-03 Ales Hvezda <ahvezda@geda.seul.org>
* scripts/gschupdate, scripts/symupdate: Oops, these scripts will
break if an attribute has a ='s in it. Fixed this by passing 2 as
the LIMIT to perl's split.
* configure.in: Updated version to 20021103 (an official version)
2002-10-31 Ales Hvezda <ahvezda@geda.seul.org>
* scripts/gschemdoc.sh: Changed the manual which is brought up when
you run gschemdoc -m (from gschem.txt go gedadocs.html).
* scripts/gschemdoc.sh: Added phoenix to the list of browsers.
* scripts/gschemdoc.sh: Added another echo to output which browser
has been found.
2002-10-29 Ales Hvezda <ahvezda@geda.seul.org>
* src/olib.l geda_sym_format.h: Added Mario Pascucci's olib converter.
* README.olib: Added README for above.
2002-10-28 Ales Hvezda <ahvezda@geda.seul.org>
* configure.in: Bumped version to 20021031
2002-10-27 Ales Hvezda <ahvezda@geda.seul.org>
* configure and friends: Ran "autoreconf --force --install -v"
to really upgrade to the newest version of the auto* tools.
* scripts/gschemdoc: Applied Egil's patch to remove the -- for
Netscape and Mozilla
* gschlas/g_rc.c, g_register.c, i_vars.c, include/i_vars.h: Added
force-boundingbox rc variable.
* lib/system-gschlas.in: Added default for force-boundingbox variable
2002-10-19 Ales Hvezda <ahvezda@geda.seul.org>
* configure.in, *.m4: Upgraded to automake 1.7.1 and autoconf 2.54
2002-10-17 Ales Hvezda <ahvezda@geda.seul.org>
* configure.in, scripts/Makefile.am, scripts/config.sh.in,
scripts/gschemdoc.sh: Added find documentation patch from Egil
Kvaleberg. Thanks.
2002-10-07 Ales Hvezda <ahvezda@geda.seul.org>
* src/sarlacc_schem.c, scripts/sarlacc_sym: Added updates from
Egil Kvaleberg. Thanks.
2002-09-22 Ales Hvezda <ahvezda@geda.seul.org>
* gschlas/: Added new libgeda program: gEDA schematic/symbol Load and
Save. This program just loads the specified files and saves them in
the current file format. gschlas is used by gschupdate and
gsymupdate.
* lib/, lib/system-gschlasrc.in: Added rc file for above
* include/: Added include directory and files for above
* scripts/gschupdate, gsymupdate: Updated to use gschlas.
* configure.in and others: Updated scripts to search for libgeda and
all the required programs.
* configure.in: Bumped version to 20020922, which is NOT a release.
2002-09-07 Ales Hvezda <ahvezda@geda.seul.org>
* utils/convert_sym.c: Updated code to attach pinseq= and pinnumber=
instead of pin#=#
* utils/convert_sym.c: Updated code to attach netname= instead of
label=
* utils/convert_sym.c: Updated "v %s" string to be 19991011 which
is the right version for the files convert_sym spits out. This
should eventually be updated to the lastest version, but gschem
will happily read in old files.
* utils/convert_sym.c: Symbols/schematics that are outputed from
this tool are now current to the 20020825 attribute scheme.
* utils/gmk_sym.c: Updated code to output pinseq= and pinnumber=
instead of pin#=#.
* utils/gmk_sym.c: Symbols that are outputed from this tool are
now current to the 20020825 attribute scheme.
* utils/sarlacc_sym: Updated code to output pinseq= and pinnumber=
instead of pin#=#. UNTESTED, but should be okay.
2002-08-14 Chris Ellec <chris @ gtx.seul.org >
* utils/gmk_sym.c: Check for multiple instances of the same pin
number and quit when this happens, give Fatal error messsage.
2002-07-30 Ales Hvezda <ahvezda@geda.seul.org>
* scripts/gsymupdate: Added code to properly convert type= and label=
to pintype= and pinlabel=
2002-07-29 Ales Hvezda <ahvezda@geda.seul.org>
* scripts/gsymupdate, gschupdate: Added a check to not update if an
equivalant .old file is found
2002-07-27 Ales Hvezda <ahvezda@geda.seul.org>
* scripts/: Created new directory for non-compiled utils
* src/*: Moved non-compiled utils to scripts directory
2002-07-14 Ales Hvezda <ahvezda@geda.seul.org>
* src/convert_sym.awk, convert_sym.c, gmk_sym.c, sarlacc_schem.c,
sarlacc_sym: Changed all user visible references of uref to
refdes.
* gsymupdate, gschupdate: Added code to convert uref= to refdes=
* gsymupdate, gschupdate: Bunch of code to make these programs
a lot more robust and useful.
2002-07-07 Ales Hvezda <ahvezda@geda.seul.org>
* src/gsymupdate, gschupdate: Added simple perl scripts to convert
existing symbols and schematics to use the new attribute conventions
2002-07-06 Ales Hvezda <ahvezda@geda.seul.org>
* configure.in/Makefile.am: Upgraded to automake 1.6.2
2002-05-15 Chris Ellec <chris @ gtx.seul.org>
* src/gmk_sym.c: Added a couple of data verifications to avoid
seg faults when the input file has errors.
2002-04-08 Ales Hvezda <ahvezda@geda.seul.org>
* src/gmk_sym.c: Fixed a #ifndef to be MINGW32 correct
2002-04-03 Ales Hvezda <ahvezda@geda.seul.org>
* configure.in and friends: More work on getting the upgrade of
autoconf, automake, and libtool to behave correctly.
* configure.in: Added PATHSEP variable which holds the proper path
separater depending on the platform.
* lib/system-*.in: Work on getting rc files to use above variable.
2002-02-02 Ales Hvezda <ahvezda@geda.seul.org>
* src/sarlacc_schem.c: Put in placed the updated files from
Dave Lawrence. Bug fixes
2001-07-22 Ales Hvezda <ahvezda@geda.seul.org>
* src/char_width.c: Added patch by Dan Mcmahill for 64-bit
architectures.
2001-07-19 Ales Hvezda <ahvezda@geda.seul.org>
* configure.in: Bumped up version to 20010722
* configure.in: More updates to get cygwin to build right
2001-07-01 Ales Hvezda <ahvezda@geda.seul.org>
* configure.in: Make sure configure scripts work with autoconf-2.50
(had to fix cygwin check), they do not yet work with 2.50
* Cleaned up all the auto* related files to be current and not stale
2001-03-18 Ales Hvezda <ahvezda@geda.seul.org>
* Removed all Makefile.in files and configure
2001-03-17 Ales Hvezda <ahvezda@geda.seul.org>
* Got make dist and make distcheck working (means all files which are
in CVS are in some Makefile)
* configure.in: Added DATADIR instead of PACKAGE
2001-03-04 Ales Hvezda <ahvezda@geda.seul.org>
* src/gmk_sym.c: Patched file according to the fixes which
Rolf Fiedler provided (polarity bubbles and clock symbols are
not attached as attributes), also fixed the orientation of
text for top and bottom pins.
* configure.in: Updated version
2001-02-23 Ales Hvezda <ahvezda@geda.seul.org>
* src/gmk_sym.c: Added #include <time.h> to see if that solves
Hamish's build problem.
2000-12-03 Ales Hvezda <ahvezda@geda.seul.org>
* src/gmk_sym.c: Put in a #ifndef to make the cygwin port happy
2000-10-02 Ales Hvezda <ahvezda@geda.seul.org>
* src/gmk_sym.c: Changed the v output (version) to be a fixed date
* src/convert_sym.c: Changed the v output (version) to be a fixed date
2000-07-12 Matt Ettus <matt@ettus.com>
* gmk_sym.c: Pin Labels now properly attached to pins
All text now has text origin info. (Not intelligent yet)
Added class and pins attributes for allegro netlister
Added uref attribute and optional footprint
Dots and clock symbols for pins are now attached to pin,
in preparation for (hoping for :) gschem handling this.
2000-07-04 Ales Hvezda <ahvezda@geda.seul.org>
* configure.in: Bumped version up to 20000704
2000-02-20 Ales Hvezda <ahvezda@geda.seul.org>
* src/*.txt: Added bunch of sample gmk_sym txt files by Marcus
Isaksson
2000-02-19 Ales Hvezda <ahvezda@geda.seul.org>
* README/INSTALL: Updated files to reflect next release
* src/*.c: Fixed all warnings (using -Wall -Werror)
2000-01-22 Matt Ettus <matt@ettus.com>
* src/sarlacc_sym: Handles more cases of oddly formed pins
1999-10-16 Ales Hvezda <ahvezda@geda.seul.org>
* configure.in src/Makefile.am: Now searching for libgeda-config
and added an include (-I) for libgeda includes (requested by Mike)
10/6/99 Moved Project Sarlacc into CVS
8/27/99 Set the program version to 19990829 to force Ales to release
on the 29th :)
Updated all *.c and *.h files to have the right address for the
FSF in the copyright/licence header
7/22/99 Integrated utils directory into the new seperate build system
Checked utils into cvs repository
----------- New seperate build system starts here -----------
5/6/99 Added the latest gmk_sym (includes char_width.c and mk_char_tab.pl)
from Jerry O'Keefe
Added char_width.c to Makefile.am, removed it from being an included
C file in gmk_sym.c
4/9/99 Renamed mk_sym to gmk_sym (Jerry's send a new one in)
3/30/99 Integrated Mike's latest viewlogic convert/smash code. (fixes the
minor type with snprintf)
3/26/99 Added 8031.txt as an example file for mk_sym
Put the latest version of mk_sym in place
3/25/99 #if 0'ed some code in convert_sym.c out just to make a -Wall -Werror
compile happy, can be put back in; doesn't matter to me.
3/23/99 Integrated new C version of the ViewLogic utils by Mike in the
./configure/build mechanism
Added more info related to these files to the README
3/22/99 Put the first version of the ViewLogic utils by Mike Jarabek in
this dir
Added info related to these files to the README
3/21/99 Created directory and put mk_sym.c into it
Removed some // from mk_sym.c
Created a README for the utils in this directory
|