From 7880d9df6de1040258bea966f040e12be6205af1 Mon Sep 17 00:00:00 2001 From: Jeff Carr Date: Sat, 2 Dec 2023 19:02:51 -0600 Subject: gocui plugin refactor to a *node binary tree rename arg '--gui ' add a cloudflare example fixes since go v1.21 didn't compile anymore due to argv order more place() changes recursive size computation gocui: Major refactor to use the *node binary tree gocui: refactor place() and size() gocui: better place() and spacing (tab, buttons, etc) gocui: better mouse click handling gocui: switch to using tk.gocuiSize & tk.size gocui: event handling cleanups gocui: add window labels work gocui: struct cleanups gocui: duplicate binary tree structs removed gocui: deprecate old children Signed-off-by: Jeff Carr --- Makefile | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 2949aae..8e73c22 100644 --- a/Makefile +++ b/Makefile @@ -8,6 +8,7 @@ all: README.md @echo make clean make plugins + make cmds-buttonplugin build-dep: apt install -f libgtk-3-dev @@ -82,11 +83,11 @@ clean: plugins: plugins-gocui plugins-andlabs plugins-gocui: - GO111MODULE="off" go build -v -x -C toolkit/gocui -buildmode=plugin -o ../gocui.so - GO111MODULE="off" go build -v -x -C toolkit/nocui -buildmode=plugin -o ../nocui.so + GO111MODULE="off" go build -C toolkit/gocui -v -buildmode=plugin -o ../gocui.so + GO111MODULE="off" go build -C toolkit/nocui -v -buildmode=plugin -o ../nocui.so plugins-andlabs: - GO111MODULE="off" go build -v -x -C toolkit/andlabs -buildmode=plugin -o ../andlabs.so + GO111MODULE="off" go build -C toolkit/andlabs -v -buildmode=plugin -o ../andlabs.so objdump: objdump -t toolkit/andlabs.so |less -- cgit v1.2.3