Blame SOURCES/0001-osk-layouts-Replace-SS-extra-key-with.patch

e52bd3
From be3a2303cf9ed4077955aaa9fae1fc4cbe2da277 Mon Sep 17 00:00:00 2001
e52bd3
From: =?UTF-8?q?Florian=20M=C3=BCllner?= <fmuellner@gnome.org>
e52bd3
Date: Tue, 24 Jan 2023 17:49:24 +0100
e52bd3
Subject: [PATCH] =?UTF-8?q?osk-layouts:=20Replace=20"SS"=20extra=20key=20w?=
e52bd3
 =?UTF-8?q?ith=20"=E1=BA=9E"?=
e52bd3
MIME-Version: 1.0
e52bd3
Content-Type: text/plain; charset=UTF-8
e52bd3
Content-Transfer-Encoding: 8bit
e52bd3
e52bd3
The on-screen keyboard only handles a single keyval per key, so the
e52bd3
current upper-case version of the German "ß" ends up as "S" instead
e52bd3
of the expected "SS".
e52bd3
e52bd3
It is possible to change the keyboard code to emulate multiple key
e52bd3
presses/releases for that particular case, but then luckily a proper
e52bd3
upper-case form exists nowadays: "ẞ".
e52bd3
e52bd3
That seems more appropriate for a single key than a dedicated "SS"
e52bd3
key, so replace it in all layouts that include it. Anybody who prefers
e52bd3
the traditional "SS" can easily tap "S" twice.
e52bd3
e52bd3
Part-of:
e52bd3
<https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/2612>
e52bd3
---
e52bd3
 data/osk-layouts/cz.json  | 2 +-
e52bd3
 data/osk-layouts/de.json  | 2 +-
e52bd3
 data/osk-layouts/dk.json  | 2 +-
e52bd3
 data/osk-layouts/ee.json  | 2 +-
e52bd3
 data/osk-layouts/epo.json | 2 +-
e52bd3
 data/osk-layouts/fi.json  | 2 +-
e52bd3
 data/osk-layouts/hr.json  | 2 +-
e52bd3
 data/osk-layouts/ke.json  | 2 +-
e52bd3
 data/osk-layouts/lt.json  | 2 +-
e52bd3
 data/osk-layouts/lv.json  | 2 +-
e52bd3
 data/osk-layouts/no.json  | 2 +-
e52bd3
 data/osk-layouts/pl.json  | 2 +-
e52bd3
 data/osk-layouts/ro.json  | 2 +-
e52bd3
 data/osk-layouts/se.json  | 2 +-
e52bd3
 data/osk-layouts/sk.json  | 2 +-
e52bd3
 data/osk-layouts/tr.json  | 2 +-
e52bd3
 data/osk-layouts/uk.json  | 2 +-
e52bd3
 data/osk-layouts/us.json  | 2 +-
e52bd3
 18 files changed, 18 insertions(+), 18 deletions(-)
e52bd3
e52bd3
diff --git a/data/osk-layouts/cz.json b/data/osk-layouts/cz.json
e52bd3
index 9bad07402..526cb9cb6 100644
e52bd3
--- a/data/osk-layouts/cz.json
e52bd3
+++ b/data/osk-layouts/cz.json
e52bd3
@@ -246,7 +246,7 @@
e52bd3
           [
e52bd3
             "S",
e52bd3
             "Š",
e52bd3
-            "SS",
e52bd3
+            "ẞ",
e52bd3
             "Ś"
e52bd3
           ],
e52bd3
           [
e52bd3
diff --git a/data/osk-layouts/de.json b/data/osk-layouts/de.json
e52bd3
index 751a85603..3b1cb34b2 100644
e52bd3
--- a/data/osk-layouts/de.json
e52bd3
+++ b/data/osk-layouts/de.json
e52bd3
@@ -208,7 +208,7 @@
e52bd3
           ],
e52bd3
           [
e52bd3
             "S",
e52bd3
-            "SS",
e52bd3
+            "ẞ",
e52bd3
             "Ś",
e52bd3
             "Š"
e52bd3
           ],
e52bd3
diff --git a/data/osk-layouts/dk.json b/data/osk-layouts/dk.json
e52bd3
index 80df9ae65..7bc6feaf3 100644
e52bd3
--- a/data/osk-layouts/dk.json
e52bd3
+++ b/data/osk-layouts/dk.json
e52bd3
@@ -218,7 +218,7 @@
e52bd3
           ],
