mirror of
https://github.com/zint/zint
synced 2024-11-16 20:57:25 +13:00
Include VIN and MailMark symbologies
This commit is contained in:
parent
fa3c150610
commit
7fb7203a86
@ -96,6 +96,7 @@ SOURCES += ../backend/2of5.c \
|
|||||||
../backend/imail.c \
|
../backend/imail.c \
|
||||||
../backend/large.c \
|
../backend/large.c \
|
||||||
../backend/library.c \
|
../backend/library.c \
|
||||||
|
../backend/mailmark.c \
|
||||||
../backend/maxicode.c \
|
../backend/maxicode.c \
|
||||||
../backend/medical.c \
|
../backend/medical.c \
|
||||||
../backend/pcx.c \
|
../backend/pcx.c \
|
||||||
|
@ -14,7 +14,7 @@
|
|||||||
# so you can encode the package version directly into the source files.
|
# so you can encode the package version directly into the source files.
|
||||||
#-----------------------------------------------------------------------
|
#-----------------------------------------------------------------------
|
||||||
|
|
||||||
AC_INIT([zint], [2.6.2])
|
AC_INIT([zint], [2.6.3])
|
||||||
|
|
||||||
#--------------------------------------------------------------------
|
#--------------------------------------------------------------------
|
||||||
# Call TEA_INIT as the first TEA_ macro to set up initial vars.
|
# Call TEA_INIT as the first TEA_ macro to set up initial vars.
|
||||||
|
@ -1,2 +1,2 @@
|
|||||||
package ifneeded zint 2.6.2\
|
package ifneeded zint 2.6.3\
|
||||||
[list load [file join $dir zint[info sharedlibextension]]]
|
[list load [file join $dir zint[info sharedlibextension]]]
|
||||||
|
@ -49,7 +49,10 @@
|
|||||||
- Misspelled symbology: AztecRunes
|
- Misspelled symbology: AztecRunes
|
||||||
2017-10-23 2.6.2 HaO
|
2017-10-23 2.6.2 HaO
|
||||||
- Framework 2.6.2 bugfixes
|
- Framework 2.6.2 bugfixes
|
||||||
- Allow dll unload
|
- Allow dll unload
|
||||||
|
2018-02-13 2.6.3 HaO
|
||||||
|
- Framework trunk update
|
||||||
|
- Added VIN and MailMark symbologies.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#if defined(__WIN32__) || defined(_WIN32) || defined(WIN32)
|
#if defined(__WIN32__) || defined(_WIN32) || defined(WIN32)
|
||||||
@ -89,7 +92,7 @@
|
|||||||
/*----------------------------------------------------------------------------*/
|
/*----------------------------------------------------------------------------*/
|
||||||
/* > File option defines */
|
/* > File option defines */
|
||||||
|
|
||||||
#define VERSION "2.6.2"
|
#define VERSION "2.6.3"
|
||||||
|
|
||||||
/*----------------------------------------------------------------------------*/
|
/*----------------------------------------------------------------------------*/
|
||||||
/* >>>>> Hepler defines */
|
/* >>>>> Hepler defines */
|
||||||
@ -158,7 +161,8 @@ static char *s_code_list[] = {
|
|||||||
"ISBN",
|
"ISBN",
|
||||||
"RM4SCC",
|
"RM4SCC",
|
||||||
"Datamatrix",
|
"Datamatrix",
|
||||||
"EAN14",
|
"EAN14",
|
||||||
|
"VIN",
|
||||||
"CodablockF",
|
"CodablockF",
|
||||||
"NVE18",
|
"NVE18",
|
||||||
"JapanPost",
|
"JapanPost",
|
||||||
@ -185,7 +189,8 @@ static char *s_code_list[] = {
|
|||||||
"HIBC-CodablockF",
|
"HIBC-CodablockF",
|
||||||
"HIBCAztec",
|
"HIBCAztec",
|
||||||
"DotCode",
|
"DotCode",
|
||||||
"HanXin",
|
"HanXin",
|
||||||
|
"MailMark",
|
||||||
"AztecRunes",
|
"AztecRunes",
|
||||||
"Code32",
|
"Code32",
|
||||||
"EAN-CC",
|
"EAN-CC",
|
||||||
@ -251,7 +256,8 @@ static int s_code_number[] = {
|
|||||||
BARCODE_ISBNX,
|
BARCODE_ISBNX,
|
||||||
BARCODE_RM4SCC,
|
BARCODE_RM4SCC,
|
||||||
BARCODE_DATAMATRIX,
|
BARCODE_DATAMATRIX,
|
||||||
BARCODE_EAN14,
|
BARCODE_EAN14,
|
||||||
|
BARCODE_VIN,
|
||||||
BARCODE_CODABLOCKF,
|
BARCODE_CODABLOCKF,
|
||||||
BARCODE_NVE18,
|
BARCODE_NVE18,
|
||||||
BARCODE_JAPANPOST,
|
BARCODE_JAPANPOST,
|
||||||
@ -278,7 +284,8 @@ static int s_code_number[] = {
|
|||||||
BARCODE_HIBC_BLOCKF,
|
BARCODE_HIBC_BLOCKF,
|
||||||
BARCODE_HIBC_AZTEC,
|
BARCODE_HIBC_AZTEC,
|
||||||
BARCODE_DOTCODE,
|
BARCODE_DOTCODE,
|
||||||
BARCODE_HANXIN,
|
BARCODE_HANXIN,
|
||||||
|
BARCODE_MAILMARK,
|
||||||
BARCODE_AZRUNE,
|
BARCODE_AZRUNE,
|
||||||
BARCODE_CODE32,
|
BARCODE_CODE32,
|
||||||
BARCODE_EANX_CC,
|
BARCODE_EANX_CC,
|
||||||
|
@ -184,6 +184,10 @@ SOURCE=..\backend\library.c
|
|||||||
# End Source File
|
# End Source File
|
||||||
# Begin Source File
|
# Begin Source File
|
||||||
|
|
||||||
|
SOURCE=..\backend\mailmark.c
|
||||||
|
# End Source File
|
||||||
|
# Begin Source File
|
||||||
|
|
||||||
SOURCE=..\backend\maxicode.c
|
SOURCE=..\backend\maxicode.c
|
||||||
# End Source File
|
# End Source File
|
||||||
# Begin Source File
|
# Begin Source File
|
||||||
|
@ -188,6 +188,10 @@ SOURCE=..\..\backend\library.c
|
|||||||
# End Source File
|
# End Source File
|
||||||
# Begin Source File
|
# Begin Source File
|
||||||
|
|
||||||
|
SOURCE=..\..\backend\mailmark.c
|
||||||
|
# End Source File
|
||||||
|
# Begin Source File
|
||||||
|
|
||||||
SOURCE=..\..\frontend\main.c
|
SOURCE=..\..\frontend\main.c
|
||||||
# End Source File
|
# End Source File
|
||||||
# Begin Source File
|
# Begin Source File
|
||||||
|
Loading…
Reference in New Issue
Block a user