1
0
mirror of https://git.code.sf.net/p/zint/code synced 2025-12-17 09:57:02 +00:00

general: raw_segs -> content_segs, BARCODE_RAW_TEXT ->

`BARCODE_CONTENT_SEGS`, `z_rt_XXX()` -> `z_ct_XXX()`;
  move `encoded_data`/`row_height` to end of `zint_symbol`
  (see ZXing-C++ issue #883)
manual: update re `content_segs`; `my_symbol` -> `symbol`;
  improve MicroPDF417 description
This commit is contained in:
gitlost
2025-11-04 23:02:10 +00:00
parent 543696cb06
commit f0c7248b62
82 changed files with 2203 additions and 2187 deletions

View File

@@ -1,4 +1,4 @@
Version 2.15.0.9 (dev) not released yet (2025-10-16)
Version 2.15.0.9 (dev) not released yet (2025-11-04)
====================================================
**Incompatible changes**
@@ -7,8 +7,8 @@ Version 2.15.0.9 (dev) not released yet (2025-10-16)
treated as-is, i.e. as binary bytes - this now requires `DATA_MODE`)
- Buffer length of member `errtxt` in `zint_symbol` extended 100 -> 160
(client buffers may need checking/extending)
- New `raw_segs` & `raw_seg_count` fields in `zint_symbol` for use with new
output option `BARCODE_RAW_TEXT`
- New `content_segs` & `content_seg_count` fields in `zint_symbol` for use with
new output option `BARCODE_CONTENT_SEGS`
- Symbol structure members `option_1`, `option_2` and `option_3` now updated
after `ZBarcode_Encode()` and variants are called, and there are three new
methods in the Qt Backend to access to them
@@ -24,9 +24,9 @@ Version 2.15.0.9 (dev) not released yet (2025-10-16)
Changes
-------
- Add new `BARCODE_RAW_TEXT` option for `output_options` which sets new fields
`raw_segs` and `raw_seg_count` with encoded data (pre-converted, i.e. UTF-8
unless input mode is `DATA_MODE`)
- Add new `BARCODE_CONTENT_SEGS` option for `output_options` which sets new
fields `content_segs` and `content_seg_count` with encoded data
(pre-converted, i.e. UTF-8 unless input mode is `DATA_MODE`)
- Add API funcs `ZBarcode_UTF8_To_ECI()` and `ZBarcode_Dest_Len_ECI()`
- Set `option_1`, `option_2`, `option_3` to values used in encodation, and add
new access methods `encodedOption1()` etc. to Qt Backend, and use in GUI to