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
|
2013-03-30 Giuseppe Scrivano <gscrivano@gnu.org>
* bootstrap.conf (gnulib_modules): Add git-version-gen.
* configure.ac: Use build-aux/git-version-gen to generate
the version.
* cmdline.c: Include "barcode.h" as first file.
* codabar.c: Likewise.
* code11.c: Likewise.
* code128.c: Likewise.
* code39.c: Likewise.
* code93.c: Likewise.
* ean.c: Likewise.
* i25.c: Likewise.
* library.c: Likewise.
* main.c: Likewise.
* msi.c: Likewise.
* pcl.c: Likewise.
* plessey.c: Likewise.
* ps.c: Likewise.
* sample.c: Likewise.
* svg.c: Likewise.
* Makefile.am: Update copyright years.
* bootstrap: Likewise.
* bootstrap.conf: Likewise.
* doc/Makefile.am: Likewise.
* po/POTFILES.in: Likewise.
2012-09-30 Giuseppe Scrivano <gscrivano@gnu.org>
* bootstrap: Upgrade from gnulib.
2012-09-30 Alessandro Rubini <rubini@gnudd.com>
* main.c (main): trim dos returns.
2012-01-13 Giuseppe Scrivano <gscrivano@gnu.org>
* main.c (main): Augment information provided by --help and
--version.
* configure.ac: Do not force -Wall for GCC.
* configure.ac: Change package name to `barcode'.
2012-01-11 Giuseppe Scrivano <gscrivano@gnu.org>
* doc/barcode.texi (The API): Update information about version
numbers.
* main.c (main): Use PACKAGE_VERSION instead of BARCODE_VERSION.
* barcode.h (BARCODE_VERSION): Drop define.
* barcode.h (BARCODE_VERSION_INT): Drop define.
* library.c (Barcode_Version): Compute the version number
dinamically.
* bootstrap.conf (gnulib_modules): Remove `exit'.
2011-12-27 Giuseppe Scrivano <gscrivano@gnu.org>
* sample.c (main): Remove local variable `ps'.
* ps.c (Barcode_ps_print): Remove local variable `k'.
* svg.c (Barcode_svg_print): Likewise.
Add support for i18n.
* Makefile.am (SUBDIRS): Add `po'.
* barcode.h (_, _N): Add definition.
* bootstrap.conf (gnulib_modules): Add "gettext".
* configure.ac (AC_INIT, CFLAGS): Check for gettext.
* cmdline.c (commandline_errormsg): Translate error messages.
* main.c (list_encodes, get_geometry, get_table, get_margin)
(get_page_geometry, option_table, strerror, main): Likewise.
* pcl.c (Barcode_pcl_print): Likewise.
* plessey.c (Barcode_pls_encode): Likewise.
* sample.c (main):
* po/POTFILES.in: New file.
Change license to GPLv3+.
* COPYING: Update license to GPLv3 or later.
* Makefile.am: Likewise.
* barcode.h: Likewise.
* cmdline.c: Likewise.
* cmdline.h: Likewise.
* codabar.c: Likewise.
* code11.c: Likewise.
* code128.c: Likewise.
* code39.c: Likewise.
* code93.c: Likewise.
* doc/Makefile.am: Likewise.
* ean.c: Likewise.
* i25.c: Likewise.
* lib/Makefile.am: Likewise.
* library.c: Likewise.
* main.c: Likewise.
* msi.c: Likewise.
* pcl.c: Likewise.
* plessey.c: Likewise.
* ps.c: Likewise.
* svg.c: Likewise.
2010-11-20 Giuseppe Scrivano <gscrivano@gnu.org>
* cmdline.c: Include <unistd.h>. Do not include <getopt.h>.
2011-11-20 Tiago Gonalves <tiagogoncalves@ua.pt>
Add SVG support.
* Makefile.am: Add svg.c to libbarcode_la_SOURCES.
* barcode.h: Define BARCODE_OUT_SVG.
* library.c (Barcode_svg_print): Add declaration.
* main.c: Declare variable svg.
(option_table): Add svg.
(main): Handle the svg output case.
* svg.c: New file.
2010-04-20 Giuseppe Scrivano <gscrivano@gnu.org>
* Makefile.am (AM_CFLAGS): Add -Ilib.
2010-04-19 Giuseppe Scrivano <gscrivano@gnu.org>
* Makefile.am (AM_CFLAGS): Remove @NO_GETOPT@.
(EXTRA_DIST): Remove compat/getopt.h and compat/getopt.c.
(barcode_LDADD): Add lib/libgnu.la.
(AM_LDFLAGS): Add definition.
* bootstrap: New file.
* bootstrap.conf: New file.
* configure.ac: Initialize gnulib.
* lib/Makefile.am: New file.
2010-12-25 Giuseppe Scrivano <gscrivano@gnu.org>
* bootstrap: New file.
* m4/: New directory.
* barcode.h: Include "config.h"
* configure.ac: Use automake and libtool.
* NEWS: New file.
* AUTHORS: New file.
* INSTALL: Remove file.
* config.guess: Remove file.
* config.sub: Remove file.
* install-sh: Remove file.
* doc/doc.barcode: Rename to...
* doc/barcode.texi: ...this. Use @@ instead of @.
* doc/Makefile.in: Remove.
* doc/Makefile.am: New file.
2010-12-24 Giuseppe Scrivano <gscrivano@gnu.org>
* configure.ac: Pretend to use at least autoconf 2.62.
2010-12-21 Giuseppe Scrivano <gscrivano@gnu.org>
* configure: Remove from the revision control.
* configure.in: Rename to..
* configure.ac: this.
2009-10-28 Wolfgang Rohdewald <wolfgang@rohdewald.de>
* added streaming mode for PCL output, allowing to embed the barcode
in PCL documents. New option -s for streaming mode. For a more
detailed description see mailing list, my post from 2009-07-26 23:40
* allow negative values for -g xoffset and yoffset.
2006-12-14 Alessandro Rubini <rubini@linux.it>
* pcl.c (Barcode_pcl_print): applied old patch by Andrea Scopece
2004-04-05 Hugh Sasse Staff Elec Eng <hgs@dmu.ac.uk>
* doc/Makefile.in: use @AWK@ instead of awk
2004-04-05 Alessandro Rubini <rubini@linux.it>
* doc/manpager: use "/" as delimiter in gsub, to prevent gawk warnings
Use sub (not gsub) to remove leasing blanks; fixes a problem with mawk
2004-04-04 Hugh Sasse Staff Elec Eng <hgs@dmu.ac.uk>
* configure.in: added "AC_PROG_AWK",
* Makefile.in: use @AWK@ instead of awk
2004-04-04 Alessandro Rubini <rubini@linux.it>
* code128.c (all encodings): turn char into unsigned char
(suggested by Hugh Sasse Staff Elec Eng)
* code39.c (Barcode_39_encode): turn char into unsigned char
* code93.c (Barcode_93_encode): turn char into unsigned char
* msi.c (Barcode_msi_encode): turn char into unsigned char
* plessey.c (Barcode_pls_encode): turn char into unsigned char
* codabar.c (Barcode_cbr_encode): turn char into unsigned char
2003-11-26 Alessandro Rubini <rubini@linux.it>
* configure.in (INFOTOHTML): added --no-split if using makeinfo
2003-04-30 Alessandro Rubini <rubini@linux.it>
* main.c (main): return 1 if at least one encoding failed
(problem reported by R T J van Leeuwen)
* Makefile.in (AR): set it to what configure finds. Needed in hp-ux.
Force $(INSTALL) to be the local one
(problems reported by Sal Mangiapane)
* configure.in: added AC_CHECK_TOOL(AR)
Added AC_CANONICAL stuff too, to be cross-compile friendly.
Removed AC_PROG_INSTALL, as on hp-ux it doesn't work
* config.sub: new file, shamelessly copied from gcc-3.2.1 sources
* config.guess: new file, shamelessly copied from gcc-3.2.1 sources
2002-07-20 ??? <roynia@iconlab.co.kr>
* code93.c (Barcode_93_encode): need 1byte more in allocating partial
2002-07-19 Leonid A Broukhis <leob@mailcom.com>
* plessey.c (Barcode_pls_encode): added three missing free()
* code93.c (Barcode_93_encode): added a missing free()
2002-03-28 Alessandro Rubini <rubini@linux.it>
* configure.in (MAKEINFOHTML): fixed. It didn't generate html
unless MAKEINFO was set in the environment (as I used to do)
* configure: regenerated with autoconf 2.13 (what I currently have)
2002-03-27 Peter Schlaile <udbz@rz.uni-karlsruhe.de>
* code93.c: fixed a typo in the encoding strings
2002-03-01 Alessandro Rubini <rubini@linux.it>
====> Version 0.98 released to arcana.linux.it and ftp.gnu.org
* library.c (Barcode_Encode): handle bitsets separately, like
in Barcode_Print (otherwise, you might loose NO_CHECKSUM).
* debian/changelog: moved to 0.98 (but should fix all debian/ stuff)
* contrib/barcode-for-delphi.tar.gz: new, contributed by Michael Geddes
* contrib/barcode-for-delphi.tar.gz.README: short info for file above
* main.c (main): allow "-g" to set size of code in a table as well
-- suggested and initiallt implemented by Joachim Reichelt.
(main): fixed missing "Page: 1 1" in postscript for tables
(main): for tables don't use Encode_and_Print, use a local
unrolled version, so the default margin can be removed and
we avoid problems with negative xoff in the output phase
(first column may be offset, as noted by Karl Magnus Kolstoe)
* doc/doc.barcode: documented change above.
* README: removed refernces to systemy.it, I'm no more there
Added link to FreeBSD ports tree and GLabels
Organized as sections with titles
* contrib/barcode-SVG.tar.gz: new contribution, by David J. Humphreys
* contrib/barcode-SVG.tar.gz.README: short description of file above
* contrib/grab-0.0.4.tar.gz: new program, by Tuukka Toivonen.
* contrib/grab-0.0.4.tar.gz.README: short description of file above
2002-03-01 Boszormenyi Zoltan <zboszor@externet.hu>
* barcode.spec: new file
2002-02-27 Alessandro Rubini <rubini@linux.it>
* bookland/bookland.py: updated to version 0.92 by Judah Milgram
2001-11-13 Alessandro Rubini <rubini@linux.it>
* README: Added a pointer to the Windows port.
2001-11-09 Cloyce D. Spradling <cloyce@headgear.org>
* code128.c (Barcode_128b_verify): prototype fix (unsigned char).
* ps.c (Barcode_ps_print): the comment for ascii codes must only
be printed if ascii is being printed (benign bug).
2001-11-06 Christoph Pross <c.pross@beck-ipc.com>
* pcl.c (Barcode_pcl_print): bugfix: bars were misplaced
2001-10-16 Nathan D. Holmes <nh412124@ursa.cosd.fedex.com>
====> Version 0.97 released to ftp.systemy.it and ftp.gnu.org
* code93.c: new file (I modified something as well - Alessandro)
* doc/doc.barcode (Supported Encodings): added docs for code93
* main.c: added code93 names
* Makefile.in (LIBOBJECTS): added code93.o
* library.c: added code93 entry points
2001-10-16 Alessandro Rubini <rubini@linux.it>
* doc/manpager: added (trivial) support for @itemize, added copyright
* sample.c (main): accept -P to create PCL output
* doc/doc.barcode (PCL Output): added the section, using text
provided by Andrea Scopece and turning it into texinfo.
Removed also a few extra newlines that made bad man pages
2001-10-16 Andrea Scopece <a.scopece@vizzavi.it>
* barcode.h: added BARCODE_OUT_PCL and BARCODE_OUT_PCL_III
* library.c (Barcode_Print): use BARCODE_OUT_PCL to select pcl_print()
* Makefile.in (LIBOBJECTS): added pcl.o
* pcl.c: new file, with PCL output support
2001-10-16 Alessandro Rubini <rubini@linux.it>
* doc/doc.barcode (Supported Encodings): added documentation for
EAN and UPC with checksum, as coded by mr. Bszrmnyi (below)
2001-10-16 Boszormenyi Zoltan <zboszor@externet.hu>
* ean.c:
I found that barcode-0.96 does not correctly encodes UPC-E.
This was mainly because in upc_e_to_a() the switch() branches
all ended without "break;".
Printing UPC-E did not print the leading encoding number and
the trailing UPC-A checksum. Now it does.
Accept EAN-13 and EAN-8 with and without the checksum.
So always treat 7 and 12 digit sequences as valid EAN codes
and accept 8 and 13 digit sequences as valid EAN codes when
the last digit is the same as the calculated one.
Accept UPC-A as above (11 or 12 digit sequences.)
Accepts UPC-E as:
6 digit sequence: the middle part of the code (leading '0' assumed)
7 digit sequence: the middle part and either a leading '0' or '1',
or a trailing UPC-A checksum. In that case, leading '0' assumed.
8 digit sequence: a leading '0' or '1', middle part, checksum
UPC-A, UPC-E, EAN-13, and EAN-8 may all include
an additional barcode to the right of the main barcode.
As a 7 or a 12 digit sequence may be ambiguous, please remember
that EAN is checked before UPC if you specified BARCODE_ANY.
2001-08-20 Alessandro Rubini <rubini@linux.it>
* sample.c (main): added upc-e and ean-8 samples
2001-08-11 Boszormenyi Zoltan <zboszor@externet.hu>
* ps.c (Barcode_ps_print): don't output "showpage" in EPS mode
2001-08-11 Alessandro Rubini <rubini@linux.it>
* README: Changed host names, added barcode-commit list.
2000-11-29 Alessandro Rubini <rubini@morgana.systemy.it>
* doc/doc.barcode (The Field List): 1pt == 0.352mm, not 0.0352
(thanks to Stephen Irven for reporting)
2000-11-09 Alessandro Rubini <rubini@morgana.systemy.it>
====> Version 0.96 released to ftp.systemy.it and ftp.gnu.org
* doc/Makefile.in ($(TARGET).html): fixed bug introduced on Sep 08
* doc/doc.barcode (top): correctly deal with "makeinfo --html"
2000-11-08 Alessandro Rubini <rubini@morgana.systemy.it>
* README: new network pointers added
* codabar.c (Barcode_cbr_encode): don't print ascii text for the
checksum.
* doc/doc.barcode (The Intermediate Representaion): new section
Documented the new encodings by Leonid.
Promoted two sections to chapters
Added Leonid in the AUTHORS section of the manpage.
* Makefile.in: don't remove docs in distclean, as the distribution
now includes the docs
2000-11-07 Alessandro Rubini <rubini@morgana.systemy.it>
* Makefile.in (clean): don't remove docs, do that only in distclean
* doc/Makefile.in: a new life for the former Makefile (to build
with both gmake and pmake with features added on 2000-09-08)
* configure.in: use $MAKE in checking for gmake if set
(to allow testing with BSD make)
Check if makeinfo can manage html, used for doc/Makefile.in
2000-11-07 Leonid A. Broukhis <leob@mailcom.com>
* code128.c (Barcode_encode_as): fixed a bug that prevented F
symbols to be correctly encoded.
* plessey.c: new file, for Plessey encoding.
* msi.c: new file, for MSI encoding.
* codabar.c: new file, for CodaBar encoding.
* code128.c (Barcode_128raw_encode): new encoding
(Barcode_128raw_verify): checker for new encoding
* barcode.h, library.c, main.c: added code128raw, codabar,
MSI and Plessey
2000-11-07 Hans Schou <chlor@schou.dk>
* contrib/barcodeps-0.1.tgz: new file, sent to Alessandro on Oct 7
2000-10-10 Alessandro Rubini <rubini@morgana.systemy.it>
* doc/manpager: use gsub instead of gensub, even though it may
leas to problems with some input. This achieves compatibility
with the original awk, so gawk is not needed any more
2000-10-02 Alessandro Rubini <rubini@morgana.systemy.it>
* ps.c (Barcode_ps_print): add a backslash in front of '(' too.
Suggested by H Y <hlyi@yahoo.com>.
(Barcode_ps_print): use ps arrays to get compact (and prettier)
PostScript output. Suggested by Hans Schou <chlor@schou.dk>.
* main.c (get_geometry): accept "+offset+offset" to keep default size.
Suggested by Godmar Back <gback@cs.utah.edu>.
2000-09-16 Alessandro Rubini <rubini@morgana.systemy.it>
* ps.c (Barcode_ps_print): use "half text height" instead of
"two text heights" as minimum bar height. Suggested by
Oliver Vecernik <vecernik@aon.at>.
2000-09-14 Alessandro Rubini <rubini@morgana.systemy.it>
* barcode.h: added the standard ``extern "C"'' stuff for C++
(bug reported by Dany Pardo <dani@minerva.enpl.es>)
2000-09-08 Andrea Ferraris <andrea@gnu.systemy.it>
* doc/Makefile: added support for pdf and html via makeinfo
* doc/doc.barcode: added a missing trailing dot in an xref
2000-08-28 Alessandro Rubini <rubini@morgana.systemy.it>
* i25.c (Barcode_i25_encode): fixed checksum calculation
(thanks to Hans Schou <chlor@schou.dk> for reporting)
2000-05-19 Alessandro Rubini <rubini@morgana.systemy.it>
====> Version 0.95.1 released to ftp.prosa.it
* code128.c (Barcode_128_make_array): use code C if encoding 2 digits
2000-05-08 Alessandro Rubini <rubini@morgana.systemy.it>
* cmdline.c (commandline_errormsg): removed "?:" gcc extension
* configure.in: added checks for unistd.h and strcasecmp, as
windows doesn't have them (thanks Marten Karl)
2000-04-21 Alessandro Rubini <rubini@morgana.systemy.it>
* doc/Makefile: modified to build with both gmake and pmake
* Makefile: modified to build with both gmake and pmake
2000-04-20 Alessandro Rubini <rubini@morgana.systemy.it>
* Makefile.in (.depend): removed gmake-specific features.
Thanks to Jukka A. Ukkonen for reporting.
* configure.in: detect gmake and avoid its features if not there
* ps.c (Barcode_ps_print): fix: codes with (relatively) short bars
were enlarged in height instead of reduced in width (also
the enlarging was wrong). Thanks to Rob Seace for reporting.
2000-04-09 Alessandro Rubini <rubini@morgana.systemy.it>
* code128.c (Barcode_128_encode): removed extra messages to stderr,
forgot in the code when I finished code128 support
* doc/doc.barcode: bugfix: in the description of geometry, the unit
of measure is configurable
2000-02-03 Alessandro Rubini <rubini@morgana.systemy.it>
====> Version 0.95 released to ftp.prosa.it and ftp.gnu.org
2000-01-26 Alessandro Rubini <rubini@morgana.systemy.it>
* code128.c (Barcode_128_encode): new encoding: full-featured code128
* README: added reference to original ftp site
2000-01-05 Alessandro Rubini <rubini@morgana.systemy.it>
* main.c (get_page_geometry): avoid using snprintf(), missing in HP/UX
* code39.c (Barcode_39_verify): added missing parens (a syntax error,
but only apparent where islower() is not a macro). Thanks to
Alexandre Oliva for finding it out.
2000-01-04 Alessandro Rubini <rubini@morgana.systemy.it>
* doc/doc.barcode (The API): removed spurious "flags" argument
from description of Barcode_Encode_and_Print().
Thanks to Willy Wittesaele for noting the error.
1999-12-24 Alessandro Rubini <rubini@morgana.systemy.it>
* main.c (get_geometry): fixed the y margin (thanks to Steve Kunath)
====> Version 0.94 released to ftp.prosa.it and ftp.gnu.org
1999-10-24 Alessandro Rubini <rubini@morgana.systemy.it>
* INSTALL: added instructions to install on a Debian GNU/Linux system
* debian/*: edited information for proper Debian support
* debian/rules (binary-arch): new file, from "deb-make"
* Makefile.in (install): added "-m 0644" to install non-executables
* code128.c (Barcode_128b_encode): fixed checksum calculation.
====> Version 0.93 released to ftp.prosa.it and ftp.gnu.org
1999-09-26 Alessandro Rubini <rubini@morgana.systemy.it>
* doc/doc.barcode: fixed the rendering of complex options (-g and -t)
Removed extra "table of contents" heading in the ps output
Changed attribution on cover page
* main.c (get_table and others): be more specific in error msgs
(get_page_geometry): numeric specification is according to "-u"
(get_table): accept unsymmetric margin specification
(option_table): added "-u" to accept "cm", "mm", "in", "pt"
(get_page_geometry): bugfix: numeric spec was always consideder mm
* cmdline.c (commandline): don't always print help
* Makefile.in ($(INFO)): added missing dependency: distributed docs
formats were out of date with distributed doc source.
1999-09-13 Alessandro Rubini <rubini@amelia.prosa.it>
* main.c (main): print tables: y used xmargin (Tim Withers,Jon Bakken)
1999-09-06 Alessandro Rubini <rubini@plinio.prosa.it>
* Makefile.in: prevent -Wall when compiling getopt.
* i25.c, ean.c, ps.c: switched to unsigned char, to prevent warnings
on newer gcc's (thanks Al Piszcz)
====> Version 0.92 released to ftp.prosa.it and ftp.gnu.org
1999-08-31 Alessandro Rubini <rubini@plinio.prosa.it>
* i25.c: the right guard was thinner than other bars
* doc/doc.barcode: spelling and manpage fixes (thanks Joachim Schaaf)
====> Version 0.91.4 released to ftp.prosa.it
1999-08-23 Thad Floryan <thad@thadlabs.com>
* main.c (strerror): replacement strerror selected by autoconf
1999-08-06 Alessandro Rubini <rubini@morgana.systemy.it>
* changed all "ENODATA" in "EINVAL", as some system miss ENODATA
* Makefile.in (all): removed ".depend" from all, as it needs gcc
* i25.c (Barcode_i25_encode): fixed wrong free() in an unlinely path
* ean.c (Barcode_ean_encode): don't use sprintf's result, as some
systems return a char pointer instead of the number of chars.
* configure.in: new file, as autoconf support is being added
====> Version 0.91.3 released to ftp.prosa.it
1999-08-05 Alessandro Rubini <rubini@morgana.systemy.it>
* code128.c (Barcode_128c_encode): fixed malloc of textinfo (was short)
* i25.c (Barcode_i25_encode): new encoding: interleaved 2 of 5
* ean.c (Barcode_ean_encode): enlarged static "text", to fit add-5
* code128.c (Barcode_128b_encode): new encoding: 128-B
====> Version 0.91.2 released to ftp.prosa.it
1999-08-04 Alessandro Rubini <rubini@morgana.systemy.it>
* bookland/bookland.py: upgraded to version 0.06 (Judas Milgram)
* ean.c (Barcode_ean_encode): fixed layout of 1st/last digit in UPC-A
* code128.c (Barcode_128c_encode): fixed checksum calculation
====> Version 0.91.1 released to ftp.prosa.it
1999-07-09 Alessandro Rubini <rubini@morgana.systemy.it>
* sample.c (main): due changes to show code128-C
* code128.c (Barcode_128c_encode): implemented code 128-C
* ps.c (Barcode_ps_print): Accept float position and font size
* code39.c (Barcode_39_encode): reduced font (looked too big)
====> Version 0.91 released to both ftp.prosa.it and ftp.gnu.org
1999-07-08 Alessandro Rubini <rubini@morgana.systemy.it>
* ps.c (Barcode_ps_print): shrink all the bars by 0.15 points
(Barcode_ps_print): Use Helvetica as font, not Courier-Bold
(Barcode_ps_print): remember previous font to make shorter ps output
1999-07-07 Alessandro Rubini <rubini@morgana.systemy.it>
* bookland/bookland.py: new enntry, by Judah Milgram.
* ean.c (Barcode_isbn_verify): fixed bug with "-X" codes (thanks Judah)
====> Version 0.90.3 released to ftp.prosa.it/pub/software
1999-07-07 Alessandro Rubini <rubini@morgana.systemy.it>
* doc/doc.barcode: fixed the "BUGS" section (remove fixed stuff)
* ean.c (Barcode_ean_encode): added '+' markers in partial and textinfo
* ps.c (Barcode_ps_print): added support for text over bars ('+' mode)
====> Version 0.90.2, internal checkpoint
1999-07-06 Alessandro Rubini <rubini@morgana.systemy.it>
* Makefile: dirty autodetect of libpaper
* main.c (get_page_geometry): parse a cmdline argument (mcm@glisco.it)
(main): added "--version"
(main): added diagnostic message for unencodable strings
====> Version 0.90.1 released to ftp.prosa.it/pub/software
1999-07-03 Alessandro Rubini <rubini@morgana.systemy.it>
* barcode.h: removed BARCODE_OUT_PG_* as only the library doesn't
need to hack with the page size.
* ean.c (Barcode_ean_encode): supplemental 2 and 5 encodings (no text)
* library.c: use unsigned char all over the place, to prevent warnings
1999-07-01 Alessandro Rubini <rubini@morgana.systemy.it>
* ean.c: added EAN-8 and UPC-E support
* Updated the address of the FSF in any source file
* README: new file.
====> Version 0.90 is the first public release. No Changelog up to now.
|