6fd773cbb35d8b3795243d2c8a04eb0c53909653
[platform/upstream/libxkbcommon.git] / NEWS
1 libxkbcommon 0.3.2
2 ==================
3
4 - Added XKB_KEY_XF86AudioMicMute keysym, to match xproto 7.0.24.
5
6 - Log messages from the library now look like "xkbcommon: ERROR" by
7   default, instead of xkbcomp-like "Error:   ".
8
9 - Apply capitalization transformation on keysyms in
10   xkb_keysym_get_one_sym(), to match the behavior specified in the XKB
11   specification:
12   http://www.x.org/releases/current/doc/kbproto/xkbproto.html#Interpreting_the_Lock_Modifier
13
14 - Support byacc for generating the parser, in addition to Bison.
15
16 - Bug fixes.
17
18
19 libxkbcommon 0.3.1
20 ==================
21
22 - Replace the flex scanner with a hand-written one. flex is no longer
23   a build requirement.
24
25 - New API:
26   xkb_keymap_min_keycode()
27   xkb_keymap_max_keycode()
28   xkb_keymap_key_for_each()
29
30
31 libxkbcommon 0.3.0
32 ==================
33
34 - Allow passing NULL to *_unref() functions; do nothing instead of
35   crashing.
36
37 - The functions xkb_keymap_num_levels_for_key() and
38   xkb_keymap_get_syms_by_level() now allow out-of-range values for the
39   'layout' parameter. The functions now wrap the value around the number
40   of layouts instead of failing.
41
42 - The function xkb_keysym_get_name() now types unicode keysyms in
43   uppercase and 0-padding, to match the format used by XKeysymToString().
44
45 - Building Linux-specific tests is no longer attempted on non-Linux
46   environments.
47
48 - The function xkb_keymap_new_from_names() now accepts a NULL value for
49   the 'names' parameter, instead of failing. This is equivalent to passing
50   a 'struct xkb_rule_names' with all fields set to NULL.
51
52 - New API:
53   xkb_keymap_new_from_buffer()
54
55 - Bug fixes.