From: Gerd Hoffmann <kraxel@redhat.com>
To: qemu-devel@nongnu.org
Cc: Gerd Hoffmann <kraxel@redhat.com>
Subject: [Qemu-devel] [PULL 00/10] Ui 20171011 patches
Date: Wed, 11 Oct 2017 10:35:54 +0200 [thread overview]
Message-ID: <20171011083604.11820-1-kraxel@redhat.com> (raw)
The following changes since commit 567d0a19c7998fa366598b83d5a6e5f0759d3ea9:
Merge remote-tracking branch 'remotes/ehabkost/tags/x86-and-machine-pull-request' into staging (2017-10-10 13:25:46 +0100)
are available in the git repository at:
git://git.kraxel.org/qemu tags/ui-20171011-pull-request
for you to fetch changes up to 92328b7104ffc825f10c33f3fd1866e940a523f7:
ui/gtk: Fix deprecation of vte_terminal_copy_clipboard (2017-10-11 10:03:31 +0200)
----------------------------------------------------------------
ui: use keycodemapdb for key code mappings, part one (v2)
ui: add qemu-keymap, update reverse keymaps (for qemu -k $map)
ui: fix for vte 0.50
----------------------------------------------------------------
Anthony PERARD (1):
ui/gtk: Fix deprecation of vte_terminal_copy_clipboard
Daniel P. Berrange (6):
build: automatically handle GIT submodule checkout for dtc
docker: don't rely on submodules existing in the main checkout
ui: add keycodemapdb repository as a GIT submodule
ui: convert common input code to keycodemapdb
ui: convert key events to QKeyCodes immediately
ui: don't export qemu_input_event_new_key
Gerd Hoffmann (3):
tools: add qemu-keymap
Add pc-bios/keymaps/Makefile
pc-bios/keymaps: keymaps update
configure | 75 ++-
Makefile | 55 ++-
include/ui/input.h | 12 +-
qemu-keymap.c | 258 +++++++++++
ui/gtk.c | 5 +
ui/input-keymap.c | 336 +-------------
ui/input.c | 24 +-
.gitignore | 2 +
.gitmodules | 3 +
MAINTAINERS | 6 +
pc-bios/keymaps/Makefile | 56 +++
pc-bios/keymaps/ar | 819 +++++++++++++++++++++++++++++----
pc-bios/keymaps/bepo | 1108 +++++++++++++++++++++++++++++++--------------
pc-bios/keymaps/cz | 861 ++++++++++++++++++++++++++++++++---
pc-bios/keymaps/da | 732 +++++++++++++++++++++++++++++-
pc-bios/keymaps/de | 767 ++++++++++++++++++++++++++++++-
pc-bios/keymaps/de-ch | 915 ++++++++++++++++++++++++++++++++-----
pc-bios/keymaps/en-gb | 724 ++++++++++++++++++++++++++++-
pc-bios/keymaps/en-us | 718 ++++++++++++++++++++++++++++-
pc-bios/keymaps/es | 744 +++++++++++++++++++++++++++++-
pc-bios/keymaps/et | 818 +++++++++++++++++++++++++++++----
pc-bios/keymaps/fi | 814 ++++++++++++++++++++++++++++++---
pc-bios/keymaps/fo | 881 ++++++++++++++++++++++++++++++++---
pc-bios/keymaps/fr | 704 +++++++++++++++++++++++++++-
pc-bios/keymaps/fr-be | 724 ++++++++++++++++++++++++++++-
pc-bios/keymaps/fr-ca | 804 ++++++++++++++++++++++++++++++--
pc-bios/keymaps/fr-ch | 800 ++++++++++++++++++++++++++++++--
pc-bios/keymaps/hr | 752 +++++++++++++++++++++++++++++-
pc-bios/keymaps/hu | 887 ++++++++++++++++++++++++++++++++----
pc-bios/keymaps/is | 802 +++++++++++++++++++++++++++++---
pc-bios/keymaps/it | 757 ++++++++++++++++++++++++++++++-
pc-bios/keymaps/ja | 792 +++++++++++++++++++++++++++++---
pc-bios/keymaps/lt | 844 ++++++++++++++++++++++++++++++++--
pc-bios/keymaps/lv | 766 +++++++++++++++++++++++++++++--
pc-bios/keymaps/mk | 814 +++++++++++++++++++++++++++++----
pc-bios/keymaps/nl | 794 +++++++++++++++++++++++++++++++-
pc-bios/keymaps/no | 758 ++++++++++++++++++++++++++++++-
pc-bios/keymaps/pl | 789 ++++++++++++++++++++++++++++++--
pc-bios/keymaps/pt | 737 +++++++++++++++++++++++++++++-
pc-bios/keymaps/pt-br | 775 ++++++++++++++++++++++++++++++-
pc-bios/keymaps/ru | 835 ++++++++++++++++++++++++++++++----
pc-bios/keymaps/th | 878 +++++++++++++++++++++++++++++------
pc-bios/keymaps/tr | 819 ++++++++++++++++++++++++++++++---
scripts/archive-source.sh | 34 +-
scripts/git-submodule.sh | 38 ++
ui/keycodemapdb | 1 +
46 files changed, 24564 insertions(+), 2073 deletions(-)
create mode 100644 qemu-keymap.c
create mode 100644 pc-bios/keymaps/Makefile
create mode 100755 scripts/git-submodule.sh
create mode 160000 ui/keycodemapdb
--
2.9.3
next reply other threads:[~2017-10-11 8:36 UTC|newest]
Thread overview: 26+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-10-11 8:35 Gerd Hoffmann [this message]
2017-10-11 8:35 ` [Qemu-devel] [PULL 01/10] build: automatically handle GIT submodule checkout for dtc Gerd Hoffmann
2017-10-11 8:35 ` [Qemu-devel] [PULL 02/10] docker: don't rely on submodules existing in the main checkout Gerd Hoffmann
2017-10-11 8:35 ` [Qemu-devel] [PULL 03/10] ui: add keycodemapdb repository as a GIT submodule Gerd Hoffmann
2017-10-11 8:35 ` [Qemu-devel] [PULL 04/10] ui: convert common input code to keycodemapdb Gerd Hoffmann
2017-10-11 8:35 ` [Qemu-devel] [PULL 05/10] ui: convert key events to QKeyCodes immediately Gerd Hoffmann
2017-10-11 8:36 ` [Qemu-devel] [PULL 06/10] ui: don't export qemu_input_event_new_key Gerd Hoffmann
2017-10-11 8:36 ` [Qemu-devel] [PULL 07/10] tools: add qemu-keymap Gerd Hoffmann
2017-10-11 8:36 ` [Qemu-devel] [PULL 08/10] Add pc-bios/keymaps/Makefile Gerd Hoffmann
2017-10-11 8:36 ` [Qemu-devel] [PULL 10/10] ui/gtk: Fix deprecation of vte_terminal_copy_clipboard Gerd Hoffmann
2017-10-11 14:37 ` [Qemu-devel] [PULL 00/10] Ui 20171011 patches Peter Maydell
2017-10-11 14:49 ` Kamil Rytarowski
2017-10-11 15:49 ` Daniel P. Berrange
2017-10-11 16:45 ` Peter Maydell
2017-10-12 8:24 ` Daniel P. Berrange
2017-10-12 9:00 ` Peter Maydell
2017-10-12 9:30 ` Gerd Hoffmann
2017-10-12 9:33 ` Daniel P. Berrange
2017-10-12 10:04 ` Gerd Hoffmann
2017-10-12 10:07 ` Daniel P. Berrange
2017-10-12 10:11 ` Peter Maydell
2017-10-12 10:13 ` Gerd Hoffmann
2017-10-12 10:14 ` Daniel P. Berrange
2017-10-12 9:51 ` Peter Maydell
2017-10-12 10:01 ` Gerd Hoffmann
2017-10-13 8:15 ` Gerd Hoffmann
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20171011083604.11820-1-kraxel@redhat.com \
--to=kraxel@redhat.com \
--cc=qemu-devel@nongnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).