diff --git a/CMakeLists.txt b/CMakeLists.txt index 16709baa..1ff49b50 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -10,7 +10,7 @@ set(CMAKE_INCLUDE_CURRENT_DIR ON) set (ZINT_VERSION_MAJOR 2) set (ZINT_VERSION_MINOR 1) -set (ZINT_VERSION_RELEASE 1) +set (ZINT_VERSION_RELEASE 2) set (ZINT_VERSION "${ZINT_VERSION_MAJOR}.${ZINT_VERSION_MINOR}.${ZINT_VERSION_RELEASE}" ) add_definitions (-DZINT_VERSION=\"${ZINT_VERSION}\" -Wall) diff --git a/backend/Makefile b/backend/Makefile index 0826a519..296748de 100644 --- a/backend/Makefile +++ b/backend/Makefile @@ -7,7 +7,7 @@ # make clean cleans up a previous compilation and any object or editor files # -ZINT_VERSION:=-DZINT_VERSION=\"2.1.1\" +ZINT_VERSION:=-DZINT_VERSION=\"2.1.2\" CC := gcc @@ -41,7 +41,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 $(DEFINES) $(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.0.0 $(INCLUDE) $(COMMON_OBJ) $(ONEDIM_OBJ) $(TWODIM_OBJ) $(POSTAL_OBJ) $(LIBS) + $(CC) $(CFLAGS) $(ZINT_VERSION) -shared -Wl,-soname,libzint.so -o libzint.so.2.1.2 $(INCLUDE) $(COMMON_OBJ) $(ONEDIM_OBJ) $(TWODIM_OBJ) $(POSTAL_OBJ) $(LIBS) ln -s libzint.so.* libzint.so .PHONY: install uninstall clean dist @@ -53,7 +53,7 @@ install: install -D -p --mode=0644 zint.h $(DESTDIR)$(includedir)/zint.h uninstall: - rm $(DESTDIR)$(libdir)libzint.* + rm $(DESTDIR)$(libdir)/libzint.* rm $(DESTDIR)$(includedir)/zint.h clean: diff --git a/docs/index.html b/docs/index.html index 4dab67f6..8e49b118 100644 --- a/docs/index.html +++ b/docs/index.html @@ -7,7 +7,7 @@

Zint Barcode Generator

by Robin Stuart <robin@zint.org.uk>

-

Version 2.1.1, 10th February 2009

+

Version 2.1.2, 1st March 2009

This document is a guide to Zint, the libzint library and the barcode symbologies supported by them.


@@ -303,9 +303,10 @@ the barcode symbologies supported by them.

C.1 Application Identifiers -
+
C.2 Fixed Length Fields
+ D Appendix D: Barcodes in Colour
diff --git a/docs/legal.html b/docs/legal.html index f535da94..24bf90e5 100644 --- a/docs/legal.html +++ b/docs/legal.html @@ -172,6 +172,10 @@ Code 16k, Codablock-F and Aztec Code. Added scale and direct to Data Matrix ECC 200 encoding algorithms to support NULL encoding and GS1 data encoding. 31/1/2009

v2.1.1 - Minor Data Matrix bugfix and added HIBC options. 10/2/2009

+

v2.1.2 - Added SVG output option. Improved Japanese character support +including Unicode > Shift-JIS capability. Bugfixes for Data Matrix +(missing characters at end of string) and Codablock-F (K1/K2 check digit +and row indicators above row 6). 1/3/2009

6.4 Sources of Information

Below is a list of some of the sources used in rough chronological order:

@@ -188,8 +192,8 @@ RM4SCC specification

to Printing the 4-State Barcode' and bcsample source code

Plessey algorithm from GNU-Barcode v0.98 by Leonid A. Broukhis

-

GS1 -General Specifications v 7.0

+

GS1 +General Specifications v 8.0 Issue 2

PNG: The Definitive Guide and wpng source code by Greg Reolofs

PDF417 specification and pdf417 source code by Grand @@ -203,6 +207,8 @@ Postal Service Specification USPS-B-3200

Adobe Systems Incorporated Encapsulated PostScript File Format Specification

BSI Online Library

+

Libdmtx Data Matrix +decoding library

6.5 Standard Compliance

Zint was developed to provide compliance with the following British and international standards: diff --git a/frontend/Makefile b/frontend/Makefile index 54c12799..5af7a459 100644 --- a/frontend/Makefile +++ b/frontend/Makefile @@ -6,7 +6,7 @@ # make clean cleans up a previous compilation and any object or editor files # -ZINT_VERSION:=-DZINT_VERSION=\"2.1.1\" +ZINT_VERSION:=-DZINT_VERSION=\"2.1.2\" CC := gcc INCLUDE := -I/usr/local/include diff --git a/readme b/readme index ae5283ce..ac677910 100644 --- a/readme +++ b/readme @@ -1,4 +1,4 @@ -Zint and libzint 2.1.1 +Zint and libzint 2.1.2 ---------------------- Zint is a front end program and library which provides support for over 40 barcode symbologies