Update version number to 2.3.0

This commit is contained in:
hooper114 2009-11-08 22:17:11 +00:00
parent 7c1d8fdc5b
commit 35cacaef67
10 changed files with 38 additions and 35 deletions

View file

@ -69,6 +69,9 @@ dmatrix.c:
Data Matrix ECC 100
Data Matrix ECC 140
gridmtx.c:
Grid Matrix
imail.c:
USPS OneCode (Intelligent Mail)
@ -81,9 +84,6 @@ medical.c:
Codabar
Code 32
micqr.c:
Micro QR Code
pdf417.c:
PDF417
Truncated PDF417
@ -105,7 +105,8 @@ postal.c:
Japanese Postal Code
qr.c:
QR Code (libqrencode)
QR Code
Micro QR Code
rss.c:
GS1 DataBar (DataBar-14) (RSS-14)

View file

@ -6,7 +6,7 @@
# make clean cleans up a previous compilation and any object or editor files
#
ZINT_VERSION:=-DZINT_VERSION=\"2.2.2\"
ZINT_VERSION:=-DZINT_VERSION=\"2.3.0\"
CC := gcc
@ -33,7 +33,7 @@ libzint: code.c code128.c 2of5.c upcean.c medical.c telepen.c plessey.c postal.c
$(CC) -Wall -fPIC $(CFLAGS) $(ZINT_VERSION) -c $(POSTAL)
$(CC) -Wall -fPIC $(CFLAGS) $(ZINT_VERSION) -c $(TWODIM)
$(CC) -Wall -fPIC $(CFLAGS) $(ZINT_VERSION) -c $(COMMON)
$(CC) $(CFLAGS) $(ZINT_VERSION) -shared -Wl,-soname,libzint.so -o libzint.so.2.2.2 $(INCLUDE) $(COMMON_OBJ) $(ONEDIM_OBJ) $(TWODIM_OBJ) $(POSTAL_OBJ) $(LIBS)
$(CC) $(CFLAGS) $(ZINT_VERSION) -shared -Wl,-soname,libzint.so -o libzint.so.2.3.0 $(INCLUDE) $(COMMON_OBJ) $(ONEDIM_OBJ) $(TWODIM_OBJ) $(POSTAL_OBJ) $(LIBS)
ln -s libzint.so.* libzint.so
.PHONY: install uninstall clean dist

View file

@ -7,7 +7,7 @@
# make clean cleans up a previous compilation and any object or editor files
#
ZINT_VERSION:=-DZINT_VERSION=\"2.2.2\"
ZINT_VERSION:=-DZINT_VERSION=\"2.3.0\"
CC:= gcc

View file

@ -596,7 +596,7 @@ int eanx(struct zint_symbol *symbol, unsigned char source[], int src_len)
}
if(symbol->symbology != BARCODE_ISBNX) {
/* ISBN has it's own checking routine */
error_number = is_sane(NEON, source, src_len);
error_number = is_sane("0123456789+", source, src_len);
if(error_number == ERROR_INVALID_DATA) {
strcpy(symbol->errtxt, "Invalid characters in data");
return error_number;