Compare commits
9 commits
ver/202012
...
master
Author | SHA1 | Date | |
---|---|---|---|
30b3e4f6cb | |||
f665abe483 | |||
b2856e8b32 | |||
c77830eba7 | |||
004124263d | |||
95dcf4bf1b | |||
732703ca4d | |||
57f6762aed | |||
04baae02ac |
6 changed files with 34 additions and 1 deletions
BIN
hr-apple.klc
BIN
hr-apple.klc
Binary file not shown.
16
pack.bat
Normal file
16
pack.bat
Normal file
|
@ -0,0 +1,16 @@
|
|||
@echo off
|
||||
|
||||
setlocal enabledelayedexpansion
|
||||
set BUILDDIR=%~dp0
|
||||
|
||||
call :pack hr-apple || goto :error
|
||||
call :pack sl-apple || goto :error
|
||||
exit /b 0
|
||||
|
||||
:pack
|
||||
set BASENAME=%1
|
||||
tar.exe -c -f "%BUILDDIR%%BASENAME%.zip" -C "%BUILDDIR%." "%BASENAME%" license.txt readme.md
|
||||
goto :eof
|
||||
|
||||
:error
|
||||
cmd /c exit %errorlevel%
|
|
@ -1,6 +1,6 @@
|
|||
# Croatian/Slovenian Apple Magic Keyboard Layout for Windows
|
||||
|
||||
The Apple Magic Keyboards have different key layout than standard Croatian and Slovenian QWERTZ keyboards used with PC computers. Windows 10 includes only some of the Apple keyboard localized layouts. Unfortunately, not Croatian and Slovenian. Fortunately, one can create a keyboard layout using free Microsoft Keyboard Layout Creator utility, downloadable from the Microsoft website.
|
||||
The Apple Magic Keyboards have different key layout than standard Croatian and Slovenian QWERTZ keyboards used with PC computers. Apple drivers for Windows 10 include only some of the Apple keyboard localized layouts. Unfortunately, not Croatian and Slovenian. Fortunately, one can create a keyboard layout using free Microsoft Keyboard Layout Creator utility, downloadable from the Microsoft website.
|
||||
|
||||
Croatian and Slovenian Apple Magic Keyboards are identical. However, they do require separate keyboard layouts on Windows as they are bound to specific locale ID.
|
||||
|
||||
|
|
17
sign.bat
Normal file
17
sign.bat
Normal file
|
@ -0,0 +1,17 @@
|
|||
@echo off
|
||||
|
||||
setlocal enabledelayedexpansion
|
||||
set BUILDDIR=%~dp0
|
||||
|
||||
call :sign hr-apple "Apple Magic Keyboard Croatian" || goto :error
|
||||
call :sign sl-apple "Apple Magic Keyboard Slovenian" || goto :error
|
||||
exit /b 0
|
||||
|
||||
:sign
|
||||
set BASENAME=%1
|
||||
set DESCRIPTION=%2
|
||||
signtool.exe sign /sha1 "%ManifestCertificateThumbprint%" /fd sha256 /tr "%ManifestTimestampRFC3161Url%" /td sha256 /d "%DESCRIPTION%" "%BUILDDIR%%BASENAME%\amd64\%BASENAME%.dll" "%BUILDDIR%%BASENAME%\i386\%BASENAME%.dll" "%BUILDDIR%%BASENAME%\ia64\%BASENAME%.dll" "%BUILDDIR%%BASENAME%\wow64\%BASENAME%.dll" "%BUILDDIR%%BASENAME%\%BASENAME%_amd64.msi" "%BUILDDIR%%BASENAME%\%BASENAME%_i386.msi" "%BUILDDIR%%BASENAME%\%BASENAME%_ia64.msi"
|
||||
goto :eof
|
||||
|
||||
:error
|
||||
cmd /c exit %errorlevel%
|
BIN
sl-apple.klc
BIN
sl-apple.klc
Binary file not shown.
Loading…
Add table
Reference in a new issue