diff --git a/azure-pipelines.yml b/azure-pipelines.yml index e34a3bc5..e1377969 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -91,10 +91,11 @@ jobs: imageName: "macOS-10.15" B_BUILD_TYPE: Release BARRIER_VERSION_STAGE: Release - mojave-Release: - imageName: "macOS-10.14" - B_BUILD_TYPE: Release - BARRIER_VERSION_STAGE: Release + # Azure has removed the macOS-10.14 image, so this will never work + # mojave-Release: + # imageName: "macOS-10.14" + # B_BUILD_TYPE: Release + # BARRIER_VERSION_STAGE: Release pool: vmImage: $(imageName) variables: diff --git a/doc/newsfragments/1541-fix-broken-tilde-and-grave b/doc/newsfragments/1541-fix-broken-tilde-and-grave new file mode 100644 index 00000000..55d13196 --- /dev/null +++ b/doc/newsfragments/1541-fix-broken-tilde-and-grave @@ -0,0 +1,3 @@ +Fix the regression introduced in #1214 that caused tilde (~) and grave +(`) to stop being sendable from at least a MacOS Barrier Server (and +probably others). Fixes Issues #1541 and #1407 diff --git a/src/lib/platform/OSXKeyState.cpp b/src/lib/platform/OSXKeyState.cpp index aad20729..1f50697c 100644 --- a/src/lib/platform/OSXKeyState.cpp +++ b/src/lib/platform/OSXKeyState.cpp @@ -131,8 +131,6 @@ static const KeyEntry s_controlKeys[] = { { kKeyEisuToggle, kVK_JIS_Eisu }, { kKeyKana, kVK_JIS_Kana }, { kKeyMuhenkan, s_int5VK }, - { kKeyHenkan, s_int4VK }, - { kKeyZenkaku, kVK_ANSI_Grave } };