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
|
Revision history for Perl module Unicode::Collate.
0.28 Sat Sep 06 20:16:01 2003
- Fixed another inconsistency under (normalization => undef):
Non-contiguous contraction is always neglected.
- Fixed: according to S2.1 in UTS #10, a blocked combining character
should not be contracted. One test in test.t was wrong, then removed.
- Added contract.t.
- (normalization => "prenormalized") is able to be used.
0.27 Sun Aug 31 22:23:17 2003
some improvements:
- The maximum length of contracted CE was not checked (v0.22 to v0.26).
Collation of a large string including a first letter of a contraction
that is not a part of that contraction (say, 'c' of 'ca'
where 'ch' is defined) was too slow, inefficient.
- A form name for 'normalize', no longer restricted to /^(?:NF)?K?[CD]\z/,
will be allowed as long as Unicode::Normalize::normalize() accepts it.
since Unicode::Normalize or UAX #15 may be changed/enhanced in future.
- When Hangul syllables are decomposed under <normalization => undef>,
contraction among jamo (LV, VT, LVT) derived from the same
Hangul syllable is allowed. Added hangul.t.
0.26 Sun Aug 03 22:23:17 2003
- fix: an expansion in which a CE is level 3 ignorable and others are not
was wrongly made level 3 ignorable as a whole entry.
(In DUCET, some precomposites in Musical Symbols are so)
0.25 Mon Jun 06 23:20:17 2003
- fix Makefile.PL.
- internal tweak (again): pack_U() and unpack_U().
0.24 Thu Apr 02 23:12:54 2003
- internal tweak for (?un)pack 'U'.
0.23 Wed Sep 04 19:25:20 2002
- fix: scalar match() no longer returns an lvalue substr ref.
- fix: "Ignorable after variable" should be made level 3 ignorable
even if alternate => 'blanked'.
- Now a grapheme may contain trailing level 2, level 3,
and completely ignorable characters.
0.22 Mon Sep 02 23:15:14 2002
- New File: index.t.
(The new test.t excludes tests for index.)
- tweak on index(). POSITION is supported.
- add match, gmatch, subst, gsubst methods.
- fix: ignorable after variable in 'shift'-variable weight.
0.21 Sat Aug 03 10:24:00 2002
- upgrade keys.txt and t/test.t for UCA Version 9.
0.20 Fri Jul 26 02:15:25 2002
- now UCA Version 9.
- U+FDD0..U+FDEF are new non-characters.
- fix: whitespace characters before @backwards etc. in a table file.
- now values for 'alternate', 'backwards', etc.,
which are explicitly specified via new(),
are preferred to those specified in a table file.
0.12 Sun May 05 09:43:10 2002
- add new methods, ->UCA_Version and ->Base_Unicode_Version.
- test fix: removed the needless requirement of Unicode::Normalize.
[reported by David Hand]
0.11 Fri May 03 02:28:10 2002
- fix: now derived collation elements can be used for Hangul Jamo
when their weights are not defined.
[reported by Andreas J. Koenig]
- fix: rearrangements had not worked.
- mentioned pleblem on index() in BUGS.
- more documents, more tests.
- tag names for 'alternate' are case-insensitive (i.e. 'SHIFTed' etc.).
- The <undef> value for the keys "overrideCJK", "overrideHangul",
"rearrange" has a special behavior (different from default).
0.10 Tue Dec 11 23:26:42 2001
- now you are allowed to use no table file.
- fix: fetching CE with two or more combining characters.
0.09 Sun Nov 11 17:02:40:18 2001
- add the following methods: eq, ne, lt, le, gt, le.
- relies on &Unicode::Normalize::getCombinClass()
in place of %Unicode::Normalize::Combin
(the hash is not defined in the XS version of Unicode::Normalize).
then you should install Unicode::Normalize 0.10 or later.
- now independent of Lingua::KO::Hangul::Util
(this module does decomposition of Hangul syllables for itself)
0.08 Mon Aug 20 22:40:18 2001
- add the index method.
0.07 Thu Aug 16 23:42:02 2001
- rename the module name to Unicode::Collate.
0.06 Thu Aug 16 23:18:36 2001
- add description of the getSortKey method.
0.05 Mon Aug 13 22:23:11 2001
- bug fix: on the things of 4.2.1, UTR #10
- getSortKey returns a string, but not an arrayref.
0.04 Mon Aug 13 22:23:11 2001
- some bugs are fixed.
- some tailoring parameters are added.
0.03 Mon Aug 06 06:26:35 2001
- modify README
0.02 Sun Aug 05 20:20:01 2001
- some fix
0.01 Sun Jul 29 16:16:15 2001
- original version; created by h2xs 1.21
with options -A -X -n Sort::UCA
|