summaryrefslogtreecommitdiff
path: root/NEWS
Commit message (Collapse)AuthorAgeFilesLines
* NEWS: add "New API" section for last releaseRan Benita2023-01-021-0/+3
| | | | Signed-off-by: Ran Benita <ran@unusedvar.com>
* Bump version to 1.5.0xkbcommon-1.5.0Ran Benita2023-01-021-0/+27
| | | | Signed-off-by: Ran Benita <ran@unusedvar.com>
* Bump version to 1.4.1xkbcommon-1.4.1Ran Benita2022-05-211-0/+14
| | | | Signed-off-by: Ran Benita <ran@unusedvar.com>
* Bump version to 1.4.0xkbcommon-1.4.0Ran Benita2022-02-041-0/+26
| | | | Signed-off-by: Ran Benita <ran@unusedvar.com>
* Bump version to 1.3.1xkbcommon-1.3.1Ran Benita2021-09-101-0/+16
| | | | Signed-off-by: Ran Benita <ran@unusedvar.com>
* Bump version to 1.3.0xkbcommon-1.3.0Ran Benita2021-05-011-0/+32
| | | | Signed-off-by: Ran Benita <ran@unusedvar.com>
* Bump version to 1.2.1xkbcommon-1.2.1Ran Benita2021-04-071-0/+7
| | | | Signed-off-by: Ran Benita <ran@unusedvar.com>
* Bump version to 1.2.0xkbcommon-1.2.0Ran Benita2021-04-031-0/+26
| | | | Signed-off-by: Ran Benita <ran@unusedvar.com>
* Bump version to 1.1.0xkbcommon-1.1.0Ran Benita2021-02-271-0/+19
| | | | Signed-off-by: Ran Benita <ran@unusedvar.com>
* Bump version to 1.0.3xkbcommon-1.0.3Ran Benita2020-11-231-0/+9
| | | | Signed-off-by: Ran Benita <ran@unusedvar.com>
* Bump version to 1.0.2xkbcommon-1.0.2Ran Benita2020-11-201-0/+10
| | | | Signed-off-by: Ran Benita <ran@unusedvar.com>
* Bump version to 1.0.1xkbcommon-1.0.1Ran Benita2020-09-111-0/+11
| | | | Signed-off-by: Ran Benita <ran@unusedvar.com>
* Bump version to 1.0.0xkbcommon-1.0.0Ran Benita2020-09-061-2/+113
| | | | Signed-off-by: Ran Benita <ran@unusedvar.com>
* Add libxkbregistry to query available RMLVOPeter Hutterer2020-07-061-0/+11
| | | | | | | | | | | | | | | | | | | | | This library is the replacement for clients parsing evdev.xml directly. Instead, they should use the API here so that in the future we may even be able to swap evdev.xml for a more suitable data format. The library parses through evdev.xml (using libxml2) and - if requested - through evdev.extras.xml as well. The merge approach is optimised for the default case where we have a system-installed rules XML and another file in $XDG_CONFIG_DIR that adds a few entries. We load the system file first, then append any custom ones to that. It's not possible to overwrite the MLVO list provided by the system files - if you want to do that, get the change upstream. XML validation is handled through the DTD itself which means we only need to check for a nonempty name, everything else the DTD validation should complain about. The logging system is effectively identical to xkbcommon. Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
* Bump version to 0.10.0xkbcommon-0.10.0Ran Benita2020-01-181-0/+77
| | | | Signed-off-by: Ran Benita <ran@unusedvar.com>
* Bump version to 0.9.1xkbcommon-0.9.1Ran Benita2019-10-201-0/+7
| | | | Signed-off-by: Ran Benita <ran@unusedvar.com>
* Bump version to 0.9.0xkbcommon-0.9.0Ran Benita2019-10-191-0/+26
| | | | Signed-off-by: Ran Benita <ran@unusedvar.com>
* Update NEWSRan Benita2019-02-221-0/+9
| | | | Signed-off-by: Ran Benita <ran234@gmail.com>
* Update NEWSRan Benita2019-02-081-0/+10
| | | | Signed-off-by: Ran Benita <ran234@gmail.com>
* Update NEWSRan Benita2018-08-051-0/+10
| | | | Signed-off-by: Ran Benita <ran234@gmail.com>
* Update NEWSRan Benita2018-08-031-0/+38
| | | | Signed-off-by: Ran Benita <ran234@gmail.com>
* Convert http:// -> https:// where possibleRan Benita2017-12-211-2/+2
| | | | Signed-off-by: Ran Benita <ran234@gmail.com>
* Update NEWSRan Benita2017-12-151-3/+10
| | | | Signed-off-by: Ran Benita <ran234@gmail.com>
* keysym: add xkb_keysym_to_{lower,upper} to public APIRan Benita2017-12-111-0/+13
| | | | | | | | | | | | | | | | | | | These can be useful in some odd cases. There is already an implementation (+ tests) for internal use, so all that's needed is to export them. If xkbcommon were to provide a way to convert a Unicode codepoint to a keysym, this could have been implemented externally as follows: uint32_t codepoint = xkb_keysym_to_utf32(keysym); uint32_t upper_codepoint = my_unicode_library_to_upper(codepoint); xkb_keysym_t upper_keysym = theoretical_xkb_keysym_from_utf32(upper_codepoint); However keysym -> codepoint is not injective so such a function is not possible strictly speaking. Signed-off-by: Ran Benita <ran234@gmail.com>
* Update NEWSRan Benita2017-08-041-0/+46
| | | | Signed-off-by: Ran Benita <ran234@gmail.com>
* Update NEWSRan Benita2017-01-181-0/+14
| | | | Signed-off-by: Ran Benita <ran234@gmail.com>
* Update NEWSRan Benita2016-11-111-1/+24
| | | | Signed-off-by: Ran Benita <ran234@gmail.com>
* Bump version to 0.6.1xkbcommon-0.6.1Daniel Stone2016-04-081-0/+8
| | | | | | Our most minor release yet. Signed-off-by: Daniel Stone <daniels@collabora.com>
* Bump version to 0.6.0xkbcommon-0.6.0Ran Benita2016-03-161-1/+1
| | | | Signed-off-by: Ran Benita <ran234@gmail.com>
* Update NEWSRan Benita2016-03-131-0/+23
| | | | Signed-off-by: Ran Benita <ran234@gmail.com>
* NEWS: add some spacingRan Benita2016-03-131-0/+4
| | | | Signed-off-by: Ran Benita <ran234@gmail.com>
* Update NEWSRan Benita2014-10-181-0/+44
| | | | Signed-off-by: Ran Benita <ran234@gmail.com>
* Update NEWSRan Benita2014-08-191-0/+23
| | | | Signed-off-by: Ran Benita <ran234@gmail.com>
* Update NEWSRan Benita2014-05-151-0/+22
| | | | Signed-off-by: Ran Benita <ran234@gmail.com>
* doc: add @since annotations for API added since 0.3.0Ran Benita2014-04-111-5/+5
| | | | | | | | | And also add release dates to the NEWS. We're adding API freely, so this can make life easier for anyone who wants to stay compatible with an older version. Signed-off-by: Ran Benita <ran234@gmail.com>
* Update NEWSRan Benita2014-03-271-0/+43
| | | | Signed-off-by: Ran Benita <ran234@gmail.com>
* Update NEWSRan Benita2014-02-021-2/+28
| | | | Signed-off-by: Ran Benita <ran234@gmail.com>
* NEWS: add missing 'New API' entries for NO_FLAGSRan Benita2013-11-261-0/+5
| | | | | | Forgot to add this. Signed-off-by: Ran Benita <ran234@gmail.com>
* Bump version to 0.3.2xkbcommon-0.3.2Ran Benita2013-11-221-0/+55
Add a NEWS file, with some retroactive entries. Also add 'check-news' to configure.ac, though this might be a bit annoying. Signed-off-by: Ran Benita <ran234@gmail.com>