Skip to content

Commit

Permalink
added release notes + code fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
derailed committed Feb 19, 2019
1 parent 024ce3b commit 3d4d3cb
Show file tree
Hide file tree
Showing 7 changed files with 41 additions and 6 deletions.
35 changes: 35 additions & 0 deletions change_logs/release_0.1.4.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
# Release v0.1.3

<br/>

---
## 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 file an issue please help me verify and close.

Thank you so much for your support!!

<br/>

---
## Change Logs

<br/>

+ IMPORTANT! Breaking change! The K9s config was changed
If K9s does not launch, move over .k9s/config.yml
+ Reworked CLI args to better support contexts

---
## Resolved Bugs

+ [Issue #67](https://github.com/derailed/k9s/issues/67)
+ [Issue #65](https://github.com/derailed/k9s/issues/65)
+ [Issue #64](https://github.com/derailed/k9s/issues/64)
+ [Issue #60](https://github.com/derailed/k9s/issues/60)
+ [Issue #57](https://github.com/derailed/k9s/issues/57)
+ [Issue #56](https://github.com/derailed/k9s/issues/56)
1 change: 0 additions & 1 deletion internal/cmd/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ import (
log "github.com/sirupsen/logrus"
"github.com/spf13/cobra"
"k8s.io/cli-runtime/pkg/genericclioptions"
_ "k8s.io/client-go/plugin/pkg/client/auth"
)

const (
Expand Down
2 changes: 1 addition & 1 deletion internal/views/cmd.go
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,6 @@ func (v *cmdView) active(f bool) {
v.activate()
} else {
log.Debug("CmdView was deactivated!")
v.Clear()
v.Clear()
}
}
2 changes: 1 addition & 1 deletion internal/views/cmd_buff.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package views

import(
import (
log "github.com/sirupsen/logrus"
)

Expand Down
2 changes: 1 addition & 1 deletion internal/views/registrar.go
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package views

import (
"github.com/derailed/k9s/internal/resource"
"github.com/derailed/k9s/internal/k8s"
"github.com/derailed/k9s/internal/resource"
"github.com/gdamore/tcell"
)

Expand Down
4 changes: 2 additions & 2 deletions internal/views/table.go
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ func (v *tableView) keyboard(evt *tcell.EventKey) *tcell.EventKey {
switch evt.Rune() {
case v.cmdBuff.hotKey:
if !v.app.cmdView.inCmdMode() {
v.app.flash(flashInfo,"Entering filtering mode...")
v.app.flash(flashInfo, "Entering filtering mode...")
log.Info("K9s entering filtering mode...")
v.cmdBuff.setActive(true)
}
Expand All @@ -87,7 +87,7 @@ func (v *tableView) keyboard(evt *tcell.EventKey) *tcell.EventKey {
}

if a, ok := v.actions[key]; ok {
if ! v.app.cmdView.inCmdMode() {
if !v.app.cmdView.inCmdMode() {
a.action(evt)
}
}
Expand Down
1 change: 1 addition & 0 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import (
"github.com/derailed/k9s/internal/cmd"
"github.com/derailed/k9s/internal/config"
log "github.com/sirupsen/logrus"
_ "k8s.io/client-go/plugin/pkg/client/auth"
)

func init() {
Expand Down

0 comments on commit 3d4d3cb

Please sign in to comment.