Skip to content

Latest commit

 

History

History
135 lines (73 loc) · 6.73 KB

CHANGELOG.md

File metadata and controls

135 lines (73 loc) · 6.73 KB

Changelog

All notable changes to this project will be documented in this file. See standard-version for commit guidelines.

0.9.0 (2020-09-04)

Features

  • transient: handle transient mode (c5ec676)

0.8.0 (2020-06-07)

Features

  • layers: now use the window_class key in yaml (dfd2a4c)

Bug Fixes

  • layers: now doesnt have weird duplicates (1a9d3e3)

0.7.0 (2020-06-06)

Features

  • color: add color in config (baa0eb2)
  • config: now load layers and theme from config folder #5 (e7fb71f)
  • layers: add i3 layer (0d2b78b)
  • menu: show the memu path and use message instead of prompt (3bf8dc4)

Bug Fixes

  • sort: sort by ignoring case (32dc7c3)
  • theme: set theme config correctly (1c1501f)

0.6.0 (2020-05-31)

Features

  • layers: auto create layer and edit it when --major is called (d5697d3)
  • new_command: add keymap everywhere to add custom command to layer (d6b9ef3)

0.5.0 (2020-05-31)

⚠ BREAKING CHANGES

  • layers: To migrate to the new layer format run this in yawhich-key directory, you might have to escape some commands that used to be strings with '' around

Multilines commands migration is not supported (please avoid thoses for now)

cd layers;
for r in *; do
  mv "$r" "$r.bak"
  ../scripts/layers-v1-to-v2.sh "$r.bak" > $r
done

Features

Bug Fixes

  • new_layer: add command to create new layer (6c75119)
  • prompt: show prefix between all layers (81f87b8)

0.4.0 (2020-05-28)

Features

  • config: add config file handling (7fb53c7)

0.3.1 (2020-05-28)

Bug Fixes

  • handle dipslay of more keys at once (c6258d3)

0.3.0 (2020-05-28)

Features

  • add_new: propose to add new command directly (fe9de07)
  • layer/core: add major mode command in core (cb216ae)

Bug Fixes

  • sorting: now sort list correctly (b193326)
  • wrong naming of env variables (cd2444d)

0.2.0 (2020-05-28)

⚠ BREAKING CHANGES

  • layers: json is not used and all the layers are now .yaml,
  • you now have to install 'yq' from https://github.com/mikefarah/yq (be careful there is another 'yq' written in python, dont install the wrong one)
  • if you already wrote lot of config you can use https://github.com/dbohdan/remarshal with this command to convert all json to yaml for file in layers/*.json; do remarshal $file --of yaml > echo $file | sed -e 's/.json/.yaml/g'`; done

Features

  • layer/files-config: allow to create new layers faster (9ab5718)
  • layer/kitty: add kitty (736c125)
  • layer/vivaldi-snapshot: new layer (5a2dd4a)
  • layers: layers are now in yaml (e9764d8)
  • major-mode: add application specific keymaps handling (1d23a28)

Bug Fixes

  • no argument made the variable unbound (783ec04)

0.1.0 (2020-05-27)

Features

  • layers: add basic layers (6268793)
  • themes: add default theme (fba8062)
  • yawhich-key: show which key popup using rofi (9175af6)