Tag 'xkbcommon-0.6.0' created by Ran Benita <ran...@gmail.com> at 2016-03-16 08:23 +0000
xkbcommon-0.6.0 Changes since xkbcommon-0.5.0: Daniel Stone (3): rename to LICENSE doc: Fix Doxygen include for srcdir != builddir travis: Enable documentation build Kazunobu Kuriyama (2): test/x11comp: Fix contention between X11 and Xvfb on Mac OS X bench: Modify benchmarks for a wider range of platforms Michael Vogt (1): Add XKB_CONFIG_ROOT environment Mike Blumenkrantz (1): keymap: add xkb_keymap_key_by_name(), xkb_keymap_key_get_name(), tests Ran Benita (45): xkbcomp/keymap: remove useless free() xkbcomp: remove file->topName ast-build: remove log message about allocation failure Reduce variable scopes keycodes: use correct printf format doc: explain the envvars which affect compose PACKAGING: fix confusing typo configure.ac: also print ${datarootdir} in summary test/common: print keycode in decimal not hex doc: some editorial changes to compose documentation compose: correctly parse modifier syntax build: don't fail if linker version scripts are not supported Merge pull request #25 from mvo5/master test/x11comp: small simplifications test/x11comp: remove duplicate FOUR_LEVEL_KEYPAD from test keymap Merge pull request #27 from nuko8/osx_test_progs state: reduce scope of fake action doc/Doxyfile: sync with latest version doc/Doxyfile: only keep non-default values doc/Doxyfile: explicitly set HTML_TIMESTAMP = NO keymap: fix outdated comment src/utils: change map_file to not take const string argument doc/keymap-format-text-v1: update info on preserve doc/keymap-format-text-v1: convert to markdown doc/quick-guide: small improvements doc/keymap-format-text-v1: add title and intro doc: some notes about key names and aliases doc: add environment variables index build: fix distcheck state: factor out entry_is_active() check state: factor out get_entry_for_mods() keymap: share LevelsSameSyms() src/utils: check if fileno() failed in map_file build: make it easier to add non-built (e.g. script) tests Add symbol versions forgotten in 0ce17ef3ea3722c1cfe7af3 test: add a test that all symbol version file is updated test/x11comp: fix memory leak build: don't run test/x11comp in make check for now NEWS: add some spacing Update NEWS Merge pull request #32 from fooishbar/master travis: remove --disable-x11 Merge pull request #33 from bluetech/travis-enable-x11 test: assert/ignore some warn_unused_result's Bump version to 0.6.0 --- .travis.yml | 7 Makefile.am | 45 - NEWS | 27 PACKAGING | 2 bench/bench.c | 151 +++ bench/bench.h | 58 - bench/compose.c | 23 bench/key-proc.c | 23 bench/rules.c | 23 bench/rulescomp.c | 23 configure.ac | 8 doc/Doxyfile.in | 1855 ------------------------------------------ doc/compat.md | 1 doc/keymap-format-text-v1.md | 368 ++++++++ doc/keymap-format-text-v1.txt | 359 -------- doc/quick-guide.md | 24 src/compose/parser.c | 45 - src/compose/paths.c | 9 src/context.c | 8 src/keymap-priv.c | 10 src/keymap.c | 34 src/keymap.h | 5 src/state.c | 50 - src/utils.c | 17 src/utils.h | 4 src/xkbcomp/ast-build.c | 10 src/xkbcomp/ast.h | 1 src/xkbcomp/compat.c | 5 src/xkbcomp/keycodes.c | 4 src/xkbcomp/keymap.c | 10 src/xkbcomp/rules.c | 2 src/xkbcomp/scanner.c | 2 src/xkbcomp/symbols.c | 29 src/xkbcomp/types.c | 5 test/.gitignore | 1 test/common.c | 2 test/compose.c | 12 test/data/keymaps/host.xkb | 19 test/interactive-evdev.c | 4 test/interactive-x11.c | 4 test/keymap.c | 58 - test/symbols-leak-test.bash | 24 test/x11comp.c | 74 - xkbcommon.map | 6 xkbcommon/xkbcommon-compose.h | 55 - xkbcommon/xkbcommon.h | 58 + 46 files changed, 1020 insertions(+), 2544 deletions(-) ---