utf8proc
annotate Changelog @ 2:aaad485d5335
Version 0.3
- changed normalization from NFC to NFKC for postgresql unifold function
- added support to mark the beginning of a grapheme cluster with 0xFF (option: CHARBOUND)
- added the ruby method String#chars, which is returning an array of UTF-8 encoded grapheme clusters
- added NLF2LF transformation in postgresql unifold function
- added the DECOMPOSE option, if you neither use COMPOSE or DECOMPOSE, no normalization will be performed (different from previous versions)
- using integer constants rather than C-strings for character properties
- fixed (hopefully) a problem with the ruby library on Mac OS X, which occured when compiler optimization was switched on
- changed normalization from NFC to NFKC for postgresql unifold function
- added support to mark the beginning of a grapheme cluster with 0xFF (option: CHARBOUND)
- added the ruby method String#chars, which is returning an array of UTF-8 encoded grapheme clusters
- added NLF2LF transformation in postgresql unifold function
- added the DECOMPOSE option, if you neither use COMPOSE or DECOMPOSE, no normalization will be performed (different from previous versions)
- using integer constants rather than C-strings for character properties
- fixed (hopefully) a problem with the ruby library on Mac OS X, which occured when compiler optimization was switched on
author | jbe |
---|---|
date | Fri Aug 04 12:00:00 2006 +0200 (2006-08-04) |
parents | 61a89ecc2fb9 |
children | 4ee0d5f54af1 |
rev | line source |
---|---|
jbe@0 | 1 Changelog |
jbe@0 | 2 |
jbe@0 | 3 2006-06-02: |
jbe@0 | 4 - initial release of version 0.1 |
jbe@0 | 5 |
jbe@1 | 6 2006-06-05: |
jbe@1 | 7 - changed behaviour of PostgreSQL function to return NULL in case of invalid |
jbe@1 | 8 input, rather than raising an exceptional condition |
jbe@1 | 9 - improved efficiency of PostgreSQL function (no transformation to C string is done) |
jbe@0 | 10 |
jbe@1 | 11 2006-06-20: |
jbe@1 | 12 - added -fpic compiler flag in Makefile |
jbe@1 | 13 - fixed bug in the C code for the ruby library (usage of non-existent function) |
jbe@1 | 14 |
jbe@2 | 15 Release of version 0.2 |
jbe@2 | 16 |
jbe@2 | 17 2006-07-18: |
jbe@2 | 18 - changed normalization from NFC to NFKC for postgresql unifold function |
jbe@2 | 19 |
jbe@2 | 20 2006-08-04: |
jbe@2 | 21 - added support to mark the beginning of a grapheme cluster with 0xFF |
jbe@2 | 22 (option: CHARBOUND) |
jbe@2 | 23 - added the ruby method String#chars, which is returning an array of |
jbe@2 | 24 UTF-8 encoded grapheme clusters |
jbe@2 | 25 - added NLF2LF transformation in postgresql unifold function |
jbe@2 | 26 - added the DECOMPOSE option, if you neither use COMPOSE or DECOMPOSE, no |
jbe@2 | 27 normalization will be performed (different from previous versions) |
jbe@2 | 28 - using integer constants rather than C-strings for character properties |
jbe@2 | 29 - fixed (hopefully) a problem with the ruby library on Mac OS X, which occured |
jbe@2 | 30 when compiler optimization was switched on |
jbe@2 | 31 |
jbe@2 | 32 Release of version 0.3 |
jbe@2 | 33 |