File: Changelog

package info (click to toggle)
libtranscript 0.3.3-1
  • links: PTS
  • area: main
  • in suites: bookworm, bullseye, buster
  • size: 18,172 kB
  • sloc: ansic: 222,898; cpp: 4,309; sh: 1,016; xml: 173; makefile: 70; lex: 44
file content (66 lines) | stat: -rw-r--r-- 2,556 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
Version 0.3.3:
    - Removes pre-generated Doxygen documentation.
    - Minor updates to Makefile.in for compatibility with Debian packaging.

Version 0.3.2:
    Re-release of version 0.3.1 to update the configure script.

Version 0.3.1:
    Changes:
    - Remove support for Windows-21866 character set. This should be the same
      as the KOI8-U character set (which is supported), although the only
      source we have for it differs in two characters.
    - Remove some superfluous files from the distribution, which were
      accidentaly included from previous iterations.
    - Use a generated script to install the required symbolic links, rather than
      the linkltc program. This facilitates cross-compilation, where the linkltc
      can not be run.

    Bug fixes:
    - Correctly mark unpaired high surrogates in a UTF-8 stream as invalid
      characters.

Version 0.3.0:
    New features:
    - Added new converters for Big5, Big5-HKSCS, Windows-950, EUC-TW and
      ISO-2022-CN-EXT (#4).

    Bug fixes:
    - Avoid assuming that the first argument of the compare function used for
      lfind is the key (#13).
    - Fix clean target in Makefile.in.
    - TRANSCRIPT_SUBST_ILLEGAL now works in ISO-2022 converters.
    - C1 control-code escape sequences now work in all ISO-2022 converters.
    - Correctly skip over escape sequences in ISO-2022 converters if requrested.
    - Fix locking bug in ISO-2022 converter triggered when a sub-converter is
      not available.
    - Generate a separate error when transcript_init has not been called before
      calling functions that depend on it.

Version 0.2.3:
    Bug fixes:
    - Correct naming of UTF-8 with BOM in compiled name list (is now correctly
      listed as X-UTF-8-BOM). This allows the UTF-8 with BOM converter to be
      loaded.

Version 0.2.2:
    New features:
    - Allow finalizing of the library, to allow release of all memory for
      debugging purposes.
    - Use dlopen/dlsym/dlclose directly if available, instead of using libltdl.

Version 0.2.1:
    Bug fixes:
    - Fix handling of private use handling in unicode to unicode conversions,
      such that it is in line with the other converters.

Version 0.2.0:
    New features:
    - Added dependency on Pthreads, to allow threading to work properly in all
      circumstances.
    - Removed auto-initialization, because it was not providing the benefits
      that were envisaged. Now the library requires calling of transcript_init
      before any other function.

Version 0.1.1:
    Initial release