Compare commits

..

No commits in common. "master" and "ver/20201227" have entirely different histories.

6 changed files with 1 additions and 34 deletions

Binary file not shown.

View file

@ -1,16 +0,0 @@
@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%

View file

@ -1,6 +1,6 @@
# Croatian/Slovenian Apple Magic Keyboard Layout for Windows # 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. 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. 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.
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. 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.

View file

@ -1,17 +0,0 @@
@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%

Binary file not shown.