From 01cdd090ec39e0c693d43b932dd19868b535d53b Mon Sep 17 00:00:00 2001 From: Evan <17254809+bigun27@users.noreply.github.com> Date: Tue, 17 Oct 2023 00:00:50 -0400 Subject: [PATCH] Mark as Windows only --- cmd_alpha.go | 3 +++ cmd_minmax.go | 3 +++ cmd_resize.go | 3 +++ cmd_topmost.go | 3 +++ cmd_wait.go | 3 +++ vvin.go | 5 ++++- 6 files changed, 19 insertions(+), 1 deletion(-) diff --git a/cmd_alpha.go b/cmd_alpha.go index b49a50c..841fd7f 100644 --- a/cmd_alpha.go +++ b/cmd_alpha.go @@ -1,3 +1,6 @@ +//go:build windows +// +build windows + package vvin import ( diff --git a/cmd_minmax.go b/cmd_minmax.go index ea5366f..29e4736 100644 --- a/cmd_minmax.go +++ b/cmd_minmax.go @@ -1,3 +1,6 @@ +//go:build windows +// +build windows + package vvin type minCmd struct { diff --git a/cmd_resize.go b/cmd_resize.go index 4bad703..db6195e 100644 --- a/cmd_resize.go +++ b/cmd_resize.go @@ -1,3 +1,6 @@ +//go:build windows +// +build windows + package vvin import ( diff --git a/cmd_topmost.go b/cmd_topmost.go index 34c8586..0538dd2 100644 --- a/cmd_topmost.go +++ b/cmd_topmost.go @@ -1,3 +1,6 @@ +//go:build windows +// +build windows + package vvin type topmostCmd struct { diff --git a/cmd_wait.go b/cmd_wait.go index 77e4451..31174c4 100644 --- a/cmd_wait.go +++ b/cmd_wait.go @@ -1,3 +1,6 @@ +//go:build windows +// +build windows + package vvin import ( diff --git a/vvin.go b/vvin.go index 3dc1bb3..f161fa6 100644 --- a/vvin.go +++ b/vvin.go @@ -1,3 +1,6 @@ +//go:build windows +// +build windows + package vvin import ( @@ -55,7 +58,7 @@ func Start(args []string) error { app := gli.NewWith(&globalCmd{}) app.Name = "vvin" app.Desc = "Change window properties for Windows" - app.Version = "0.7.5" + app.Version = "0.7.6" app.Usage = `` app.Copyright = "(C) 2019 Shuhei Kubota" app.SuppressErrorOutput = true