Releases: srithon/kmonadx
Releases · srithon/kmonadx
Release list
v0.4.1
- Fix bug where initial keys defined in the first parent layer could not be
overriden by future parent layers- I'm not sure how I thought this was fixed in v0.3.6; in the following example,
1was incorrectly bound toainc
- I'm not sure how I thought this was fixed in v0.3.6; in the following example,
[a]
[[keys]]
1 = 'a'
[b]
[[keys]]
1 = 'b'
[c]
parent = { a, b }
v0.4.0
- Refactored
diagnosticmodule to be more usable as a library
Included Changes
I only just set up GitHub actions properly, so these two older versions didn't end up getting their own releases.
0.3.6
- Fix buttons not being able to be overriden more than once in multi-inheritance
- In the following example,
xwould be incorrectly bound toyinfoo
- In the following example,
[a]
[[keys]]
x = 'x'
[b]
[[keys]]
x = 'y'
[c]
[[keys]]
x = 'z'
[foo]
parent = { a, b, c }
0.3.5
- Allow layer references in constants (
button = (cmd-button "/bin/bash $layer:my-argument"))