summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG.md6
-rw-r--r--go.mod2
-rw-r--r--layout/layout.go1
3 files changed, 6 insertions, 3 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 30c9ad8..2f96d2b 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -23,13 +23,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
a histogram.
- Temp widget displays degree symbol (merged from BartWillems, thanks
also fleaz)
+- Support for (device) plugins, and abstracting devices from widgets. This
+ allows adding functionality without adding bulk.
### Fixed
- Keys not controlling process widget, #59
- The one-column bug, #62
-## [3.3.2] - ??
+## [3.3.2] - 2020-02-26
+
+Bugfix release.
### Fixed
diff --git a/go.mod b/go.mod
index 6058002..1e4a5bb 100644
--- a/go.mod
+++ b/go.mod
@@ -1,4 +1,4 @@
-module github.com/xxxserxxx/gotop
+module github.com/xxxserxxx/gotop/v3
require (
github.com/StackExchange/wmi v0.0.0-20180116203802-5d049714c4a6 // indirect
diff --git a/layout/layout.go b/layout/layout.go
index bdddaf6..d7fbc22 100644
--- a/layout/layout.go
+++ b/layout/layout.go
@@ -270,7 +270,6 @@ func countMaxHeight(rs [][]widgetRule) int {
// deepFindProc looks in the UI widget tree for the ProcWidget,
// and returns it if found or nil if not.
func deepFindProc(gs interface{}) *widgets.ProcWidget {
- // FIXME: `procs` layout isn't passing down keystrokes
// Recursive function #1. Recursion is OK here because the number
// of UI elements, even in a very complex UI, is going to be
// relatively small.