mirror of
https://git.code.sf.net/p/zint/code
synced 2025-05-28 05:54:19 -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';
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue