Improved mp_doccer detection.
[mpdm.git] / RELEASE_NOTES
blobf19c4dcabceff667f15188e03b875b4a7755f8e8
1 MPDM Release Notes
2 ==================
4 1.0.6
5 -----
7  * The environment is stored in a hash called ENV in mpdm_root().
8  * Under win32, the LANG environment variable is hand-built if
9    none is set.
10  * If the third argument to sregex() is a hash, the values can
11    now also be executable ones.
12  * New internal flag for values to mark them as deleted.
14 1.0.5
15 -----
17  * The mpdm_regex() function now accepts a new flag, `g', to match
18    globally; in this case, an array of matches are returned instead
19    of a string scalar.
20  * The mpdm_stat() function now returns a 14 element array, with a
21    newly #13 argument containing the canonicalized file name, if
22    the underlying system supports it.
23  * A bunch of embedded charset encoders have been implemented for
24    iso8859-1, utf-16 and utf-32 with or without BOM autodetection.
26 1.0.4
27 -----
29  * API Changes; const has been added wherever possible.
31 1.0.3
32 -----
34  * The hashing function has changed to a less accurate but faster one.
35  * There is a new, adaptive way of sweeping: if default_sweep if set
36    to a negative value (different from -1), it's used as a divisor
37    of the total count of values; this will be the number of values
38    that will be swept on each call to mpdm_sweep(0). This way, the
39    number of swept values depend on the total count.
40  * New functions mpdm_set_ival() and mpdm_set_rval().
41  * New function mpdm_get_filehandle().
43 1.0.2
44 -----
46  * Components of a compact symbol can be executable, apart from
47    hashes and arrays.
48  * mpdm_cmp() is optimized to return 0 when comparing the same value.
50 1.0.1
51 -----
53  * mpdm_cmp() now correctly compares NULL and NULL as equal.
54  * %c in mpdm_sprintf() now works with Unicode (wchar_t) characters.
55  * The substitution string in mpdm_sregex() now can include the
56    special character & to select the matched string. To include a
57    literal &, escape it with \.