Skip to content

Commit

Permalink
#10 Fix German keyboard layout abbreviation for Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
Ivan Seredkin committed Jul 29, 2024
1 parent 37a92d3 commit a5ffb5e
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 4 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,12 @@

## [Unreleased]

## [1.2.0] - Unreleased

## [1.2.0] - 2024-07-29
### Changed
- Plugin settings moved to Tools: `File` > `Settings` > `Tools` > `Kursor`.
- Fix German keyboard layout abbreviation for Windows.


## [1.1.1] - 2024-07-25
### Changed
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ private val windowsKeyboardLayoutMap = mapOf(
"00000404" to "CH",
"00000405" to "CZ",
"00000406" to "DK",
"00000407" to "GR",
"00000407" to "DE",
"00000408" to "GK",
"00000409" to "US",
"0000040A" to "SP",
Expand Down Expand Up @@ -58,7 +58,7 @@ private val windowsKeyboardLayoutMap = mapOf(
"00001809" to "US",
"00010402" to "US",
"00010405" to "CZ",
"00010407" to "GR",
"00010407" to "DEI",
"00010408" to "GK",
"00010409" to "DV",
"0001040A" to "SP",
Expand Down Expand Up @@ -333,6 +333,9 @@ class KeyboardLayoutInfo {
"0xfffffffff014" -> {
"0001041F"
}
"0xfffffffff012" -> {
"00010407"
}
else -> {
layoutId.substring(2).padStart(8, '0')
}
Expand Down
3 changes: 2 additions & 1 deletion src/main/resources/META-INF/plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,11 @@
]]></description>

<change-notes><![CDATA[
1.2.0 (unreleased)<br />
1.2.0 (2024-07-29)<br />
++++++++++++++++++<br />
Changed:<br />
- Plugin settings moved to Tools: `File` > `Settings` > `Tools` > `Kursor`.<br />
- Fix German keyboard layout abbreviation for Windows.<br />
<br />
<br />
1.1.1 (2024-07-25)<br />
Expand Down

0 comments on commit a5ffb5e

Please sign in to comment.