Prepare for merge

This commit is contained in:
Cagebreak Signing Key 1 2020-03-29 12:51:26 +00:00
commit 9c93e3d4e8
2 changed files with 25 additions and 1 deletions

24
Bugs.md
View file

@ -55,3 +55,27 @@ Steps to reproduce:
```
(EE) failed to read Wayland events: Broken pipe
```
### Issue 4
github issue number: #1
Fixed: 1.0.7
This issue is code duplication in `parse.c`.
Github issue text:
```
As of right now, the actions which can be run in the config file and the
actions which can be run as a keybinding are parsed separately in `parse.c`.
This leads to a lot of code duplication. Furthermore, unifying these
functionalities would enable a more versatile configuration. For instance, it
would enable the user to write `hsplit` into the configuration file to split
the output on startup and workspace 2 to set the default workspace to
workspace 2. Therefore, this change would simplify the code base, while at
the same time increasing the feature set.
PS: As a side effect, this would allow quirky statements such as
`bind dbind r hsplit` which would bind the d key to binding the r key to
split the output...
```

View file

@ -1,5 +1,5 @@
project('cagebreak', 'c',
version: '1.0.6',
version: '1.0.7',
license: 'MIT',
default_options: [
'c_std=c11',