mirror of
https://git.code.sf.net/p/zint/code
synced 2025-05-18 17:25:09 -04:00
Add UltraCode symbology to the tcl backend.
This commit is contained in:
parent
fe517a7a58
commit
17474b10d8
4 changed files with 17 additions and 10 deletions
|
@ -70,7 +70,9 @@
|
|||
2020-02-01 2.7.1 HaO
|
||||
- Framework 2.7.1 update
|
||||
2020-04-06 HaO
|
||||
- Added option -fullmultibyte
|
||||
- Added option -fullmultibyte
|
||||
2020-04-07 2.8.0 HaO
|
||||
- Added symbology "UltraCode".
|
||||
*/
|
||||
|
||||
#if defined(__WIN32__) || defined(_WIN32) || defined(WIN32)
|
||||
|
@ -110,7 +112,7 @@
|
|||
/*----------------------------------------------------------------------------*/
|
||||
/* > File option defines */
|
||||
|
||||
#define VERSION "2.7.1"
|
||||
#define VERSION "2.8.0"
|
||||
|
||||
/*----------------------------------------------------------------------------*/
|
||||
/* >>>>> Hepler defines */
|
||||
|
@ -224,7 +226,8 @@ static char *s_code_list[] = {
|
|||
"Channel",
|
||||
"CodeOne",
|
||||
"GridMatrix",
|
||||
"UPNQR",
|
||||
"UPNQR",
|
||||
"UltraCode",
|
||||
"rMQR",
|
||||
NULL};
|
||||
|
||||
|
@ -320,7 +323,8 @@ static int s_code_number[] = {
|
|||
BARCODE_CHANNEL,
|
||||
BARCODE_CODEONE,
|
||||
BARCODE_GRIDMATRIX,
|
||||
BARCODE_UPNQR,
|
||||
BARCODE_UPNQR,
|
||||
BARCODE_ULTRA,
|
||||
BARCODE_RMQR,
|
||||
0};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue