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 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143
|
From 0.6.4 to 0.6.5
* Collation rules without headers were not compiled. This version fix
this problem. Collation of Scandinavia languages are now correctly
processed.
From 0.6.3 to 0.6.4
* Fix link error of the native code library
From 0.6.2 to 0.6.3
* Support OCaml 3.09.0
* Remove unpack
From 0.6.1 to 0.6.2
* Insert spaces before ] in the installation scripts of Makefile
From 0.6.0 to 0.6.1
* Fix the bug that "get" methods of polymorphic input channels have
the type 'a, which should be unit -> 'a.
* Fix a bug which causes flush methods of octet output channels only
flush 1024*n bytes at a time.
* Remove a superfluous check from configure.
From 0.5.3 to 0.6.0
* Channel classes confirm common I/O class recommendation
(http://www.ocaml-programming.de/rec/IO-Classes.html) except
non-blocking I/O, which is not supported.
* Remove all C binding and related functions.
* Remove stdlib replacement introduced in 0.5.*
* UPervasives
- utf8_*_channel are removed.
- normalization mode are removed.
* UChar
- UChar.is_printable is removed.
- unsafe operations are removed.
- UChar.int_of_uchar is renamed UChar.int_of
- UChar.uchar_of_int is renamed UChar.of_int
* Locale
- Locale.current_locale, Locale.set_locale are removed.
* CharEndocing
- CharEncoding.enc_name is removed.
- new classes:
class CharEncoding.convert_uchar_input
class CharEncoding.convert_uchar_output
class CharEncoding.convert_input
class CharEncoding.convert_output
From 0.5.0 to 0.5.3
* Fix several bugs in the installation procedure.
* COPYING
* UTF16, UCS4 - improved performance
From 0.4.2 to 0.5.0
* Stdlib replacement
* Search string by matching collation
* Binding to ISO C Locale.
- UChar.is_printable
- Locale.current_locale, Locale.set_locale
- CharEncoding.enc_name
* New encodings
- iso_c_locale : the encoding specified by the current LC_CTYPE locale.
- CP932
* Packed and unpacked libraries.
From 0.4.1 to 0.4.2
* Add bigarray to the dependency in META.
* Fix a bug in input_line function of ULine.
* Fix a XArray.add_array bug, which affects XString.add_text,
UText.Buf.add_string.
* Make the collator a bit fast.
From 0.4.0 to 0.4.1
* CharEndocing
- The encodings can be referred by IANA names.
* UCol
- Japanese collation is fully supported (HiraganaQ).
- Bugs which mainly affect Japanese collation are fixed.
- generates more compact sort keys.
* ULine
- Line I/O, and conversion of line separators.
* Data tables are now held through weak pointers, so that they can be
freed during GC.
* All files in charmap directory become optional. Previously, the build
failed if several charmaps were missing. In addition, you can remove any
file in the $DATADIR/charmaps and $DATADIR/mappings without causing
run time error. Of course, this makes some encoding dysfunctional.
Such encodings are treated as non-existent.
From 0.3.1 to 0.4.0
* Camomile (previously Base)
- Renamed to Camomile.
- USet (Unicode character sets), UCharTbl (fast lookup tables)
- SubText
* URe, UReStr (Regular Expression) are added.
* UTF16, UCS4 (new Unicode string types) are added.
* findlib support
* ocamldoc support
From 0.3.0 to 0.3.1
* CharEncoding:
- Bug fixes for ISO-2022-*
- Interface for automatic detection of encodings.
- GB18030 support
- Improvement of internal data structure (using less space)
* UCol:
- Incremental comparison
* Performance improvement of collation rule compiler.
From 0.2.X to 0.3.0
* Functor design:
API taking Unicode strings becomes functors over Unicode string
implementation. For Unicode strings, UText.t (abstract data
type, internally integer array) and UTF8.t (normal ocaml string with
UTF8 encoding) are currently provided, but suppling another
implementation (like wch) should be easy. For this, API is almost
completely revised.
* The locale can be specified for case mapping and string comparison.
|