2020-09-05 03:38:11 +12:00
|
|
|
<?php
|
|
|
|
/* Update Zint version number in various files */
|
|
|
|
/*
|
|
|
|
libzint - the open source barcode library
|
RMQR: update to ISO/IEC 23941:2022 - R13x77 numeric cclens change 8 -> 7
QRCODE: use stricter interpretation of ZINT_FULL_MULTIBYTE, excluding
certain trailing bytes
libzint: fix some confusing error messages introduced by segment stuff
general: new escape chars \U, \d and \o
backend_qt: fudge rendering of border rectangles due to scaling/translation
rounding errors TODO: better fudge
GUI: foreground/background colours -> text boxes and icon buttons, add swap
button, independently movable picker (NULL parent), preview colour changes,
preview Data Window changes, add clear data (del) buttons, add zap button
and Factory Reset menu option, various other fixes
libzint: remove STATIC_UNLESS_ZINT_TEST, use wrappers
CMake: add find package QtSvg, remove QtXml
manual: split symbology and general specs and sort, move DAFT to 4-state,
UPC/EAN -> EAN/UPC, DataBar -> GS1 DataBar always, expand MAILMARK info,
various other fiddlings
man page: options or -> |, expand MSI Plessey check digit options
README.linux: add packages info
license: add SPDX-License-Identifier to touched files
2022-06-10 08:52:02 +12:00
|
|
|
Copyright (C) 2020-2022 Robin Stuart <rstuart114@gmail.com>
|
2020-09-05 03:38:11 +12:00
|
|
|
*/
|
RMQR: update to ISO/IEC 23941:2022 - R13x77 numeric cclens change 8 -> 7
QRCODE: use stricter interpretation of ZINT_FULL_MULTIBYTE, excluding
certain trailing bytes
libzint: fix some confusing error messages introduced by segment stuff
general: new escape chars \U, \d and \o
backend_qt: fudge rendering of border rectangles due to scaling/translation
rounding errors TODO: better fudge
GUI: foreground/background colours -> text boxes and icon buttons, add swap
button, independently movable picker (NULL parent), preview colour changes,
preview Data Window changes, add clear data (del) buttons, add zap button
and Factory Reset menu option, various other fixes
libzint: remove STATIC_UNLESS_ZINT_TEST, use wrappers
CMake: add find package QtSvg, remove QtXml
manual: split symbology and general specs and sort, move DAFT to 4-state,
UPC/EAN -> EAN/UPC, DataBar -> GS1 DataBar always, expand MAILMARK info,
various other fiddlings
man page: options or -> |, expand MSI Plessey check digit options
README.linux: add packages info
license: add SPDX-License-Identifier to touched files
2022-06-10 08:52:02 +12:00
|
|
|
/* SPDX-License-Identifier: BSD-3-Clause */
|
2020-09-05 03:38:11 +12:00
|
|
|
/* Run from project directory
|
|
|
|
*
|
|
|
|
* php tools/update_version.php ZINT_VERSION_MAJOR ZINT_VERSION_MINOR ZINT_VERSION_RELEASE [ZINT_VERSION_BUILD]
|
|
|
|
*
|
|
|
|
* e.g. before release
|
|
|
|
* php tools/update_version.php 3 4 5
|
2022-05-19 21:17:51 +12:00
|
|
|
* cd docs; make
|
2020-09-05 03:38:11 +12:00
|
|
|
* after release
|
|
|
|
* php tools/update_version.php 3 4 5 9
|
2022-05-19 21:17:51 +12:00
|
|
|
* cd docs; make
|
2020-09-05 03:38:11 +12:00
|
|
|
*/
|
|
|
|
|
|
|
|
$basename = basename(__FILE__);
|
|
|
|
$dirname = dirname(__FILE__);
|
|
|
|
|
|
|
|
$data_dirname = $dirname . '/../';
|
|
|
|
|
|
|
|
if ($argc < 4) {
|
|
|
|
exit("$basename: ZINT_VERSION_MAJOR ZINT_VERSION_MINOR ZINT_VERSION_RELEASE [ZINT_VERSION_BUILD]" . PHP_EOL);
|
|
|
|
}
|
|
|
|
|
|
|
|
$major = $argv[1];
|
|
|
|
$minor = $argv[2];
|
|
|
|
$release = $argv[3];
|
|
|
|
$build = $argc > 4 ? $argv[4] : "0";
|
|
|
|
if (!ctype_digit($major) || !ctype_digit($minor) || !ctype_digit($release) || !ctype_digit($build)) {
|
|
|
|
exit("$basename: ZINT_VERSION_MAJOR ZINT_VERSION_MINOR ZINT_VERSION_RELEASE [ZINT_VERSION_BUILD] must be numeric" . PHP_EOL);
|
|
|
|
}
|
|
|
|
$major = (int) $major;
|
|
|
|
$minor = (int) $minor;
|
|
|
|
$release = (int) $release;
|
|
|
|
$build = (int) $build;
|
|
|
|
if ($major === 0) {
|
|
|
|
exit("$basename: ZINT_VERSION_MAJOR zero" . PHP_EOL);
|
|
|
|
}
|
|
|
|
if ($build && $build !== 9) {
|
|
|
|
exit("$basename: ZINT_VERSION_BUILD not 9" . PHP_EOL);
|
|
|
|
}
|
|
|
|
|
|
|
|
$v_base_str = $v_str = "$major.$minor.$release";
|
|
|
|
if ($build) {
|
|
|
|
$v_str .= ".$build";
|
|
|
|
}
|
2021-10-22 10:34:19 +13:00
|
|
|
$rc_str1 = "$major,$minor,$release,$build";
|
|
|
|
$rc_str2 = "$major.$minor.$release.$build";
|
2020-09-05 03:38:11 +12:00
|
|
|
|
RMQR: update to ISO/IEC 23941:2022 - R13x77 numeric cclens change 8 -> 7
QRCODE: use stricter interpretation of ZINT_FULL_MULTIBYTE, excluding
certain trailing bytes
libzint: fix some confusing error messages introduced by segment stuff
general: new escape chars \U, \d and \o
backend_qt: fudge rendering of border rectangles due to scaling/translation
rounding errors TODO: better fudge
GUI: foreground/background colours -> text boxes and icon buttons, add swap
button, independently movable picker (NULL parent), preview colour changes,
preview Data Window changes, add clear data (del) buttons, add zap button
and Factory Reset menu option, various other fixes
libzint: remove STATIC_UNLESS_ZINT_TEST, use wrappers
CMake: add find package QtSvg, remove QtXml
manual: split symbology and general specs and sort, move DAFT to 4-state,
UPC/EAN -> EAN/UPC, DataBar -> GS1 DataBar always, expand MAILMARK info,
various other fiddlings
man page: options or -> |, expand MSI Plessey check digit options
README.linux: add packages info
license: add SPDX-License-Identifier to touched files
2022-06-10 08:52:02 +12:00
|
|
|
/* `$to_do` is no. of lines that should get replaced/changed, not no. of replacements */
|
2020-09-05 03:38:11 +12:00
|
|
|
function version_replace($to_do, $file, $match_pattern, $replace_pattern, $replace_str) {
|
|
|
|
global $basename;
|
|
|
|
|
|
|
|
if (($get = file_get_contents($file)) === false) {
|
|
|
|
exit("$basename: ERROR: Could not read file \"$file\"" . PHP_EOL);
|
|
|
|
}
|
|
|
|
|
|
|
|
$lines = explode("\n", $get);
|
|
|
|
$done = 0;
|
|
|
|
foreach ($lines as $li => $line) {
|
|
|
|
if (preg_match($match_pattern, $line)) {
|
|
|
|
$cnt = 0;
|
|
|
|
$lines[$li] = preg_replace($replace_pattern, $replace_str, $line, 1, $cnt);
|
|
|
|
if ($cnt === 0 || $lines[$li] === NULL) {
|
|
|
|
exit("$basename: ERROR: Could not replace \"$match_pattern\" in file \"$file\"" . PHP_EOL);
|
|
|
|
}
|
|
|
|
$done++;
|
|
|
|
}
|
|
|
|
if ($done === $to_do) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if ($done !== $to_do) {
|
|
|
|
exit("$basename: ERROR: Only did $done replacements of $to_do in file \"$file\"" . PHP_EOL);
|
|
|
|
}
|
|
|
|
if (!file_put_contents($file, implode("\n", $lines))) {
|
|
|
|
exit("$basename: ERROR: Could not write file \"$file\"" . PHP_EOL);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-10-22 10:34:19 +13:00
|
|
|
function rc_replace($file, $rc_str1, $rc_str2) {
|
2020-09-05 03:38:11 +12:00
|
|
|
global $basename;
|
|
|
|
|
|
|
|
if (($get = file_get_contents($file)) === false) {
|
|
|
|
exit("$basename: ERROR: Could not read file \"$file\"" . PHP_EOL);
|
|
|
|
}
|
|
|
|
|
2021-10-22 10:34:19 +13:00
|
|
|
$match_pattern1 = '/#define[ \t]+VER_FILEVERSION[ \t]+/';
|
|
|
|
$match_pattern2 = '/#define[ \t]+VER_FILEVERSION_STR[ \t]+/';
|
2020-09-05 03:38:11 +12:00
|
|
|
$lines = explode("\n", $get);
|
|
|
|
$done = 0;
|
|
|
|
foreach ($lines as $li => $line) {
|
2021-10-22 10:34:19 +13:00
|
|
|
if (preg_match($match_pattern1, $line)) {
|
2020-09-05 03:38:11 +12:00
|
|
|
$cnt = 0;
|
2021-10-22 10:34:19 +13:00
|
|
|
$lines[$li] = preg_replace('/[0-9,]+/', $rc_str1, $line, 1, $cnt);
|
2020-09-05 03:38:11 +12:00
|
|
|
if ($cnt === 0 || $lines[$li] === NULL) {
|
2021-10-22 10:34:19 +13:00
|
|
|
exit("$basename: ERROR: Could not replace \"$match_pattern1\" in file \"$file\"" . PHP_EOL);
|
|
|
|
}
|
|
|
|
$done++;
|
|
|
|
} else if (preg_match($match_pattern2, $line)) {
|
|
|
|
$cnt = 0;
|
|
|
|
$lines[$li] = preg_replace('/[0-9.]+/', $rc_str2, $line, 1, $cnt);
|
|
|
|
if ($cnt === 0 || $lines[$li] === NULL) {
|
|
|
|
exit("$basename: ERROR: Could not replace \"$match_pattern2\" in file \"$file\"" . PHP_EOL);
|
2020-09-05 03:38:11 +12:00
|
|
|
}
|
|
|
|
$done++;
|
|
|
|
}
|
|
|
|
if ($done === 2) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if ($done !== 2) {
|
|
|
|
exit("$basename: ERROR: Only did $done replacements of 2 in file \"$file\"" . PHP_EOL);
|
|
|
|
}
|
|
|
|
if (!file_put_contents($file, implode("\n", $lines))) {
|
|
|
|
exit("$basename: ERROR: Could not write file \"$file\"" . PHP_EOL);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-11-27 04:10:06 +13:00
|
|
|
// CMakeLists.txt
|
|
|
|
|
|
|
|
$file = $data_dirname . 'CMakeLists.txt';
|
|
|
|
|
|
|
|
if (($get = file_get_contents($file)) === false) {
|
|
|
|
exit("$basename: ERROR: Could not read file \"$file\"" . PHP_EOL);
|
|
|
|
}
|
|
|
|
|
|
|
|
$lines = explode("\n", $get);
|
|
|
|
$done = 0;
|
|
|
|
foreach ($lines as $li => $line) {
|
|
|
|
if (preg_match('/\(ZINT_VERSION_(MAJOR|MINOR|RELEASE|BUILD)/', $line, $matches)) {
|
|
|
|
$cnt = 0;
|
|
|
|
$mmr = $matches[1] === "MAJOR" ? $major : ($matches[1] === "MINOR" ? $minor : ($matches[1] === "RELEASE" ? $release : $build));
|
|
|
|
$lines[$li] = preg_replace('/[0-9]+\)/', $mmr . ')', $line, 1, $cnt);
|
|
|
|
if ($cnt === 0 || $lines[$li] === NULL) {
|
|
|
|
exit("$basename: ERROR: Could not replace ZINT_VERSION_{$matches[1]} in file \"$file\"" . PHP_EOL);
|
|
|
|
}
|
|
|
|
$done++;
|
|
|
|
}
|
|
|
|
if ($done === 4) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if ($done !== 4) {
|
|
|
|
exit("$basename: ERROR: Only did $done replacements of 4 in file \"$file\"" . PHP_EOL);
|
|
|
|
}
|
|
|
|
if (!file_put_contents($file, implode("\n", $lines))) {
|
|
|
|
exit("$basename: ERROR: Could not write file \"$file\"" . PHP_EOL);
|
|
|
|
}
|
|
|
|
|
RMQR: update to ISO/IEC 23941:2022 - R13x77 numeric cclens change 8 -> 7
QRCODE: use stricter interpretation of ZINT_FULL_MULTIBYTE, excluding
certain trailing bytes
libzint: fix some confusing error messages introduced by segment stuff
general: new escape chars \U, \d and \o
backend_qt: fudge rendering of border rectangles due to scaling/translation
rounding errors TODO: better fudge
GUI: foreground/background colours -> text boxes and icon buttons, add swap
button, independently movable picker (NULL parent), preview colour changes,
preview Data Window changes, add clear data (del) buttons, add zap button
and Factory Reset menu option, various other fixes
libzint: remove STATIC_UNLESS_ZINT_TEST, use wrappers
CMake: add find package QtSvg, remove QtXml
manual: split symbology and general specs and sort, move DAFT to 4-state,
UPC/EAN -> EAN/UPC, DataBar -> GS1 DataBar always, expand MAILMARK info,
various other fiddlings
man page: options or -> |, expand MSI Plessey check digit options
README.linux: add packages info
license: add SPDX-License-Identifier to touched files
2022-06-10 08:52:02 +12:00
|
|
|
// README.linux
|
|
|
|
|
2022-07-22 10:10:39 +12:00
|
|
|
version_replace(3, $data_dirname . 'README.linux', '/zint-[0-9]/', '/[0-9][0-9.]+/', $v_base_str);
|
RMQR: update to ISO/IEC 23941:2022 - R13x77 numeric cclens change 8 -> 7
QRCODE: use stricter interpretation of ZINT_FULL_MULTIBYTE, excluding
certain trailing bytes
libzint: fix some confusing error messages introduced by segment stuff
general: new escape chars \U, \d and \o
backend_qt: fudge rendering of border rectangles due to scaling/translation
rounding errors TODO: better fudge
GUI: foreground/background colours -> text boxes and icon buttons, add swap
button, independently movable picker (NULL parent), preview colour changes,
preview Data Window changes, add clear data (del) buttons, add zap button
and Factory Reset menu option, various other fixes
libzint: remove STATIC_UNLESS_ZINT_TEST, use wrappers
CMake: add find package QtSvg, remove QtXml
manual: split symbology and general specs and sort, move DAFT to 4-state,
UPC/EAN -> EAN/UPC, DataBar -> GS1 DataBar always, expand MAILMARK info,
various other fiddlings
man page: options or -> |, expand MSI Plessey check digit options
README.linux: add packages info
license: add SPDX-License-Identifier to touched files
2022-06-10 08:52:02 +12:00
|
|
|
|
2020-09-05 03:38:11 +12:00
|
|
|
// zint.spec
|
|
|
|
|
|
|
|
version_replace(1, $data_dirname . 'zint.spec', '/^Version:/', '/[0-9.]+/', $v_base_str);
|
|
|
|
|
|
|
|
// zint.nsi
|
|
|
|
|
|
|
|
version_replace(1, $data_dirname . 'zint.nsi', '/^!define +PRODUCT_VERSION/', '/"[0-9.]+"/', '"' . $v_str . '"');
|
|
|
|
|
|
|
|
// backend/libzint.rc
|
|
|
|
|
2021-10-22 10:34:19 +13:00
|
|
|
rc_replace($data_dirname . 'backend/libzint.rc', $rc_str1, $rc_str2);
|
2020-09-05 03:38:11 +12:00
|
|
|
|
2020-11-25 04:40:14 +13:00
|
|
|
// backend/zintconfig.h
|
2020-09-05 03:38:11 +12:00
|
|
|
|
2020-11-25 04:40:14 +13:00
|
|
|
$file = $data_dirname . 'backend/zintconfig.h';
|
2020-09-05 03:38:11 +12:00
|
|
|
|
|
|
|
if (($get = file_get_contents($file)) === false) {
|
|
|
|
exit("$basename: ERROR: Could not read file \"$file\"" . PHP_EOL);
|
|
|
|
}
|
|
|
|
|
|
|
|
$lines = explode("\n", $get);
|
|
|
|
$done = 0;
|
|
|
|
foreach ($lines as $li => $line) {
|
|
|
|
if (preg_match('/define[ \t]+ZINT_VERSION_(MAJOR|MINOR|RELEASE)[ \t]+/', $line, $matches)) {
|
|
|
|
$cnt = 0;
|
|
|
|
$mmr = $matches[1] === "MAJOR" ? $major : ($matches[1] === "MINOR" ? $minor : $release);
|
|
|
|
$lines[$li] = preg_replace('/[0-9]+/', $mmr, $line, 1, $cnt);
|
|
|
|
if ($cnt === 0 || $lines[$li] === NULL) {
|
|
|
|
exit("$basename: ERROR: Could not replace ZINT_VERSION_{$matches[1]} in file \"$file\"" . PHP_EOL);
|
|
|
|
}
|
|
|
|
$done++;
|
|
|
|
} elseif (preg_match('/define[ \t]+ZINT_VERSION_BUILD[ \t]+/', $line)) {
|
|
|
|
$cnt = 0;
|
|
|
|
$lines[$li] = preg_replace('/(BUILD[ \t]+)[0-9]+/', '${1}' . $build, $line, 1, $cnt);
|
|
|
|
if ($cnt === 0 || $lines[$li] === NULL) {
|
|
|
|
exit("$basename: ERROR: Could not replace ZINT_VERSION_BUILD in file \"$file\"" . PHP_EOL);
|
|
|
|
}
|
|
|
|
$done++;
|
|
|
|
}
|
|
|
|
if ($done === 4) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if ($done !== 4) {
|
|
|
|
exit("$basename: ERROR: Only did $done replacements of 4 in file \"$file\"" . PHP_EOL);
|
|
|
|
}
|
|
|
|
if (!file_put_contents($file, implode("\n", $lines))) {
|
|
|
|
exit("$basename: ERROR: Could not write file \"$file\"" . PHP_EOL);
|
|
|
|
}
|
|
|
|
|
|
|
|
// backend/Makefile.mingw
|
|
|
|
|
|
|
|
version_replace(1, $data_dirname . 'backend/Makefile.mingw', '/^ZINT_VERSION:=-DZINT_VERSION=/', '/[0-9.]+/', $v_str);
|
|
|
|
|
2020-10-01 00:19:12 +13:00
|
|
|
// backend_tcl/configure.in
|
|
|
|
|
2021-01-06 03:21:26 +13:00
|
|
|
version_replace(1, $data_dirname . 'backend_tcl/configure.in', '/^AC_INIT\(\[zint\],[ \t]*\[/', '/[0-9.]+/', $v_base_str);
|
2020-10-01 00:19:12 +13:00
|
|
|
|
2021-08-12 06:39:39 +12:00
|
|
|
// backend_tcl/zint_tcl.dsp
|
|
|
|
|
|
|
|
version_replace(2, $data_dirname . 'backend_tcl/zint_tcl.dsp', '/ZINT_VERSION="\\\\"/', '/ZINT_VERSION="\\\\"[0-9.]+\\\\""/', 'ZINT_VERSION="\\"' . $v_str . '\\""');
|
|
|
|
|
|
|
|
// backend_tcl/lib/zint/pkgIndex.tcl
|
|
|
|
|
|
|
|
version_replace(1, $data_dirname . 'backend_tcl/lib/zint/pkgIndex.tcl', '/zint /', '/zint [0-9.]+/', 'zint ' . $v_base_str . '');
|
|
|
|
|
2020-09-05 03:38:11 +12:00
|
|
|
// frontend/zint.rc
|
|
|
|
|
2021-10-22 10:34:19 +13:00
|
|
|
rc_replace($data_dirname . 'frontend/zint.rc', $rc_str1, $rc_str2);
|
2020-09-05 03:38:11 +12:00
|
|
|
|
|
|
|
// frontend/Makefile.mingw
|
|
|
|
|
|
|
|
version_replace(1, $data_dirname . 'frontend/Makefile.mingw', '/^ZINT_VERSION:=-DZINT_VERSION=/', '/[0-9.]+/', $v_str);
|
|
|
|
|
2021-06-25 05:31:08 +12:00
|
|
|
// backend_qt/backend_vc8.pro
|
|
|
|
|
|
|
|
version_replace(1, $data_dirname . 'backend_qt/backend_vc8.pro', '/^VERSION[ \t]*=/', '/[0-9.]+/', $v_str);
|
|
|
|
-
|
|
|
|
// backend_qt/backend_qt.pro
|
|
|
|
|
|
|
|
version_replace(1, $data_dirname . 'backend_qt/backend_qt.pro', '/ZINT_VERSION="/', '/[0-9.]+/', $v_str);
|
|
|
|
version_replace(1, $data_dirname . 'backend_qt/backend_qt.pro', '/^VERSION[ \t]*=/', '/[0-9.]+/', $v_str);
|
|
|
|
|
2022-05-19 21:17:51 +12:00
|
|
|
// docs/manual.pmd
|
2021-08-14 02:05:35 +12:00
|
|
|
|
2022-05-19 21:17:51 +12:00
|
|
|
version_replace(1, $data_dirname . 'docs/manual.pmd', '/^% Version /', '/[0-9]+\.[0-9]+\.[0-9]+(\.[0-9]+)?( \(dev\))?/', $v_str);
|
|
|
|
if ($build !== 9) { // Don't update if marking version as dev
|
|
|
|
version_replace(1, $data_dirname . 'docs/manual.pmd', '/^The current stable version of Zint/', '/[0-9]+\.[0-9]+\.[0-9]+(\.[0-9]+)?/', $v_str);
|
|
|
|
}
|
|
|
|
|
|
|
|
// docs/zint.1.pmd
|
|
|
|
|
RMQR: update to ISO/IEC 23941:2022 - R13x77 numeric cclens change 8 -> 7
QRCODE: use stricter interpretation of ZINT_FULL_MULTIBYTE, excluding
certain trailing bytes
libzint: fix some confusing error messages introduced by segment stuff
general: new escape chars \U, \d and \o
backend_qt: fudge rendering of border rectangles due to scaling/translation
rounding errors TODO: better fudge
GUI: foreground/background colours -> text boxes and icon buttons, add swap
button, independently movable picker (NULL parent), preview colour changes,
preview Data Window changes, add clear data (del) buttons, add zap button
and Factory Reset menu option, various other fixes
libzint: remove STATIC_UNLESS_ZINT_TEST, use wrappers
CMake: add find package QtSvg, remove QtXml
manual: split symbology and general specs and sort, move DAFT to 4-state,
UPC/EAN -> EAN/UPC, DataBar -> GS1 DataBar always, expand MAILMARK info,
various other fiddlings
man page: options or -> |, expand MSI Plessey check digit options
README.linux: add packages info
license: add SPDX-License-Identifier to touched files
2022-06-10 08:52:02 +12:00
|
|
|
version_replace(1, $data_dirname . 'docs/zint.1.pmd', '/^% ZINT\(1\) Version /', '/[0-9]+\.[0-9]+\.[0-9]+(\.[0-9]+)?( \(dev\))?/', $v_str);
|
2021-08-14 02:05:35 +12:00
|
|
|
|
2020-09-05 03:38:11 +12:00
|
|
|
// frontend_qt/res/qtZint.rc
|
|
|
|
|
2021-10-22 10:34:19 +13:00
|
|
|
rc_replace($data_dirname . 'frontend_qt/res/qtZint.rc', $rc_str1, $rc_str2);
|
2020-09-05 03:38:11 +12:00
|
|
|
|
|
|
|
// win32/libzint.vcxproj
|
|
|
|
|
|
|
|
version_replace(2, $data_dirname . 'win32/libzint.vcxproj', '/ZINT_VERSION="/', '/ZINT_VERSION="[0-9.]+"/', 'ZINT_VERSION="' . $v_str . '"');
|
|
|
|
|
|
|
|
// win32/zint.vcxproj
|
|
|
|
|
|
|
|
version_replace(2, $data_dirname . 'win32/zint.vcxproj', '/ZINT_VERSION="/', '/ZINT_VERSION="[0-9.]+"/', 'ZINT_VERSION="' . $v_str . '"');
|
|
|
|
|
|
|
|
// win32/zint_cmdline_vc6/zint.rc
|
|
|
|
|
2021-10-22 10:34:19 +13:00
|
|
|
rc_replace($data_dirname . 'win32/zint_cmdline_vc6/zint.rc', $rc_str1, $rc_str2);
|
2020-09-05 03:38:11 +12:00
|
|
|
|
2021-06-25 05:31:08 +12:00
|
|
|
// win32/zint_cmdline_vc6/zint_cmdline_vc6.dsp
|
|
|
|
|
|
|
|
version_replace(2, $data_dirname . 'win32/zint_cmdline_vc6/zint_cmdline_vc6.dsp', '/ZINT_VERSION="/', '/ZINT_VERSION="\\\\"[0-9.]+\\\\""/', 'ZINT_VERSION="\\"' . $v_str . '\\""');
|
|
|
|
|
2020-09-05 03:38:11 +12:00
|
|
|
// win32/vs2008/libzint.vcproj
|
|
|
|
|
|
|
|
version_replace(3, $data_dirname . 'win32/vs2008/libzint.vcproj', '/ZINT_VERSION="/', '/"[0-9.]+/', '"' . $v_str);
|
|
|
|
|
2021-08-12 06:39:39 +12:00
|
|
|
// win32/vs2008/zint.vcproj
|
2020-09-05 03:38:11 +12:00
|
|
|
|
|
|
|
version_replace(3, $data_dirname . 'win32/vs2008/zint.vcproj', '/ZINT_VERSION="/', '/"[0-9.]+/', '"' . $v_str);
|
|
|
|
|
|
|
|
// win32/vs2015/libzint.vcxproj
|
|
|
|
|
|
|
|
version_replace(6, $data_dirname . 'win32/vs2015/libzint.vcxproj', '/ZINT_VERSION="/', '/ZINT_VERSION="[0-9.]+"/', 'ZINT_VERSION="' . $v_str . '"');
|
|
|
|
|
|
|
|
// win32/vs2015/zint.vcxproj
|
|
|
|
|
|
|
|
version_replace(6, $data_dirname . 'win32/vs2015/zint.vcxproj', '/ZINT_VERSION="/', '/ZINT_VERSION="[0-9.]+"/', 'ZINT_VERSION="' . $v_str . '"');
|
|
|
|
|
|
|
|
// win32/vs2015/vsx/libzintMD.vcxproj
|
|
|
|
|
|
|
|
version_replace(1, $data_dirname . 'win32/vs2015/vsx/libzintMD.vcxproj', '/ZINT_VERSION="/', '/ZINT_VERSION="[0-9.]+"/', 'ZINT_VERSION="' . $v_str . '"');
|
|
|
|
|
2020-10-01 00:19:12 +13:00
|
|
|
// win32/vs2019/libzint.vcxproj
|
|
|
|
|
|
|
|
version_replace(2, $data_dirname . 'win32/vs2019/libzint.vcxproj', '/ZINT_VERSION="/', '/ZINT_VERSION="[0-9.]+"/', 'ZINT_VERSION="' . $v_str . '"');
|
|
|
|
|
|
|
|
// win32/vs2019/zint.vcxproj
|
|
|
|
|
|
|
|
version_replace(2, $data_dirname . 'win32/vs2019/zint.vcxproj', '/ZINT_VERSION="/', '/ZINT_VERSION="[0-9.]+"/', 'ZINT_VERSION="' . $v_str . '"');
|
|
|
|
|
2020-09-05 03:38:11 +12:00
|
|
|
// Leaving auto-generated files:
|
2020-10-01 00:19:12 +13:00
|
|
|
// backend_tcl/configure (PACKAGE_VERSION and PACKAGE_STRING) - generated by autoconf from configure.in
|
2020-09-05 03:38:11 +12:00
|
|
|
// frontend_qt/Inno_Setup_qtzint.iss (MyAppVersion)
|
2021-08-12 06:39:39 +12:00
|
|
|
|
|
|
|
print PHP_EOL;
|
|
|
|
print '!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!' . PHP_EOL;
|
2022-05-19 21:17:51 +12:00
|
|
|
print '!!! REMEMBER: cd docs; make !!!' . PHP_EOL;
|
2021-08-12 06:39:39 +12:00
|
|
|
print '!!! REMEMBER: run "autoconf" and "./configure" in "backend_tcl/" !!!' . PHP_EOL;
|
|
|
|
print '!!! REMEMBER: update version and date in "ChangeLog" !!!' . PHP_EOL;
|
|
|
|
print '!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!' . PHP_EOL;
|
|
|
|
print PHP_EOL;
|
RMQR: update to ISO/IEC 23941:2022 - R13x77 numeric cclens change 8 -> 7
QRCODE: use stricter interpretation of ZINT_FULL_MULTIBYTE, excluding
certain trailing bytes
libzint: fix some confusing error messages introduced by segment stuff
general: new escape chars \U, \d and \o
backend_qt: fudge rendering of border rectangles due to scaling/translation
rounding errors TODO: better fudge
GUI: foreground/background colours -> text boxes and icon buttons, add swap
button, independently movable picker (NULL parent), preview colour changes,
preview Data Window changes, add clear data (del) buttons, add zap button
and Factory Reset menu option, various other fixes
libzint: remove STATIC_UNLESS_ZINT_TEST, use wrappers
CMake: add find package QtSvg, remove QtXml
manual: split symbology and general specs and sort, move DAFT to 4-state,
UPC/EAN -> EAN/UPC, DataBar -> GS1 DataBar always, expand MAILMARK info,
various other fiddlings
man page: options or -> |, expand MSI Plessey check digit options
README.linux: add packages info
license: add SPDX-License-Identifier to touched files
2022-06-10 08:52:02 +12:00
|
|
|
|
|
|
|
/* vim: set ts=4 sw=4 et : */
|