Denis Mishankov
Denis Mishankov
@np-8 only one for now. What’s the difference between `dev` and `master` branches here?
Quick update: having issues with running test with chromedriver on GitHub Actions. May return to this later, but now not actively working on this
Removed from 1.0.0 plans as it does not seem necessary
Implementation advices from Nim forum: https://forum.nim-lang.org/t/10673
Get tags ```sh git tag -l --sort=version:refname "v0*" ```
> we would need to check for both, so that we dont break different or even custom alphabetic layouts I believe that codes will not be an issue in this...
Ran this code ```js navigator.keyboard.getLayoutMap().then((keyboardLayoutMap) => { for (const [code, key] of keyboardLayoutMap.entries()) { if (code === 'KeyZ') console.log(`${code} keyboard code represents ${key} key`); } }); ``` using English, Russian...
Added check for alphabet. Works for me in English, German and Russian layouts Conditions became pretty long, should probably refactor them a bit if logic is ok.