e52bd3
           [
e52bd3
             "S",
e52bd3
-            "SS",
e52bd3
+            "ẞ",
e52bd3
             "Ś",
e52bd3
             "Š"
e52bd3
           ],
e52bd3
diff --git a/data/osk-layouts/ee.json b/data/osk-layouts/ee.json
e52bd3
index 5fd2f11fa..b42b0afc9 100644
e52bd3
--- a/data/osk-layouts/ee.json
e52bd3
+++ b/data/osk-layouts/ee.json
e52bd3
@@ -281,7 +281,7 @@
e52bd3
           [
e52bd3
             "S",
e52bd3
             "Š",
e52bd3
-            "SS",
e52bd3
+            "ẞ",
e52bd3
             "Ś",
e52bd3
             "Ş"
e52bd3
           ],
e52bd3
diff --git a/data/osk-layouts/epo.json b/data/osk-layouts/epo.json
e52bd3
index 71f9ef8d9..d7257625f 100644
e52bd3
--- a/data/osk-layouts/epo.json
e52bd3
+++ b/data/osk-layouts/epo.json
e52bd3
@@ -316,7 +316,7 @@
e52bd3
           ],
e52bd3
           [
e52bd3
             "S",
e52bd3
-            "SS",
e52bd3
+            "ẞ",
e52bd3
             "Š",
e52bd3
             "Ś",
e52bd3
             "Ș",
e52bd3
diff --git a/data/osk-layouts/fi.json b/data/osk-layouts/fi.json
e52bd3
index 3ba5b567c..d664b0ec5 100644
e52bd3
--- a/data/osk-layouts/fi.json
e52bd3
+++ b/data/osk-layouts/fi.json
e52bd3
@@ -200,7 +200,7 @@
e52bd3
           [
e52bd3
             "S",
e52bd3
             "Š",
e52bd3
-            "SS",
e52bd3
+            "ẞ",
e52bd3
             "Ś"
e52bd3
           ],
e52bd3
           [
e52bd3
diff --git a/data/osk-layouts/hr.json b/data/osk-layouts/hr.json
e52bd3
index ff0d1d09a..e4977796a 100644
e52bd3
--- a/data/osk-layouts/hr.json
e52bd3
+++ b/data/osk-layouts/hr.json
e52bd3
@@ -168,7 +168,7 @@
e52bd3
             "S",
e52bd3
             "Š",
e52bd3
             "Ś",
e52bd3
-            "SS"
e52bd3
+            "ẞ"
e52bd3
           ],
e52bd3
           [
e52bd3
             "D",
e52bd3
diff --git a/data/osk-layouts/ke.json b/data/osk-layouts/ke.json
e52bd3
index 9c3e93565..2bd5b09d0 100644
e52bd3
--- a/data/osk-layouts/ke.json
e52bd3
+++ b/data/osk-layouts/ke.json
e52bd3
@@ -217,7 +217,7 @@
e52bd3
           ],
e52bd3
           [
e52bd3
             "S",
e52bd3
-            "SS"
e52bd3
+            "ẞ"
e52bd3
           ],
e52bd3
           [
e52bd3
             "D"
e52bd3
diff --git a/data/osk-layouts/lt.json b/data/osk-layouts/lt.json
e52bd3
index 7cd5352a8..a43ff9146 100644
e52bd3
--- a/data/osk-layouts/lt.json
e52bd3
+++ b/data/osk-layouts/lt.json
e52bd3
@@ -270,7 +270,7 @@
e52bd3
           [
e52bd3
             "S",
e52bd3
             "Š",
e52bd3
-            "SS",
e52bd3
+            "ẞ",
e52bd3
             "Ś",
e52bd3
             "Ş"
e52bd3
           ],
e52bd3
diff --git a/data/osk-layouts/lv.json b/data/osk-layouts/lv.json
e52bd3
index bab6ae3d7..d72c93c25 100644
e52bd3
--- a/data/osk-layouts/lv.json
e52bd3
+++ b/data/osk-layouts/lv.json
e52bd3
@@ -268,7 +268,7 @@
e52bd3
           [
e52bd3
             "S",
e52bd3
             "Š",
e52bd3
-            "SS",
e52bd3
+            "ẞ",
e52bd3
             "Ś",
e52bd3
             "Ş"
e52bd3
           ],
e52bd3
diff --git a/data/osk-layouts/no.json b/data/osk-layouts/no.json
e52bd3
index a70be9ca0..0df786853 100644
e52bd3
--- a/data/osk-layouts/no.json
e52bd3
+++ b/data/osk-layouts/no.json
e52bd3
@@ -218,7 +218,7 @@
e52bd3
           ],
e52bd3
           [
e52bd3
             "S",
e52bd3
-            "SS",
e52bd3
+            "ẞ",
e52bd3
             "Ś",
e52bd3
             "Š"
e52bd3
           ],
e52bd3
diff --git a/data/osk-layouts/pl.json b/data/osk-layouts/pl.json
e52bd3
index 4b08cd5d3..8583bd64c 100644
e52bd3
--- a/data/osk-layouts/pl.json
e52bd3
+++ b/data/osk-layouts/pl.json
e52bd3
@@ -212,7 +212,7 @@
e52bd3
           [
e52bd3
             "S",
e52bd3
             "Ś",
e52bd3
-            "SS",
e52bd3
+            "ẞ",
e52bd3
             "Š"
e52bd3
           ],
e52bd3
           [
e52bd3
diff --git a/data/osk-layouts/ro.json b/data/osk-layouts/ro.json
e52bd3
index c690f4ecd..8d4676126 100644
e52bd3
--- a/data/osk-layouts/ro.json
e52bd3
+++ b/data/osk-layouts/ro.json
e52bd3
@@ -188,7 +188,7 @@
e52bd3
           [
e52bd3
             "S",
e52bd3
             "Ș",
e52bd3
-            "SS",
e52bd3
+            "ẞ",
e52bd3
             "Ś",
e52bd3
             "Š"
e52bd3
           ],
e52bd3
diff --git a/data/osk-layouts/se.json b/data/osk-layouts/se.json
e52bd3
index 513a0b897..0ebb756e7 100644
e52bd3
--- a/data/osk-layouts/se.json
e52bd3
+++ b/data/osk-layouts/se.json
e52bd3
@@ -245,7 +245,7 @@
e52bd3
             "Ś",
e52bd3
             "Š",
e52bd3
             "Ş",
e52bd3
-            "SS"
e52bd3
+            "ẞ"
e52bd3
           ],
e52bd3
           [
e52bd3
             "D",
e52bd3
diff --git a/data/osk-layouts/sk.json b/data/osk-layouts/sk.json
e52bd3
index 678232b82..a74ad0b61 100644
e52bd3
--- a/data/osk-layouts/sk.json
e52bd3
+++ b/data/osk-layouts/sk.json
e52bd3
@@ -269,7 +269,7 @@
e52bd3
           [
e52bd3
             "S",
e52bd3
             "Š",
e52bd3
-            "SS",
e52bd3
+            "ẞ",
e52bd3
             "Ś",
e52bd3
             "Ş"
e52bd3
           ],
e52bd3
diff --git a/data/osk-layouts/tr.json b/data/osk-layouts/tr.json
e52bd3
index b3786cc88..8243aafad 100644
e52bd3
--- a/data/osk-layouts/tr.json
e52bd3
+++ b/data/osk-layouts/tr.json
e52bd3
@@ -202,7 +202,7 @@
e52bd3
           [
e52bd3
             "S",
e52bd3
             "Ş",
e52bd3
-            "SS",
e52bd3
+            "ẞ",
e52bd3
             "Ś",
e52bd3
             "Š"
e52bd3
           ],
e52bd3
diff --git a/data/osk-layouts/uk.json b/data/osk-layouts/uk.json
e52bd3
index c36a723a0..19f5aa6d9 100644
e52bd3
--- a/data/osk-layouts/uk.json
e52bd3
+++ b/data/osk-layouts/uk.json
e52bd3
@@ -216,7 +216,7 @@
e52bd3
           ],
e52bd3
           [
e52bd3
             "S",
e52bd3
-            "SS"
e52bd3
+            "ẞ"
e52bd3
           ],
e52bd3
           [
e52bd3
             "D"
e52bd3
diff --git a/data/osk-layouts/us.json b/data/osk-layouts/us.json
e52bd3
index 94dd6d3ad..dd0cd368f 100644
e52bd3
--- a/data/osk-layouts/us.json
e52bd3
+++ b/data/osk-layouts/us.json
e52bd3
@@ -216,7 +216,7 @@
e52bd3
           ],
e52bd3
           [
e52bd3
             "S",
e52bd3
-            "SS"
e52bd3
+            "ẞ"
e52bd3
           ],
e52bd3
           [
e52bd3
             "D"
e52bd3
-- 
e52bd3
2.38.1
e52bd3