2024-01-06 18:00:13 -06:00
|
|
|
#a git remote add github git@github.com:wit-go/gadgets.git
|
|
|
|
all:
|
|
|
|
@echo
|
|
|
|
@echo gadgets are collections of widget primaties that work
|
|
|
|
@echo in ways that are common enough they are generally useful
|
|
|
|
@echo
|
|
|
|
@echo The gadgets are themselves outside of the 'gui' binary tree
|
|
|
|
@echo structure. They do not modify the fundamental nature of
|
|
|
|
@echo how the 'gui' package communicates to the toolkits via the plugin
|
|
|
|
@echo
|
|
|
|
@echo in that sense, they are intended to be useful wrappers
|
|
|
|
@echo
|
|
|
|
|
2024-01-20 19:53:23 -06:00
|
|
|
goimports:
|
|
|
|
goimports -w *.go
|
|
|
|
|
2024-01-06 18:00:13 -06:00
|
|
|
redomod:
|
|
|
|
rm -f go.*
|
2024-01-14 13:22:44 -06:00
|
|
|
GO111MODULE= go mod init
|
|
|
|
GO111MODULE= go mod tidy
|
2024-01-01 17:37:08 -06:00
|
|
|
|
|
|
|
github:
|
2024-01-06 18:10:37 -06:00
|
|
|
git push origin master
|
|
|
|
git push origin devel
|
|
|
|
git push origin --tags
|
2024-01-06 18:08:51 -06:00
|
|
|
git push github master
|
|
|
|
git push github devel
|
2024-01-01 17:37:08 -06:00
|
|
|
git push github --tags
|
2024-01-08 22:33:55 -06:00
|
|
|
|
|
|
|
goproxy:
|
|
|
|
GOPROXY=https://proxy.golang.org GO111MODULE=on go get go.wit.com/gui/gadgets@v0.10
|