add more keycodes and update appveyor.yml

This commit is contained in:
vcaesar 2021-08-08 14:42:54 -04:00
parent 6c7707ceeb
commit 927fa72aa5
2 changed files with 175 additions and 173 deletions

View File

@ -34,7 +34,7 @@ environment:
PATH: C:\msys64\mingw32\bin\;C:\Program Files (x86)\NSIS\;%PATH% PATH: C:\msys64\mingw32\bin\;C:\Program Files (x86)\NSIS\;%PATH%
# - COMPILER: MINGW_W64 # - COMPILER: MINGW_W64
# ARCHITECTURE: x64 # ARCHITECTURE: x64
GOVERSION: 1.16.5 GOVERSION: 1.16.7
# GOPATH: c:\gopath # GOPATH: c:\gopath
# scripts that run after cloning repository # scripts that run after cloning repository

View File

@ -174,6 +174,7 @@ var (
244: "kanji", 244: "kanji",
251: "unlock trackpad (Chrome/Edge)", 251: "unlock trackpad (Chrome/Edge)",
255: "toggle touchpad", 255: "toggle touchpad",
65517: "hyper",
} }
keytoraw = map[string]uint16{ keytoraw = map[string]uint16{
@ -348,5 +349,6 @@ var (
"kanji": 244, "kanji": 244,
"unlock trackpad (Chrome/Edge)": 251, "unlock trackpad (Chrome/Edge)": 251,
"toggle touchpad": 255, "toggle touchpad": 255,
"hyper": 65517,
} }
) )