From 7fe70ae41bc03d1d9fae3c46b06abbd1d8494c61 Mon Sep 17 00:00:00 2001 From: derailed Date: Thu, 4 Apr 2019 21:22:33 -0600 Subject: [PATCH] fix node view column ordering + picker fg color --- change_logs/release_0.4.6.md | 30 ++++++++++++++++++++++++++++++ internal/resource/no.go | 2 +- internal/views/select_list.go | 2 +- 3 files changed, 32 insertions(+), 2 deletions(-) create mode 100644 change_logs/release_0.4.6.md diff --git a/change_logs/release_0.4.6.md b/change_logs/release_0.4.6.md new file mode 100644 index 00000000..505e5c95 --- /dev/null +++ b/change_logs/release_0.4.6.md @@ -0,0 +1,30 @@ + + +# Release v0.4.6 + +## Notes + +Thank you to all that contributed with flushing out issues with 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. + +Thank you so much for your support and awesome suggestions to make K9s better!! + +Also if you dig this tool, please make some noise on social! [@kitesurfer](https://twitter.com/kitesurfer) + +--- + +## Change Logs + +--- + +## Resolved Bugs + ++ Node overview column ordering [Issue #153](https://github.com/derailed/k9s/issues/153) ++ Changed foreground color on container pick list [Issue #132](https://github.com/derailed/k9s/issues/132) + +--- + + © 2019 Imhotep Software LLC. All materials licensed under [Apache v2.0](http://www.apache.org/licenses/LICENSE-2.0) diff --git a/internal/resource/no.go b/internal/resource/no.go index 89fb9ec4..954a97ce 100644 --- a/internal/resource/no.go +++ b/internal/resource/no.go @@ -117,8 +117,8 @@ func (*Node) Header(ns string) Row { "RMEM%", "CPU", "MEM", - "RMEM", "RCPU", + "RMEM", "ACPU", "AMEM", "AGE", diff --git a/internal/views/select_list.go b/internal/views/select_list.go index 03a28aa6..8c93393b 100644 --- a/internal/views/select_list.go +++ b/internal/views/select_list.go @@ -18,7 +18,7 @@ func newSelectList(parent loggable) *selectList { { v.parent = parent v.SetBorder(true) - v.SetMainTextColor(tcell.ColorGray) + v.SetMainTextColor(tcell.ColorWhite) v.ShowSecondaryText(false) v.SetShortcutColor(tcell.ColorAqua) v.SetSelectedBackgroundColor(tcell.ColorAqua)