fix node view column ordering + picker fg color
parent
2ceaa775a7
commit
7fe70ae41b
|
|
@ -0,0 +1,30 @@
|
|||
<img src="https://raw.githubusercontent.com/derailed/k9s/master/assets/k9s_small.png" align="right" width="200" height="auto"/>
|
||||
|
||||
# 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)
|
||||
|
||||
---
|
||||
|
||||
<img src="https://raw.githubusercontent.com/derailed/k9s/master/assets/imhotep_logo.png" width="32" height="auto"/> © 2019 Imhotep Software LLC. All materials licensed under [Apache v2.0](http://www.apache.org/licenses/LICENSE-2.0)
|
||||
|
|
@ -117,8 +117,8 @@ func (*Node) Header(ns string) Row {
|
|||
"RMEM%",
|
||||
"CPU",
|
||||
"MEM",
|
||||
"RMEM",
|
||||
"RCPU",
|
||||
"RMEM",
|
||||
"ACPU",
|
||||
"AMEM",
|
||||
"AGE",
|
||||
|
|
|
|||
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Reference in New Issue