From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:52992) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1e2v7T-0003BG-Sw for qemu-devel@nongnu.org; Fri, 13 Oct 2017 04:15:01 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1e2v7P-0004Jd-QD for qemu-devel@nongnu.org; Fri, 13 Oct 2017 04:14:59 -0400 Received: from mx1.redhat.com ([209.132.183.28]:56642) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1e2v7P-0004Iy-I4 for qemu-devel@nongnu.org; Fri, 13 Oct 2017 04:14:55 -0400 Received: from smtp.corp.redhat.com (int-mx03.intmail.prod.int.phx2.redhat.com [10.5.11.13]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id AB60C356D3 for ; Fri, 13 Oct 2017 08:14:54 +0000 (UTC) From: Gerd Hoffmann Date: Fri, 13 Oct 2017 10:14:39 +0200 Message-Id: <20171013081450.29647-1-kraxel@redhat.com> Subject: [Qemu-devel] [PULL 00/11] Ui 20171013 patches List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Gerd Hoffmann The following changes since commit bac960832015bf4c4c1b873011612e2675e4464c: Merge remote-tracking branch 'remotes/elmarco/tags/vus-pull-request' into staging (2017-10-11 13:10:36 +0100) are available in the git repository at: git://git.kraxel.org/qemu tags/ui-20171013-pull-request for you to fetch changes up to 942a35335b2efa2f2997d51eb5142fc9903efe43: gtk: fix wrong id between texture and framebuffer (2017-10-13 10:10:36 +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 ui: gtk texture fix ---------------------------------------------------------------- Anthoine Bourgeois (1): gtk: fix wrong id between texture and framebuffer 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-gl-area.c | 3 +- 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 + 47 files changed, 24565 insertions(+), 2075 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