-
Notifications
You must be signed in to change notification settings - Fork 150
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Print layer as info log when layer changes
The motivation behind this change is for getting accustomed to new layout changes. The log may be of benefit so that the user can see what layout they're currently on and what keys are associated with it. The info-level logs are currently empty apart from initialization, so may as well make it useful for something. One current limitation is that any comments in the original layout file won't exist in the printed text. Additional changes: - increment version - refactor handle_time_ticks into multiple fns - change to new kanata-keyberon version for pub fn current_layer
- Loading branch information
Showing
4 changed files
with
106 additions
and
49 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "kanata" | ||
version = "1.0.1" | ||
version = "1.0.2" | ||
authors = ["jtroo <[email protected]>"] | ||
description = "Multi-layer keyboard customization" | ||
keywords = ["cli", "linux", "windows", "keyboard", "layout"] | ||
|
@@ -21,8 +21,11 @@ parking_lot = "0.12" | |
crossbeam-channel = "0.5" | ||
once_cell = "1" | ||
|
||
# Using my personal fork for tap_hold_interval and Sequence | ||
kanata-keyberon = "0.2" | ||
# Using my personal fork for: | ||
# - tap_hold_interval | ||
# - pub current_layer | ||
# - Sequence | ||
kanata-keyberon = "0.2.1" | ||
|
||
[target.'cfg(target_os = "linux")'.dependencies] | ||
evdev-rs = "0.4.0" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters