From 757479e281db4449f83ac50b702ddbad6c88e3ca Mon Sep 17 00:00:00 2001 From: derailed Date: Wed, 12 Feb 2020 09:07:20 -0700 Subject: [PATCH] add rel notes --- change_logs/release_v0.14.1.md | 41 ++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 change_logs/release_v0.14.1.md diff --git a/change_logs/release_v0.14.1.md b/change_logs/release_v0.14.1.md new file mode 100644 index 00000000..584de21f --- /dev/null +++ b/change_logs/release_v0.14.1.md @@ -0,0 +1,41 @@ + + +# Release v0.14.1 + +## Notes + +Thank you to all that contributed with flushing out issues and enhancements for K9s! I'll try to mark some of these issues as fixed. But if you don't mind grab the latest rev and see if we're happier with some of the fixes! If you've filed an issue please help me verify and close. Your support, kindness and awesome suggestions to make K9s better is as ever very much noticed and appreciated! + +Also if you dig this tool, please make some noise on social! [@kitesurfer](https://twitter.com/kitesurfer) + +On Slack? Please join us [K9slackers](https://join.slack.com/t/k9sers/shared_invite/enQtOTA5MDEyNzI5MTU0LWQ1ZGI3MzliYzZhZWEyNzYxYzA3NjE0YTk1YmFmNzViZjIyNzhkZGI0MmJjYzhlNjdlMGJhYzE2ZGU1NjkyNTM) + +--- + +## Term Color Part Duh! + +Some folks had reported issues with skins and wanting to preserve their terminal background colors while in K9s. In this drop, we're introducing a new skin setting called `default` that should enable the skin to keep the original terminal background color. Here is a sample skin snippet that should achieve just that: + +```yaml +# .k9s/pale_rider.yml + +# Styles... +fg: &fg "#ff00ff" +bg: &bg "default" # default keeps your current terminal window background color. + +# Skin... +k9s: + body: + fgColor: *fg + bgColor: "default" +#... +``` + +## Resolved Bugs/Features/PRs + +* [Issue #539](https://github.com/derailed/k9s/issues/539) +* [Issue #538](https://github.com/derailed/k9s/issues/538) Fingers crossed! + +--- + + © 2020 Imhotep Software LLC. All materials licensed under [Apache v2.0](http://www.apache.org/licenses/LICENSE-2.0)