mirror of
https://git.code.sf.net/p/zint/code
synced 2025-05-27 21:44:13 -04:00
GUI: remove sizeConstraint so squashable again (sigh)
- make Sequence Format textbox bigger (on own line) - suppress question mark in Windows dialogs AUSPOST: more standard error messages backend: add & use z_isdigit/upper/lower() macros docs: 20-bit Unicode -> 21-bit Unicode
This commit is contained in:
parent
07772094d5
commit
0b3fe8db93
40 changed files with 200 additions and 186 deletions
|
@ -6,7 +6,7 @@
|
|||
*/
|
||||
/* SPDX-License-Identifier: BSD-3-Clause */
|
||||
/*
|
||||
* To create "backend/eci_mb.h" (from project root directory):
|
||||
* To create "backend/eci_big5/gb18030/gb2312/gbk/ksx1001/sjis.h" (from project root directory):
|
||||
*
|
||||
* php backend/tools/gen_eci_mb_h.php
|
||||
*
|
||||
|
@ -14,7 +14,7 @@
|
|||
* https://haible.de/bruno/charsets/conversion-tables/GB18030.tar.bz2
|
||||
* using the version jdk-1.4.2/GB18030.TXT
|
||||
*/
|
||||
// 'zint.assertions' should set to 1 in php.ini
|
||||
// 'zend.assertions' should set to 1 in php.ini
|
||||
|
||||
$copyright_text = <<<'EOD'
|
||||
|
||||
|
@ -59,13 +59,12 @@ $year = 2022;
|
|||
function out_header(&$out, $name, $descr, $file, $start_year = 0, $extra_comment = '') {
|
||||
global $copyright_text, $basename, $year;
|
||||
$caps = strtoupper($name);
|
||||
$out[] = '/* ' . $name . '.h - tables for Unicode to ' . $descr . ',';
|
||||
$out[] = ' ' . 'generated by "backend/tools/' . $basename . '" from';
|
||||
$out[] = '/* ' . $name . '.h - tables for Unicode to ' . $descr . ', generated by "backend/tools/' . $basename . '"';
|
||||
if ($extra_comment !== '') {
|
||||
$out[] = ' "' . $file . '"';
|
||||
$out[] = ' from "' . $file . '"';
|
||||
$out[] = ' ' . $extra_comment . ' */';
|
||||
} else {
|
||||
$out[] = ' "' . $file . '" */';
|
||||
$out[] = ' from "' . $file . '" */';
|
||||
}
|
||||
$out[] = '/*';
|
||||
$out[] = ' libzint - the open source barcode library';
|
||||
|
|
|
@ -4,6 +4,7 @@
|
|||
libzint - the open source barcode library
|
||||
Copyright (C) 2022 Robin Stuart <rstuart114@gmail.com>
|
||||
*/
|
||||
/* SPDX-License-Identifier: BSD-3-Clause */
|
||||
/*
|
||||
* To create "backend/eci_sb.h" (from project root directory):
|
||||
*
|
||||
|
@ -24,11 +25,11 @@ $out_dirname = isset($opts['o']) ? $opts['o'] : ($dirname . '/..'); // Where to
|
|||
$out = array();
|
||||
|
||||
$head = <<<'EOD'
|
||||
/* eci_sb.h - Extended Channel Interpretations single-byte,
|
||||
generated by "backend/tools/gen_eci_sb_h.php" from
|
||||
"https://unicode.org/Public/MAPPINGS/ISO8859/8859-*.TXT" and
|
||||
"https://unicode.org/Public/MAPPINGS/VENDORS/MICSFT/WINDOWS/CP125*.TXT" */
|
||||
/* libzint - the open source barcode library
|
||||
/* eci_sb.h - Extended Channel Interpretations single-byte, generated by "backend/tools/gen_eci_sb_h.php"
|
||||
from "https://unicode.org/Public/MAPPINGS/ISO8859/8859-*.TXT"
|
||||
and "https://unicode.org/Public/MAPPINGS/VENDORS/MICSFT/WINDOWS/CP125*.TXT" */
|
||||
/*
|
||||
libzint - the open source barcode library
|
||||
Copyright (C) 2021-2022 Robin Stuart <rstuart114@gmail.com>
|
||||
|
||||
Redistribution and use in source and binary forms, with or without
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue