Compare commits

...

9 commits

Author SHA1 Message Date
30b3e4f6cb sign: Add description
UAC prompt displays some random MSI filename otherwise.

Signed-off-by: Simon Rozman <simon@rozman.si>
2020-12-29 12:56:07 +01:00
f665abe483 Add packaging helper
Signed-off-by: Simon Rozman <simon@rozman.si>
2020-12-29 10:25:11 +01:00
b2856e8b32 Rename license file
Windows doesn't like extension-less files.

Signed-off-by: Simon Rozman <simon@rozman.si>
2020-12-29 10:07:57 +01:00
c77830eba7 doc: Update the source of existing Apple keyboard layouts
Signed-off-by: Simon Rozman <simon@rozman.si>
2020-12-29 10:04:26 +01:00
004124263d Add signing helper
Signed-off-by: Simon Rozman <simon@rozman.si>
2020-12-29 09:47:35 +01:00
95dcf4bf1b Use left/right double quote like on macOS
Signed-off-by: Simon Rozman <simon@rozman.si>
2020-12-28 14:43:58 +01:00
732703ca4d Fix Shift+Num .
Signed-off-by: Simon Rozman <simon@rozman.si>
2020-12-28 14:43:58 +01:00
57f6762aed Fix Virtual-Key codes
Though, they appear unused.

Signed-off-by: Simon Rozman <simon@rozman.si>
2020-12-28 14:43:58 +01:00
04baae02ac Sync Control, Option and Command key names
Signed-off-by: Simon Rozman <simon@rozman.si>
2020-12-28 12:13:08 +01:00
6 changed files with 34 additions and 1 deletions

Binary file not shown.

16
pack.bat Normal file
View 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%

View file

@ -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
View 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%

Binary file not shown.